/* 
==========================================================================
GLOBAL & WP SPECIFIC STYLES
==========================================================================
*/

@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,600,700);

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}



img,
audio,
video,
canvas {
	max-width: 100%;
}

html {
	min-height: 100%;
	margin-bottom: 1px;
	overflow: -moz-scrollbars-vertical!important; 
	-webkit-text-size-adjust: none; 
}

::selection {
	background:#cc0204;
	color:#fff;
}

::-moz-selection {
	background:#cc0204;
	color:#fff;
}

::-webkit-selection {
	background:#cc0204;
	color:#fff;
}

.cf:before,.cf:after {content: " "; /* 1 */    display: table; /* 2 */}
.cf:after {clear: both;}
.cf {clear: both;}

h1 {
	font: 30px 'Open Sans', Helvetica, Arial, sans-serif;	
	margin:0 0 10px 0;
	padding:0;
}

h2 {
	font: 26px 'Open Sans', Helvetica, Arial, sans-serif;	
	margin:0 0 10px 0;
	padding:0;
}

h3 {
	font: 22px 'Open Sans', Helvetica, Arial, sans-serif;	
	margin:0 0 10px 0;
	padding:0;
}

h4 {
	font: 18px 'Open Sans', Helvetica, Arial, sans-serif;	
	margin:0 0 10px 0;
	padding:0;
}

blockquote {
	background-color: #f5f5f5;
	background-image: url('images/qt.png');
	background-position: top left;
	background-repeat: no-repeat;
	margin: 20px 0;
	padding: 30px;
	font-style: italic;
	position: relative;
}

blockquote:after {
	position: absolute;
	right:5px;
	bottom: 5px;
	content: " ";
	background-image: url('images/qb.png');
	background-position: bottom right;
	background-repeat: no-repeat;
	height: 35px;
	width:35px;
}

p {
	margin: 0 0 20px 0;
}

strong, b {
	font-weight: 700;
}

em, i {
	font-style: italic;
}

/* 
==========================================================================
GENERAL
==========================================================================
*/

body {
	background: #000 url('images/bg.jpg');
	background-position: fixed;
	color: #000; 
	font: 15px/1.5 'Open Sans', Helvetica, Arial, sans-serif;
	margin:0;
	-webkit-font-smoothing: antialiased;
}

header {
	width:100%;
	max-width: 1140px;
	margin: 0 auto;
}

a {
	color: #cc0204;
	text-decoration: none;
}

a:hover {
	color: #000;
	text-decoration: none;
}

.container {
	max-width: 1140px;
	width:100%;
	margin:0px auto;
	background:#fff;
	padding: 20px;
}

.inner {
	max-width: 1140px;
	width: 100%;
	position: relative;
	padding: 0 10px;
}

/* 
==========================================================================
HEADER
==========================================================================
*/

.logo {
    width: 240px;
    height: 110px;
    float: left;
    margin: 0;
}

.logo a {
    background: url("images/logo.png");
    float: left;
    width: 240px;
    height: 110px;
    margin: 0px;
    text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.banner {
	float: right;
	padding: 10px 0 0 0;
	width: 68%;
	text-align: right;	
}

.banner p {
	margin: 0 !important;
	padding: 0 !important;
}


/* 
==========================================================================
NAVIGATION
==========================================================================
*/

nav {
    background: #cc0204;
    clear: both;
    margin: 0 auto;
    max-width: 1140px;
    width: 100%;
    padding: 0 15px;
    font-size: 14px;
    text-transform: uppercase;
}

nav a {
	color: #fff;
	margin: 0;
	padding: 10px;
}

nav a:hover {
	color: #fff;
	margin: 0;
	background: #000;
	padding: 10px;
}

.toggleMenu {
    display:  none;
	padding: 10px 15px 10px 8px;
	color: #fff;
	border: 2px solid #cc0204;	
	background: #cc0204;
	width: 100%;
}

.toggleMenu:hover {
	padding: 10px 15px 10px 8px;
	color: #fff;
	border: 2px solid #000;
    background: #000;
    transition: all 0.3s ease 0s;    	
}

.nav {
	list-style: none;
	*zoom: 1;
	text-align: justify;
	height:41px;
}

.nav .extra {
    display: inline-block;
    width: 100%;
    *display: inline;
    *zoom: 1;
}

.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}

.nav ul ul {
    list-style: none;
    width: 9em;
    min-width: 250px;
}

