/***************** General Styles *****************/
body {
	font-family: "Droid Sans", Arial, serif;
	font-size: 12px;
	color: #626262;
	
	background: url("../img/topBG.jpg") top left repeat-x;
}

h1, h2, h3, h4, h5 {
	font-weight: normal;
	font-family: "Oswald", Arial, serif;
	text-transform: uppercase;
	margin-bottom: 20px;	
}

h1 {font-size: 28px;}
h2 {font-size: 22px;}
h3 {font-size: 18px;}
h4 {font-size: 14px;}
h5 {font-size: 12px;}

a {
	text-decoration: none;
}

	a:hover {
		text-decoration: underline;
	}
	
.cAlign {
	width: 960px;
	margin: 0 auto;
}

.cFloat {
	overflow: hidden;
}

.cBoth {clear: both;}

p {
	line-height: 1.5em;
	margin-bottom: 10px;
}

div.oneFourth {
	float: left;
	width: 22%;
	margin-right: 3%;
}

div.oneHalf {
	float: left;
	width: 47%;
	margin-right: 3%;
}

div.blankSeparator {
	height: 1px;
	margin-bottom: 30px;
	display: block;
}

a.linkButton {
	padding: 10px 15px;
	color: white;

	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.preloader {
	background: url('../img/preloader.gif') center center no-repeat white;
	display: block;
}


/***************** Color Information *****************/
a, div#footer ul.fullWidthList li p a {
	color: #19b7de;
}

form#subscribeForm input[type="submit"], form#articleCommentForm input[type="submit"], a.linkButton {
	background-color: #19b7de;

	/* Some CSS3 Transitions */
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}

form#subscribeForm input[type="submit"]:hover, form#articleCommentForm input[type="submit"]:hover, a.linkButton:hover {
	color: #19b7de;
	background-color: white;
	text-decoration: none;
}





/***************** Top Header *****************/
#topHeader {
	margin: 40px auto;
}

a#logo {
	float: left;
}

#nav {
	float: right;
	margin-top: 10px;
	position: relative; /* Setting this so that z-index will work */
	z-index: 10; /* Set z-index to 10 to show the menu over the slider below */
}

#nav li {
	position: relative;
	float: left;
}

#nav li a {
	background-color: #2f3134;
	color: white;
	
	padding: 8px 15px;
	float: left;
	
	font-size: 11px;
	text-transform: uppercase;

	margin-right: 5px;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;


	/* Some CSS3 Transitions */
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	-o-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

	#nav li a:hover {
		text-decoration: none;
		color: #a9adb7;
	}


/* Submenu */
#nav li ul {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	
	background-color: #2f3134;

	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	border-top: 1px solid white;
}

#nav li ul li {
	border-bottom: 1px solid #3e4043;
}

#nav li ul li:last-child {
	border-bottom: none;
}

#nav li ul li a {
	width: 200px;
	padding: 10px 15px;
}

	#nav li:hover > ul {
		display: block;
	}

/* Submenu level 3 */
#nav li ul li ul {
	border-top: none;
}

	#nav li ul li:hover ul {
		left: 100%;
		top: 0;
	}

	a#activeMenu {
		background-color: white !important;
		color: #2f3134 !important;
	}
	
	
	
	
	
/***************** Slider *****************/
div#sliderSection {
	background-color: #f5f7f8;
	border-top: 1px solid #e4e8ea;
	border-bottom: 1px solid #e4e8ea;
	
	padding: 20px 0;
}

dl.slidedeck dd img {
	float: left;
	/* Making 1000px bottom margin will make sure the 
	content on the right will stay aligned no matter how 
	long it is and will not "spill" under the image */
	margin: 0 30px 1000px 0; 

	box-shadow: 0px 0px 3px #888;
	-webkit-shadow: 0px 0px 3px #888;
	-moz-shadow: 0px 0px 3px #888;
	
	border: 1px solid white;
	padding: 1px;
	
	/* Some CSS3 Transitions */
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
	
	display: block;
}

dl.slidedeck dd img:hover {
	opacity: 0.7;
}




