/* LAYOUT */
/* ----------------------------------------- */

/*-------------------------------
	COLORS
	
	ORANGE 		#D75600 
	GREEN 		#7B8D73
	GREY 		#777777
	DARK GREEN 	#53871a
	LIGHT GREEN #78C424

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



/*----------Utility----------*/


h1, h2, h3, h4, h5, h6	{ font-weight: bold; }
h1	{ font-size: 200%; text-transform: uppercase; }
h2	{ font-size: 150%; text-transform: uppercase; }
h3	{ font-size: 125%; text-transform: uppercase; }
h4	{ font-size: 110%; text-transform: uppercase; }
div, ul, li {  position:relative } /*This will save you having to declare each div / ul / li's position as 'relative' and allows you to absolutely position elements inside them */
strong { font-weight: bold;}
em { font-style: italic;}

.clear { 
	clear:both; 
} 

.dualColumn {
	-moz-column-count: 2;
	-moz-column-gap: 20px;
	-webkit-column-count: 2;
	-webkit-column-gap: 20px;
	column-count: 2;
	column-gap: 20px;
}

.thePost p.pCenter {
	text-align: center;
}

.required {
	color: red;
}
/*----------General----------*/
body {
	color: #777;
	font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
	background: #f6f6f6;
}

a, span.gc-cs-link {
	text-decoration: none;
	color: #D75600;
	-moz-transition:all .5s ease;
	-webkit-transition:all .5s ease;
	-ms-transition:all .5s ease;
	-o-transition:all .5s ease;
	transition:all .5s ease;
}

a:hover, span.gc-cs-link:hover {
	color: #777;
}
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
li.bypostauthor cite span {
	padding: 5px 20px;
	font-size: 95%;
	color: #eee;
	background: #78c424;
	background: -moz-linear-gradient(#78c424, #53871a);
	background: -o-linear-gradient(#78c424, #53871a);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#78c424), to(#53871a)); /* Older webkit syntax */
	background: -webkit-linear-gradient(#78c424, #53871a);
	border-top: 1px solid #78c424;
	border-left: 1px solid #78c424;
	border-bottom: 1px solid #53871a;
	border-right: 1px solid #53871a;
	border-radius: 18px;
	box-shadow: 1px 2px 6px rgba(0,0,0,0.2);
	cursor: pointer;
}
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #ccc;
	background: #69ab20;
	background: -moz-linear-gradient(#69ab20, #3f6713);
	background: -o-linear-gradient(#69ab20, #3f6713);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#69ab20), to(#3f6713)); /* Older webkit syntax */
	background: -webkit-linear-gradient(#69ab20, #3f6713);
}

input[type=text], input[type=email], textarea {
	font-weight: bold;
   	border: 2px solid white; 
    -webkit-box-shadow: inset 0 0 8px  rgba(0,0,0,0.1), 0 0 16px rgba(0,0,0,0.1); 
    -moz-box-shadow: inset 0 0 8px  rgba(0,0,0,0.1), 0 0 16px rgba(0,0,0,0.1); 
    box-shadow: inset 0 0 8px  rgba(0,0,0,0.1), 0 0 16px rgba(0,0,0,0.1); 
    padding: 5px;
    background: rgba(255,255,255,0.5);
    margin: 0 0 10px 0;
}

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

header 	{
	color: #bbb;
	width: 100%;
	background: #060c22 url(../images/cell.png);
	-moz-box-shadow: inset 0 10px 150px #000000;
	-webkit-box-shadow: inset 0 10px 150px #000000;
	box-shadow: inset 0 15px 220px #000000;
	padding-bottom: 20px;
}

#headerWrap {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto 30px auto;
	padding-top: 20px;
}

#logoWrap {
	float: left;
}

#logo img {
	width: 100%;
	max-width: 350px;
	-moz-transition:all .5s ease;
	-webkit-transition:all .5s ease;
	-ms-transition:all .5s ease;
	-o-transition:all .5s ease;
	transition:all .5s ease;
	-webkit-filter:grayscale(0);
}

#logo img:hover {
	width: 100%; 
	-webkit-filter:grayscale(.6);
}

#myCI {
	max-width: 320px;
	color: #bbb;
	float: right;
}

/*----------MAIN NAVIGATION----------*/
/*
#mainNav ul {
	margin-top: 5%;
	margin-left: -2.5%
}

#mainNav li {
	display: inline-block;
	margin: .5% 2.5%;
	text-transform: uppercase;
}

header nav a {
	color: #999;
}

header .page_item a:hover, header .current_page_item a {
	color: #D75600;
} 
*/

