@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/OpenSans_CondBold/stylesheet.css");
@import url("/static/webfonts/SourceSansPro_Light/stylesheet.css");

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

/*
Blue #0078b9
Green #00948d
LtGray #e6e6e6
DkGray #3c3c3b
*/

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}
img {
	border: none;
	outline: none;
}
hr {
	clear:both;
}
a:active {
    outline:none;
}
a:link, a:visited {
	color: #0078b9;
	text-decoration: none;
}
a:hover, a:active {
	color: #00948d;
	text-decoration: underline;
}
.child {
	margin-left:15px;
    font-size:95%;
    line-height:150%;
}
/*
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; } }

.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.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.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 {
	color: #0078b9;
	font-weight: normal;
	font-family: "SourceSansPro Light", "Source Sans Pro Light", sans-serif;
	line-height: normal;
}

.lrgHdr, h1 {
	font-size: 2.3em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
}
.medHdr, h2 {
	font-size: 2.1em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 21px;
	margin-left: 0px;
}
.smHdr, h3 {
	font-size: 2em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	font-family: "SourceSansPro Semibold", "Source Code Pro Semibold", sans-serif;
}
.xsmHdr, h4 {
	font-size: 1.8em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	font-family: "SourceSansPro Semibold", "Source Code Pro Semibold", sans-serif;
}
.xxsmHdr, h5 {
	font-size: 1.4em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	font-family: "SourceSansPro Semibold", "Source Code Pro Semibold", sans-serif;
}
.xxxsmHdr, h6 {
	font-size: 1.1em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	font-family: "SourceSansPro Semibold", "Source Code Pro Semibold", sans-serif;
}
/* Content text */
.largeText {
	font-size: 1.2em;
}
.bodyText {
	font-size: 1em;
}
.medText {
	font-size: 1.1em;
}
.smText {
	font-size: .9em;
}


.colorBlue {
	color:#0078b9;
}
.colorGreen {
	color:#00948d;
}
/* Content Stuff */

body {
	/* Use .bodyGoods for <body> background styles */
	font-family: SourceSansProRegular, "SourceSansPro Regular", Arial;
	font-size: 15px;
	margin: 0px;
	padding: 0px;
}
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 20px;
	display: block;
	border: 1px solid #E1E1E1;
	border-radius: 3px;
}
.totopbutton a:link, .totopbutton a:visited {
	background-color: rgba(255,255,255,0.88);
	color:#DDD;
}
.totopbutton a:hover, .totopbutton a:active {
	background-color: rgba(255,255,255,0.98);
	color: #666 !important;
}

.container-fluid {
	padding-left:15px;
	padding-right:15px;
}
.bodyGoods {
	background-color: #717171;
}
.copyright {
	font-size: .8em;
	padding-top: 20px;
	text-align: center;
}
.headerBox {
	background-color: #FFFFFF;
	color: #2B2B2B;
	padding-top: 8px;
	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;
}
.headerContactBox {
	background-color: rgba(0,120,186,1.00);
	color: #FFFFFF;
}
.headerContactBox a:link, .headerContactBox a:visited {
	color: #FFFFFF;
}
.headerContactBox a:hover, .headerContactBox a:active {
	color: #CCE3E2;
}
.headerFloater {
	position: absolute;
	width: 100%;
	z-index: 902;
}
.phoneBox {
	padding-top: 8px;
	padding-left: 20px;
	font-size: 1.4em;
	font-family: "SourceSansPro Light", "Source Sans Pro Light", sans-serif;
}
.navbarBox {
	margin-top: -47px;
}

