﻿/* ==========================================================================
  Non-Responsive Styles
   ========================================================================== */
   
/*===============GENERAL STYLES===============*/
html,
button,
input,
select,
textarea {
    color: #000000;
}

body {
	line-height: 1.6em;
	color: #000000;
	font-family: 'Open Sans', Calibri, sans-serif;
	font-size: 14px;
	margin: 0;
	background: white;
	width: 100%;
}

em {
	font-family: 'Open Sans', Calibri, sans-serif;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #8191c1;
    margin: 1em 0;
    padding: 0;
	clear: both;
}

img { vertical-align: middle; }

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
	width: 100%;
}

textarea { resize: none; }

a { 
	text-decoration: none;
	color: #0033ff;
}

::-webkit-input-placeholder { /* WebKit browsers */
    color:    #8a8a8a;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #8a8a8a;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #8a8a8a;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    #8a8a8a;
}

.fisher{
	position: absolute;
	top: -9999px;
	left: -9999px;
}

h1, h2, h3, h4,
h1 a, h2 a, h3 a, h4 a{
	color: #223e92;
	line-height: normal;
	font-weight: 700;
	font-family: 'Open Sans Condensed', Arial, sans-serif;
}

ul.no-bullet{
	padding: 0;
	margin: 0;
}

ul.no-bullet li{
	list-style: none;
	padding: 0;
}

.col{
	float: left;
}

.two-thirds{ width: 66.67%; }
.one-third{ width: 33.33%; }

.photo{
	border: 1px solid #223e92;
	padding: 1px;
	background: white;
	margin-bottom: 1em;
}

.float-left{
	float: left;
	margin-right: 12px !important;
}

.float-right{ float: right; margin-left: 12px !important; }

