﻿/* CSS Rules: Sorted alphabetically for better organization. */



/* =Reset CSS (v2.0) http://meyerweb.com/eric/tools/css/reset/
-------------------------------------------------------------- */

@import url("iconfontcustom.css");
@import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,700');

*{margin:0;
 padding:0;
 }
 
 
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

/*HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

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

table {
	border-spacing: 0;
	border-collapse: collapse;
}

button,
input,
select,
textarea {
	overflow: visible;
	width: auto;
	margin: 0;
	font-size: 100%;
	vertical-align: baseline;
	font-family: 'Open Sans', Arial, sans-serif;
}

textarea {
	overflow: auto;
	vertical-align: text-top;
	font-family: 'Open Sans', Arial, sans-serif;
}

/* =Horizontal Rule
-------------------------------------------------------------- */
hr {
	float: none;
	clear: both;
	width: 100%;
	height: 1px;
	border: none;
	color: #ddd;
	background: #ddd;
}

hr.space {
	color: #fff;
	background: #fff;
}

/* =Base
-------------------------------------------------------------- */
html {
	height: 100%;
}

body {
	color: #555;
	background: #fff;
	font-family: 'Open Sans', Arial, Noto Sans, sans-serif;
	font-size: 13px;
	line-height: 21px;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

/* =Typography
-------------------------------------------------------------- */
p {
	word-wrap: break-word;
}

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

tt,
var,
pre,
kbd,
samp,
code {
	font-family: monospace, serif;
	font-style: normal;
}

b,
strong {
	font-weight: 700;
}

pre {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 6px 10px;
	border: 1px solid #aaa;
	border-bottom-color: #ccc;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	outline: none;
	background: #f4f4f4;
	-webkit-box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, 0.2);
	vertical-align: middle;
	white-space: pre-wrap;
	word-wrap: break-word;
}

del {
	color: #555;
	text-decoration: line-through;
}

ins,
dfn {
	border-bottom: 1px solid #ccc;
}

sup,
sub,
small {
	font-size: 85%;
}

abbr,
acronym {
	font-size: 85%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

a abbr,
a acronym {
	border: none;
}

dfn[title],
abbr[title],
acronym[title] {
	border-bottom: 1px solid #ccc;
	cursor: help;
}

sup {
	vertical-align: super;
}

sub {
	vertical-align: sub;
}

/* =Responsive 12 Column Grid
    http://demos.cyberchimps.com/responsivepro/responsive-grid/
-------------------------------------------------------------- */
.grid {
	float: left;
	margin-bottom: 2.127659574468%;
	padding-top: 0;
}

.grid-right {
	float: right;
	margin-bottom: 2.127659574468%;
	padding-top: 0;
}

.col-60,
.col-140,
.col-220,
.col-300,
.col-380,
.col-460,
.col-540,
.col-620,
.col-700,
.col-780,
.col-860 {
	margin-right: 2.127659574468%;
}

.col-60 {
	width: 6.382978723404%;
}

.col-140 {
	width: 14.893617021277%;
}

.col-220 {
	width: 23.404255319149%;
}

.col-300 {
	width: 31.914893617021%;
}

.col-380 {
	width: 40.425531914894%;
}

.col-460 {
	width: 48.936170212766%;
}

.col-540 {
	width: 57.446808510638%;
}

.col-620 {
	width: 65.957446808511%;
}

.col-700 {
	width: 74.468085106383%;
}

.col-780 {
	width: 82.978723404255%;
}

.col-860 {
	width: 91.489361702128%;
}

.col-940 {
	width: 100%;
}

.fit {
	margin-right: 0 !important;
	margin-left: 0 !important;
}

/* =Visibility
-------------------------------------------------------------- */
.hidden {
	visibility: hidden;
}

.visible {
	visibility: visible;
}

.none {
	display: none;
}

.hide-desktop {
	display: none;
}

.show-desktop {
	display: block;
}

/* =Responsive Images
-------------------------------------------------------------- */
img {
	max-width: 100%;
	height: auto;
	border: 0;
	-ms-interpolation-mode: bicubic;
	vertical-align: middle;
}

.ie8 img {
	width: auto\9;
	height: auto;
}

.ie8 img.size-large {
	width: auto;
	max-width: 60%;
}

/* =Responsive Videos
-------------------------------------------------------------- */
video {
	width: 100%;
	max-width: 100%;
	height: auto;
}

/* =Responsive Embeds/Objects
-------------------------------------------------------------- */
embed,
object {
	max-width: 100%;
}

svg:not(:root) {
	overflow: hidden;
}

/* =Links
-------------------------------------------------------------- */
a {
	color: #5a5e66;
	font-weight: 400;
	text-decoration: none;
}

a:hover,
a:focus,
a:active {
	outline: 0;
	color: #444;
	text-decoration: none;
}

::selection {
	color: #fff;
	background: #999;
	text-shadow: none;
}

/* =Forms
-------------------------------------------------------------- */
label {
	display: inline-block;
	padding: 2px 0;
	font-weight: 700;
}

legend {
	padding: 2px 5px;
}

fieldset {
	margin: 0 0 1.5em;
	padding: 1em 2em;
	border: 1px solid #ccc;
}

select, input[type=text], input[type=password], input[type=email],input[type=tel] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 100%;
	margin: 0;
	padding: 6px 8px;
	border: 1px solid #aaa;
	border-bottom-color: #ccc;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	outline: none;
	background-color: #fff;
	/*-webkit-box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, 0.2);*/
	vertical-align: middle;
	cursor: text;
	width:100%;
}

select,input{
	max-width: 100%;
	height: auto;
}

area,
textarea {
	overflow: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 8px 10px;
	border: 1px solid #aaa;
	border-bottom-color: #ccc;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	outline: none;
	background-color: #fff;
	/*-webkit-box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0, 0, 0, 0.2);*/
}

map area {
	padding: 0;
	border: 0;
}

input,
select {
	cursor: pointer;
	font-family: 'Open Sans', Arial, sans-serif;
}

area:focus,
input:focus,
textarea:focus {
	border: 1px solid #6cf;
}

input[type=text], input[type=password] {
	cursor: text;
	font-family: 'Open Sans', Arial, sans-serif;
}

/* =IE Forms
-------------------------------------------------------------- */
.ie7 area, .ie7 select, .ie7 textarea, .ie7 input[type=text], .ie7 input[type=password], .ie7 input[type=email] {
	width: 96%;
}

/* =IE6 Notice
-------------------------------------------------------------- */
.msie-box {
	display: block;
	position: absolute;
	top: 60px;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 10px;
	border: 1px solid #f0c36d;
	color: #212121;
	background-color: #f9edbe;
	text-align: center;
}

.msie-box a {
	color: #212121;
}

/* =Tables
-------------------------------------------------------------- */
th,
td,
table {
	border: 1px solid #ddd;
}

table {
	width: 100%;
	border-collapse: collapse;
}

/* =Lists
-------------------------------------------------------------- */
ul {
	margin: 0;
	padding: 0;
	list-style-type: disc;
}

ol {
	margin: 0;
	padding: 0;
	line-height: 22px;
	list-style-position: outside;
	list-style-type: decimal;
}

dt {
	font-weight: 400;
}

/* =Blockquote
-------------------------------------------------------------- */
blockquote {
	overflow: auto;
	margin: 20px;
	padding: 0 0 10px 12px;
	border: none;
	border-left: 4px solid #d6d6d6;
	background: #f9f9f9;
}

blockquote p {
	font-family: "Georgia", "Times New Roman", Times, serif;
	font-size: 18px;
	font-style: italic;
	line-height: 26px;
}

