/*
Theme Name: Charitas
Theme URI: http://themeforest.net/user/WPlook/portfolio
Author: Victor Tihai
Author URI: http://wplook.com/
Description: Premium WordPress Theme for Charity, NGO, Foundation.
Version: 1.0.7
License: GNU General Public License
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Tags: black, blue, green, orange, pink, red, white, two-columns, right-sidebar, fixed-width, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-image-header, front-page-post-form, microformats, post-formats, sticky-post, theme-options, threaded-comments, translation-ready, blavatar
*/

@import url(http://fonts.googleapis.com/css?family=Arimo:400,700,400italic,700italic|Archivo+Narrow:400,400italic,700italic,700&subset=latin,cyrillic-ext,greek-ext,vietnamese,greek,latin-ext,cyrillic);

/* 
	font-family: 'Arimo', sans-serif;
	font-family: 'Archivo Narrow', sans-serif;
*/

/*	----------------------------------------------------------
	Reset default browser CSS.
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*	----------------------------------------------------------
	Based on work by Eric Meyer and html5doctor.com
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

/*	----------------------------------------------------------
	Remember to define focus styles!
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

:focus {
	outline: 0;
}

body {
	background: #fff;
	line-height: 1;
}

ol, ul {
	list-style: none;
}


/*	----------------------------------------------------------
	Tables still need 'cellspacing="0"' in the markup
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
table {
	border-collapse: separate;
	border-spacing: 0;
}

caption, th, td {
	font-weight: normal;
	text-align: left;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}

a img {
	border: 0;
}


/*	----------------------------------------------------------
	Alignment
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


/*	----------------------------------------------------------
	Global
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

body, input, textarea {
	color: #3b3b3d;
	font-size: 14px; 
	font-family: 'Arimo', sans-serif;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

.clear{
	clear: both;
}

.clear-widget{
	clear: both;
	padding: 30px 0;
}

.fleft{
	float: left;
}

.fright {
	float: right;
}

.radius{
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

.radius-bottom{
	-webkit-border-bottom-right-radius: 2px;
	-webkit-border-bottom-left-radius: 2px;
	-moz-border-radius-bottomright: 2px;
	-moz-border-radius-bottomleft: 2px;
	border-bottom-right-radius: 2px;
	border-bottom-left-radius: 2px;
}


/*	----------------------------------------------------------
	Headings
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

h1,h2,h3,h4,h5,h6 {
	clear: both;
	font-family: 'Archivo Narrow', sans-serif;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

h1 {
	font-size:30px;
}

h2 {
	font-size:24px;
}

h3 {
	font-size:22px;
}

h4 {
	font-size:20px;
}

h5 {
	font-size:18px;
}

h6 {
	font-size:16px;
}


/*	----------------------------------------------------------
	Text elements
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

p {
	margin-bottom: 1.5em;
	font-size: 15px;
}

ul, ol {
	margin: 0 0 1.5em 2.5em;
}

ul {
	list-style: square;
}

ol {
	list-style-type: decimal;
}

ol ol {
	list-style: upper-alpha;
}

ol ol ol {
	list-style: lower-roman;
}

ol ol ol ol {
	list-style: lower-alpha;
}

ul ul, ol ol, ul ol, ol ul {
	margin-bottom: 0;
}

dl {
	margin: 0 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin-bottom: 1.5em;
}

strong {
	font-weight: bold;
}

cite, em, i {
	font-style: italic;
}

blockquote {
	font-style: italic;
	margin: 0 3em;
}

blockquote em, blockquote i, blockquote cite {
	font-style: normal;
}

pre {
	background: #f4f4f4;
	font: 13px "Courier 10 Pitch",Courier,monospace;
	line-height: 1.5;
	margin-bottom: 1.5em;
	padding: 0.75em 1.5em;
}

code, kbd {
	font: 13px Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

ins {
	background: #fff9c0;
	text-decoration: none;
}

sup,
sub {
	font-size: 10px;
	height: 0;
	line-height: 1;
	position: relative;
	vertical-align: baseline;
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

input[type=text],
textarea {
	border: 1px solid #888;
}

textarea {
	padding-left: 3px;
	width: 98%;
}

input[type=text] {
	padding: 3px;
}

/*	----------------------------------------------------------
	Text meant only for screen readers
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
}

.teaser-page{ 
	height: 350px; 
	width: 100%; 
}

.teaser-page-list{
	min-height: 150px; 
	width: 100%; 
	
}

.teaser-page-404 {
	height: 400px;
	width: 100%;
}
#main {
	background: #fff;
}
#main .inner{
	padding: 95px 0;


}


/*	----------------------------------------------------------
	Header
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

#sticky_navigation {
	position: fixed;
	top:0;
	left:0;
	background: #fff;
	width: 100%;
	z-index: 99;
	padding: 20px 0;
	min-height: 60px;
	border-bottom: 1px solid #f3f3f3;
}

#toolbar {
	min-height: 40px;
}

#toolbar .tb-list  {
	float: right !important;
	text-align: right !important;

}

#toolbar .tb-list li{
	float: left;
	font-size: 16px;
	display: inline;
	margin: 0;
	padding: 0;
	text-align: center;
	position: relative;
}

#toolbar .tb-list li a {
	color: #fff;
	margin: 0;
	padding: 0px 0 0 0;
	text-decoration: none;
	display: inline-block;
	background: none;
}

#toolbar .tb-list .phone a {
	padding-right: 10px;
	padding-top: 11px;
	font-size: 14px;
}

#toolbar .tb-list .rss a, #toolbar .tb-list .contact a, #toolbar .tb-list .share a, #toolbar .tb-list .search a{
	padding-top: 10px;
	width: 40px;
	height: 30px;
	background: none;
	 -webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}


/*	----------------------------------------------------------
	Toolbar Share, social icons
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

#toolbar .tb-list .share-items {
	visibility:hidden;
	opacity:0;
	filter:alpha(opacity=0);
	transition: visibility 0s linear 0.5s,opacity 0.5s linear;
	-webkit-transition: visibility 0s linear 0.5s,opacity 0.5s linear;
	-moz-transition: visibility 0s linear 0.5s,opacity 0.5s linear;
	-ms-transition: visibility 0s linear 0.5s,opacity 0.5s linear;
	-o-transition: visibility 0s linear 0.5s,opacity 0.5s linear;
	position:absolute;
	top:40px !important;
	right:0px;
	z-index:6000;
	list-style:none;
	margin:0;
	padding:24px !important;
	width: auto;
	min-width:123px;
	background:#3b3b3d;
}

#toolbar .tb-list .share-items .share-item-icon-facebook-sign a:hover{
	background: #3a589b;
}

#toolbar .tb-list .share-items .share-item-icon-twitter-sign a:hover{
	background: #19bfe8;
}

#toolbar .tb-list .share-items .share-item-icon-google-plus-sign a:hover{
	background: #d64136;
}

#toolbar .tb-list .share-items .share-item-icon-github-sign a:hover{
	background: #754c24;
}
#toolbar .tb-list .share-items .share-item-icon-pinterest-sign a:hover{
	background: #e53b51;
}
#toolbar .tb-list .share-items .share-item-icon-linkedin-sign a:hover{
	background: #3a589b;
}
#toolbar .tb-list .share-items .share-item-icon-youtube-play a:hover{
	background: #e53b51;
}


/*	----------------------------------------------------------
	Search hover items
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

#toolbar .tb-list .search-items {
	visibility:hidden;
	opacity:0;
	filter:alpha(opacity=0);
	transition: visibility 0s linear 0.5s,opacity 0.5s linear;
	-webkit-transition: visibility 0s linear 0.5s,opacity 0.5s linear;
	-moz-transition: visibility 0s linear 0.5s,opacity 0.5s linear;
	-ms-transition: visibility 0s linear 0.5s,opacity 0.5s linear;
	-o-transition: visibility 0s linear 0.5s,opacity 0.5s linear;
	position:absolute;
	top:40px !important;
	right:0px;
	z-index:5000;
	list-style:none;
	margin:0;
	padding: 24px !important;
	width: auto;
	min-width:272px;
	background:#596b89;
}

#toolbar .tb-list .search-items li{
	width: 100%;
}

#toolbar .tb-list #s {
	width: 90%; 
	border: none;
	height: 30px;
	font-size: 14px;
	color: #c9c9cf;
}

#toolbar .tb-list #s:focus { 
	background-color: #f3f3f3;
	color: #000;
}

#toolbar .tb-list #searchsubmit { 
	display: none;
}


/*	----------------------------------------------------------
	Donate
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

#toolbar .tb-list .donate a {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 12px;
	text-transform: uppercase;
	height: 32px;
	background: #f18d06;
	font-size: 14px;
}

/* ==|== Hover = = = = = = = = = = = = = = = = = = = = = */

#toolbar .tb-list .rss a:hover{
	background: #ff9900;
}