.content{
	padding-right: 3em;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.content a:hover{ text-decoration: underline; }

.read-more{ color: #0033ff; }

/*===============INPUT===============*/
input[type="text"], 
input[type="email"], 
input[type="tel"],
input[type="password"], 
textarea {
	width: 100%;
	padding: 5px 0.5em 6px;
	background: #eeeeee;
	border: 1px solid #223e92;
	height: 36px;
	margin-bottom: 10px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	transition: background 0.125s linear 0s;
	-webkit-transition: background 0.125s linear 0s;
	-moz-transition: background 0.125s linear 0s;
	-o-transition: background 0.125s linear 0s;
	outline: 0 none;
	font-size: 15px;
	font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus, 
textarea:focus {
	outline: 0 none;
	background: white;
}

.customSelect{
	border: 1px solid #223e92;
	padding-right: 0.5em;
	background: #eeeeee;
	margin-bottom: 10px;
}

.customSelectInner{
	font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif !important;
	font-size: 15px;
	display: block;
	padding: 0 10px 0 0.5em;
	height: 34px;
	line-height: 34px;
	background: url(images/dropdown-arrow.png) right no-repeat;
}
   
.red-button{
	display: block;
	border: 1px solid #223e92;
	padding: 0;
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.red-button span{
	font-size: 16px;
	text-transform: uppercase;
	color: white;
	text-align: center;
	font-weight: 700;
	font-family: 'Open Sans Condensed', Arial, sans-serif;
	display: block;
	border: 1px solid white;
	padding: 0 12px;
	height: 32px;
	line-height: 32px;
	background: #f9060b; /* Old browsers */
	background: -moz-linear-gradient(top,  #f9060b 0%, #ef060b 19%, #be0607 81%, #b30606 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9060b), color-stop(19%,#ef060b), color-stop(81%,#be0607), color-stop(100%,#b30606)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f9060b 0%,#ef060b 19%,#be0607 81%,#b30606 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f9060b 0%,#ef060b 19%,#be0607 81%,#b30606 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f9060b 0%,#ef060b 19%,#be0607 81%,#b30606 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #f9060b 0%,#ef060b 19%,#be0607 81%,#b30606 100%); /* W3C */
}

.red-button:hover span{
	background: #ff0d12; /* Old browsers */
	background: -moz-linear-gradient(top,  #ff0d12 0%, #ff0d12 26%, #da0d0f 68%, #c40d0d 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff0d12), color-stop(26%,#ff0d12), color-stop(68%,#da0d0f), color-stop(100%,#c40d0d)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ff0d12 0%,#ff0d12 26%,#da0d0f 68%,#c40d0d 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ff0d12 0%,#ff0d12 26%,#da0d0f 68%,#c40d0d 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ff0d12 0%,#ff0d12 26%,#da0d0f 68%,#c40d0d 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ff0d12 0%,#ff0d12 26%,#da0d0f 68%,#c40d0d 100%); /* W3C */
}

.red-button.short{
	float: right;
	width: 59.5%;
}

/*===============HEADER===============*/
.header{
	width: 960px;
	margin: 0 auto;
	position: relative;
	padding: 12px 0;
}

.login{
	position: absolute;
	top: 0;
	right: 0;
	background: #a10000;
	padding: 7px 12px 7px 18px;
}

.login ul{
	height: 28px;
}

.login li{
	float: left;
	color: white;
	text-transform: uppercase;
	margin-right: 12px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.login li:hover{ background: white; }

.social-top{
	display: block;
	padding: 5px;
}

.social-top span{
	text-indent: -9999px;
	width: 20px;
	height: 18px;
	background: url(images/social-top.png) center top;
	display: block;
}

/*#google-top{ margin-right: 32px; }*/

#fb-top span{ background-position: left top; }
#twitter-top span{ background-position: -20px top; }
#google-top span{ background-position: -40px top; }

#fb-top:hover span{ background-position: left bottom; }
#twitter-top:hover span{ background-position: -20px bottom; }
#google-top:hover span{ background-position: -40px bottom; }

#contact-top .social-top {
	padding: 5px 8px;
}

#contact-top .social-top span {
	width: auto;
	font-family: 'Open Sans Condensed', Arial, sans-serif;
	background-image: none;
	text-indent: 0;
	font-weight: normal;
	color: #FFF;
	line-height: 18px;
}

#contact-top .social-top span::after {
	font-family: FontAwesome;
	content: '\f0e0';
	display: inline-block;
	padding-left: .75em;
}

#contact-top:hover span {
	color: #a10000;
}

.login-link{
	font-size: 11px;
	line-height: 28px;
	display: block;
}

.login-link{ background: #a10000 !important; }
.login-link a{ color: white; }
.login-link a:hover{ text-decoration: underline; }

.logo{ display: block; }

.header-logo{
	width: 34.48%; 
	display: block;
}

#header-logo{ width: 62.84%; }

.logo-text{
	display: block;
}

/*===============MENU===============*/
.menu{
	position: absolute;
	bottom: 0;
	right: 0;
	/*width: 60%;*/
	height: 38px;
}

.menu li{
	float: left; 
	position: relative;
}

#access{ display: none; }

/*
#menu-item-37{ width: 18%; }
#menu-item-36{ width: 21%; }
#menu-item-38{ width: 17.5%; }
#menu-item-35{ width: 14%; }
#menu-item-41{ width: 11%; }
#menu-item-33{ width: 18.5%; }
*/

/*#menu-item-316{ width: 121px; }*/

/*
	Our Story	- 104px
	Our Mission - 121px
	Our Team	- 100px
	Issues		- 81px
	FAQ			- 63px
	Contribute	- 107px
*/

#menu-item-37{ width: 104px; }
#menu-item-628{ width: 100px; }
#menu-item-35{ width: 86px; }
#menu-item-1601{ width: 81px; }
#menu-item-33{ width: 117px; }
#menu-item-1313{ width: 100px; }

.menu li a{
	display: block;
	color: #333399;
	font-weight: 700;
	font-family: 'Open Sans Condensed', Arial, sans-serif;
	text-align: center;
	font-size: 16px;
	padding: 8px 0;
}

.menu li a:hover{
	color: white;
	background: #a10000;
	/*background-image: url(images/menu-hover.png);*/
	transition: color 0.125s linear;
	-webkit-transition: color 0.125s linear;
	-moz-transition: color 0.125s linear;
	-o-transition: color 0.125s linear;
}

/*#menu-item-37 a:hover{ background-position: 0 top; }
#menu-item-316 a:hover{ background-position: -104px top; }
#menu-item-38 a:hover{ background-position: -225px top; }
#menu-item-35 a:hover{ background-position: -325px top; }
#menu-item-41 a:hover{ background-position: -406px top; }
#menu-item-33 a:hover{ background-position: -469px top; }*/

@media screen and (min-width: 651px){
	#menu-top-navigation ul, 
	#menu-top-navigation :hover ul ul, 
	#menu-top-navigation :hover ul :hover ul ul,
	#menu-top-navigation :hover ul :hover ul :hover ul ul{
		position: absolute;	
		left: -9999px;	
		top: -9999px;
		width: 0;
		height: 0;
	}

	#menu-top-navigation :hover ul {
		left: 0;
		top: 38px;
		white-space: nowrap;
		width: 260px;
		height: auto;
		z-index: 10;
		margin: 0;
		padding: 0;	
		background: #A10000;
		-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
		box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
	}

	#menu-top-navigation li ul li {
		padding: 0;
		height: auto;
		white-space: nowrap;
		text-align: left;
		float: none;
		font-size: 14px;
	}

	#menu-top-navigation :hover ul li a {
		display: block;
		text-decoration: none;
		text-align: left;
		margin: 0;
		padding: 9px 1em;
		height: auto;
		color: white;
		font-size: 14px;
		text-transform: none;
	}

	#menu-top-navigation :hover ul li a:hover {
		background: #339;
		transition: all 0.1s linear;
		-webkit-transition: all 0.1s linear;
		-moz-transition: all 0.1s linear;
		-o-transition: all 0.1s linear;
	}
}

/*===============BANNER===============*/
.banner-bg{ background: url(images/us-flag-cropped.png) center top no-repeat #a10000; }

.banner{
	width: 960px;
	margin: 0 auto;
	color: white;
	font-size: 15px;
	height: 289px;
	position: relative;
	overflow: hidden;
}

.banner-link{
	padding: 12px 0;
	min-height: 265px;
	display: block;
	overflow: hidden;
}

.banner a{ color: white; }

.banner img{
	margin: 0 auto;
}

.banner p{ line-height: 1.3; }

.title{
	font-size: 20px;
	font-weight: bold;
	text-shadow: -2px 2px 2px rgba(0, 0, 0, 0.4);
	margin: 0.5em 0 0;
	line-height: normal;
}

#posabs{
	position: absolute;
	left: 16%;
}

.wrapper{ padding-right: 18px; }

