/*
Theme Name: CG Technology
Author: Sunny Wanser for BRAINtrust Marketing & Communications
Author URI: http://www.braintrustlv.com
Description: CG Technology Custom Theme
Version: 1.0-wpcom
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cgtech
Domain Path: /languages/
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

 cgtech is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
	10.2 - Asides
	10.3 - Comments
11.0 - Infinite scroll
12.0 - Media
	12.1 - Captions
	12.2 - Galleries
--------------------------------------------------------------*/


/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
html, body {
	height: 100%;
}
*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}
body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
ol, ul {
	list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a:focus {
	outline: thin dotted;
}
a:hover,
a:active {
	outline: 0;
}
a img {
	border: 0;
}

#page {
	min-height:100% !important;
	position:relative;
}
.site-header {

}
.site-content {
	padding-bottom:100px; /* Height of the footer element */
}
.site-footer {
	width:100%;
	height:80px;
	position:absolute;
	bottom:0;
	left:0;
}

.site-main {
	padding-bottom: 40px;
}

.home .site-main {
	padding-bottom: 0px; 
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: "museo-sans", sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
}
p {
	margin-bottom: 1.5em;
}
b, strong {
	font-weight: bold;
}
dfn, cite, em, i {
	font-style: italic;
}
blockquote {
	margin: 0 1.5em;
}
address {
	margin: 0 0 1.5em;
}
pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}
code, kbd, tt, var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
mark, ins {
	background: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: 75%;
}
big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	/*margin-bottom: 1.5em;*/
}
ul {
	/*margin: 0 0 1.5em 3em;*/
}
ol {
	margin: 0 0 1.5em 3em;
}
ul {
	list-style: disc inside none;
}
ol {
	list-style: decimal inside none;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
dt {
	font-weight: bold;
}
dd {
	/*margin: 0 1.5em 1.5em;*/
}
img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}
figure {
	margin: 0;
}
table {
	/*margin: 0 0 1.5em;*/
	width: 100%;
}
th {
	font-weight: bold;
} 

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 0px;
	background: #ef4d28;
	color: #ffffff;
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 18px;
	padding: 10px 20px;
	text-transform: uppercase;
	font-weight: bold;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: #1b75bb;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	background: #1b75bb;
}
input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}
textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	color: #363f49;
	text-decoration: none;
}
a:visited {
	color: #363f49;
	text-decoration: none;
}
a:hover,
a:focus,
a:active {
	color: #EF4D28;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {

}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.main-navigation li {
	float: left;
	position: relative;
}
.main-navigation a {
	display: block;
	text-decoration: none;
}
.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}
.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}
.main-navigation ul ul a {
	width: 200px;
}
.main-navigation ul ul li {
}
.main-navigation li:hover > a {
}
.main-navigation ul ul :hover > a {
}
.main-navigation ul ul a:hover {
}
.main-navigation ul li:hover > ul {
	left: 0%;
}
.main-navigation ul ul li:hover > ul {
	left: 0%;
}
.main-navigation .current_page_item a,
.main-navigation .current-menu-item a {

}

.main-navigation ul li.inrunning {
	display: none;
}

/* Small menu */
.menu-toggle {
	display: none;
}

.mobile-only {
	  display: none !important;
}

@media screen and (max-width: 640px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
	}
		  
	.mobile-only {
		display: inline !important;
	}

	.main-navigation ul {
		display: none;
		background: #1b75bb;
		left: 20px;
		right: 20px;
		position: absolute;
		text-align: center;
		z-index: 10;
	}
	
	.main-navigation ul li {
		float: none;
	}
	
	.main-navigation ul li a,
	.main-navigation ul li a:active,
	.main-navigation ul li a:hover,
	.main-navigation ul li a:visited {
		color: #fff;
	}
	
	.main-navigation ul li.inrunning {
		display: inline;
	}
	
}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: '';
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
}
.hentry {
	margin: 0 0 1.5em;
}
.byline,
.updated {
	display: none;
}
.single .byline,
.group-blog .byline {
	display: inline;
}
.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

@media (max-width: 600px) {
	.page-content, .entry-content, .entry-summary  {
		margin: 0px;
	}
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}
.bypostauthor {
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}
.wp-caption-text {
	text-align: center;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}