.nav a {
    padding: 10px 10px 10px 10px;
    color:#fff;
    margin: 0;
}

.nav a:hover, .nav li:hover {
    background: #000;
    color:#fff;
}

.nav li:hover a {
    color:#fff;
}

.nav li {
    position: relative;
}
.nav > li {
	display:inline-block;
}

.parent:hover {
    background: #cc0204;
	color: #fff;
}

.nav > li > .parent {
    background-image: url("images/downArrowG.png");
    background-repeat: no-repeat;
    background-position: right;
 	padding: 10px 15px 10px 10px;	 
 	margin: 0 5px 0 0;  
}
.nav > li > a {
    display: block;
}
.nav li ul {
    position: absolute;
    left: -9999px;
}
.nav > li.hover > ul {
    left: 0;
}
.nav li li.hover ul {
    left: 100%;
    top: 0;
}
.nav li li a {
    display: block;
    background: #000;
    position: relative;
    z-index:100;
    border-top: 0;
	color: #fff;
}
.nav li li li a {
    background:#870001;
    z-index:200;
    border-top: 0;
	color: #fff;
}
.nav li li a:hover, .nav li li li a:hover {
    background:#cc0204;
	color: #fff;
}


/* 
==========================================================================
HERO
==========================================================================
*/

.hero {
	width: 100%;
	display: block;
	margin: 0 auto 20px auto;
}

.hero-items {
	width: 100%;
	display: block;
	margin: 0px auto 20px auto;
	border-bottom: 1px solid #e5e5e5;
	padding: 0 0 20px 0;
}

.hero-item {
	width: 32%;
	float:left;
	margin: 0 2% 0 0;
	font-size: 16px;
}

.hero-item:nth-of-type(3) {
	margin: 0;
}

.hero-item a {
	color: #000;	
	font-weight: 500;
	transition: all 0.3s ease-in-out; 	
}

.hero-item a:hover {
	color: #cc0204;
}

.hero-title {
	margin: 10px 0 5px 0;
}

.hero-date {
	color: #cc0204;
	font-size: 14px;
}

.hero-item img:hover {
	transition: all 0.3s ease-in-out; 
	opacity: 0.5;
}

.hero-stack {
	display: block;
	width: 100%;
	margin: 0 0 20px 0;
    border-bottom: 1px solid #E5E5E5;
    padding: 0;
}

.hero-stack-full {
	display: block;
	width: 100%;
}

.hero-stack-full .home-news-item, .hero-stack-full .home-news-item:last-of-type {
    padding: 20px 5px 0px !important;
    margin: 0px 2% 20px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 0;
    float: left;
    width: 48%;
}

.hero-stack-full .home-news-item:nth-of-type(1), .hero-stack-full .home-news-item:nth-of-type(2) {
	border-top: 0;
	padding:0 5px!important;
}

.hero-stack img {
	margin: 0 0 -10px 0;
	border:0;
}

.hero-stack-left {
	float: left;
	width: 49%;
	margin: 0 2% 0 0;
}

.hero-stack-right {
	float: left;
	width: 49%;
	margin: 0;
}

.hero-stack .home-news-item:last-of-type {
	padding:0;
}

.home-button {
	display:block;
	width: 100%;
	background: #000;
	padding: 15px;
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease-in;	
	border:0;
	margin: 20px auto;
}

.home-button:hover {
	background: #cc0204;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease-in-out;	
}


/* 
==========================================================================
PAGE
==========================================================================
*/

.left {
	width: 66.18181818181819%;
	float: left;
	margin: 0 3.6363636363636362% 0 0;
}

.lefts {
	width: 66.18181818181819%;
	float: left;
	margin: 0 3.6363636363636362% 0 0;
}

.right {
	width: 30.181818181818183%;
	float: left;
	margin: 0;
}

.rev {
	text-align: center;
	margin: 0 auto 20px auto;
	background: #f5f5f5;
	display: block;
	position: relative;
	padding: 10px;
}

.revs {
	text-align: center;
	margin: 0 auto 15px auto;
	display: block;
	position: relative;
	padding: 10px;
}


.rev p, .revs p {
	margin: 0!important;
	padding:0!important;
}

.page-title {
	background: #cc0204;
	color: #fff;
	padding: 10px;
	width: 100%;
	font-size: 20px;
	margin: 0 0 20px 0;
	text-transform: uppercase;
}

.no-pad {
	margin: 0;
}

