/*
Theme Name: naa
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
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: naa1
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.

 naa 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/ */
	box-sizing: border-box; /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
}
*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #000; /* Fallback for when there is no custom background color defined. */
	background-image: url(images/internal_bg.jpg);
	background-repeat: no-repeat;
	background-position: top;
}
body.home {
	background-color: #000;
}
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;
}
.right {
	float: right;
}
.left {
	float: left;
}
.center {
	text-align: center;
}
.hide, .skip-link, #extra, #mmMenu, .home #content {
	display: none;
}
#menu_overlay {
	background: #000;
	display: none;
	width: 100%;
	height: 100%;
	z-index: 10;
	position: absolute;
	top: 0;
	left: 0;
}
#searchContainer span.screen-reader-text {
	display: none;
}
#mobileRequestInfo {
	display: none;
}
#top_admin_bar {
	padding: 0;
}
/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
.HelveticaNeueLT-Condensed { 
	font-family: HelveticaNeueLT-Condensed, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-style: normal;
}
.HelveticaNeueLTStd-MdCn { 
	font-family: HelveticaNeueLTStd-MdCn, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-style: normal;
}
body,
button,
input,
select,
textarea {
	color: #404040;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
	font-family: HelveticaNeueLT-Condensed, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*h1, 
h2,
h3,
h4,
h5,
h6 {
	clear: both; Why???
}*/
h3 {
	font-size: 36px;
	padding-bottom: .6em;
}
h4 {
	font-size: 24px;
}
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-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 1.5rem;
}

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 {
	list-style: disc;
}

ol {
	list-style: decimal;
}
#content ul,
#content ol {
	margin-bottom: 1.5em;
}
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: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 0;
	-webkit-appearance: none;
  	-webkit-border-radius: 0;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	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: 12px;
	font-size: 1.2rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
