
/* ------------------
 *  item 1 | item 2 |  <- parent items on menubar. level 0 (-1)
 *    | sub 1 >|		<- subitems level 1
 *		| subsub 1|      <- subsub items level 2
 */

/* Background and font of menubar level 0 */
.yui-skin-sam .yuimenubar {
	background-image: url(../img/menu_bg.jpg);
	font-family: Tahoma;
}

/* The label of all subitems except the ones on the highest level. */ 
.yui-skin-sam .yuimenuitem .yuimenuitemlabel {
	 color: #0068a5; 	
	 cursor: pointer;
}

/* Parent items on menubar (-1) LEVEL 0. */
a#firstitem { 
	color:white;	
}

/* Hover properties for all LEVEL 0 (-1) items on menubar */
a#firstitem:hover { 
	color:#0068a5;	
}

/* hover properties for all items on all levels. Some properties are overwritten*/
li.yuimenuitem a:hover, li.yuimenuitemlabel a:hover {
}

/* visited for all items on all levels. The coler is overwritten but the text-decoration is not. */
li.yuimenuitem a:visited{
	color: #0068a5;
	text-decoration: none;
}