.gallery-columns-2 .gallery-item {
	max-width: 50%;
}
.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
	max-width: 25%;
}
.gallery-columns-5 .gallery-item {
	max-width: 20%;
}
.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}
.gallery-caption {}

/*--------------------------------------------------------------
13.0 Customizations
--------------------------------------------------------------*/

.wrapper {
	width: 1280px;
	margin: auto;
	padding: 0px 40px;
}

.page-has-children #masthead {
	min-height:150px;
}

@media (max-width: 1024px) {
	.page-has-children #masthead {
		min-height: 0px;
	}
}

.page-has-no-children #masthead
{
	min-height:0px;
}

@media (max-width: 1320px) {
  .wrapper {
    width: 100%;
    padding:0px 40px;
  }
  header {
	  min-height:0px;
  }
}

@media (max-width: 600px) {
  .wrapper {

    padding:0px 20px;
  }
}



/*--------------------------------------------------------------
13.1 Customizations - Header & Footer
--------------------------------------------------------------*/

/* Header Menu and Primary Menu */
.header-navigation ul li,
.main-navigation ul li,
.secondary-navigation ul li {
	display: inline;
	padding: 0px 16px;
}

/* Header Menu */
.header-navigation {
	width: 100%;
	display: block;
	background: #1b75bb;
	height: 40px;
	text-align: right;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
}

@media (max-width:640px) {
	.header-navigation {
		display: none;
	}
}

.header-navigation ul {
	list-style: none;
}

.header-navigation ul li a {
	color: #ffffff;
}

.header-navigation ul li a:hover {
	color: #ebebeb;
}

.menu-header-menu-container {
    display: inline-block;
    margin-top: 11px;
}

/* Primary Menu */
.site-branding {
	height: 80px;
	width: 100%;
	text-transform: uppercase;
}

.site-branding .site-title {
	display: inline-block;
	/* width: 264px; */
	height: 57px;
	margin-top: 11px;
}


.site-branding .site-title img {
	height: 100%;
}

.site-branding .main-navigation {
	float: right;
	margin-top: 28px;
}

.main-navigation .current-menu-item a,
.main-navigation .current_page_item a,
.main-navigation .current-page-parent a,
.main-navigation .current-page-ancestor a {
	color: #ef4d28;
}

@media (max-width: 1024px) {
	.site-branding .main-navigation {
		margin-top: 28px;
	}
	.secondary-navigation {
		display: none !important;
	}
	.site-branding .main-navigation ul li
	{
		padding: 0px 12px !important;
	}
}

@media (max-width: 920px) {
	.site-branding .main-navigation {
		margin-top: 5px;
		clear: both;
	}
	.site-branding .main-navigation ul li
	{
		padding: 0px 7px !important;
	}

	.secondary-navigation ul li {
		padding: 0px 5px !important;
	}
}

button {
	border: 0px;
	padding: 0px;
	height: 52px;
}

button img {
	height: 100%;
}

@media (max-width: 640px) {
	.site-branding .site-title #desktop-logo {
		display: none;
	}
	.site-branding .site-title {
		/* width: 43px; */
		height: 52px;
		margin-left: 0px;
	}
	.site-branding {
		height: auto;
	}
	.site-branding .main-navigation {
		margin-top: 11px !important;
	}
	.secondary-navigation {
		display: none !important;
	}
}

@media (max-width: 320px) {
	.site-branding .site-title,
	button {
		height:26px;
	}
}

@media (min-width: 641px) {
	.site-branding .site-title #mobile-logo {
		display: none;	
	}
}	


/* Secondary Menu */

#secondary-placeholder {
	position: relative;
}

.secondary-navigation {
	height: 60px;
	width: 100%;
	background: #1b75bb;
	text-align: right;
	display: block;
	text-transform: uppercase;
	position: relative;
}

.secondary-navigation .wrapper > a {
	display: none;
}

.page-has-no-children .secondary-navigation {
	position: absolute !important;
	z-index: 999999999999999;
}

.secondary-navigation ul {
	vertical-align: middle;
	padding-top: 18px;
	display: inline-block;
}

.secondary-navigation ul li {
	display: inline;
}

.secondary-navigation ul li a,
.secondary-navigation ul li a:visited {
	color: #ffffff;
}

