/* CSS Document */

/* Menu style*/	
/*-------------------------------------------------------------------*/	

#menu { z-index: 20; }	
#menu a:hover{ background:#000; color:#FACFBE; }
#menu a.main{ margin-right: 5px; }
#menu a.main:hover{ background:transparent; color:#FACFBE; }

#menu ul {
	/*float: right;*/ margin: 0px; /*margin-right: 10px !important; margin-right: 5px;*/ padding: 0px; list-style-type: none; /*margin-left:125px;*/
	}
	
#menu li {
	position: relative; float: left; list-style: none; margin: 0px 0px 0px 0px; text-align: center; /*height: 32px;*/ padding-right:10px;}
	
#menu li.first {border-left: 2px solid #761623;}

#menu li a {
	text-decoration:none;
	color:#E79A76;
	font-size:14px;
	display: block;
	font-weight: bold;
	padding: 5px 3px;
	text-decoration: none;
	}

#menu li span {
	display: block; /*font-size: 1.2em;*/ font-weight: bold; padding: 5px 3px; color: #ffffff;}
	
#menu ul li a:hover {
	color: #FACFBE;}
	
#menu ul ul {
	visibility:hidden; position:absolute; height:0; top:26px; left:0; width:100px;}
	
#menu ul ul li {
	width:100px; margin: 0px;}
	
#menu ul ul a, #menu ul ul a:visited {
	display:block;
	font-size: 14px;
	text-decoration:none; 
	text-align: left;
	/*font-family:Arial, Helvetica, sans-serif;*/
	font-weight: normal;
	/*color:#fff; */
	width:130px; 
	/*height:25px; */
	/*border:1px solid #707e88; */
	background:#5495BD; 
	padding: 3px 5px;
	/*line-height:20px;*/
}

* html #menu ul ul a{
	width:140px;
	w\idth:130px;
}

#menu ul ul a:hover{
	color:#fff; 
	background:#38658E;
}

#menu ul ul a.divider:link, #menu ul ul a.divider:active, #menu ul ul a.divider:visited, #menu ul ul a.divider:hover {
	/*color:#ffffff;*/
	/*font-weight: bold;*/
	cursor: default;
}

/* style the table so that it takes no part in the layout - required for IE to work */
#menu table {position:absolute; top:0; left:0;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
#menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:26px;
	left:0; 
	width:100px;
}
/* make the second level visible when hover on first level list OR link */
#menu ul li:hover ul,
#menu ul a:hover ul{
	visibility:visible; 
}	