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

Title: Permanent Record
Author: Andrew Cohen
Email: andrew@cohenspire.com
Website: cohenspire.com
File: layout.css

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


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

	Default
	
----------------------------------*/
body{
	background: url('../images/bg.jpg') repeat;
	background-color: #f5f5f5;
	font-family: Georgia, Serif;
	color: #222;
	font-size: 14px;
	line-height: 22px;
}
#wrapper{
	width: 940px;
	padding: 0 10px;
	margin: 0 auto;
	overflow: hidden;
	background: url('../images/splatter.jpg') no-repeat top center;
}
a{
	color: #38bbf6;
	text-decoration: none;
	font-family: Helvetica, arial, sans-serif;
	-webkit-transition: color ease-out 0.3s;
}
	a:hover{
		color: #a2a2a2;
		-webkit-transition: color ease-out 0.3s;
	}


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

	Header
	
----------------------------------*/
#header{
	margin: 0 auto;
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}
	#header h1 a{
		font-family: "john-doe-1", "john-doe-2", Courier, monospace;;
		font-weight: bold;
		font-size: 36px;
		line-height: 24px;
		color: #36506f;
		float: left;
	}
	#header > span{
		font-size: 16px;
		line-height: 32px;
		color: #666666;
		float: left;
		clear: both;
		
	}
	ul#nav{
		height: 65px;
		position: absolute;
		right: -10px;
		top: 35px;
	}
		ul#nav li{
			width: 60px;
			height: 65px;
			float: left;
			margin-left: 0px;
		}
			ul#nav > li.about{
				background: url('../images/icon_about.png') no-repeat bottom center;
			}
			ul#nav > li.twitter{
				background: url('../images/icon_twitter.png') no-repeat bottom center;
			}
			ul#nav > li.linkedin{
				background: url('../images/icon_linkedin.png') no-repeat bottom center;
			}
			ul#nav > li.email{
				background: url('../images/icon_email.png') no-repeat bottom center;
			}
			ul#nav li a{
				width: 60px;
				height: 65px;
				display: block;
				font-family: Helvetica, arial, sans-serif;
				font-size: 10px;
				text-transform: uppercase;
				color: #aeaeae;
				text-align: center;
				text-indent: -7000px;
			}
				ul#nav li a:hover{
					text-indent: 0;
				}
				
				