.button-link{
	font-size: 14px;
	color: white;
	font-family: 'Open Sans Condensed', Arial, sans-serif;
	background: rgba(74, 1, 0, 0.68);
	padding: 8px 1em;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	display: block;
	text-align: center;
	width: 100%;
	max-width: 320px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	float: right;
}

.banner li a:hover .button-link{
	background: rgba(74, 1, 0, 1);
	transition: all 0.125s linear;
	-webkit-transition: all 0.125s linear;
	-moz-transition: all 0.125s linear;
	-o-transition: all 0.125s linear;
}

.banner .photo{ min-width: 134px; }

.arrow{
	display: inline-block;
	border-width: 6px 9px;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) white;
	position: relative;
	top: 1px;
	margin-left: 5px;
}

/**Slide 1**/
.no-bullet.legend{
	font-family: 'Open Sans Condensed', Arial, sans-serif;
	background: rgba(74, 1, 0, 0.68);
	padding: 20px;
	margin: 41px 0;
	width: 178px;
}

.legend li span.color{
	width: 14px;
	height: 14px;
	margin-right: 12px;
	display: inline-block;
	border: 2px solid white;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	position: relative;
	top: 3px;
}

.legend.whitebg {
	background: #a10000;
	color: white; 
}

.color#grn{ background: #959d33; }
.color#drkgrn{ background: #404041; }
.color#blue{ background: #456a86; }
.color#brown{ background: #c4bb97; }
.color#ylw{ background: #d3a900; }

.legend span{ font-style: italic; }

#us-map{
	max-width: 383px;
}

.us-map{
	position: absolute;
	height: 100%;
	right: 0;
	width: 66.67%;
}

.slide1-section{ position: relative; }

/**Slide 2**/
#our-story-thumb{
	max-width: 112px;
	min-width: 0;
}

/**Slide 3**/
ul.texas{ margin-bottom: 1em; }
ul.texas li{
	background: url(images/star-bullet.png) left 1px no-repeat;
	padding-left: 28px;
	line-height: 1.3;
}

.banner-bg.interior-banner{
	height: 33px;
	background: url(images/us-flag-cropped.png) center top no-repeat #a10000;
}

/**Slide 5**/
#slide5{
	background: url(images/curtain.png) top center no-repeat; 
	overflow: hidden;
}

.curtain-wrapper{
	padding-top: 8px;
	max-width: 660px;
	margin: 0 auto;
}

.event-info{
	width: 500px;
	margin: 0 auto;
	overflow: hidden;
}

.event-info p{
	float: left;
	margin-right: 3em;
	margin-top: 0;
	line-height: 1.2;
}

.banner-speakers{
	clear: both;
	overflow: hidden;
}

.banner .speaker{
	float: left;
	width: 23%;
	text-align: left;
}

.banner .speaker:last-child{ width: auto; }

.banner .speaker p{
	margin: 0; 
	font-size: 14px;
	clear: both;
	line-height: 1.1;
}

.banner .speaker img{
	width: 81px; 
	min-width: 0;
	float: left;
}


/*===============CTAs===============*/
.center{
	width: 960px;
	margin: 0 auto;
	overflow: hidden;
	padding-bottom: 2em;
}

.ctas{ overflow: hidden; }

.cta{
	float: left;
	width: 33.33%;
	display: block;
	color: black;
	text-align: center;
	padding: 12px 18px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#member{ margin-bottom: 10px; }

.cta p{
	line-height: 1.4; 
	margin: 10px 0;
}

p.heading{
	color: #223e92;
	font-size: 24px;
	font-family: 'Open Sans Condensed', Arial, sans-serif;
	font-weight: 700;
	text-align: center;
	line-height: normal;
	margin: 0;
}

#side-form input[type="tel"].short{
	width: 38%;
	float: left;
	margin-right: 2.5%;
	margin-bottom: 0;
}

/*===============SIDE PANE===============*/
.side-pane{ margin-top: 18px; }

.side{
	margin-bottom: 18px; 
	text-align: center;
}

.side-content{ 
	padding: 0 18px; 
	overflow: hidden;
}

.side p{ margin-top: 0; }
.side .red-button{ margin-top: 0 !important; }

.follow-link{
	background: url(images/twitter.png) left center no-repeat;
	padding-left: 58px;
	text-align: left;
	margin-left: 1em;
	margin-bottom: 8px;
}

.twitter-username{ display: block; } 

#twitter-update-list{
	list-style: none;
	padding: 0;
	margin: 0;
}

.tweet {
	display: block;
	font-size: 14px;
	padding: 1em;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #FFF;
	border: 1px solid #CCC;
	-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .3);
	-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, .3);
	box-shadow: 0 1px 0 rgba(0, 0, 0, .3);
	position: relative;
	margin-bottom: 14px;
	text-align: left;
	color: #666666;
}

.tweet:before {
	content: ' ';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	bottom: -11px;
	left: 7px;
	border-top: 10px solid #CCC;
	border-right: 10px solid rgba(204, 204, 204, 0);
}

.tweet:after {
	content: ' ';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	bottom: -8px;
	left: 8px;
	border-top: 8px solid #FFF;
	border-right: 8px solid rgba(255, 255, 255, 0);
}

.tweet a:hover{ text-decoration: underline; }

/*===============EVENTS WIDGET===============*/
.side-events .flexslider{ margin: 0; }

