@charset "UTF-8";

/* CSS Document */
@import url("/static/webfonts/SourceSansPro_Regular/stylesheet.css");
@import url("/static/webfonts/SourceSansPro_Semibold/stylesheet.css");
@import url("/static/webfonts/oswald_regular/stylesheet.css");
@import url("/static/webfonts/oswald_light/stylesheet.css");
@import url("../webfonts/SourceSansPro_Black/stylesheet.css");

/*
Teal #00828d
Red #b73b4f
Green #3c4014
Yellow #cf8742
Purple #5f4782
*/

#contactForm body {
    background-color: transparent;
}

img, object, embed, video {
	max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}
img {
	border: none;
	outline: none;
}
hr {
	clear:left;
}
a:active {
    outline:none;
}
a:link, a:visited {
	color: #00828d;
	text-decoration: none;
}
a:hover, a:active {
	color: #000;
}
/*
a {
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
}
*/

/* Bounce Stuff */
.bounceit {
	margin-top: 50px;
	width: 100%;
	text-align:center;
	bottom: 0px;
	animation: bounce 1s infinite alternate;
	-webkit-animation: bounce 1s infinite alternate;
	position: absolute;
}
@keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}

/*Page Fade In*/
	/* make keyframes that tell the start state and the end state of our object */
	@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
	@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
	@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
	
@media screen {
	.bodyGoods {
	  opacity:0;  /* make things invisible upon start */
	  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	  -moz-animation:fadeIn ease-in 1;
	  animation:fadeIn ease-in 1;
	
	  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	  -moz-animation-fill-mode:forwards;
	  animation-fill-mode:forwards;
	
	  -webkit-animation-duration:1s;
	  -moz-animation-duration:1s;
	  animation-duration:1s;
	  
	  -webkit-animation-delay: 0.1s;
	  -moz-animation-delay: 0.1s;
	  animation-delay: 0.1s;
	}
	.bodyGoods.headerBox {
	  -webkit-animation-delay: 1s;
	  -moz-animation-delay: 1s;
	  animation-delay: 1s;
	}
	.bodyGoods.contetnBox, .bodyGoods.contetnBoxTop {
	  -webkit-animation-delay: 1.8s;
	  -moz-animation-delay: 1.8s;
	  animation-delay: 1.8s;
	}
	.bodyGoods.galleryphoto {
	  -webkit-animation-delay: 2.1s;
	  -moz-animation-delay: 2.1s;
	  animation-delay: 2.1s;
	}
	.bodyGoods.gallerythumbs {
	  -webkit-animation-delay: 2.4s;
	  -moz-animation-delay: 2.4s;
	  animation-delay: 2.4s;
	}
}
/*Page Fade End*/


/* Site Headers */

.lrgHdr, h1, .medHdr, h2, .smHdr, h3, .xsmHdr, h4, .xxsmHdr, h5, .xxxsmHdr, h6, form {
	color: #000000;
	font-weight: normal;
	line-height: normal;
	font-family: "oswald regular", "Oswald Regular Regular", sans-serif;
}
.lrgHdr, h1 {
	font-size: 2.7em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
.medHdr, h2 {
	font-size: 2.2em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.smHdr, h3 {
	font-size: 2em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.xsmHdr, h4 {
	font-size: 1.7em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
    color: #01828E;
}
.xxsmHdr, h5 {
	font-size: 1.4em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.xxxsmHdr, h6 {
	font-size: 1.2em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}

.bigfirstletter::first-letter {
	float: left;
	font-size: 4em;
	line-height: .8;
	padding-right: 6px;
	font-family: "SourceSansPro Black", "Source Sans Pro Black", sans-serif;
}
/* Content text */
.largeText {
	font-size: 1.2em;
}
.bodyText {
	font-size: 1em;
}
.medText {
	font-size: 1.1em;
}
.medRedText {
	font-size: 1.1em;
	color:#990002;
}
.smText {
	font-size: .9em;
}

/* Colored text */
/* Add these to the tinymce dropdown - /static/mezzanine/js/tinymce_setup.js - At about line 122 */
.textLtGray  {
	color: #939598;
}
.textWhite  {
	color: #FFFFFF;
}
.textTeal {
	color: #00828d;
}
.textRed {
	color: #b73b4f;
}
.textGreen {
	color: #3c4014;
}
.textYellow {
	color: #cf8742;
}
.textPurple {
	color: #5f4782;
}

/* Image Stuff */

.grayedImage { /* make all photos black and white ish */ 
    -webkit-filter: grayscale(70%);
    filter: grayscale(70%);
}
.sepiaImage{
    -webkit-filter: sepia(100%);
    filter: sepia(100%);
}
.saturateImage {
	-webkit-filter: saturate(300%);
    filter: saturate(300%);
}
.rotate15 {
    -ms-transform: rotate(-15deg); /* IE 9 */
    -webkit-transform: rotate(-15deg); /* Safari */
    transform: rotate(-15deg); /* Standard syntax */
}

/* Content Stuff */

body {
	/* Use .bodyGoods for <body> background styles */
	font-family: SourceSansProRegular, "SourceSansPro Regular", Arial;
	font-size: 15px;
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
}
.animatedParent {
	overflow-x: hidden;
}
p {
	padding-top: 0px;
	margin-top: 0px;
}

.alert {
	background-color: rgba(255,243,243,1.00);
	color: #B6292B;
	margin: 10px;
	padding: 8px 30px 8px 8px;
	text-shadow: 0px 0px 0px rgba(0,0,0,0.00);
}

.totopbutton {
	position: fixed;
	right: 10px;
	bottom: 20px;
	z-index: 9999;
	opacity: 0;
	-webkit-transition-timing-function: ease-in;
	transition-timing-function: ease-in;
    -webkit-transition: opacity 2s; /* Safari */
    transition: opacity 2s;
}
.totopbutton.sticky {
	opacity:1;
}
.totopbutton a {
	padding: 15px 23px;
	display: block;
	border: 1px solid #E1E1E1;
	border-radius: 50%;
}
.totopbutton a:link, .totopbutton a:visited {
	background-color: rgba(255,255,255,0.88);
	color:#CCC;
}
.totopbutton a:hover, .totopbutton a:active {
	background-color: rgba(255,255,255,0.98);
	color: #666 !important;
}


/*Bottom form popup*/
.bottomPopup {
	position: fixed;
	bottom: 0px;
	right: 30px;
	z-index: 1001;
	width: 219px;
}
.bottomPopupBttn {
	text-align: right;
	z-index: 60;
}
.bottomPopupBttn .btn {
	border-radius: 4px 4px 0px 0px;
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.60);
	box-shadow: 0px 0px 5px rgba(0,0,0,0.60);
}
.bottomPopupWindow {
	padding: 15px;
	background-color: #fff;
	border-left: 1px solid #989898;
	border-right: 1px solid #989898;
	border-bottom: 1px none #989898;
	border-top: 1px solid #989898;
}
.bottomPopupWindow textarea {
	width: 100% !important;
}


/*Right form Slideout*/
.rightPopup {
	position: fixed;
	top: 240px;
	right: 0px;
	z-index: 1001;
}
.rightPopupBttn {
	text-align: right;
	z-index: 60;
	-ms-transform: rotate(-90deg); /* IE 9 */
	-webkit-transform: rotate(-90deg); /* Safari */
	transform: rotate(-90deg);
	float: left;
	top: 0px;
	margin-right: -48px;
	margin-top: 44px;
}
.rightPopupBttn .btn {
	border-radius: 4px 4px 0px 0px;
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.60);
	box-shadow: 0px 0px 5px rgba(0,0,0,0.60);
}
.rightPopupWindow {
	padding: 15px;
	background-color: #fff;
	border-left: 1px solid #989898;
	border-right: 1px none #989898;
	border-bottom: 1px solid #989898;
	border-top: 1px solid #989898;
	float: left;
}
.rightPopupWindow .closebtn {
    font-size: 36px;
	display: none;
}
.rightPopupWindow textarea {
	width: 100% !important;
}
#rightslide {
	display: none;
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
}
#closeon {
	display: none;
}
#openon {
}