.secondary-navigation ul li a:hover,
.secondary-navigation ul li a:active {
	color: #ebebeb;
}

.secondary-navigation ul li.current_page_item a {
	color: #ebebeb;
}

.sub-menu {
	display: none;
}

.secondary-navigation > a {
	display: none;
}

.secondary-navigation .sub-menu {
	display: inline-block;
	width: 1200px;
}

@media (max-width: 1320px) {
	.secondary-navigation .sub-menu {
		width: 100%;
	}
}

.current-menu-item .sub-menu {
	display: none;
}

/* Footer */

.site-footer {
	width: 100%;
	display: block;
	background: #ef4d28;
	min-height: 80px;
	font-size: 12px;
	color: #ffffff;
	text-transform: uppercase;
	bottom: 0px;
	margin-top: 20px;
}

.site-footer #footer-inner {
	margin-top:18px;
}

.site-footer .menu-footer-menu-container,
.site-footer .social-media,
.site-footer .site-info,
.site-footer .footer-navigation {
	display: inline-block;
}

.site-footer .social-media {
	margin-left: 30px;
	vertical-align: middle;
}

.site-footer .footer-navigation {
	width: 64%;
	float: left;
	vertical-align: middle;
}

.site-footer .site-info {
	text-align: right;
	width: 34%;
}


@media (max-width: 1024px) {
	.site-footer ul {
		padding-left: 10px !important;
	}
	.site-footer ul li .pipe {
		padding: 0px 10px !important;
	}
	.site-footer .social-media {
		margin-left: 15px;
	}
	.site-footer #footer-inner {
		margin-top: 10px;
	}
}

@media (min-width: 800px) {
	.site-footer ul li {
		display: inline;
	}
	
	.site-footer ul li .pipe {
		padding: 0px 20px;
	}
	
	.site-footer ul {
		padding-left: 30px;
	}
	
	.site-footer ul li:first-child .pipe {
		display: none;
	}
	
}


.site-footer ul li a {
	color: #ffffff;
}

.site-footer ul li a:hover {
	color: #ebebeb;
}


@media (max-width: 800px) {
	.site-footer .footer-navigation,
	.site-footer .site-info {
		width: 100%;
	}
	.site-footer .site-info {
		margin-top: 15px;
		padding-right: 10px;
	}
	.site-footer ul li .pipe {
		display: none;
	}
	.site-footer ul {
		list-style: none !important;
	}
	.site-footer ul li {
		list-style: none !important;
	}
	.site-footer .social-media {
		margin-right: 40px;
		margin-top: 18px;
		float: right;
	}
	.site-footer {
		min-height:160px;
	}
	.site-content {
		padding-bottom: 180px;
	}

}

/*--------------------------------------------------------------
13.2 Customizations - Home
--------------------------------------------------------------*/

.carousel-indicators {
	right: 47% !important;
	top: auto !important;
	bottom:10px !important;
}

.carousel-indicators li {
	width: 20px !important;
	height: 20px !important;
	border-radius: 20px !important;
}

.carousel-caption {
	width: 40%;
	left: 0px;
	top: 8%;
	background: none repeat scroll 0 0 rgba(20, 86, 138, 0.8) !important;
	font-size: 18px;
	bottom: auto !important;
}

.carousel-caption:empty {
	padding: 0px !important;
}

.carousel-caption h2 {
	color: #fff;
	text-transform: uppercase;
	font-size: 60px;
	line-height: normal;
}

.carousel-control {
	background: none;
	border: none;
	display: none;
}

.carousel-control.showUp {
	display: block;
}

.rsDefaultInv .rsBullets {
	position: absolute !important;
	bottom: 0px !important;
}

.rsDefaultInv .rsBullet span {
	width: 20px !important;
	height: 20px !important;
	background: #ccc !important;
}

.rsDefaultInv .rsBullet  {
	width: 20px !important;
	height: 20px !important;
}

.rsDefaultInv .rsBullet.rsNavSelected span {
	background: #fff !important;
}


@media (max-width: 1100px) {
	.carousel-caption h2 {
		font-size: 24px;
	}
	.carousel-indicators {
		right: 43% !important;
	}
}