.side-title {
	background: #cc0204;
	color: #fff;
	padding: 10px;
	width: 100%;
	font-size: 15px;
	margin: -1px 0 0 0;
	text-transform: uppercase;
}

.small-title {
	background: #cc0204;
	color: #fff;
	padding: 10px;
	width: 100%;
	font-size: 15px;
	margin: 0 0 20px 0;
	text-transform: uppercase;
}

.single-title {
	font-size: 26px;
	margin: 0 0 10px 0;
}

.widget {
	margin: 0 0 20px 0;
}

.widget-content {
	padding: 20px;
	border: 1px solid #e5e5e5;
}

.fb_iframe_widget {
    display: inline-block;
    position: relative;
    border: 1px solid #e5e5e5!important;
    padding: 5px!important;
}

.home-news {
	display: block;
	width: 100%;
}

.home-news-item {
	padding: 0 5px 20px 5px;
	margin: 0 0 20px 0;
	border-bottom: 1px solid #e5e5e5;
}

.home-news-item:last-of-type {
	border-bottom: 0;
}

.home-news-item a {
	font-weight: 500;
	transition: all 0.3s ease-in-out; 	
	color: #000;
	margin: 0 0 5px 0;
	display: inline-block;
}

.home-news-item a:hover {
	color: #cc0204;
}

.home-videos {
	background: #f5f5f5;
	padding: 15px;
	font-size: 13px;
	text-align: center;
}

.home-videos .item {
    margin: 0 5px 20px 5px !important;
}

.home-videos .item img:hover {
	transition: all 0.3s ease-in-out; 
	opacity: 0.8;
}

.home-videos .item a {
	color: #000;
}

.home-videos .item a:hover {
	color: #cc0204;
}

.home-col {
	width: 100%;
	display: block;
	margin: 20px auto;
}

.home-left {
	float: left;
	width: 49%;
	margin: 0 2% 0 0;
}

.home-right {
	float: left;
	width: 49%;
	margin: 0;
}

.left ul {
	display: block;
	margin: 20px;
	list-style-type:none;
}

.left li {
	display: list-item; 
	margin: 0 0 5px 0;
	list-style-type: square !important;
	list-style-position: inside;
}

.linkcat, .linklist {
	list-style-type: none!important;
	list-style: none!important;
}

.blogroll  {
	margin: 20px;
	display:block;
	-webkit-column-count: 2; /* Chrome, Safari, Opera */
	-moz-column-count: 2; /* Firefox */
	column-count: 2;
}

.blogroll li {
	list-style-type: square !important;
	list-style-position: inside;
}


/* 
==========================================================================
CAROUSEL
==========================================================================
*/


.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-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;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


.grabbing { 
    cursor:url(images/grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}



.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);
	opacity: 0.5;
}

.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);
	opacity: 1;
	text-decoration: none;
}



.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);
	opacity: 1;
}

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.owl-item.loading{
	min-height: 150px;
	background: url(images/AjaxLoader.gif) no-repeat center center
}

.owl-prev {
	position: absolute;
	left: 0;
	bottom: 0px;
	background: #000!important;	
	border-radius: 0!important;	
	opacity: 1 !important;
	text-transform: uppercase;
	font-weight: 700;
}

.owl-next {
	position: absolute;
	right: 0;
	bottom: 0px;
	background: #000!important;	
	border-radius: 0!important;	
	opacity: 1 !important;
	text-transform: uppercase;
	font-weight: 700;
}

.owl-prev:hover, .owl-next:hover {
	transition: all 0.3s ease-in-out; 	
	background: #cc0204!important;	
}

.owl-theme .owl-controls .owl-page span {
	background: #000!important;
	opacity: 1 !important;	
}

.owl-theme .owl-controls .active span {
	background: #cc0204!important;
	opacity: 1 !important;	
}

/* 
==========================================================================
SINGLE & BLOG
==========================================================================
*/

.title {
	font-size: 22px;
	color: #000;
	margin: 0;
}

.post-meta {
	font-size: 15px;
	margin: 5px 0 10px 0;
}

.single {
	display: block;
	width: 100%;
}

.single img {
	margin: 15px auto;
	display:block;
	text-align:center;
	border: 0;
	height: auto;
}

.post {
	display: block;
	width: 100%;
	border-bottom: 1px solid #e5e5e5;
	padding: 0 0 20px 0;
	margin: 0 0 20px 0;
}