.container-fluid {
	padding-left:15px;
	padding-right:15px;
}
.bodyGoods {
	background-color: #343434;
}
.bodyGoods .viewnope {
	display: none;
}
.copyright {
	font-size: 10px;
	text-align: center;
	padding-top: 20px;
}
.headerFloater {
	width: 100%;
	position: absolute;
	z-index: 20;
	top: 0px;
}
.headerBox {
	background-color: #FFFFFF;
	color: #ffffff;
	padding-top: 5px;
	padding-bottom: 5px;
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.40);
	box-shadow: 0px 0px 8px rgba(0,5,0,0.38);
}
.phoneBox {
	text-align: right;
	margin-top: 9px;
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	z-index: 902;
	float: right;
	margin-right: 70px;
	font-family: "oswald regular", "Oswald Regular Regular", sans-serif;
}
.navbarBox {
	margin-top: -40px;
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	font-family: "oswald regular", "Oswald Regular Regular", sans-serif;
	font-size: 1.1em;
}
.navhours {
	border-top: 1px solid #DDD;
	border-bottom: 1px solid #DDD;
	padding-top: 8px !important;
	margin-bottom: 5px !important;
	margin-top: 5px !important;
	padding-left: 15px;
}
.navhours p {
	padding: 0px;
	margin: 0px;
}
.navsociallinks {
	padding-left: 15px;
}

/* -Growing underline-  for nav bar insert <span class="navline"></span> after text of link before the </a>*/
.navline {
    -webkit-transition: width .5s; /* Safari */
    transition: width .5s;
}
.p7PM3-14 a > .navline {
	display:block;
	height:2px;
	width:0%;
	margin-top:10px;
	margin-left:auto;
	margin-right:auto;
	background-color:rgba(0,0,0,1.00);
}
.p7PM3-14 a:hover > .navline {
	width:100%;
	background-color:rgba(0,0,0,1.00);
}
/* End -Growing underline- */

.logoBox {
	text-align: left;
	padding-right: 0px;
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	z-index: 902;
}
.logoBox img {
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
}
.logosizer {
	width: 43px;
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
}
.searchBox {
	padding-bottom: 15px;
	padding-top: 15px;
	display: none;
}
.searchBox form {
	text-align: center;
	float:none;
}
.searchBttn {
	color: #ffffff;
	background-color: #666666;
}
#searchinput {
	width: 100%;
}

/*Header Squish*/
.headerFloater.sticky {
}
.headerFloater.sticky .logoBox {
}
.headerFloater.sticky .logosizer {
}
.headerFloater.sticky .phoneBox {
}
.headerFloater.sticky .navbarBox {
}
.headerFloater.sticky .searchBox {
}
/*End Header Squish*/

.contentBox {
	background-color: #FFFFFF;
	padding-bottom: 30px;
	padding-top: 30px;
}

.sponsorsBox {
	padding-bottom: 50px;
	border-top: 1px solid #F4F4F4;
}
.testimonialsBox {
	padding-bottom: 50px;
	border-top: 1px solid #F4F4F4;
	text-align: center;
}
.testimonialsBox h6 {
	margin-bottom: 0px;
}
.contactBox {
	color: #FFFFFF;
	background-color: #00828d;
	font-family: "oswald regular", "Oswald Regular Regular", sans-serif;
	line-height: normal;
}
.contactInfoBox {
	color: #FFFFFF;
	background-color: rgba(0,0,0,0.00);
}
.contactInfoBox h1, .contactInfoBox h2, .contactInfoBox h3, .contactInfoBox h4, .contactInfoBox h5, .contactInfoBox h6 {
	color:#fff;
}
.contactInfoBox h6 {
	margin-bottom: 0px;
}
.contactInfoBox a:link, .contactInfoBox a:visited {
	font-weight: normal;
	color: #FFFFFF;
	text-decoration: none;
}
.contactInfoBox a:hover, .contactInfoBox a:active {
	font-weight: normal;
	color: #E1E1E1;
}
.contactInfoBox .form-group {
	margin-bottom:8px;
}
.contactInfoBox .form-group textarea {
	height: 75px;
}

.contactBox .mapBox {
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
	margin-bottom: -12px;
	overflow-y: hidden;
}
.contactBox .mapBox iframe {
}