/* -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;
}
.contentBox .list-inline .tags li {
    background-image: none !important;
}
.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;
}
.logoBox img {
	width: 100px;
}
.searchBox {
	padding-bottom: 15px;
	padding-top: 15px;
	display: none;
}
.searchBox form {
	text-align: center;
	float:none;
}
#searchinput {
	width: 100%;
}
/*Header Squish*/
.headerBox.sticky {
}
.headerBox.sticky .logoBox {
}
.headerBox.sticky .logoBox img {
}
.headerBox.sticky .phoneBox {
}
.headerBox.sticky .navbarBox {
}
.headerBox.sticky .searchBox {
}
/*End Header Squish*/
.contentBox {
	background-color: #FFFFFF;
	padding-bottom: 30px;
	padding-top: 30px;
}

.contentBox ul {
	list-style-type: none;
	margin-left: 0px;
	padding-left: 0px;
	text-align: left;
}
#contentLeft li {
	padding-left: 15px;
	background-image: url(/static/mainimages/bullet-blue.png) !important;
	background-repeat: no-repeat !important;
	background-position: left 6px !important;
}
#quoteslider li {
	padding-left: 0px;
	background-image: none;
}
#quoteslider h5 {
	color: #00948d;
}

.hometextarea {
	text-align: center;
}
.greenBox {
	background-color: #00948d;
	color: #FFFFFF;
}
.greenBox li {
	background-image: url(/static/mainimages/bullet-tan.png);
}
.greenBox h1, .greenBox h2, .greenBox h3, .greenBox h4, .greenBox h5, .greenBox h6 {
	color: #FFFFFF;
}
.newsBox {
	background-color: #FFFFFF;
}
.blueBox {
	background-color: #0078b9;
	color: #FFFFFF;
}
.blueBox li {
	background-image: url(/static/mainimages/bullet-white.png);
}
.blueBox h1, .blueBox h2, .blueBox h3, .blueBox h4, .blueBox h5, .blueBox h6 {
	color: #FFFFFF;
}
.ltgrayBox {
	background-color: #e6e6e6;
}
.hiringheader {
	text-align: center;
}
.hiringheader h2 {
}
.hiringbttn {
	text-align: center;
}
.certinfoBox {
	text-align: center;
	font-size:0.9em;
	line-height:normal;
}
.certinfoBox h5 {
	font-size:1.2em;
}
.certinfoBox img {
	margin-bottom: 30px;
}
.footerBox {
	color: #ffffff;
	line-height: 1.2em;
	padding-top: 30px;
	padding-bottom: 20px;
}
.footerBox h6 {
	color: #ffffff;
	font-family: "SourceSansPro Semibold", "Source Code Pro Semibold", sans-serif;
}
.footerBox a:link, .footerBox a:visited {
	font-weight: normal;
	color: #FFF;
	text-decoration: none;
}
.footerBox a:hover, .footerBox a:active {
	font-weight: normal;
	color: #CCE3E2;
}
.footerNav {
	display: none;
}
.footerNav li {
	padding-right: 8px;
	padding-left: 8px;
	margin-bottom: 8px;
	display: inline-block;
}
.footerNav li:last-of-type {
	border-right: none;
}
.footerNav ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
.footerNav ul li ul  {
	display: none;
}
.searchBttn {
	color: #ffffff;
	background-color: #0078b9;
}
.sociallinksBox {
	text-align: center;
}
.sociallinksBox img {
	margin-left: 3px;
	margin-right: 3px;
	margin-bottom: 8px;
}
.sociallinksTop {
	text-align: right;
	padding-right: 5px;
	padding-top: 2px;
}
/* For fa icons */
.sociallinksBox a {
	display: inline-block;
	border-radius: 50%;
	margin-right: 3px;
	margin-left: 3px;
	text-align: center;
	color: #FFFFFF;
	width: 35px;
	height: 35px;
	padding-top: 7px;
	font-size: 20px;
}
.sociallinksBox a:link, .sociallinksBox a:visited {
	/*background-color: #000000;*/
}
.sociallinksBox a:hover, .sociallinksBox a:active {
	/*background-color: #CCCCCC;*/
}
/* 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;
}
/* end For fa icons */