/* =Headings
-------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	font-weight: 700;
	line-height: 1.0em;
	word-wrap: break-word;
}

h1 {	
	margin-bottom: 0.5em;
	margin-top: 1em;
	font-size: 2.625em; /* = 42px */
}

h2 {	
	margin-bottom: 0.5em;
	margin-top: 1em;
	font-size: 2.250em; /* = 36px */
}

h3 {
	margin-top: 0.5em;
	margin-bottom: 1em;
	font-size: 1.875em; /* = 30px */
}

h4 {	
	margin-bottom: 0.5em;
	margin-top: 1em;
	font-size: 1.500em; /* = 24px */
}

h5 {
	margin-bottom: 0.5em;
	margin-top: 1em;
	font-size: 1.125em; /* = 18px */
}

h6 {	
	margin-bottom: 0.5em;
	margin-top: 1em;
	font-size: 1.000em; /* = 16px */
}

/* =Margins & Paddings
-------------------------------------------------------------- */
p,
hr,
dl,
pre,
form,
table,
address,
blockquote {
	margin:0.5em 0 1em 0;
}

th,
td {
	padding: 0.8em;
}

caption {
	padding-bottom: 0.8em;
}

blockquote {
	padding: 0 1em;
}

blockquote:first-child {
	margin: 0.8em 0;
}

fieldset {
	margin: 1.6em 0;
	padding: 0 1em 1em;
}

legend {
	padding-right: 0.8em;
	padding-left: 0.8em;
}

legend + * {
	margin-top: 1em;
}

input,
textarea {
	padding: 0.3em 0.4em 0.15em;
}

select {
	padding: 0.1em 0.2em 0;
}

option {
	padding: 0 0.4em;
}

dt {
	margin-top: 0.8em;
	margin-bottom: 0.4em;
}

ul {
	list-style-type: disc;
}

ol {
	list-style-type: decimal;
}

ul,
ol {
	/*margin: 0 1.5em 1.5em 0;
	padding-left: 2.0em;*/
	list-style-position: inside;
}

li ul,
li ol {
	margin: 0;
}

form div {
	margin-bottom: 0.8em;
}

/* =Globals
-------------------------------------------------------------- */
#container {
	max-width:1170px;
	margin: 0 auto;
	padding: 0px 10px 8px 10px;
}

#wrapper {
	clear: both;
	position: relative;
	margin: 0px auto 20px auto;
	/*padding: 0 20px 20px 20px;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: #fff;*/
	border-top: 1px solid #ff9801;
}
.home  #wrapper{border:none;}

.front-page #wrapper {
	margin: 20px auto 20px auto;
	padding: 0;
	border: none;
	background-color: transparent;
}

#header {
	margin: 0;
}

.header-top{
	background:#484f5e;
	border-bottom:2px #e4af08 solid;
}

.header-top p,
.header-top p a{
	margin:0;
	color:#fff;
}

.header-top p a:hover{
	color:#ccc;
}


.header-top .grid,
.header-top .grid-right{
	margin:5px 0;
}

.header-bot{
	
}


#footer {
	clear: both;
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 10px;
}

#footer-wrapper {
	margin: 0;
	padding: 0;
}

.main-banner{

}

/* =Header
-------------------------------------------------------------- */
#logo {
	float: left;
	/*margin:12px 0;*/
}

.site-name {
	display: block;
	padding-top: 20px;
	font-size: 2.063em; /* = 33px */
	line-height: 1.0em;
}

.site-name a {
	color: #333;
	font-weight: 700;
}

.site-description {
	display: block;
	margin: 10px 0;
	color: #afafaf;
	font-size: 0.875em; /* = 14px */
}

/* =Content
-------------------------------------------------------------- */
#content {
	margin-top: 0px;
	margin-bottom: 20px;
}

#content-full {
	margin-top: 0px;
	margin-bottom: 0px;
}

#content-blog {
	margin-top: 0px;
	margin-bottom: 0px;
}

#content-images {
	margin-bottom: 0px;
}

#content-search {
	margin-top: 0px;
	margin-bottom: 20px;
}

#content-archive {
	margin-top: 0px;
	margin-bottom: 0px;
}

#content-sitemap {
	margin-top: 0px;
	margin-bottom: 0px;
}

#content-sitemap a {
	font-size: 12px;
}

#content .sticky {
	clear: both;
}


.home h2.entry-title{
	display:none !important;
}

#content-full h3{
	text-align:center;	
}

#content-full h3 span,
.container-bot .widget-title h3 span{
	padding:0 30px 10px 30px !important;
}

.container-bot .widget-title h3{
	text-align:center;
}




ul.icon-box-6 {
		margin-bottom: 30px;
		list-style: none; 
		margin-top: 0px;
padding: 0px;
}
ul.icon-box-6 h3{
font-size: 15px;
line-height: 44px;
margin-top: 0px;
text-align: left !important;
padding: 2px 0;
}

ul.icon-box-6 h3 a { text-decoration: none; font-family: 'Open Sans', Arial, sans-serif; }

ul.icon-box-6 li {
	min-height: 60px;
	/*background: url(../images/bg-vertical-dot.png) repeat-y left+23px center;
	padding-bottom: 15px;*/
	padding-bottom: 4px;
}

ul.icon-box-6 li p{
	margin:0px;
	font-family: 'Open Sans', Arial, sans-serif;
}

ul.icon-box-6 li:last-child { background: none; padding-bottom: 0; }

ul.icon-box-6 li i {
	float: left;
	display: block;
	width: 48px;
	height: 48px;
	-webkit-border-radius: 50%;
			border-radius: 50%;
	outline: 10px solid transparent;
	background-color: #f39b16;
	color: #fff;
	font-size: 24px; 
	line-height: 48px;
	text-align: center;
	-webkit-transition: background-color 0.3s;
		 -o-transition: background-color 0.3s;
			transition: background-color 0.3s; 
}

ul.icon-box-6 .icons-box-content { margin-left: 80px; }
ul.icon-box-6 .icons-box-content a { color: #474D5D; font-weight: 600;}
ul.icon-box-6 .icons-box-content a:hover{color:#68ccfe;}

ul.icon-box-6 li:hover i { background-color: #68ccfe; }

@media (max-width: 767px) {
	
	ul.icon-box-6 { margin-top: 30px; }
	
}

@media (max-width: 799px) {
	
	.main-nav{
		float: none !important;
	}
	
}

/* =Templates (Landing Page)
-------------------------------------------------------------- */
.page-template-landing-page-php .menu,
.page-template-landing-page-php .top-menu,
.page-template-landing-page-php .main-nav,
.page-template-landing-page-php .footer-menu,
.page-template-landing-page-php .sub-header-menu {
	display: none;
}

/* =Author Meta (Author's Box)
-------------------------------------------------------------- */
#author-meta {
	display: block;
	clear: both;
	overflow: hidden;
	margin: 30px 0 40px 0;
	padding: 10px;
	border: 1px solid #d6d6d6;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background: #f9f9f9;
}

#author-meta img {
	float: left;
	padding: 10px 15px 0 5px;
}

#author-meta p {
	margin: 0;
	padding: 5px;
}

#author-meta .about-author {
	margin: 10px 0 0 0;
	font-weight: 700;
}

/* =Featured Content
-------------------------------------------------------------- */
#featured {
	width: 99.893617021277%;
	padding-bottom: 40px;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: #fff;
}

#featured p {
	padding: 0 40px 0 40px;
	font-size: 18px;
	font-weight: 200;
	line-height: 27px;
	text-align: center;
}

#featured-image {
	margin: 40px 0 0 0;
}

#featured-image .fluid-width-video-wrapper {
	margin-left: -20px;
}

.featured-image img {
	margin-top: 44px;
}

/* =Post
-------------------------------------------------------------- */
.comments-link {
	font-size: 12px;
}

