/* ## corrects possible view port issues in browsers that do not recognize the viewport meta tag ## */
/* http://timkadlec.com/2013/01/windows-phone-8-and-device-width/ */
@-webkit-viewport   { width: device-width; }
@-moz-viewport      { width: device-width; }
@-ms-viewport       { width: device-width; }
@-o-viewport        { width: device-width; }
@viewport           { width: device-width; }



/*! normalize.css v2.0.1 | MIT License | git.io/normalize */

/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */

   
/*
 * Corrects `block` display not defined in IE 8/9.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
    display: block;
}

/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */

audio,
canvas,
video {
    display: inline-block;
}

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */

[hidden] {
    display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */

/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
    font-family: sans-serif; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -ms-text-size-adjust: 100%; /* 2 */
}

/*
 * Removes default margin.
 */

body {
    margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */

/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */

a:focus {
    outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
    outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */

h1 {
    font-size: 2em;
}

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */

b,
strong {
    font-weight: bold;
}

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */

dfn {
    font-style: italic;
}

/*
 * Addresses styling not present in IE 8/9.
 */

mark {
    background: #ff0;
    color: #000;
}


/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/*
 * Sets consistent quote types.
 */

q {
    quotes: "\201C" "\201D" "\2018" "\2019";
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */

/*
 * Removes border when inside `a` element in IE 8/9.
 */

img {
    border: 0;
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */

svg:not(:root) {
    overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */

/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */

figure {
    margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */

/*
 * Define consistent border, margin, and padding.
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
    border: 0; /* 1 */
    padding: 0; /* 2 */
}

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */

button,
input,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 2 */
    margin: 0; /* 3 */
}

/*
 * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

button,
input {
    line-height: normal;
}

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button; /* 2 */
    cursor: pointer; /* 3 */
}

/*
 * Re-set default cursor for disabled elements.
 */

button[disabled],
input[disabled] {
    cursor: default;
}

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/*
 * Removes inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */

/*
 * Remove most spacing between table cells.
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}



/* ===============  Default Adjustments  =============== */

body { font-family: 'PT Sans Caption', sans-serif; }

::-moz-selection { background: #3197fc; text-shadow: none; }
::selection { background: #3197fc; text-shadow: none; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0;}
img { max-width:100% !important; height:auto !important; vertical-align: middle; }
fieldset {border: 0;margin: 0; padding: 0; }
textarea { resize: vertical; }

/** FIX Google Maps Info window styes problem **/
img[src*="gstatic.com/"],
img[src*="googleapis.com/"] {
	max-width: none !important;
}

h1, h2, h3, h4, h5 {margin: 1em 0 0.25em;}
p { margin:0 0 10px; line-height: 1.438em; }

.block h1 { font-size: 1.875em; color: #d26009; margin: 0;}
.block h2 { font-size: 1.125em; color: #486b8f; margin: 0.5em 0;}
.block h3 { font-size: 1em; color: #d26009; margin: 0.7em 0;}
.block h4 { font-size: 0.875em; color: #d26009; margin: 1em 0;}

.ir { background-color: transparent; border: 0; overflow: hidden; *text-indent: -9999px; }
.ir:before { content: ""; display: block; width: 0; height: 100%; }
.hidden { display: none; visibility: hidden; }
.visuallyHidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
.visuallyHidden.focusable:active, .visuallyHidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
.invisible { visibility: hidden; }
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }

.hide       { display:none; }
.smallest   { font-size: .8em; }
.smaller    { font-size: .9em; }
.larger     { font-size: 1.1em; }
.largest    { font-size: 1.2em; }
.bold       { font-weight:bold; }
.italic     { font-style:italic !important; }
.strike     {text-decoration:line-through !important;}

.red, .red:visited          { color:#f00 !important; }
.green, .green:visited      { color:#390 !important; }
.lgreen, .lgreen:visited    { color:#97937d !important; }

.bgYellow { background:yellow; }
.bgGreen { background:lime; }
.vtop { vertical-align:top; }
.center { text-align:center; }
.left { text-align:left; }
.right { text-align:right; }
.floatLeft { float:left; }
.floatRight { float:right; }
.imgLeft { float:left; margin-right:5px; padding:5px; border:1px solid #c4c4c4; }
.imgRight { float:right; margin-left:5px; padding:5px; border:1px solid #c4c4c4; }
.nowrap { white-space:nowrap; }
.borderless { border:0; border-collapse:collapse; }
.breakforprint { page-break-after:always; }
.clear { overflow:hidden; clear:both; height:0; margin:0; font-size: 0.063em; line-height:0; }
.skip { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }
.important { color:red; font-weight:bold; text-transform:uppercase; }


/* ## Base List styles ## */
ul, ol { margin:0 0 1em; }
.noBullet { padding:0 0 0 1em; list-style-type:none; }
.noIndent { padding:0; list-style-type:none; }
.bulletSquare { list-style-type:square; }

/* ## Note/hint text or link ## */
.note { margin:0 7px; font-size: .8em; color:#4e4e4e; }
.note a, .note a:link, .note a:visited { text-decoration:underline; }


/* ================================================================
   PRIMARY LAYOUT STYLES 
   ================================================================ */

/* Enter unique styles for site here */

/* ## Disabled Form Fields ## */
input[disabled=true]    { background-color: #F0F0F0; }
textarea[disabled=true] { background-color: #F0F0F0; }
select[disabled=true]   { background-color: #F0F0F0; }
input[readonly=true]    { background-color: #F0F0F0; }
textarea[readonly=true] { background-color: #F0F0F0; }
select[readonly=true]   { background-color: #F0F0F0; }


/* Removed :link from the list to help cut down on writing time and prevent the need for extra specificity for classes */
a, a:visited { color:#6D6D6D; text-decoration: none; -webkit-transition: all 0.3s ease-in-out 0s; transition: all 0.3s ease-in-out 0s;}
a:hover, a:active, a:focus { color:#6D6D6D; text-decoration:none; }
a:active, a:focus { outline:0; }

.btnText { margin:0; padding:0; color:#6D6D6D; text-decoration:underline; border:0; background:none; }
.btnText:hover { color:#6D6D6D; text-decoration:none; }


/* ## Link Modifiers ## */
a .text { text-decoration:underline; }
a:hover .text, a:active .text, a:focus .text { text-decoration:none; }
a [class^="icon-"] { text-decoration:none; }
a.removeLink { color:#f00; font-size: 0.9em; }


/* ## Link Lists ## */
/* We use '<ul class="linkList">' when setting a list of organized links. */
ul.linkList {margin:0 0 15px 0; padding:0; list-style-type:none;}
ul.linkList li {margin-bottom:8px;}
ul.linkList a,
ul.linkList a:link,
ul.linkList a:visited { text-decoration:none;}
ul.linkList a:hover,
ul.linkList a:active {text-decoration:underline;}


/* ## Start Up Layout - Use, modify, or delete as need be ## */
body {background: url(/cms/images/2015/bg-palms.jpg) no-repeat center top / 100% auto #e6e1da; }
.container { }
.siteBody { min-height:300px; }


/* ## Site Header ## */
.siteHeader {
	background: #0e3c5f; /* Old browsers */
	background: -moz-linear-gradient(top,  #0e3c5f 0%, #1c4c70 30%, #1c4c70 69%, #0e3c5f 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0e3c5f), color-stop(30%,#1c4c70), color-stop(69%,#1c4c70), color-stop(100%,#0e3c5f)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #0e3c5f 0%,#1c4c70 30%,#1c4c70 69%,#0e3c5f 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #0e3c5f 0%,#1c4c70 30%,#1c4c70 69%,#0e3c5f 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #0e3c5f 0%,#1c4c70 30%,#1c4c70 69%,#0e3c5f 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #0e3c5f 0%,#1c4c70 30%,#1c4c70 69%,#0e3c5f 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0e3c5f', endColorstr='#0e3c5f',GradientType=0 ); /* IE6-9 */
	position:relative; 
	z-index:1000;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 62.500em;
	margin: 0 auto;
}
.siteHeader a.sitelogo,
.siteHeader a.sitelogo:link,
.siteHeader a.sitelogo:visited {display: block;}
.headerLinks { position: relative; z-index: 100; padding-top: 12px;}
.headerLinks a, .headerLinks a:link, .headerLinks a:visited {}
.headerLinks a:hover, .headerLinks a:active {}

/* ## Disabled Form Fields ## */

.siteSearch {color: #FFFFFF;margin: 0;}
.siteSearch label {display: none;}

.buy-tickets {
	-webkit-box-shadow: 0 1px 6px 2px rgba(1,1,1,0.5);
	box-shadow: 0 1px 6px 2px rgba(1,1,1,0.5);
	background: #f27f3d; /* Old browsers */
	background: -moz-linear-gradient(top,  #f27f3d 0%, #da6f32 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f27f3d), color-stop(100%,#da6f32)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f27f3d 0%,#da6f32 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f27f3d 0%,#da6f32 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f27f3d 0%,#da6f32 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #f27f3d 0%,#da6f32 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f27f3d', endColorstr='#da6f32',GradientType=0 ); /* IE6-9 */
	display: inline-block; 
	position: absolute; 
	top: -30px; 
	left: 50%; 
	margin-left: -70px; 
	width: 140px; 
	padding: 40px 0 10px; 
	text-align: center;
	-webkit-border-radius: 10px/18px; 
	border-radius: 10px/18px;
	font-weight: 700;
	font-size: 1.125em;
	z-index: 1;
}

.buy-tickets a,
.buy-tickets a:link,
.buy-tickets a:visited {color: #ffffff; text-decoration: none;}
.buy-tickets:hover {background: #f26617}

.header-middle {position: relative;}
.orange-line {position: absolute; width: 100%; height: 70px; background: #f27b37; top: 50%; margin-top: -20px; z-index: 0;}


.intro {width: 100%; max-width: 62.500em; margin: 0 auto; background: #ffffff;}
.announcement {background: #f27b37; padding: 3px 0; text-align: center; color: #ffffff; font-size: 0.750em; position: relative;}
.announcement .title {position: relative; z-index: 3; margin: 0;}
.announcement .content {position: relative; z-index: 2; padding: 10px 20px 20px; display: none;}
.announcement-toggler {
	background: #f27b37; 
	border-radius: 0 0 50% 50%;
    display: inline-block;
    height: 40px;
    left: 50%;
    margin-left: -20px;
    position: absolute;
    bottom: -20px;
    width: 40px;
    z-index: 2;
	cursor: pointer;
}
.announcement-toggler.active {}
.announcement-toggler img { bottom: 5px; display: inline-block; left: 50%; margin-left: -9px; position: absolute;}
.announcement-toggler.active img {-webkit-transform: rotate(-180deg); transform: rotate(-180deg); bottom: 9px;  margin-left: -8px;}

/* ==========================================================================
   Global Modules
   ========================================================================== */

.mod { position: relative; }

.title { position: relative; margin: 0 0 1em; }
.titleAlt { margin:0 0 0.1em; font-size: 1.2em; }
.titleAlt2 {  }

.title .more {
	position: absolute;
	top:0;
	right: 0;
	font-size: 0.6em;
}

.modContent{
	padding: 15px;
}



/* Item Lists Content
   ========================================================================== */

.itemList { 
	margin:0; 
	padding:0; 
	list-style:none; 
}

.item { 
	display: table;
	padding: 1em 0; 
	width: 100%;
	border-top: 1px solid #ccc; 
}
.item:first-child { border-top:0; padding-top:0; }
.item:last-child { padding-bottom: 0; }

.item > .content {
	display: table-cell;
	width: 100%;
	vertical-align: top;
}

.item .contentExtra {
	display: table-cell;
	vertical-align: top;
}

.content .title { margin:0; }
.itemList .content p { margin: 0; }
.content .date { font-size: 0.85em; }


/* Item Media
   ========================================================================== */

.aside { 
	display: table-cell;
	padding: 0 15px 0 0; 
	text-align: center;
}

.caption {
	display: block;
	font-size: 0.8em;
	line-height: 1.2em;
}


/* Media Queries for Item Lists 
  ========================================================================== */


@media (max-width : 400px) { 
	
	.item { display: block; }
	.item > .content { display: block;}
	.item > .aside { display: block;}

}


/* News
   ========================================================================== */

.article > .aside {
	float:right; 
	margin: 1em;
}

.meta{
	margin:0.5em 0;
}

.meta > div {
	float: left;
}

.meta .social-tools{
	float: right;
}


/* ==========================================================================
   Filters
   ========================================================================== */

.filter{
	padding: 1em;
	border: 1px solid #444444;
	background: #cccccc;
}

.filter-options{
	float: left;
}

.filter-actions{
	float: right;
}

/* Pagination
   ========================================================================== */

.paging {
	padding: 1em;
}

.paging-results { 
	float: left;
}

.paging-list {
	float: right;
}

.paging-list ul {
	display: block;
	padding: 0;
	margin: 0;
}

.paging-list li{
	display: block;
	padding: 0;
	margin: 0;
	border: 1px solid #002B40;
	border-left-width: 0;
	float: left;
}

.paging-list li:first-child{
	border-left-width: 1px;
}

.paging-list li a,
.paging-list li span {
	display: block;
	min-width: 30px;
	padding: 2px 5px;
	text-align: center;
}

.paging-list li a {
	/* Link State */
}

.paging-list li span {
	/* Current Page State */
}

.paging-list li.disabled { 
	display: none;
}

.paging-list li.disabled+li { 
	border-left-width: 1px;
}

.paging-list li.disabled+.all {
	border-left-width: 0;
}


/* pagination and filters */

.filters {float:left; display:inline; margin:0 0 5px 0;}
.filters .filterList {float:left; display:inline; margin-bottom:5px;}
.filters label { display:inline; margin:0 5px 0 0; font-weight:bold; font-size: 0.8em; }
.filters .sortList {float:left; display:inline;  padding:3px 10px 0;}
.filters .sortList label {margin:0 5px 0 0;}
.filters select {margin-right:10px;}


.filters .sortList .last {border-right:0;}
.filters .sortItem {display:inline; margin:0; padding:2px 4px; font-size: 0.8em; border-right:1px solid #999999;}
.filters .sortItem a, .filters .sortItem a:link, .filters .sortItem a:visited {padding-right:12px; text-decoration:none; background:url(/cms/images/layout/arrow_sortorder.gif) no-repeat 100% 2px;}
.filters .sortItem a.down, .filters .sortItem a.down:link, .filters .sortItem a.down:visited {font-weight:bold; background-position:100% -18px;}
.filters .sortItem a.up, .filters .sortItem a.up:link, .filters .sortItem a.up:visited {font-weight:bold; background-position:100% -38px;}

.pagination {float:right; width:400px; margin:0 0 10px 0; text-align:right;}
.pagination .view {float:right; display:inline; padding:0 0 0 10px;}
.pagination .view a,.pagination .view a:link, .pagination .view a:visited { display:inline-block; text-decoration:none; padding:2px 6px;}
.pagination .paging {float:right; display:inline; padding:0 10px; border-right:1px solid #999999;}
.pagination .paging a,.pagination .paging a:link,.pagination .paging a:visited {float:left; display:inline; margin:0 3px; padding:2px 6px; text-align:center; text-decoration:none; }
.pagination .paging .active {float:left; display:inline; margin:0 4px; padding:2px 6px; text-align:center; color:#000; background-color:#d2d2d2; text-decoration:none; border:1px solid #969696;}
.pagination .paging .total { float:left; display:block; padding-top:2px; color:#999999;}
.pagination a.arrowRight,.pagination a.arrowRight:link,.pagination a.arrowRight:visited {float:left; display:inline; background:url(/cms/images/layout/arrow_right_gray.gif) no-repeat 50% 50%; text-indent:-9999em;}
.pagination a.arrowLeft,.pagination a.arrowLeft:link,.pagination a.arrowLeft:visited {float:left; display:inline; background:url(/cms/images/layout/arrow_left_gray.gif) no-repeat 50% 50%; text-indent:-9999em;}



/* ==============================================================
   GLOBAL STYLES 
   ============================================================== */

/*--- where is this used at? ----*/
.alert { 		
	overflow:hidden;
	border: 1px solid #FE0000; 
	margin: 1em 0;
	padding: 10px;
	min-height: 50px;	
	color: #fff;
	background-color: #FEFF99;	
}
.alert a { color:#fff; }

.bdr        { border:1px solid #555244; padding:1px; background-color:#a7a496; }
.bdrTop     { border-top:1px solid #999; }
.bdrRight   { border-right:1px solid #999; }
.bdrBottom  { border-bottom:1px solid #999; }
.bdrLeft    { border-left:1px solid #999; }

.bdrDash        { border:1px dashed #555244; }
.bdrDashTop     { border-top:1px dashed #999; }
.bdrDashRight   { border-right:1px dashed #999; }
.bdrDashBottom  { border-bottom:1px dashed #999; }
.bdrDashLeft    { border-left:1px dashed #999; }

.alternate	{background-color: #d8d8d8;}
.row		{background-color: #ffffff;}


/* ##  Error Markers  ## */
   
.fieldlbl {padding:4px 2px 0 0; text-align:right;}
.field {padding-left:2px;}
.fieldpad {padding-bottom:2px;}

.fieldtext {color:#000000;}
.fielderror {color:#cc0000;}
.fieldnorm {width:16px; height:20px;}
.fieldreq {width:16px; height:20px; background:transparent url(/cms/images/global/field-req.gif) no-repeat center right;}
 span.fieldreq {padding:0 6px; background-position:center center;}
 span.fieldnorm {padding:0 6px; background-position:center center;}
.fieldred {width:16px; height:20px; background:transparent url(/cms/images/global/field-error.gif) no-repeat center right;}
 span.fieldred {padding:0 6px; background-position:center center;}

 
/* ##  Tooltip Classes  ## */

.toolTipWrpr {display:none;width:340px;z-index:99;}
.toolTipShadow {background: url(/cms/images/core/tooltipbacktop.png) no-repeat top left;padding: 10px 13px 1px 13px;color:#666666;}
.toolTopShadowBottom {background: url(/cms/images/core/tooltipbackbottom.png) no-repeat top left;width:340px;height:16px;}
.toolTipDate {font-size: 0.688em;color:#999999;font-weight:bold;}
.toolTipName {font-size: 0.875em;color:#666666;font-weight:bold;margin-bottom:14px;}


/* ##  Generic Pager  ## */

.genericPager {padding:10px 15px 20px 10px;}
.genericPager ul {list-style-type: none; margin:0; padding:0;}
.genericPager li {float:left; display:block; font-size: 0.875em; margin:0 5px 5px 0; text-transform: uppercase;}
.genericPager li a {float:left; color:#585858; text-decoration:none; }
.genericPager li a:hover, .genericPager li a:focus { color:#000; text-decoration:none; }
.genericPager li.nolink {}
.genericPager li.active {color:#333; }


/* ##  Smart Bug  ## */

.smartbug ul { list-style-type:none; background-color:#ccc; font-size: 0.625em; border-left:1px solid #000; border-right:1px solid #000; border-top:1px solid #000; padding:0px; }
.smartbug li { border-bottom:1px solid #000; }
.smartbug a, .smartbug a:link, .smartbug a:visited { text-decoration:none; display:block; color:#000; padding:5px; }
.smartbug a:hover { background-color:#999; text-decoration:underline; }


/* ##  Master Overlay Styles ## */

.siteOverlay {
    display:none;
    position:relative;
    width:550px;
    max-width:95%;
    min-height:1px;
    background-color:#fff;
    z-index:1000;
    -webkit-border-radius:5px;    
       -moz-border-radius:5px;
            border-radius:5px;
    -webkit-box-shadow:0 0 15px #333;
       -moz-box-shadow:0 0 15px #333;
            box-shadow:0 0 15px #333;
}
.siteOverlay .overlayBar {position:relative; padding:7px 10px; text-align:right; border-bottom:1px solid #e6e6e6;}
.siteOverlay .overlayClose {display:inline-block; cursor:pointer; z-index:5;}
.siteOverlay .overlayContent {padding:15px;}


/* =================================================================
                           MODULE STYLES 
===================================================================*/


/* ##  Breadcrumb  ## */

.breadcrumbs { padding:0 0 10px 0; font-size: .9em; }
.breadcrumbs a, .breadcrumbs a:visited { text-decoration:none; }
.breadcrumbs a:hover, .breadcrumbs a:focus, .breadcrumbs a:active { text-decoration:underline; }
.breadcrumbs span { margin:0 2px; font-weight:normal; }


/* ## Page Heading ## */
.pageHeading {}
.pageHeading .inner {background: #f27b37; padding: 10px 30px; margin: 40px 0; position: relative; border-bottom: 10px solid #b3521a; display: inline-block;}
.pageHeading .inner:before {position: absolute; content: ''; height: 100%; width: 20px; background: #f27b37; top: 0; left: -20px; border-bottom: 10px solid #b3521a;}
.pageHeading .inner h1 {margin: 0; font-size: 2.000em; line-height: 1.125em; color: #ffffff; text-transform: uppercase;}
.pageHeading .inner h1 span {display: block; position: relative;}
.pageHeading .inner span:before {position: absolute; content: ''; height: 0; width: 0; bottom: -30px; display: inline-block; border-top: 0 solid transparent; border-bottom: 10px solid transparent; border-right: 20px solid #537aa2; left: -50px;}


/* ##  PAGE TOOLS  ## */
/* Print and Email icons and wrapper */

.pageToolsWrapper {float:right; display:inline; padding:5px 0 0 0; text-align:right;}

.pageTool { margin:0 10px 0; font-size: 0.938em; color:#686868; font-weight:normal; text-decoration:none; cursor:pointer; }

.pageToolsWrapper a { float:right; display:inline;  }
.pageToolsWrapper a:hover,
.pageToolsWrapper a:active {color:#1C4E87; text-decoration:underline;}

.pageToolsWrapper a.bookmark,
.pageToolsWrapper a.bookmark:link,
.pageToolsWrapper a.bookmark:visited {padding:0 0 0 18px; margin-left:7px; background-position:0 -39px;}
.pageToolsWrapper a.bookmark:hover,
.pageToolsWrapper a.bookmark:active {background-position:0 -119px;}

.pageToolsWrapper .addthis_toolbox { float:right; display:inline; }
.pageToolsWrapper .addthis_toolbox a,
.pageToolsWrapper .addthis_toolbox a:link,
.pageToolsWrapper .addthis_toolbox a:visited {background:none; padding:0; margin:0 0 0 5px; }

.addthis_toolbox { display:inline; }


/* ## Email a Friend ## */

.emailFriendWrapper {}
.emailFriendWrapper .inner { padding:10px; }
.emailFriendWrapper .emailFriendSender { margin:10px 0 20px; border-bottom:1px dashed #ccc; }
.emailFriendWrapper .emailFriendAdditional { margin:10px 0 0; padding:20px 0 0; border-top:1px dashed #ccc; }

/* =================================================================
                        THIRD PARTY STYLES
===================================================================*/


/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  z-index: 2;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

.owl-carousel .carousel-content {position: absolute; bottom: 15px; left: 0; width: 100%; text-align: center; padding: 0 40px; -webkit-box-sizing: border-box; box-sizing: border-box;}
.owl-carousel .carousel-content p {font-size: 2.000em;  line-height: 1em; color: #ffffff; font-weight: 700; text-transform: uppercase; text-shadow: 2px 1px 3px #000000; margin: 0;}

.hero-carousel .owl-controls .owl-nav .owl-prev,
.hero-carousel .owl-controls .owl-nav .owl-next {width: 18px; height: 62px; position: absolute; top: 50%; margin-top: -31px; text-indent: -9999em; z-index:10;}
.hero-carousel .owl-controls .owl-nav .owl-prev {background: url(/cms/images/2015/carousel-left.png) no-repeat center center; left: 30px;}
.hero-carousel .owl-controls .owl-nav .owl-next {background: url(/cms/images/2015/carousel-right.png) no-repeat center center; right: 30px;}


.social-carousel {}
.social-carousel .owl-wrapper-outer {padding-bottom: 5px;}
.social-carousel .owl-item.active {border-right: 1px solid #8099ab; -webkit-box-sizing: border-box; box-sizing: border-box;}
.social-carousel .owl-controls .owl-nav .owl-prev,
.social-carousel .owl-controls .owl-nav .owl-next {width: 7px; position: absolute; top: 0; text-indent: -9999em; background: #f49032;}
.social-carousel .owl-controls .owl-nav .owl-prev {left: 0;}
.social-carousel .owl-controls .owl-nav .owl-prev:after {content: ''; position: absolute; left: 0; top: 50%; margin-top: -4px; border-top: 5px solid Transparent; border-bottom: 5px solid Transparent; border-right: 6px solid #ffffff;}
.social-carousel .owl-controls .owl-nav .owl-next {right: 0;}
.social-carousel .owl-controls .owl-nav .owl-next:after {content: ''; position: absolute; left: 0; top: 50%; margin-top: -4px; border-top: 5px solid Transparent; border-bottom: 5px solid Transparent; border-left: 6px solid #ffffff;}




/* =================================================================
                        PRINT STYLES
===================================================================*/

@media print {
	* { background: transparent !important; color: #000 !important; box-shadow:none !important; text-shadow: none !important; }
	a, a:visited { text-decoration: underline; }
	a[href]:after { content: " (" attr(href) ")"; }
	abbr[title]:after { content: " (" attr(title) ")"; }
	.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
	pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
	thead { display: table-header-group; }
	tr, img { page-break-inside: avoid; }
	img { max-width: 100% !important; }
	@page { margin: 0.5cm; }
	p, h2, h3 { orphans: 3; widows: 3; }
	h2, h3 { page-break-after: avoid; }
}

	


/* ===============  HOME SLIDESHOW  =============== */

.mainStage {position:relative; overflow:hidden; width:960px; height:425px; margin:0 20px;}

.mainStage h1 {color:#72A3D0; font:normal 14px Sone,'Arial Narrow',Arial,Helvetica,sans-serif; font-stretch:condensed; margin:0 0 0.6em 0; padding:0; text-transform:lowercase; text-shadow:1px 1px 1px #fff; z-index:2;}
.mainStage h1 sup {font-size: 0.5em;}
.mainStage h3 {color:#72A3D0; font:bold 20px 'Arial Narrow',Arial,Helvetica,sans-serif; font-stretch:condensed; margin:0 0 0.6em; z-index:2;}
.mainStage-top {position:absolute; top:20px; border-bottom:1px dashed #bbc2c9; width:100%;padding-bottom:4px; z-index:1;}
.mainStage .items {width:20000em; position:absolute; clear:both}
.mainStage .single {float:left; position:relative; width:960px; height:425px; margin:0; padding:0;  background-repeat:no-repeat; background-position:right 0;}
.mainStage .single h3 { font-size: 60px; text-transform:uppercase; margin:80px 0 0 0; text-shadow:2px 2px 2px #ABC9E4;}
.mainStage .single p {font-size: 0.875em; font-weight:bold; color:#72a3d0; line-height:1.6em;}

.mainStage .navi {position:absolute; top:15px; right:0;}
.mainStage a.browse {background:url(/cms/images/slideshow/slide_arrows.png) no-repeat; display:block; width:25px; height:30px; cursor:pointer; font-size: 0.063em; position:absolute; z-index:1000; top:0;}
.mainStage a.right {background-position:-25px 0; right:0;}
.mainStage a.right:hover {background-position:-25px -30px}
.mainStage a.right:active {background-position:-25px -60px}
.mainStage a.left {margin-left:0;right:35px;}
.mainStage a.left:hover {background-position:0 -30px;}
.mainStage a.left:active {background-position:0 -60px;}
.mainStage a.disabled {visibility:hidden !important;}


/* ## Button Styles ## */
/* 
    <span class="btnWrapper"><input class="btn" value="Submit" /></span>
	or
	<a href="#" class="btnWrapper"><span class="btn">Submit</a></a>
*/

.btnWrapper { display:inline-block; text-decoration:none !important; -webkit-border-radius: 20px; border-radius: 20px;}
.btn,
.btn:visited {
	background: #f38648; /* Old browsers */
	background: -moz-linear-gradient(top,  #f38648 0%, #dd7032 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f38648), color-stop(100%,#dd7032)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f38648 0%,#dd7032 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f38648 0%,#dd7032 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f38648 0%,#dd7032 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #f38648 0%,#dd7032 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f38648', endColorstr='#dd7032',GradientType=0 ); /* IE6-9 */
	display:inline-block; 
	margin:0; 
	padding: 10px 20px; 
	font-weight: 600; 
	color:#fff; 
	border: 0 none; 
	text-align:center; 
	text-decoration:none; 
	cursor:pointer; 
	overflow:visible; 
	-webkit-border-radius: 20px; 
	border-radius: 20px;
}
.btnWrapper:hover, 
.btnWrapper:hover .btn { background: #dc6c2c; color: #fee4d5;}

.btnAlt {background-color:#cccccc ;}
.btnAlt .btn{color:#666666; background-color:#cccccc ; border:1px solid #fff; text-align:center; text-decoration:none; cursor:pointer;}
.btnAlt:hover, .btnAlt:hover .btn { background-color:#E3E3E3; }

.btnLarge .btn {padding:5px 10px; font-size: 1.4em;}

.btnFullWidth {display:block;}
.btnFullWidth .btn {display:block; padding-left:0; padding-right:0; }
.btnFullWidth input.btn { width:100%; }

.btnDownload,
.btnDownload:visited {-webkit-border-radius: 8px; border-radius: 8px; background: url(/cms/images/2015/btn-download.png) no-repeat 10px center #f37b36; font-size: 1.125em; -webkit-box-shadow:inset 0 0 0 1px #000000; box-shadow:inset 0 0 0 1px #000000; padding-left: 50px;}

.btnWrapper:hover .btnDownload { background: url(/cms/images/2015/btn-download.png) no-repeat 10px center #e46d29;}

/* ## modifier for icon fonts (IcoMoon) embedded within button wrapper ## */

.btnWrapper [class^="icon-"] { margin:0 3px; font-size: 0.7em; }


/* ## Site Icons ## */

.iconImage { position:relative; display:inline-block; bottom:1px; width:10px; height:10px;  vertical-align:middle; text-indent:-9999em; background:url(/cms/images/layout/icons_default.png) no-repeat 0 0; overflow:hidden; }
.iconCart { width:22px; height:22px; background-position:0 0; }
.iconRefresh { width:22px; height:22px; background-position:0 -27px; }
.iconContinueArrow { width:22px; height:16px; background-position:0 -57px; }
.iconCheckbox { width: 18px; height: 14px; background-position: -23px -112px; }
.iconXSquareRed { width: 12px; height: 12px; background-position: 0 -112px; }
.iconSearch { width: 14px; height: 14px; background-position: -55px 0; }
.iconQuestion { width: 22px; height: 22px; background-position: 0 -75px; }


/* ## truncate styling ## */

.truncateLink {}
.truncateLink a, .truncateLink a:link, .truncateLink a:visited { margin-left:5px; }
.truncateLink a.truncateMore, .truncateLink a.truncateMore:link, .truncateLink a.truncateMore:visited {}
.truncateLink a.truncateLess, .truncateLink a.truncateLess:link, .truncateLink a.truncateLess:visited {}


/* ## footer ## */
.welcomeMessage {position:absolute; bottom:5px; right:0; width:50%; padding:20px; font-size: 0.750em; background-color:#ECF1F8; border:1px solid #9BAAB7;}
.welcomeMessage .iconClose {position:absolute; top:3px; right:3px; width:13px; height:13px; background:url(/cms/images/layout/icon_x.gif) no-repeat 0 0; cursor:pointer;}
.copyright { text-align:right; color:#787878;}

/* ## Footer Email Signup ## */

.emailSignup {margin:0 0 15px;}
.emailSignup p { margin:0 0 2px 0; }
.emailSignup .imgLabel {float:left; margin:5px 7px 0 0;}
.emailSignup .text {float:left; width:165px; margin:0 5px 0 0;}


/* ## Footer Social Follow ## */

.followUs {margin:0 0 10px;}
ul.socialFollow {margin:0; padding:0; list-style-type:none;}
ul.socialFollow li {display:inline-block;}
ul.socialFollow li a {display:inline-block; width:32px; height:32px; background:url(/cms/images/layout/social-32.png) no-repeat 0 0; text-indent:-9999em; overflow:hidden;}
ul.socialFollow li.facebook a {background-position:0 0;}
ul.socialFollow li.twitter a {background-position:0 -69px;}
ul.socialFollow li.gplus a {background-position:0 -138px;}
ul.socialFollow li.pinterest a {background-position:0 -207px;}


/* ## Table Wrapper to allow for overflow/scroll on smaller screens ## */
.tableWrapper { overflow:auto; }


/* ## NEW Limit Text Box ## */

.limitTextBox {}
.limitTextBox span { display:none; }
.limitTextBoxBar { width:100%; }
.limitTextBoxBarWrpr {
	width:100%;
	border:0px solid #000;
	overflow:hidden;
	font-size: 0.563em;
	color:#000;
	white-space:nowrap;
	height:5px;
	background-color:#FDFBBE;
}
.limitTextBoxBarInner { width:0%; background-color:#FF0000; }
.limitTextBoxInputWrpr { display:table-cell; width:100%; vertical-align:top; }
.limitTextBoxInputWrpr textarea { box-sizing:border-box; vertical-align:top; }
.limitTextBoxSpellWrpr { display:table-cell; padding-left:5px; vertical-align:top; }
.limitTextBoxSpellWrpr img { max-width:16px !important; cursor: pointer; }




.separator {
	background: #0e3c5f; /* Old browsers */
	background: -moz-linear-gradient(top,  #0e3c5f 0%, #1c4c70 30%, #1c4c70 69%, #0e3c5f 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0e3c5f), color-stop(30%,#1c4c70), color-stop(69%,#1c4c70), color-stop(100%,#0e3c5f)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #0e3c5f 0%,#1c4c70 30%,#1c4c70 69%,#0e3c5f 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #0e3c5f 0%,#1c4c70 30%,#1c4c70 69%,#0e3c5f 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #0e3c5f 0%,#1c4c70 30%,#1c4c70 69%,#0e3c5f 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #0e3c5f 0%,#1c4c70 30%,#1c4c70 69%,#0e3c5f 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0e3c5f', endColorstr='#0e3c5f',GradientType=0 ); /* IE6-9 */
	height: 30px; 
}

.site-wrapper { background: #ffffff; }
.mainContent {background: #ffffff;}
.mainContent .content {padding: 0 0 40px;}

.hdng-orange {text-align: center; color: #ffffff; text-transform: uppercase; margin: 0; padding: 10px 0; background: #f27b37; position: relative;}



.features-wrapper {}
.features-wrapper .inner {padding: 30px 0;}
.features-wrapper .bucket {
	background: #0e3c5f; /* Old browsers */
	background: -moz-linear-gradient(top,  #0e3c5f 0%, #1c4c70 30%, #1c4c70 69%, #0e3c5f 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0e3c5f), color-stop(30%,#1c4c70), color-stop(69%,#1c4c70), color-stop(100%,#0e3c5f)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #0e3c5f 0%,#1c4c70 30%,#1c4c70 69%,#0e3c5f 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #0e3c5f 0%,#1c4c70 30%,#1c4c70 69%,#0e3c5f 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #0e3c5f 0%,#1c4c70 30%,#1c4c70 69%,#0e3c5f 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #0e3c5f 0%,#1c4c70 30%,#1c4c70 69%,#0e3c5f 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0e3c5f', endColorstr='#0e3c5f',GradientType=0 ); /* IE6-9 */
	text-align: center;
	color: #ffffff;
}
.features-wrapper .bucket a,
.features-wrapper .bucket a:link,
.features-wrapper .bucket a:visited {display: block;}
.features-wrapper .bucket h3 {margin: 0;}
.features-wrapper .bucket h3 a,
.features-wrapper .bucket h3 a:link,
.features-wrapper .bucket h3 a:visited {display: block; padding: 15px 15px 0; color: #ffffff;}
.features-wrapper .bucket a img {padding: 0 15px 15px}

.spotlight-wrapper {}
.spotlight-wrapper .inner {padding: 20px 0;}
.spotlight-wrapper .inner-row {padding: 10px 0; text-align: center;}

.make-it-orange {background: #f27b37; color: #ffffff; text-shadow: 3px 2px 3px #000000; text-align: center; padding: 10px; font-weight: 700; font-size: 4.500em; line-height: 1;}

.socialLounge-wrapper {background: #0f3e61; color: #ffffff;}
.socialLounge-wrapper .inner {}
.social-carousel {padding:0 5px; -webkit-box-sizing: border-box; box-sizing: border-box; }
.contentBox .inside {background: #ffffff; color: #303030; padding: 6px; margin: 0 10px; font-size: 0.688em; -webkit-box-shadow: 3px 3px 5px 1px rgba(1,1,1,0.5); box-shadow: 3px 3px 5px 1px rgba(1,1,1,0.5); position: relative;}
.contentBox .inside .icon {display: inline-block; width: 50px; height: 50px; background: url(/cms/images/2015/logo.png) no-repeat center center / 80% auto #0f3e61 }
.contentBox .inside a,
.contentBox .inside a:link,
.contentBox .inside a:visited {color: #f49032;}
.contentBox .inside table {font-size: 1.125em;}
.contentBox .inside table td {vertical-align: top;}
.contentBox .inside table td:last-child {padding-left: 10px;}
.contentBox .inside table td strong {font-weight: 600; color: #f49032;}
.contentBox .inside .description {padding: 10px 0 30px}
.contentBox .inside .lower {position: absolute; bottom: 0; left: 0; width: 100%; padding: 5px; -webkit-box-sizing: border-box; box-sizing: border-box; height: 30px;}
.contentBox .inside .lower .postStamp {display: inline-block;}
.contentBox .inside .lower ul {margin: 0; padding: 0; float: right;}
.contentBox .inside .lower ul li {padding: 0; list-style: none; display: inline-block;}
.contentBox .inside .lower ul li a {display: inline-block; width: 20px; height: 20px; text-indent: -9999em;}
.contentBox .inside .lower ul li.reply a {background: url(/cms/images/2015/tw-reply.png) no-repeat center center;}
.contentBox .inside .lower ul li.re-tweet a {background: url(/cms/images/2015/tw-retweet.png) no-repeat center center;}
.contentBox .inside .lower ul li.favorite a {background: url(/cms/images/2015/tw-favorite.png) no-repeat center center;}

.typeFacebook .inside .lower ul li a {display: inline-block; width: auto; height: auto; text-indent: 0; padding: 0 2px; color: #0f3e61}
.typeInstagram .inside .media {padding: 5px 0; text-align: center;}

/* =================================================================
                        RECYCLED CSS
===================================================================*/


/***************** General Module Styling */
.mod { background: #f0efee; color: #666666; position: relative;margin-bottom: 10px; font-size: 0.750em;}
.no-hsla .mod {background: url(/cms/images/layout/page-content-bg.png) repeat;}
.mod.modAlt { color: #fff;}
.aside .mod { margin: 0 0 10px;}
.modHead {
    color: #fff; 
    height: 39px; 
    line-height: 40px; 
    margin: 0; 
    padding: 0px 10px; 
    border-top: 1px solid #F58025; 
    border-right: 1px solid rgba(255, 255, 255, 0); 
    border-left: 1px solid rgba(255, 255, 255, 0);
    -webkit-box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.25), 
                        inset -1px 0 0 0 rgba(255, 255, 255, 0.25), 
                        inset 0 1px 0 0 rgba(255, 255, 255, 0.25);
            box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.25), 
                        inset -1px 0 0 0 rgba(255, 255, 255, 0.25), 
                        inset 0 1px 0 0 rgba(255, 255, 255, 0.25);
  background: #f58024;
  background: -moz-linear-gradient(top,  #f58024 0%, #c95801 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f58024), color-stop(100%,#c95801));
  background: -webkit-linear-gradient(top,  #f58024 0%,#c95801 100%);
  background: -o-linear-gradient(top,  #f58024 0%,#c95801 100%);
  background: -ms-linear-gradient(top,  #f58024 0%,#c95801 100%);
  background: linear-gradient(to bottom,  #f58024 0%,#c95801 100%);
}

.modHead h2 {  display: block; margin: 0; color: #fff; text-shadow: 0 0 4px hsla(0, 0%, 0%, 0.4);}
.modHeadTabs { width: 50%;  display: block; float: left; cursor: pointer;  -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
.ie7 .modHeadTabs { width: 135px; }
.modHeadTabs h2 {filter:alpha(opacity=60); opacity: 0.6; }
.modHeadTabs.active h2, .modHeadTabs:hover h2, .modHeadTabs:focus h2 {filter:alpha(opacity=100); opacity: 1;}
.modHeadTabs.active { cursor: default; }
.modTabs .modContent { clear: both;}
.modContent {
    border: 1px solid #3d3b6e; 
    border-top: none; 
    padding: 15px 15px;
    -webkit-box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.5), 
                        inset -1px 0 0 0 rgba(255, 255, 255, 0.5), 
                        inset 0 -1px 0 0 rgba(255, 255, 255, 0.5);
            box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.5), 
                        inset -1px 0 0 0 rgba(255, 255, 255, 0.5), 
                        inset 0 -1px 0 0 rgba(255, 255, 255, 0.5);
}
.modContentHead  { color: #28246e; font-size: 1.077em; line-height: 1.2857em; font-weight: bold; margin: 0; padding: 0; font-weight: bold;}


.modTabs .modContent iframe {width: 100% !important;}

/***************** Sub Navigation */

.leftNav .modContent { padding-top: 1px; padding-bottom: 1px;}
.leftNav ul { margin: 0; padding: 0; list-style: none outside none;}
.leftNav li { margin: 1px 0;}
.leftNav a { display: block; font-size: 1.16667em; font-weight: bold; color: #000; padding: 8px 10px; 
  -webkit-transition: background 0.2s ease-in-out;
     -moz-transition: background 0.2s ease-in-out;
      -ms-transition: background 0.2s ease-in-out;
       -o-transition: background 0.2s ease-in-out;
          transition: background 0.2s ease-in-out;
  }
.leftNav li > a:hover,
.leftNav li > a:focus {background: hsla(0, 100%, 100%, 0.50); text-decoration: none;}
.no-hsla .leftNav li > a:hover, 
.no-hsla .leftNav li > a:focus { background: url(/cms/images/layout/page-content-bg.png) repeat; }
.leftNav li > a.on {background: hsla(0, 100%, 100%, 0.80);}
.no-hsla .leftNav li > a.on {background: url(/cms/images/layout/page-content-bg.png) repeat;}
.leftNav ul ul a { padding: 5px 10px 5px 20px; font-size: 1em; color: #312e85;}

/***************** Comments Style */

.cmtWrpr { padding: 15px 0; }
#mVideoRating,
.cmtRating { overflow: hidden}
.comments { clear: both; }
.cmtName { border-bottom: 1px solid #d1a584; padding: 0 0 2px; margin-bottom: 5px;}
.cmtReadInner .description { margin: 0.5em 0 0;}
.star-rating { float: left; width: 17px; height: 15px; text-indent: -999em; cursor: pointer; display: block; background: transparent; overflow: hidden;}
.cmtText div.star-rating, .newsModuleWrpr div.star-rating { cursor: default;}
.star-rating, div.star-rating a { background: url(/cms/images/layout/star.gif) no-repeat 0 0;}
.star-rating a { display: block; width: 16px; height: 100%; background-position: 0 -32px; border: 0;}
.star-rating-on a { background-position: 0 0!important;}
.star-rating-hover a { background-position: 0 -16px;}
.star-rating-readonly a { cursor: default!important; }

.rail-content .bannerMod {margin-bottom: 20px;}

.footer {}
.footer-info {  padding: 30px 0; margin: 0 auto; color:#3c3c3c; overflow: hidden; }
.footer-info .legal {float: left; padding: 10px 0 0;}
.footer-info p { font-size: 0.813em;margin: 5px 0; line-height: 1.25em;}
.footer-info .assocLogos {float: right; }
.footer-info .assocLogos a {
    margin-left: 5px; 
    float: left; 
    display: block; 
    color: transparent; 
    text-shadow: none; 
    background-color: transparent; 
    border: 0; 
    background-image: url(/cms/images/2015/ft-logo-sprite.png); 
    background-repeat: no-repeat;
}
.footer-info .assocLogos a.assoc-acc{ background-position: 0 0; width: 100px; height: 60px; } 
.footer-info .assocLogos a.assoc-bcs{ background-position: -100px 0; width: 90px; height: 60px; } 
.footer-info .assocLogos a.assoc-fba{ background-position: -188px 0; width: 70px; height: 60px; } 
.footer-info .assocLogos a:hover,
.footer-info .assocLogos a:focus { opacity: 0.7; filter: alpha(opacity=70);}
.footer-info .assocLogos a:active { opacity: 0.5; filter: alpha(opacity=50);}
.footer-links { width: 970px; margin: 0 auto; color:#1A1769; overflow: hidden; padding:10px;}
.footer-links ul { margin: 3px 0; padding: 0; list-style: none outside none; float: left;}
.footer-links li { float: left; border-left: 1px solid #1A1769; line-height: 1em;}
.footer-links li:first-child { border-left: none;}
.footer-links li a { display: block; color: #1A1769; padding: 0 5px;}
.refer { float: right;}
.refer a {color: #1A1769;}



.hdng-mod {text-transform: uppercase; font-size: 1.500em; color: #486b8f; margin: 0 0 20px}

.social-wrapper {position: relative;}
.searchWrapper {
    position: absolute; 
    left: 0; 
    top: -1px; 
    background: #ffffff; 
    height: 33px; 
    -webkit-border-radius: 50px;
    border-radius:50px; 
    -webkit-transition: all 0.2s ease-out; 
    -moz-transition: all 0.2s ease-out; 
    -o-transition: all 0.2s ease-out; 
    transition: all 0.2s ease-out;
     -webkit-box-sizing: border-box; 
    box-sizing: border-box; 
    width: 0;
    overflow: hidden;
    visibility: hidden;
}
.searchWrapper.active {width: 100%; overflow: visible; visibility: visible;}

.searchWrapper input[type="text"] {
    padding: 0 40px; 
    border: 0 none;
    width: 100%; 
    height: 100%; 
     -webkit-box-sizing: border-box; 
    box-sizing: border-box; 
     -webkit-border-radius: 50px; 
    border-radius: 50px;
}
.searchWrapper .btn-search {
    position: absolute; 
    right: 2px; 
    top: 2px; 
    width: 40px; 
    height: 29px; 
    -webkit-border-radius:  0 50px 50px 0; 
    border-radius:  0 50px 50px 0;
    border: 0 none; 
    background:url(/cms/images/2015/icon-GO.png) no-repeat center center #d8d8d8;
    padding: 0;
}
.searchWrapper .btn-search:hover {background-color: #dddddd;}

.social-wrapper a.search {position: relative; z-index: 1; margin-left: 0;}


ul.link-list {margin: 10px 0 10px 10px; padding: 0; list-style: none;}
ul.link-list li {padding: 0 0 5px 20px; background: url(/cms/images/2015/event-search-list-bg.png) no-repeat 0 6px;}
ul.link-list li a,
ul.link-list li a:link,
ul.link-list li a:visited {font-size: 1.350em; font-weight: 700; color: #486b8f;}

/* =================================================================
                        Media Queries
===================================================================*/


/* 16px baseline (180px - 767px) */
@media only screen and (min-width:11.250em) and (max-width:47.938em) {	
	.siteHeader a.sitelogo,
	.siteHeader a.sitelogo:link, 
	.siteHeader a.sitelogo:visited {}
	.logo-text,
	.siteHeader .eventsSummaryWrpr,
	.big-social,
	.site-ad-floater,
	.pageTools,
	.desktopOnly {display:none;}
	
	.siteHeader {width: auto; padding-bottom: 2px;}
	.header-middle {margin: 0 -10px;}
	.logo-icon {width: 103px; height: auto; margin: 0 auto; display: block; position: relative; z-index: 100;}
	.orange-line {margin-top: -35px}
	.buy-tickets {padding: 35px 0 5px; font-size: 1em;}
	.headerLinks {position: static; height: 45px; padding: 0;}
	.social-wrapper {float: none; position: absolute; bottom: -47px; left: 10px;}
	.social-wrapper a,
	.social-wrapper a:link,
	.social-wrapper a:visited {
		display: inline-block; 
		margin: 0 2px; 
		float: left; 
		text-align: left; 
		width: 25px; 
		height: 25px; 
		text-indent: -9999em; 
		background-size: 100% auto; 
		background-repeat: no-repeat; 
		-webkit-transition:none; 
		transition: none;
	}
	
	.social-wrapper a.search {background-image: url(/cms/images/2015/social-icons-search.png);}
	.social-wrapper a.search:hover {background-position: 0 -31px;}
	.social-wrapper a.facebook {background-image: url(/cms/images/2015/social-icons-facebook.png);}
	.social-wrapper a.facebook:hover {background-position: 0 -31px;}
	.social-wrapper a.twitter {background-image: url(/cms/images/2015/social-icons-twitter.png);}
	.social-wrapper a.twitter:hover {background-position: 0 -31px;}
	.social-wrapper a.instagram {background-image: url(/cms/images/2015/social-icons-instagram.png);}
	.social-wrapper a.instagram:hover {background-position: 0 -31px;}
	.social-wrapper a.youtube {background-image: url(/cms/images/2015/social-icons-youtube.png);}
	.social-wrapper a.youtube:hover {background-position: 0 -31px;}
	.social-wrapper a.email {background-image: url(/cms/images/2015/social-icons-email.png);}
	.social-wrapper a.email:hover {background-position: 0 -31px;}
	
	/*
	.social-wrapper a.search {background-position: 0 -80px;}
	.social-wrapper a.search:hover {background-position: 0 -118px;}
	.social-wrapper a.facebook {background-position: -36px -80px;}
	.social-wrapper a.facebook:hover {background-position: -36px -118px;}
	.social-wrapper a.twitter {background-position: -72px -80px;}
	.social-wrapper a.twitter:hover {background-position: -72px -118px;}
	.social-wrapper a.instagram {background-position: -108px -80px;}
	.social-wrapper a.instagram:hover {background-position: -108px -118px;}
	.social-wrapper a.youtube {background-position: -145px -80px;}
	.social-wrapper a.youtube:hover {background-position: -145px -118px;}
	.social-wrapper a.email {background-position: -182px -80px;}
	.social-wrapper a.email:hover {background-position: -182px -118px;}
	*/
	.searchWrapper {height: 28px;}
	.searchWrapper input[type="text"] {padding: 0 23px 0 28px;}
	.searchWrapper .btn-search {height: 27px; width: 22px; background-size: 80% auto; top: 1px;}
	
	.owl-carousel .carousel-content {padding: 0 10px; bottom: 5px;}
	.owl-carousel .carousel-content p {font-size: 0.938em;  line-height: 1em;} 
	.hero-carousel .owl-controls .owl-buttons .owl-prev, .hero-carousel .owl-controls .owl-buttons .owl-next {height: 20px; width: 8px; background-size: 100% auto; margin-top: -10px;}
	.hero-carousel .owl-controls .owl-buttons .owl-prev {left: 10px}
	.hero-carousel .owl-controls .owl-buttons .owl-next {right: 10px}
	
	.separator {height: 10px;}
	
	.features-wrapper,
	.socialLounge-wrapper {margin: 0 -10px;}
	
	.hdng-orange {font-size: 1.250em}
	
	.features-wrapper .grid_3 {width: 25%; padding: 0 2px 0 3px;}
	.features-wrapper .inner {padding: 10px 8px 10px 7px;}
	.features-wrapper .bucket h3 {display: none;}
	.features-wrapper .bucket a img {padding: 0}
	
	.spotlight-wrapper .hdng-orange {margin: 0 -10px;}
	.spotlight-wrapper .inner {padding: 20px 0 0;}
	.spotlight-wrapper .inner-row {padding: 0;}
	.spotlight-wrapper .inner-row > div {margin-bottom: 20px;}
	
	.ad-placement.full-width {margin: 0 -10px;} 
	
	.socialLounge-wrapper .inner {padding: 20px 0;}
	.social-carousel .inside {margin-bottom: 20px;}
	.social-carousel .inside .twitter-content {padding: 10px 50px 30px;}
	
	.make-it-orange {font-size: 2.250em; padding: 30px 10px;}
	
	.footer-info .legal,
	.footer-info .assocLogos {float: none;}
	
	.site-link-floater {float: right; margin: -6px 0 0;}
	.site-link-floater .inner {}
	.site-link-floater .inner span {
		display: block;
		padding: 2px 0 2px 2px;
		-webkit-border-radius: 50px 0 0 50px; border-radius: 50px 0 0 50px; 
		background: #f7bfa0; /* Old browsers */
		background: -moz-linear-gradient(top,  #f7bfa0 0%, #3c1e0e 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7bfa0), color-stop(100%,#3c1e0e)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  #f7bfa0 0%,#3c1e0e 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  #f7bfa0 0%,#3c1e0e 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  #f7bfa0 0%,#3c1e0e 100%); /* IE10+ */
		background: linear-gradient(to bottom,  #f7bfa0 0%,#3c1e0e 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7bfa0', endColorstr='#3c1e0e',GradientType=0 ); /* IE6-9 */
		margin: 0 0 4px 0;
	}
	
	.site-link-floater .inner a,
	.site-link-floater .inner a:link,
	.site-link-floater .inner a:visited {
		display: block; 
		color: #ffffff; 
		font-size: 1.125em; 
		line-height: 1; 
		font-weight: 700; 
		background: #f07e3d; 
		-webkit-border-radius: 50px 0 0 50px; 
		border-radius: 50px 0 0 50px; 
		text-align: center; 
		width: 125px; 
		padding: 1px 0 2px;
	}
	
	.pageHeading {margin-bottom: 0;}
	.pageHeading h1 {font-size: 1.688em;}
	.pageHeading .inner {padding: 10px 15px; display: block;}
	
	.mobile-center {text-align: center;}
}


/* 16px baseline (768px +) */
@media only screen and (min-width:48em){
	.site-ad-floater,
	.mobileOnly {display: none;}
	.logo-text {width: 50%;}
	
	.header-middle {position: static;}
	.orange-line {margin: -15px -10px 0;}
	
	.siteHeader .eventsSummaryWrpr {
		background: #9db8d4; /* Old browsers */
		background: -moz-linear-gradient(top,  #9db8d4 0%, #7590ad 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9db8d4), color-stop(100%,#7590ad)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  #9db8d4 0%,#7590ad 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  #9db8d4 0%,#7590ad 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  #9db8d4 0%,#7590ad 100%); /* IE10+ */
		background: linear-gradient(to bottom,  #9db8d4 0%,#7590ad 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9db8d4', endColorstr='#7590ad',GradientType=0 ); /* IE6-9 */
		display: inline-block;
		position: absolute; 
		right: 10px;
		top: 50%;
		margin-top: -35px;
		padding: 5px 5px 20px;
		border: 3px solid #ffffff;
		-webkit-border-radius: 5px;
		border-radius: 5px;
	}
	.siteHeader .eventsSummaryWrpr h2 {margin: 0; text-align: center; color: #0e3c60; font-size: 1.125em;}

	.widget-countdown {text-align: center}
	.hasCountdown { font-weight: bold; color: #dce4eb;}
	.hasCountdown span { display:block; float: left; width:23px; height: 38px; line-height: 39px; }
	.hasCountdown .section div:after {
		background: url(/cms/images/2015/kickoff-overlay.png) no-repeat 0 1px / 100% 100%;
		content: '';
		width:23px; 
		height: 38px;
		position: absolute; 
		top: 0; 
		left:0;
		-webkit-opacity: 0.5;
		opacity: 0.5;
			-webkit-border-radius: 4px;
		border-radius: 4px;
	}
	.hasCountdown span.sep { background: none; width: auto; color: #a4a2db; font-size: 0.750em; line-height: 37px}
	.hasCountdown .section div { 
		background: #0e3c60; /* Old browsers */
		background: -moz-linear-gradient(top,  #0e3c60 0%, #25567b 45%, #0c2c44 49%, #0e3c60 52%, #477699 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0e3c60), color-stop(45%,#25567b), color-stop(49%,#0c2c44), color-stop(52%,#0e3c60), color-stop(100%,#477699)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  #0e3c60 0%,#25567b 45%,#0c2c44 49%,#0e3c60 52%,#477699 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  #0e3c60 0%,#25567b 45%,#0c2c44 49%,#0e3c60 52%,#477699 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  #0e3c60 0%,#25567b 45%,#0c2c44 49%,#0e3c60 52%,#477699 100%); /* IE10+ */
		background: linear-gradient(to bottom,  #0e3c60 0%,#25567b 45%,#0c2c44 49%,#0e3c60 52%,#477699 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0e3c60', endColorstr='#477699',GradientType=0 ); /* IE6-9 */
		display: block;
		float: left; 
		width:23px; 
		height: 38px; 
		line-height: 37px;
		margin: 0 1px; position: relative; z-index: 2;
		-webkit-border-radius: 4px;
		border-radius: 4px;
		font-size: 1.625em;
	}
	.hasCountdown .section {float: left; position: relative; width: auto;}
	.hasCountdown div.param {
		background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
		bottom: -28px;
		display: block;
		float: none;
		font-size: 0.688em;
		position: absolute;
		color: #0e3c60;
		height: auto;
		text-align: center;
		width: 100%;
	}
	.hasCountdown div.param:after {display: none;}

	.social-wrapper { float: right;}
	.social-wrapper a,
	.social-wrapper a:link,
	.social-wrapper a:visited {
		display: inline-block; 
		margin: 0 2px; 
		float: left; 
		text-align: left; 
		width: 33px; 
		height: 33px; 
		text-indent: -9999em; 
		background-repeat: no-repeat; 
		background-size: 100% auto;
		-webkit-transition:none; 
		transition: none;
		
	}
	
	.social-wrapper a.search {background-image: url(/cms/images/2015/social-icons-search.png);}
	.social-wrapper a.search:hover {background-position: 0 -41px;}
	.social-wrapper a.facebook {background-image: url(/cms/images/2015/social-icons-facebook.png);}
	.social-wrapper a.facebook:hover {background-position:  0 -41px;}
	.social-wrapper a.twitter {background-image: url(/cms/images/2015/social-icons-twitter.png);}
	.social-wrapper a.twitter:hover {background-position: 0 -41px;}
	.social-wrapper a.instagram {background-image: url(/cms/images/2015/social-icons-instagram.png);}
	.social-wrapper a.instagram:hover {background-position:  0 -41px;}
	.social-wrapper a.youtube {background-image: url(/cms/images/2015/social-icons-youtube.png);}
	.social-wrapper a.youtube:hover {background-position:  0 -41px;}
	.social-wrapper a.email {background-image: url(/cms/images/2015/social-icons-email.png);}
	.social-wrapper a.email:hover {background-position: 0 -41px;}
	
	/*
	.social-wrapper a.search {background-position: 0 0;}
	.social-wrapper a.search:hover {background-position: 0 -38px;}
	.social-wrapper a.facebook {background-position: -36px 0;}
	.social-wrapper a.facebook:hover {background-position: -36px -38px;}
	.social-wrapper a.twitter {background-position: -72px 0;}
	.social-wrapper a.twitter:hover {background-position: -72px -38px;}
	.social-wrapper a.instagram {background-position: -108px 0;}
	.social-wrapper a.instagram:hover {background-position: -108px -38px;}
	.social-wrapper a.youtube {background-position: -145px 0;}
	.social-wrapper a.youtube:hover {background-position: -145px -38px;}
	.social-wrapper a.email {background-position: -182px 0;}
	.social-wrapper a.email:hover {background-position: -182px -38px;}
*/

		
	.big-social {text-align: center;}
	.big-social ul {margin: 0; padding: 0; display: inline-block; text-align: left;}
	.big-social ul li {border-bottom: 1px solid #8099ab; padding: 20px 0; list-style: none;}
	.big-social ul li:first-child {padding-top: 10px;}
	.big-social ul li:last-child {border: 0 none; padding-bottom: 0;}
	.big-social ul li a,
	.big-social ul li a:link,
	.big-social ul li a:visited {color: #ffffff; padding: 2px 0 2px 60px; font-size: 1.375em;}
	.big-social ul li a:hover,
	.big-social ul li a:focus {color: #8099ab}
	.big-social ul li.twitter a {background: url(/cms/images/2015/social-icons-twitter.png) no-repeat 0 0 / auto 225%}
	.big-social ul li.facebook a {background: url(/cms/images/2015/social-icons-facebook.png) no-repeat 0 0 / auto 225%}
	.big-social ul li.instagram a {background: url(/cms/images/2015/social-icons-instagram.png) no-repeat 0 0 / auto 225%}
		
	.features-wrapper,
	.spotlight-wrapper,
	.socialLounge-wrapper {margin: 0 -10px;}
	
	.features-wrapper .bucket h3 {font-size: 1em}
	
	.ad-placement.full-width {margin: 0 -10px;}
	
	.socialLounge-wrapper .inner {padding: 40px 0;}
	.contentBox .inside {max-height: 200px; overflow-y: auto}
	
	
	.site-link-floater {float: right; margin: -24px 6px 0 0; position: relative; z-index: 1001;}
	.orange-bowl-community .site-link-floater {margin-top: -10px}
	.site-link-floater .inner {}
	.site-link-floater .inner span {
		display: inline-block;
		float: left;
		padding: 2px;
		-webkit-border-radius: 50px; border-radius: 50px; 
		background: #f7bfa0; /* Old browsers */
		background: -moz-linear-gradient(top,  #f7bfa0 0%, #3c1e0e 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7bfa0), color-stop(100%,#3c1e0e)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  #f7bfa0 0%,#3c1e0e 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  #f7bfa0 0%,#3c1e0e 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  #f7bfa0 0%,#3c1e0e 100%); /* IE10+ */
		background: linear-gradient(to bottom,  #f7bfa0 0%,#3c1e0e 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7bfa0', endColorstr='#3c1e0e',GradientType=0 ); /* IE6-9 */
		margin: 0 10px 0 0;
	}
	
	.site-link-floater .inner a,
	.site-link-floater .inner a:link,
	.site-link-floater .inner a:visited {
		display: block; 
		color: #ffffff; 
		font-size: 0.875em; 
		line-height: 1; 
		font-weight: 700; 
		background: #f07e3d; 
		-webkit-border-radius: 50px; 
		border-radius: 50px; 
		text-align: center; 
		width: 110px; 
		padding: 2px 0 3px;
	}
	
	.site-link-floater .inner a:hover,
	.site-link-floater .inner a:focus { background: #f26617;}
	
	.site-link-floater .inner a.game  {}
	.site-link-floater .inner a.community  {}
	
	.desktop-right {text-align: right;}
	
	
	.orange-bowl-community .siteHeader a.sitelogo,
    .orange-bowl-community .siteHeader a.sitelogo:link,
    .orange-bowl-community .siteHeader a.sitelogo:visited {margin: -60px 0 -10px;}
	.orange-bowl-community .logo-icon {margin:20px 0 -30px}
	.orange-bowl-community .logo-text {padding: 45px 0 0; width: 55%;}
	.orange-bowl-community .orange-line {margin-top: -16px;}
}

/* 16px baseline (960px +) */
@media only screen and (min-width:60em){
	.logo-text {width: auto;}
	.header-middle {position: relative;}
	.orange-line {margin: -20px 0 0;}
	.orange-line:before,
	.orange-line:after {content: ''; position: absolute; top: 0; height: 70px; width: 45px; background: #f27b37;z-index: -1;}
	.orange-line:before {left: -30px;}
	.orange-line:after {right: -30px;}

	.siteHeader .eventsSummaryWrpr {right: -10px;}
	
	.features-wrapper,
	.spotlight-wrapper,
	.socialLounge-wrapper,
	.ad-placement.full-width {margin: 0 -30px;}
	
	.features-wrapper .bucket h3 {font-size: 1.250em}
	
	.make-it-orange {margin: 0 -20px;}
	.site-link-floater {float: right; margin: 10px 36px 0 0; }
	
	.orange-bowl-community .siteHeader a.sitelogo,
    .orange-bowl-community .siteHeader a.sitelogo:link,
    .orange-bowl-community .siteHeader a.sitelogo:visited {margin: -60px 0 -10px;}
	.orange-bowl-community .logo-icon {margin: 10px 0 -10px}
	.orange-bowl-community .logo-text {padding: 57px 0 0; width: auto}
}

/* 16px baseline (1000px +) */
@media only screen and (min-width:62.500em){
	.site-wrapper { -webkit-box-shadow: 0 0 5px 0 rgba(1,1,1,0.75); box-shadow: 0 0 5px 0 rgba(1,1,1,0.75); width: 100%; max-width: 62.500em; margin: 0 auto;}
	
	.logo-icon {margin-right: 10px;}
	
	.orange-line:before {left: -45px;}
	.orange-line:after {right: -45px;}
	.orange-line span {display: block; position: relative}
	.orange-line span:before,
	.orange-line span:after {position: absolute; content: ''; height: 0; width: 0; top: 69px; display: inline-block; z-index: -2}
	.orange-line span:before {border-top: 0 solid transparent;border-bottom: 10px solid transparent; border-right: 15px solid #537aa2; left: -45px;}
	.orange-line span:after {border-top: 0px solid transparent;border-bottom: 10px solid transparent; border-left: 15px solid #537aa2; right: -45px;}
	
	.hdng-orange:before,
	.hdng-orange:after {position: absolute; content: ''; height: 100%; width: 50px; background: #f27b37; top: 0;}
	.hdng-orange:before {left: -50px;}
	.hdng-orange:after {right: -50px;}
	.hdng-orange span {display: block; position: relative}
	.hdng-orange span:before,
	.hdng-orange span:after {position: absolute; content: ''; height: 0; width: 0; top: 41px; display: inline-block; z-index: -2}
	.hdng-orange span:before {border-top: 0 solid transparent;border-bottom: 10px solid transparent; border-right: 20px solid #537aa2; left: -50px;}
	.hdng-orange span:after {border-top: 0px solid transparent;border-bottom: 10px solid transparent; border-left: 20px solid #537aa2; right: -50px;}
	
	
	.features-wrapper,
	.spotlight-wrapper {margin: 0;}

	.socialLounge-wrapper {margin: 0 -30px 10px;}
	.socialLounge-wrapper .hdng-orange {margin: 0 30px}
	.socialLounge-wrapper .inner {padding: 40px 30px;}
	
	.ad-placement.full-width {margin: 0 -30px;}
	
	.make-it-orange {margin: 0 -20px 0;}
}

/* 16px baseline (1200px +) */
@media only screen and (min-width: 75.000em) {
    .site-ad-floater {display: block; -webkit-box-shadow: 0 0 5px 2px rgba(1,1,1,0.5); box-shadow: 0 0 5px 2px rgba(1,1,1,0.5); }
    .site-link-floater {
		background: rgba(1,1,1,0.25); 
		border: 3px solid #134165; 
		border-left: 0 none; 
		color: #ffffff; 
		font-weight: 700;
		float: none;
		margin: 0;
		position: absolute; 
		right: -117px; 
		top: 236px;
		text-align: center; 
		width: 114px;
		-webkit-border-radius: 0 15px 15px 0; 
		  border-radius: 0 15px 15px 0; 
		-webkit-box-shadow: 3px 3px 3px 0 rgba(1,1,1,0.25);
		  box-shadow: 3px 3px 3px 0 rgba(1,1,1,0.25);
		
	}
	.site-link-floater .inner span {
		display: inline;
		float: none;
		padding: 0;
		-webkit-border-radius: 0; border-radius: 0; 
		background: none;
		margin:0;
	}
	.site-link-floater .inner {padding: 0 20px 0 10px;}
	.site-link-floater .inner a,
	.site-link-floater .inner a:link,
	.site-link-floater .inner a:visited {
		background: #f07e3d; 
		-webkit-border-radius: 0; 
		border-radius: 0; 
		text-align: center; 
		width: auto; 
	
	}
	.site-link-floater .inner a.game  { margin-bottom: 10px; border-bottom: 1px solid #b5d9e2; padding: 75px 0 10px; background: url(/cms/images/2015/rt-link-game.png) no-repeat center top;}
	.site-link-floater .inner a.community  { padding: 85px 0 10px; background: url(/cms/images/2015/rt-link-community.png) no-repeat center top;}

	.site-ad-floater {position: absolute; left: -160px; top: 236px}	
	.site-ad-floater .inner .block > p {margin: 0;}
}




/* COMMITTEE LANDING */
.orange-bowl-community span.logo-icon-block,
.orange-bowl-community span.logo-text-block {margin:0; padding:0; display:inline-block;}
.orange-bowl-community span.logo-icon-block p,
.orange-bowl-community span.logo-text-block p {margin:0; padding:0;}
.orange-bowl-community span.logo-icon-block .block,
.orange-bowl-community span.logo-text-block .block {display:inline-block; padding:0; margin:0;}
.orange-bowl-community span.logo-icon-block img {margin:10px 0 -10px; padding:0; width:100% !important; height:auto !important;}
.orange-bowl-community span.logo-text-block img {margin:0; padding:56px 0 0 0; width:100% !important; height:auto !important;}

@media only screen and (min-width:11.250em) and (max-width:47.938em) {
	.orange-bowl-community .logo-text-block {display:none !important;}
	.orange-bowl-community .logo-icon-block {width: 103px !important; height: auto !important; margin: 0 auto !important; display: block !important; position: relative; z-index: 100;}
}
@media only screen and (min-width:48em){
	.orange-bowl-community .logo-icon-block {margin:20px 0 -30px}
	.orange-bowl-community .logo-text-block {padding: 45px 0 0; width: 55% !important;} 
} 
@media only screen and (min-width:60em){ 
	.orange-bowl-community .logo-text {width: auto;}
	.orange-bowl-community .logo-icon-block {margin: 10px 0 -10px}
	.orange-bowl-community .logo-text-block {padding: 57px 0 0; width: auto !important;} 
}
@media only screen and (min-width:62.500em){
	.orange-bowl-community .logo-icon-block {margin-right: 10px;}
}
@media only screen and (min-width:48em){
	.orange-bowl-community .logo-text-block {width: 50% !important;}
}