#navWrap {
	background: #53871a; /* Show a solid color for older browsers */
	background: -moz-linear-gradient(#53871a, #78c424);
	background: -o-linear-gradient(#53871a, #78c424);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#53871a), to(#78c424)); /* Older webkit syntax */
	background: -webkit-linear-gradient(#53871a, #78c424);
	box-shadow: 0px 5px 15px rgba(0,0,0,.333);
	-moz-box-shadow:0px 5px 15px rgba(0,0,0,.333);
	-webkit-box-shadow: 0px 5px 15px rgba(0,0,0,.333);
	border-top: 1px solid #78c424;
}

#mainNav {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

#mainNav .menu {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
#mainNav ul {
	font-size: 100%;
	list-style: none;
	/*margin: 0 0 0 -0.8125em;*/
	padding-left: 0;
}
#mainNav li {
	float: left;
	padding-right: 5%; 
}

#mainNav .menu ul > li:last-child {
	padding-right: 0;
}

#mainNav a {
	color: #eee;
	text-transform: uppercase;
	font-weight: 600;
	display: block;
	line-height: 2.25em;
	padding: 1% 0;
	text-decoration: none;
}


#mainNav ul ul {
	-moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	display: none;
	float: left;
	margin: 0;
	position: absolute;
	top: 2.3em;
	left: 0;
	width: 188px;
	z-index: 99999;
	-moz-transition:all .5s ease;
	-webkit-transition:all .5s ease;
	-ms-transition:all .5s ease;
	-o-transition:all .5s ease;
	transition:all .5s ease;

}
#mainNav ul ul ul {
	left: 100%;
	top: 0;
}
#mainNav ul ul a {
	background: #f9f9f9;
	border-bottom: 1px solid #efefef;
	color: #444;
	font-size: 75%;
	height: auto;
	line-height: 1.6em;
	padding: 10px 10px;
	width: 168px;
	border-radius: 0;
}
#mainNav li:hover > a,
#mainNav ul ul :hover > a,
#mainNav a:focus {
	color: #666;
}

#mainNav ul ul a:hover {
	background: #78c424;
	color: white;
} 

#mainNav li:hover > a,
#mainNav a:focus {
	color: #373737;
}
#mainNav ul li:hover > ul {
	display: block;
}
#mainNav .current-menu-item > a,
#mainNav .current-menu-ancestor > a,
#mainNav .current_page_item > a,
#mainNav .current_page_ancestor > a {
	color: #222;
}


/*----------Content----------*/

#contentWrap {
	width: 90%;
	max-width: 1200px;
	margin: 25px auto 0 auto;
}

#theContent	{
	width: 70%;
	float: left;
}

#flexsliderWrap {
	padding-bottom: 3%;
	margin-bottom: 4%;
	border-bottom: 4px double #aaa;
}

.thePost {
	margin-bottom: 4%;
	padding-bottom: 4%;
}

.postTitle {
	text-shadow: 2px 2px 1px rgba(0,0,0,.125);
	margin-bottom: 1.2%;
}

.thePost p {
	padding-bottom: 2.5%;
	text-indent: 1.8em;
	text-align: justify;
}

.thePost h1, .thePost h2, .thePost h3, .thePost h4, .thePost h5 {
	padding-bottom: 2%;
}

.thePost li {
	padding-bottom: 1%;
	
}

.thePost ul {
	padding-left: 4.5%;
}

.thePost img, .thePost embed {
	box-shadow: 0 2px 8px rgba(0,0,0,.8); 
	-webkit-box-shadow: 0 2px 8px rgba(0,0,0,.8); 
	-moz-box-shadow: 0 2px 8px rgba(0,0,0,.8); 
	-o-box-shadow: 0 2px 8px rgba(0,0,0,.8); zoom: 1;
}

.thePost ul li {
	list-style: circle;
	text-align: justify;
}

.postMeta, .postComments {
	display: none;
} 

/*----------FLEXSLIDER----------*/

.flexslider img {
	-moz-transition:all .5s ease;
	-webkit-transition:all .5s ease;
	-ms-transition:all .5s ease;
	-o-transition:all .5s ease;
	transition:all .5s ease;
	-webkit-filter:grayscale(.7);
}

.flexslider img:hover {
	-webkit-filter:grayscale(0);
}

/*----------SideBar----------*/

.xoxo {
	font-size: 85%;
}

#sidebar 	{
	width: 24.51%;
	min-width: 200px; 
	float: right;
	margin: 0 auto;
}

#sidebar .textwidget p {
	text-align: justify;
	padding-bottom: 8px;
	text-indent: 1.8em;
}

