
/* -------------
 * heading styles
 * ~ different levels of headings for nested
 * ~ content and descriptive sections
*/

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    display: block;
    font-family: "Arial";
    line-height: normal;
}

h1 {
    font-size: 17px;
    font-weight: normal;
    margin-bottom: 1em;
    color: #58595b;
}

h2 {
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 0.5em;
    color: #717476;
}

h2.intro {
    font-size: 14px;
    line-height: 1.33em;
    margin-bottom: 1.33em;
}

h3 {
    font-size: 13px;
    font-weight: bold;
    font-family: "Arial";
    margin-bottom: 0.5em;
    color: #3c3c3c;
}

h4 {
    font-size: 12px;
    font-weight: bold;
    font-family: "Trebuchet MS";
    margin-bottom: 1.17em;
}


a {
	outline: none;
}


/* -------------
 * paragraph styles
 * ~ change font styles in paragraphs, fonts,
 * ~ alignment, margins and paddings for different
 * ~ block and inline elements
*/

* { font-family: 'Trebuchet MS', 'Arial'; }

*.txt_center { text-align: center; }
*.txt_left { text-align: left; }
*.txt_right { text-align: right; }
div.ext .txt_right { padding: 28px 15px 0 0; }

p {
    margin: 0 0 1.33em 0;
    padding: 0;
    display: block;
}

p.intro {
    font-size: 14px;
    margin-bottom: 1.33em;
}

span.label {
    float: left;
    width: 35%;
    font-weight: bold;
    padding: 2px 0;
    margin-bottom: 2px;
}

span.value {
    float: none;
    width: auto;
    overflow: hidden;
    padding: 2px 0;
    display: block;
    margin-bottom: 2px;
}

* html span.value {
    float: left;
}

*.comment {
    color: #808082;
    font-size: .92em;
    clear: left;
    display: block;
}



/* -------------
 * link and anchor styles
 * ~ link and anchor styles to set font sizes, font
 * ~ weights, font colors and active/hover states on text
*/

a {
    text-decoration: underline;
    color: #1d4975;
    cursor: pointer;
}

a, a * { cursor: pointer; }

a:hover {
    text-decoration: none;
    color: #788fa6;
}





/* -------------
 * debugging styles
 * ~ used for coloring backgrounds in order
 * ~ to obtain the most precise layout structure
 * ~ before images and content is rendered
*/
 