/* --- Fixed background image (stays in place in div as page/content scrolls Note: DW can't handle it) --- */
.imageBox {
	background-image: url(/static/mainimages/newsBg.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	text-align: left;
	color: #000000;
	min-height: 300px;
	position: relative;
	background-color: #FFFFFF;
	background-size: cover;
}
.grayBox {
	background-color: #c1c1c1;
	color: #FFFFFF;
    text-align:center;
}
.tealBox {
	background-color: #00828d;
    text-align:center;
}
.redBox {
	background-color: #b73b4f;
    text-align:center;
}
.greenBox {
	background-color: #3c4014;
    text-align:center;
}
.yellowBox {
	background-color: #cf8742;
    text-align:center;
}
.purpleBox {
	background-color: #5f4782;
    text-align:center;
}

.routeBttn {
	position: absolute;
	right: 60px;
	margin-top: -44px;
	border-style: none;
	background-color: #FFFFFF;
	background-image: -webkit-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(213,213,213,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(213,213,213,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(213,213,213,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(255,255,255,1.00) 0%,rgba(213,213,213,1.00) 100%);
	font-family: "oswald regular", "Oswald Regular Regular", sans-serif;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	color: #00828d !important;
}
#routes .col-sm-2 {
	/*width: 20%;*/
	text-align: center;
	font-family: "oswald regular", "Oswald Regular Regular", sans-serif;
	color: #FFF;
	font-size: 1.3em;
	padding: 0px;
}
#routes a {
	display: block;
	padding: 15px;
}
#routes a:link, #routes a:visited {
	color: #FFF;
}
#routes a:hover, #routes a:active {
	color: #000;
}
.routeBttn b {
	color: #000 !important;
	font-weight: normal;	
}
.alertsignupBox {
}
.alertsignupBox img {
	padding-bottom: 20px;
	width: 100%;
}
.homenewsBox {
}
.homenewsBox .btn {
	margin-bottom: 20px;
}
.planTripBox {
	background-color: #FFFFFF;
	border-top: 1px solid #01818C;
	padding-top: 30px;
	padding-bottom: 30px;
}
.footerBox {
	color: #ffffff;
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: rgba(0,0,0,0.00);
}
.footerBox h1, .footerBox h2, .footerBox h3, .footerBox h4, .footerBox h5, .footerBox h6 {
	color: #ffffff;
}
.footerBox a:link, .footerBox a:visited {
	font-weight: normal;
	color: #FFF;
	text-decoration: none;
}
.footerBox a:hover, .footerBox a:active {
	font-weight: normal;
	color: #CCC;
}
.footerText {
	text-align: center;
	padding-top: 30px;
	padding-bottom: 0px;
}
.footerNav {
	display: none;
	font-family: "oswald regular", "Oswald Regular Regular", sans-serif;
}
.footerNav li {
	padding-right: 18px;
	margin-bottom: 8px;
	display: inline;
}
.footerNav li:last-of-type {
	border-right: none;
}
.footerNav ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
.footerNav ul li ul {
	display: none;
}


.sociallinksBox {
	margin-bottom: 10px;
	text-align: center;
}
.sociallinksBox img {
	margin-left: 3px;
	margin-right: 3px;
	margin-bottom: 8px;
}
/* For FontAwesome icons */
.sociallinksBox a, .p7AMM.amm-responsive .sociallinksBox a {
	display: inline-block !important;
	border-radius: 50% !important;
	margin-right: 3px !important;
	margin-left: 3px !important;
	text-align: center !important;
	color: #FFFFFF !important;
	width: 35px !important;
	height: 35px !important;
	padding: 7px 0px 0px 0px !important;
	font-size: 20px !important;
	line-height: 20px !important;
}
.sociallinksBox a:last-of-type {
	margin-right: 0px;
}
.sociallinksBox a:first-of-type {
	margin-left: 0px;
}
.sociallinksBox a:link, .sociallinksBox a:visited {
	background-color: #b73b4f;
	color: #FFFFFF;
}
.sociallinksBox a:hover, .sociallinksBox a:active {
	background-color: #00828d;
	color: #FFFFFF;
}
.topsociallinks {
}
.topsociallinks a {
	color: #FFFFFF;
}
.topsociallinks a:link, .topsociallinks a:visited {
	background-color: #00828d;
}
.topsociallinks a:hover, .topsociallinks a:active {
	background-color: #b73b4f;
}

/*To make the top phone number look like a button matching icons buttons */
.phonebutton a {
	display: inline-block;
	border-radius: 20px;
	margin-right: 3px;
	margin-left: 3px;
	text-align: center;
	color: #FFFFFF;
	height: 35px;
	padding-top: 7px;
	padding-right: 10px;
	padding-left: 10px;
	font-size: 20px;
	line-height: 20px;
	border: solid 1px #fff;
	vertical-align: top;
}
.phonebutton a:link, .phonebutton a:visited {
	background-color: #000000;
	color: #FFFFFF;
}
.phonebutton a:hover, .phonebutton a:active {
	background-color: #CCCCCC;
	color: #FFFFFF;
}

/* for image icon with font-awesome icons */
.sociallinksBox a.nope {
	display: inline-block;
	border-radius: none;
	width: auto;
	height: auto;
	padding-top: 7px;
	border: none;
}

.mapBox {
	text-align: center;
	background-repeat: no-repeat;
	background-position: center center;
}
.addressBox {
	padding-top: 16px;
	padding-bottom: 0px;
	text-align: center;
	color: #FFF;
}
.addressBox p:last-of-type {
	padding-bottom: 0px;
	margin-bottom:0px;
}
#contentLeft {
	padding-bottom: 20px;
}
#sidebarBox {
	border-top: 1px solid #CDCDCD;
	padding-top: 20px;
}
.sidebarNav {
}
.sidebarNav ul {
	list-style-type: none;
	border-bottom: 1px solid #E9E9E9;
	margin-left: 0px;
	padding-left: 0px;
}
.sidebarNav li {
	border-top: 1px solid #E9E9E9;
}
.sidebarNav a {
	padding: 6px 10px;
	display:block;
}
.sidebarNav a:hover, .sidebarNav a:active {
	background-color: rgba(102,152,174,0.25);
	text-decoration:none;
	color:#333333;
}
.sidebarNav .active a {
	background-color: rgba(0,0,0,0.15);
	color: #FFFFFF;
}
.photoLeft {
	padding-bottom:10px;
	display:block;
}
.photoRight {
	padding-bottom:10px;
	display:block;
}
#contentLeft .photoLeft, #contentRight .photoLeft, #contentmiddle .photoLeft {
}
#contentLeft .photoRight, #contentRight .photoRight, #contentmiddle .photoRight {
}
#sidebarLeftBox {
	border-bottom: 1px solid #CDCDCD;
	padding-bottom: 20px;
}
#contentRight {
	padding-top: 20px;
}
#leftsidebar {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #CDCDCD;
}
#contentmiddle {
}
#rightsidebar {
	border-top: 1px solid #CDCDCD;
	padding-top: 20px;
	margin-top: 20px;
}

