/* CSS Document */



.glossymenu{
	position: relative;

	margin: 0 ;
	background:url(../graphics/menur_bg.gif) repeat-x; /*tab background image path*/
	height: 33px;
	list-style: none;
}

.glossymenu li{
	float:left;
}

.glossymenu li a{
	float: left;
	display: block;
	font-family:Arial; font-size:11px; text-decoration:none; color:#ffffff;
	padding:0 0 0 3px; 
	height: 34px;
	line-height: 35px;
	text-align: center;
	cursor:pointer;
	
}

.glossymenu li a b{
	float: left;
	display: block;
	padding: 0 10px 0 8px; /*Padding of menu items*/
}

.glossymenu li.current a, .glossymenu li a:hover{
	color: #fff;
	background:url(../graphics/left_linkbg.gif) no-repeat; /*left tab image path*/
	background-position: left top;
}

.glossymenu li.current a b, .glossymenu li a:hover b{
	color: #fff;
	background:url(../graphics/right_linkbg.gif) no-repeat right top; /*right tab image path*/
}


.dropmenudiv{
position:absolute;
top: 0;
border: 1px solid #BBB; /*THEME CHANGE HERE*/
border-bottom-width: 0;
font:normal 11px Verdana;
line-height:18px;
z-index:100;
background-color: white;
width: 160px;
visibility: hidden;

}


.dropmenudiv a{
width: auto;
display: block;
text-indent: 3px;
border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
padding: 2px 0;
text-decoration:none;
color: black;
}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
background-color:red;
color:white;
}

