/**
 * Default Stylesheet for the CMS
 *
 * @author Jeroen Boersma
 * @copyright Jeroen Boersma 2010
 * @package Private project CMS
 * @version -
 */

body {
  background-color: #FFFACD;
  margin: 0;
  font-family: Times, Arial;
  font-size: 16px;
  color: #000;
}

img {
  border: none;
}

a {
  color: #000;
}

#cmsLogo {
  margin-left: 33px;
  margin-bottom: 20px;
}

#menu {
  float: left;
  background-color: #000;
  background-image: url('../gfx/menu-background-middle.png');
  background-position: left top;
  background-repeat: repeat-y;
  width: 250px;
  color: #fff;
  position: absolute;
  top: 5px;
  left: 5px;
}

#menuHeader {
  background-image: url('../gfx/menu-background-top.png');
  background-position: left top;
  background-repeat: no-repeat;
  height: 30px;
}

#menuFooter {
  background-image: url('../gfx/menu-background-footer.png');
  background-position: left bottom;
  background-repeat: no-repeat;
  height: 30px;
}

div.menuItems {
  margin-left: 33px;
}

div.menuItems ul {
  display: block;
  padding-left: 5px;
  margin: 0;
}

div.menuItems li {
  list-style: none;
}

div.menuItems li.activeItem {
  background-image: url('../gfx/menu-stripe.png');
  background-repeat: no-repeat;
  background-position: 20px 16px;
}

div.menuItems a {
  display: block;
  color: #dcdcdc;
  font-size: 16px;
  text-decoration: none;
  margin-top: 5px;
  padding-left: 25px;
  background-repeat: no-repeat;
  background-position: left bottom;
  font-style: italic;
}

div.menuItems a.activeItem {
  font-weight: bold;
}

div.menuItems a:hover {
  background-image: url('../gfx/menu-pointer.png');
  font-weight: bold;
}

#content {
  position: absolute;
  padding: 10px;
  top: 5px;
  left: 255px;
}

#breadcrumb {
  clear: both;
  font-size: 11px;
  margin-top: 50px;
}

