/* GLOBALS */

/* MENUS */
/* container for drop down tabs */
#menubar {
    clear: both;
    height: 20px;
    width: 775px;
    width /* ie5 mac hide */: 770px;
    margin: 3px 0 0 8px;
    background-color: #10592D;
    color: white;
    border: 1px solid black;
}

/* styling for links in tabs */
#menubar a {
    font-size: 11px;
    line-height: 20px;
    color: #fff;
    letter-spacing: 1px;
    border: 1px solid #10592D;
    padding-left: 3px;
    padding-right: 3px;
    text-decoration: none;
}

/* when moused over, this style is switched to (by js) */
#menubar a.active {
    border-bottom-color: #28360E;
    border-right-color: #28360E;
    border-left-color: #B2C78E;
    border-top-color: #B2C78E;
}

/* actual menu containers */
.menu .options {
    font-size: 11px;
    margin-right: 1px;
    margin-bottom: 1px;
    border: 1px solid #10592D;
    background-color: #FFFFFF;
}

/* links in the drop downs */
.menu a {
    color: #00491D; 
    display: block;
    padding: 2px 10px;
    text-decoration: none;
    background-color: transparent;
}

/* when hovered.. */
.menu a:hover {
    color: #fff;
    background-color: #10592D;
}

.menu a.divider {
    border-top: 1px solid #58663E;
    border-bottom: 1px solid #58663E;
}

/* LAYOUT */

/* header area, includes logo and top banner */
#lol_header {
    margin: 0 0 0px 3px;
    width: 777px;
    height: 60px;
    /* background: url(/imgz/lol-header.jpg) no-repeat top left; */
}

/* site logo, top left */
#lol_logo {
    float: left;
    display: inline;
    margin: 0;
    width: 270px;
    height: 60px;
}

/* top banner at right, next to logo */
#lol_bannerTop {
    float: right;
    margin: 0;
    width: 468px;
    height: 60px;
}