/*--Static image/text boxes--*/
.photoRowBox {
	text-align: center;
	margin-bottom: 20px;
}
.photoRowBox a:link, .photoRowBox a:visited {
	color: #000;
}
.photoRowBox a:active, .photoRowBox a:hover {
	color: #00828d;
}
.photoRowBox:last-of-type {
	margin-bottom: 0px;
}
.photoRowCaption {	
	padding-top:10px;
}
.photoRowPhoto {
	transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
}
.photoRowPhoto img {
}
.photoRowBox a:hover .photoRowPhoto {
    -ms-transform: rotate(5deg); /* IE 9 */
    -webkit-transform: rotate(5deg); /* Safari */
    transform: rotate(5deg); /* Standard syntax */
}

/*--Animated image/text boxes--*/
.aniphotoRowBox {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	text-align: center;
	margin-bottom: 20px;
}
.aniphotoRowBox:last-of-type {
	margin-bottom: 0px;
}
.aniphotoRowBox a  {
	color: #FFFFFF;
}
.aniphotoRowCaption {
	transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding-top: 10px;
	width: 100%;
	margin-left: -15px;
	height:auto;
}
.aniphotoRowCaption h5 {
	color: #FFFFFF;
	font-size:1.6em;
	transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	margin-top:15px;
	margin-bottom:0px;
}
.aniphotoRowCaption .bttmtext {
	transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	padding:0px;
	margin:0px;
	opacity:0;
	width:75%;
	margin-left:auto;
	margin-right:auto;
	line-height:0em;
}
.aniphotoRowPhoto {
	background-color:#000000;
}
.roundimages {
	border-radius: 50%;
}
.roundimages img {
	border-radius: 50%;
}
.aniphotoRowPhoto img {
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	width:100%;
	opacity:.8;
}
.aniphotoRowBox a:hover .aniphotoRowPhoto img {
	opacity:.4;
}
.aniphotoRowBox a:hover .aniphotoRowCaption h5 {
	margin-top:0px;
	margin-bottom:5px;
}
.aniphotoRowBox a:hover .aniphotoRowCaption .bttmtext {
	opacity:1;
	line-height:1.2em;
}

#photoGalleryBox {
}
#photoGalleryBox .photoRowBox {
}
#photoGalleryBox .photoRowPhoto img {
}

.twoCol1 {
}
.twoCol2 {
}

/* -- Home Slider Stuff -- */
.rotationBox {
	margin-top: 41px;
}
.rotationbg {
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
}
.rotationbg2 img {
    display:none;
}
.rotationbg2 {
    margin-bottom:40px;
}
.home-slick {
	background-color: #000000;
}
.home-slick img {
	width:100%;
	opacity:.7;
}
.slidercaption {
	padding: 15px 15px 35px;
	background-color: rgba(0,0,0,1.00);
	text-align: center;
	color: #FFF;
	text-shadow: 0px 0px 8px rgba(0,0,0,0.40);
}
.slidercaption img {
	width:auto;
	opacity:1;
}
.slidercaption .btn {
	text-shadow:none;
}
.slidercaption h1, .slidercaption h2, .slidercaption h3, .slidercaption h4, .slidercaption h5, .slidercaption h6 {
	color:#FFF;
}
.captionwidth {
}
.rotationStaticBox {
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
}

/* -- Splits content into columns at diferent screen sizes -- */
.columnsSplitter {
}
.columnsSplitter p {
	 /* class to restrict breaking on */
    break-inside: avoid-column;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    overflow: hidden; /* optional */
    display:block; /* optional */
}

/*See more at: http://avexdesigns.com/responsive-youtube-embed/#sthash.az9oS8bv.dpuf */ 
.video-container {
    position: relative;
    /*padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;*/
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}



.galleryheader {
	text-align:center;
}
.gallerynav {
	/* [disabled]padding-bottom: 40px; */
	padding-top: 30px;
	font-size: 0.9em;
}
.galleryphoto {
	text-align: center;
}
.galleryphoto img {
	margin-right:auto;
	margin-left:auto;
	width:100%;
}
.galleryphoto button {
}
.gallerythumbs {
	display:none;
}
.gallerythumbs img {
	/*min-height: 180px;*/
}
.gallerythumbs div {
	/*min-height: 180px;*/
	margin-right:3px;
	margin-left:3px;
}
.gallerythumbs .slick-dots {
}
.gallerythumbs .slick-current {
	border:4px solid #1E1E1E;
}
@media (min-width: 415px) {
.galleryphoto {
}
.galleryphoto img {
}
.galleryphoto button {
	display:none !important;
}
.gallerythumbs {
	display:block;
	padding-top: 0px;
}
}
.form-content-box {
	padding-top: 20px;
}
.form-left-col {
	padding-top: 20px;
    background-color:#B2DDDB;
    border-radius:20px;
}
.form-right-col {
	padding-top: 20px;
	text-align: center;
}
.product-list {
}
.product-thumb {
	padding-bottom: 15px;
}
.tealCallout {
    background-color:#01828E !important;
    background:url("/static/mainimages/final256-family.png");
    background-position: top 15px center;
    background-size:65%;
    background-repeat: no-repeat;
    opacity: 0.7;
    padding:15px;
    padding-top: 150px !important;
    color:#FFFFFF !important;
    font-size:125%;
    border-radius:20px;
    margin:15px;
}
.purpleCallout {
    background-color:#460A71 !important;
    background:url("/static/mainimages/bus.png");
    background-position: top 15px right 15px;
    background-size:30%;
    background-repeat: no-repeat;
    opacity: 0.7;
    padding:15px;
    padding-top: 100px !important;
    color:#FFFFFF !important;
    font-size:125%;
    border-radius:20px;
    margin:15px 0px;
}
.brownCallout {
    background-color:#E77F00 !important;
    background:url("/static/mainimages/people.png");
    background-position: bottom -28px right 15px;
    background-size:35%;
    background-repeat: no-repeat;
    opacity: 0.7;
    padding:15px;
    padding-top:30px;
    color:#FFFFFF !important;
    font-size:125%;
    border-radius:20px;
    margin:15px 0px;
}
.tealCallout h1,.tealCallout h2,.tealCallout h3,.tealCallout h4,.tealCallout h5,.tealCallout h6,.purpleCallout h1,.purpleCallout h2, .purpleCallout h3,.purpleCallout h4,.purpleCallout h5,.purpleCallout h6,.brownCallout h1,.brownCallout h2,.brownCallout h3,.brownCallout h4,.brownCallout h5,.brownCallout h6 {
    color:white !important;
}
.tealCallout a:link, .purpleCallout a:link, .brownCallout a:link, .tealCallout a:active, .purpleCallout a:active, .brownCallout a:active {
	color:#FFFFFF !important;
	text-decoration:none;
}
.tealCallout a:hover, .purpleCallout a:hover, .brownCallout a:hover {
	color: antiquewhite !important;
	text-decoration:none;
}