.mapBox {
	text-align: center;
}
.addressBox {
	padding-bottom: 20px;
	text-align: center;
}
.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;
}
.photoRowBox {
	text-align: center;
	margin-top: 20px;
}
.photoRowCaption {
	padding-top:10px;
}
.photoRowPhoto {
}
.photoRowPhoto img {
}
#photoGalleryBox {
}
#photoGalleryBox .photoRowBox {
}
#photoGalleryBox .photoRowPhoto img {
}
#staffPhotos {
}
#staffPhotos .photoRowBox {
	padding-left: 13px !important;
	padding-right: 13px !important;
}
#staffPhotos .photoRowPhoto img {
	border-radius:5%;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-filter: gray;
	filter: gray;
	transition: all .3s;
	width:100%;
}
#staffPhotos .photoRowPhoto img:hover {
	filter: grayscale(0);
}
#staffPhotos .photoRowCaption {
}
.twoCol1 {
}
.twoCol2 {
}
#rotationBox {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	background-repeat: no-repeat;
	background-position: center 55px;
	background-size: 100% auto;
	display: block;
	background-attachment: fixed;
	background-color:#FFFFFF;
	min-height: 137px;
	padding-top:137px;
	
}
#rotationBttnBox {
	text-align: center;
	color: #FFFFFF;
	background-color: #999999;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 30px;
}
#rotationBttnBox h2 {
	font-family: "SourceSansPro Semibold", "Source Code Pro Semibold", sans-serif;
	color: #FFFFFF;
	font-size: 2em;
}
#rotationBttnBox .btn {
	text-shadow:none;
}
.flex-caption {
	padding: 15px;
	background-color: rgba(0,0,0,1.00);
	text-align: center;
}
.flex-control-nav {
}
.flex-caption img {
}
#flex-caption-right {
	margin-left:10px;
}
#flex-caption-left {
	margin-left:10px;
}
.flex-direction-nav {
	display: none;
}
.captionwidth {}

.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:inline-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;
}
.form-right-col {
	padding-top: 20px;
	text-align: center;
}
.product-list {
}
.product-thumb {
	padding-bottom: 15px;
}

