/* ######### CSS for Main Header tabs ######### */

.tabsmenuclass ul{
overflow: hidden;
margin: auto;
padding: 0;
list-style-type: none;
}

.tabsmenuclass li{
float: left;
}

.tabsmenuclass a{
display: block;
padding: 5px 7px;
/*background: #333333; grey background */
background: black; 
color: white;
margin-right: 1px;
border-right: 1px solid white; /*right divider between tabs*/
text-decoration: none;
font: bold 16px Arial;
}

.tabsmenuclass a:hover, .tabsmenuclass a.selected{
background: black;
color: white;
}

/* ######### CSS for sub menu contained below Main tabs######### */

.tabsmenucontentclass{
clear: left;
background: black;
width: 90%;
height: 30px;
padding: 5px;
border: none;
}

.tabsmenucontentclass ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.tabsmenucontentclass li{
float: left;
margin-right: 1em;
}

.tabsmenucontentclass a:hover, .tabsmenucontentclass a.selected{
background: black;
color: green;
}