@media (min-width: 768px) {
body {
}
.animatedParent {
	overflow-x: inherit;
}
.hidden-xs {
  display: inline !important;
}
.bodyGoods {
}
.copyright {
	text-align: left;
	padding-top: 10px;
}
.headerFloater {
	position: fixed;
}
.headerBox {
	padding-bottom: 15px;
	padding-top: 15px;
}
.phoneBox {
	text-align: center;
	font-size: 1.4em;
	margin-top: 38px;
	margin-right: 0px;
	float: left;
}
.navbarBox {
	margin-bottom: 0px;
	margin-top: 31px;
}
.logoBox {
	text-align: left;
}
.logoBox img {
}
.logosizer {
	width: 90px;
}
.searchBox {
	display: block;
	padding-top: 0px;
	padding-bottom: 0px;
}
/*Header Squish*/
.headerFloater.sticky {
}
.headerFloater.sticky .headerBox {
	padding-top: 5px;
	padding-bottom: 5px;
}
.headerFloater.sticky .logoBox {
}
.headerFloater.sticky .logosizer {
	width: 70px;
}
.headerFloater.sticky .phoneBox {
	margin-top: 25px;
}
.headerFloater.sticky .navbarBox {
	margin-top: 18px;
	padding-bottom:0px;
	padding-top:0px;
}
.headerFloater.sticky .topsociallinks {
	margin-top: -12px;
}
/*End Header Squish*/
.contentBox {
	padding-top: 40px;
	padding-bottom: 40px;
}
.contactInfoBox {
	font-size: 1.1em;
}
.sponsorsBox {
	padding-top: 30px;
	padding-left: 30px;
	padding-right: 30px;
}
.imageBox {
}
.grayBox {
    padding-top: 30px !important;
    padding-bottom:30px !important;
}
#routes .col-sm-2 {
	width: 20%;
}
.alertsignupBox {
}
.alertsignupBox img {
	padding-bottom: 0px;
	width: auto;
}
.homenewsBox {
    padding-top:30px !important;
    padding-bottom: 30px !important;
}
.homenewsBox .btn {
	margin-bottom: 0px;
}
.planTripBox {
}
.footerBox {
	padding-bottom: 30px;
}
.footerText {
	padding-top: 0px;
	text-align: left;
}
.footerNav {
	display: block;
	text-align: left;
	padding-top: 6px;
}
.sociallinksBox {
	text-align: right;
	margin-top: 0px;
	margin-bottom: 0px;
}
.sociallinksBox img {
}
.topsociallinks {
	text-align: right;
	position: absolute;
	margin-top: -2px;
	margin-bottom: 0px;
	padding-right: 30px;
	left: 0px;
}
.mapBox {
	text-align: left;
}
.contactBox .mapBox {
	text-align: center;
	padding-left: 15px;
	padding-right: 0px;
}
.addressBox {
	text-align: left;
	font-size: 1.1em;
	padding-top: 0px;
}
.contactBox .addressBox {
	padding-left: 25px;
}
#contentLeft {
	padding-bottom: 0px;
}
#sidebarBox {
	padding-top: 0px;
	border-top-style: none;
	border-left: 1px solid #CDCDCD;
	padding-left: 20px;
}
.sidebarNav {
}
.sidebarNav ul {
}
.sidebarNav li {
}
.photoLeft {
	padding-right: 20px;
	padding-bottom: 10px;
	float: left;
}
.photoRight {
	padding-bottom: 10px;
	padding-left: 20px;
	float: right;
}
#contentLeft .photoLeft, #contentRight .photoLeft, #contentmiddle .photoLeft {
	padding-right: 0px;
	padding-bottom: 10px;
	float: none;
}
#contentLeft .photoRight, #contentRight .photoRight, #contentmiddle .photoRight {
	padding-bottom: 10px;
	padding-left: 0px;
	float: none;
}
#leftsidebar {
	border-top-style: none;
	border-right: 1px solid #CDCDCD;
	border-bottom-style: none;
	padding-right: 20px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}
#contentmiddle {
}
#rightsidebar {
	padding-left: 20px;
	border-left: 1px solid #CDCDCD;
	margin-top: 0px;
	border-top-style: none;
	padding-top: 0px;
}
#sidebarLeftBox {
	border-right: 1px solid #CDCDCD;
	border-bottom-style: none;
}

#contentRight {
	padding-top: 0px;
}
.photoRowBox {
	margin-bottom: 0px;
}
.aniphotoRowBox {
	margin-bottom: 0px;
}
.twoCol1 {
}
.twoCol2 {
}
.rotationBox {
	margin-top: 129px;/* Don't use negative margins here- breaks rotation in firefox/chrome */
}
.rotationStaticBox {
	margin-top: -20%;
	display: block;
	position: absolute;
}
.home-slick {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.slidercaption {
	position: absolute;
	/* [disabled]top: 40%; */
	/* [disabled]transform: translateY(-50%); */
	font-size: 1.3em;
	text-align: left;
	width: 100%;
	padding: 0px;
	background-color: rgba(0,0,0,0.00);
	bottom: 0px;
	background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.74) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.74) 100%);
	background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.74) 100%);
	background-image: linear-gradient(180deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.74) 100%);
}
.slidercaption img {
	visibility:visible;
	width:auto !important;
}
.captionwidth {
	padding-left: 60px;
	width: 75%;
	padding-bottom: 50px;
	padding-top: 20px;
}