#cancel-comment-reply-link {
	color: #900;
}

.post-data {
	clear: both;
	margin-top: 20px;
	font-size: 12px;
	font-weight: 700;
}

.post-data a {
	color: #111;
}

.post-entry {
	clear: both;
}

.post-meta {
	clear: both;
	margin-bottom: 10px;
	color: #9f9f9f;
	font-size: 12px;
}

.post-edit {
	display: block;
	clear: both;
	margin: 1.5em 0;
	font-size: 12px;
}

.post-search-terms {
	clear: both;
}

.read-more {
	clear: both;
	font-weight: 700;
}

.attachment-entry {
	clear: both;
	text-align: center;
}

/* =bbPress
    bbPress has its own breadcrumb lists
-------------------------------------------------------------- */
.bbpress .breadcrumb-list,
.bbpress .post-meta {
	display: none;
}

/* =Symbols
-------------------------------------------------------------- */
.ellipsis {
	margin-left: 5px;
	color: #aaa;
	font-size: 18px;
}

.form-allowed-tags {
	display: none;
	font-size: 10px;
}

/* =Widgets
-------------------------------------------------------------- */
.widget-wrapper {
	margin: 0;
	/*padding: 20px;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: #f9f9f9;*/
}

.widget-wrapper select, .widget-wrapper input[type=text], 
.widget-wrapper input[type=password], 
.widget-wrapper input[type=email],
.widget-wrapper input[type=tel],
.widget-wrapper textarea {
	width: 95%;
}

#widgets {
	margin-top: 32px;
}

#widgets a {
	display: inline-block;
	margin: 0;
	padding: 0;
	text-decoration: none;
}

#widgets form {
	margin: 0;
}

#widgets ul,
#widgets ol {
	padding: 0 0 0 20px;
}

#widgets ul li a {
	display: inline;
	text-decoration: none;
}

#widgets .widget-title img {
	float: right;
	position: relative;
	top: 4px;
	width: 11px;
	height: 11px;
}

#widgets .rss-date {
	padding: 6px 12px;
	line-height: 18px;
}

#widgets .rssSummary {
	padding: 10px;
}

#widgets cite {
	padding: 6px 12px;
	font-style: normal;
	line-height: 18px;
}

#widgets .tagcloud,
#widgets .textwidget {
	display: block;
	margin: 0;
	line-height: 1.5em;
	word-wrap: break-word;
}

#widgets .textwidget a {
	display: inline;
}

#widgets ul .children {
	padding: 0 0 0 10px;
}

#widgets .author {
	padding-top: 4px;
	font-weight: 700;
}

.widget_archive select,
#cat {
	display: block;
	margin: 0 15px 0 0;
}

#colophon-widget{
	margin:0;
}

.colophon-widget {
	min-height: 0;
	background: none;
	margin:10px 0;
}

.colophon-widget select, .colophon-widget input[type=text], 
.colophon-widget input[type=password], .colophon-widget input[type=email] {
	width: 100%;
}



.top-widget {
	float: right;
	clear: right;
	width: 45%;
	min-height: 0;
	padding: 0 3px 0 0;
	border: none;
	background: none;
	text-align: right;
}

.top-widget ul {
	padding: 0;
}

.top-widget select, .top-widget input[type=text], .top-widget input[type=password], .top-widget input[type=email] {
	width: auto;
}

.top-widget #searchform {
	margin: 0;
}

/* =Titles
-------------------------------------------------------------- */
.featured-title {
	margin: 0;
	padding-top: 40px;
	font-size: 60px;
	text-align: center;
	letter-spacing: -1px;
}

.featured-subtitle {
	padding: 0 10px;
	text-align: center;
}

.widget-title h3,
.widget-title-home h3 {
	display: block;
	margin: 0;
	padding: 0 0 20px 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 23px;
	text-align: left;
}


#container .widget-title h3,.blog-post .widget-title h3 ,
#container h2{
	border-bottom: 1px solid #c4c4c4;
	color: #474D5D;
	margin-bottom: 30px;
	padding:0;
	font-weight: normal;
	line-height: 20px;
	font-size: 20px;
	display: block;
}

#container .widget-title h3 span,.blog-post .widget-title h3 ,
#container h2 span {
	display: inline-block;
	padding: 0 30px 10px 0;
	border-bottom: 4px solid #ff9801;
	margin-bottom: -1px;
	font-weight: 600;
}



.home #content-full .textwidget h4{
	text-align:center;
	font-weight:normal;
	line-height: 18px;
	font-size: 18px;
	color:#f39b16;
}
.home #content-full .textwidget h4 a{
	color:#f39b16;
	font-weight: 600;
}

.home #content-full .textwidget h4 a:hover{
	color:#68ccfe;
}
.bgico {
	float: left;
	position: relative;
	width: 100%;
	min-height:160px;
	margin-bottom: 20px;
	background: #f0f0f0 url(../images/white_bg.png) center top no-repeat;
	-webkit-transition: background-color 0.3s;
		 -o-transition: background-color 0.3s;
			transition: background-color 0.3s;
}

.bgico:hover{	
	background: #bdb9b9 url(../images/white_bg.png) center top no-repeat;
}

.icotitle {
	position: relative;
	width: 80px;
	height: 80px;
	left: 50%;
	margin-left: -40px;
	margin-top: 15px;
	overflow: hidden;
}

.big-date-full{
	color:#fff;
	background-image:url('../images/bg-parallax.png');
	text-align:center;
	padding:60px 0 30px 0;
	background-position:50% 50%;
	margin:0 0 3.12766% 0;
}
.big-date-full .grid{
	margin-bottom:0;
}

.big-date-full h3{
	display:none;
}

.big-date-full h2{
	font-weight:normal !important;
	font-size:28px !important;
	margin:0 0 30px 0;
	border:none 0 !important;
	color:#fff !important;
	line-height:28px !important;
}

.big-date-full p{
	font-size:15px;
	margin:10px 0 20px;
}

.big-date-full p a.register-btn{
	padding:10px 40px;
	background:#484f5e;
	border-bottom:6px #383d47 solid;
	color:#fff;
	display:inline-block;
}

.big-date-full p a.register-btn:hover{	
	color:#ccc;
}


.container-bot #container .tidp-box{
	position:relative;
	opacity: 1.0;
}

.container-bot #container .tidp-box .tidp-title{
	position:absolute;
	bottom:0%;
	background: rgba(0, 0, 0, .5);
	color:#fff;
	margin:0;
	padding:5px 10px;
}

.container-bot #container .tidp-box .tidp-title h4{
	color:#fff;
	margin:0;
	text-align:center;
}


.newsbox .grid{
	margin-bottom:0;
}

.newsbox h2{
	font-weight:normal;
	color:#fff;
	/*margin-top: 0.6em;
	margin-bottom: 0.5em;*/
	font-size: 2.25em;
}


.top-widget .widget-title h3 {
	padding: 0;
	font-size: 14px;
	text-align: right;
}

.widget-title a {
	padding: 0 !important;
	border-bottom: none;
}

.title-404 {
	color: #933;
}

/* =404 Page
-------------------------------------------------------------- */
.error404 select, .error404 input[type=text], .error404 input[type=password], .error404 input[type=email] {
	width: auto;
}

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

/* =Skip Links
-------------------------------------------------------------- */
.skip-container {
	display: block;
	position: relative;
	/*padding: 0.5em 0.5em 0.5em 0;*/
	padding:0;
}

.skip-link {
	float: right;
	margin-left: -100%;
	padding: 0.5em;
	border: 1px solid #d5d5d5;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #f5f5f5;
	font-size: 0.8125em;
	text-transform: uppercase;
}

.skip-link:hover,
.skip-link:active,
.skip-link:focus {
	border: 1px solid #666;
}