/*----------------------------------

	Content
	
----------------------------------*/
#content{
	width: 940px;
	overflow: hidden;
}

	/*----------------------------------
	
		Main Column
		
	----------------------------------*/
	#main{
		width: 640px;
		float: left;
		margin-right: 80px;
	}
	
		/* Blog Posts */
		.post{
			margin-bottom: 60px;
		}
			.post > .titlebar{
				padding: 18px 20px;
				margin-bottom: 30px;
				overflow: hidden;
				border-top: solid 3px #b9b9b9;
				border-top: solid 3px rgba(0,0,0,0.25);
				border-bottom: solid 1px #b9b9b9;
				border-bottom: solid 1px rgba(0,0,0,0.25);
			}
				.post > .titlebar h2 a, .post > .titlebar h2{
					width: 440px;
					float: left;
					font-size: 18px;
					color: #222;
					font-family: "john-doe-1", "john-doe-2", Courier, monospace;;
					font-weight: bold;
					text-transform: uppercase;
				}
					.post > .titlebar h2 a:hover{
						color: #38bbf6;
					}
				#about.post > .titlebar h2{
					width: 440px;
					float: left;
					font-size: 24px;
					color: #222;
					font-family: "john-doe-1", "john-doe-2", Courier, monospace;;
					font-weight: bold;
					text-transform: uppercase;
				}
				.post > .titlebar span{
					float: right;
					font-size: 14px;
					font-family: Courier, monospace;;
					text-transform: uppercase;
					color: #bababa;
				}
		
			/*
				Posts
			*/
			.post > p{
				padding: 0 20px;
				margin-bottom: 22px;
			}
			.post > img{
				margin: 22px auto;
			}
			img.alignleft{
				float: left;
				margin: 20px 20px 20px 0;
			}
			img.alignright{
				float: right;
				margin: 20px 0 20px 20px;
			}
			img.aligncenter{
				margin: 22px auto;
			}
			blockquote{
				padding: 0 10px;
				margin: 0 0 22px 20px;
				font-family: Helvetica, arial, sans-serif;
				font-size: 16px;
				line-height: 24px;
				font-style: italic;
				color: #395271;
				border-left: solid 3px #b9b9b9;
				border-left: solid 3px rgba(0,0,0,0.25);
			}
			ul#postnotes{
				padding-left: 20px;
			}	
				ul#postnotes li{
					padding-left: 24px;
					padding-top: 11px;
				}
					ul#postnotes li.comments{
						background: url('../images/icon_comments.png') no-repeat left;
						padding-top: 0;
					}
					ul#postnotes li.tags{
						background: url('../images/icon_tags.png') no-repeat left;
						padding-top: 0;
					}
					ul#postnotes a{
						font-size: 12px;
						text-transform: uppercase;
					}
					
	
	/*----------------------------------
	
		Aside
		
	----------------------------------*/
	#aside{
		width: 220px;
		float: right;
	}
		#aside .titlebar{
			padding: 5px 10px 9px;
			margin-bottom: 22px;
			line-height: 16px;
			overflow: hidden;
			border-top: solid 3px #b9b9b9;
			border-top: solid 3px rgba(0,0,0,0.25);
			border-bottom: solid 1px #b9b9b9;
			border-bottom: solid 1px rgba(0,0,0,0.25);
		}
			#aside h2{
				font-family: "john-doe-1", "john-doe-2", Courier, monospace;;
				font-size: 16px;
				font-weight: bold;
				text-transform: uppercase;
				color: #3a5371;
			}
			#aside .titlebar > span{
				font-size: 11px;
				color: #a2a2a2;
				text-transform: uppercase;
			}
		
		/* Search */
		#aside > form{
			margin-bottom: 40px;
			overflow: hidden;
		}
			label.screen-reader-text{
				display: none;
			}
			#aside > form input#s{
				height: 23px;
				width: 170px;
				float: left;
				padding: 0 5px;
				background-color: #f2f2f2;
				background-color: rgba(0,0,0,0.05);
				border: solid 1px #d8d8d8;
				border: solid 1px rgba(0,0,0,0.15);
			}
			#aside > form input#searchsubmit{
				height: 25px;
				width: 25px;
				float: right;
				-moz-border-radius: 5px;
				-webkit-border-radius: 5px;
				border-radius: 5px;
				border: none;
				outline: none;
				text-indent: -7000px;
				background: url('../images/icon_search.png') no-repeat center #666;
				-webkit-transition: all ease-out 0.3s;
			}
				#aside > form input#searchsubmit:hover{
					cursor: pointer;
					background-color: #a2a2a2;
					-webkit-transition: all ease-out 0.3s;
				}
		
		/* Blocks */
		#aside > div{
			margin-bottom: 40px;
			overflow: hidden;
		}
			#aside > div ul{
				font-size: 12px;
				padding-left: 10px;
			}
				#aside > div ul li{
					color: #38bbf6;
				}
				
			/* Individual cells */
			#aside > .blasts > .titlebar h2{
				font-size: 14px;
			}
			.blasts > .titlebar{
				padding-right: 0;
			}
			.twitter p{
				padding: 0 10px;
				font-size: 12px;
			}
			span.twitter-timestamp{
				text-transform: uppercase;
				font-size: 11px;
				display: block;
			}
				span.twitter-timestamp abbr{
					float: right;
				}
			.twitter > a.button{
				height: 22px;
				float: right;
				clear: both;
				margin-top: 11px;
				padding: 3px 10px 0 10px;
				text-align: center;
				font-size: 11px;
				text-transform: uppercase;
				color: #fff;
				background-color: #666;
				-moz-border-radius: 5px;
				-webkit-border-radius: 5px;
				border-radius: 5px;
				border: none;
				outline: none;
				-webkit-transition: all ease-out 0.3s;
			}
				.twitter > a.button:hover{
					background-color: #a2a2a2;
					-webkit-transition: all ease-out 0.3s;
				}
			
		