.columnsSplitter {
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
	-webkit-column-gap: 15px; /* Chrome, Safari, Opera */
    -moz-column-gap: 15px; /* Firefox */
    column-gap: 15px;
}
.columnsSplitter p {
	 /* class to restrict breaking on */
    break-inside: avoid-column;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    overflow: hidden; /* optional */
    display:block; /* optional */
}
.galleryheader {
	text-align:left;
}
.gallerynav {
}
.galleryphoto {
}
.galleryphoto img {
}
.gallerythumbs {
}
.form-content-box {}
.form-left-col {}
.form-right-col {	
	float:right;
	text-align: left;
	padding-left: 50px;
}
.product-list {
}
.product-thumb {
	padding-bottom: 15px;
}
}

@media (min-width: 992px) {
body {
}
.bodyGoods {
}
.copyright {
}
.headerFloater {
}
.headerBox {
	padding-left: 20px;
	padding-right: 20px;
}
.phoneBox {
}
.navbarBox {
}
.logoBox {
}
.logosizer {
}
.searchBox {
}
/*Header Squish*/
.headerFloater.sticky {
}
.headerFloater.sticky .logoBox {
}
.headerFloater.sticky .logosizer {
}
.headerFloater.sticky .phoneBox {
}
.headerFloater.sticky .navbarBox {
}
.headerFloater.sticky .searchBox {
}
/*End Header Squish*/
.contentBox {
	padding-top: 50px;
	padding-bottom: 50px;
}
.contentBox ul li {
    padding-bottom:10px !important;
}
.sponsorsBox {
	padding-top: 30px;
}
.homenewsBox {
}
.imageBox {
}
.grayBox {
}
.planTripBox {
}
.footerBox {
	padding-bottom: 30px;
}
.footerText {}
.footerNav {
}
.sociallinksBox {
}
.sociallinksBox img {
}
.topsociallinks {
}
.addressBox {
}
.contactBox .addressBox {
	padding-left: 35px;
}
#contentLeft {
}
#sidebarBox {
}
.sidebarNav {
}
.sidebarNav ul {
}
.sidebarNav li {
}
.photoLeft {
	padding-right: 20px;
	padding-bottom: 10px;
	float: left;
}
.photoRight {
	padding-bottom: 10px;
	padding-left: 20px;
	float: right;
}
#contentLeft .photoLeft, #contentRight .photoLeft, #contentmiddle .photoLeft {
	padding-right: 20px;
	padding-bottom: 10px;
	float: left;
}
#contentLeft .photoRight, #contentRight .photoRight, #contentmiddle .photoRight {
	padding-bottom: 10px;
	padding-left: 20px;
	float: right;
}
#leftsidebar {
	padding-right: 20px;
	border-right: 1px solid #CDCDCD;
}
#contentmiddle {
}
#rightsidebar {
	padding-left: 20px;
	border-left: 1px solid #CDCDCD;
	margin-top: 0px;
	border-top-style: none;
	padding-top: 0px;
}
#sidebarLeftBox {
	padding-right: 30px;
}
#contentRight {
	padding-top: 0px;
}
.twoCol1 {
}
.twoCol2 {
}
.rotationBox {
/* Don't use negative margins here- breaks rotation in firefox/chrome */
}
.rotationStaticBox {
	/* [disabled]margin-top: -23%; */
}

.slidercaption {
}
.slidercaption img {
	width:auto !important;
}
.captionwidth {
	width: 85%;
}

.columnsSplitter {
    -webkit-column-count: 3; /* Chrome, Safari, Opera */
    -moz-column-count: 3; /* Firefox */
    column-count: 3;
	-webkit-column-gap: 15px; /* Chrome, Safari, Opera */
    -moz-column-gap: 15px; /* Firefox */
    column-gap: 15px;
}
.columnsSplitter p {
	 /* class to restrict breaking on */
    break-inside: avoid-column;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    overflow: hidden; /* optional */
    display:block; /* optional */
}
.galleryheader {
}
.gallerynav {
}
.galleryphoto {
}
.galleryphoto img {
}
.gallerythumbs {
}
.form-content-box {}
.form-left-col {}
.form-right-col {}
	.product-list {
}
.product-thumb {
}
}
.border {
        border: 1px solid #00828d;
    }

    .padding {
        padding: 30px;
    }

    .margin-top {
        margin-top: 20px !important;
    }

    .margin-bottom {
        margin-bottom: 20px !important;
    }

    /* plus glyph for showing collapsible panels */
    .panel-heading .accordion-plus-toggle:before {
        font-size: 1.2em;
        font-weight: bold;
        content: "+";
        float: right;
        color: silver;
    }

    .panel-heading .accordion-plus-toggle.collapsed:before {
        font-size: 1.2em;
        font-weight: bold;
        content: "-";
        color: silver;
    }

    /* arrow glyph for showing collapsible panels */
    .panel-heading .accordion-arrow-toggle:before {
        font-size: 1.2em;
        font-weight: bold;
        content: "+";
        float: right;
        color: silver;
    }

    .panel-heading .accordion-arrow-toggle.collapsed:before {
        font-size: 1.2em;
        font-weight: bold;
        content: "-";
        color: silver;
    }

    /* sets the link to the width of the entire panel title */
    .panel-title > a {
        display: block;
    }

    .panel-heading {
        background-color: #00828d !important;
    }

    .panel-title > a {
        color: #ffffff;
        font-weight: bold;
    }

    .panel-title {
        margin-bottom: 5px;

    }
#tinymce {
	padding: 30px !important;
}

@media (min-width: 1200px) {
body {
}
.bodyGoods {
}
.copyright {
}
.headerFloater {
}
.headerBox {
}
.phoneBox {
}
.navbarBox {
}
.logoBox {
}
.logosizer {
}
.searchBox {
}
/*Header Squish*/
.headerFloater.sticky {
}
.headerFloater.sticky .logoBox {
}
.headerFloater.sticky .logosizer {
}
.headerFloater.sticky .phoneBox {
}
.headerFloater.sticky .navbarBox {
}
.headerFloater.sticky .searchBox {
}
/*End Header Squish*/
.contentBox {
	padding-top: 60px;
	padding-bottom: 60px;
}
.sponsorsBox {
	padding-top: 30px;
}
.imageBox {
}
.grayBox {
}
.planTripBox {
}
.footerBox {
	padding-bottom: 30px;
}
.footerText {}
.footerNav {
}
.sociallinksBox {
}
.sociallinksBox img {
}
.topsociallinks {
}
.addressBox {
}
.contactBox .addressBox {
	padding-left: 50px;
}
#contentLeft {
}
#sidebarBox {
}
.sidebarNav {
}
.sidebarNav ul {
}
.sidebarNav li {
}
.photoLeft {
}
.photoRight {
}
#contentLeft .photoLeft, #contentRight .photoLeft, #contentmiddle .photoLeft {
}
#contentLeft .photoRight, #contentRight .photoRight, #contentmiddle .photoRight {
}
#leftsidebar {
}
#contentmiddle {
}
#rightsidebar {
}
#sidebarLeftBox {
}
#contentRight {
}
.twoCol1 {
}
.twoCol2 {
}
.rotationBox {
/* Don't use negative margins here- breaks rotation in firefox/chrome */
}
.rotationStaticBox {
	/* [disabled]margin-top: -23%; */
}