@media (max-height: 900px) {
	.carousel-caption h2 {
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	.rsNav.rsBullets {
		display: none;
	}
}

@media (max-width: 640px) {

	.carousel-indicators {
		display: none;
	}
	.carousel-control {
		display: none;
	}
	.carousel-caption {
		display: none;
	}
	.carousel-caption h2 {
		display: none;
	}
	.carousel-caption p {
		display: none;
	}
}

.orange {
	color: #ef4d28 !important;
}

.logo {
	width: 50%;
	margin: 0px auto;
	text-align: center;
}

.logo .logo-img {
	margin: 0px auto 10px auto;
	display: block;
	width: 372px;
}

#ctas {
	margin: 15px auto 0px auto;
	text-transform: uppercase;
}

.cta1, .cta2, .cta3 {
	display: inline-block;
	width: 33%;
	text-align: center;
}

#ctas h2 {
	margin: 30px 0px;
	font-weight: bold;
	font-size: 21px;
}

a.button,
a.button:active,
a.button:visited {
	background: #ef4d28;
    border: 1px none;
    border-radius: 5px;
    display: inline-block;
	padding: 5px 30px;
	text-transform: uppercase;
    color:#ffffff;
}

a.button:hover {
	background: #1b75bb;
}

@media (max-width: 1200px) {
	.logo {
		width: 75%;
	}
	#ctas {
		width: 100%;
	}
}

/*--------------------------------------------------------------
13.3 Customizations - Tertiary Pages
--------------------------------------------------------------*/
.entry-header {
	width: 100%;
	margin: 0px auto;
	margin-top: 50px;
	min-height: 40px;
}

@media (max-width: 600px) {
	.entry-header {
		margin-top: 5px;
		min-height: 0px;
	}

}

h1 {
	font-size: 30px;
	color: #ef4d28;
	text-transform: uppercase;
}

hr.light {
	height: 1px solid #ebebeb; 
	width: 70%;
	margin: 50px auto;
}

hr.light2 {
	height: 1px solid #ebebeb; 
	width: 70%;
	margin: 50px auto 25px auto;
}

.feature-description {
	display: inline-block;
	width: 60%;
	padding-left:10%;
}

.feature-image {
	display: inline-block;
	width: 40%;
	float: left;
}

.feature-image img {
	width: 100%;
}

.page-template-page_casinoproperties-php .prop-image  img {
	max-width: 100%;
	height: auto;
}

.page-template-page_leadership-php .feature-image {
	max-width: 287px;
	width: 25%;
}

.page-template #leader {
	max-width: 110px;
	max-height: 110px;
	display: inline-block;
}

.page-template-page_leadership-php .feature-description {
	min-width: 60%;
	width: 75%;
}

.page-template-page_casinoproperties-php .prop-image {
	display:inline-block;
	float:left;
	max-width: 287px;
	width:40%;
}

.page-template-page_casinoproperties-php .prop-description {
	display:inline-block;
	float:right;
	width:60%;
}

.feature-description a.button {
	clear: both;
	margin-top: 10px;
}

@media (max-width:640px) {
	.feature-description, 
	.feature-image,
	.page-template-page_leadership-php .feature-image img,
	.entry-header,
	.page-template-page_leadership-php .feature-description,
	.page-template-page_casinoproperties-php .prop-description,
	.page-template-page_leadership-php .prop-image {
		width: 100%;
	}
	.page-template-page_casinoproperties-php .prop-image {
		width: 100%;
	}
	.feature-description,
	.page-template-page_leadership-php .feature-description {
		padding-left: 0px;
	}
	.page-template-page_casinoproperties-php .prop-description {
		padding-left: 0px;
	}
	
	h1 {
		font-size: 30px;
	}
	hr.light {
		margin: 25px auto;
	}
	hr.light2 {
		margin:25px auto 0px auto;
	}
}

.inner-wrapper {
	width: 90%;
	margin: 40px auto 20px auto;
}

.inner-wrapper h2 {
	font-size: 30px;
    font-weight: 100;
    line-height: normal;
    margin-top: 15px;
    text-transform: uppercase;
    color: #ef4d28;
}

.half {
	width: 49%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 25px;
	padding-right: 20px;
}

.forty {
	width: 39%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 25px;
	padding-right: 20px;
}

.sixty {
	width: 59%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 25px;
	padding-right: 20px;
	text-align: center;
}

.thirtythree {
	width: 32%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 25px;
	padding-right: 20px;
	text-align: center;
}

