
#header {
 position: absolute;
 background: #000000;
 height: 45px;
 width:100%;
 left: 0px;
 top: 0px;
 border-bottom-style: solid;
 border-color: #666633;
 z-index: 1;
}

#content {
 position: absolute;
 width: 100%;
 left: 190px;
 top: 48px;
 z-index: 10;
}

#navigation {
 position: absolute;
 background: #CCCC99; /* GIANTS #f08233; */
 height: 1400px;
 left: 0px;
 top: 48px;
 z-index: 100;
}

/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 0;
 padding: 0;
 width: 180px;
 height: 40px;
 list-style: none;
}

/*
 Submenus (<ul> tags) are hidden and absolutely positioned across from their parent.
 They don't *have* to touch their parent menus, but is' a good idea as CSS-only fallback
 mode requires menus to touch/overlap (when JS is disabled in the browser).
*/
.menulist ul {
 display: none;
 position: absolute;
 top: -1px;
 left: 178px; /*left: 181px;*/
}

/*
 This is a hack to force the last menu to draw "up"
*/
ul.lastmenu {
 display: none;
 position: absolute;
 top: -453px;
 left: 178px; /*left: 181px;*/
}


/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
.menulist li {
 position: relative;
 height: 40px;
 border: 1px solid #999966;
 background: #CCCC99; /* GIANTS #f08233; */
 margin-bottom: -1px;
 /* margin-left: -2px; Added by Frank - 1/16/10 */
}
.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 0px;
 color: #333300;
 text-decoration: none;
 padding-left: 5px;
}

.menulist span {
 position: absolute;
 top: 50%;
 height: 20px;
 margin-top: -10px;
 font-weight: bold;
 font-size: smaller;
 padding-left: 5px;
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #FFFFFF;
 background-color: #333300;
}
.menulist a.highlighted {
 color: #FFFFFF;
 background-color: #333300;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist li {
 float: left;
 width: 100%;
}

* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hacks */