#toolbar .tb-list .contact a:hover{
	background: #20a7ff;
}

#toolbar .tb-list .share a:hover{
	background: #3b3b3d;
}

#toolbar .tb-list .share:hover{
	background: #3b3b3d;
}

#toolbar .tb-list .share:hover .share-items{
	visibility:visible;
	opacity: 1;
	filter:alpha(opacity=100);
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

#toolbar .tb-list .search a:hover{
	background: #596b89;
}

#toolbar .tb-list .search:hover {
	background: #596b89;
}

#toolbar .tb-list .search:hover .search-items{
	visibility:visible;
	opacity: 1;
	filter:alpha(opacity=100);
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

#toolbar .tb-list .donate a:hover{
	background: #f6c004;
	color: #fff;
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	-ms-animation-duration:1s;
	-o-animation-duration:1s;
	animation-duration:1s;
}


#branding{
	min-height: 60px;
}

#site-title{
	font-size: 30px;
	font-family: 'Archivo Narrow', sans-serif;
	line-height: 36px;
	font-weight: normal; 
}

#site-title a{
	text-decoration: none;
}

#site-description{
	font-size: 14px;
	color: #000;
	text-transform: uppercase;
}

#teaser{
	background: #fff;
}
#teaser .header-image{
	width: 100%;
	height: auto;
	display: block;
}	