@media (min-width: 768px) {
body {
}
.hidden-xs {
  display: inline !important;
}
.bodyGoods {
}
.copyright {
}
.headerBox {
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
}
.headerContactBox {
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 20px;
	padding-right: 20px;
}
.headerContactBox a:link, .headerContactBox a:visited {
}
.headerFloater {
	-webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.50);
	box-shadow: 0px 0px 8px rgba(0,0,0,0.50);
	top: 0px;
	position: fixed;
}
.phoneBox {
}
.navbarBox {
	margin-top: 35px;
	font-size: 1.2em;
}
.logoBox {
	text-align: left;
}
.logoBox img {
	width: auto;
}
.searchBox {
	display: block;
	padding-top: 0px;
	padding-bottom: 0px;
}
/*Header Squish*/
.headerBox.sticky {
	padding-top: 10px;
	padding-bottom: 10px;
}
.headerBox.sticky .logoBox {
}
.headerBox.sticky .logoBox img {
	width:110px;
}
.headerBox.sticky .phoneBox {
}
.headerBox.sticky .navbarBox {
	margin-top: 20px;
}
.headerBox.sticky .searchBox {
}
/*End Header Squish*/
.contentBox {
	padding-top: 40px;
	padding-bottom: 40px;
}
.hometextarea {
}
.hiringheader {
	text-align: right;
	padding-top: 7px;
}
.hiringheader h2 {
	margin-bottom:auto;
}
.hiringbttn {
	text-align: left;
}
.certinfoBox {
	text-align: left;
}
.certinfoBox img {
	margin-bottom: 0px;
}
.footerBox {
	font-size: 0.9em;
}
.footerNav {
	display: block;
	text-align: right;
}
.sociallinksBox {
	text-align: right;
	margin-top: -29px;
}
.sociallinksBox img {
}
.sociallinksTop {
	margin-top: 0px;
}
.mapBox {
	padding-right: 0px;
}
.addressBox {
	text-align: left;
	font-size: 1em;
	padding-top: 0px;
	padding-bottom: 0px;
}
#contentLeft {
	padding-bottom: 0px;
}
#sidebarBox {
	padding-top: 0px;
	border-top-style: none;
	border-right: none;
	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;
}
.twoCol1 {
}
.twoCol2 {
}
#rotationBox {
	min-height: 164px;
	padding-top:164px;
}
#rotationBttnBox {
	position: absolute;
	top: 59%;
	transform: translateY(-50%);
	background-color: rgba(0,0,0,0.00);
	font-size: 1.8em;
	text-shadow: 0px 0px 8px rgba(0,0,0,0.60);
	padding-top: 0px;
	padding-bottom: 0px;
}
#rotationBttnBox .btn {
	font-size: 0.8em;
	margin-top: 20px;
}
.flex-caption {
	font-size: 1.1em;
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0,0,0,0.00);
}
.flex-control-nav {
	display: block;
	text-align:left;
}
.flex-control-nav li {
}
.flex-caption img {
	visibility:visible;
	width:auto !important;
}
#flex-caption-left {
	margin-left:20px;
}
#flex-caption-right {
	margin-left:500px;
}
.flex-direction-nav {
	display: block;
}
.captionwidth {}
.flexCaptionBox {
}
.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:inline-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 {
}
.headerBox {
	padding-left: 30px;
	padding-right: 30px;
}
.headerContactBox {
	padding-left: 30px;
	padding-right: 30px;
}
.headerContactBox a:link, .headerContactBox a:visited {
}
.headerFloater {
}
.phoneBox {
}
.navbarBox {
}
.logoBox {
}
.searchBox {
}
/*Header Squish*/
.headerBox.sticky {
}
.headerBox.sticky .logoBox {
}
.headerBox.sticky .logoBox img {
}
.headerBox.sticky .phoneBox {
}
.headerBox.sticky .navbarBox {
}
.headerBox.sticky .searchBox {
}
/*End Header Squish*/
.contentBox {
	padding-top: 50px;
	padding-bottom: 50px;
}
.hometextarea {
}
.hiringheader {
}
.hiringbttn {
}
.certinfoBox {
}
.certinfoBox img {
}
.footerBox {
	font-size: 1em;
	padding-top: 40px;
}
.footerNav {
}
.sociallinksBox {
}
.sociallinksBox img {
}
.sociallinksTop {
}
.addressBox {
}
#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 */
}
#rotationBttnBox {
}
#rotationBttnBox .btn {
}
.flex-caption {
	font-size: 1.2em;
}
.flex-control-nav {
}
.flex-control-nav li {
}
.flex-caption img {
	width:auto !important;
}
#flex-caption-left {
	margin-left:20px;
}
#flex-caption-right {
	margin-left:680px;
}
.flex-direction-nav {
}
.captionwidth {
	width: 1024px;
	margin-left: auto;
	margin-right: auto;
	float: none;
	clear: both;
}
.flexCaptionBox {
	border-radius: 15px;
	background-color: rgba(255,255,255,0.80);
	padding: 5%;
	width: 90%;
	font-size: 1em;
}
.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:inline-block; /* optional */
}
.galleryheader {
}
.gallerynav {
}
.galleryphoto {
}
.galleryphoto img {
}
.gallerythumbs {
}
.form-content-box {}
.form-left-col {}
.form-right-col {}
	.product-list {
}
.product-thumb {
}
}