/*input[type="submit"]:hover*/ {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

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*/ {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
	border-radius: 0;
	-webkit-appearance: none;
  	-webkit-border-radius: 0;
}

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 */
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="dropdown"],
textarea {
	color: #fff;
	border: 1px solid #000;
	font-family: HelveticaNeueLTStd-MdCn, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	background-color: #4b4b4b;
	border-radius: 0;
	-webkit-appearance: none;
  	-webkit-border-radius: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="dropdown"] {
	padding: 0 14px;
	height: 36px;
}

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%;
}
.myBtn {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.myBtn:after {
                content: '';
                position: absolute;
                z-index: -1;
                -webkit-transition: all 0.3s;
                -moz-transition: all 0.3s;
                transition: all 0.3s;
}

.myBtn:after {
                width: 100%;
                height: 0;
                top: 0;
                left: 0;
}

.myBtn:hover,
.myBtn:active {
                color: #0e83cd;
}

.myBtn:hover:after,
.myBtn:active:after {
                height: 100%;
}


/*--------------------------------------------------------------
5.0 Header and Navigation
--------------------------------------------------------------*/
#masthead {
	position: relative;
	z-index: 6;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    0px 5px 5px 0px rgba(50, 50, 50, 0.75);
	box-shadow:         0px 5px 5px 0px rgba(50, 50, 50, 0.75);
	text-transform: uppercase;
}
#masthead a {
	text-decoration: none;
	text-transform: uppercase;
}
#topNavigation, #primaryNavigation {
	width: 100%;
}
#topNavigation ul, #primaryNavigation ul {
	list-style: none;
	float: right;
}
#topNavigation li, #primaryNavigation li {
	display: inline;
}
#topNavigation {
	background-image:url(images/bg-trans-red.png);
	height: 33px;
	font-size: 13px;
}
#topNavigation ul {
	padding-top: 7px;
}
#topNavigation li {
	border-right: #ccc solid 1px;
	opacity: 0.5;
	padding: 9px 10px 9px 11px;
	margin-left: -4px;
}
#topNavigation li:first-child {
	border-left: #ccc solid 1px;
}
#topNavigation li:last-child {
	border-right: none;
}
#topNavigation li:hover {
	background-color: #fff;
}
#topNavigation a {
	color: #fff;
}
#topNavigation li:hover > a {
	color: #cd0000;
}
#primaryNavigation {
	background-image: url(images/bg-trans-white.png);
	/*background-color: rgba(255, 255, 255, .5);*/
	height: 82px;
	font-size: 16px;
}
#primaryNavigation .menu-header ul {
	padding-top: 29px;
}
#primaryNavigation .menu-header li {
	padding: 32px 5px 31px;
	margin-left: -4px;
	border-right: #ccc solid 1px;
}
#primaryNavigation .menu-header li:first-child,
#primaryNavigation .menu-header .menu-item-591 { /*Chrome not playing nice */
	border-left: #ccc solid 1px;
}
#primaryNavigation .menu-header li a {
	padding: 32px 20px;
	color: #000;
	font-family: HelveticaNeueLTStd-MdCn, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#primaryNavigation .menu-header li:hover {
	background-color: #fff;
}
.menuBG .menuBGInt {
	margin: 0 auto;
	width: 80%;
}
#primaryNavigation ul .menuBG {
	display: none;
	position: absolute;
	z-index: 6;
	background-image: url(images/bg-trans-white-menu.png);
	left: 0;
	height: 475px;
	top: 114px;
	color: #333333;
	width: 100%;
}
#primaryNavigation .menu-header ul .sub-menu {
	padding-top: 8%;
	padding-left: 3%;
	float: left;
}
#primaryNavigation .sub-menu li {
	font-size: 22px;
	display: block;
	padding: 5px 5px;
	margin-left: -4px;
	border-right: none;
}
#primaryNavigation .sub-menu li:first-child {
	border-left: none;
}
#primaryNavigation .sub-menu li a {
	text-transform: none;
	font-family: HelveticaNeueLT-Condensed, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #333333;
	padding: 0;
}
.menuBG aside {
	width: 62%;
	padding: 0% 5% 0 5%;
	border-right: solid 1px #cd0000;
	margin-top: 5%;
	min-height: 300px;
	float: left;
}
.menuBG aside h4 {
	font-size: 36px;
	padding-bottom: 35px;
}
.menuBG aside p {
	font-size: 19px;
	text-transform: none;
	line-height: 1.6em;
}
#primaryNavigation .menu-header li a.button {
	background-color: transparent;
	color: #cd0000;
	border: solid 3px #cd0000;
	padding: 10px 24px;
	text-transform: uppercase;
	font-size: 22px;
}
#primaryNavigation .menu-header li a:hover.button {
	background-color: #cd0000;
	color: #fff;
}
#primaryLogo {
	float: left;
	margin-left: 1.6em;
	margin-top: 14px;
}
#primaryNavigation #primaryLogo a {
	padding: 0;
}
#primaryNavigation .menu-header,
#searchContainer,
#searchButton {
	float: left;
}
#searchContainer {
	display: none;
	overflow: hidden;
	padding: 22px 0 0 20px;
}
#searchContainer input[type="search"] {
	padding: 0 14px;
}
.search-submit {
	display: none;
}
#searchButton {
	padding: 0;
	margin-left: -5px;
}
#searchButton a {
	display: block;
	padding: 29px;
}
#searchButton:hover {
	background-color: #fff;
}
#sliderWrap {
	position: relative;
	z-index: 0;
	margin-top: -114px;
	display: block;
}
#ds-resources,
#ds-about,
#ds-programs,
#ds-admissions {
	display: none;
}
/*--------------------------------------------------------------
Search Form
--------------------------------------------------------------*/
#searchContainer {
	display: none;
	overflow: hidden;
	padding: 7px 0 0 10px;
	position: absolute;
	z-index: 5;
	top: 115px;
	right: 0px;
	width: 285px;
	height: 50px;
	background-color: #fff;
}
#searchContainer input[type="search"] {
	height: 34px;
}
#searchContainer input[type=submit] {
	background-color: transparent;
	color: #cd0000;
	border: solid 3px #cd0000;
	width: 70px;
	height: 36px;
	margin-left: 6px;
	display: inline-block;
	border-radius: 0;
	-webkit-appearance: none;
  	-webkit-border-radius: 0;
}
#searchContainer input[type=submit]:hover {
	background-color: #cd0000;
	color: #fff;
}
/*--------------------------------------------------------------
Request Info Form
--------------------------------------------------------------*/
#requestinfoWrapper {
	width: 100%;
	background-image: url(images/bg-requestinfo-wide.jpg);
	font-family: HelveticaNeueLTStd-MdCn, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	height: 113px;
	position: fixed;
	z-index: 2;
	bottom: 91px;
}
#requestinfo {
	margin: 0 auto;
	padding-top: 29px;
	width: 1162px;
}
#requestinfoCTA {
	color: #fff;
	float: left;
	width: 25%;
	max-width: 290px;
	text-align: center;
	font-size: 23px;
	line-height: 26px;
	margin-left: 5%;
	margin-right: 0;
}
#requestinfoForm {
	padding-top: 1px;
}
#requestinfoForm input {
	margin-right: 12px;
}
#requestinfoForm select {
	margin-right: 12px;
}
#requestinfoForm input[type="submit"] {
	margin-left: 10px;
	margin-right: 0;
	background-color: #000;
	font-family: HelveticaNeueLTStd-MdCn, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 17px;
	border: 5px solid #fff;
	text-transform: uppercase;
	border: 3px solid #fff;
	margin-top: 0;
	color: #fff;
	padding: 4px;
	border-radius: 0;
	-webkit-appearance: none;
  	-webkit-border-radius: 0;
}
#requestinfoForm input[type="submit"]:hover {
	color: #000;
	background-color: #fff;
}
#requestinfoForm ul {
	list-style: none;
	display: inline-block;	
}
#requestinfoForm li {
	display: inline-block;	
}
#requestinfoForm li.hide {
	display: none;	
}
.home #primary,
.entry-footer  {
	display: none;
}
#requestinfoForm ul {
	text-align: center;
	margin-top: 9px;
	width: 100%;
}
#requestinfo {
	width: 100%;
	padding-top: 18px;;
}
#requestinfoForm li,
#requestinfoInteriorWrapper #requestinfoForm li {
	width: 14%;
	margin-left: 1%;
}
#requestinfoForm input,
#requestinfoInteriorWrapper #requestinfoForm input[type="text"], #requestinfoInteriorWrapper input[type="email"] {
	width: 100%;
}
#requestinfoForm input[type="text"],
#requestinfoForm input[type="email"], 
#requestinfoForm input[type="dropdown"],
#requestinfoForm input[type="submit"],
#requestinfoInteriorWrapper #requestinfoForm input[type="text"],
#requestinfoInteriorWrapper input[type="email"], 
#requestinfoInteriorWrapper input[type="submit"],
#requestinfoInteriorWrapper input[type="dropdown"] {
	margin-left: 0;
	height: 36px;
	font-size: 15px;
	min-width:100%;
}
/*--------------------------------------------------------------
Interior Request Info Form
--------------------------------------------------------------*/
/*#requestinfoInteriorWrapper {
	position: relative;
	z-index: 2;
	margin-top: 560px;
}*/
#requestinfoInteriorWrapper #requestinfo {
	background-image: url(images/bg-requestInfoInternal.gif);
	width: 100%;
	max-width: 100%;
	height: 102px;
	padding-top: 24px;
}
#requestinfoInteriorWrapper #requestinfoCTA {
	background-image: url(images/bg-requestInfoInternal-CTA.png);
	background-repeat: no-repeat;
	background-position: 53px 4px;
	width: 188px;
	height: 102px;
	margin-left: 6%;
}
#requestinfoInteriorWrapper #requestinfoForm input[type="text"],
#requestinfoInteriorWrapper input[type="email"], #requestinfoInteriorWrapper #requestinfoForm input[type="dropdown"] {
	width: 100%;
	max-width: 174px;
	margin-right: 19px;
	background-color: #fff;
	border: 1px solid #ccc;
	height: 40px;
	color: #000;
        min-width:100%;
}
#requestinfoInteriorWrapper #requestinfoForm input[type="submit"],
#requestinfoInteriorWrapper #requestinfoForm button {
	background-color: transparent;
	color: #cd0000;
	border: solid 3px #cd0000;
	width: 100%;
	min-width: 150px;
	max-width: 207px;
	margin-left: -5px;
	padding: 4px;
}
#requestinfoInteriorWrapper #requestinfoForm input[type="submit"]:hover,
#requestinfoInteriorWrapper #requestinfoForm button:hover {
	background-color: #cd0000;
	color: #fff;
	
}
/*--------------------------------------------------------------
Interior Pages
--------------------------------------------------------------*/
/*#pageBGWrap {
	width: 100%;
	height: 880px;
	background-size: cover;
	position: absolute;
	background-position: center;
	z-index: 0;
	top: 0;
}*/
#pageBGWrap {
	width: 100%;
	position: relative;
	z-index: 0;
	margin: 0 auto -110px;
	top: -110px;
	text-align: center;
}
#content {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	background-color: #fff;
	padding: 24px 0 92px 0;
	position: relative;
}
#breadcrumbs {
	font-size: 18px;
	padding-left: 5%;
}
#contentInner {
	margin-top: -16px;
	float:left;
	background-color: #fff;
	width: 100%;
}
#breadcrumbs a {
	text-decoration: none;
	color: #b3b3b3;
}
#breadcrumbs a:hover {
	color: #cd0000;
}
#breadcrumbs strong {
	color: #cd0000;
	font-weight: normal;
}
#primary {
	float: left;
	width: 62%;
	max-width: 879px;
	border-top: solid 0px #c9c9c9;
	border-right: solid 0px #c9c9c9;
	padding-right: 30px;
	padding-top: 30px;
	margin-left: 5%;
}
#secondary {
	float: right;
	width: 28%;
	position: relative;
	left: -1px;
	border-left: solid 1px #c9c9c9;
	border-top: solid 1px #c9c9c9;
	padding-bottom: 100px;
	margin-right: 5%;
}
#secondary a {
	text-decoration: none;
	color: #000;
}
#secondary ul {
	list-style:none;
	margin-left: -33px;
	margin-top: -1px;	
}
#secondary #menu-sidebar-admissions {
	margin-top: 4px;
}
#secondary h4 {
	padding-top: 28px;
	padding-left: 30px;
	text-transform: uppercase;
	font-size: 27px;
}
#secondary .menu li {
	padding: 2px 0 2px 32px;
	line-height: 1.4em
}
#secondary .menu li:first-child {
	border-top: none;
}
#secondary .sub-menu li {
	border-top: none;
	margin-left: 15px;
	margin-bottom: -5px;
}
#secondary .menu li .sub-menu li a {
	font-size: 16px;
	color: #000;
	padding-left: 42px;
	margin-left: -12px;
	border-bottom: none;
}
#secondary .menu li .sub-menu li:last-child > a {
	border-bottom: solid 1px #c9c9c9;
}
#secondary	.menu li.dcjq-parent-li {
	margin-left: 0;
	border-top: none;
}
#secondary	.menu li a {
	font-size: 18px;
	color: #939393;
	border-bottom: solid 1px #c9c9c9;
}
#secondary .menu li a:hover,
#secondary .menu li a.dcjq-parent.active {
	color: #fff;
	background-color: #000;
}
#secondary .menu li .sub-menu a:hover {
	background-color: transparent;
	color: #939393;
}
#secondary .menu li .sub-menu li.current-menu-item a {
	color: #cd0000;
}
#secondary .menu-item-has-children a,
#secondary .menu li a  {
	display: block;
	width: 260px;
	padding: 4px 0 4px 31px;
	margin-bottom: -4px;
	color: #939393;
}


