/*
** style.css - TBS Stylesheet
*/

/* Global Styles
** ------------------------------------------------------------------------- */

html { font-family:sans-serif; font-size:14px; }
body {
    padding:0;
    margin:0;
    background:black;
}
h1, h2, h3, h4, h5, h6 {
    font-size:14px;
    font-weight:normal;
    padding:0;
    margin:0;
}

/* ClearFix */
.cf:before, .cf:after { content: ""; display:table; }
.cf:after { clear:both; }
.cf { *zoom: 1; }

/* Header
** ------------------------------------------------------------------------- */
#header {
    width:100%;
    height:120px;
    border-bottom:10px solid white;
    /* Note keep the z-index >= 500 */
    position:relative;
    z-index:500;
}
#header .wrap {
    width:960px;
    margin:0 auto;
}
/* Logo */
#header .logo {
    position:absolute;
    display:block;
    margin-top:10px;
    text-decoration:none;
}
#header .logo img {
    position:absolute;
    width:140px;
    height:140px;
    border:10px solid black;
}
#header .logo .title {
    display:block;
    font-size:24px;
    font-weight:bold;
    color:white;
    margin-left:160px;
    margin-top:80px;
}
/* Phone Number */
#header .phone {
    float:right;
    color:white;
    font-size:16px;
    margin-top:60px;
    margin-bottom:10px;
}
/* Header Navigation */
#header .nav {
    float:right;
    clear:right;
    list-style-type:none;
    padding:0;
    margin:0;
}
#header .nav li {
    display:inline-block;
    color:white;
    font-family:serif;
    font-size:16px;
}
#header .nav li a {
    color:white;
    text-decoration:none;
}
#header li:before { content:"| "; }
#header li:first-child:before { content:""; }
#header .nav .active a, #header .nav li:hover a {
    border-bottom: 5px solid #0000ff;
}

/* Banner
** ------------------------------------------------------------------------- */
#banner {
    width:100%;
    height:550px;
    background-position:center;
    position:absolute;
    z-index:1; /* Important - Keeps the banner below the content */
}

/* Content
** ------------------------------------------------------------------------- */
#content {
    position:relative;
    z-index: 100; /* Important - Keeps content above the banner */
}
#content .wrap {
    width:960px;
    margin:0 auto;
}
/* Sidebar */
#content .sidebar {
    display:block;
    position:absolute;
    list-style-type:none;
    width:260px;
    background:#111;
    padding:0;
    margin:0;
    margin-top:60px;
}
#content .sidebar li { color:#928244; }
#content .sidebar li a {
    display:block;
    color:#928244;
    padding:6px;
    padding-left:10px;
    text-decoration:none;
    border-bottom:1px solid #333;
    font-size:16px;
}
#content .sidebar li:hover a,
#content .sidebar li.active a {
    padding-bottom:2px;
    border-bottom:5px solid blue;
}
#content .sidebar li:first-child a { border-top:0; }
#content .sidebar .title {
    font-size:24px;
    padding:10px;
    padding-top:5px;
    margin-bottom:5px;
    color:#f9b512;
    font-family:serif;
    text-transform:uppercase;
}
#content .sidebar .title:before {
    content:"";
    display:block;
    position:absolute;
    width:240px;
    height:5px;
    margin-top:28px;
    border-top:2px solid #f9b512;
    border-bottom:2px solid #f9b512;
}
/* Quote */
#content .quote {
    width:640px;
    min-height:174px;
    padding-top:20px;
    margin-left:320px;
    text-shadow:1px 1px 5px black;
}
/* ClearFix on the Quote */
#content .quote:before, #content .quote:after { content: ""; display:table; }
#content .quote:after { clear:both; }
#content .quote { *zoom: 1; }
/* End ClearFix */
#content .quote h3,
#content .quote h4 {
    display:block;
    padding:20px;
    float:right;
    clear:both;
    color:white;
    font-family:serif;
}
#content .quote h3 {
    font-size:32px;
    text-align:right;
    padding-bottom:10px;
}
#content .quote h4 {
    font-size:24px;
    padding-top:0;
}
/* Slideshow */
#content .slideshow {
    display:block;
    list-style-type:none;
    width:640px;
    padding:0;
    margin:0;
    margin-left:320px;
    margin-bottom:15px;
}
#content .slideshow li{
    display:block;
    width: 630px;
    height: 400px;
    border:5px solid white;
    box-shadow:0px 0px 5px rgba(0,0,0,.6);
}
#content .slideshow li { display:none; }
#content .slideshow li:first-child { display:block; }
#content .slideshow h1 {
    float:left;
    display: block;
    width:460px;
    margin-top:-45px;
    color:white;
    font-family:serif;
    font-style:italic;
    font-size:24px;
    text-shadow:1px 1px 5px black;
}
/* Slide Content Box */
#content .slideshow .content-box {
    width:630px;
    min-height:400px;
    background:white;
	font-size:16px;
}

/* Main
** ------------------------------------------------------------------------- */
#content .main {
    font-size:16px;
    color:white;
    line-height:1.4;
}
#content .main .wrap {
    width:960px;
    margin:0 auto;
}
#content .main a {
    color:#f9b512;
}

/* Contact Form
** ------------------------------------------------------------------------- */
.contact-form {

}
.contact-form label {
    display:inline-block;
    width:200px;
    margin-bottom:5px;
}
.contact-form input[type="text"],
.contact-form textarea {
    width:200px;
}
.contact-form input[type="submit"] {
    width:206px;
    margin-top:5px;
}