/*-----------------------------------------------------------------------------------

	Main CSS Document

-------------------------------------------------------------------------------------

	1.	Document Setup
	2.	Header Styles
	3.	Blog & Post Styles
	4.	Sidebar & Widgets
	5.	Portfolio
	6.	Footer
	7.	Shortcodes
	8.	Comments
	9.	Feedback & To Top Links
	10.	Wordpress specific typography (and changes/additions to bootstrap)
	11.	Responsive Styles

--------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------*/






/*-----------------------------------------------------------------------------------*/
/*	1.	Document Setup mod 10/29/15
/*-----------------------------------------------------------------------------------*/

body {
	margin-top: 150px;
	color:	#333;
}

a, a:active {
    color: #EC5456;
    outline: none;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
a:hover, a:active {
    outline: none;
    text-decoration: none;
    color: #000;
}
*::-moz-selection {
    background: none repeat scroll 0 0 #FF9999;
}
img::-moz-selection {
    background: none repeat scroll 0 0 transparent;
}

/*-----------------------------------------------------------------------------------*/
/*	2.	Header Styles
/*-----------------------------------------------------------------------------------*/

header {
	background-color: #FFF;
    border-top: 10px solid #EC5456;
    left: 50%;
    margin-left: -50%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
}
header .container{
	border-bottom: 1px solid #E5E5E5;
	height: 130px;
}

header .callout{
	background: #fff url('../../../uploads/2013/01/banner.png') center right no-repeat;
	height: 10px;
	width: 100%;
}
header h1{
	line-height: 119px;
	float: left;
}
header h1 img{
	line-height: 119px;
	vertical-align: middle;
}
header h1 a{
	color: #000;
}
header nav {
	float: right;
	margin-top: 61px;
}
header #responsive-nav {
	display: none; 
	clear: both; 
	width: 390px;
	margin: 0 auto;
	position:relative;
	padding: 0;
	height: 48px;
	margin-bottom: 10px;
}
header #responsive-nav select{
    z-index:10;
    width:100% !important;
    height:38px !important;
    border-radius: 0;
    line-height:38px;
    box-shadow: none;
    position:absolute;
    top: 0;
    left:0;
}
header #responsive-nav span.select{
    position:absolute;
    top:0;
    left:0;
    margin: 0 auto;
    width:100%;
    height:36px;
    border: 1px solid #000;
    line-height:36px;
    text-indent:10px;
    padding: 0;
    background: #fff url('../img/dropdown-bg.png') center right no-repeat;
    cursor:default;
    z-index:1;
    text-align: left;
}
header #responsive-nav:hover span.select{
    border-color: #EC5456;
}

/*-----------------------------------------------------------------------------------*/
/*	3.	Blog & Post Styles
/*-----------------------------------------------------------------------------------*/

.span8.post {
	margin-left: 0;
	margin-bottom: 40px;
	width: 100%;
}
.postheader {
	float: left;
	width: 100%;
	margin-bottom: 20px;
}
.posttitle{
	margin-bottom: 10px;
}
.postmeta ul {
	padding: 0 0 20px;
	margin: 0;
	list-style: none;
}
.postmeta ul li,
.cancel-comment-reply{
	display: inline-block;
	margin-right: 20px;
	text-transform: uppercase;
	font-size: 0.85em;
}
.postmeta ul li.right{
	float: right;
	margin-right: 0;
}
.postheader img {
	display: block;
	width: 100%;
	max-width: 100%;
}
.entry-content  {
	margin-bottom: 5%;
}
/* Gallery Post Format */
.format-gallery .postheader ul {
	margin: 0;
}
.format-gallery .postheader ul li {
	list-style: none;
}
.format-gallery .postheader,
.sidebar_slides {
	position: relative;
	overflow: hidden;
}
.format-gallery .rslides,
.sidebar_slides .rslides {
	position: relative;
	list-style: none;
	overflow: hidden;
	width: 100%;
	padding: 0;
	margin: 0;
}
.format-gallery .rslides li,
.sidebar_slides .rslides li {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	list-style: none;
	padding: 0 !important;
}
.format-gallery .rslides img,
.sidebar_slides .rslides img {
	display: block;
	height: auto;
	width: 100%;
	border: 0;
}
.format-gallery .rslides_tabs,
.sidebar_slides .rslides_tabs {
	display: none;
}