#ctas .thirtythree {
	width: 33%;
	padding-right: 0px;
}

.twentyfive {
	width: 24%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 25px;
	padding-right: 20px;
	text-align: center;
}

.twenty {
	width: 19%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 25px;
	padding-right: 20px;
	text-align: center;
}

.sixty p,
.forty p {
	text-align: left;
}

.whole {
	width: 100%;
	display: block;
	clear: both;
}

.ninety {
	width: 90%;
	display: block;
	clear: both;
	margin: auto;
}

.eighty {
	width: 80%;
	display: block;
	clear: both;
	margin: auto;
	text-align: center;
}

.eighty p {
	text-align: left;
}

.fancy-section {
	margin: 40px auto 40px auto;
}

.orange-text {
    color: #ffffff;
    display: inline-block;
    font-size: 50px;
    line-height: 130px;
    text-transform: uppercase;
}

.half a.button {
	margin: 20px 0px 0px 0px;
}

.sixty a.button,
.forty a.button {
	margin: 0px 0px 0px 0px;
}

#headshot {
	margin-right: 20px;
}

.section2 {
	padding-top: 15px;
}

#section2cta {
	vertical-align: middle;
}

.header-with-text {
	width: 100%;
	position: relative;
}

.header-with-text .entry-title {
    background: none repeat scroll 0 0 rgba(20, 86, 138, 0.8) !important;
    color: #ffffff;
    position: absolute;
    bottom: 0px;
    width: 100%;
	font-size: 48px;
	line-height: 150%;
	padding-left: 100px;
	padding-right: 100px;
}

.page-id-865 .entry-title {
    text-transform: none;
}


#leader {
	margin:0px 15px;
}

.orange-box {
	border: 1px solid #ef4d28; 
	float: right; 
	padding: 40px;
}

@media (max-width:1024px) {
	.inner-wrapper {
		width: 100% !important;
	}
	.orange-text {
		font-size: 40px;
	}
	.header-with-text .entry-title {
		padding-left: 20px;
		font-size: 35px;

	}
	.inner-wrapper h2 {
		font-size: 25px;
	}
	.eighty {
		width: 100%;
		display: block;
	}
	
}

@media (max-width: 768px) {
	.half {
		width: 100%;
	}
	.half, .forty, .sixty, .thirtythree, .twentyfive, .twenty {
		width: 100%;
		display: block;
		padding-right: 0px;
		margin-bottom: 5px;
	}

	.whole {
		background: initial !important;
	}
	.orange-text {
		font-size: 25px;
		color: #ef4d28;
		line-height: normal;
	}
	.header-with-text .entry-title {
		background: initial !important;
		position: relative;
		color: #1b75bb;
		line-height: normal;
		padding-left: 0px;
		margin: 5px 0px;
	}
	.button-container {
		text-align: center;
	}
	.whole.fancy-section.first {
		margin: 0px auto;
	}
	.orange-box {
		padding: 20px;
		margin-top: 20px;
	}
}

@media (max-width: 800px) {
	#leader {
		display: none !important;
	}
}

/* Display Lightbox Links on Desktop, 
 * Plain Links on Mobile */

@media (max-width: 600px) {
	.lb-link {
		display: none;
	}
}

@media (min-width: 600px) {
	.plain-link {
		display: none
	}
}

#cboxLoadedContent h2,
.single-mobile_apps h2,
.single-partners h2 {
	font-size: 30px;
	margin: 15px 0px;
	text-transform: uppercase;
	color: #ef4d28;
}

#cboxLoadedContent h3,
.single-mobile_apps h3 {
	font-size: 30px;
	margin: 15px 0px;
	line-height: 150%;
	color: #ef4d28;
}


.graybutton {
    background: #838383;
    display: block;
    margin: auto;
    text-align: center;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-size:20px;
    letter-spacing: 0.06em;
}

a.graybutton, a.graybutton:visited {
	color: #fff;
}

.graybutton:hover {
	background: #1b75bb;
}

.partners {
	text-align: center;
	margin: 60px auto 0px auto;
}

.single-mobileapp {
	margin: 60px auto 0px auto;
}

@media (max-width: 600px) {
	.single-mobileapp {
		margin: 0px;
	}
	.graybutton {
		margin: 0px auto 30px auto;
	}
}

