/* ######### Default Main Menu Bar CSS ######### */

.defaultmenu { 
width:100%;
background: #414141;
border-bottom: 1px solid gray;
}

.defaultmenu ul{
margin: 0 auto;
padding: 0;
font: 12px Verdana;
list-style-type: none;
background: #414141;
overflow: hidden;
width: 100%;
border-left: 1px solid gray; 
}

.defaultmenu li{
display: inline;
margin: 0;
}

.defaultmenu li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
padding: 6px 8px; /*padding inside each tab*/
border-right: 1px solid gray; /*right divider between tabs*/
color: white;
background: #414141;
}

.defaultmenu li a:visited{
color: white;
}

.defaultmenu li a:hover{
background:#343434; /*background of tabs for hover state */
border-bottom:0px;
}

.defaultmenu a.selected{
background:#343434; /*background of tab with "selected" class assigned to its LI */
}