.format-gallery a.next,
.sidebar_slides a.next,
.format-gallery a.prev,
.sidebar_slides a.prev {
	width: 48px; 
	height: 48px; 
	margin: 0; 
	display: block; 
	background: url(../img/slider-arrows.png) no-repeat; 
	position: absolute; 
	bottom: 10px; 
	cursor: pointer; 
	text-indent: -999em;
	outline: none;
}
.format-gallery a.next, .sidebar_slides a.next {background-position: -48px 0; left: 68px;}
.format-gallery a.next:hover, .sidebar_slides a.next:hover {background-position: -48px -48px;}
.format-gallery a.prev, .sidebar_slides a.prev {left: 10px;}
.format-gallery a.prev:hover,.sidebar_slides a.prev:hover {background-position: 0 -48px;}

/* Full Width */
.fullposttitle {
	margin-bottom: 20px;
}
.fullposttitle h2 {
	float: left;
	color: #EC5456;
}

.fullposttitle h2:hover { 
	color: #000; 
}
.fullposttitle.center h2 {
	text-align: center;
	width: 100%;
}
.center {
	text-align: center;
}
/* Pagination */
.pagenavi ul{
	list-style: none;
	margin-bottom: 20px;
	margin-top: 20px;
}
.pagenavi ul li{
	display: inline-block;
	margin-right: 10px;
}
.pagenavi ul li a{
	display: block;
	padding: 5px 10px;
	-webkit-transition: background 0.3s ease-in-out;
	-moz-transition: background 0.3s ease-in-out;
	-ms-transition: background 0.3s ease-in-out;
	-o-transition: background 0.3s ease-in-out;
	transition: background 0.3s ease-in-out;
}
.pagenavi ul li a:hover{
	background: #EEE;
	color: #000;
}
.pagenavi ul li.disabled a{
	background: #000;
	color: #fff;
}

/*-----------------------------------------------------------------------------------*/
/*	4.	Sidebar & Widgets
/*-----------------------------------------------------------------------------------*/

.sidebar {
	width:320px;
	border-left: 1px solid #E5E5E5;
	padding-left: 20px;
}

.widget {
	width: 100%;
	float: left;
	margin: 0 0 30px 0;
}
.widget h3 {
	margin: 6px 0 10px;
}
.widget ul {
	list-style-position: inside;
	margin: 0;
}
.widget ul li{
	padding-bottom: 10px;
}

