/*
 *
 * Game Header
 *
 */
 
 div#header {
     margin: 0;
     padding: 0;
     
     background: #c3c3c3;
 }
 
 div#header a:link, div#header a:visited {
     color: white;
     text-decoration: none;
 }
 
 div#header-logo {
     display: block;
     float: left;
     
     position: absolute;
     top: 5px;
     left: 1em;
     
     width: 120px;
     height: 120px;
     
     overflow: hidden;
 }
 
 div#header div#header-sections ul#hs-list {
     position: relative;
     margin: 0;
     
     padding-top: 30px; /* Top black area */
     padding-bottom: 1px;
     background: black;
     
     text-align: center;
     list-style: none;
 }
 
 div#header div#header-sections ul#hs-list li {
     display: inline;
     margin: 0;
     margin-right: 0.4em;
 }

 div#header div#header-sections ul#hs-list a span {
     margin: 0;
 }
 
 /* Main section tabs */
 div#header div#header-sections ul#hs-list a {
     margin: 0;
     padding: 10px 15px 0px 15px;
     
     font-family: "Trebuchet MS", "Bitstream Vera Sans", verdana, lucida, arial, helvetica, sans-serif;
     font-weight: bold;
     font-variant: small-caps;
     
     text-decoration: none;
     border-bottom: 1px solid black;

     -moz-border-radius: 10px 10px 0 0;
 }
 
 div#header div#header-sections ul#hs-list li ul#hs-sublist {
     
     display: block;
     float: left;
     
     margin-left: 90px; /* Avoid logo on left */
     
     -moz-border-radius: 0 2em 0 0;
 }
 
 div#header div#header-sections ul#hs-list li ul#hs-sublist li {
     display: block;
     float: left;
     
     margin: 0;
     padding: 0.8em 10px 0.4em 10px;
 }
 
 div#header div#header-sections ul#hs-list li ul#hs-sublist li a {
     background: transparent;
     
     padding-bottom: .2em;
     
     font-variant: normal;
     font-weight: normal;
     font-size: .75em;
     
     border-bottom-style: solid;
     border-bottom-width: .3em;
 }
 
 /* Multicolored section tabs */
 li#hs-home a {
     background: #b2353f;
 }
 li#hs-articles a {
     background: #6c6d6c;
/*     background: #cecf00; */
 }
 li#hs-funds a {
/*     background: #009e9c; */
    background: #266;
 }
 li#hs-portfolio a {
/*     background: #00659c; */
     background: #2d4488;
 }
 
     

