/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
your theme's stylesheet content.
*/
.tribe-events-address {
	font-weight: 900 !important;
	font-size: 200% !important;
}
.archive.wp-post-image {
    display: none;
}
.single.wp-post-image {
	display:none;
}

.tribe-events-list-separator-month {
	display: none !important;
}

ul.tribe-events-sub-nav {
	display: none;
}

.slideboxback {
	color: #fff;
	cursor: pointer;
	vertical-align: middle;
	padding: 5px;
	background: -moz-linear-gradient(top,rgba(35,47,60,0) 0%,rgba(35,47,60,0.05) 5%,rgba(35,47,60,0.35) 25%,rgba(35,47,60,0.45) 50%,rgba(35,47,60,0.35) 75%,rgba(35,47,60,0.05) 95%,rgba(35,47,60,0) 100%);
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(35,47,60,0)),color-stop(5%,rgba(35,47,60,0.05)),color-stop(25%,rgba(35,47,60,0.35)),color-stop(50%,rgba(35,47,60,0.45)),color-stop(75%,rgba(35,47,60,0.35)),color-stop(95%,rgba(35,47,60,0.05)),color-stop(100%,rgba(35,47,60,0)));
	background: -webkit-linear-gradient(top,rgba(35,47,60,0) 0%,rgba(35,47,60,0.05) 5%,rgba(35,47,60,0.35) 25%,rgba(35,47,60,0.45) 50%,rgba(35,47,60,0.35) 75%,rgba(35,47,60,0.05) 95%,rgba(35,47,60,0) 100%);
	background: -o-linear-gradient(top,rgba(35,47,60,0) 0%,rgba(35,47,60,0.05) 5%,rgba(35,47,60,0.35) 25%,rgba(35,47,60,0.45) 50%,rgba(35,47,60,0.35) 75%,rgba(35,47,60,0.05) 95%,rgba(35,47,60,0) 100%);
	background: -ms-linear-gradient(top,rgba(35,47,60,0) 0%,rgba(35,47,60,0.05) 5%,rgba(35,47,60,0.35) 25%,rgba(35,47,60,0.45) 50%,rgba(35,47,60,0.35) 75%,rgba(35,47,60,0.05) 95%,rgba(35,47,60,0) 100%);
	background: linear-gradient(to bottom,rgba(35,47,60,0) 0%,rgba(35,47,60,0.05) 5%,rgba(35,47,60,0.35) 25%,rgba(35,47,60,0.45) 50%,rgba(35,47,60,0.35) 75%,rgba(35,47,60,0.05) 95%,rgba(35,47,60,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00232f3c',endColorstr='#00232f3c',GradientType=0);
}

.sunburst {
	overflow: hidden;
}

.sunburstdiv2 {
	background-image: url(/wp-content/uploads/2015/04/yellow-back.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	overflow: hidden;
	position: relative;
	left: -13%;
	top: -13%;
}

.sunburstdiv {
	background-image: url(/wp-content/uploads/2015/02/sun-burst-grad-bg-3.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	overflow: hidden;
	position: relative;
	left: -13%;
	top: -13%;
}

.heart {
	font-size: 152px;
	text-align: center;
	color: rgba(165,25,25,1);
	padding: 0;
	margin: 0;
}

.pulse1 {
	-webkit-animation: pulse1 1s linear infinite;
	-moz-animation: pulse1 1s linear infinite;
	-ms-animation: pulse1 1s linear infinite;
	animation: pulse1 1s linear infinite;
}

@keyframes pulse1 {
	0% {
		color: rgba(165,25,25,1);
	}
	
	90% {
		color: rgba(255,0,0,0.0);
	}
	
	100% {
		color: rgba(255,0,0,1.0);
	}
}

@-moz-keyframes pulse1 {
	0% {
		color: rgba(165,25,25,1);
	}
	
	90% {
		color: rgba(255,0,0,0.0);
	}
	
	100% {
		color: rgba(255,0,0,1.0);
	}
}

@-webkit-keyframes pulse1 {
	0% {
		color: rgba(165,25,25,1);
	}
	
	90% {
		color: rgba(255,0,0,0.0);
	}
	
	100% {
		color: rgba(255,0,0,1.0);
	}
}

@-ms-keyframes pulse1 {
	0% {
		color: rgba(165,25,25,1);
	}
	
	90% {
		color: rgba(255,0,0,0.0);
	}
	
	100% {
		color: rgba(255,0,0,1.0);
	}
}

.pulse2 {
	-webkit-animation: pulse2 1s linear infinite;
	-moz-animation: pulse2 1s linear infinite;
	-ms-animation: pulse2 1s linear infinite;
	animation: pulse2 1s linear infinite;
}

@keyframes pulse2 {
	0% {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-o-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}
	
	50% {
		-webkit-transform: scale(0.8);
		-moz-transform: scale(0.8);
		-o-transform: scale(0.8);
		-ms-transform: scale(0.8);
		transform: scale(0.8);
	}
	
	100% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

@-moz-keyframes pulse2 {
	0% {
		-moz-transform: scale(1.1);
		transform: scale(1.1);
	}
	
	50% {
		-moz-transform: scale(0.8);
		transform: scale(0.8);
	}
	
	100% {
		-moz-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes pulse2 {
	0% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	
	50% {
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}
	
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-ms-keyframes pulse2 {
	0% {
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}
	
	50% {
		-ms-transform: scale(0.8);
		transform: scale(0.8);
	}
	
	100% {
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

.cleared {
	list-style: none;
	display: inline;
}

a.clearer {
	display: block;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-transform: uppercase;
}

a.clearing3:hover {
	color: #fff;
}

a.clearing3 {
	margin: 0;
	padding: 10px;
	float: left;
	text-decoration: none;
	-webkit-appearance: none;
	margin: 0;
	border: none;
	overflow: visible;
	font: inherit;
	color: #eee;
	font-size: 14px;
	text-transform: none;
	display: inline-block;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: middle;
	line-height: 28px;
	min-height: 30px;
	font-size: 1rem;
	text-decoration: none;
	text-align: center;
	background-origin: border-box;
}

a.clearing2:hover {
	color: #fff;
}

a.clearing2 {
	margin: 0;
	padding: 10px;
	float: left;
	text-decoration: none;
	-webkit-appearance: none;
	margin: 0;
	border: none;
	overflow: visible;
	font: inherit;
	color: #aaaaaa;
	font-size: 14px;
	text-transform: none;
	display: inline-block;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: middle;
	line-height: 28px;
	min-height: 30px;
	font-size: 1rem;
	text-decoration: none;
	text-align: center;
	background-origin: border-box;
}

a.clearing:hover {
	color: #525252;
}

a.clearing {
	margin: 0;
	padding: 10px;
	float: left;
	text-decoration: none;
	-webkit-appearance: none;
	margin: 0;
	border: none;
	overflow: visible;
	font: inherit;
	color: #aaaaaa;
	font-size: 14px;
	text-transform: none;
	display: inline-block;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: middle;
	line-height: 28px;
	min-height: 30px;
	font-size: 1rem;
	text-decoration: none;
	text-align: center;
	background-origin: border-box;
}

.laureltextos {
	font-weight: bold;
	font-size: 1.25vmin;
	line-height: 2.5vmin;
	color: #eee;
	text-align: center;
	text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.laureltexttitle {
	font-weight: bold;
	font-size: 1.5vmin;
	color: #eee;
	line-height: 1.5vmin;
	text-align: center;
	text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.laureltext {
	line-height: .5vmin;
	text-align: center;
}

.laurelleft {
	height: 9vmin;
	background-image: url(/wp-content/uploads/2015/01/Laurelleft.png);
	background-repeat: no-repeat;
	background-position: left;
	background-size: contain;
}

.laurelright {
	height: 9vmin;
	background-image: url(/wp-content/uploads/2015/01/Laurelright.png);
	background-repeat: no-repeat;
	background-position: right;
	background-size: contain;
}

.slideshowquote {
	display: inline-block;
	position: relative;
}

#slideshowauthw {
	font-weight: bold;
	font-size: 1.5vmin;
	color: #eee;
	margin: .2em .5em .2em 0;
	line-height: 1.5vmin;
	text-align: right;
}

#slideshowauthb {
	font-weight: bold;
	font-size: 1.5vmin;
	color: #fff;
	margin: .2em .5em .2em 0;
	line-height: 1.5vmin;
	text-align: right;
}

#slideshowquotew:before {
	content: open-quote;
}

#slideshowquotew:after {
	content: close-quote;
}

#slideshowquotew {
	font-size: 1.5vmin;
	color: #eee;
	margin: .2em .5em .2em 0;
	line-height: 1.5vmin;
	text-align: left;
}

#slideshowquoteb {
	font-size: 1.5vmin;
	color: #fff;
	margin: .2em .5em .2em 0;
	line-height: 1.5vmin;
	text-align: left;
}

.tm-page {
	z-index: 2;
	position: relative;
}

.tm-fullscreen {
	height: 50vmin;
	border-top: 1px solid #364555;
	border-bottom: 1px solid rgba(0,0,0,0.15);
}

.made-in-colorado {
	margin: 0 auto .3em;
	padding: 0;
	text-align: center;
	width: 43px;
	height: 29px;
}

.boxshadowinset {
	-webkit-box-shadow: inset 0 0 7px rgba(0,0,0,0.07);
	-moz-box-shadow: inset 0 0 7px rgba(0,0,0,0.07);
	box-shadow: inset 0 0 7px rgba(0,0,0,0.07);
}

.bannerlg {
	width: 100%;
	height: 100%;
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

div.bannertext {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 50%;
	background: rgba(66,67,68,0.9);
	padding: 10px;
}

div.bannertextsm {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 70%;
	background: rgba(66,67,68,0.9);
	padding: 10px;
}

.bannertextsm {
	text-align: center;
	color: #eeeeee;
	font-size: 12px;
	line-height: 18px;
}

.bannertextlg {
	text-align: center;
	color: #eeeeee;
	font-size: 20px;
	line-height: 26px;
	font-weight: 100;
}

.bannerbuttonlg {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 100%;
}

div.bannerbutton {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 95%;
}

.bigbox {
	padding: 35px;
	background-color: rgba(255,255,255,0.8);
	border: 1px solid #dddddd;
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
}

.repeatback {
	background-image: url('/wp-content/uploads/2014/11/fOPjgJ8.jpg');
	background-repeat: repeat;
}

.tm-panel-notess::before {
	content: "";
	display: block;
	position: absolute;
	top: -15px;
	right: 0;
	left: 50%;
	width: 26px;
	height: 26px;
	margin-left: -13px;
	border-radius: 50px;
	background-color: #232F3C;
	box-shadow: inset 0 -1px #eaeaea;
}

.su-pullquotes {
	display: block;
	width: 100%;
	padding: .5em 1em;
}

#imgframe {
	width: 150px;
	height: 200px;
	overflow: hidden;
}

#imgframe img {
	height: 200px;
}

div.valignbio {
	vertical-align: middle;
}

.imagetbborderl {
	margin: .5em 1.5em 1em 0;
	padding-left: 0;
	float: left;
	border-top: 5px solid #eee;
	border-bottom: 5px solid #eee;
	border-right: 5px solid #eee;
}

.imagetbborderr {
	margin: 0 1em 1.5em .5em;
	padding-right: 0;
	float: right;
	border-top: 5px solid #eee;
	border-bottom: 5px solid #eee;
	border-left: 5px solid #eee;
}

.droppings {
	font-size: 2.5em;
	background: #444;
	color: #fff;
	width: 2em;
	height: 2em;
	margin: .2em .5em .2em 0;
	line-height: 2em;
	text-align: center;
	overflow: hidden;
	text-transform: uppercase;
}

.helpcenter1 {
	margin-left: auto;
	margin-right: auto;
	margin-top: 30%;
	margin-bottom: 70%;
}

.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%;
	height: 100%;
}

.uk-icon-buttonx {
	padding-top: 15px;
	box-sizing: border-box;
	display: inline-block;
	width: 45px;
	height: 45px;
	border-radius: 0;
	background: rgba(0,0,0,0);
	line-height: 45px;
	color: #fff;
	font-size: 18px;
	text-align: center;
	text-shadow: 0 1px 0 #000;
}

.uk-nav-red {
	background-color: rgba(228,75,57,0.8);
	color: #ffffff;
	background-image: none;
	border-color: rgba(0,0,0,0.1);
	box-shadow: inset 0 -1px 3px rgba(0,0,0,0.2);
	text-shadow: none;
}

.uk-nav-blue {
	background-color: rgba(77,96,122,0.8);
	color: #ffffff;
	background-image: none;
	border-color: rgba(0,0,0,0.1);
	box-shadow: inset 0 -1px 3px rgba(0,0,0,0.2);
	text-shadow: none;
}

.uk-nav-green {
	background-color: rgba(91,170,88,0.8);
	color: #ffffff;
	background-image: none;
	border-color: rgba(0,0,0,0.1);
	box-shadow: inset 0 -1px 3px rgba(0,0,0,0.2);
	text-shadow: none;
}

.uk-nav-white {
	background-color: rgba(147,147,147,0.8);
	color: #ffffff;
	background-image: none;
	border-color: rgba(0,0,0,0.1);
	box-shadow: inset 0 -1px 3px rgba(0,0,0,0.2);
	text-shadow: none;
}