.debug { background: #f00 !important; }
.debug .debug, .debug2 { background: #0f0 !important; }
.debug .debug .debug, .debug2 .debug { background: #00f !important; }




/* -------------
 * form styles
 * ~ using the form generator, these styles will be
 * ~ repeated throughout all the forms you create
*/

form {
    margin: 0;
    padding: 0;
}

form div {
    margin: 0;
    padding: 0;
}

form div.title {
    margin-bottom: 20px;
}

form div label {
    width: 80px;
    display: inline-block;
    margin: 2px 10px 2px 0;
    float: left;
    clear: left;
}

form div .separator {
    float: left;
    margin: 1px 5px;
}

form div .textfield,
form div .textarea,
form div .select,
form div .date,
form div .checkboxes {
    display: block;
    margin: 0;
    padding: 2px;
    float: none;
    overflow: hidden;
    clear: none;
    width: auto;
    border: none !important;
}

* html form div .textfield,
* html form div .textarea,
* html form div .select,
* html form div .date,
* html form div .checkboxes {
    float: left;
}

form div .select {
    border: none;
}


form div .textfield input,
form div .textarea textarea,
form div .select select,
form div .date select {
    margin: 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    width: 180px;
    height: auto;
    font-size: 11px;
    display: inline;
    float: left;
}

form div .select select,
form div .date select {
    border: 1px solid #d8d8d8;
    width: auto;
}


form div .checkboxes div {
    border: none;
    display: inline-block;
    width: 100%;
}

form div .checkboxes div input {
    border: none;
    width: 13px;
    height: 13px;
    vertical-align: top;
    margin: 5px 0;
    float: left;
    clear: none;
}

form div .checkboxes div label {
    width: auto;
    clear: none;
    float: left;
    display: inline-block;
}

form div .button input {
    margin: 0;
    padding: 0;
    border: none;
    width: auto;
    display: inline-block;
}

.column.third form div label {
    display: none;
}

.column.third form div {
    width: auto !important;
}

.column.third form div .text_field {
    width: 165px;
}



/* -------------
 * form helper styles
 * ~ Error class and success class for stying results returned by a form submission
*/

form .errors,
div.errors {
    color: #a72323;
    margin: 12px 0;
    padding: 12px;
    background: #fccece;
}

form .errors h1,
form .success h1 {
    margin-bottom: 6px;
}

form .errors li {
    display: block;
    color: #a72323;
}

div.success {
    margin: 12px 0;
    padding: 12px;
    background: #cee7fc;
}






div.btn,
form .button {
    margin: 2px 0;
    display: inline;
    background: url('../images/btn-left.gif') no-repeat 0 0;
    float: left;
}

form .button.image {
    background: none;
    clear: left;
}

div.btn div,
form .button div {
    display: inline;
    background: url('../images/btn-right.gif') no-repeat 100% 0;
    float: left;
}

form .button.image div {
    background: none;
}

form .button div input,
div.btn input,
div.btn span,
div.btn a {
    margin: 0;
    padding: 1px 16px;
    font-size: 11px;
    display: inline-block;
    line-height: normal;
    width: auto;
    overflow: visible;
    background: none;
    border: none;
    color: #404040;
    vertical-align: middle;
    float: left;
    font-weight: bold;
    text-decoration: none;
}

form .button.image div input {
    padding: 0;
}

div.btn.lrg input,
div.btn.lrg span,
div.btn.lrg a {
    padding-top: 4px;
    padding-bottom: 4px;
}


div.btn *.ico {
    background-position: 8px 50%;
    background-repeat: no-repeat;
    padding-left: 30px;
}


div.btn.lrg.hero_button{
	margin: 10px 50% 10px 50%;
	width: 147px;
}






/* -------------
 * image styles
 * ~ default image styles and helper classes for images
 * ~ including margining/floating and sizing
*/

img {
    border: none;
    outline: none;
}

.thumb {
    float: left;
    margin: 10px;
    margin-top: 0;
    margin-right: 0;
    clear: left;
}

div.thumb {
    width: 100px;
	height: 100px;
    overflow: hidden;
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
}

div.thumb2 {
    width: 100px;
    overflow: hidden;
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
}


p .thumb {
    margin-right: 15px;
}






/* -------------
 * helper styles
 * ~ clearing floats, max width fixes and elements
 * ~ to set a min height and min width
*/

.clearfix:after,
form div:after,
form:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}


html[xmlns] .clearfix,
html[xmlns] form div,
html[xmlns] form {
    display: block;
}


.clearfix,
form div,
form { display: inline-block; }

* html .clearfix,
* html form div,
* html form {
    height: 1%;
}

.clear {
    height: 0;
    line-height: 0;
    font-size: 1px;
    clear: both;
    display: block;
    overflow: hidden;
}

.widthfix {
    width: 100%;
    overflow: hidden;
}

span.img_placeholder {
    float: left;
    width: 100px;
    height: 100px;
    background: #ebebeb;
    line-height: 100px;
    text-align: center;
    color: #bcbcbc;
}

.plain { background: #fff; }






/* -------------
 * margin and padding
 * ~ set margin and padding on elements to support the
 * ~ internal spacing of columns and rows
*/

.padding { padding: 48px 15px 0px 15px; }
.padding_v { padding-top: 15px; padding-bottom: 15px; }
.padding_h { padding-left: 15px; padding-right: 15px; }

.left_pad { padding-left: 15px; }

.smarg { margin: 5px; }
.smarg_v { margin-top: 5px; margin-bottom: 5px; }
.smarg_h { margin-left: 5px; margin-right: 5px; }

.marg { margin: 15px; }
.margr { margin-right: 15px !important; }
.marg_v { margin-top: 15px; margin-bottom: 15px; }
.marg_h { margin-left: 15px; margin-right: 15px; }







/* -------------
 * list styles
 * ~ clearing floats, placeholders, max width fixes
 * ~ and elements to set a min height and min width
*/


/* ordered lists */

ol {
    margin: 0;
    margin-left: 1.33em;
    padding: 0;
    display: block;
    list-style-position: outside;
    line-height: normal;
    font-size: 1em;
}

ol li {
    margin-top: 0;
    margin-bottom: 10px;
    padding-top: 0;
    padding-bottom: 0;
}



/* unordered lists */

ul {
    margin: 0;
    padding: 0;
    display: block;
    list-style: none;
}

ul li {
    margin: 0;
    padding: 0;
    display: block;
    list-style: none;
}


ul.bullets li {
    padding-left: 10px;
    background: url('../images/bul.gif') 0 5px no-repeat;
}



/* Global links */

ul.global_links {
    display: block;
    list-style: none;
    margin: 0 0;
    padding: 10px 15px;
}

ul.global_links li {
    float: left;
    display: inline;
    margin: 0;
    padding: 0;
}

ul.global_links li.active {
    background: url('../images/global-links-active-bg.gif') 0 50% no-repeat;
    margin: 0 -6px 0 -5px;
}

ul.global_links li span.pipe {
    color: #b2c9de;
}

ul.global_links li a {
    color: #b2c9de;
    display: inline;
    float: left;
    padding: 2px;
    text-decoration: none;
}

ul.global_links li a:hover {
    text-decoration: underline;
    color: #ffffff;
}

ul.global_links li.active a {
    background: url('../images/global-links-active-bg-r.gif') 100% 50% no-repeat;
    color: #27445d;
    padding-left: 10px;
    padding-right: 10px;
}


ul.global_links li span {
    display: inline;
    float: left;
    padding: 2px;
}


/* Navigation links */

ul.nav {
    background: #fff url('../images/sub-title-bg.gif') 0 0 repeat-x;
    width: 100%;
    height: 41px;
    line-height: 41px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 12px;
    overflow: hidden;
}

.head ul.nav {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: -40px;
    height: 40px;
    line-height: 40px;
    z-index: 2;
}

ul.nav li {
    float: left;
}

ul.nav li.active {
    background: #fff;
}

ul.nav li a {
    text-decoration: none;
    color: #484444;
    display: block;
    padding: 0 12px;
    border-right: 1px solid #bfbfbf;
    overflow: hidden;
}

ul.nav li a {
    border-color: #ffffff;
}

ul.nav li.active a {
    border-right: 1px solid #bfbfbf;
    border-left: 1px solid #bfbfbf;
    margin-left: -1px;
}

ul.nav li a:hover {
    color: #6a6767;
}






/* -------------
 * row and column styles
 * ~ setting widths/heights, margins and paddings
 * ~ of row elements. used primarily for diving of
 * ~ content within structual styles and forms styles
*/

.row {
    float: left;
    width: 100%;
}

.row.alt {
    background-color: #f6f6f6;
}

.row.bm {
    margin-bottom: 4px;
}

.column {
    float: left;
    display: inline;
}

.column.right { float: right; }
.column.quarter { width: 25%; }
.column.third { width: 33.3%; }
.column.two_thirds { width: 66%; }
.column.half { width: 50%; }
.column.full { width: 100%; }

.column.auto {
    width: auto;
    float: none;
    overflow: hidden;
    display: block;
}

* html .column.auto { float: left; }







/* -------------
 * structual and layout styles
 * ~ body, html and frame elements.
 * ~ setting widths/heights, backgrounds, margins
 * ~ and paddings of structual elements. used in
 * ~ conjunction with debuging styles
*/

html {
    font-size: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
}

body {
    font-size: 0.75em;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #58595b;
    height: 100%;
}

.skyline {
    width: 100%;
    margin: auto;
    text-align: center;
    background: #4b83b3 url('../images/body-bg-repeat.jpg') 50% 100% repeat-x;
}

.shell {
    width: 100%;
    margin: auto;
    text-align: center;
    background: url('../images/body-bg-center.jpg') 50% 100% no-repeat;
}

.header_bg {
    width: 100%;
    background: url('../images/header-bg-repeat.gif') 0 0 repeat-x;
}

.header_center {
    width: 100%;
    background: url('../images/header-bg-center.jpg') 50% 0 no-repeat;
}

* > .header_center {
    background-image: url('../images/header-bg-center.png');
}

.foot_spacer {
    padding-bottom: 317px;
}

.ext {
    width: 950px;
    margin: auto;
    text-align: left;
}

.head {
    height: 161px;
    position: relative;
    font-size: 11px;
    line-height: 16px;
    color: #748a9d;
    margin-bottom: 1px;
}

.head .logo {
    display: block;
    margin: 35px 15px 27px 15px;
    width: 307px;
    height: 19px;
    line-height: 19px;
}

.head #fan_sticker {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: -202px;
    margin-top: 10px;
    z-index: 3;
}

.game {
    height: 300px;
    line-height: 300px;
    text-align: center;
    color: #ddd;
}

.th {
    background: #444444 url('../images/th-title-bg.gif') 50% 1px no-repeat;
    line-height: 44px;
    height: 44px;
    display: block;
    color: #e3e3e3;
    overflow: hidden;
}

.th a {
    color: #858585;
    text-decoration: none;
    display: inline-block;
    margin: 0 15px;
}

.th a.active {
    color: #ffffff;
    background: transparent;
}

.frame {
    background: #fff;
    border: 1px solid #444444;
}

.iframe {
    margin: 0 -1px;
}

.top_gradient {
    background: url('../images/top-gradient.gif') 0 0 repeat-x;
    padding-top: 10px;
}

.top_gradient.pad {
    margin: 0 1px;
    padding-left: 5px;
    padding-right: 5px;
}

.top_gradient.pad .pad { margin: 0; }

.column.thumbs { width: 100px; }
.column.thumbs img.thumb {
    float: none;
    margin: 0;
    padding: 0;
    margin-bottom: 1px;
    display: block;
    clear: none;
}

.feature_image { width: auto; }
.feature_image img {
    float: none;
    margin: 0;
    padding: 0;
    margin-bottom: 0;
    display: block;
    clear: none;
}


.column.feature_desc { width: 310px; }

.column.thumbs .pad,
.column.feature_image .pad,
.column.feature_desc .pad,
.column.information .pad,
.column .pad {
    padding: 15px 5px;
}


.article { 
    padding: 0 15px;
}

.article h1 {
    font-size: 12px;
    font-family: "Trebuchet MS";
    font-weight: bold;
}


.subtitle {
    height: 41px;
    background: url('../images/sub-title-bg.gif') 0 0 repeat-x;
}

.subtitle a {
    float: left;
    display: inline;
    margin: 0 12px;
    margin-top: 14px;
    text-decoration: none;
    position: relative;
    z-index: 2;
    color: #747474;
}

.subtitle a.active {
    color: #135496;
}

.subtitle a .ico {
    margin: -2px 6px 2px 0;
    vertical-align: top;
}

.grey_box {
    background: #f6f6f6;
    border: 1px solid #e6e6e6;
    margin-bottom: 10px;
}

.category_row {
    float: left;
    width: 100%;
    margin: 10px 0 0 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.category_row .scroll_left,
.category_row .scroll_right {
    width: 24px;
    height: 104px;
    line-height: 104px;
    margin: 6px;
    padding: 0;
    clear: none;
    margin-top: 200px;
}


.category_row .scroll_left {
    float: left;
    margin-left: 12px;
    background: url('../images/scroll-left-inactive.gif') 0 50% no-repeat;
}

.category_row .scroll_right {
    float: right;
    margin-right: 12px;
    background: url('../images/scroll-right-inactive.gif') 0 50% no-repeat;
}

.category_row .scroll_right.active {
    background: url('../images/scroll-right-active.gif') 0 50% no-repeat;
}

.category_row .scroll_left.active {
    background: url('../images/scroll-left-active.gif') 0 50% no-repeat;
}


.category_row .cframe {
    overflow: hidden;
    position: relative;
}

.category_row .ccontent {
    overflow: hidden;
    height: 476; 
    position: relative;
    width: 850px;
}

.ccontent.hero_shot{
	margin: 10px;
	text-align: center;
}


.category_row .cinner {
    width: 300%;
    position: relative;
}

.category_row .thumb {
    padding: 0;
    clear: none;
}

.tips {
    z-index: 9999;
    margin-top: -91px;
    margin-left: -90px;
}

.tip {
    width: 180px;
    height: 65px;
    background: url('../images/tooltip.gif') 0 0 no-repeat;
    text-align: left;
}

* > .tip {
    background-image: url('../images/tooltip.png');
}

.tip-title {
    color: #fff;
    font-weight: normal;
    padding: 0 6px;
    padding-top: 6px;
    padding-bottom: 4px;
    font-size: 16px;
    font-family: "Arial";
}

.tip-text {
    color: #fff;
    padding: 0 6px;
    padding-bottom: 6px;
    font-size: 11px;
    font-family: "Arial";
}

.fan {
    background: url('../images/fan-head-r.gif') 100% 0 no-repeat;
    position: relative;
    z-index: 2;
}

.fan h1 {
    display: none;
}

.fan .top {
    background: url('../images/fan-access-only-head.gif') 0 0 no-repeat;
    padding: 0;
    margin: 0;
    width: 100%;
}

.fan .top span {
    display: block;
    padding: 66px 80px 5px 10px;
    margin: 0;
    clear: both;
}

/*
.fan form {
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
}
*/

.fan form div { 
    border-top: 2px solid #fff;
}

.fan form div div {
    border: none;
}

.fan form div.success {
    background: #d1dffb;
    border-top: 1px solid #1b5fe9;
    border-bottom: 1px solid #1b5fe9;
    color: #1b5fe9;
    margin: 0 0 -2px 0;
    padding: 5px 10px;
}

.fan form ul.errors {
    background: #f1c8c8 !important;
    border-top: 1px solid #e91b1b;
    border-bottom: 1px solid #e91b1b;
    color: #e91b1b;
    margin: 0 0 -2px 0 !important;
    padding: 5px 10px !important;
}

.fan form div label {
    width: 60px;
    display: inline-block;
    margin: 2px 10px;
    float: left;
}
/*
.fan form div .textfield,
.fan form div .textarea,
.fan form div .select,
.fan form div .checkboxes,
.fan form div .date {
    display: inline-block;
    width: 180px;
    margin: 2px 0;
}

.fan form div .select,
.fan form div .checkboxes {
    border: none;
}

.fan form div .textfield input,
.fan form div .textarea textarea,
.fan form div .select select,
.fan form div .checkboxes input,
.fan form div .date select {
    margin: 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    width: 100%;
    height: auto;
    font-size: 11px;
    display: inline-block;
}

.fan form div .select select,
.fan form div .date select {
    width: auto;
}

.fan form div .checkboxes div {
    display: inline-block;
    width: 100%;
}

.fan form div .checkboxes div input {
    border: none;
    width: 13px;
    height: 13px;
    vertical-align: top;
    margin: 5px 0;
    float: left;
    clear: none;
}

.fan form div .checkboxes div label {
    width: auto;
    clear: none;
    float: left;
    display: inline-block;
}
*/


.fan form .button {
    display: inline-block;
    float: left;
    clear: none;
}

.fan form .button div {
    display: inline-block;
    float: left;
    clear: none;
}

.fan form .button div input {
    margin: 0 10px 0 0;
    padding: 0;
    border: none;
    width: auto;
    display: inline-block;
    float: left;
    clear: none;
}


a.fan_register {
    display: block;
    background: url('../images/fan-btn-l.gif') 0 0 no-repeat;
    height: 30px;
    overflow: hidden;
}

a.fan_register span {
    display: block;
    background: url('../images/fan-btn-r.gif') 100% 0 no-repeat;
    text-align: center;
    height: 30px;
    overflow: hidden;
}

a.fan_register span img {
    display: inline;
    
}



.tab {
    border-right: 1px solid #e6e6e6;
    position: relative;
    z-index: 1;
}

.tab a {
    text-decoration: none;
    color: #a7a7a8;
}

.tab.active {
    z-index: 3;
    background: #f6f6f6;
}

.tab.active a {
    color: #58595b;
}

.content {
    border-top: 1px solid #e6e6e6;
    position: relative;
    z-index: 2;
    margin-top: -1px;
}






#map_canvas span {
    display: none !important;
}


.footer {
    margin-top: -318px;
    height: 168px;
    font-size: 11px;
    color: #797979;
    text-align: center;
    letter-spacing: 3px;
    background: url('../images/footer-bg2.gif') 50% 100% no-repeat;
}

.footer a {
    color: #648098;
    text-decoration: none;
}

.footer a,
.footer span {
    letter-spacing: normal;
}

.footer a:hover {
    text-decoration: underline;
}





/* captions */

li.thumb {
	background: #FFF;
	position: relative;
	z-index: 1;
	height: 496px;
    width: 276px;
    margin: 0 0 0 8px;
}

.caption_hover{
	height: 446px;
    width: 276px;
	background-color: #FFF;
	border: 1px solid #FFF;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}


.caption_padding{
    height: 320px !important;
    width: 252px;
    padding: 130px 10px 0px 10px;
    position: relative;
    z-index: 3;
    opacity: 0;
    filter:alpha(opacity=0);
    border: 1px solid #848484;
}

span.caption_sub{
	background-color: #454545;
	color: #FFF;
	padding: 2px 4px 2px 4px;
}

.caption_footer{
	text-align: center;
	width: 272px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 4;
}

.caption_footer h1 {
	font-size:12px;
	font-weight:bold;
	color:#333333;
}

p.value{
	margin-top: 3px;
}



.headline-gallery-thumb-container {
	border: 1px solid #E0E0E0;
	background: #EEE;
	/*-webkit-border-radius: 5px;*/
	padding: 4px;
	/*-moz-border-radius: 5px;*/
	display: inline;
	float: left;
	margin: 0 10px 0 0;
}


.headline-gallery-thumb-image {
	display: block;
}