.post:last-of-type {
	border-bottom: 0;
	margin: 0;
}

.post-left {
	float: left;
	width: 34.34065934065934%;
	margin: 0 2.7472527472527473% 0 0;
}

.post-right {
	float: left;
	width: 62.91208791208791%;
	margin: 0;
}

.post .post-meta {
	font-size: 14px;
}

.read-more {
	background: #cc0204;
	color: #fff;
	text-transform: uppercase;
	display: inline-block;
	margin: 0 0 10px 0;
	text-align: center;
	padding: 10px 20px;
	transition: all 0.3s ease-in; 	
	cursor: pointer;
	font-weight: 700;
	font-size: 14px;
}

.read-more:hover {
	background: #000;
	color: #fff;
	transition: all 0.3s ease-in-out; 	
}

/* 
==========================================================================
SEARCH
==========================================================================
*/

#searchform {
	margin: 0 0 15px 0;
	width: 100%;
	display:block;
}

#s {
	width: 75%;
	margin: 0;
	border: 1px solid #e5e5e5;
	padding: 10px;
	font: 16px 'Open Sans', Helvetica, Arial, sans-serif;	
	color:#000;
}

#go {
	width: 23%;
	margin: 0px 0 0 -6px;
	border: 0;
	padding: 10px;
	background: #cc0204;
	color: #fff;
	font: 16px 'Open Sans', Helvetica, Arial, sans-serif;
	cursor: pointer;
	transition: all 0.3s ease-in;	
}

#go:hover {
	background: #000;
	color: #fff;
	border:0;
	transition: all 0.3s ease-in-out;	
}

.mob-search {
	display:none;
}

/* 
==========================================================================
VIDEOS
==========================================================================
*/

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
	margin: 0 0 20px 0;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.vid-sing {
	width: 32%;
	margin: 0 2% 2% 0;
	float:left;
}

.vid-sing:nth-of-type(3n) {
	margin: 0 0 2% 0;
}

.vid-img {
	text-align:center;
	margin: 0 auto;
	border:0;
}

.vid-img:hover {
	transition: all 0.3s ease-in-out; 
	opacity: 0.5;
}


.vid-text {
	text-align:center;
	margin: 0 auto;
}

.vid-text a {
	color: #000;
	transition: all 0.3s ease-in;	
}

.vid-text a:hover {
	color: #cc0204;
	transition: all 0.3s ease-in-out;
}




/* 
==========================================================================
PAGE NAVIGATION
==========================================================================
*/

.paged {
	clear:both;
	margin: 0;
	text-align: left;
}

.wp-pagenavi {
	border:0
	padding: 15px 0;
}

.wp-pagenavi a, .wp-pagenavi a:link {
	padding: 5px; 
	margin: 2px 5px;
	text-decoration: none;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 3px solid transparent;
	color: #000;
	font-weight: bold;	
}

.wp-pagenavi a:visited {
	padding: 5px; 
	margin: 2px 5px;
	text-decoration: none;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 3px solid transparent;
	color: #000;
	font-weight: bold;	
}

.wp-pagenavi a:hover {	
	border: 0;
	color: #cc0204;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: transparent;
	padding: 5px; 
	margin: 2px 5px;
	font-weight: bold;
}

.wp-pagenavi a:active {
	padding: 5px; 
	margin: 2px 5px;
	text-decoration: none;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 3px solid #000;
	color: #000;
	font-weight: bold;
}

.wp-pagenavi span.pages {
	padding: 5px; 
	margin: 2px 5px;
	color: #000;
	font-weight: bold;
	border:0;
}

.wp-pagenavi span.current {
	padding: 5px; 
	margin: 2px 5px;
	font-weight: bold;
	border: 0;
	color: #000;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 3px solid #000 !important;
}

.wp-pagenavi span.extend {
	padding: 5px; 
	margin: 2px 5px;
	border: 0;
	color: #000;
	font-weight: bold;
}

/* 
==========================================================================
EVENTS
==========================================================================
*/

.hc_rse_events_table {
	width: 100%;
}

.hc_rse_events_table tr {
	border-bottom: 1px solid #e5e5e5;
	padding: 10px 0;
}

.hc_rse_events_table td {
	padding: 15px;
	vertical-align: middle;
}

.hc_rse_events_table p {
	margin:0;
}