.side-events li{ margin: 12px 0 0; }
.side-events li a{ display: block; }

.side-events .single-event{ 
	margin-bottom: 12px; 
	text-align: left;
	padding: 0 1em;
}

.side-events img{
	float: left; 
	margin-right: 10px;
	border: 1px solid #223E92;
	padding: 1px;
	background: white;
}

.side-events p{
	line-height: normal; 
	margin: 0;
}

.side-events .date-time{
	font-size: 12px;
	color: black;
}

.side-events li .event-name{
	font-weight: bold;
	color: #D21241;
}

.side-events li .event-location{
	font-size: 12px;
	color: #03F;
	font-weight: normal;
}

.side-events li a:hover { text-decoration: underline; }
.side-events .green-button{ margin-top: 0; }

/*===============FOOTER===============*/
.footer-wrap{
	background: url(images/star.png) repeat-x left top;
	padding-top: 7px;
	position: relative;
	margin-top: 68px;
}

.footer-logo{
	position: absolute;
	left: 50%;
	text-align: center;
	margin-left: -165.5px;
	margin-top: -69px;
}

#footer-logo{
	max-width: 121px; 
	margin: 0 auto 10px;
}

.footer{
	width: 960px;
	margin: 40px auto 12px;
	overflow: hidden;
}

.footer .link-list{
	margin-right: 2em;
	margin-bottom: 1em;
}

.footer ul{
	font-family: 'Open Sans Condensed', Arial, sans-serif;
	font-weight: 700;
}