/*	----------------------------------------------------------
	Menu
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

#branding nav {
	float: right;

}
nav select {
  display: none;
}



/*	----------------------------------------------------------
	Navigation between posts
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.nav-next a, .nav-previous a{
	color: #a2a2ad;
	border: 1px solid #a2a2ad; 
	text-decoration: none; 
	padding: 6px 12px;
	margin: 10px 0 0 0; 
	display: inline-block; 
	text-transform: uppercase;
}
.nav-next .meta-nav, .nav-previous  .meta-nav {
	font-size: 20px;
	line-height: 1px;
}

.nav-next a:hover, .nav-previous a:hover {
	color: #fff; 
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration:0.5s;
	-moz-animation-duration:0.5s;
	-ms-animation-duration:0.5s;
	-o-animation-duration:0.5s;
	animation-duration:0.5s;
}
/* ==|== top navigation  = = = = = = = = = = = = = = = = = = = = = */

#site-navigation  ul {
	list-style-type:none;
	float:right;
	padding: 15px 0 0 0;
	margin:0;
	font-size: 16px;
	font-family: 'Archivo Narrow', sans-serif;
	text-transform: uppercase;
}

#site-navigation  ul li {
	position:relative;
	display:inline-block;
	padding:0px 0 10px 0;
	margin-left:10px;

}

#site-navigation  ul li a {
	padding:5px;
	text-decoration: none;
	color: #3b3b3d;
	-webkit-transition: border .5s ease-out;
}

#site-navigation  ul li a:hover, #site-navigation  ul li.current_page_item a {
	border-bottom: 4px solid #e9e9e9;
}

#site-navigation  ul li ul li a:hover, #site-navigation  ul li.current_page_item ul li a {
	border:none; 
}

#site-navigation li:hover .sub-menu{
	visibility:visible;
	opacity: 1;
	filter:alpha(opacity=100);
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

#site-navigation  ul li.current_page_item a {
	border-bottom: 0px solid #e9e9e9;
}