.hc_rse_date {
    	width: 20%;
    	margin: 0 2.5% 0 0 !important;
	background: #cc0204;
	color: #fff;
	font-weight: bold;
	font-size: 13px;
	text-transform: uppercase;
	text-align: center;
}

.hc_rse_time {
    	width: 10%;
    	margin: 0 2.5% 0 0 !important;
	font-weight: bold;
}

.hc_rse_title {
    	width: 40%;
    	margin: 0 2.5% 0 0 !important;
}

.hc_rse_extra {
	width: 20%;
	margin: 0 !important;
	background: #000;
	color: #fff;
	font-weight: bold;
	font-size: 13px;
	text-transform: uppercase;
	text-align: center;
}

.ev-data {
    	margin: 0;
	padding: 15px 0;
	background: #fff;
}

.ev-data:first-of-type {
	margin: -15px 0 0 0;
}

.ev-data:nth-of-type(even) {
	background: #f5f5f5;
}

.ev-date {
	float:left;
	width: 25%;
	margin: 0;
	color: #777;
	font-size: 13px;
	text-transform: uppercase;
	text-align: center;
}

.ev-title {
	display:block;
	float:left;
	width: 73%;
	margin: 0 0 0 2%;
	font-size: 13px;
	text-transform: uppercase;
	text-align: left;
	font-weight: 700;
}

.ev-ex {
	width: 100%;
	background: none repeat scroll 0% 0% #000;
	padding: 5px;
	color: #FFF;
	font-size: 10px;
	text-transform: uppercase;
	text-align: center;
	margin: 5px 0;
}

.red-button {
	display:block;
	width: 100%;
	background: #cc0204;
	padding: 5px;
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease-in;	
	border:0;
}

.red-button:hover {
	background: #000;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease-in-out;	
}

/* 
==========================================================================
SIDE SOCIAL
==========================================================================
*/

.sicon {
	display: inline-block;
	width: 40px;
	height: 40px;
	border:0;
	margin: 0 5px 5px 0;
}

.twitter {
	background-image: url('images/twitter.png');
	background-repeat: no-repeat;
}

.facebook {
	background-image: url('images/facebook.png');
	background-repeat: no-repeat;
}

.pinterest {
	background-image: url('images/pinterest.png');
	background-repeat: no-repeat;
}

.youtube {
	background-image: url('images/youtube.png');
	background-repeat: no-repeat;
}

.google {
	background-image: url('images/google.png');
	background-repeat: no-repeat;
}

/* 
==========================================================================
RELATED POSTS
==========================================================================
*/

.related {
	display:block;
	width: 100%;
	margin: 30px auto;
}

.rele {
	width: 32%;
	margin: 0 2% 2% 0;
	float:left;
	font-size: 13px;
	text-align: center;
}

.rele:nth-of-type(3n) {
	margin: 0 0 2% 0;
}

.vall {
	margin: 10px 0;
	padding: 5px 0;
	display:block;
	width: 100%;
	background: #000;
	color: #fff;
	text-align: center;
}

.vall:hover {
	background: #CC0204;
	color: #fff;
}

/* 
==========================================================================
FOOTER
==========================================================================
*/

footer {
	background: #cc0204;
	font: 15px/1.5 'Open Sans', Helvetica, Arial, sans-serif;
	max-width: 1140px;
	width:100%;
	margin:0px auto;
	padding: 0 20px;
}

.foot-top {
	display: block;
	width: 100%;
	border-bottom: 1px solid #e02729;
	padding: 10px 0;
	margin: 0 auto 20px auto;
}

.foot-logo {
    width: 150px;
    height: 60px;
    float: left;
    margin: 0;
}