.footer li:before{ content: '· '; }
.footer li a{ color: #333399; }
.footer li a:hover{ text-decoration: underline; }

.link-heading{
	text-transform: uppercase;
	font-family: 'Open Sans Condensed', Arial, sans-serif;
	font-weight: 700;
	display: block;
}

.cta-button{
	font-size: 18px;
	text-transform: uppercase;
	color: white;
	text-align: center;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-family: 'Open Sans Condensed', Arial, sans-serif;
	font-weight: 700;
	width: 100px;
	float: left;
	margin-bottom: 18px;
	transition: background 0.125s linear 0s;
	-webkit-transition: background 0.125s linear 0s;
	-moz-transition: background 0.125s linear 0s;
	-o-transition: background 0.125s linear 0s;
	padding: 5px 0;
}

#red{ background: #a10000; margin-right: 11px; }
#green{ background: #009933; }

#red:hover{ background: #B20808; color: white; }
#green:hover{ background: #05A73B; color: white; }

.social-bottom{
	height: 32px;
	width: 32px;
	display: inline-block;
	background: url(images/social-bottom.png);
	float: right;
	margin-left: 6px;
}

#fb-bottom{ background-position: 0 top; }
#twitter-bottom{ background-position: -32px top; clear: left; }
#google-bottom{ background-position: -64px top; }

#fb-bottom:hover{ background-position: 0 bottom; }
#twitter-bottom:hover{ background-position: -32px bottom; }
#google-bottom:hover{ background-position: -64px bottom; }

.copyright{
	color: black;
	font-size: 12px;
	margin-top: 18px;
	text-align: right;
}

.copyright p{ margin: 0; }
.copyright a{ color: black; }
.copyright a:hover{ text-decoration: underline; }

/*===============RECENT NEWS===============*/
.news h3,
.news p{ margin: 0 0 0.5em; }

.news p{ color: black; }

.news a:hover{ text-decoration: none; }
.news a:hover h3,
.news a:hover .read-more{ text-decoration: underline; }

/*===============INTERIOR FORMS===============*/
.wpcf7-form,
.interior-form{ max-width: 400px; }

.interior-form span,
.wpcf7-form span{ font-family: 'Open Sans Condensed', Arial, sans-serif;  }

.interior-form span{ display: block; }
.wpcf7-form textarea{ height: 10em; }

.interior-form .short,
.wpcf7-form .short{
	width: 33.33%; 
	margin-right: 1.25%;
	float: left;
}

.interior-form .short.state-wrapper,
.wpcf7-form .short.state-wrapper{ width: auto; }

.error,
span.wpcf7-not-valid-tip{
	background: #FFF;
	border: 1px solid #F00;
	font-size: 12px;
	padding: 2px 5px;
	display: inline-block;
	float: right;
	position: relative;
	top: -6px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.error{ float: none; }

.wpcf7-response-output {
	display: block;
	clear: both;
	background: white;
	padding: 0.5em;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	text-align: center;
	margin: 1em 0;
}

.wpcf7-mail-sent-ok{ border: 1px solid #1FDA19; }
.wpcf7-validation-errors{ border: 1px solid red; }

.interior-form .one-third,
.wpcf7-form-control.wpcf7-text.one-third{
	width: 32.5%;
	margin-right: 1.25%;
	float: left;
}

.interior-form .half,
.wpcf7-form-control.wpcf7-text.half {
	width: 48.75%;
	margin-right: 1.25%;
	float: left;
}

.interior-form .two-thirds,
.wpcf7-form-control.wpcf7-text.two-thirds {
	width: 66.25%;
	margin-right: 1.25%;
	float: left;
}

.interior-form .last,
.wpcf7-form .last{ margin-right: 0 !important; }

.membership .customSelectInner{ width: 236px !important; }

.form-wrapper{
	border: 1px solid #223E92;
	padding: 0 1em;
	overflow: hidden;
	max-width: 400px;
	margin-bottom: 2em;
}




/*===============DONATION THERMOMETER===============*/

.content .thermometer {
	margin: 2em 0 2em 3%;
}

.content .thermometer.left-side {
	width: 35%;
	float: left;
}

.content .lpac-thermometer-content {
	width: 62%;
	float: left;
}

.thermometer {
    position: relative;
}

.main-slideshow .thermo-col {
	width: 24%;
}

.banner .thermometer {
	margin-left: 1em;
}

.thermometer .tube {
	height: 240px;
    width: 24px;
    position: relative;
	background: #EEF4FB; /* Old browsers */
	background: -moz-linear-gradient(left, #cfe1f4 0%, #d5e5f5 11%, #fefefe 32%, #cfe1f4 47%, #b5cbe9 74%, #749bd2 95%, #5c8cc9 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,#cfe1f4), color-stop(11%,#d5e5f5), color-stop(32%,#fefefe), color-stop(47%,#cfe1f4), color-stop(74%,#b5cbe9), color-stop(95%,#749bd2), color-stop(100%,#5c8cc9)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left, #cfe1f4 0%,#d5e5f5 11%,#fefefe 32%,#cfe1f4 47%,#b5cbe9 74%,#749bd2 95%,#5c8cc9 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left, #cfe1f4 0%,#d5e5f5 11%,#fefefe 32%,#cfe1f4 47%,#b5cbe9 74%,#749bd2 95%,#5c8cc9 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left, #cfe1f4 0%,#d5e5f5 11%,#fefefe 32%,#cfe1f4 47%,#b5cbe9 74%,#749bd2 95%,#5c8cc9 100%); /* IE10+ */
	background: linear-gradient(to right, #cfe1f4 0%,#d5e5f5 11%,#fefefe 32%,#cfe1f4 47%,#b5cbe9 74%,#749bd2 95%,#5c8cc9 100%); /* W3C */
	border-radius: 15px 15px 0 0;
	border: 1px solid #999;
}

.banner .thermometer .tube {
	height: 215px;
	border-color: #700;
	box-shadow: 0 0 10px rgba(0, 0, 0, .5);			
}

.thermometer .track {
    width: 100%;
    height: 100%;
	border-radius: 8px 8px 0 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    margin: 0 auto;
    background: transparent;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255, 255, 255, .85)), color-stop(1%,rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, .85) 0%, rgba(0, 0, 0, .05) 5%, rgba(0, 0, 0, 0) 10%);
    background:      -o-linear-gradient(top, rgba(255, 255, 255, .85) 0%, rgba(0, 0, 0, .05) 5%, rgba(0, 0, 0, 0) 10%);
    background:     -ms-linear-gradient(top, rgba(255, 255, 255, .85) 0%, rgba(0, 0, 0, .05) 5%, rgba(0, 0, 0, 0) 10%);
    background:    -moz-linear-gradient(top, rgba(255, 255, 255, .85) 0%, rgba(0, 0, 0, .05) 5%, rgba(0, 0, 0, 0) 10%);
    background:   linear-gradient(to bottom, rgba(255, 255, 255, .85) 0%, rgba(0, 0, 0, .05) 5%, rgba(0, 0, 0, 0) 10%);
    background-position: right -1px;
    background-size: 50% 10%;
    background-repeat: repeat-y;
}

.thermometer .track::after {
	content: ' ';
	display: block;
    width: 100%;
    height: 100%;
	border-radius: 8px 8px 0 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    margin: 0 auto;
    background: transparent;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255, 255, 255, .65)), color-stop(1%,rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, .65) 0%, rgba(0, 0, 0, .05) 5%, rgba(0, 0, 0, 0) 10%);
    background:      -o-linear-gradient(top, rgba(255, 255, 255, .65) 0%, rgba(0, 0, 0, .05) 5%, rgba(0, 0, 0, 0) 10%);
    background:     -ms-linear-gradient(top, rgba(255, 255, 255, .65) 0%, rgba(0, 0, 0, .05) 5%, rgba(0, 0, 0, 0) 10%);
    background:    -moz-linear-gradient(top, rgba(255, 255, 255, .65) 0%, rgba(0, 0, 0, .05) 5%, rgba(0, 0, 0, 0) 10%);
    background:   linear-gradient(to bottom, rgba(255, 255, 255, .65) 0%, rgba(0, 0, 0, .05) 5%, rgba(0, 0, 0, 0) 10%);
    background-position: right -6%;
    background-size: 25% 10%;
    background-repeat: repeat-y;

}