/*----------------------------------

	footer
	
----------------------------------*/		
#toolbar{
	padding: 18px 20px;
	margin-top: 30px;
	overflow: hidden;
	border-top: solid 1px #b9b9b9;
	border-top: solid 1px rgba(0,0,0,0.25);
	border-bottom: solid 1px #b9b9b9;
	border-bottom: solid 1px rgba(0,0,0,0.25);
}
	#toolbar > a{
		font-family: "john-doe-1", "john-doe-2", Courier, monospace;;
		font-size: 24px;
		text-transform: uppercase;
		font-weight: bold;
		color: #222;
		float: left;
		margin-right: 20px;
	}
		#toolbar > a:hover{
			color: #38bbf6;
		}
	#toolbar > ul{
		font-size: 12px;
		text-transform: uppercase;
		float: right;
	}
		#toolbar > ul li{
			display: inline;
			margin-left: 18px;
			padding-left: 20px;
		}
			#toolbar > ul li.rss{
				background: url('../images/toolbaricon_rss.png') no-repeat left;
			}
			#toolbar > ul li.linkedin{
				background: url('../images/toolbaricon_linkedin.png') no-repeat left;
			}		
			#toolbar > ul li.twitter{
				background: url('../images/toolbaricon_twitter.png') no-repeat left;
			}
			#toolbar > ul li.email{
				background: url('../images/toolbaricon_email.png') no-repeat left;
			}
#footer > span{
	padding: 20px 0;
	font-size: 12px;
	color: #666;
	float: right;
}

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

	Single Posts Template
	
----------------------------------*/
	.comments .titlebar{
		padding: 10px 20px;
		margin-bottom: 30px;
		overflow: hidden;
		border-top: solid 3px #b9b9b9;
		border-top: solid 3px rgba(0,0,0,0.25);
		border-bottom: solid 1px #b9b9b9;
		border-bottom: solid 1px rgba(0,0,0,0.25);
	}
		.comments .titlebar h3{
			font-family: "john-doe-1", "john-doe-2", Courier, monospace;;
			font-weight: bold;
			font-size: 18px;
			float: left;
		}
		.comments .titlebar a{
			float: right;
			text-transform: uppercase;
			font-size: 12px;
		}
	.comment{
		padding: 0 20px 30px;
		margin-bottom: 30px;
		border-bottom: solid 1px #b9b9b9;
		border-bottom: solid 1px rgba(0,0,0,0.25);
		overflow: hidden;
	}
		.comment > span{
			font-size: 14px;
			margin-bottom: 11px;
			float: left;
		}
		.comment p{
			clear: both;
			font-size: 12px;
			margin-bottom: 22px;
		}
		.comment em{
			font-size: 12px;
			font-style:  italic;
			float: left;
		}
		.reply{
			float: right;
			font-size: 12px;
			text-transform: uppercase;
		}
	.comments h4, #respond h3{
		font-family: "john-doe-1", "john-doe-2", Courier, monospace;;
		font-weight: bold;
		font-size: 18px;
		padding-left: 20px;
		margin-bottom: 22px;
	}
	#respond{
		padding-bottom: 60px;
	}
	form#commentform{
		padding: 0 20px;
	}
		p.comment-notes{
			font-size: 12px;
			font-style: italic;
			margin-bottom: 22px;
		}
		#cancel-comment-reply-link{
			float: right;
			font-size: 12px;
			text-transform: uppercase;
			font-weight: normal;
		}
		.comment-form-author, .comment-form-url, .comment-form-email{
			width: 580px;
			margin-bottom: 11px;
			display: block;
			overflow: hidden;
			font-size: 12px;
			text-transform: uppercase;
		}
			.comment-form-author input, .comment-form-url input, .comment-form-email input{
					height: 23px;
					width: 188px;
					padding: 0 5px;
					margin-right: 280px;
					background-color: #f2f2f2;
					background-color: rgba(0,0,0,0.05);
					border: solid 1px #d8d8d8;
					border: solid 1px rgba(0,0,0,0.15);
					color: #a2a2a2;
					float: right;
			}
			
		.comment-form-comment{
			margin-top: 22px;
			font-size: 12px;
			text-transform: uppercase;
		}
			form#commentform textarea{
				width: 580px;
				height: 120px;
				padding: 5px;
				margin-top: 11px;
				background-color: #f2f2f2;
				background-color: rgba(0,0,0,0.05);
				border: solid 1px #d8d8d8;
				border: solid 1px rgba(0,0,0,0.15);
				color: #a2a2a2;
			}
		.form-allowed-tags{
			display: none;
		}
		input#submit{
			height: 25px;
			margin-top: 22px;
			padding: 0px 10px 0 10px;
			display: block;
			text-align: center;
			color: #fff;
			text-transform: uppercase;
			font-size: 11px;
			border: none;
			outline: none;
			background-color: #666;
			-webkit-transition: all ease-out 0.3s;
			-moz-border-radius: 5px;
			-webkit-border-radus: 5px;
			border-radius: 5px;	
			
			}
				input#submit:hover{
					cursor: pointer;
					background-color: #a2a2a2;
					-webkit-transition: c ease-out 0.3s;
				}
	