.custom-background .site {
	margin: 0 auto;
	-webkit-box-shadow: 0 -5px 5px 4px #d5d5d5;
	-moz-box-shadow: 0 -5px 5px 4px #d5d5d5;
	box-shadow: 0 -5px 5px 4px #d5d5d5;
}


/* =Top Menu
-------------------------------------------------------------- */
.top-menu {
	float: right;
	margin: 10px 0;
	padding: 0;
}

.top-menu li {
	display: inline;
	list-style-type: none;
}

.top-menu li a {
	padding: 0 4px 0 8px;
	border-left: 1px solid #ccc;
	color: #333;
	font-size: 11px;
}

.top-menu > li:first-child > a {
	border-left: none;
}

.top-menu li a:hover {
	color: #333;
}

/* =Header Menu (Primary)
-------------------------------------------------------------- */
.menu {
	clear: both;
	margin: 0 auto;
	/*background-color: #000638;
	background-image: linear-gradient(top, #585858, #3d3d3d);*/
	font-family:'Open Sans', Arial, sans-serif;
}

.main-nav {
	/*clear: both;*/
	float:right;
}

.menu,
.menu ul {
	display: block;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.menu li {
	display: block;
	float: left;
	position: relative;
	z-index: 5;
	margin: 0;
	padding: 0;
	border: 0;
}

.menu li:hover {
	z-index: 10000;
	white-space: normal;
}

.menu li li {
	float: none;
}

.menu ul {
	visibility: hidden;
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
}

.menu li:hover > ul {
	visibility: visible;
	top: 100%;
}

.menu li li:hover > ul {
	top: 0;
	left: 100%;
}

.menu:after,
.menu ul:after {
	display: block;
	visibility: hidden;
	clear: both;
	overflow: hidden;
	height: 0;
	content: ".";
}

.menu,
.menu ul {
	min-height: 0;
}

.menu ul,
.menu ul ul {
	margin: 0;
	padding: 0;
}

.menu ul li a:hover,
.menu li li a:hover {
	color: #fff;
	text-decoration: none;
}

.menu ul {
	width: auto;
	min-width: 15em;
	margin-top: 1px;
}

.menu a {
	display: block;
	position: relative;
	height: 100px;
	margin: 0;
	padding: 0 0.9em;	
	color: #747474;	
	font-size: 15px;
	font-weight: normal;
	line-height: 100px;
	white-space: nowrap;
	text-decoration: none;
	cursor: pointer;
}

.menu a:hover {
	color: #fff;
	background-color: #ff9801;
	/*background-image: linear-gradient(top, #808080, #363636);*/
}

ul.menu > li:hover {
	color: #fff;
	background-color: #ff9801;
}

.menu ul li.current_page_item a,
.menu ul li .current-menu-item a {
	background-color: #ff9801 ;
	color: #fff;
	font-weight: 600;
}

 .sub-menu .current_page_item a,
 .sub-menu .current-menu-item a{
	color: #ff9801 !important;	
	}



.front-page .menu .current_page_item a {
	background: none;
	background-color: transparent;
	background-image: none;

	filter: none;
}

.menu li li {
	width: auto;
	margin: -1px 0 1px 0;
	border: 1px solid #e5e5e5;
	color: #444;
	background: #fff;
	background-image: none;

	filter: none;
}

.menu li li a {
	height: auto;
	height: 20px;
    padding: 8px 10px;
	border: none;
	color: #444;
	background: transparent !important;
	text-shadow: none;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	white-space: nowrap;
}

.menu li li a:hover {
	border: none;
	color: #ff9801;
	background: #ffffff !important;
	background-image: none;
	filter: none;
}


.menu li li:hover {
	background: #f5f5f5 !important;

	filter: none;
}

.menu ul > li + li {
	border-top: 0;
}

.menu li li:hover > ul {
	top: 0;
	left: 100%;
}

.menu > li:first-child > a {
	border-left: none;
}

.menu a#responsive_menu_button {
	display: none;
}

.main-nav #responsive_current_menu_item {
	display: none;
}

/*.js .main-nav .menu {*/
/*display: block;*/
/*}*/

/* =Primary Main Menu IE Fixes
-------------------------------------------------------------- */
.ie7 .menu ul {
	background: url(../../core/images/ie7-fix.gif) repeat;
}

.ie7 .menu li li a {
	min-width: 100%;
}

/* =Sub-Header Menu
-------------------------------------------------------------- */
.sub-header-menu {
	clear: both;
	margin: 0 auto;
	border: 1px solid #e5e5e5;
	border-top: none;
	background-color: #fff;
}

.sub-header-menu,
.sub-header-menu ul {
	display: block;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.sub-header-menu li {
	display: block;
	float: left;
	position: relative;
	z-index: 5;
	margin: 0;
	padding: 0;
	border: 0;
}

.sub-header-menu li:hover {
	z-index: 10000;
	white-space: normal;
}

.sub-header-menu li li {
	float: none;
}

.sub-header-menu ul {
	visibility: hidden;
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
}

.sub-header-menu li:hover > ul {
	visibility: visible;
	top: 100%;
}

.sub-header-menu li li:hover > ul {
	top: 0;
	left: 100%;
}

.sub-header-menu:after,
.sub-header-menu ul:after {
	display: block;
	visibility: hidden;
	clear: both;
	overflow: hidden;
	height: 0;
	content: ".";
}

.sub-header-menu,
.sub-header-menu ul {
	min-height: 0;
}

.sub-header-menu ul,
.sub-header-menu ul ul {
	margin: 0;
	padding: 0;
}

.sub-header-menu ul li a:hover,
.sub-header-menu li li a:hover {
	color: #484848;
	text-decoration: none;
}

.sub-header-menu ul {
	width: auto;
	min-width: 15em;
	margin-top: 1px;
}

.sub-header-menu a {
	display: block;
	position: relative;
	height: 35px;
	margin: 0;
	padding: 0 0.9em;
	border-left: 1px solid #e5e5e5;
	color: #333;
	text-shadow: none;
	font-size: 12px;
	font-weight: 400;
	line-height: 35px;
	text-decoration: none;
	cursor: pointer;
}

.sub-header-menu a:hover {
	background-color: #f9f9f9;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
}

.sub-header-menu .current_page_item a,
.sub-header-menu .current-menu-item a {
	background-color: #f9f9f9;
}

.sub-header-menu li li {
	width: auto;
	margin: -1px 0 1px 0;
	border: 1px solid #e5e5e5;
	color: #444;
	background: #fff;
	background-image: none;

	filter: none;
}

.sub-header-menu li li a {
	height: auto;
	height: 20px;
	padding: 5px 10px;
	border: none;
	color: #444;
	text-shadow: none;
	font-size: 12px;
	font-weight: 400;
	line-height: 20px;
	white-space: nowrap;
}

.sub-header-menu li li a:hover {
	border: none;
	color: #444;
	background: #f9f9f9;
	background-image: none;

	filter: none;
}

.sub-header-menu ul > li + li {
	border-top: 0;
}

.sub-header-menu li li:hover > ul {
	top: 0;
	left: 100%;
}

.sub-header-menu > li:first-child > a {
	border-left: none;
}

.sub-header-menu ul.children a,
.sub-header-menu .current_page_ancestor,
.sub-header-menu .current_page_ancestor ul a {
	background: none;
	background-image: none;

	filter: none;
}

/* =Sub Header Menu IE Fixes
-------------------------------------------------------------- */
.ie7 .sub-header-menu ul {
	background: url(../../core/images/ie7-fix.gif) repeat;
}

.ie7 .sub-header-menu li li a {
	min-width: 100%;
}

/* =Footer Menu
-------------------------------------------------------------- */
.footer-menu {
	margin-left: 0;
	padding: 0;
}

.footer-menu li {
	display: inline;
	list-style-type: none;
}

.footer-menu li a {
	padding: 0 8px;
	border-left: 1px solid #ccc;
	color: #333;
}

.footer-menu li a:hover {
	color: #222;
}

.footer-menu > li:first-child > a {
	padding: 0 8px 0 0;
	border-left: none;
}

/* =Navigation
-------------------------------------------------------------- */
.navigation {
	display: block;
	height: 28px;
	margin: 20px 0;
	padding: 0 5px;
	color: #111;
	font-size: 13px;
	line-height: 28px;
}

.navigation a {
	padding: 4px 10px;
	color: #aaa;
}

.navigation a:hover {
	color: #111;
	text-decoration: none;
}

.navigation .previous {
	float: left;
}

.navigation .next {
	float: right;
}

.navigation .bracket {
	font-size: 36px;
}

/* =Pagination (pages)
-------------------------------------------------------------- */
.pagination {
	display: block;
	clear: both;
	margin: 10px 0;
	padding: 5px 0;
	font-size: 16px;
	font-weight: 700;
}

.pagination a {
	text-decoration: none;
}

/* =Breadcrumb Lists
-------------------------------------------------------------- */
.breadcrumb-list {
	font-size: 12px;
}

/* =Comments
-------------------------------------------------------------- */
#commentform {
	margin: 0;
}