.thermometer .progress {
    height:0%;
    width:100%;
    background: #E63C31; /* Old browsers */
	background: -moz-linear-gradient(left, #ea6966 0%, #f05743 14%, #f9baa4 32%, #e63c31 65%, #c93327 80%, #ba2f21 85%, #93200b 95%, #7c1702 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,#ea6966), color-stop(14%,#f05743), color-stop(32%,#f9baa4), color-stop(65%,#e63c31), color-stop(80%,#c93327), color-stop(85%,#ba2f21), color-stop(95%,#93200b), color-stop(100%,#7c1702)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left, #ea6966 0%,#f05743 14%,#f9baa4 32%,#e63c31 65%,#c93327 80%,#ba2f21 85%,#93200b 95%,#7c1702 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left, #ea6966 0%,#f05743 14%,#f9baa4 32%,#e63c31 65%,#c93327 80%,#ba2f21 85%,#93200b 95%,#7c1702 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left, #ea6966 0%,#f05743 14%,#f9baa4 32%,#e63c31 65%,#c93327 80%,#ba2f21 85%,#93200b 95%,#7c1702 100%); /* IE10+ */
	background: linear-gradient(to right, #ea6966 0%,#f05743 14%,#f9baa4 32%,#e63c31 65%,#c93327 80%,#ba2f21 85%,#93200b 95%,#7c1702 100%); /* W3C */
    position: absolute;
    bottom:0;
    left:0;
}

.thermometer .goal {
    position: absolute;
    top: 0;
    width: 100%;
}

.thermometer .amount {
    display: block;
    width: 10em;
    position: absolute;
    left: 150%;
    font-family: 'Open Sans', Calibri, sans-serif;
    font-weight: bold;
    font-size: 16px;
    z-index: 7;
}

.banner .thermometer .amount { color: #FFF; }
.content .thermometer .amount { color: #333; }

.thermometer .progress .amount {
	top: -.75em;
	line-height: 1.5em;
	position: relative;
	padding-left: 2em;
}

.thermometer .progress .amount::before {
	content: ' ';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	margin-right: .5em;
	border-right: 1.5em solid #e01f26;
	border-top: .75em solid rgba(224, 31, 38, 0);
	border-bottom: .75em solid rgba(224, 31, 38, 0);
	-webkit-transform: rotate(360deg);
}

.thermometer .progress .amount::after {
	content: ' ';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	border-right: 1.5em solid rgba(255, 210, 174, .5);
	border-top: .75em solid rgba(255, 210, 174, 0);
	-webkit-transform: rotate(360deg);
}

.thermometer .bulb {
	display: block;
	position: absolute;
	top: 98%;
	left: -50%;
	width: 200%;
	height: 0;
	padding-bottom: 200%;
	background: #E63C31; /* Old browsers */
	background-image: -moz-radial-gradient(center, ellipse cover, #E63C31 0%, #E63C31 60%, #701400 100%); /* FF3.6+ */
	background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#E63C31), color-stop(60%,#E63C31), color-stop(100%,#701400)); /* Chrome,Safari4+ */
	background-image: -webkit-radial-gradient(center, ellipse cover, #E63C31 0%,#E63C31 60%,#701400 100%); /* Chrome10+,Safari5.1+ */
	background-image: -o-radial-gradient(center, ellipse cover, #E63C31 0%,#E63C31 60%,#701400 100%); /* Opera 12+ */
	background-image: -ms-radial-gradient(center, ellipse cover, #E63C31 0%,#E63C31 60%,#701400 100%); /* IE10+ */
	background-image: radial-gradient(farthest-side at 25% 25%, #E63C31 0%, #E63C31 60%, #701400 100%);
	border-radius: 50%;
	z-index: 6;
	box-shadow: inset 0 0 20px rgba(255, 50, 50, .5);
	border-bottom: 2px solid #700;
}

.banner .thermometer .bulb {
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .5), inset 0 0 20px rgba(255, 50, 50, .5);
}

.thermometer .bulb::after {
	content: ' ';
	display: block;
	position: absolute;
	width: 86%;
	height: 86%;
	left: 7%;
	top: 7%;
	border-radius: 50%;
	background-image: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 60%); /* FF3.6+ */
	background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255,255,255,1)), color-stop(60%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
	background-image: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 60%); /* Chrome10+,Safari5.1+ */
	background-image: -o-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 60%); /* Opera 12+ */
	background-image: -ms-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 60%); /* IE10+ */
	background-image: radial-gradient(circle at top left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 60%);
}




.main-slideshow .thermo-col { width: 24%; }
.banner .lpac-content { width: 76%; }

.banner .title.major {
	font-family: 'Open Sans Condensed', Calibri, Lucida, sans-serif;
	font-size: 32px;
    margin: 0 0 .5em 0;
}

.banner .lpac-img {
    margin: 0 0 .5em 0;
}

.banner .lpac-description {
	font-weight: bold;
	font-size: 17px;
	width: 48%;
	float: left;
}



@media screen and (max-width: 960px) {

	.main-slideshow .thermo-col { width: 17%; }
	.banner .lpac-content { width: 83%; }

	.banner .lpac-description {
		float: none;
		width: 80%;
		margin: 1em auto;
	}

	.banner .thermometer .amount {
		display: none !important;
	}

	.content .lpac-thermometer-content,
	.content .thermometer.left-side {
		float: none;
		width: auto;
	}

	.content .thermometer .tube {
		width: 80%;
		height: 200px;
		margin: auto;
		border-radius: 0;
	}

	.content .thermometer .bulb {
		display: none;
	}

	.content .thermometer .goal {
		bottom: 100%;
		top: auto;
	}

	.content .thermometer .goal .amount {
		left: 5%;
		bottom: 100%;
		top: auto;
	}

	.content .thermometer .progress .amount {
		right: 5%;
		text-align: right;
		float: right;
		left: auto;
		top: 0;
		color: #FFF;
		text-shadow: 0 0 5px rgba(0, 0, 0, .75);
		width: 200px;
	}

	.content .thermometer .progress .amount::before,
	.content .thermometer .progress .amount::after {
		display: none;
	}

}










/* ==========================================================================
  Responsive Styles
   ========================================================================== */
@media screen and (max-width: 960px){
	img{
		max-width: 100%;
		height: auto;
	}
	
	.header,
	.banner,
	.center,
	.footer{ width: 90%; }
	
	.menu li a:hover{ background: #A10000; }	
}

@media screen and (max-width: 320px){
	body{ width: 320px; }
}

/*===============HEADER & MENU===============*/
/* Drop menu below logo */
@media screen and (max-width: 800px){
	.header{
		overflow: hidden; 
		padding-bottom: 0;
	}
	
	.menu{
		position: static;
		float: right;
		/*width: 80%;*/
	}
	
	.header-logo{ width: auto; }
	#header-logo{ width: 150px; }
	.logo-text{ width: 245px; }
}

@media screen and (max-width: 700px){
	/*.menu{ width: 100%; }*/
}

@media screen and (max-width: 650px){
	.login{ padding: 5px 12px 5px 18px; }
	/*#google-top{ margin-right: 12px; }*/
	
	@font-face {
	   font-family: 'IconicFill';
		src: url('fonts/iconic_fill.eot');
		src: url('fonts/iconic_fill.eot?#iefix') format('embedded-opentype'),
			 url('fonts/iconic_fill.woff') format('woff'),
			 url('fonts/iconic_fill.ttf') format('truetype'),
			 url('fonts/iconic_fill.svg#iconic') format('svg');
		font-style: normal;
		font-weight: normal;
	}
		
	#access [data-icon]:before {
		font-family: IconicFill;
		content: '\e055';
		margin-right: .5em;
		font-weight: normal;
	}

	#access {
		display: block;
		text-align: right;
		color: #339;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		padding: 11px 1em;
		font-size: 16px;
		position: relative;
		font-family: 'Open Sans Condensed', Arial, sans-serif;
	}
	
	#access.clicked{
		background: #A10000; 
		color: white;
		margin-top: 1em;
	}
	
	.menu-item{ width: 100% !important; }

	.menu{ 
		height: auto; 
		width: 100%;
		padding-top: 0;
		background: none;
		-webkit-box-shadow: none;
		box-shadow: none;
	}

	.menu .mobile-menu-container {
		width: 100%;
		height: 0;
		position: relative;
		overflow: hidden;
		z-index: 1;
	}

	.mobile-menu-container ul {
		position: absolute;
		list-style: none;
		z-index: 12;
		padding: 0;
		margin: 0;
		width: 100%;
		overflow: visible;
	}

	.mobile-menu-container > ul {
		top: 0;
		left: 0;
	}

	.mobile-menu-container li {
		height: auto;
		width: 100%;
		display: block;
		position: relative;
		list-style: none;
		z-index: 13;
	}

	.mobile-menu-container li a {
		display: block;
		width: 100%;
		text-indent: 5%;
		text-align: left;
		text-transform: none;
		background: white;
	}
	
	.mobile-menu-container li a:hover{
		background: #A10000;
		color: white;
		transition: all 0.125s linear;
		-webkit-transition: all 0.125s linear;
		-moz-transition: all 0.125s linear;
		-o-transition: all 0.125s linear;
	}
	
	.mobile-menu-container li a.back:before {
		content: '« ';
	}

	.mobile-menu-container li a.expand {
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 30;
		width: 40pt;
		text-indent: 0;
		height: 38px;
	}

	.mobile-menu-container li a.expand span {
		font-family: IconicFill;
		display: block;
		width: 39pt;
		text-align: center;
		font-size: 18pt;
		position: absolute;
		top: 0;
		left: 0;
		padding: 0;
		line-height: 38px;
	}

	.mobile-menu-container ul ul{
		position: absolute;
		left: -9999px;
		top: -9999px;
		display: none;
		z-index: 12;
		width: 100%;
		height: auto;
	}
}

@media screen and (max-width: 500px){
	.header-logo{
		margin-top: 44px;
		display: block;
	}
}

/*===============BANNER===============*/
@media screen and (max-width: 960px){
	.banner-bg{ background: url(images/us-flag.png) #A10000 left top no-repeat; }
	.banner{ height: auto; padding-bottom: 35px; }
	.slide1-section{ width: 100%; }
	#us-map{ height: 100%; }
	.no-bullet.legend{ margin: 0; }
	#slide5{ background: none; }
}

@media screen and (max-width: 700px){
	.content{ padding: 0; }
	.one-third{ width: 100%; }
	.two-thirds{ width: 100%; }
	.title{ font-size: 18px; }
	.banner{ font-size: 13px; }
	.no-bullet.legend{ width: 135px; }
}

@media screen and (max-width: 600px){
	.banner-speakers p{ float: none; }
	.banner .speaker{
		width: 85px;
		margin-right: 2em;
		margin-bottom: 1em;
	}
	
	.banner .speaker p{ font-size: 13px; }
}	

@media screen and (max-width: 550px){
	.us-map{
		width: 100%;
		position: static;
		clear: both;
	}
	
	#us-map{
		width: 100%;
		max-width: 250px;
		height: auto;
	}
	
	.no-bullet.legend{
		width: auto; 
		margin-bottom: 1em;
		margin-right: 0 !important;
	}
	
	.legend li{
		float: left;
		width: 50%;
	}
}

@media screen and (max-width: 450px){
	.event-info p{
		float: none;
	}
}

/*===============CTAs===============*/
@media screen and (max-width: 800px){
	p.heading{ font-size: 22px; }
}

/* Drop contribute CTA */
@media screen and (max-width: 700px){
	.cta{ width: 50%; }
	.cta.contribute{ width: 100%; }
	
	.cta.contribute .red-button{
		width: 49%; 
		float: right;
	}
	
	#member{
		float: left; 
		margin-bottom: 0;
	}
}

