﻿/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.aerobuttonmenu
{ /*container that holds a row of aero buttons*/
	overflow: hidden; 
	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*/
	width: 100%;
}
.aerobuttonmenu a, .aerobutton a, .aeroBtnBlack
{
	background: transparent url('/images/aeroleft.gif') no-repeat top left;
	display: block;
	float: left;
	/*font: bold 13px Verdana, Trebuchet MS; */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-weight:bold;	
	line-height: 23px; /* 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: 5px; /*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;
}
.aerobutton a
{
    margin-right: 15px; /*spacing between buttons*/
}
.aerobuttonmenu a:link, .aerobuttonmenu a:visited, .aerobuttonmenu a:active, .aerobutton a:link, .aerobutton a:visited, .aerobutton a:active
{
	color: white; /*button text color*/
}
.aerobuttonmenu a span, .aerobutton a span
{
	background: transparent url('/images/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:hover, .aerobutton a:hover, .aeroBtnBlack:hover
{ 
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100); /*this and next two rules control opacity of buttons during hover*/
	opacity: 1;
	-moz-opacity: 0.99;
	text-decoration:none;
}
.aerobuttonmenu a:hover span, .aerobutton a:hover span, .aeroBtnBlack:hover
{ 
	color: red;
}
.black a
{
	background-image: url('/images/aeroleftblack.gif');
}
.black a span
{
	background-image: url('/images/aerorightblack.gif');
}
.right
{
    float:right;
}
.aeroBtnBlack
{
    background: transparent url('/images/aeroBtnBlack_160.gif') no-repeat top left;
    width:160px;
    border:none;
    color:White;
    cursor:pointer;
    padding:4px 10px 6px 8px;
}

