@charset "utf-8";

/* * PulldownMenu * */

/* cell within the pulldown_menu */
.pulldown_menu td {
   padding: 0px 0px 0px 0px;
   margin:  0px 0px 0px 0px;
}

/* box for menu item */
div.menuItem {
   width:   84px;
   height:  24px;
   margin:  0px 0px 0px 3px;
   padding: 5px 5px 0px 7px;
   background-image: url('../graphics/menu_tab.gif');
   background-repeat: no-repeat;
}

/* link of a menu item */
div.menuItem a {
   text-decoration: none;
   color: white;
}

/* special link of a menu item */
div.menuItem.act, div.menuItem.hover {
   background-image: url('../graphics/menu_tab_active.gif');
}

/* link of actual menuitem */
div.menuItem.act a {
   font-weight: bold;
}

/* container for sub menu items */
div.itemContainer {
	margin-top: -5px;	
   display:none;
   position: absolute;
}

/* sub menu items */
div.itemContainer .menuItem {	
   width:  84px;
   height: 24px;
   margin: 0px 3px 0px 3px;
   padding: 0px 5px 0px 7px;
   background-image: url('../graphics/menu_sub.gif');
   background-repeat: no-repeat;
}

/* actual menu item */
div.menuItem a:hover, div.menuItem a.act  {
   text-decoration: underline;
}

/* actual sub menu item */
div.itemContainer a:hover, div.itemContainer a.act  {
   text-decoration: underline;
}

/* bottom line for submenu */
div.subBottom {
	width:  96px;
   height: 5px;
   margin-left: 3px;
	background-image: url('../graphics/menu_sub_bottom.gif');
   background-repeat: no-repeat;
}


/* * Breadcrumbs * */


/* breadcrumb container */
.breadcrumbs {
	width: 800px;
   margin: 2px 2px 2px 8px;
   font-size: 0.8em;
   color: #000060;
}

/* breadcrumb link */
.breadcrumbs a {
   text-decoration: none;
   color: #000060;
}
.breadcrumbs a:hover {
   font-weight: bold;
}