/***************** Categories Bar *****************/
div#categorySection {
	background-color: #4c4e53;
	margin-top: 1px;
}

	div#categorySection div.cAlign {
		border-right: 1px solid #78797d;
		border-left: 1px solid #78797d;
	}

	div#categorySection ul li a {
		text-transform: uppercase;
		padding: 15px 25px;
		color: white;
		border-right: 1px solid #78797d;
		display: block;
		float: left;

		/* Some CSS3 transitions */
		-webkit-transition: background-color 0.2s ease-in-out;
		-moz-transition: background-color 0.2s ease-in-out;
		-o-transition: background-color 0.2s ease-in-out;
		transition: background-color 0.2s ease-in-out;
	}

	div#categorySection ul li a:hover {
		text-decoration: none;
		background-color: #2f3134;
	}

img.toggleButton {
	float: right;
	margin: 7px 15px 0 0;
	cursor: pointer;
}

#hiddenButton {
	display: none;
}





/***************** Breadcrumbs *****************/
div#breadcrumbsSection {
	border-bottom: 1px solid #dadce1;
}

	div#breadcrumbsSection div.cAlign {
		border-right: 1px solid #dadce1;
		border-left: 1px solid #dadce1;
	}

	div#breadcrumbsSection p {
		float: left;
		height: 45px;
		line-height: 45px;
		margin: 0 0 0 15px;
		font-size: 11px;
	}
	
	form#searchForm {
		float: right;
	}
	
		
		
		
		
/***************** Blog Post List *****************/
div#mainSection, div#sidebar {
	margin-top: 40px;
}

div#mainSection {
	float: left;
	width: 660px;
}

p.articleMeta {
	width: 100px;
	text-align: right;
	margin: 5px 40px 0 0;
	float: left;
	font-size: 11px;
	
	color: #bfbfbf;
}

div.articleContent {
	float: right;
	width: 520px;
}

ul#articles li, div#articleBody, div#articleExtra {
	margin-bottom: 30px;
	padding-bottom: 20px;
	
	background: url('../img/blogPostSeparator.png') center bottom no-repeat;
	
	overflow: hidden;
}

	ul#articles li img, div#articleBody img {
		margin-bottom: 20px;
		box-shadow: 0px 0px 3px #888;
		-webkit-shadow: 0px 0px 3px #888;
		-moz-shadow: 0px 0px 3px #888;
		
		border: 1px solid white;
		padding: 1px;
		
		/* Change these to match the desired size */
		width: 510px;
		height: 130px;

		/* Some CSS3 transitions */
		-webkit-transition: opacity 0.2s ease-in-out;
		-moz-transition: opacity 0.2s ease-in-out;
		-o-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
	}
	
	ul#articles li img:hover {
		opacity: 0.7;
	}
		
	ul#articles li h2 a, div#articleBody li h2 a {
		color: #44464a;
	}
	
ul#pagination {
	margin-left: 140px;
}

	ul#pagination li a {
		color: #2f3134;
		background-color: #f5f7f8;

		border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		
		padding: 8px 12px;
		float: left;
		font-size: 14px;
		margin-right: 5px;

		/* Some CSS3 Transitions */
		-webkit-transition: background-color 0.2s ease-in-out;
		-moz-transition: background-color 0.2s ease-in-out;
		-o-transition: background-color 0.2s ease-in-out;
		transition: background-color 0.2s ease-in-out;
	}
	
	ul#pagination a.active, ul#pagination a:hover {
		background-color: #2f3134;
		color: #f5f7f8;
		text-decoration: none;
	}
	
p.tags {
	font-style: italic;
	font-size: 11px;
	color: #878f9a;
	margin-top: 30px;
}

div#shareSection {
	width: 100px;
	margin-right: 40px;
	float: left;
	
	text-align: center;
}

	div#shareSection ul {
		display: none;
	}

	div#shareSection ul li {
		float: left;
		border: 1px solid #f1f3f6;
		
		padding: 5px 5px 3px 5px;
		margin: 0 5px 5px 0;
	}

	div#shareSection ul li:hover {
		background-color: #f1f3f6;
	}
	
a#shareThisPost p {
	margin-top: 5px;
	font-size: 11px;
}

div#authorBio {
	float: right;
	width: 520px;
}

	div#authorBio img {
		float: left;
		margin: 0 20px 20px 0;
	}





/***************** Blog Comments  *****************/
h4#commentListHeading {
	margin-left: 140px;
}

	ul#commentList > li {
	}
	
	ul#commentList li ul li {
		margin-left: 40px;
	}
	
	ul#commentList li ul li div.commentBody {
		background: #fafcfe;
	}
	
	div.commentMeta {
		width: 100px;
		margin-right: 40px;
		
		float: left;
		
		text-align: right;
		
		color: #bec1c3;
		font-size: 11px;
		text-transform: uppercase;
	}
	
	div.commentBody {
		margin: 0 0 30px 140px;
		border: 1px solid #f1f3f6;
		
		padding: 20px;
	} 
	
		div.commentBody a, h6 {
			text-transform: uppercase;
			font-size: 11px;
		}
		
		div.commentBody p {
			margin: 10px 0 20px 0;
			color: #878f9a;
		}
		