.foot-logo a {
    background: url("images/foot_logo.png");
    float: left;
    width: 150px;
    height: 60px;
    margin: 0px;
    text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.foot-nav {
	float: right;
	text-transform: uppercase;
	margin: 20px 0 0 0;
}

.foot-nav ul, .foot-nav li {
	display: inline-block;
	list-style-type: none;
}

.foot-nav li a {
	color: #fff;
	margin: 0 0 0 25px;
}

.foot-nav li a:hover {
	color: #000;
	transition: all 0.3s ease-in-out;
}

.foot-cols {
	display: block;
	width: 100%;
	margin: 20px auto;
}

.foot-col {
	float: left;
	width: 32%;
	margin: 0 2% 0 0;
	padding: 10px;
	color: #fff;
	font-size: 13px;
}

.foot-col:nth-of-type(3){
	margin: 0;
}

.foot-col h4 {
	font-weight: 700;
	font-size: 16px;
}

.foot-col li a {
	color: #fff !important;
}

.foot-col li a:hover {
	color: #000!important;
}


.copy {
	background: #000;
	padding: 10px;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	font-size: 13px;
	font-weight: 700;		
}

.fb_iframe_widget {
	border:0!important;
}

.fbConnectWidgetFooter {
    display: none!important;
}

.links_sc_rating {
	display:none!important;
}

/* 
==========================================================================
NEWSLETTER
==========================================================================
*/

.wpcf7-form {
	margin: 0 0 15px 0;
	width: 100%;
	display:block;
}

.wpcf7-email, .wpcf7-text  {
	width: 75%;
	margin: 0;
	border: 0;
	padding: 10px;
	font: 16px 'Open Sans', Helvetica, Arial, sans-serif;	
	color:#000;
}

.wpcf7-submit {
	width: 23%;
	margin: 0px 0 0 -6px;
	border: 0;
	padding: 9px;
	background: #000;
	color: #fff;
	font: 16px 'Open Sans', Helvetica, Arial, sans-serif;
	cursor: pointer;
	transition: all 0.3s ease-in;	
}

.wpcf7-submit:hover {
	background: #fff;
	color: #000;
	border:0;
	transition: all 0.3s ease-in-out;	
}

/* 
==========================================================================
RETINA FULL SIZE
==========================================================================
*/

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) { 

 .logo a {
	background: url("images/logo_2x.png");
	background-size: 240px 110px;
	background-position: left center;
	background-repeat: no-repeat;		
 }

 .foot-logo a {
	background: url("images/foot_logo_2x.png");
	background-size: 150px 60px;
	background-position: left center;
	background-repeat: no-repeat;		
 }

 .nav > li > .parent {
    background-image: url("images/downArrowG_2x.png");
	background-size: 20px 5px;
 }

 .nav li .more {
	background-image: url("images/downArrow_2x.png");
	background-size: 20px 5px;
 }

 blockquote {
	background-image: url('images/qt_2x.png');
	background-size: 35px 35px;
 } 

 blockquote:after {
	background-image: url('images/qb_2x.png');
	background-size: 35px 35px;
 } 

 .twitter {
	background-image: url('images/twitter_2x.png');
	background-repeat: no-repeat;
	background-size: 40px 40px;
 } 

 .facebook {
	background-image: url('images/facebook_2x.png');
	background-repeat: no-repeat;
	background-size: 40px 40px;
 } 

 .pinterest {
	background-image: url('images/pinterest_2x.png');
	background-repeat: no-repeat;
	background-size: 40px 40px;
 } 

 .youtube {
	background-image: url('images/youtube_2x.png');
	background-repeat: no-repeat;
	background-size: 40px 40px;
 } 

 .google {
	background-image: url('images/google_2x.png');
	background-repeat: no-repeat;
	background-size: 40px 40px;
 } 


}

/* 
==========================================================================
MEDIA QUERIES
==========================================================================
*/

@media screen and (min-width: 960px) {

}


@media screen and (max-width: 960px) {

}