.slidercaption {
}
.slidercaption img {
	width:auto !important;
}
.captionwidth {
}

.columnsSplitter {
    -webkit-column-count: 4; /* Chrome, Safari, Opera */
    -moz-column-count: 4; /* Firefox */
    column-count: 4;
	-webkit-column-gap: 15px; /* Chrome, Safari, Opera */
    -moz-column-gap: 15px; /* Firefox */
    column-gap: 15px;
}
.columnsSplitter p {
	 /* class to restrict breaking on */
    break-inside: avoid-column;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    overflow: hidden; /* optional */
    display:block; /* optional */
}
.galleryheader {
}
.gallerynav {
}
.galleryphoto {
}
.galleryphoto img {
}
.gallerythumbs {
}
.form-content-box {}
.form-left-col {}
.form-right-col {}
.product-list {
}
.product-thumb {
}
}


/* -- Removes the div height matching -- */
@media only screen and (min-width: 0px) and (max-width: 770px) {
	
#sidebarBox, #rightsidebar, #leftsidebar, #sidebarLeftBox, #contentLeft, #contentRight, .productThumbs, .mapBox iframe, .contactInfoBox, .listingthumbs {
	height: auto !important;
	max-height: 888678px;
}
	
}
/*@media only screen and (min-width: 581px) and (max-width: 769px) {
	
#rightsidebar {
	height: auto !important;
	max-height: 888678px;
}
	
}
*/


/*Bootstrap-ish CSS*/

.table {
	background-color:#ffffff;
}
/*Stacks table td for mobile sites and makes xs buttons bigger*/
@media (max-width: 768px) {
	.table td {
		display:block;
	}
	.table tr {
		display:block;
	}
	.table th {
		display:none;
	}
	.table .btn-xs {
		width:100%;
		font-size:1.3em;
		padding-top:8px;
		padding-bottom:8px;
	}
}


/*Custom table styles*/
.table-custom {
	border: 1px solid #EAEAEA;
	font-size: 0.9em;
	margin-bottom:20px;
    width:100% !important;
    height:auto !important;
}
.table-custom .active td {
	background-color: #E3E3E3 !important;
	font-family: "Roboto Regular", sans-serif;
	text-transform: uppercase;
}
.table-custom td, .table-custom th {
	text-align: center;
	border-bottom: 1px solid #EAEAEA;
    width:auto !important;
    height:auto !important;
}
.table-custom tr td:first-of-type, .table-custom tr th:first-of-type {
	border-left: none;
	text-align:left !important;
	padding:4px 0px 4px 10px;
}
.table-custom tr td:nth-child(even){ 
		background: #E4E4E4;
}
.table-custom tr {
    width:auto !important;
}
.table-custom thead {
	background-color: #00828D;
}
.table-custom th {
	font-family: "Roboto Bold", sans-serif;
	text-align: center;
	text-transform: uppercase;
	color: #FFF;
}
.table-custom a {
	font-family: "Roboto Bold", sans-serif;
}
.table-custom a:link, .table-custom a:visited  {
	color: #222;
}
.table-custom a:hover, .table-custom a:active  {
	color: #4FA14D;
}