.commentlist {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #e5e5e5;
	list-style: none;
}

.commentlist ol {
	list-style: decimal;
}

.commentlist li {
	margin: 0;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: #fff;
}



.commentlist li cite {
	color: #111;
	font-size: 1.1em;
	font-weight: 400;
	font-style: normal;
}

.commentlist li.alt {
	background: #f9f9f9;
}

.commentlist .children {
	margin-left: 10px;
	padding: 10px;
	list-style: none;
}

.commentlist .avatar {
	float: left;
	margin-right: 10px;
	padding: 0;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	vertical-align: middle;
}



.comment-author .says {
	color: #999;
}

.comment-body .comment-meta {
	display: inline-block;
	margin: 0;
	padding: 0;
	color: #999;
	text-align: left;
}

.comment-body .comment-meta a {
	font-size: 11px;
}

.comment-body {
	clear: both;
	padding: 10px;
}

.comment-body p {
	clear: both;
}



.pingback,
.trackback {
	margin: 20px 0;
	list-style: none;
}

.pingback cite,
.trackback cite {
	font-style: normal;
}

#pings,
#comments {
	text-align: left;
}

#respond {
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #aaa;
	clear: both;
	margin-top: 15px;
	padding: 10px 20px 50px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: #eaeaea;
	background-image: linear-gradient(top, #fff, #eaeaea);
}

#respond label {
	display: inline;
}

.reply {
	margin: 10px 0;
}

.comment-form-url input,
.comment-form-email input,
.comment-form-author input,
.comment-form-comment textarea {
	display: block;
	width: 100%;
}

.nocomments {
	color: #999;
	font-size: 0.9em;
	text-align: center;
}

/* =Gallery
-------------------------------------------------------------- */
/* Normal */
.gallery-columns-1 .gallery-item {
	max-width: 600px;
}

.gallery-columns-2 .gallery-item {
	max-width: 300px;
}

.gallery-columns-3 .gallery-item {
	max-width: 200px;
}

.gallery-columns-4 .gallery-item {
	max-width: 150px;
}

.gallery-columns-5 .gallery-item {
	max-width: 120px;
}

.gallery-columns-6 .gallery-item {
	max-width: 100px;
}

.gallery-columns-7 .gallery-item {
	max-width: 85px;
}
.gallery-columns-8 .gallery-item {
	max-width: 75px;
}

.gallery-columns-9 .gallery-item {
	max-width: 66px;
}

/* Full Width */
.page-template-full-width-page-php .gallery-columns-1 .gallery-item,
.page-template-landing-page.php .gallery-columns-1 .gallery-item {
	max-width: 900px;
}

.page-template-full-width-page-php .gallery-columns-2 .gallery-item,
.page-template-landing-page.php .gallery-columns-2 .gallery-item {
	max-width: 450px;
}

.page-template-full-width-page-php .gallery-columns-3 .gallery-item,
.page-template-landing-page.php .gallery-columns-3 .gallery-item {
	max-width: 300px;
}

.page-template-full-width-page-php .gallery-columns-4 .gallery-item,
.page-template-landing-page.php .gallery-columns-4 .gallery-item {
	max-width: 225px;
}

.page-template-full-width-page-php .gallery-columns-5 .gallery-item,
.page-template-landing-page.php .gallery-columns-5.gallery-item {
	max-width: 180px;
}

.page-template-full-width-page-php .gallery-columns-6 .gallery-item,
.page-template-landing-page.php .gallery-columns-6 .gallery-item {
	max-width: 150px;
}

.page-template-full-width-page-php .gallery-columns-7 .gallery-item,
.page-template-landing-page.php .gallery-columns-7 .gallery-item {
	max-width: 125px;
}

.page-template-full-width-page-php .gallery-columns-8 .gallery-item,
.page-template-landing-page.php .gallery-columns-8 .gallery-item {
	max-width: 112.5px;
}