ul.sub-menu {
	visibility:hidden;
	opacity:0;
	filter:alpha(opacity=0);
	transition: visibility 1s linear 0.5s,opacity 0.5s linear;
	-webkit-transition: visibility 1s linear 0.5s,opacity 0.5s linear;
	-moz-transition: visibility 1s linear 0.5s,opacity 0.5s linear;
	-ms-transition: visibility 1s linear 0.5s,opacity 0.5s linear;
	-o-transition: visibility 1s linear 0.5s,opacity 0.5s linear;
	position:absolute;
	top:27px !important;
	left:0px;
	z-index:5000;
	list-style:none;
	margin:0;
	padding:0 0 5px 0 !important;
	width: auto;
	min-width:150px;
	-moz-box-shadow: 0 0px 8px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 0px 8px rgba(0,0,0,0.2);
	box-shadow:0 0px 8px rgba(0,0,0,0.2);
	background:#fff;
} 

ul.sub-menu li {
	width:100%;
	float:left;
	border-bottom: 1px solid #ccc;			
	margin: 0 !important;
	line-height:100%;
	padding: 10px 0px !important;
}

ul.sub-menu li:last-child {
	border-bottom: none;
}

#site-navigation  ul.sub-menu li a {
	padding:0px 12px;
	height: auto;
	font-size:13px !important;
	display: block;

}

ul.sub-menu li:hover {
	border-top:none !important;
	background: #f9f9f9;
}


/*	----------------------------------------------------------
	Language menu
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.menu-language-menu-container {
	float: left;
}
.menu-language-menu-container ul{
	margin: 7px 0 0 0;
	padding: 0;
}

.menu-language-menu-container ul li{
	margin: 0 1px 0 0;
	display: inline-block;
	float: left;
}
.menu-language-menu-container ul li a {
	color: #fff;
	text-decoration: none;
	background: #3b3b3d;
	display: inline-block;
	padding: 2px 10px;
}
.menu-language-menu-container ul li a:hover {
	border-bottom: 1px solid #fff;
}
.menu-language-menu-container ul .current a {
	border-bottom: 0px solid #fff;
	font-weight: bold;
}
/*	----------------------------------------------------------
	Content
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.sticky{}

.bypostauthor{}

.teaser-page .page-title{
	margin-top: 140px;
}

.teaser-page-list .page-title{
	margin: 40px 0;
}

.page-title{
	color: #fff;
	border: 2px solid #fff;
	padding: 10px 20px;
	display: inline-block;
	-webkit-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-o-animation-name: fadeInDown;
	animation-name: fadeInDown;
	animation-delay: 0s; /* W3C and Opera */
	-moz-animation-delay: 0s; /* Firefox */
	-webkit-animation-delay: 0s; /* Safari and Chrome */
	-webkit-animation-fill-mode:both;
	-moz-animation-fill-mode:both;
	-ms-animation-fill-mode:both;
	-o-animation-fill-mode:both;
	animation-fill-mode:both;
	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	-ms-animation-duration:1s;
	-o-animation-duration:1s;
	animation-duration:1s;
}

.teaser-page #rootline {
	margin-top: 164px;
}

.teaser-page-list #rootline {
	margin-top: 64px;
}

#rootline{
	font-size: 14px;
	text-align: right;
	color: #fff;
}

#rootline a{
	color: #fff;
	text-decoration: none;
}

#rootline a:hover{
	color: #fff;
	text-decoration: underline;
}

.teaser-page-404 {
	text-align: center;
}

.teaser-page-404 .page-title {
	margin-top: 120px;
	font-size: 92px;
}

.teaser-page-404 h2 {
	margin-top: 48px;
	font-size: 22px;
	color: #fff !important;
}

.single-404 {
	text-align: center;
}
.single-404 .button { 
	margin-bottom: 0px !important;
}

.entry-content table, .comment-content table {
	border-bottom: 1px solid #ddd;
	margin: 0 0 1.625em;
	width: 100%;
}

.entry-content th, .comment-content th {
	color: #666;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 2.6em;
}

.entry-content td, .comment-content td {
	border-top: 1px solid #ddd;
	padding: 6px 10px 6px 0;
}

.page-link{
	margin: 24px 0;
}

.entry-content blockquote {
	padding-left: 24px;
	font-size: 20px;
}

.entry-content blockquote p{
	font-size: 20px;
}