/* Recent & Popular Posts w/ Images */
.widget_ffrecent img, .widget_ffpopular img,
.blog_posts.thumb img {
	float: left;
	margin: 0px 10px 10px 0px;
	width: auto;
}
.widget_ffrecent p, .widget_ffpopular p,
.blog_posts.thumb p {
	float: left;
	width: auto;
}
.widget_ffrecent a, .widget_ffpopular a,
.blog_posts.thumb a {
	font-weight: bold;
	float: left;
	margin-bottom: 10px;
}
.widget_ffrecent li, .widget_ffpopular li,
.blog_posts.thumb li {
	clear: both;
	list-style: none;
	margin-bottom: 20px;
}
.widget_ffrecent li:last-child, .widget_ffpopular li:last-child,
.blog_posts.thumb li:last-child {
	margin-bottom: 0;
}
.widget_ffrecent span, .widget_ffpopular span,
.blog_posts.thumb span {
	font-size: 0.85em;
	text-transform: uppercase;
	line-height: 1;
	float: left;
	margin-bottom: 10px;
	color: #999;
}
/* Twitter Widget */
[id*="twitter_update_list"] {
	margin: 0;
}
[id*="twitter_update_list"] li {
	float: left;
	width: auto;
	list-style: none;
	background: transparent url('../img/twitter-widget.png') 0 4px no-repeat;
	padding-left: 35px;
	padding-bottom: 15px;
}
[id*="twitter_update_list"] a.created {
	font-weight: bold;
	text-transform: uppercase;
	font-size: 0.85em;
	padding-left: 3px;
}
/* Flickr Widget */
.flickr_badge_image,
.flickr_badge_image a,
.flickr_badge_image img {
	display: block;
	float: left;
	line-height: 1;
	padding: 0;
	margin: 0;
}
.flickr_badge_image {
	background: #000;
	margin: 0 15px 15px 0;
}
.flickr_badge_image a:hover {
	opacity: 0.5;
	-webkit-transition: opacity linear 0.3s;
	-moz-transition: opacity linear 0.3s;
	-ms-transition:  opacity linear 0.3s;
	-o-transition:  opacity linear 0.3s;
	transition:  opacity linear 0.3s;
}
/* Testimonials Widget */
.carousel .thumbnail {
	padding: 10px;
	margin-bottom: 25px;
	background: #fff;
}
.carousel .thumbnail:after, 
.carousel .thumbnail:before { 
	top: 100%; 
	border: solid transparent; 
	content: " "; 
	height: 0; 
	width: 0; 
	position: absolute; 
	pointer-events: none; 
} 
.carousel .thumbnail:after { 
	border-top-color: #FFF; 
	border-width: 10px; 
	left: 95%; 
	margin-left: -10px; 
} 
.carousel .thumbnail:before { 
	border-top-color: #DDD; 
	border-width: 11px; 
	left: 95%; 
	margin-left: -11px; 
}
.carousel .thumbnail .name{
	position: absolute;
	bottom: -25px;
	right: 10%;
	font-weight: bold;
}
.carousel.carousel-fade .item.thumbnail {
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.carousel.carousel-fade .active.left,
.carousel.carousel-fade .active.right {
  left: 0;
  z-index: 2;
  opacity: 0;
  filter: alpha(opacity=0);
  margin-right: 0;
  margin-left: 0;
}
.carousel.carousel-fade .next,
.carousel.carousel-fade .prev {
  left: 0;
  margin-right: 0;
  margin-left: 0;
  z-index: 1;
  width: auto;
}
.carousel.carousel-fade .carousel-control {
  z-index: 3;
}
/* Sidebar - Footer */
footer .widget h3 {
	color: #fff;
	font-size: 1.2em;
}

/*-----------------------------------------------------------------------------------*/
/*	5.	Portfolio
/*-----------------------------------------------------------------------------------*/

.gallerycolumns, .relatedcolumns {
	list-style: none;
	padding: 0;
}
.relatedcolumns {
	margin: 0;
}
.relatedcolumns h4{
	margin: 0 0 10px 0;
}
.gallerycolumns li{
	margin-bottom: 30px !important;
}
.sort {
	float: right;
	font-size: 1.1em;
}
.sort ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.sort ul li{
	display: inline-block;
	margin-left: 10px;
}
.sort ul li a{
	display: block;
	padding: 5px 10px;
}
.sort ul li a.active{
	background: #000;
	color: #fff;
}
a.ffexpand {
	display: block;
	width: 48px;
	height: 48px;
	position: absolute;
	bottom: 10px; 
	left: 126px;
	background: transparent url('../img/expand-slider.png') top left;
}
a.ffexpand:hover {
	background-position: top right;
}
a.ffthumbnail  {
	position: relative;
	display: block;
	float: left;
	width: auto;
	height: auto;
	margin: 0 0 20px 0;
	padding: 0;
	line-height: 1;
}
.postheader .ffthumbnail {
	margin-bottom: 0;
}
a.ffthumbnail .overlay {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: none;
	line-height: 1;
	padding: 0;
	margin: 0;
	background:#000 url('../img/expand.png') center no-repeat;
}
a.ffthumbnail img {
	float: left;
}

/*-----------------------------------------------------------------------------------*/
/*	6.	Footer
/*-----------------------------------------------------------------------------------*/

footer {
	background: #111;
	color: #969696;
	padding: 30px 0;
	margin-top: 20px;
}
footer [class*="span"] .widget:last-child {
	margin-bottom: 0;
}
footer a:hover{
	color: #fafafa;
}
footer .container {
	position: relative;
}

/*-----------------------------------------------------------------------------------*/
/*	7.	Shortcodes
/*-----------------------------------------------------------------------------------*/
/* Blog Posts */
.blog_posts{
	width: 100%;
	clear: both;
}
.blog_posts [class*="span"]{
	margin-bottom: 4%;
} 
.blog_posts ul {
	padding: 0;
	margin: 0;
	width: 100%;
	clear: both;
}
.blog_posts img {
	width: 100%;
}
.blog_posts.thumb img {
	float: left;
	margin: 0px 10px 10px 0px;
}
.blog_posts.thumb a {
	font-weight: bold;
}
.blog_posts.thumb li {
	clear: both;
	list-style: none;
	margin-bottom: 20px;
	min-height: 60px;
}
.blog_posts.thumb li:last-child {
	margin-bottom: 0;
}
.blog_posts span {
	font-size: 0.85em;
	text-transform: uppercase;
	line-height: 1;
	float: left;
	width: 100%;
	margin-bottom: 10px;
	color: #999;
}
.entry-content .blog_posts h4 {
	margin-bottom: 10px;
}
.seperator {
	display: block;
	width: 100%;
	border-bottom: 1px solid #E5E5E5;
	height: 1px;
	margin-bottom: 30px;
	position: relative;
}
.seperator a {
    display:block;
    padding: 1px 10px;
    background: #fff;
    text-transform: uppercase;
    font-size: 0.75em;
    position: absolute;
    left: 50%;
    margin-left: -18px;
    bottom: -9px;
}

/*-----------------------------------------------------------------------------------*/
/*	8.	Comments
/*-----------------------------------------------------------------------------------*/

#comments h3{
	margin-bottom: 20px;
}
.commentlist {
	list-style: none;
}
.commentlist .vcard {
	float: left;
	width: 100%;
	margin-bottom: 20px;
}
.commentlist .avatar {
	float: left;
	margin-right: 10px;
}
.commentlist .comment-text{
	margin-bottom: 20px;
	float: left;
	width: 100%;
	position: relative;
}
.commentlist .comment-text span{
	display: none;
}
.commentlist .comment-text:hover span{
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
}
.commentlist .children{
	display: block;
	float: left;
	width: auto;
	margin-left: 30px;
	padding-left: 20px;
	border-left: 5px solid #EEE;
	margin-bottom: 20px;
	list-style: none;
}
.commentlist .children li:last-child .comment-text{
	margin-bottom: 0;
}
#respond #submit {
	display: inline-block;
	  *display: inline;
	  margin-bottom: 0;
	  *margin-left: .3em;
	  color: #333333;
	  text-align: center;
	  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	  vertical-align: middle;
	  cursor: pointer;
	  background-color: #f5f5f5;
	  *background-color: #e6e6e6;
	  background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
	  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
	  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
	  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
	  background-image: linear-gradient(top, #ffffff, #e6e6e6);
	  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
	  background-repeat: repeat-x;
	  border: 1px solid #cccccc;
	  *border: 0;
	  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
	  border-bottom-color: #b3b3b3;
	  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
	  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
	  *zoom: 1;
	  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	     -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	          
	  padding: 9px 14px;
	   font-size: 15px;
	   line-height: normal;
	   -webkit-border-radius: 5px;
	      -moz-border-radius: 5px;
	           border-radius: 5px;
}

