﻿/*body {font-family:arial; font-size:11px;}
.clear {clear:both}*/

div.navbar-header
{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 3.12em;
    min-width: 72em;
    background-color: white;
    position: relative;
    z-index: 99999;
}    

div.navbar-header table
{
    width:100%;
    border-collapse:collapse;
}

div.navbar-header table td
{
    vertical-align:top;
    padding-top:0px;
}

/* remove the list style */
ul.navbar-header
{
    margin: 0;
    padding: 0;
    list-style: none;
}    
    
/* make the LI display inline */
/* it's position relative so that position absolute */
/* can be used in submenu */
ul.navbar-header li
{
    float: left;
    display: block;
    position: relative;
    color: black;
    z-index: 500;
    height: 3.12em;
    margin-left: 0.2em;
    margin-right: 0.2em;
    padding-right: 0.5em;
    padding-left: 0.5em;
    background-repeat: repeat-x;
}   
        
/* this is the parent menu */
ul.navbar-header li a
{
    font: 16px proxima-nova,sans-serif;
    display: block;
    padding: 10px 5px 0 5px;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    height: 23px;
    text-decoration: none;
    text-align: center;
    color:black;
}

ul.navbar-header li a:visited
{
    color: black;
}

ul.navbar-header li:hover a
{
    color: #41a867 !important;
}

/* you can make a different style for default selected value */
ul.navbar-header a.selected {
    color:#f00;
}
    
/* submenu, it's hidden by default */
ul.navbar-header ul
{
    position: absolute;
    left: 0;
    top: 3em;
    display: none;
    margin: 0 0 0 0;
    padding: 0.2em;
    list-style: none;
    background-color: white;
    border-radius: 2px;
    box-shadow: 4px 4px 7px grey;
}
        
ul.navbar-header ul li
{
    width: 200px;
    height: 1.5em;
    float: left;
    margin-bottom:0.3em;
    border-radius: 3px;
}
        
/* display block will make the link fill the whole area of LI */
ul.navbar-header ul a {
    font: normal 12px/1.3 "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
    text-transform:none;
    display:block;  
    height:15px;
    padding: 3px 5px;
    color:black !important;
}
        
ul.navbar-header ul a:hover {
    text-decoration:none;
    color: rgb(52, 196, 41);   
    background-color:#e8e8e8;
}

ul.navbar-header ul#useraccount-menu {
    right: 0em !important;
    left: initial !important;
}
/* fix ie6 small issue */
/* we should always avoid using hack like this */
/* should put it into separate file : ) */
/**html #nav ul {
    margin:0 0 0 -2px;
}*/