/*Form Stuff*/
.mezzanine-form .help-block {
	display: none; /* Hides help text */
	font-size: 0.8em;
}
.control-label {
	display:inline;
	font-size: 0.9em;
    font-family: SourceSansProRegular, "SourceSansPro Regular", Arial;
    font-weight:normal !important;
}
.alertsignupBox .control-label {
    color: #FFFFFF !important;
}
.charfield label, .emailfield label, .floatfield label {
	display:none;   /* Hides the form lable */
}
.choicefield label, .choicefield > ul, .multiplechoicefield label, .multiplechoicefield > ul {
    display: inline-block;
    color: #555555;
	font-size: 0.95em;
    font-family: SourceSansProRegular, "SourceSansPro Regular", Arial;
    font-weight:normal;
}
.choicefield > ul > li:first-child {
    margin-left:4px;
}
.container textarea {
    height:100px !important;
}
.container input [type="checkbox"] {
    display:inline !important;
    margin: 4px 0 0 10px !important;
}
.form-group > input[type="text"],
.form-group > input[type="password"],
.form-group > input[type="datetime"],
.form-group > input[type="datetime-local"],
.form-group > input[type="date"],
.form-group > input[type="month"],
.form-group > input[type="time"],
.form-group > input[type="week"],
.form-group > input[type="number"],
.form-group > input[type="email"],
.form-group > input[type="url"],
.form-group > input[type="search"],
.form-group > input[type="tel"],
.form-group > input[type="color"],
.form-group > select,
.form-group > textarea {
	width: 100%;
	max-width: 100%;
	background-color: #ffffff;
    font-family: SourceSansProRegular, "SourceSansPro Regular", Arial;
    font-weight:normal;
}
.form-actions {
  background-color: transparent;
  border-top: none;
  padding: 0px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.has-error .form-control {
	background-color: #EFD7D6 !important;
}
/* Trageted Form Styles (Use the embed page name for id)  */


/* Button Stuff */

.btn-sitefont {
	font-family: cmtiempo, "CM Regular", "Times New Roman Bold", serif;
	font-size: 1.2em;
    border-color: transparent !important;
}

.price {
	font-size:1.2em;
}
.old-price {
}

legend {
  color: #666666;
}

/* Custom Button Colors */
/* Duplicate this set of styles to add a new "bootstrap" button */

/*Fix for link color*/
.btn-default:link, .btn-default:visited {
  color: #333;
}
.btn-info:link, .btn-primary:link, .btn-success:link, .btn-warning:link, .btn-danger:link {
  color: #FFF !important;
}
.btn-info:visited, .btn-primary:visited, .btn-success:visited, .btn-warning:visited, .btn-danger:visited {
  color: #FFF !important;
}

/*Master Button*/
/*
Teal #00828d
Red #b73b4f
Green #3c4014
Yellow #cf8742
Purple #5f4782
*/

.btn-sitecolor:link, .btn-sitecolor a:link {
  color: #FFF !important;
}
.btn-sitecolor:visited, .btn-sitecolor a:visited {
  color: #FFF !important;
}
.btn-sitecolor {
	color: #FFFFFF;
	background-color: #b73b4f;
	border-color: #b73b4f;
	font-family: "oswald regular", "Oswald Regular Regular", sans-serif;
	padding-left: 25px;
	padding-right: 25px;
}

.btn-sitecolor:hover,
.btn-sitecolor:focus,
.btn-sitecolor:active,
.btn-sitecolor a:hover,
.btn-sitecolor a:focus,
.btn-sitecolor a:active,
.btn-sitecolor.active,
.open .dropdown-toggle.btn-sitecolor {
	color: #FFFFFF;
	background-color: #00828d;
	border-color: #00828d;
}

.btn-sitecolor:active,
.btn-sitecolor.active,
.open .dropdown-toggle.btn-sitecolor {
  background-image: none;
}

.btn-sitecolor.disabled,
.btn-sitecolor[disabled],
fieldset[disabled] .btn-sitecolor,
.btn-sitecolor.disabled:hover,
.btn-sitecolor[disabled]:hover,
fieldset[disabled] .btn-sitecolor:hover,
.btn-sitecolor.disabled:focus,
.btn-sitecolor[disabled]:focus,
fieldset[disabled] .btn-sitecolor:focus,
.btn-sitecolor.disabled:active,
.btn-sitecolor[disabled]:active,
fieldset[disabled] .btn-sitecolor:active,
.btn-sitecolor.disabled.active,
.btn-sitecolor[disabled].active,
fieldset[disabled] .btn-sitecolor.active {
	background-color: #CCCCCC;
	border-color: #CCCCCC;
}

.btn-sitecolor .badge {
  color: #ffffff;
  background-color: #333333;
}

.btn-sitecolor2:link, .btn-sitecolor2 a:link {
  color: #FFF !important;
}
.btn-sitecolor2:visited, .btn-sitecolor2 a:visited {
  color: #FFF !important;
}
.btn-sitecolor2 {
	color: #FFFFFF;
	background-color: #00828d;
	border-color: #00828d;
	font-family: "oswald regular", "Oswald Regular Regular", sans-serif;
}

.btn-sitecolor2:hover,
.btn-sitecolor2:focus,
.btn-sitecolor2:active,
.btn-sitecolor2 a:hover,
.btn-sitecolor2 a:focus,
.btn-sitecolor2 a:active,
.btn-sitecolor2.active,
.open .dropdown-toggle.btn-sitecolor2 {
	color: #FFFFFF;
	background-color: #b73b4f;
	border-color: #b73b4f;
}

.btn-sitecolor2:active,
.btn-sitecolor2.active,
.open .dropdown-toggle.btn-sitecolor2 {
  background-image: none;
}



.btn-sitecolor2 .badge {
  color: #ffffff;
  background-color: #333333;
}



.air-b {
	background-color: #000000 !important;
}
.fle {
	color: #157C78 !important;
}
.fle-b {
	background-color: #157C78 !important;
}
.beu {
	color: #3487A2 !important;
}
.beu-b {
	background-color: #3487A2 !important;
}
.cmtn {
	color: #B38600 !important;
}
.cmtn-b {
	background-color: #B38600 !important;
}
.int {
	color: #6F6E6E !important; /* 92E05C */
}
.int-b {
	background-color: #6F6E6E !important;
}
.lann {
	color: #400080 !important;
}
.lann-b {
	background-color: #400080 !important;
}
.tcx {
	color: #460A71 !important;
}
.tcx-b {
	background-color: #460A71 !important;
}
.tho {
	color: #9A800E !important;
}
.tho-b {
	background-color: #9A800E !important;
}
.felb {
	color: #157C78 !important;
}
.felb-b {
	background-color: #157C78 !important;
}
.hon {
	color: #084716 !important;
}
.hon-b {
	background-color: #084716 !important;
}

.btn-secondnav:link, .btn-secondnav a:link {
  color: #FFF !important;
}
.btn-secondnav:visited, .btn-secondnav a:visited {
  color: #FFF !important;
}
.btn-secondnav {
	color: #FFFFFF;
	border-color: transparent !important;
	font-family: "oswald regular", "Oswald Regular Regular", sans-serif;
	padding: 10px 15px;
	display:inline-block;
	margin:0;
}

.btn-secondnav:hover,
.btn-secondnav:focus,
.btn-secondnav:active,
.btn-secondnav a:hover,
.btn-secondnav a:focus,
.btn-secondnav a:active,
.btn-secondnav.active,
.open .dropdown-toggle.btn-secondnav {
	color: #FFFFFF;
	opacity: 0.8 !important;
	border-color: transparent;
}

.btn-secondnav:active,
.btn-secondnav.active,
.open .dropdown-toggle.btn-secondnav {
  background-image: none;
	border-color: transparent;
}

/*Master Button End*/

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.428571429;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
}

.thumbnail > img,
.thumbnail a > img {
  display: block;
  height: auto;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
	border-color: #C5C5C5;
	background-color: #ECECEC;
	text-decoration: none;
}

.thumbnail .caption {
  padding: 9px;
  color: #333333;
}

/*TARR CSS*/
.listPropertyImage {
}
.listPropertyText {
}
a .listPropertyText {
	color: #555;
}


.input-lg {
  height: 46px !important;
  padding: 10px 16px !important;
  font-size: 18px !important;
  line-height: 1.3333333 !important;
  border-radius: 6px !important;
}

* {
  box-sizing: border-box;
}

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.ticker-wrap {
  bottom: 0;
  width: 100%;
   overflow: hidden;
  height: 4rem;
  background-color: #b73b4f;
  padding-left: 100%;
  box-sizing: content-box;
}
.ticker-wrap .ticker {
  display: inline-block;
  height: 4rem;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
}
.ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0 2rem;
  font-size: 2rem;
  color: white;
}

body {
  padding-bottom: 5rem;
}