/* BEGIN myfoo - standard CSS3 classes I use all the time */ 
html {
	overflow-y: scroll;
} /* Forces a scrollbar when the viewport is larger than the websites content - CSS3 */
a {
	outline : none;
}
a img {
	outline : none;
}
img {
	border : 0;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.centered {
	text-align: center;
}
.justified {
	text-align: justify;
}
.middle {
	vertical-align: middle;
}
.mymargin {
	margin: 15px;
}
.sidemargin {
	margin: 0 15px;
}
.virticalmargin {
	margin: 15px auto;
}
.nomargin {
	margin: 0;
}
.bottommargin {
	margin-bottom: 15px;
}
.topmmargin {
	margin-top: 15px;
}
.rightmargin {
	margin-right: 15px;
}
.nopad {
	padding: 0;
}
.mypad {
	padding: 15px 15px;
}
.verticalpad {
	padding-top: 15px;
	padding-bottom: 15px;
}
.horizontalpad {
	padding-top: 15px;
	padding-bottom: 15px;
}
.smpad {
	padding: 4px;
}
.myline {
	height: 1px;
	width: 98%;
	background-color: #ccc;
	clear: both;
	margin: 15px auto 15px auto;
}
.shortline {
	height: 2px;
	width: 50%;
	background-color: #ccc;
	margin: 15px auto 15px auto;
}
.rounded5 {
	border-radius: 5px;
}
.rounded7 {
	border-radius: 7px;
}
.rounded10 {
	border-radius: 10px;
}
.rounded15 {
	border-radius: 15px;
}
.rightrounded10 {
	border-radius: 0 10px 10px 0;
}
.leftrounded10 {
	border-radius: 10px 0 0 10px;
}
@media (max-width: 768px) {
.rounded5 {
	border-radius: 0;
}
.rounded10 {
	border-radius: 0;
}
.rounded15 {
	border-radius: 0;
}
}
.roundedtop7 {
	border-radius: 7px 7px 0 0;
}
.roundedbottom7 {
	border-radius: 0 0 7px 7px;
}
.myshadow {
	box-shadow: 0 0 2px #ccc;
	-webkit-box-shadow: 0 0 2px #ccc;
}
.txtshadow {
	text-shadow: 2px 2px 1px #333;
}
img {
	width: 100%;
	height: auto;
}
.imgholder, .imgl, .imgr {
	border: #ccc 1px solid;
	border-radius: 4px;
	padding: 4px;
}
.imgl {
	float: left;
}
.imgr {
	float: right
}
.imgcentered {
	margin: 0 auto;
}
.boxshadow {
	-webkit-box-shadow: 0 0 8px #444;
	box-shadow: 0 0 8px #444;
}
 @media (max-width: 992px) {
.hideunder992 {
	display: none;
}
}
 @media (min-width: 992px) {
.hideover992 {
	display: none;
}
}
/* ============ END myfoo ===================== */
/* ======= begin mobile nav switch ============ */
@media (min-width: 992px) {
.navbar-fixed-top {
	position: relative;
}
}
 @media (max-width: 992px) {
.hideunder992 {
	display: none;
}
}
 @media (min-width: 992px) {
.hideover992 {
	display: none;
}
}
/* ===== end nav switch ========= */
/*====== Begin Carousel Fade ==== */

.carousel.fade {
	opacity: 1;
}
.carousel.fade .item {
	-moz-transition: opacity ease-in-out 1.0s;
	-o-transition: opacity ease-in-out 1.0s;
	-webkit-transition: opacity ease-in-out 1.0s;
	transition: opacity ease-in-out 1.0s;
	left: 0 !important;
	opacity: 0;
	top: 0;
	position: absolute;
	width: 100%;
	display: block !important;
	z-index: 1;
}
.carousel.fade .item:first-child {
	top: auto;
	position: relative;
}
.carousel.fade .item.active {
	opacity: 1;
	-moz-transition: opacity ease-in-out 1.0s;
	-o-transition: opacity ease-in-out 1.0s;
	-webkit-transition: opacity ease-in-out 1.0s;
	transition: opacity ease-in-out 1.0s;
	z-index: 2;
}
.carousel-indicators li {
	border: #666 1px solid;
}
.carousel {
	padding: 0px;
}
.carousel-caption p {
	color: #fff;
}
@media (max-width: 992px) {
.carousel {
	margin-top: 0px;
}
}
@media (max-width: 992px) {
.carousel-caption {
	display: none;
}
}
.carousel-caption a:link, .carousel-caption a:visited {
	color:#fff;
}
.carousel-caption a:hover {
	color: #FF9;
}
/*====== End Carousel Fade =========== */
/*====== Begin IMG trans on hover =========== */
a.trans:link img {
	max-width: 100%;
	transition: all .2s ease-in-out;
	border-radius: 5px;
}
a.trans:hover img {
	box-shadow: 0 0 4px #666;
	-webkit-box-shadow: 0 0 4px #666;
	transform: scale(1.10);
	-webkit-transform: scale(1.10);
}
/*====== End IMG transition on hover =========== */
/*====== Begin Social Icons Css =========== */

.social {
	margin-top: -7px;
	margin-bottom: -7px;
	width: 30px;
}
/*====== End Begin Social Icons Css =========== */
/* ===== begin bootstrap overrides ===== */
body {
	font-size: 125%;
	background-color: hsl(201, 100%, 22%) !important;
	background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#008bd6", endColorstr="#004870");
	background-image: -khtml-gradient(linear, left top, left bottom, from(#008bd6), to(#004870));
	background-image: -moz-linear-gradient(top, #008bd6, #004870);
	background-image: -ms-linear-gradient(top, #008bd6, #004870);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #008bd6), color-stop(100%, #004870));
	background-image: -webkit-linear-gradient(top, #008bd6, #004870);
	background-image: -o-linear-gradient(top, #008bd6, #004870);
	background-image: linear-gradient(#008bd6, #004870);
	border-color: #004870 #004870 hsl(201, 100%, 17%);
	color: #333 !important;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.33);
	-webkit-font-smoothing: antialiased;
}
body p {
	font-size: 125%;
	color: #333;
}
.container {
	border-radius: 0 0 15px 15px;
	margin-bottom: 15px;
	background-image: url(/img/trans-wht-80.png);
}
.row {
	background: #FFF;
	margin: 10px 0px;
	padding: 10px;
	border-radius: 7px;
}
@media (max-width: 992px) {
.rownobak {
	background-color: transparent;
	margin: -15px;
}
}
 @media (max-width: 992px) {
.container {
	border-radius: 0;
}
}
.page-header {
	margin-top: 0px;
	border-bottom: 0;
}
.headaddy {
	float: right;
	margin: 25px 10px 0 0;
	text-align: left;
	font-size: 20px;
}
@media (max-width: 992px) {
.page-header {
	margin-top: 40px;
	text-align: center;
}
.headaddy {
	float: none;
	text-align: center;
	margin: 0px;
}
}
.navbar {
	padding-right: 15px;
	padding-left: 5px;
	border-radius: 7px;
	margin-left: -15px;
	margin-right: -15px;
	margin-bottom: 0;
	background-color: hsl(14, 69%, 17%) !important;
	background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a83e1e", endColorstr="#491b0d");
	background-image: -khtml-gradient(linear, left top, left bottom, from(#a83e1e), to(#491b0d));
	background-image: -moz-linear-gradient(top, #a83e1e, #491b0d);
	background-image: -ms-linear-gradient(top, #a83e1e, #491b0d);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a83e1e), color-stop(100%, #491b0d));
	background-image: -webkit-linear-gradient(top, #a83e1e, #491b0d);
	background-image: -o-linear-gradient(top, #a83e1e, #491b0d);
	background-image: linear-gradient(#a83e1e, #491b0d);
	border-color: #491b0d #491b0d hsl(14, 69%, 11.5%);
	color: #fff !important;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.36);
	-webkit-font-smoothing: antialiased;
}
@media (max-width: 992px) {
.navbar {
	border-radius: 0;
}
}
.navbar-inverse .navbar-brand {
	color: #FFF;
	margin-left: 5px;
}
.navbar-inverse .navbar-nav > li > a:link, .navbar-inverse .navbar-nav > li > a:visited {
	color: #fff;
	font-size:16px;
}
.navbar-inverse .navbar-nav > li > a:hover {
	background-color: #333;
}
.navbar-inverse .navbar-right > li > a:hover {
	background-color: transparent;
}
.navbar-right > li {
	float: left;
}
.copyright {
	font-size: 11px;
	letter-spacing: 1px;
	text-align: center;
	margin: 5px;
	color: #efefef;
}
.copyright a:link, .copyright a:visited {
	color: #FF9;
}
.copyright a:hover {
	color: #FFF;
}
.logo {
	max-width: 317px;
	height: auto;
}
.home-box {
	border: #CCC 1px solid;
	border-radius: 7px 7px 0 0;
	margin: 6px auto 0 auto;
}
a.box-heading:link, a.box-heading:visited {
	display: block;
	text-align: center;
	font-size: 18px;
	padding: 6px;
	border-radius: 7px 7px 0 0;
	background-color: hsl(14, 69%, 17%) !important;
	background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a83e1e", endColorstr="#491b0d");
	background-image: -khtml-gradient(linear, left top, left bottom, from(#a83e1e), to(#491b0d));
	background-image: -moz-linear-gradient(top, #a83e1e, #491b0d);
	background-image: -ms-linear-gradient(top, #a83e1e, #491b0d);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a83e1e), color-stop(100%, #491b0d));
	background-image: -webkit-linear-gradient(top, #a83e1e, #491b0d);
	background-image: -o-linear-gradient(top, #a83e1e, #491b0d);
	background-image: linear-gradient(#a83e1e, #491b0d);
	border-color: #491b0d #491b0d hsl(14, 69%, 11.5%);
	color: #fff !important;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.36);
	-webkit-font-smoothing: antialiased;
}
a.box-heading:hover {
	background-color: hsl(0, 69%, 29%) !important;
	background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d32626", endColorstr="#7c1616");
	background-image: -khtml-gradient(linear, left top, left bottom, from(#d32626), to(#7c1616));
	background-image: -moz-linear-gradient(top, #d32626, #7c1616);
	background-image: -ms-linear-gradient(top, #d32626, #7c1616);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d32626), color-stop(100%, #7c1616));
	background-image: -webkit-linear-gradient(top, #d32626, #7c1616);
	background-image: -o-linear-gradient(top, #d32626, #7c1616);
	background-image: linear-gradient(#d32626, #7c1616);
	border-color: #7c1616 #7c1616 hsl(0, 69%, 24%);
	color: #fff !important;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.33);
	-webkit-font-smoothing: antialiased;
}
.pinrap {
	border: #333 1px solid;
	border-radius:4px;
	margin:0px;
}
a.learnmore:link, a.learnmore:visited {
	display: block;
	text-align: center;
	font-size: 18px;
	margin-bottom:15px;
	padding: 2px;
	border-radius: 0 0 7px 7px;
	background-color: hsl(14, 69%, 17%) !important;
	background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a83e1e", endColorstr="#491b0d");
	background-image: -khtml-gradient(linear, left top, left bottom, from(#a83e1e), to(#491b0d));
	background-image: -moz-linear-gradient(top, #a83e1e, #491b0d);
	background-image: -ms-linear-gradient(top, #a83e1e, #491b0d);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a83e1e), color-stop(100%, #491b0d));
	background-image: -webkit-linear-gradient(top, #a83e1e, #491b0d);
	background-image: -o-linear-gradient(top, #a83e1e, #491b0d);
	background-image: linear-gradient(#a83e1e, #491b0d);
	border-color: #491b0d #491b0d hsl(14, 69%, 11.5%);
	color: #fff !important;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.36);
	-webkit-font-smoothing: antialiased;
}
a.learnmore:hover {
	background-color: hsl(0, 69%, 29%) !important;
	background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d32626", endColorstr="#7c1616");
	background-image: -khtml-gradient(linear, left top, left bottom, from(#d32626), to(#7c1616));
	background-image: -moz-linear-gradient(top, #d32626, #7c1616);
	background-image: -ms-linear-gradient(top, #d32626, #7c1616);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d32626), color-stop(100%, #7c1616));
	background-image: -webkit-linear-gradient(top, #d32626, #7c1616);
	background-image: -o-linear-gradient(top, #d32626, #7c1616);
	background-image: linear-gradient(#d32626, #7c1616);
	border-color: #7c1616 #7c1616 hsl(0, 69%, 24%);
	color: #fff !important;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.33);
	-webkit-font-smoothing: antialiased;
}
.footer {
	background-color: hsl(14, 69%, 17%) !important;
	background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a83e1e", endColorstr="#491b0d");
	background-image: -khtml-gradient(linear, left top, left bottom, from(#a83e1e), to(#491b0d));
	background-image: -moz-linear-gradient(top, #a83e1e, #491b0d);
	background-image: -ms-linear-gradient(top, #a83e1e, #491b0d);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a83e1e), color-stop(100%, #491b0d));
	background-image: -webkit-linear-gradient(top, #a83e1e, #491b0d);
	background-image: -o-linear-gradient(top, #a83e1e, #491b0d);
	background-image: linear-gradient(#a83e1e, #491b0d);
	border-color: #491b0d #491b0d hsl(14, 69%, 11.5%);
	color: #fff !important;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.36);
	-webkit-font-smoothing: antialiased;
}
.footer a:link, .footer a:visited {
	color: #FF9;
}
.footer a:hover {
	color: #FFF;
}
.label {
	color: #39F;
	display: block;
	border-bottom: #39f 1px solid;
}
.contactlink:link, .contactlink:visited {
	font-size: 24px;
	font-weight: bold;
	border-radius: 7px;
	display: block;
	background-color: hsl(201, 100%, 30%) !important;
	background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00a5ff", endColorstr="#006399");
	background-image: -khtml-gradient(linear, left top, left bottom, from(#00a5ff), to(#006399));
	background-image: -moz-linear-gradient(top, #00a5ff, #006399);
	background-image: -ms-linear-gradient(top, #00a5ff, #006399);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #00a5ff), color-stop(100%, #006399));
	background-image: -webkit-linear-gradient(top, #00a5ff, #006399);
	background-image: -o-linear-gradient(top, #00a5ff, #006399);
	background-image: linear-gradient(#00a5ff, #006399);
	border-color: #006399 #006399 hsl(201, 100%, 25%);
	color: #fff !important;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.33);
	-webkit-font-smoothing: antialiased;
}
.contactlink:hover {
	background-color: hsl(0, 69%, 29%) !important;
	background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d32626", endColorstr="#7c1616");
	background-image: -khtml-gradient(linear, left top, left bottom, from(#d32626), to(#7c1616));
	background-image: -moz-linear-gradient(top, #d32626, #7c1616);
	background-image: -ms-linear-gradient(top, #d32626, #7c1616);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d32626), color-stop(100%, #7c1616));
	background-image: -webkit-linear-gradient(top, #d32626, #7c1616);
	background-image: -o-linear-gradient(top, #d32626, #7c1616);
	background-image: linear-gradient(#d32626, #7c1616);
	border-color: #7c1616 #7c1616 hsl(0, 69%, 24%);
	color: #fff !important;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.33);
	-webkit-font-smoothing: antialiased;
}
