/* CSS Document */

.aerobuttonmenu{ /*container that holds a row of aero buttons*/
float:left;
overflow: hidden; /*See: http://www.quirksmode.org/css/clearing.html */
width: 100%;
}
* html .aerobuttonmenu{ /*IE6 and below hack. Set explicit strip width*/
float:left;
width: 100%;
}
.aerobuttonmenu a.aero{ /*aero button CSS*/

display: block;
float: left;
font-family:Times New Roman, Times, serif;
font-size:16px;
font-weight:bold;
height: 30px; /* Height of button background height */
padding-left: 5px; /* Width of left menu image */
text-decoration: none;
margin-right: 2px; /*spacing between buttons*/
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=75); /*this and next two rules control opacity of buttons before hover*/
opacity: 1;
-moz-opacity: 0.99;
color:#b99e83; 
}
.aerobuttonmenu a.aero:link, .aerobuttonmenu a.aero:visited, .aerobuttonmenu a:active{
/*color: white;*/ /*button text color*/
}
.aerobuttonmenu a.aero span{
display: block;
padding: 4px 10px 10px 10px; /*Set 10px here to match value of 'padding-left' value above*/
}
.aerobuttonmenu a.aero:hover{ /* Hover state CSS */
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100); /*this and next two rules control opacity of buttons during hover*/
opacity: 1;
-moz-opacity: 0.99;
}
.aerobuttonmenu a.aero:hover span{ /* Hover state CSS (for text) */
/*color: yellow;*/
color:#fff;
}

/*innerpage menu verticle menu*/
.ul-menu{
	margin:0px;
	padding:0px;
	list-style:none;
	display:block;
	margin-left:20px;
	margin-top:15px;	
	}
.ul-menu li{
/*	height:35px;*/
	padding-bottom:15px;
	/*background:url(../images/menu-vline.gif) left top no-repeat;*/
	}
.ul-menu li a{
	list-style:none;	
	text-decoration:none;
	font-weight:bold;
	color:#000041;
	font-size:18px;
	line-height:20px;
}
.ul-menu li a:hover{
	color:#ffffff;
}
.ul-menu li.current a{ 
	color:#ffffff;
}

/*innerpage menu verticle sub menu*/
.ul-submenu{
	margin:0px;
	padding:0px;
	list-style:none;
	display:block;
	margin-left:20px;
	margin-top:15px;
	font-size:16px;
	}
.ul-submenu li{	
	background:none;
	padding-bottom:5px;
	}
.ul-submenu li a{
	list-style:none;	
	text-decoration:none;
	font-weight:bold;
	color:#000041;
	font-size:16px;
	line-height:20px;	
}
.ul-submenu li a:hover{
	color:#ffffff;
}
.ul-submenu li.current a{ 
	color:#ffffff;
}