#respond #submit:hover {
  color: #333333;
  text-decoration: none;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
  /* Buttons in IE7 don't get borders, so darken on hover */

  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
     -moz-transition: background-position 0.1s linear;
      -ms-transition: background-position 0.1s linear;
       -o-transition: background-position 0.1s linear;
          transition: background-position 0.1s linear;
}

#respond #submit:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

#respond #submit.active,
#respond #submit:active {
  background-color: #e6e6e6;
  background-color: #d9d9d9 \9;
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

/*-----------------------------------------------------------------------------------*/
/*	9.	Feedback & To Top Links
/*-----------------------------------------------------------------------------------*/

#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	bottom:15px;
	right:15px;
	overflow:hidden;
	width:48px;
	height:48px;
	border:none;
	text-indent:-999px;
	cursor: n-resize;
	z-index: 999;
	background: #EC5456 url(../img/ui.totop.png) center center no-repeat ;
}
#toTop:active, #toTop:focus {
	outline:none;
}
#feedback {
	background: url(../img/feedback.png) 0px 0px no-repeat;
	width: 25px;
	height: 100px;
	position: fixed;
	top: 45%;
	left: -2px;
	border: none !important;
	z-index: 9000;
	user-select: none;
	-moz-user-select:none;   
	-webkit-user-select:none; 
	-webkit-transition: 0.1s linear left;
	-moz-transition: 0.1s linear left;
	-ms-transition: 0.1s linear left;
	-o-transition: 0.1s linear left;
	transition: 0.1s linear left;
}
#feedback:hover {
	left:-0px;
}

