html {
    -webkit-font-smoothing: antialiased;
}

body {
    background: #e3e3e3 url("../images/bkg-pat.png") repeat scroll 0 0;
    font: 12px/1.5em Arial, Helvetica, sans-serif, "Arial Narrow";
    color: #656565;
}

a {
    color: #fb7c03;
    text-decoration: none;
}

div {
    position: relative
}

#menu-holder {
    margin: 10px auto;
    width: 875px;
    height: 61px;
}

.menu {
    margin: 0 auto;
    padding: 0;
    width: 875px;
    height: 61px;
    background: #6E0202;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #6E0202), color-stop(0.6, #BA361F));
    background: -moz-linear-gradient(center bottom, #6E0202 0%, #BA361F 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#BA361F', endColorstr='#656d80');
}

.menu li {
    background: url("../images/menu-separator.gif") no-repeat scroll right center transparent;
    padding: 0px 2px 0px 0px;
    float: left;
    position: relative;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
}

.menu li a {
    padding: 21px 28px 22px 28px;
    color: #ffffff;
    display: block;
    text-shadow: 0px 1px 0px #000000;
}

.menu li:hover > a {
    color: #ffffff;
    background: #56596a;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #56596a), color-stop(0.6, #686c80));
    background: -moz-linear-gradient(center bottom, #56596a 0%, #686c80 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#686c80', endColorstr='#56596a');
}

/* drop down sub-menu */
.menu ul {
    background: #56596a;
    display: none;
    margin: 0;
    padding: 0;
    width: 190px;
    position: absolute;
    top: 61px;
    left: -1px;
    z-index: 9999;

}

.menu li:hover > ul {
    display: block;
}

.menu ul li {
    display: block;
    float: none;
    margin: 0px 0px 0px 15px;
    padding: 2px 0px;
    background: url("../images/submenu-sep.gif") no-repeat scroll left bottom transparent;
    text-transform: none;
}

/* sub menu hover link */
.menu ul li:hover a, .menu li:hover li a {
    background: none;
    color: #ffffff;
}

.menu ul a {
    display: block;
    height: auto;
    font-size: 14px;
    padding: 15px 0px 15px 10px;
}

.menu ul a:hover, .menu ul li:hover > a {
    background: #56596a !important;
    /* fix IE */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#56596a', endColorstr='#56596a');
    background: -webkit-gradient(linear, left top, left bottom, from(#56596a), to(#56596a)) !important;
    background: -moz-linear-gradient(top, #56596a, #56596a) !important;
    color: #e0e0e0 !important;
}

#corner-left {
    position: absolute;
    background: url("../images/corner-left.png") no-repeat 0 0;
    top: 19px;
    left: -83px;
    width: 94px;
    height: 60px;
    text-indent: -9999px;
    z-index: -2;
}

#corner-right {
    position: absolute;
    background: url("../images/corner-right.png") no-repeat 0 0;
    top: 19px;
    right: -83px;
    width: 94px;
    height: 60px;
    text-indent: -9999px;
    z-index: -2;
}