@media screen and (max-width: 768px) {

 nav {
	float:none;
	width:100%;
	margin: 0;
	padding:0;
 }

 .nav a {
	font-size: 14px;
	padding:10px;
 }

 .nav {
	clear: both;
	background: #cc0204;
	height:auto;
	text-align:left;
 }

 .burger {
	font: 30px/0.5  Helvetica, Arial, sans-serif;	
 	text-align: right;
 	padding:0;
 	display: inline;
 	vertical-align: middle;
 	padding:5px;
 	float:right;
 }

 .nav li a:hover, .nav li:hover {
	background: #000;
 }

.extra {
    display: none !important;
    height: 1px !important;
    width: auto;
}

 .nav > li a {
	border-bottom: 1px solid #FFFFFF;
	color: #fff;
 }

 .active {
	display: block;
 }

 .nav > li {
	float: none;
	display:block;
 }

 .nav > li > .parent {
	background-position: 95% 50%;
 }
  
 .nav > li > .parent {
	background-image: none; 
 }
    
 .nav li .more {
	background-image: url("images/downArrow.png");
	background-repeat: no-repeat;
	background-position: 55% 50%;
	float: right;
	width: 15%;
	padding: 0;
	margin: 10px 5px 2px 0px;
	cursor: pointer;
	z-index: 200;
	position: relative;
 }

 .nav li .more:before {
	content: "";
	background: #fff;
	width: 1px;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -2px;
 }
  
 .nav ul {
	display: block;
	width: 100%;
 }

  .nav ul ul {
	list-style: none;
	display: block;
	width: 100%;
 }

 .nav > li.hover > ul , .nav li li.hover ul {
	 position: static;
 }
   
 nav a {
 	margin: 0 !important;
 }

 .banner {
	float: none;
	padding: 0;
	margin: 0 auto;
	display: none;
	width: 100%;
 }

 .banner img {
 	width: 100%;
 }

 .logo {
 	float: none;
 	display: block;
 	margin: 10px auto;
 }

 .home-left, .home-right {
 	float: none;
 	display: block;
 	width: 100%;
 }

 .foot-logo {
 	display: none;
 } 

 .foot-nav {
 	float: none;
 	display: block;
 	text-align: center;
 	margin: 0;
 	padding: 5px 0;
 }

 .foot-nav li a {
 	display: inline-block;
 	margin: 5px;
 }

 .twits, .twit {
	display: none!important;
 }

 .blogroll  {
	-webkit-column-count: 1; 
	-moz-column-count: 1; 
	column-count: 1;
 }

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) { 

 .nav li .more {
	background-image: url("images/downArrow_2x.png");
	background-size: 20px 5px;
 }
}


}


@media screen and (max-width: 524px) {

 .twits, .twit {
	display: none!important;
 }

 .hero {
	display: none;
 }

 .hero-item {
	width: 100%;
	float:none;
	display: block;
	margin: 0 0 20px 0;
 }

 .left, .lefts, .right {
	width: 100%;
	float:none;
	display: block;
	margin: 0 0 20px 0;
 }

 .owl-prev, .owl-next {
	position: relative;
	display: inline-block;
	right: 0;
	bottom: 0px;
 }

 .foot-col {
 	display: block;
	float: none;
	width: 100%;
	margin: 0 0 10px 0;
	text-align: center;
 }

 .hero-stack-left {
	float: none;
	display: block;
	width: 100%;
	margin: 0  0 20px 0;
 }

 .hero-stack-right {
	float: none;
	display: block;
	width: 100%;
	margin: 0  0 20px 0;
 }

 .hero-stack-left .home-news-item:last-of-type {
	border-bottom: 1px solid #e5e5e5;
	padding: 0 0 20px 0;
 }

 .post-left {
	float: none;
	display: block;
	width: 100%;
	margin: 0 0 20px 0;
 }

 .post-right {
	float: none;
	display: block;
	width: 100%;
	margin: 0 0 20px 0;
 }

 .hero-stack-full .home-news-item, .hero-stack-full .home-news-item:last-of-type, .hero-stack-full .home-news-item:nth-of-type(2) {
	float: none;
	display:block;
	width: 100% !important;
	padding: 20px 0;
	border-top: 1px solid #e5e5e5;
 }

 .hero-stack-full .home-news-item:nth-of-type(1) {
	border-top: 0;
 }


 .mob-search {
	display:block;
	background: #000;
	padding: 10px 0px 0px 10px;
 }

}


@media screen and (max-width: 480px) {

 .hero-stack img {
	display: none;
 }

 .hc_rse_events_table tr {
    border-bottom: 0;
    padding: 10px 0px;
    width: 100%;
    display: block;
    margin: 0 0 20px 0;
 }

 .hc_rse_events_table td {
    padding: 10px;
    vertical-align: middle;
    width: 100%;
    display: block;
    text-align: center;
 }

 .hc_rse_time, .hc_rse_title {
	background: #f5f5f5;
 }

 .hc_rse_link {
	height:0;
	width:0;
	display:none;
 }

 .vid-sing, .vid-sing:nth-of-type(3n) {
	width: 48%;
	margin: 0 1% 4% 1%;
 }

 .rele, .rele:nth-of-type(3n) {
	width: 48%;
	margin: 0 2% 2% 0;
 }

 .rele:nth-of-type(2n) {
	margin: 0 0 2% 0;
 }

}


@media screen and (max-width: 320px) {

 .container, header, footer, .inner {
	min-width:240px;
	width:100%;
 }

 .vid-sing, .vid-sing:nth-of-type(3n) {
	width: 100%;
	margin: 0 0 20px 0;
 }
 
}