/* Stack everything */
@media screen and (max-width: 500px){
	.cta{ width: 100%; }
}

@media screen and (max-width: 400px){
	.cta.contribute .red-button{
		width: 100%;
		float: none !important;
	}

	#member{ margin-bottom: 10px; }
}

/*===============FOOTER===============*/
/* Stack */
@media screen and (max-width: 800px){
	.footer .two-thirds,
	.footer .one-third{
		width: 100%;
	}
	
	.copyright{
		float: left;
		text-align: left;
		margin: 0;
	}
}

@media screen and (max-width: 500px){
	.footer-logo{
		width: 250px;
		margin-left: -125px;
		margin-top: -72px;
	}
}

/*===============WORDPRESS STYLES===============*/
.skip-link {
	position: absolute;
	left: -9999em;
	top: -9999em;
}

.entry-meta, .entry-utility {
	font-size: 11px;
	line-height: 14px;
	color: #737373;
	margin-bottom: 1em;
}

.entry-utility { 
	text-align: right; 
	margin-top: 1em;
}

.single-post .entry-utility {
	text-align: center;
	margin: 15px 0;
	padding: 15px;
	background: rgb(240, 240, 240);
	border: 1px solid #DDD;
}

#nav-above, #nav-below {
	overflow: hidden;
	font-size: 11px;
	border: 1px solid #EEE;
	background: #FCFCFC;
	padding: 5px;
}