@media (min-width: 1200px) {
body {
}
.bodyGoods {
}
.copyright {
}
.headerBox {
}
.headerContactBox {
}
.headerContactBox a:link, .headerContactBox a:visited {
}
.headerFloater {
}
.phoneBox {
}
.navbarBox {
}
.logoBox {
}
.searchBox {
}
/*Header Squish*/
.headerBox.sticky {
}
.headerBox.sticky .logoBox {
}
.headerBox.sticky .logoBox img {
}
.headerBox.sticky .phoneBox {
}
.headerBox.sticky .navbarBox {
}
.headerBox.sticky .searchBox {
}
/*End Header Squish*/
.contentBox {
}
.hometextarea {
}
.hiringheader {
}
.hiringbttn {
}
.certinfoBox {
}
.certinfoBox img {
}
.footerBox {
}
.footerNav {
}
.sociallinksBox {
}
.sociallinksBox img {
}
.sociallinksTop {
}
.addressBox {
}
#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 */
}
#rotationBttnBox {
}
#rotationBttnBox .btn {
}
.flex-caption {
}
.flex-control-nav {
	display: block;
}
.flex-control-nav li {
}
.flex-caption img {
	width:auto !important;
}
#flex-caption-left {
	margin-left:20px;
}
#flex-caption-right {
	margin-left:680px;
}
.flex-direction-nav {
}
.captionwidth {
	width: 1024px;
	margin-left: auto;
	margin-right: auto;
	float: none;
	clear: both;
}
.flexCaptionBox {
}
.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:inline-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 {
	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.8em;
}
.table-custom .active td {
	background-color: #E3E3E3 !important;
	font-family: "Roboto Regular", sans-serif;
	text-transform: uppercase;
}
.table-custom td, .table-custom th {
	border-left: 1px solid #EAEAEA;
}
.table-custom tr td:first-of-type, .table-custom tr th:first-of-type {
	border-left: none;
}
.table-custom tr {
}
.table-custom thead {
	background-color: #D3D3D3;
}
.table-custom th {
	font-family: "Roboto Bold", sans-serif;
	text-align: center;
	text-transform: uppercase;
}
.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:block;
}
.charfield label, .emailfield label, .floatfield label {
	display:none;   /* Hides the form lable */
}
.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;
}
.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;
}

.price {
	font-size:1.2em;
}
.old-price {
}
legend {
  color: #0078b9;
}

/* 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, .btn-sitecolor:link, .btn-sitecolor2:link, .btn-sitecolor a:link, .btn-sitecolor2 a:link {
  color: #FFF !important;
}
.btn-info:visited, .btn-primary:visited, .btn-success:visited, .btn-warning:visited, .btn-danger:visited, .btn-sitecolor:visited,  .btn-sitecolor2:visited, .btn-sitecolor a:visited,  .btn-sitecolor2 a:visited {
  color: #FFF !important;
}

/*Master Button*/
.btn-sitecolor {
  color: #FFFFFF;
  background-color: #0078b9;
  border-color: #FFF;
  padding-left:35px;
  padding-right:35px;
}

.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: #006094;
	border-color: #FFF;
}

.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: #99C0D5;
	border-color: #FFF;
}

.btn-sitecolor .badge {
	color: #ffffff;
	background-color: #333333;
}
.btn-sitecolor2 {
	color: #FFFFFF;
	background-color: #00948d;
	border-color: #FFF;
	padding-left:35px;
	padding-right:35px;
}

.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: #007872;
	border-color: #FFF;
}

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

.btn-sitecolor2.disabled,
.btn-sitecolor2[disabled],
fieldset[disabled] .btn-sitecolor2,
.btn-sitecolor2.disabled:hover,
.btn-sitecolor2[disabled]:hover,
fieldset[disabled] .btn-sitecolor2:hover,
.btn-sitecolor2.disabled:focus,
.btn-sitecolor2[disabled]:focus,
fieldset[disabled] .btn-sitecolor2:focus,
.btn-sitecolor2.disabled:active,
.btn-sitecolor2[disabled]:active,
fieldset[disabled] .btn-sitecolor2:active,
.btn-sitecolor2.disabled.active,
.btn-sitecolor2[disabled].active,
fieldset[disabled] .btn-sitecolor2.active {
	background-color: #85C9C6;
	border-color: #FFF;
}

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


/*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;
}

li.list-group-item {
	background-image: none;
}