/*-----------------------------------------------------------------------------------*/
/*	10.	Wordpress specific typography (and changes/additions to bootstrap)
/*-----------------------------------------------------------------------------------*/


h7 {
	margin-bottom: 10px;
	color: #fff;
	font-size: 8px;
	padding: 3px;
	background-color: #d03335;
	margin-left: 5px;
}

.wp-caption, .wp-caption-text, .sticky, .gallery-caption, .bypostauthor {}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin-bottom: 20px;
	color: #333;
}
.alignright {
	float:right;
}
.alignleft {
	float:left;
}
img {
	height: auto;
}
img.alignright {
	float:right;
	margin: 0px 0px 20px 20px;
}
img.alignleft {
	float:left;
	margin: 0px 20px 20px 0px;
}
.aligncenter {
	display: block;
	margin:0 auto;
	text-align:center;
}
.more-link {
	font-weight: bold;
}

blockquote.pull-left,
blockquote.pull-right {
	width: 50%;
}
blockquote.pull-left{
	margin-right: 20px;
}
blockquote.pull-right{
	margin-left: 20px;
}
.fancyamp {
	font-family: Baskerville, 'Goudy Old Style', Palatino, 'Book Antiqua', serif;
	font-style: italic;
	font-weight: normal;
	font-size: 1.3em;
}
/* Full-Width & Columns */
.one-half { float: left; width: 460px; margin-right: 20px; }
.one-third { float: left; width: 300px; margin-right: 20px; }
.two-third { float: left; width: 620px; margin-right: 20px;}
.one-forth { float: left; width: 220px; margin-right: 20px; }
.three-forth { float: left; width: 700px; margin-right: 20px; }
.last { margin-right: 0px; }
.last + .one-forth { clear: both; }
  	
.block-grid-4 > div { float: left; width: 25%; height: 170px; padding-right: 4%; margin-bottom: 30px; box-sizing: border-box; text-align: center; }
.block-grid-4 > div a { display: inline; }
.block-grid-4 > div a:before { content:""; display: inline-block; height: 100%; width: 1px; margin-left: -1px; vertical-align: middle; }
.block-grid-4 > div img { vertical-align: middle; max-width: 100%; }

#fullwidth.frontpage .entry-content {
    margin-bottom: 0;
}
/* Embed Videos */
.video_frame { }
/* Tabs */
.tabcontainer {
	margin-bottom: 20px;
}

/*-----------------------------------------------------------------------------------*/
/*	11.	Responsive Styles
/*-----------------------------------------------------------------------------------*/

