/* ######### transparentmenuhead CSS ######### */

.transparentmenuhead ul {
position:absolute;
top:139px;
left: 250px;

z-index:12;
padding: 0;
font: bold 12px Verdana;
list-style-type: none;

background-color:transparent;

overflow: hidden;
width: 700px;
}

.transparentmenuhead li{
display: inline;
margin: 0;
}

.transparentmenuhead li a{
float: right;
display: block;
text-decoration: none;
margin: 0;
padding: 6px 8px; /*padding inside each tab*/

color: white;
background-color:transparent;


}

.transparentmenuhead li a:visited{
color: white;
}

.transparentmenuhead li a:hover{
background-color:transparent;
 /*background of tabs for hover state */
color: red;
}

.transparentmenuhead a.selected{
background: black; /*background of tab with "selected" class assigned to its LI */
}

