/* ######### Matt Black Strip Main Menu Bar CSS ######### */

.mattblackmenu ul{
margin: 0;
padding: 0;
font: bold 1.1em "微軟正黑體",Arial;
list-style-type: none;
/* border-bottom: 1px solid gray; */
background: #005d96;
overflow: hidden;
width: 100%;
border-radius: 6px 6px 0 0;
}

.mattblackmenu li{
display: inline;
margin: 0;
}

.mattblackmenu li a{
float: left;
display: inline-block;
text-decoration: none;
margin: 0;
padding: 9.5px 18px; /*padding inside each tab*/
border-right: 1px solid white; /*right divider between tabs*/
color: white;
background: #005d96;
}

.mattblackmenu li a:visited{
color: white;
}

.mattblackmenu li a:hover{
background: #474747; /*background of tabs for hover state */
}

.mattblackmenu a.selected{
background: #474747; /*background of tab with "selected" class assigned to its LI */
}
.mattblackmenu li:last-child a{
border: none;
}
