.aerobuttonmenu{ /*container that holds a row of aero buttons*/
overflow: hidden; /*See: http://www.quirksmode.org/css/clearing.html */
width: auto;
}

* html .aerobuttonmenu{ /*IE6 and below hack. Set explicit strip width*/
width: 100%;
}

.aerobuttonmenu a.aero{ /*aero button CSS*/
background: transparent url('photos/aeroleft.gif') no-repeat top left;
display: block;
float: left;
font: bold 20px Verdana, Trebuchet MS; /* Change 13px as desired */
line-height: 28px; /* This value + 8px should equal height of button background (default is 31px) */
height: 75px; /* Height of button background height */
text-align:left;
padding-left: 17px; /* 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;
}

.aerobuttonmenu a.aero:link, .aerobuttonmenu a.aero:visited, .aerobuttonmenu a:active{
color: #c00; /*button text color*/
}

.aerobuttonmenu a.aero span{
background: transparent url('photos/aeroright.gif') no-repeat top right;
display: block;
padding: 7px 17px 22px 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;
text-decoration: none;
}

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

.black a.aero{
background-image: url('photos/aeroleftblack.gif');
}

.black a.aero span{
background-image: url('photos/aerorightblack.gif');
}

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

.aerobuttonmenu .rightsection a{
color: navy;
}

.myBox {
  margin: 0 30px 0 0;
  color: #ffffff;
  padding: 15px 0;
  text-align: left;
  background:#ABC2D6 url(photos/bg.jpg) repeat-x;
  border:1px solid #ccc;
}

