
/*----------------Menu Tabs-------------------*/
.aerobuttonmenu
{
width: auto;
margin-left:0px;
margin-top:0px;
}

* html .aerobuttonmenu{ 
width: 100%;
}

.aerobuttonmenu a.aero{ 
background: transparent url('../images/curveleft.gif') no-repeat top left;
display: block;
float: left;
font: bold 11px Verdana, Trebuchet MS; /* Change 13px as desired */
line-height: 16px; /* This value + 8px should equal height of button background (default is 31px) */
height: 25px; /* Height of button background height */
padding-left: 14px; /* Width of left menu image */
text-decoration: none;
margin-right: 0px; /*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-right:8px;
}
.aerobuttonmenu a.aero:link, .aerobuttonmenu a.aero:visited, .aerobuttonmenu a:active{
color: #FFFFFF; /*button text color*/
}

.aerobuttonmenu a.aero span{
background: transparent url('../images/curveright.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*/
opacity: 1;
-moz-opacity: 0.99;
}
.aerobuttonmenu a.aero:hover {
background: transparent url('../images/curveleft_select.gif') no-repeat top left;
display: block;
float: left;
}
.aerobuttonmenu a.aero:hover span{ /* Hover state CSS (for text) */
color:#fff;
background: transparent url('../images/curveright_select.gif') no-repeat top right;
font-weight:bold;
}
.aerobuttonmenu a.aero.selected {
background: transparent url('../images/curveleft_select.gif') no-repeat top left;
display: block;
float: left;
}
.aerobuttonmenu a.aero span.selected{ /* Hover state CSS (for text) */
color:#fff;
background: transparent url('../images/curveright_select.gif') no-repeat top right;
font-weight:bold;
}