.header-with-map p {
	width: 70%;
	margin: 0px auto 30px auto;
}

.partners-section {
	padding: 30px 0px 30px 0px;
}

.partners-section.odd {
	background: #ebebeb;
	width: 100%;
}

.partners-section h1 {
	margin-bottom: 20px;
}

.partners-section .logo img {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
}

.partners-section .logo {
	height: 110px;
	display: inline-block;
	max-width: 33%;
	position: relative;
	vertical-align: top;
}


#thumbs {
	text-align: center;
	margin-top: 20px;
}

#thumbs ul {
	list-style: none outside none;
}

#thumbs ul li {
	display: inline;
}

#gallery #thumbs .logo {
	height: 110px;
	display: inline-block;
	max-width: 32%;
	position: relative;
	vertical-align: top;
}

#gallery #thumbs .logo img {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	max-width: 90%;
}

#gallery #thumbs .logo img.bigger {
	max-width: 100%;
}

#gallery #large-image {
	width: 60%;
	max-width: 777px;
	display: inline-block;
}

#gallery #info {
    display: inline-block;
    padding-left: 5%;
    vertical-align: top;
    width: 39%;
}

#tabs3 h2.resp-tab-active {
	background: none !important;
	border-top: 1px solid #ebebeb;
	padding-top: 10px;
}

@media (max-width:1200px) {
	#gallery #info {
		max-height:500px;
		overflow-y: auto;
	}
}

@media (max-width: 920px) {
	#gallery #large-image,
	#gallery #info {
		width: 100%;
		display: block;
		padding-left: 0px;
		overflow-y: auto;
		max-height: none;
	}
	.logo img {
		max-width: 80% !important;
	}
	.resp-tab-content-active {
		border-bottom: 1px solid #ebebeb;
		padding-bottom: 10px;
		margin-bottom: 20px;
	}
}

@media (max-width: 920px) {
	.partners-section .logo {
		max-width: 100%;
	}
	.partners-section {
		padding: 20px 0px 8px 0px;
	}
	.partners-section h1 {
		margin-bottom: 10px;
	}
	.partners {
		width: 100%;
		margin: 10px 0px 30px 0px;
	}
	.header-with-map p {
		width: 100%;
	}
}

#fancybox-frame .single-mobile_apps header,
#fancybox-frame .single-mobile_apps footer {
	display: none;
}

@media (max-width:855px) {
	.single-mobile_apps .site-header,
	.single-mobile_apps .site-footer,
	.single-partners .site-header,
	.single-partners .site-footer {
	/*	display: none !important; */
	}
}

#faqs .strong {
    cursor: pointer;
    font-weight: bold;
    margin: 20px 0 5px;
    padding-top: 0;
    text-decoration: none;
    color: #363f49;
}

#faqs .strong:hover {
	color: #ef4d28;
}

#faqs p {
    margin: 0;
    position: relative;
}

#contact #form {
	text-transform: uppercase;
	color: #ef4d28;
	float: left;
}

#contact #address-info {
	padding-left: 50px;
	float: right;
}

.ajax-loader {
	display: block;
}

#contact h1 {
	margin: 30px 0px;
}

@media (max-width: 768px) {
	#contact h1 {
		margin: 0px 0px;
	}
	#contact #address-info {
		padding-left: 0px;
	}
	.ninety {
		width: 100%;
	}
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], textarea, select {
	border-radius: 0px !important;
	background: #ebebeb;
	border: 1px solid #363f49 !important;
	padding: 10px !important;
	width: 100%;
	text-transform: none;
}


/*
 *  In Running Schedule
 */ 
 
.days-menu {
	background: #363f49;
	display: block;
	width: 100%;
}

 .days-menu ul {
	list-style: none outside none;
	width: 100%;
	margin: auto auto;
}

 .days-menu ul li {
	display: inline-block;
	width: 11%;
	padding: 10px 10px;
	vertical-align: middle;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
}

 .days-menu ul li a {
	color: #fff;
	text-transform: uppercase;
}

.ui-tabs-active a,
.ui-tabs-active a .date {
	color: #1b75bb !important;
}

 .days-menu ul li.last {
	font-weight: bold;
	height: 100%;
	width: 19%;
	text-align: right;
}

 .days-menu ul li .date {
	color: #ebbeb3;
	text-transform: none;
	font-size: 14px !important;
}