#sidebar .widget-container {
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 15px;
	background: #fff; /* Show a solid color for older browsers */
	background: -moz-linear-gradient(#fff, #eee);
	background: -o-linear-gradient(#fff, #eee);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#eee)); /* Older webkit syntax */
	background: -webkit-linear-gradient(#fff, #eee);
	-moz-box-shadow: 2px 5px 10px rgba(0,0,0,0.125);
	-webkit-box-shadow: 2px 5px 10px rgba(0,0,0,0.125);
	box-shadow: 2px 5px 10px rgba(0,0,0,0.125);
	border: 1px solid #ddd;
}

#sidebar h3.widget-title {
	padding: 8px 15px;
	color: #e2e2e2;
	font-size: 110%;
	background: #53871a;
	background: -moz-linear-gradient(#53871a, #78c424);
	background: -o-linear-gradient(#53871a, #78c424);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#53871a), to(#78c424));
	background: -webkit-linear-gradient(#53871a, #78c424);
	border-radius: 15px 15px 0 0;
	text-shadow: 1px 1px 4px green;
	margin: -15px -15px 10px -15px;
	border-bottom: 1px solid #888;
	border-right: 1px solid #888;
	border-top: 1px solid #78c424;
	border-left: 1px solid #78c424;
}
}

#searchform label {
	display: none;
}

.widget-title {
	margin-bottom: 10px;
}

.children {
margin-left: 15px;
}

.widget-container > ul > .page_item > a {
	font-weight: bold;
}

.blogroll li {
	padding: 4px 0;
	margin: 4px 0;
	border-bottom: 1px dotted #53871a;
}

.blogroll a {
	text-transform: uppercase;
	font-weight: 600;
}



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

footer	{
	color: #bbb;
	clear: both;
	border-top: 12px solid #2f3343;
	background: #060c22 url(../images/cell.png);
	-moz-box-shadow: inset 0 -20px 60px rgba(0,0,0,.5);
   	-webkit-box-shadow: inset 0 -20px 60px rgba(0,0,0,.5);
   	box-shadow: inset 0 -20px 60px #000;


}

#footerInner {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding-top: .75%;
	text-transform: uppercase;
}

#footerInner .textwidget {
	text-transform: none;
}

#footerInner .xoxo > li {
	margin-bottom: 2%;
}

footer h3.widget-title {
	font-size: 115%;
	font-weight: normal;
}


#copyright {
	text-align: center;
	text-transform: uppercase;
	padding-bottom: 2%;
}

/*----------FOOTER WIDGETS----------*/

#footerWidgetWrap {
	text-align: center;
}

.footerWidgetContainer {
	max-width: 45%;
	padding: 0 2%;
	display: inline-block;
	vertical-align: top;
	text-align: left;
}

.footerWidgetContainer h4 {
	text-decoration: underline;
	padding-bottom: 1.25%;
}

#socialMediaLinks {
	min-width: 209px;
}

#socialMediaLinks a {
	color: #bbb;
}

#footerInner #socialMediaLinks a:hover {
	color: #D75600;
}

.jtwitter a {
	padding-left: 24px;
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 105%;
	background: url(../images/twitter.png) left center no-repeat;
}

.jfacebook a {
	padding-left: 24px;
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 105%;
	background: url(../images/facebook.png) left center no-repeat;
}

.jlinkedin a {
	padding-left: 24px;
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 105%;
	background: url(../images/linkedin.png) left center no-repeat;
}

.jgoogle a {
	padding-left: 24px;
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 105%;
	background: url(../images/google.png) left center no-repeat;
}

.jstumble a {
	padding-left: 24px;
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 105%;
	background: url(../images/stumble.png) left center no-repeat;
}

.jdigg a {
	padding-left: 24px;
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 105%;
	background: url(../images/digg.png) left center no-repeat;
}

.jdelicious a {
	padding-left: 24px;
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 105%;
	background: url(../images/delicious.png) left center no-repeat;
}

/*----------FOOTER NAV----------*/

#footerNav {
	margin-bottom: 2%;
}

#footerNav .children {
	display: none;
}

#footerNav li {	
	display: inline-block;
	padding-right: 1.5%;
	margin-right: 1.5%;
	border-right: 1px solid #bbb;
	line-height: 15px;
}

#footerNav a {
	display: block;
}

#footerNav ul > li:last-child {
	border: none;
}

#footerNav a {
	color: #D75600;
}

#footerInner .page_item a:hover, #footerInner .current_page_item a, #footerInner a:hover {
	color: #bbb;
} 

#footerTopLink {
	display: inline-block;
	white-space: nowrap;
	float: right;
	margin-top: -24px;
}

/*----------PAGE SPECIFIC STYLES----------*/

.bios /*-About Page-*/ {
	border-bottom: 1px solid #ddd;
	padding: 20px 0;
}

.wpcf7 p {
	text-indent: 0;
}