/*----------------------------------

	About Single Template
	
----------------------------------*/
#about .left{
	float: left;
	width: 160px;
	margin-right: 20px;
	padding-left: 20px;
}
#about .right{
	width: 440px;
	float: right;
}
	#about .right p{
		margin-bottom: 22px;
	}
	ul.socialnav{
		width: 160px;
		float: left;
		margin-top: 30px;
		border-top: solid 1px #b9b9b9;
		border-top: solid 1px rgba(0,0,0,0.25);
	}
		ul.socialnav li{
			border-bottom: solid 1px #b9b9b9;
			border-bottom: solid 1px rgba(0,0,0,0.25);
		}
			ul.socialnav li a{
				display: block;
				padding: 6px 10px;
				font-size: 12px;
				text-transform: uppercase;
			}
#about a.post-edit-link{
	clear: both;
	text-transform: uppercase;
	font-size: 12px;
	float: left;
	padding-left: 20px;
}


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

	Search Template
	
----------------------------------*/
.results{
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 30px;
		color: #222;
		font-family: "john-doe-1","john-doe-2", courier, monospace;
		font-weight: bold;
		text-transform: uppercase;
}


/******************************

Modifications - ZAB 09/10

*******************************/
.post > .titlebar h2 a, .post > .titlebar h2 ,#about.post > .titlebar h2{
color:#444444;
float:left;
font-family:Arial;
font-size:30px;
font-weight:normal;
line-height:117%;
margin-bottom:0;
text-transform:none;
width:100%;
}

.post > .titlebar
{
margin-left: 0;
padding-left: 0;
}

#aside .titlebar 
{
margin-bottom: 12px;
}

.post p a
{
font-family: inherit;
}


.post p, .post .content ul li, .post  .content ol li
{
color:#413C32;
font:16px/27px Helvetica Neue,Verdana,Arial,sans-serif;
margin-bottom:30px;
}

.post  .content ul
{
list-style: disc outside;
margin-left: 40px;
}

.post  .content ul li
{
margin-bottom: 10px;
}

.post > .titlebar span 
{
float: left;
}