body {
    background: #dddddd url(images/bg.png);
    font-family: "Myriad Pro", Arial, Helvetica, Tahoma, sans-serif;
    margin: 0;
    padding: 0;
}
/* --- Top Bar --- */
.top-bar {
    position: relative;
    display: block;
    background: #eecaca;
    border-bottom: solid 1px #d9a2a2;
    height: 42px;
    padding: 0 16px;
    text-decoration: none;
}
.top-bar h2 {
    position: relative;
    display: inline-block;
    margin: 0;
    padding-top: 10px;
    text-transform: uppercase;
    font-size: 21px;
    color: #870000;
}
.top-bar p {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    bottom: 2px;
    font-size: 14px;
    color: #870000;
}
/* --- Main Page Body --- */
#main {
    width: 980px;
    background: white;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 30px;
    padding-bottom: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 0 12px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, .3);
    box-shadow: 0 0 12px rgba(0, 0, 0, .3);
}
/* --- Nav Bar Background --- */
#main #nav {
    position: relative;
    height: 60px;
    padding: 0 14px;
    background: #393939;
    background-image: linear-gradient(bottom, #161616 0%, #393939 15%);
    background-image: -o-linear-gradient(bottom, #161616 0%, #393939 15%);
    background-image: -moz-linear-gradient(bottom, #161616 0%, #393939 15%);
    background-image: -webkit-linear-gradient(bottom, #161616 0%, #393939 15%);
    background-image: -ms-linear-gradient(bottom, #161616 0%, #393939 15%);
    -moz-box-shadow: 0 1px #393939 inset, 0 2px #626262 inset;
    -webkit-box-shadow: 0 1px #393939 inset, 0 2px #626262 inset;
    box-shadow: 0 1px #393939 inset, 0 2px #626262 inset;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
/* --- Logo --- */
#main #nav .logo {
    position: relative;
    display: inline-block;
    padding-top: 19px;
    text-decoration: none;
    opacity: 1;
}
#main #nav .logo h1 {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-size: 24px;
    color: white;
    text-shadow: 0 1px 1px black, 0 0 10px rgba(255, 255, 255, .5);
    -webkit-font-smoothing: antialiased;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
#main #nav .logo:hover h1 { text-shadow: 0 1px 1px black, 0 0 10px rgba(255, 255, 255, .9) }
/* --- Nav Bar Links --- */
#main #nav ul {
    position: relative;
    float: right;
    margin: 0;
    padding-top: 12px;
}
#main #nav ul li {
    position: relative;
    list-style: none;
    display: inline;
    margin-left: 2px;
}
#main #nav ul li a {
    position: relative;
    display: inline-block;
    background: #606060;
    background-image: linear-gradient(bottom, #393939 0%, #535353 20%, #606060 100%);
    background-image: -o-linear-gradient(bottom, #393939 0%, #535353 20%, #606060 100%);
    background-image: -moz-linear-gradient(bottom, #393939 0%, #535353 20%, #606060 100%);
    background-image: -webkit-linear-gradient(bottom, #393939 0%, #535353 20%, #606060 100%);
    background-image: -ms-linear-gradient(bottom, #393939 0%, #535353 20%, #606060 100%);
    border: solid 1px #292929;
    border-bottom: none;
    padding: 12px 12px;
    -moz-box-shadow: 0 1px #737373 inset;
    -webkit-box-shadow: 0 1px #737373 inset;
    box-shadow: 0 1px #737373 inset;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    font-size: 18px;
    color: #c9c9c9;
    text-shadow: 0 1px black;
    text-decoration: none;
}
#main #nav ul li a:hover {
    background: #777777;
    background-image: linear-gradient(bottom, #393939 0%, #535353 20%, #707070 100%);
    background-image: -o-linear-gradient(bottom, #393939 0%, #535353 20%, #707070 100%);
    background-image: -moz-linear-gradient(bottom, #393939 0%, #535353 20%, #707070 100%);
    background-image: -webkit-linear-gradient(bottom, #393939 0%, #535353 20%, #707070 100%);
    background-image: -ms-linear-gradient(bottom, #393939 0%, #535353 20%, #707070 100%);
    -moz-box-shadow: 0 1px #848484 inset;
    -webkit-box-shadow: 0 1px #848484 inset;
    box-shadow: 0 1px #848484 inset;
    color: #e5e5e5;
}
#main #nav ul li a.active {
	posiiton: relative;
    background: #ebebeb;
    -moz-box-shadow: 0 1px white inset, 0 0 6px 1px black;
    -webkit-box-shadow: 0 1px white3 inset, 0 0 6px 1px black;
    box-shadow: 0 1px white inset, 0 0 6px 1px black;
    border: transparent;
    color: #4e4e4e;
    text-shadow: 0 1px white;
	z-index: 4;
}
/* --- Sub Nav --- */
#main #sub-nav {
    position: relative;
    height: 35px;
    background-image: linear-gradient(bottom, #FFFFFF 0%, #EBEBEB 100%);
    background-image: -o-linear-gradient(bottom, #FFFFFF 0%, #EBEBEB 100%);
    background-image: -moz-linear-gradient(bottom, #FFFFFF 0%, #EBEBEB 100%);
    background-image: -webkit-linear-gradient(bottom, #FFFFFF 0%, #EBEBEB 100%);
    background-image: -ms-linear-gradient(bottom, #FFFFFF 0%, #EBEBEB 100%);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#EBEBEB, endColorstr=#FFFFFF)";
	z-index: 5;
}
/* --- Left Side Content --- */
#main .left-ads {
    float: left;
    padding-left: 20px;
}
#main .left-ads a {
    display: block;
    margin-bottom: 10px;
}
#main .left-ads a img {
	border: none;
}
/* --- Right Side Content --- */
#main .iframe_wrapper {
	position: relative;
    float: right;
    padding-right: 15%;
	margin-top: -25px;
    z-index: 500;
}
#main .iframe_wrapper a {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}
#main .iframe_wrapper a img {
	border: none;
}
/* --- Footer --- */
#main #footer {
    background: #f0f0f0;
    height: 60px;
    margin: 20px 5px 0 5px;
    padding: 0 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
#main #footer .logo {
    position: relative;
    float: left;
    display: block;
    padding-top: 20px;
    text-decoration: none;
}
#main #footer .logo h2 {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-size: 24px;
    color: #a2a2a2;
    text-shadow: 0 1px white;
    : ;
    -webkit-font-smoothing: antialiased;
}
#main #footer ul {
    position: relative;
    float: right;
    padding-top: 8px;
}
#main #footer ul li {
    position: relative;
    display: inline;
    list-style: none;
    margin-left: 15px;
}
#main #footer ul li a {
    font-size: 13px;
    color: #5f5f5f;
    text-shadow: 0 1px white;
}
#main #footer ul li a:hover { color: #2e2e2e }