@media (max-width: 480px) {
	body {
		margin-top: 160px;
	}
	header {
		border-top: 5px solid #EC5456;
	}
	header h1{
		line-height: 80px;
		float: left;
		width: 100%;
		text-align: center;
	}
	header h1 img{
		height: 50px;
		width: auto;
		line-height: 119px;
		vertical-align: middle;
	}
	header #responsive-nav {
		margin-bottom: 0;
	}
	header nav {
		 width: 100%;
		 margin-top: 0;
	}
	.postheader,
	.posttitle,
	.postmeta {
		width: 100%;
		max-width: 100%;
	}
	.flex-caption,
	.flex-direction-nav li a,
	.postmeta {
		display: none;
		visibility: hidden;
	}
	#toTop {
		display: none;
	}
	header nav ul { display: none;} 
	#responsive-nav { display: block !important; width: 100% !important;}
	#feedback, #toTop {
		display: none !important;
	}
}
@media (max-width: 768px) {
	
	header .container{
		padding: 0 10px;
	}
	header .container{
		border-bottom: 1px solid #E5E5E5;
		height: auto;
	}
	

	.list_carousel.row {
	    margin-left: -20px;
	}
	.list_carousel .span12 {
	    margin-left: 20px;
	}
	a.ffthumbnail  {
		width: 100%;
	}
	.span12.fullposttitle {
		width: 100%;
		float: left;
	}
	.span12.gallery {
		float: left;
		width: 100%;
	}
	.fullposttitle h2 {
		width: 100%;
		margin-bottom: 10px;
	}
	.sort {
		display: none;
	}
	.one-half,
	.one-third,
	.two-third,
	.one-forth,
	.three-forth{
	  float: none;
	  display: block;
	  width: auto;
	  margin: 0;
	}
	footer {
		margin-left: -20px;
		margin-right: -20px;
	}
	footer .container{
		padding: 0 20px;
	}
	
}
@media (min-width: 768px) and (max-width: 980px) {
	.one-half { float: left; width: 352px; margin-right: 20px; }
	.one-third { float: left; width: 228px; margin-right: 20px; }
	.two-third { float: left; width: 476px; margin-right: 20px; }
	.one-forth { float: left; width: 166px; margin-right: 20px; }
	.three-forth { float: left; width: 538px; margin-right: 20px; }
	.last { margin-right: 0px; }
	header .container{
		padding: 0 50px; 
	}
}
@media (max-width: 980px) {
  
}
@media (min-width: 980px) {
	
}
@media (min-width: 1200px) {
  	.one-half { float: left; width: 570px; margin-right: 30px; }
  	.one-third { float: left; width: 370px; margin-right: 30px; }
  	.two-third { float: left; width: 770px; margin-right: 30px; }
  	.one-forth { float: left; width: 270px; margin-right: 30px; }
  	.three-forth { float: left; width: 870px; margin-right: 30px; }
  	.last { margin-right: 0px; }
  	/*.last + .one-forth { clear: both; }*/
  	.block-grid-4 > div:nth-of-type(4) { margin-right: 0; }
  	.block-grid-4 > div:nth-of-type(5) { clear: both; }
}


/*-----------------------------------------------------------------------------------*/
/*	12.	Form Style
/*-----------------------------------------------------------------------------------*/

