/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.aerobuttonmenu{ /*container that holds a row of aero buttons*/
	overflow: hidden; /*See: http://www.quirksmode.org/css/clearing.html */
	width: 650px;
	padding: 0px 0;
	margin-right: auto;
	margin-left: auto;
	background-color: #E2E9E3;
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	border-left: 1px solid #000000;
}

* html .aerobuttonmenu{ /*IE6 and below hack. Set explicit strip width*/
	width: 650px;
	background-color: #E2E9E3;
}

.aerobuttonmenu a.aero{ /*aero button CSS*/
	background: #E2E9E3  no-repeat left top;
	display: block;
	float: left;
	font: bold 13px/normal Georgia, "Times New Roman", Times, serif; /* This value + 8px should equal height of button background (default is 31px) */
	height: auto; /* Width of left menu image */
	text-decoration: none; /*spacing between buttons*/



filter:progid:DXImageTransform.Microsoft.Alpha(opacity=90); /*this and next two rules control opacity of buttons before hover*/
	opacity: 0.9;



-moz-opacity: 0.9;
	padding-left: 10px;
	margin-right: 10px;
}

.aerobuttonmenu a.aero:link, .aerobuttonmenu a.aero:visited, .aerobuttonmenu a:active{
	color: #000000;
}

.aerobuttonmenu a.aero span{
	background: #E2E9E3  no-repeat right top;
	display: block; /*Set 10px here to match value of 'padding-left' value above*/
	padding-top: 4px;
	padding-bottom: 6px;
	padding-left: 0;
	padding-right: 10px;
	width: auto;
}

.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;
	color: #006633;
	line-height: normal;
	text-decoration: underline;
	font-size: 13px;
}

.aerobuttonmenu a.aero:hover span{ /* Hover state CSS (for text) */
	color: #006633;
}


.aerobuttonmenu .rightsection{
	float: right;
	width: 100px;
	position: relative;
	top: 3px;
	padding-right: 5px;
	text-align: right;
	background-color: #E2E9E3;
}

.aerobuttonmenu .rightsection a{
color: navy;
}
