/**
 * Reset the CSS defaults for all browsers.
 * @source http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
input, select, textarea, button {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: normal;
	font-style: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
/* Remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}
/* Tables still need 'cellspacing="0"' in the markup. */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

/* Colors */

.color1 {
    color: #000;
}
.color2 {
    color: #333333;
}
.color3 {
    color: #0000CC;
}
.color4 {
    color: #009EFF;
}
.color5 {
    color: #3B4043;
}
.color6 {
    color: #262A2D;
}


/* General */

body {
    font-family: Verdana, sans-serif;
    line-height: 1.5em;
    background: #000;
    color: #FFF;
}
h1 { /* Uses Color 1 */
    font-size: 1.5em;
    line-height: 1.5em;
    margin-bottom: .5em;
    color: #FFF;
}
h2 { /* Uses Color 2 */
    font-size: 1.4em;
    line-height: 1.5em;
    margin-bottom: .5em;
    color: #FFF;
}
h3 { /* Uses Color 2 */
    font-size: 1.2em;
    line-height: 1.5em;
    margin-bottom: .5em;
    color: #FFF;
}
h4 { /* Uses Color 2 */
    font-size: 1.1em;
    line-height: 1.5em;
    margin-bottom: .5em;
    color: #FFF;
}
h5 { /* Uses Color 2 */
    font-size: 1em;
    line-height: 1.5em;
    margin-bottom: .5em;
    color: #000;
}
h6 { /* Uses Color 2 */
    font-size: 1em;
    line-height: 1.5em;
    margin-bottom: .5em;
    color: #000;
}
p { /* Uses Color 2 */
    font-size: .8em;
    line-height: 1.5em;
    color: #000;
    margin-bottom: .5em;
}
a { /* Uses Color 3 */
    cursor: pointer;
    text-decoration: underline;
    color: #1F7ABC;
}
a:hover { /* Uses Color 4 */
}
a:active { /* Uses Color 2 */
}
b, strong {
    font-weight: bold;
}
ul, ol {
    margin-bottom: .5em;
    font-size: .8em;
}
ul {
    margin-left: 1.5em;
    list-style-type: disc;
}
ol {
    margin-left: 1.85em;
    list-style-type: decimal;
}
table {
    border-collapse: collapse;
    font-size: .8em;
    color: #333;
}
td {
    padding: .25em;
}
thead tr td {
    background: #F2F2F2;
    font-weight: bold;
}
tbody tr td {
}
tfoot tr td {
    background: #F2F2F2;
    font-weight: bold;
}
input:text, select, textarea {
    border: 1px solid #AAA;
    font-size: .8em;
    padding: 3px 3px;
}

/* Layout  */
#wrapper {
    min-width: 980px;
    overflow: auto;
}

#headerWrapper, #bodyWrapper {
    clear: both;
    margin: 0 auto;
}

#headerWrapper {
    margin: 0 auto 0 auto;
    padding: 0 0 .5em 0;
    overflow: auto;
    width: 856px;
}
    #logo {
        margin: 0 0 0 0;
        float: left;
    }

    #navigation {
        float: right;
        overflow: auto;
        list-style: none;
        margin: 0;
    }
        #navigation li {
            float: left;
            margin: 3em 0 0 1em;
        }
            #navigation li a.active {
            }
                #navigation li a.active:hover {
                }
            #navigation li a {
                display: block;
                float: left;
                padding: .5em 1em;
                background: #009EDE;
                color: #FFF;
                text-decoration: none;
                font-size: 1.4em;
                -moz-border-radius: 6px;
                -webkit-border-radius: 6px;
            }
                #navigation li a:hover {
                }

#bodyWrapper {
    width: 856px;
    overflow: hidden;
}

#body {
    padding: 0 0 0 0;
}

    .hdMovie {
        width: 853px;
        margin: 0 auto;
    }

#footerWrapper {
    clear: both;
    margin: 1em 0 1em 0;
}
    #footer {
        margin: 0 auto;
        padding: .5em 1em 2em 1em;
        text-align: center;
        color: #FFF;
    }
        #footer p {
            color: #FFF;
        }
        #footer a {
            color: #009EDE;
        }