#nav-above { margin-top: 9px; }
#nav-below { 
	margin-top: 2em; 
	margin-bottom: 1em;
}

.nav-previous {
	width: 45%;
	float: left;
	padding-right: 5%;
}

.nav-next {
	width: 45%;
	float: right;
	padding-left: 5%;
	text-align: right;
}

.nav-previous a:hover,
.nav-next a:hover{
	color: #136F9F;
	text-decoration: none;
}

.edit-link.edit-link-page{
	clear: both; 
	display: block;
}

/*===============COMMENTS===============*/

#comments {
	overflow: hidden;
	margin-top: 2em;
}

#commentform p#login {
	font-size: 11px;
	padding: 0 10px;
	text-align: right;
}

#commentform #form-section-comment {
	margin-top: 15px;
}

.formcontainer{ 
	padding-right: 1em;
	max-width: 500px;
}

.form-section .form-label {
	float: left;
	width: 25%;
	display: inline;
	height: 31px;
	margin-bottom: 1em;
	line-height: 31px;
	clear: left;
}

.form-section .form-textarea,
.form-section .form-input{
	width: 75%;
	float: right;
}

#form-allowed-tags {
	font-size: 10px;
	line-height: 12px;
	text-align: center;
	padding: 5px;
	width: 75%;
	margin: 0 auto;
}

.content .button-link{
	width: 75%;
	margin: 1em 0;
	background: #5a1819;
	-webkit-box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5), inset 0px 2px 1px -1px rgba(255, 255, 255, 0.25);
	box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5), inset 0px 2px 1px -1px rgba(255, 255, 255, 0.25);
	border: none;
}

.content .button-link:hover{
	background: #672122;
	transition: background 0.125s linear 0s;
	-webkit-transition: background 0.125s linear 0s;
	-moz-transition: background 0.125s linear 0s;
	-o-transition: background 0.125s linear 0s;
}

.comment-reply-link a{
	width: auto;
	padding-left: 1em;
	padding-right: 1em;
}

#comments-list h3 {
	border-bottom: 1px dotted #DDD;
	padding: 3px 0;
}

#comments-list ol {
	border: 1px solid #DDD;
	background: #f8f8f8;
	margin-top: 5px;
}

#comments-list ol, #comments-list ul {
	list-style: none;
	overflow: hidden;
	padding: 1.5em 2em;
}

#comments-list .children {
	padding: 5px;
	margin-left: 32px;
	background: #EEE;
}

.comment {
	margin-bottom: 5px;
}

.comment .comment-content {
	padding: 0 1em;
}

#comments-list .children .comment {
	background: #EEE;
	border: none;
	padding: 0;
	margin: 0;
}

#comments-list .children .children {
	border-top: 1px dotted #BBB;
	margin-top: 7px;
	padding-right: 0;
	padding-top: 10px;
}

#comments-list .children .comment-reply-link {
	margin-right: 0;
}

.comment-author {
	overflow: hidden;
	margin-bottom: 5px;
}

.comment-author img {
	float: left;
	margin-right: 10px;
}

.comment-author span {
	display: block;
	float: left;
	line-height: 32px;
	font-size: 18px;
	color: #C00;
	text-shadow: 0px 1px 1px #FFF;
}

.comment.bypostauthor .comment-author span {
	font-weight: bold;
}

.comment-meta {
	font-size: 11px;
}

.caption {
	line-height: 14px;
	color: #333333;
	font-size:12px;
}

.officer-list h2 {
	line-height: 18px }

.officer-list .office {
	font-size: 15px; }