/*	----------------------------------------------------------
	
/*	----------------------------------------------------------
	Responsive Structure
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
@media (max-width: 1200px) {
	.flex-button-red { 
		display: none;
	}

	.page-title {
		font-size: 26px
	}

	.entry-meta {
		margin-top: 24px;
	}

	.event-info .buttons.facebook {
		display: none;
	}
	.long-description iframe{
		width: 98%;
		height: auto;
		min-height: 350px;
	}
}

@media (max-width: 768px) {
	.event-info .month-time {
		margin-right: 24px;
	}

	.announce-body .margin {
		margin: 0 24px;
	}

	.announce-body h1 {
		font-size: 26px;
	}

	.announce-body h3 {
		font-size: 18px;
	}

	#sticky_navigation .grid_5{
		width: 10%;
	}

	#sticky_navigation .grid_11{
		width: 45%;
	}

	#sticky_navigation {
		position: relative !important;
		min-height: 40px !important;
		z-index: 999;
	}
	
	.latestnews-body .image {
		width: 100%;
	}

	.latestnews-body .content {
		width: 100%;
	}

	.long-description iframe{
		width: 98%;
		height: auto;
	}

	#branding hgroup {
		width: 98% !important;
		text-align: center;
	}

	.teaser-page-list .grid_10, .teaser-page .grid_10{
		text-align: center !important;
		width: 98% !important;
	}

	.teaser-page-list .grid_10 .page-title, .teaser-page .grid_10 .page-title {
		text-align: center !important;
		margin-bottom: 0px;
	}

	.teaser-page-list .grid_6, .teaser-page .grid_6 {
		width: 98% !important;
	}
	
	.teaser-page-list .grid_6 #rootline, .teaser-page .grid_6 #rootline {
		text-align: center !important;
		padding-bottom: 20px;
		margin-top: 40px !important;
	}

}

@media (max-width: 640px) {
	.flex-button-red {
		display: inline-block;
	}

	.flex-caption {
		top: 80px;
	}

	.pagination {
		padding-bottom: 48px;
	}

	.event-item figure {
		width: 98%
	}

	.latestnews-body .image {
		width: 100%;
	}

	.latestnews-body .content {
		width: 100%;
	}

	.widget-causes-body figure {
		width: 98% !important;
	}

	.widget-causes-body .cause-item {
		width: 100% !important;
	}
	
	.widget-event-body .event-item  figure {
		width: 98% !important;
	}

	.widget-event-body .event-item {
		width: 100% !important;
	}

	.designby {
		float: left;
	}

	.square-info {
		position: relative;
		width: 100%;
	}

	.entry-content figure{
		width: 98%;
	}
	.long-description iframe{
		width: 98%;
		height: auto;
		min-height: 300px;
	}
	.square-info-margins {
		margin: 24px 12px;
	}

	.event-info .month-time {
		margin-right: 48px;
	}

	.candidate-about {
		width: 98%; 
		margin-top: 48px;
	}
}

@media (max-width: 480px) {
	.event-info .month-time, 
	.event-address { 
		width: 100%;
	}

	.flex-caption {
		top: 50px;
	}
	.event-address {
		margin: 12px 0;
	}

	.event-location {
		font-size: 20px;
		line-height: normal;
	}

	.event-info .buttons.bookplace {
		float: left; 
		margin-left: 0px;
	}

	#toolbar .tb-list .donate{
		display: none;
	}

	.short-content figure {
		width: 98%;
	}

	.entry-meta .buttons.author {
		display: none;
	}
}

@media (max-width: 320px) {
	#toolbar .tb-list .share, 
	#toolbar .tb-list .rss,
	#toolbar .tb-list .search{
		display: none;
	}
}

/*	----------------------------------------------------------
	Print
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

@media print {
	
}

.sponsors.fleft {
display: none;
}

#nav_menu-7 {
margin-bottom: 12px;
}

.removeStyles{styles:clear}

select {
font-size: 12px !important;
}

table {
width: 500;
}

b {
font-size: 13px !important;
}

td {
padding: 5;
}

input[type="TEXT"] {
font-size: 12px !important;
}

a {
color: #3b3b3d !important;
}

span {
color: red !important;
font-size: 10px !important;
}

center {
font-size: 16px !important;
padding-top: 10px;
}