select,
input,
textarea,
a.btn, input[type="submit"] {
    background: none;
    border-radius: 3px 3px 3px 3px;
    color: #FFFFFF;
    padding: 0em;
    text-decoration: none;
    text-shadow: none;
    transition: all 0.4s ease-in-out 0s;
}
fieldset {
  padding: 0 0 0 0;
}
label {
  font-family: arial;
  font-size: 13px;
  color: #333;
  line-height: 0em;
  padding-left: 10px;
  padding-top: 0px;
}
label.error {
  font-size: 0.9em;
  padding: 0.7em 0;
  color: #d82a80;
  margin-left: 1em;
}
input[type="text"],
input[type="email"] {
  padding: 5px 8px 5px 8px;
  width: 80%;
  line-height: 0em;
  max-width: 12em;
  background: white;
  border: 1px solid #ccc;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  background-image: -webkit-gradient(linear, 0% 0%, 0% 12%, from(#aaaaaa), to(#ffffff));
  background-image: -moz-linear-gradient(0% 12% 90deg, #ffffff, #aaaaaa);
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  background-image: -ms-linear-gradient(top, #aaaaaa, #fff);
  background-image: -o-linear-gradient(top, #aaaaaa, #fff);
  color: #333;
}
input[type="text"]:hover,
input[type="text"]:focus,
input[type="email"]:hover,
input[type="email"]:focus {
  -webkit-animation: input-pulse 4s infinite ease-in-out;
}
@-webkit-keyframes input-pulse {
  0% {
    -webkit-box-shadow: 0 0 12px rgba(30, 141, 175, 0.9);
  }
  50% {
    -webkit-box-shadow: 0 0 12px rgba(30, 141, 175, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 12px rgba(30, 141, 175, 0.9);
  }
}
input[type="submit2"] {
  padding: 10px 16px;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  font-family: arial;
  font-size: 13px;
  background: -moz-linear-gradient (center top , #62c462, #51a351)
                -webkit-gradient(linear, left top, left bottom, from(#62c462), to(#51a351))
              ;
  background-color: #5bb75b;
  background-repeat: repeat-x;
 
  text-transform: uppercase;
  cursor: pointer;
  
}
input[type="submit"] {
 -moz-box-shadow:inset 0px 1px 0px 0px #a4e271;
                -webkit-box-shadow:inset 0px 1px 0px 0px #a4e271;
                box-shadow:inset 0px 1px 0px 0px #73d873;
                background: #62c462; /* Old browsers */
                background: -moz-linear-gradient(top,  #62c462 0%, #51a351 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#62c462), color-stop(100%,#51a351)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top,  #62c462 0%,#51a351 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top,  #62c462 0%,#51a351 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top,  #62c462 0%,#51a351 100%); /* IE10+ */
                background: linear-gradient(to bottom,  #62c462 0%,#51a351 100%); /* W3C */
                filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#62c462', endColorstr='#51a351',GradientType=0 ); /* IE6-9 */
                background-color:#5bb75b;
                -moz-border-radius:6px;
                -webkit-border-radius:6px;
                border-radius:6px;
                border:1px solid;
                border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
                display:inline-block;
                color:#ffffff;
                font-family:arial;
                font-size:13px;
                font-weight:bold;
                padding:4px 24px;
                text-transform: uppercase;
                text-shadow:0 -1px 1px rgba(0, 0, 0, 0.25);
}
input[type="submit"]:hover {
                background: #51a351; /* Old browsers */
                background: -moz-linear-gradient(top,  #51a351 0%, #51a351 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05,#51a351), color-stop(100%,#51a351)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top,  #51a351 0%,#51a351 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top,  #51a351 0%,#51a351 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top,  #51a351 0%,#51a351 100%); /* IE10+ */
                background: linear-gradient(to bottom,  #51a351 0%,#51a351 100%); /* W3C */
                filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#51a351', endColorstr='#51a351',GradientType=0 ); /* IE6-9 */
                background-color:#51a351;
                text-transform: uppercase;
                text-shadow:0 -1px 1px rgba(0, 0, 0, 0.25);
}
input[type="submit"]:active {
                position:relative;
                top:1px;
}

input[type="submit2"]:hover,
input[type="submit2"]:focus {
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
  -moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
  -o-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
}

/* JEFF ADDITIONS */ 

.signature-partners .entry-content .span2 {
	min-height: 190px;
}

body.initiatives div.item {
  position: relative;
  padding-left: 170px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #CCC;
}

body.initiatives div.item:last-child {
  border-bottom: 0;
}

body.initiatives div.item img {
  position: absolute;
  top: 0;
  left: 0;
}

body.home .action_area .donate {
  float: left;
  display: block;
  width: 49%;
}

body.home .action_area .donate a.donate_button {
  display: block;
  margin: 0 auto;
  padding: 7px 0;
  width: 180px;
  background: #d03335;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border-radius: 4px;
  color: #FFF;
  text-transform: uppercase;
}

body.home .action_area .signup {
  float: right;
  display: block;
  width: 49%;
}

body.home .action_area h2 {
  text-align: center;
}

.cfix:before,
.cfix:after {
  content: " ";
  display: table;
}

.cfix:after {
  clear: both;
}

.cfix {
  *zoom: 1;
}

/* PARTNERS */
.partners { text-align: center; }
.partners img { float: none !important; display: inline;  }
.partners br { display: none; }
.partners hr { clear: both; height: 1px; background: #ddd; border: 0;  }

.flex_wrap .flexslider { max-width: 770px; margin: 0 auto; }
.flex_wrap { background: #82393e; }

.partners .row1 img { height: 84px; width: auto; margin: 20px;  }
.partners .row2 img { height: 34px; width: auto; margin: 20px 9px; }
.partners .row3 img { height: 42px; width: auto; margin: 20px 0 !important; }

/* Comment Ron 3*/
/* Another */