#pst {
    text-align: right;
    font-size: 14px;
    font-weight: bold;
    color: #ee6141;
    padding-top: 0.5em;
}

.event {
	width: 100%;
	color: #ffffff;
	font-size: 16px;
	margin-top: 20px;
	position: relative;
	font-weight: bold;
}

.category, .teams, .time {
	display: inline-block;
	height: 140px;
	vertical-align: top;
	position: relative;
}

.category img {
	position: absolute;
	top: 0; bottom: 0; left: 0; right: 0;
	margin: auto auto;
}

.category {
	width: 15%;
	background: #e9e9e9;
}

.time {
	width: 15%;
	background: #777777;
	display: inline-table;
	float: right;
}

.teams {
	width: 70%;
}

.teams .away, .teams .home {
	height: 50%;
	display: table;
	width: 100%;
	padding-left: 2%;
}

.teams .away {
	background: #ee6141;
}

.teams .home {
	background: #ebbeb3;
}

.teams .away > div, .teams .home > div, .time > div {
	display: table-cell;
	vertical-align: middle;
}

.time > div {
	text-align: center;
}

.page-template-page_commercials-php .half,
.page-template-page_commercials-php .whole {
	position: relative;
}

.media-commercial {
	position: relative;
}

.commercial-title {
	text-align: center;
}

#commercialplay {
	position: absolute;
	top: 0; bottom: 0; left: 0; right: 0;
	margin: auto;
	z-index: 2;
}

#commercial-preview {
	z-index: 0;
	width: 100%;
}

.single-careers p {
	margin-bottom: 0px;
}

ul.legal-menu {
	list-style: none;
}

ul.legal-menu li {
	display: inline-block;
	padding-right:50px;
}

ul.legal-menu li.current_page_item a {
	color: #ef4d28;
}

.wp-pagenavi {
	float: right;
}

.internal-marquee-container {
	max-width: 640px;
	margin: auto;
}

@media (max-width:1024px) {
	ul.legal-menu li {
		padding-right:20px;
		display: block;
	}
}

@media (max-width: 900px) {
	.commercial-title {
		font-size: 18px;
	}
}

@media (max-width: 640px) {
	.category {
		display: grid;
	}
	.event {
		font-size: 16px;
		font-weight: normal;
	}
	.time {
		width: 15%;
	}
	.category, .teams, .time {
		height: 70px;
	}
	.inner-wrapper {
		margin-top: 10px;
	}
	#wpgmza_map {
		display: none !important;
	}
}

.page-template-page_blank-php .header-navigation,
.page-template-page_blank-php #site-navigation,
.page-template-page_blank-php .site-footer {
	display: none !important;
}

.no-desktop {
	display: none;
}

@media (max-width: 1024px) {
	.no-desktop {
		display: block;
	}
}

.page-template-page_legal-php .page-item-709 > a {
	color: #ef4d28;
}

.error-404.not-found{
	margin-top: 60px;
}

.resp-tabs-container {
    min-height: 510px;
}

.page-has-no-children .entry-header {
	margin: 100px auto 0;
}



@media (max-width: 1024px) {
	#ctas h2 {
		margin: 10px 0px;
	}
	#ctas img {
		max-width: 100%;
	}

	#ctas .thirtythree {
		margin-bottom: 25px;
		padding-top: 25px;
		border-top: 1px solid #ebebeb;
	}
}

@media (max-width: 950px) {
	#ctas .thirtythree {
		width: 100%;
		display: block;
	}
}

@media (max-width: 768px) {
	.logo {
		width: 100%;
	}
	.logo .logo-img {
		width:75%;
	}
	.page-has-no-children .entry-header {
		margin: 40px auto 0;
	}

}

@media (max-width: 640px) {
	.cta1, .cta2, .cta3 {
		width: 100%;
		display: block;
		margin-bottom: 60px;
	}

	#ctas {
		margin: 30px auto;
	}
	a.button,
	a.button:active,
	a.button:visited,
	a.button:hover {
		text-align: center;
	}
	.page-has-no-children .entry-header {
		margin: 0px auto 0;
	}

}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	html, body {
		height: auto;
	}
}