.page-template-full-width-page-php .gallery-columns-9 .gallery-item,
.page-template-landing-page.php .gallery-columns-9 .gallery-item {
	max-width: 100px;
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 20px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

.aligncenter {
	display: block;
	margin: 5px auto;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.wp-caption {
	max-width: 96%;
	padding: 13px 10px 10px 10px;
	border: 1px solid #f0f0f0;
	background: #f9f9f9;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	width: auto;
	max-width: 98.5%;
	height: auto;
	margin: 0;
	padding: 0;
	border: 0 none;
}

.wp-caption p.wp-caption-text {
	margin: 0;
	padding: 10px;
	font-size: 12px;
	line-height: 1.5em;
}

img.wp-smiley {
	vertical-align: middle;
}

.bypostauthor {
	
}

/* =WordPress Gallery
-------------------------------------------------------------- */
.gallery {
	margin: 0 auto 18px;
}

.gallery .gallery-item {
	float: left;
	max-width: 155px;
	margin-top: 0;
	text-align: center;
}

.gallery img {
	border: 1px solid #ddd;
}

.gallery .gallery-caption {
	margin: 0 0 12px;
	font-size: 12px;
}

.gallery dl {
	margin: 0;
}

.gallery br + br {
	display: none;
}

.attachment-gallery img {
	display: block;
	width: auto;
	max-width: 96%;
	height: auto;
	margin: 15px auto;
	padding: 5px;
	border: 1px solid #f0f0f0;
	background: #fff;
}

.gallery-meta .iso,
.gallery-meta .camera,
.gallery-meta .shutter,
.gallery-meta .aperture,
.gallery-meta .full-size,
.gallery-meta .focal-length {
	display: block;
}

/* =Post Thumbnails
-------------------------------------------------------------- */
img.wp-post-image,
img.attachment-full,
img.attachment-large,
img.attachment-medium,
img.attachment-thumbnail {
	display: block;
	width: auto;
	margin: 15px auto;
}

/* =Buttons
-------------------------------------------------------------- */
a.button, input[type=reset], input[type=button], input[type=submit] {
	display: inline-block;
	margin: 0;
	padding: 4px 10px;
	border: 1px solid #ddd;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	color: #fff;
	background-color: #303745; /* Alabaster */
	/*box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
	text-shadow: 0 1px 0 #fff;*/
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	vertical-align: middle;
	white-space: nowrap;
	text-decoration: none;
	cursor: pointer;
	background-image: linear-gradient(top, #303745, #f1f1f1);
}

a.button:hover, input[type=reset]:hover, input[type=button]:hover, input[type=submit]:hover {
	border: 1px solid #f39b16;
	color: #fff;
	background-color: #f39b16;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
	background-image: linear-gradient(top, #fff, #f1f1f1);
}

a.button:active, input[type=reset]:active, input[type=button]:active, input[type=submit]:active {
	background-color: #f9f9f9;
	background-image: linear-gradient(top, #f9f9f9, #f1f1f1);
	}

/* =Buttons (Call to Action)
-------------------------------------------------------------- */
.call-to-action {
	text-align: center;
}

.call-to-action a.button {
	padding: 15px 35px;
	font-size: 24px;
}

.call-to-action a.button:hover {
	text-decoration: none;
}

.ie7 .call-to-action a.button {
	padding: 11px 35px 19px 35px;
}

/* =Buttons (Sizes)
-------------------------------------------------------------- */
.small a.button {
	padding: 3px 6px;
	font-size: 10px;
}

.medium a.button {
	padding: 8px 16px;
	font-size: 16px;
}

.large a.button {
	padding: 10px 35px;
	font-size: 18px;
}

.xlarge a.button {
	padding: 12px 55px;
	font-size: 24px;
}

/* =Buttons (Colors)
-------------------------------------------------------------- */
a.blue {
	border: 1px solid #115290;
	color: #fff;
	background-color: #1874cd; /* Dodger Blue */
	text-shadow: 0 -1px 0 #115290;
	background-image: linear-gradient(top, #4f9eea, #1874cd);
}

a.blue:hover {
	border: 1px solid #115290;
	color: #fff;
	background-color: #7db7f0;
	text-shadow: 0 -1px 0 #115290;
	background-image: linear-gradient(top, #7db7f0, #1874cd);
}

a.red {
	border: 1px solid #890000;
	color: #fff;
	background-color: #cd0000; /* Red 4 */
	text-shadow: 0 -1px 0 #890000;
	background-image: linear-gradient(top, #ff2323, #cd0000);
}

a.red:hover {
	border: 1px solid #890000;
	color: #fff;
	background-color: #ff5656;
	text-shadow: 0 -1px 0 #890000;
	background-image: linear-gradient(top, #ff5656, #cd0000);
}

a.orange {
	border: 1px solid #bb5d00;
	color: #fff;
	background-color: #ff7f00; /* Dark Orange 1 */
	text-shadow: 0 -1px 0 #bb5d00;
	background-image: linear-gradient(top, #fa5, #ff7f00);
}

a.orange:hover {
	border: 1px solid #bb5d00;
	color: #fff;
	background-color: #ffc388;
	text-shadow: 0 -1px 0 #bb5d00;
	background-image: linear-gradient(top, #ffc388, #ff7f00);
}

a.yellow {
	border: 1px solid #bb9e00;
	color: #161300;
	background-color: #ecca06; /* Yellow Gold */
	text-shadow: 0 1px 0 #fff;
	background-image: linear-gradient(top, #fff2aa, #ffd700);
}

a.yellow:hover {
	border: 1px solid #bb9e00;
	color: #161300;
	background-color: #fffadd;
	text-shadow: 0 1px 0 #fff;
	background-image: linear-gradient(top, #fffadd, #ffd700);
}

a.green {
	border: 1px solid #1d5837;
	color: #fff;
	background-color: #2e8b57; /* Sea Green 4 */
	text-shadow: 0 -1px 0 #1d5837;
	background-image: linear-gradient(top, #4bc380, #2e8b57);
}

a.green:hover {
	border: 1px solid #1d5837;
	color: #fff;
	background-color: #71d09b;
	text-shadow: 0 -1px 0 #1d5837;
	background-image: linear-gradient(top, #71d09b, #2e8b57);
}

a.olive {
	border: 1px solid #626862;
	color: #fff;
	background-color: #838b83; /* Honey Dew 4 */
	text-shadow: 0 -1px 0 #626862;
	background-image: linear-gradient(top, #afb4af, #838b83);
}

a.olive:hover {
	border: 1px solid #626862;
	color: #fff;
	background-color: #c9cdc9;
	text-shadow: 0 -1px 0 #626862;
	background-image: linear-gradient(top, #c9cdc9, #838b83);
}

a.purple {
	border: 1px solid #3f305e;
	color: #fff;
	background-color: #5d478b; /* Medium Purple 4 */
	text-shadow: 0 -1px 0 #3f305e;
	background-image: linear-gradient(top, #8771b6, #5d478b);
}

a.purple:hover {
	border: 1px solid #3f305e;
	color: #fff;
	background-color: #a492c8;
	text-shadow: 0 -1px 0 #3f305e;
	background-image: linear-gradient(top, #a492c8, #5d478b);
}

a.pink {
	border: 1px solid #8e0b52;
	color: #fff;
	background-color: #cd1076; /* Deep Pink 3 */
	text-shadow: 0 -1px 0 #8e0b52;
	background-image: linear-gradient(top, #f042a0, #cd1076);
}

a.pink:hover {
	border: 1px solid #8e0b52;
	color: #fff;
	background-color: #f471b8;
	text-shadow: 0 -1px 0 #8e0b52;
	background-image: linear-gradient(top, #f471b8, #cd1076);
}

a.brick {
	border: 1px solid #791717;
	color: #fff;
	background-color: #b22222; /* Fire Brick */
	text-shadow: 0 -1px 0 #791717;
	background-image: linear-gradient(top, #dd4c4c, #b22222);
}

a.brick:hover {
	border: 1px solid #791717;
	color: #fff;
	background-color: #e57777;
	text-shadow: 0 -1px 0 #791717;
	background-image: linear-gradient(top, #e57777, #b22222);
}

a.gold {
	border: 1px solid #6b4e06;
	color: #fff;
	background-color: #8b6508; /* Dark Golden Rod 4 */
	text-shadow: 0 -1px 0 #6b4e06;
	background-image: linear-gradient(top, #db9f0d, #8b6508);
}

a.gold:hover {
	border: 1px solid #6b4e06;
	color: #fff;
	background-color: #f3b828;
	text-shadow: 0 -1px 0 #6b4e06;
	background-image: linear-gradient(top, #f3b828, #8b6508);
}

a.brown {
	border: 1px solid #4f270b;
	color: #fff;
	background-color: #8b4513; /* Saddle Brown */
	text-shadow: 0 -1px 0 #4f270b;
	background-image: linear-gradient(top, #d66a1d, #8b4513);
}

a.brown:hover {
	border: 1px solid #4f270b;
	color: #fff;
	background-color: #8b4513;
	text-shadow: 0 -1px 0 #4f270b;
	background-image: linear-gradient(top, #e58541, #8b4513);
}

a.silver {
	border: 1px solid #9e9e9e;
	color: #444;
	background-color: #c0c0c0; /* Silver */
	text-shadow: 0 1px 0 #fff;
	background-image: linear-gradient(top, #eaeaea, #c0c0c0);
}

a.silver:hover {
	border: 1px solid #9e9e9e;
	color: #444;
	background-color: #fff;
	text-shadow: 0 1px 0 #fff;
	background-image: linear-gradient(top, #fff, #c0c0c0);
}

a.gray {
	border: 1px solid #474747;
	color: #fff;
	background-color: #696969; /* Dim Gray */
	text-shadow: 0 -1px 0 #474747;
	background-image: linear-gradient(top, #939393, #696969);
}

a.gray:hover {
	border: 1px solid #474747;
	color: #fff;
	background-color: #adadad;
	text-shadow: 0 -1px 0 #474747;
	background-image: linear-gradient(top, #adadad, #696969);
}

a.black {
	border: 1px solid #000;
	color: #fff;
	background-color: #080808; /* Black */
	text-shadow: 0 -1px 0 #000;
	background-image: linear-gradient(top, #323232, #080808);
}

a.black:hover {
	border: 1px solid #000;
	color: #fff;
	background-color: #4c4c4c;
	text-shadow: 0 -1px 0 #000;
	background-image: linear-gradient(top, #4c4c4c, #080808);
}

/* =Info Boxes
-------------------------------------------------------------- */
.info-box {
	display: block;
	margin: 20px 0;
	padding: 15px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	text-align: left;
}

.alert {
	border: 1px solid #dc7070;
	color: #212121;
	background-color: #faebeb;
}

.address {
	border: 1px solid #cdc9a5;
	color: #212121;
	background-color: #f6f5ef;
}

.notice {
	border: 1px solid #e3cf57;
	color: #212121;
	background-color: #fbf9e9;
}

.success {
	border: 1px solid #a2bc13;
	color: #212121;
	background-color: #f9fde8;
}

.download {
	border: 1px solid #ff9912;
	color: #212121;
	background-color: #fff4e5;
}

.information {
	border: 1px solid #6ca6cd;
	color: #212121;
	background-color: #eef3f6;
}

.required {
	color: #d5243f;
}

/* =WooCommerce
-------------------------------------------------------------- */
#breadcrumb {
	padding: 40px 0 0 0;
}

#breadcrumb a {
	color: #06c;
	font-size: 12px;
	font-weight: 400;
}

#breadcrumb a:hover {
	color: #444;
	text-decoration: none;
}

#content-woocommerce {
	margin-top: 40px;
	margin-bottom: 20px;
}

.products ul,
ul.products {
	margin-top: 40px;
}

.cart-collaterals .shipping_calculator {
	width: 100%;
}

table.shop_table {
	table-layout: fixed;
	word-break: break-all;
	-ms-word-break: break-all;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}

@media screen and (max-width:767px) {
	table.shop_table {
		font-size: 10px;
	}
}

@media screen and (max-width:400px) {
	table.shop_table {
		font-size: 8px;
	}
}

table.cart td.actions .coupon .input-text,
table.cart td.actions .coupon .input-text {
	cursor: text;
}

/* =WPML
-------------------------------------------------------------- */
.icl_languages_selector {
	float: right;
	text-align: left;
}

.rtl .icl_languages_selector {
	float: left;
	text-align: right;
}

@media screen and (max-width: 650px) {
	.icl_languages_selector,
	.rtl .icl_languages_selector {
		float: none;
	}
}

/* =Polylang
-------------------------------------------------------------- */
.widget_polylang li {
	display: inline;
	list-style-type: none;
}

/* =Footer
-------------------------------------------------------------- */

.newsbox{
	background:#79849b;
}

.footermidd{
	background:#484f5e;
	padding:40px 0 0 0;
}


.footerbot{
	background:#303745;
	padding-top:15px;
}

#footer_widget .grid{
	margin-bottom:0;
}

#footer  {
	font-size: 13px;
	line-height: 21px;
	color: #d6d6d6;
	line-height: 18px;
}

#footer .widget-title h3{
	border-bottom: 1px solid #5f646e;
	color: #d1d1d1;
	margin-bottom: 40px;
	padding:0;
	font-weight: normal;
	line-height: 18px;
	font-size: 18px;
}

#footer .widget-title h3 span {
	display: inline-block;
	padding: 0 20px 10px 0;
	border-bottom: 2px solid #f39b16;
	margin-bottom: -1px;
}

#footer ul{
	margin:0;
	padding:0;
	list-style-type:none;
}

.footermidd #footer ul li{
	line-height:18px;
	margin:0 0 15px 0;
	position: relative;
}


.footermidd #footer ul li:before {
	position: relative;
	top: -1px;
	width: auto;
	height: auto;
	margin-right: 10px;
	color: #bfbfbf;
	font-family: 'FontAwesome';
	font-size: 10px;
	font-style: normal;
	content: "";
}
.menu-navigation-container a{color:#ffffff !important;}
.menu-navigation-container a:hover{color:#68ccfe !important;}
.footermidd #footer form p{
	margin:0 0 5px 0;
}

.footermidd #footer form p input,
.footermidd #footer form p textarea {
	background:none;
	color:#eee;
	font-family:'Open Sans', Arial, sans-serif;
}

.footermidd #footer form p input[type=submit]{
	background:#303745;
	border: 0 none;
	font-weight:normal;
}

#footer p{
	margin:0 0 20px 0;
}

#footer a {
	color: #f39b16;
	font-weight: 400;
}

#footer a:hover {
	color: #68ccff;
}
.footermidd #footer ul li:hover::before{
	color: #68ccff;
}

#footer-wrapper .grid.col-940 {
	margin: 0;
}

.scroll-top {
	text-align: center;
}

.copyright {
	text-align: left;
}

.powered {
	text-align: right;
}

#footer_widget .col-300:nth-child(3n+3) {
	margin-right: 0;
}

/* =Social Icons
-------------------------------------------------------------- */
#footer .social-icons,
.header-top .social-icons{
	margin: 0;
	padding: 0;
	line-height: normal;
	text-align: right;
	list-style: none;
}

.fullpage  .social-icons{
	margin: 0;
	padding: 0;
	line-height: normal;
	text-align: left;
	list-style: none;
}

.header-top .social-icons li a{
	color:#fff;
}

.header-top .social-icons li a:hover{
	color:#ccc;
}

.fullpage  .social-icons li a{
	color:#5a5e66;
}

.fullpage  .social-icons li a:hover{
	color:#717b8e;
}


#footer .social-icons li a{
	color:#5a5e66;
}

#footer .social-icons li a:hover{
	color:#717b8e;
}



#footer .rss-icon,
.header-top .rss-icon,
.fullpage .rss-icon,
#footer .yelp-icon,
.header-top .yelp-icon,
.fullpage .yelp-icon,
#footer .vimeo-icon,
.header-top .vimeo-icon,
.fullpage .vimeo-icon,
#footer .youtube-icon,
.header-top .youtube-icon,
.fullpage .youtube-icon,
#footer .twitter-icon,
.header-top .twitter-icon,
.fullpage .twitter-icon,
#footer .facebook-icon,
.header-top .facebook-icon,
.fullpage .facebook-icon,
#footer .linkedin-icon,
.header-top .linkedin-icon,
.fullpage .linkedin-icon,
#footer .rss-feed-icon,
.header-top .rss-feed-icon,
.fullpage .rss-feed-icon,
#footer .instagram-icon,
.header-top .instagram-icon,
.fullpage .instagram-icon,
#footer .pinterest-icon,
.header-top .pinterest-icon,
.fullpage .pinterest-icon,
#footer .foursquare-icon,
.header-top .foursquare-icon,
.fullpage .foursquare-icon,
#footer .googleplus-icon,
.header-top .googleplus-icon,
.fullpage .googleplus-icon,
#footer .google-plus-icon,
.header-top .google-plus-icon,
.fullpage .google-plus-icon,
#footer .stumbleupon-icon,
.header-top .stumbleupon-icon,
.fullpage .stumbleupon-icon,
#footer .stumble-upon-icon,
.header-top .stumble-upon-icon,
.fullpage .stumble-upon-icon
 {
	display: inline;
	margin: 1px;
	padding-left: 3px;
}

/* =Alignments Extras
-------------------------------------------------------------- */
.left {
	float: left;
}

.right {
	float: right;
}

.center {
	text-align: center;
}

/* =Clearfix
-------------------------------------------------------------- */
.clearfix:after,
.clearfix:before,
#container:after,
#container:before,
.widget-wrapper:after,
.widget-wrapper:before {
	display: table;
	content: " ";
}

.clearfix:after,
#container:after,
.widget-wrapper:after {
	clear: both;
}

.ie7 .clearfix,
.ie7 #container,
.ie7 .widget-wrapper {
	zoom: 1;
}

.clear {
	clear: both;
}


/* =Begin bidirectionality settings (do not change)
-------------------------------------------------------------- */
bdo[DIR=ltr] {
	direction: ltr;
	unicode-bidi: bidi-override;
}

bdo[DIR=rtl] {
	direction: rtl;
	unicode-bidi: bidi-override;
}

[DIR=ltr] {
	direction: ltr;
	unicode-bidi: embed;
}

[DIR=rtl] {
	direction: rtl;
	unicode-bidi: embed;
}

/* =Media Print
    If you're working on a Child Theme, make sure that all
	media queries are included in your style.css
-------------------------------------------------------------- */
@media print {
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		page-break-after: avoid;
	}

	ul,
	ol,
	dl {
		page-break-before: avoid;
	}
}

/*	Retina (HiDPI) Display
    http://www.quirksmode.org/blog/archives/2012/06/devicepixelrati.html
-------------------------------------------------------------- */
@media only screen and (-moz-min-device-pixel-ratio:1.5), only screen and (-o-min-device-pixel-ratio:3/2), only screen and (-webkit-min-device-pixel-ratio:1.5), only screen and (min-device-pixel-ratio:1.5) {
	body {
	}
}

/*The last 29 days of the month are the hardest."- Nikola Tesla*/

.read-more{margin-top:10px;}
.read-more a{color:#e4af08;font-weight:600;}
.read-more a:hover{color:#68ccfe;}
#bottom{text-align:justify;}

.latest-news{      background: -moz-linear-gradient(82deg, rgba(11,190,249,1) 0%, rgba(11,190,249,1) 9%, rgba(33,222,255,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(33,222,255,1)), color-stop(91%, rgba(11,190,249,1)), color-stop(100%, rgba(11,190,249,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(82deg, rgba(11,190,249,1) 0%, rgba(11,190,249,1) 9%, rgba(33,222,255,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(82deg, rgba(11,190,249,1) 0%, rgba(11,190,249,1) 9%, rgba(33,222,255,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(82deg, rgba(11,190,249,1) 0%, rgba(11,190,249,1) 9%, rgba(33,222,255,1) 100%); /* ie10+ */
    background: linear-gradient(8deg, rgba(11,190,249,1) 0%, rgba(11,190,249,1) 9%, rgba(33,222,255,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#21DEFF', endColorstr='#0bbef9',GradientType=0 ); /* ie6-9 */
	clear: both;
	margin-top: 5px;
	margin-bottom:23px;
	}
	
	#text-2 #widget-title-three{display:block;float: left;}
		#widget-title-one{display:none;}
	#continuous-announcement-scroller{color: #ffffff !important;font-size: 21px;text-align:left;padding: 0px 20px 0px 20px;font-weight:bold;}
	#continuous-announcement-scroller a{color:#ffffff;/*text-shadow: 0px 0px 2px #000;*/font-weight:600;}
	#continuous-announcement-scroller a:hover{color:#ffffff;}
	.grid-bottom{margin-bottom:0px;}
	
	
/*-----------------------------start banner text slider-----------*/
#carousel {
  position: relative;
}

#slides {
  overflow: hidden;
  position: relative;
  width: 100%;
}

#slides ul {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

#slides li {
  width: 100%;
  float: left;
  text-align: center;
  position: relative;
  font-family: lato, sans-serif;
}

/* Styling for prev and next buttons */

.btn-bar {
  margin: 0 auto;
  display: block;
  position: relative;
  top: 0px;
  float: right;
}

#buttons {
  padding: 0 0 5px 0;
  float: right;
}

#buttons a {
  text-align: center;
display: block;
font-size: 30px;
float: left;
outline: 0;
margin: 0 6px;
color: #f39b16;
text-decoration: none;
display: block;
padding: 0px;
width: 26px;
}

a#prev:hover,
a#next:hover {
  color: #68ccfe;
}

.quote-phrase,
.quote-author {
  font-family: sans-serif;
  font-weight: 300;
  display: table-cell;
  vertical-align: top;
 padding: 30px 8px 5px 0px;
}

.quote-phrase {
height: 110px;
font-size: 14px;
color: #3C3939;
font-family: 'Open Sans', Arial, sans-serif;
font-weight: 400;
text-align: justify;
line-height: 23px;
}

.quote-marks {
  font-size: 30px;
  padding: 0 3px 3px;
  position: inherit;
}

.quote-author {
  font-style: normal;
  font-size: 20px;
  color: #b14943;
  font-weight: 400;
  height: 30px;
}

.quoteContainer,
.authorContainer {
  display: table;
  width: 100%;
}
#text-2 .widget-title-home h3{display: inline-block;
margin: 0;
padding: 0px 0 6px 0;
font-size: 15px;
font-weight: 700;
line-height: 20px;
text-align: left;}
.text-slider-bg{background:#d3d3d9;display: inline-block;}
#text-2{padding: 27px 14px;}
.main-banner .col-60, .main-banner.col-140,.main-banner .col-220,.main-banner .col-300,.main-banner .col-380, .main-banner.col-460, .main-banner.col-540,.main-banner .col-620, .main-banner.col-700, .main-banner.col-780, .main-banner.col-860 {

    margin-right:0.5%;

}
.main-banner .col-300 {
    width: 33.533%;
}
/*------------------------end banner  text slider--------------------------*/

.wpcf7-form p{font-weight:bold;}
.contact-social-icons{display:inline-block;list-style-type:none;margin: 0;padding:0;}
.contact-social-icons li{display:inline-block;margin-right: 8px;}
.contact-social-icons a.facebook-icon{color: #d21a1a;}
.marathi-font{font-family: Aparajita;}
.widget-wrapper .menu-navigation-container a{color: #d6d6d6 !important;}
.event-gallery h5{margin-bottom: 0.5em;
margin-top: 1em;
font-size: 14px;
font-weight: 600;
line-height: 22px;}
.donation-box{background: #f0f0f0;padding: 15px 36px;min-height: 190px;}
.donation-box h4{font-size: 19px;
font-weight: ;
padding-bottom:7px;
color: #000;}
.donation-box  strong{font-weight:600;}
.donation-box  p{margin-bottom:7px;}
.cas_div{color: #ffffff !important;
font-size: 19px;
text-align: left;
line-height:36px;
font-weight: bold;}
.read-more-fund-details{text-align:left;}
.read-more-fund-details a{font-weight: bold;
font-weight: bold;
background: #f39b16;
padding: 5px 14px;
color: #ffff;
font-size: 14px;
line-height: 44px;}

.suceess-stories-block{border-bottom: 1px solid #dddddd;
padding: 18px 0px;
clear: both;
display: inline-block;width:100%;}
.suceess-stories-block:last-child{border:0px;}

.testimonials{background:#707070;padding: 30px 0;}
.testimonials p{color:#fff;}
.testimonials  .widget-title h3{font-weight: 600 !important;color: #474D5D !important;
margin-bottom: 30px !important;
padding: 0 !important;
text-align:center !important;
line-height: 20px!important;
color:#fff!important;
border: 0px !important;
font-size: 20px;}
.blog-post{margin-bottom:28px;}
.single-post .post-title{
color: #474D5D;
margin-bottom: 30px;
padding: 0;
font-weight: 600;
line-height: 20px;
font-size: 20px;}
#widget-title-two {
    display: none;
}.all-blog-post{text-align:right;}.all-blog-post  a{color: #f39b16;text-align: right;font-size: 14px;font-weight: bold;}.page-id-527 h2{border-bottom:none !important;}.page-id-527 .post {border-bottom:1px solid #ddd;}