/*#secondary .menu li a.dcjq-parent  {
	color: #fff;
}*/
#scheduleTour {
	width: 275px;
	height: 83px;
	background-image: url(images/Schedule-a-Tour-Button.jpg);
}
#scheduleTour:hover {
	background-position: 0 -83px;
}
#scheduleTour a {
	width: 275px;
	height: 83px;
	display:block;
}
#sidebarChat {
	
}
#sidebarChat:hover {
	background-position: 0 -66px;
}
#sidebarChat a {
	width: 275px;
	height: 66px;
	display:block;
}
.testimonial p {
	margin-bottom: 0;
}
.error-404 {
	min-height: 500px;
}
#downloadBrochure {
	background-color: #efefef;
	background-image: url(images/CTA-download-brochure.png);
	background-repeat: no-repeat;
	background-position: 0px 14px;
	margin-top: 58px;
	width: 275px;
}
#downloadBrochure .widgettitle {
	display: none;
}
#downloadBrochure h4 {
	font-size: 19px;
	color: #cd0000;
	padding-left: 40px;
	margin-top: 0;
	padding-top: 16px;
}
#downloadBrochure p {
	padding: 0 5px 10px 41px;
	font-style: italic;
}
#scheduleTour, #sidebarChat {
	margin-top: 44px;
}
#testimonialWrapper {
	width: 100%;
	clear: both;
}
#testimonial {
	background-color: #e5e5e5;
	width: 100%;
	max-width: 100%;
	margin: 0 auto 92px;
	padding: 22px 0 0 70px;
	height: 85px;
}
#testimonial h5 {
	float: left;
	width: 75%;
	clear: none;
	font-style: italic;
	line-height: 21px;
	text-indent: -10px;
	font-size: 21px;
}
#testimonial  span {
	font-size: 32px;
	position: relative;
	line-height: 0px;
	top: 10px;
	padding-right: 5px;
}
#testimonial h6 {
	float: right;
	padding-right: 35px;
	font-weight: bold;
	clear: none;
	line-height: 20px;
}
#testimonialNav {
	width: 100%;
	max-width: 100%;
	position: relative;
	z-index: 2;
	margin: 0 auto;
	margin-top: -177px;
}
#testimonialNav a {
	display: block;
	width: 100%;
	height: 85px;
	color: transparent;
}
#testimonialNav a:hover {
	background-color: #333;
	opacity: .7;
} 
#primary ul {
	padding-left: 2em;
}
/*--------------------------------------------------------------
Footer Nav
--------------------------------------------------------------*/
#footerNavWrapper {
	background-image:url(images/bg-footer.png);
	position: fixed;
	z-index: 5;
	bottom: 21px;
	height: 70px;
	width: 100%;
}
#footerNavHeader {
	width: 100%;
	position: relative;
	z-index: 1;
	background-color: #cd0000;
	height: 70px;
}
#footerNav {
	margin: -50px auto 0;
	width: 100%;
	max-width: 1280px;
	position: relative;
	z-index: 2;
}
#footerNav aside {
	float: left;
	margin: 0 1px 0 5%;
	width: 11%;
	height: 100%;
}
#footerNav aside:last-child {
	margin-top: -20px;
	padding-top: 20px;
	background-image: url(images/bg-red-nav-divider.png);
	background-position: right 0;
	background-repeat: no-repeat;
}
#footerNav h4 {
	color: #fff;
	font-size: 16px;
	margin-bottom: 11px;
	text-transform: uppercase;
	background-image: url(images/bg-red-nav-divider.png);
	background-position: left;
	background-repeat: no-repeat;
	height: 73px;
	padding-left: 30px;
	padding-top: 25px;
	margin-top: -22px;
	margin-left: -5px;
}
#footerNav ul,
#footerNav .textwidget {
	list-style: none;
	display:none;
}
#footerNav ul {
	margin-left: 10px;
}
#footerNav .textwidget {
	margin-left: -2px;
}
#footerNav li {
	font-size: 14px;
	margin-bottom: 6px;
}
#footerNav li a {
	text-decoration: none;
	color: #000;
}
#footerNavLink {
	/*margin: 0 auto;*/
	width: 100%;
	position: relative;
	z-index: 3;
	/*background-image: url(images/bg-red-nav-divider.png);
	background-position: right;
	background-repeat: no-repeat;*/
	height: 71px;
	margin-top: -70px;
}
#footerNavLink a {
	display: block;
	width: 100%;
	height: 70px;
	color: transparent;
}
ul#social  {
	list-style:none;
	padding-top: 12px;
}
#social li {
	display:inline-block;
	width: 34px;
	height: 32px
}
#social a {
	display: block;
	width: 35px;
	height: 33px
}
#facebook {
	background-image:url(images/social.png);
}
#twitter {
	background-image:url(images/social.png);
	background-position: -39px 0;
}
#google {
	background-image:url(images/social.png);
	background-position: -79px 0;
}
#youtube {
	background-image:url(images/social.png);
	background-position: -119px 0;
}
#instagram {
	background-image:url(images/social.png);
	background-position: -157px 0;
}
#subscribe {
	margin-left: 20px;
}
#subscribe label {
	font-family: HelveticaNeueLTStd-MdCn, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #000;
	font-size: 14px;
}
#subscribe input[type="email"] {
	font-family: HelveticaNeueLTStd-MdCn, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	background-color: #000;
	padding: 0 10px;
	height: 27px;
}
#subscribe input[type="submit"] {
	margin-right: 0;
	background-color: transparent;
	font-family: HelveticaNeueLTStd-MdCn, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	border: 3px solid #000;
	margin-top: 6px;
	color: #000;
	padding: 1px 18px 0;
	height: 27px;
}
#subscribe input[type="submit"]:hover {
	background-color: #000;
	color: #fff;
}
footer {
	width: 100%;
	background-color: #cd0000;
	position: fixed;
	z-index: 5;
	border-top: solid #fff 1px;
	bottom: 0;
	color: #ffffff;
	font-size: 14px;
}
footer .textwidget {
	display: inline;
}
footer #text-8.widget {
	margin: 0;
}
.bvalidator_red_errmsg {
	left: 0 !important;
}
.home #testimonialWrapper {
	display: none;
}
#content ul.mainul {
	margin: 0;
}
/*--------------------------------------------------------------
Tabs
--------------------------------------------------------------*/
.nav>li>a {
	padding: 0;
	border: 0;
	-webkit-appearance: none;
  	-webkit-border-radius: 0;
}
.nav-tabs>li>a {
	border-radius: 0;
	-webkit-appearance: none;
  	-webkit-border-radius: 0;
}
.tabs-left>li, .tabs-right>li {
	margin-bottom: 0;
}
.tabs-left>li {
	margin-right: 0;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
	border: 0;
	background-color: transparent;
	cursor: auto;
}
.nav>li>a:hover, .nav>li>a:focus {
	background-color: transparent;
}
#tabs {
	position: fixed;
	top: 200px;
	right: 0;
	z-index: 5;
	overflow: hidden;
	height: 486px;
}
.nav-tabs li a.tab {
	display: block;
	width: 39px;
	background-image:url(images/side-tabs.png);
	position: relative;
	z-index: 5;
	right: -1px;
}
li.events a.tab {
	height: 97px;
	background-position: -40px 0;
}
li.events.active a,
.nav-tabs li.events a:hover {
	background-position: 0 0;
}
li.chat a.tab {
	
	height: 139px;
	background-position: -40px 265px;
}
li.chat.active a,
.nav-tabs li.chat a:hover {
	background-position: 0 265px;
}
li.applynow a.tab {
	height: 122px;
	background-position: -40px 122px;
}
li.applynow.active a,
.nav-tabs li.applynow a:hover {
	background-position: 0 122px;
}
.tab-pane {
	width: 338px;
	display: none;
	position: absolute;
	right: -339px;
	background-color: #fff;
	border: solid 1px #cd0000;
	z-index: 0;
	text-align: center;
	background-repeat: no-repeat;
	background-position: top center;
	text-transform: uppercase;
	height: 484px;
}
.tab-pane#events {
	top: 0;
}
.tab-pane#applynow {
	top: -236px;
}
li.active .tab-pane {
	z-index: 1;
	display: block;
}
.nav-tabs a.closeUL {
	position: absolute;
	right: 8px;
	bottom: 0;
}
.nav-tabs a.viewAll {
	position: absolute;
	left: 8px;
	bottom: 0;
}
.tab-pane h4 {
	font-size: 30px;
	font-family: HelveticaNeueLTStd-MdCn, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	padding-top: 140px;
	font-weight: bold;
	color: #000;
}
.tab-pane h5 {
	font-size: 22px;
	font-weight: bold;
	color: #cd0000;
}
.tab-pane p {
	font-size: 16px;
}
.tab-pane ul {
	list-style: none;
}
.tab-pane li {
	width: 290px;
	background-color: #000;
	margin: 10px auto;
	padding: 5px;
}
.tab-pane li a {
	color: #fff;
	font-weight: bold;
}
.tab-pane li a:hover {
	text-decoration: none;
}
#applynow {
	background-image: url(images/tab-apply.jpg);
}
#events {
	background-image: url(images/tab-events.jpg);
}
#events h6, #events p {
	text-transform: none;
}
#events h4 {
	padding-bottom: 10px;
}
#events h6 {
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 6px;
}
#events p {
	font-size: 14px;
	text-align: left;
	padding: 0 15px 10px;
	margin: 0;
}
@media only screen and (max-width: 1230px) {
	#footerNav li {
		font-size: 13px;
		margin-bottom: 2px;
	}
}
@media only screen and (max-width: 1024px) {
.menuBG {display: none;}
body {
	background-image: none;
}
#searchButton {
	margin-left: -10px;
}
#primary {
	border-right: none;
	padding-top: 19px;
	width: 100%;
	border-bottom: solid 1px #c9c9c9;
	border-top: solid 1px #c9c9c9;
	margin-left:0;
}
#secondary {
	float: left;
	width: 100%;
	border-left: none;
	border-top: none;
}
#testimonial {
	width: 100%;
}
ul.sub-menu {
	margin-left: 0;
	list-style: none;
}
#extra {
	position: fixed;
	z-index: 11;
	float: none;
	height: 100%;
	right: -250px;
	display: block;
	overflow: scroll;
	background-color: #f1f1f1;
}
#extra .widget {
	margin: 0;
}
#extra #mobile-text-2 {
	width: 200px;
}
#extra li {
	padding: 3px 0 3px 15px;
	font-size: 16px;
	border-bottom: solid 1px #d8d8d8;
}
#extra li .sub-menu li,
#extra li .sub-menu li:first-child  {
	border-bottom: none;
	border-top: none;
	font-size: 13px;
	padding-left: 0;
}
#extra li:first-child {
	border-top: solid 1px #d8d8d8;
}
#extra li.highlight {
	background-color: #cd0000;
	border-bottom: solid 1px #fff;
}
#extra li.highlight a {
	color: #fff;
}
#extra a {
		text-transform: uppercase;
		color: #000;
}
#extra .sub-menu a {
	color: #666;
}
#extra a:hover {
		text-decoration: none;
}
#extra .current-menu-item {
	background-color: #000;
}
#extra .current-menu-item a {
		color: #fff;
}
#extra .current-menu-item a:hover {
		text-decoration: none;
}
#extra #mobile-text-2 h4 {
	display: none;
}
#extra #mobile-text-2 li {
	border: none;
}
#extra ul#social {
	text-align: center;
}
#extra #subscribe,
#extra #subscribe input[type="email"] {
	width: 100%;
}
#extra #subscribe {
	margin-left: 15px;
	margin-top: -10px;
	margin-bottom: 10px;
}
#extra #social li {
	width: 34px;
	height: 32px;
}
#extra #social li a {
	padding: 12px;
}
.interiorNav.widget {
	width: 275px;
	float: left;
	margin: 0 30px 0 0;
}
footer {
	width: 100%;
	font-size: 10px;
	padding-top: 2px;
}
}
/*  Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
.menu-item-62 {
	display: none;;
}
#masthead {
	height: 98px;
}
#masthead img {
	height: auto;
	max-width: 84%;
}
#primaryLogo {
	margin-top: 10px;
}
#primaryNavigation {
	font-size: 13px;
	height: 65px;
}
#primaryNavigation .menu-header ul {
	padding-top: 25px;
}
#primaryNavigation .menu-header li {
	padding: 27px 5px 22px;
}
#primaryNavigation .menu-header li a {
	padding: 32px 5px;
}
#primaryNavigation ul .menuBG {
	top: 97px;
}
#primaryNavigation .menu-header ul .sub-menu {
	padding-top: 12%;
}
#primaryNavigation .menu-header .menuBG li {
	padding: 6px 5px 6px;
}
#searchButton a {
	display: block;
	padding: 22px 12px 24px;
}
#requestinfoWrapper {
	bottom: 62px;
}
#requestinfoCTA {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
}
#requestinfoForm ul {
	width: 100%;
}
#requestinfoForm li:first-child,
#requestinfoInteriorWrapper #requestinfoForm li:first-child {
	margin-left: 0;
}
#requestinfoForm input[type="submit"] {
	padding: 3px;
}
#innerSecondary {
	width: 600px;
	margin: 0 auto;
	display: block;
}
#footerNavWrapper {
	bottom: 17px;
}
#footerNavWrapper,
#footerNavHeader {
	height: 45px;
}
#footerNav {
	width: 100%;
	margin-top: -29px;
}
#footerNav aside, #footerNav aside:last-child {
	margin-left: 0;
	width: 16%;
	background-image: none;
}
#footerNav h4 {
	font-size: 11px;
	padding-top: 14px;
	height: 45px;
	margin-left: -10px;
	margin-top: -16px;
}
#footerNav li {
	font-size: 12px;
}
#footerNavLink {
	height: 45px;
	margin-top: -45px;
}
#footerNavLink a {
	height: 45px;
}
#subscribe {
	margin-left: 12px;
}
#subscribe label {
	line-height: 14px;
}
/*#requestinfoInteriorWrapper {
	margin-top: 266px;
}*/
#requestinfoInteriorWrapper #requestinfoCTA {
	display: none;
}
#requestinfoInteriorWrapper #requestinfo {
	width: 100%;
	height: 70px;
	padding-top: 0;
}
#requestinfoInteriorWrapper #requestinfoForm {
	padding-top: 9px;
}
#requestinfoInteriorWrapper #requestinfoForm input[type="text"],
#requestinfoInteriorWrapper input[type="email"], 
#requestinfoInteriorWrapper input[type="submit"] {
	font-size: 13px;
	height: 28px;
}
#requestinfoInteriorWrapper #requestinfoForm input[type="submit"] {
	height: 31px;
	width: 138px;
	padding: 0px;
}
/*#pageBGWrap {
	height: 410px;
	background-position: center;
}*/
#pageBGWrap {
	margin-top: -65px;
}
#content {
	width: 100%;
	padding-bottom: 0;
}
#contentInner {
	margin-right: 48px;
	padding: 11px 0 0px 48px;
	width: 94%;
}
#secondary ul {
	margin-left: -7px;
}
#secondary h4 {
	padding-bottom: 7px;
	padding-top: 18px;
	padding-left: 10px;
}
#secondary .dcjq-parent {
	width: 100%;
	padding-left: 9px;
}
#secondary .menu li {
	padding-left: 12px;
	margin-left: 11px;
}
#secondary .menu li a {
	font-size: 16px;
}
#secondary .menu li .sub-menu li {
	margin-left: 48px;
}
#secondary .menu li .sub-menu li a {
	margin-left: -31px;
}
#rightCTAs {
	float: left;
	width: 275px;
}
#rightCTAs h4 {
	padding-left: 36px;
}
#downloadBrochure.widget {
	margin-top: 20px;
	margin-right: 0;
	margin-bottom: 0;
}
#scheduleTour, #sidebarChat {
	margin-top: 10px;
}
#breadcrumbs {
	font-size: 16px;
	padding-left: 48px;
}
h3 {
	font-size: 30px;
}
#testimonialWrapper {
	margin-top: -120px;
	display: table;
	margin-bottom: 60px;
}
#testimonial {
	margin: 0 auto 63px;
	padding-left: 40px;
	height: 6.5em;
}
#testimonialNav {
	margin-top: -167px;
	width: 100%;
	height: 105px;
}
#testimonialNav a {
	height: 105px;
}
#testimonial h5 {
	width: 75%;
	font-size: 18px;
	line-height: 19px;
}
#testimonial h6 {
	padding-right: 41px;
	padding-top: 25px;
	line-height: 16px;
	font-size: 13px;
}
#searchContainer {
	width: 255px;
	top: 98px;
}
#primaryNavigation ul .menuBG {
	height: 525px;
}
.menuBG aside {
	width: 55%;
	padding: 0% 5% 0 1%;
}
#primaryNavigation .sub-menu li a {
	font-size: 14px;
}
#tabs {
	height: 500px;
}
 .tab-pane {
	height: 498px;
}
}
/*  Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
li#menu-item-62 {
	display: inline;
}
#sliderWrap {
	height: 500px;
}
#extra ul.sub-menu {
	display: none;
}
body {
	background-color: #fff;	
}
#masthead, #requestinfoInteriorWrapper,
#footerNavWrapper, .interiorNav,
#breadcrumbs, #tabs {
	display: none;
}
.home #pageBGWrap,
.home .fullscreen-container {
	height: 500px !important;
}
#pageBGWrap {
	margin-top: 110px;
}
#mmMenu {
	display: block;
	width: 100%;
	background-color: #fff;
	position: relative;
	z-index: 2;
	height: 60px;
	padding: .8em 1em;
}
#content {
	margin-bottom: 0;
}
#primary {
	border-top: none;
	margin: 20px 20px 0 20px;
	padding: 0;
	width: 90%;
}
#secondary {
	padding: 20px 20px 0;
	left: 0;
	margin-right: 0;
	margin-bottom: 20px;
}
#downloadBrochure {
	margin-top: 0;
	font-size: 14px;
	margin: 0 auto;
}
.widget {
	margin: 0;
}
#scheduleTour, #sidebarChat {
	text-align: center;
	margin-top: 14px;
	margin: 14px auto 0;
}
#contentInner {
	margin-bottom: 160px;
}
#testimonialWrapper {
	position: absolute;
	bottom: 0;
}
#testimonial {
	margin-bottom: 0;
	height: 270px;
}
#testimonial h5 {
	font-size: 16px;
}
#testimonial h6 {
	line-height: 16px;
	font-size: 14px;
	margin-top: 10px;
	float: left;
}
#testimonialNav {
	margin-top: -280px;
	height: 220px;
}
#testimonialNav a {
	height: 255px;
}
#requestinfoWrapper {
	position: relative;
	margin-top: 0;
	height: 335px;
}
#requestinfo {
	padding-top: 0;
	margin-top: 0;
}
#requestinfoCTA {
	float: none;
	width: 80%;
	max-width: 80%;
	margin: 0 auto;
	padding-top: 20px;
}
#requestinfoForm ul {
	width: 100%;
}
#requestinfoForm li {
	display: block;
	width: 90%;
	margin-left: 5%;
	margin-right: 5%;
	margin-top: 3%;
}
#requestinfoForm input[type="submit"] {
	height: 44px;
}
#mobileRequestInfo {
	display: block;
	height: 45px;
	width: 100%;
	background-color: #cd0000;
	text-align: center;
	text-transform: uppercase;
}
#mobileRequestInfo a {
	color: #fff;
	font-size: 25px;
	width: 100%;
	display: block;
	padding: .2em;
}
#top_admin_bar {
	display: none;	
}
}
/*  Wide Mobile Layout: 480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {

}
@media screen and (max-width: 600px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
	}

	.main-navigation ul {
		display: none;
	}
}
@media only screen and (max-width: 1200px) {
	li#menu-item-62 {
		display: none;
	}
}
@media only screen and (min-width: 1025px) {
	#footerNavLink a:hover {
		background-color: #333;
		opacity: .7;
	}
}
@media only screen and (min-width: 1200px) {
	li#menu-item-62 {
		display: inline;
	}
}
@media only screen and (min-width: 1300px) {
	#footerNav {
		max-width: 1280px;
	}
	#footerNav aside {
		margin: 0;
		width: 212px;
	}
	#footerNav aside:first-child {
		margin-left: 4px;
	}
	#footerNav aside:last-child {
		margin-left: 4px;
	}
}
.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: 0;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 1.4rem;
	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;
}

/* 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 {
	display: block;
}

/*--------------------------------------------------------------
13. Cube Portfolio
--------------------------------------------------------------*/
.cbp-popup-singlePageInline {
    background: rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
}
.cbp-popup-singlePageInline .cbp-popup-content {
    min-height: 80px !important;
    width: 100%;
}
.cbp-popup-content {
	padding: 20px 60px 20px 30px;
}

/* Slider Fix */

.tp-rightarrow.preview1 .tp-arr-imgholder {transform: rotateY(-92deg) !important;}
.tp-leftarrow.preview1 .tp-arr-imgholder {transform: rotateY(-93deg) !important;}

/* IE 9 & 10 Hacks */
@media screen and (min-width:0\0) {
	/*#testimonialWrapper {margin-bottom: 92px;}*/
}

/* Firefox fixes */