span.adminComment {
	display: block;
	background-color: #4c4e53;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	padding: 5px 10px;
	color: white;
	
	font-size: 9px;
	margin-top: 10px;
	text-align: center;
	
	width: 37px;
	
	float: right;
}

	
	
	
	
/***************** Sidebar *****************/
div#sidebar {
	float: right;
	width: 260px;
}

	ul.twoColList, ul.fullWidthList {
		margin-bottom: 30px;
		overflow: hidden;
	}

	ul.twoColList li a {
		color: #878f9a;
		padding: 10px 0;
		border-bottom: 1px solid #f1f3f6;
		width: 115px;
		margin-right: 15px;
		float: left;
	}

	ul.fullWidthList li {
		padding: 10px 0;
		border-bottom: 1px solid #f1f3f6;
	}

	ul.fullWidthList li p {
		margin-bottom: 0;
	}

	ul.fullWidthList li p span {
		display: block;
		font-style: italic;
		color: #878f9a;
	}	
	
	
	
	
/***************** Footer *****************/
div#footer {
	background-color: #2f3134;
	margin-top: 40px;
	padding: 40px 0 10px 0;
}	

	div#footer h4 {
		color: white;
	}
	
	div#footer p {
		color: #878f9a;
	}
	
	div#footer ul.fullWidthList li {
		border-bottom: 1px solid #404246;
	}

	div#footer ul.fullWidthList li a {
		color: #878f9a;
	}

	div#footer ul.fullWidthList li p {
		margin-bottom: 0;
	}

	div#footer ul.fullWidthList li p span {
		color: white;
	}

div#socialSection {
	background-color: #222326;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	margin-top: 20px;
	padding: 0 20px;
	
	overflow: hidden;
}	

	div#socialSection p {
		float: left;
		height: 42px;
		line-height: 42px;
		margin-bottom: 0;
	}

	div#socialSection ul {
		float: left;
		border-right: 1px solid #2f3134;
		padding: 12px 30px 12px 10px;
		margin-right: 30px;
	}

	div#socialSection ul li {
		display: inline;
		margin-left: 5px;
	}
	
form#subscribeForm {
	margin-top: 20px;
}



	
	
/***************** Copyright *****************/
div#copyrightSection {
	background: url('../img/bottomBG.jpg') left bottom repeat-x;
	padding: 30px 0;
	text-align: center;
}

	div#copyrightSection img {
		margin-bottom: 10px;
	}
	
	
	
	
	
/***************** Form Styling *****************/
form#subscribeForm input[type="text"], form#articleCommentForm input[type="text"], form#articleCommentForm textarea {
	background-color: #f5f7f8;
	border: 1px solid #edeff2;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	height: 35px;
	padding: 0 10px;
}

form#subscribeForm input[type="text"]:hover, form#articleCommentForm input[type="text"]:hover, form#articleCommentForm textarea:hover, form#searchForm input[type="text"]:hover {
	background-color: #edeff2;
}

form#subscribeForm input[type="submit"], form#articleCommentForm input[type="submit"] {
	border: none;
	outline: none;

	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	height: 35px;
	padding: 0 15px;
	
	font-size: 12px;
	
	cursor: pointer;
	
	color: white;
}

form#subscribeForm input[type="text"]:focus, form#articleCommentForm input[type="text"]:focus, form#articleCommentForm textarea:focus, form#searchForm input[type="text"]:focus {
	outline: none;
}

form#subscribeForm input[type="text"], form#articleCommentForm input[type="text"] {
	width: 250px;
}

form#articleCommentForm p {
	margin-bottom: 15px;
}

form#articleCommentForm textarea {
	width: 500px;
	height: 200px;
	
	padding: 10px;
}

form#articleCommentForm label {
	margin-left: 20px;
}

	form#articleCommentForm label span {
		color: #878f9a;
	}
	
form#searchForm input[type="text"] {
	border: none;
	border-left: 1px solid #dadce1;
	background-color: #f5f7f8;
	padding: 15px 10px;
	width: 240px;
	height: 15px;
}