<style type="text/css">

/*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: auto;
background: #F7F7F7; /*menu strip background*/
border: 1px solid gray;
padding: 4px 0;
border-width: 1px 0;
}

* html .aerobuttonmenu{ /*IE6 and below hack. Set explicit strip width*/
	height: 30px;
	margin-bottom: 52px;
	width: 300px;
	clear: right;
	margin-left: 280px;
}

.aerobuttonmenu a.aero{ /*aero button CSS*/
	display: block;
	float: left; /* This value + 8px should equal height of button background (default is 31px) */
	height: 31px; /* Height of button background height */
	padding-left: 10px; /* Width of left menu image */
	text-decoration: none;
	margin-right: 0px; /*spacing between buttons*/

filter:progid:DXImageTransform.Microsoft.Alpha(opacity=90);
	-moz-opacity: 0.9;
	background-color: transparent;
	background-image: url(../images/menu_ifa/aeroleft.gif);
	background-repeat: no-repeat;
	background-position: left top;
	font-family: "Trebuchet MS", arial;
	font-size: 13px;
	font-weight: bold;
	margin-left: 1px;
	line-height: 23px;
}

.aerobuttonmenu a.aero:link, .aerobuttonmenu a.aero:visited, .aerobuttonmenu a:active{
	color: #FFCC99; /*button text color*/
}

.aerobuttonmenu a.aero span{
background: transparent url('../images/menu_ifa/aeroright.gif') no-repeat top right;
display: block;
padding: 4px 10px 6px 0; /*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*/
	-moz-opacity: 0.99;
	color: #CC6600;
}

.aerobuttonmenu a.aero:hover span{ /* Hover state CSS (for text) */
	color: #FFFFFF;
}

</style>

