/* ######### CSS for top level tabs ######### */

.tabsmenuclass ul{
overflow: hidden;
width: auto;
margin: 0;
padding: 0;
list-style-type: none;
width: 105%;
}

.tabsmenuclass li{
float: left;
margin-left: 1px;
}

.tabsmenuclass a{
display: block;
padding-top: 1px;
background: #333333;
color: white;
margin-right: 1px;
text-decoration: none;
font: bold 13px Arial;
}

.tabsmenuclass a:hover, .tabsmenuclass a.selected{
background: orange;
color: white;
}

/* ######### CSS for sub menu container below ######### */

.tabsmenucontentclass{
margin-left: 190px;
background: #333333;
width: 105%;
height: 24px;
padding: 5px;
border: 0px solid silver;
}

.tabsmenucontentclass ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.tabsmenucontentclass li{
text-decoration: none;
padding-bottom: 0px;
border: 0px solid silver;
float: left;
background: orange;
margin-right: 1em;
}

.tabsmenucontentclass a:hover, .tabsmenucontentclass a.selected{
background: orange;
color: white;
}

.tabsmenucontentclass a{
display: block;
padding-bottom: 1px;
background: #333333;
color: white;
margin-right: 0px;

}