.topmenu{ /*container that holds a row of aero buttons*/
overflow: hidden; /*See: http://www.quirksmode.org/css/clearing.html */
width: auto;
position: relative;
left: 10px;
top: 115px;
padding: 2px 0;
border-width: 1px 0;
}

* html .topmenu{ /*IE6 and below hack. Set explicit strip width*/
width: 100%;
}

.topmenu a.tnav{ /* button CSS*/
background: transparent url('images/nav_bg_left.gif') no-repeat top left;
display: block;
float: left;
font-family: 'Lucida Grande',  Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
color:#fbed0a;
text-decoration: none;
font-weight:bold;
line-height: 15px; /* This value + 8px should equal height of button background (default is 31px) */
height: 23px; /* Height of button background height */
padding-left: 4px; /* Width of left menu image */
text-decoration: none;
margin-right: 20px; /*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;
}

.topmenu a.tnav:link, .topmenu a.tnav:visited, .topmenu a:active{
color: #fbed0a; /*button text color*/
}

.topmenu a.tnav span{
background: transparent url('images/nav_bg_right.gif') no-repeat top right;
display: block;
padding: 4px 7px 6px 0; /*Set 10px here to match value of 'padding-left' value above*/
}

.topmenu a.tnav: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;
}

.topmenu a.tnav:hover span{ /* Hover state CSS (for text) */
color: white;
}

.red a.tnav{
background-image: url('images/nav_bg_red_left.gif');
}

.red a.tnav span{
background-image: url('images/nav_bg_red_right.gif');
}

.topmenu .rightsection{
float: right;
width: 100px;
position: relative;
top: 3px;
padding-right: 5px;
text-align: right;
}

.topmenu .rightsection a{
color: navy;
}

/*red button below*/


.topmenu a.tnavR:link, .topmenu a.tnavR:visited, .topmenu a:active{
color: #f6f5cd; /*button text color*/
}

.topmenu a.tnavR{ /*aero button CSS*/
background: transparent url('images/nav_bg_red_left.gif') no-repeat top left;
display: block;
float: left;
font-family: 'Lucida Grande',  Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
text-decoration: none;
font-weight:bold;
line-height: 15px; /* This value + 8px should equal height of button background (default is 31px) */
height: 23px; /* Height of button background height */
padding-left: 10px; /* Width of left menu image */
text-decoration: none;
margin-right: 7px; /*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;
}

.topmenu a.tnavR span{
background: transparent url('images/nav_bg_red_right.gif') no-repeat top right;
display: block;
padding: 4px 10px 6px 0; /*Set 10px here to match value of 'padding-left' value above*/
}

.topmenu a.tnavR: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;
}

.topmenu a.tnavR:hover span{ /* Hover state CSS (for text) */
color: white;
}


