/*
Style Name: Panopticon
Description: A single column, simple playour taking inspiration from Spencer Fry, Line Break, and Pelican
Version: 0.5
Author: Dean Harris
Author URI: http://dean.harris.tc/
*/


/*
 
TABLE OF CONTENTS:
 	
 	1. COLOR SWATCHES
	2. CSS RESET
	3. @FONT-FACE
	4. LAYOUT 
	5. TYPOGRAPHY
	6. IMAGES AND OTHER MISCELLANEA
 
*/

/* 1. COLOR SWATCHES
-------------------------------------------------------------- */

/*
Background Color:
Font Color: 
Link/Visited Link Color: 
Hover/Active Link Color: 
Borders/Display Color: 
*/

/* 	2. CSS RESET
-------------------------------------------------------------- */

@import url("reset.css");
body { -webkit-text-stroke:1px transparent; }
@media only screen and (max-device-width:480px) {body{-webkit-text-stroke:0 black;}}

/* 	4. LAYOUT
-------------------------------------------------------------- */

#header{
	position: fixed;
	bottom: 40px;
	left: 0;
	right: 0;
	background: #333; }

	.inner-wrap{
		width: 780px;
		margin: 0 auto; }
		
		.title {
			width: 200px;
			float: right; }
			
			.title p{
				margin: 0 0 10px;
				color: #a8a8a8;; }
		
		.inner-wrap #nav li {
			list-style: none;
			display: inline-block;
			margin-left: 0;
			margin-right: 20px;
			font-size: 18px;
			line-height: 20px;
			margin-top: 12px; }

#body{
	width: 780px;
	margin: 0 auto; }

#content, #archive, #page {
	width: 460px; 
	float: left;}
	
#page p:last-child {
	margin-bottom: 180px;}

.post, .archive-list {
	margin-bottom: 140px; }
	
	#pagination, .archive-list, #comment-form, .node:last-child {
	margin-bottom: 180px; }
	
	#page .archive-list {
		margin-bottom: 20px; }
		
		#page .category {
			margin-bottom: 180px!important; }

.single-post {
	margin-bottom: 60px; }
	
	.comment, .author-comment{
		margin-bottom: 40px;
		overflow: hidden; }
		
		.comment-meta {
			margin-bottom: 20px;
			overflow: hidden; }
		
		.comment-meta h4, .comment-meta time {
			width: 415px;
			float: right; }
		
		.comment p, .author-comment p{
			width: 460px; }

#pagination {
	width: 460px;
	overflow: hidden; }
	
	#older {
		width: 220px;
		float: left; }
	
	#newer {
		width: 220px;
		float: right;
		text-align: right; }
	
#menu {
	width: 220px;
	float: right; }
	
	.node{
		margin: 0 0 20px;
		font-size: 12px;
		line-height: 20px; }
	
#footer{
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #333; }
	
	#footer p, #header ul {
		margin-bottom: 0px;
	}
	
		#footer p{
			width: 780px;
			margin: 0 auto;
			padding: 10px 0 10px;
			border-top: 1px solid rgba(102, 102, 102, 0.5);
			color: rgb(102,102,102); }

/* 	5. TYPOGRAPHY
-------------------------------------------------------------- */

body {
	font: 15px/20px "Myriad Pro","HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Calibri, Verdana, sans-serif;
	margin-top: 80px;
	color: rgb(25,25,25);
	background: rgb(255,255,255);
	background: #fdfdfd;
}

time {
	font-style: italic;
	color: #a8a8a8; }

#newer, #older {
	font-weight: bold;
	font-size: 18px; }

/* 	5.1 PARAGRAPHS
-------------------------------------------------------------- */

p {
	margin-bottom: 20px;
}

.post p:first-child, .post h2 + p, .post h3 + p, .post h4 + p, .post h5 + p, .post ol + p,  .post ul + p, .post blockquote + p {
	text-indent: 0;
}

/* 	5.2 HEADINGS
-------------------------------------------------------------- */

h2 {
	font-size: 30px;
	font-weight: normal;
	line-height: 40px;
	color: #101010; }
	
	#archive h2, #page h2{
		margin: 0 0 20px;
		padding: 20px 0 0; }

h3 {
	font-weight: bold;
	font-size: 18px;
	margin: 0 0 20px; }
	
	ul.archive-list h3 {
		margin-bottom: 0;
		font-weight: normal;}

h4 {
	font-weight: normal;
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 20px; }
	
	.comment h4{
		margin-bottom: 0;
		text-transform: none;
		font-weight: bold; }

/* 	5.3 LISTS
-------------------------------------------------------------- */

ul, ol { margin-bottom: 20px; }

	ul li {
		list-style: disc;
		margin-left: 20px; }
	
	ol li {
		list-style: decimal;
		margin-left: 20px; }

/* 	5.3.1 POST META
-------------------------------------------------------------- */

ul.post-meta li {
	display: inline;
	margin-left: 0;
	color: #a8a8a8;
	font-size: 12px; }
	
	ul.post-meta>li:after{
	content: " \202A\ \2022\ \202A\ "; }
	
	ul.post-meta>li:last-child:after{
		content: ""; }
	
	ul.post-meta li ul, ul.post-meta li ul li{
		display: inline; }

		
		ul.post-meta li ul li:after {
			content: ", " }
			
			ul.post-meta li ul li:last-child:after {
			content: " " }

/* 	5.3.1 ARCHIVE LIST
-------------------------------------------------------------- */

ul.archive-list>li {
	list-style-type: none;
	margin: 0 0 20px;
	overflow: hidden; }
	
	ul.archive-list>li>ul>li, ul.archive-list>li>ul>li+li+li{
			width: 140px;
			float: right;
			display: inline-block;
			list-style-type: none;
			margin: 0;
			text-align: right; }
		
		ul.archive-list>li>ul>li+li, ul.archive-list li h3 {
			width: 300px;
			float: left;
			margin-left: none;
			text-align: left;
			color: #a8a8a8;}
			
			ul.archive-list>li>ul>li+li{
				font-size: 12px; }
			
			ul.archive-list>li>ul>li>ul{
				display: inline;
				font-size: 12px; }
			
			ul.archive-list>li>ul>li>ul>li{
				display: inline!important;
				margin-left: 0;
				color: #a8a8a8; }
				
				ul.archive-list>li>ul>li>ul>li:after {
					content: ", " }
				
					ul.archive-list>li>ul>li>ul>li:last-child:after{
						content: ""; }
/* 	5.4 LINKS
-------------------------------------------------------------- */

a:link, a:visited {
	text-decoration: none;
	color: #db4b23; }

sup a:link, sup a:visited {
	color: #db4b23; }

#footer p a, #header a:link, #header a:visited {
	color: #db4b23; }

.post h2 a:first-child, .archive-list li h3 a, #newer a:link, #newer a:visited, #older a:link, #older a:visited {
	color: #101010; }

ul.post-meta li a:link, ul.post-meta li a:visited, ul.archive-list>li>ul>li a:link, ul.archive-list>li>ul>li a:visited {
	display: inline;
	margin-left: 0;
	color: #a8a8a8; }

a:hover, a:focus {
	text-decoration: underline;
	color: #0cb0db;
}

ul.post-meta li a:hover, ul.post-meta li a:focus, ul.archive-list>li>ul>li a:focus, ul.archive-list>li>ul>li a:hover, #newer a:focus, #newer a:hover, #older a:focus, #older a:hover {
	color: #db4b23; }	
	
h1 a {
	font-size: 30px;
	font-weight: normal;
	line-height: 40px;
	color: rgb(153, 153, 153); }
	
a:active {
	position: relative;
	top: 1px; }

/* 	5.5 CONTENT ELEMENTS
-------------------------------------------------------------- */

blockquote {
	font-style: italic;
	margin-left: 20px;
}

acronym, abbr {
	color: #101010; }

pre, code, pre code {
	font-family: monospace; }

/* 	6. IMAGES AND OTHER MISCELLANEA
-------------------------------------------------------------- 

.imgright img, .imgleft img {
	max-width: 240px; }*/
	
	
.post .imgleft {
	width: 198px;
	float: left;
	padding: 9px 0;
	margin: 10px 20px 10px 0;
	text-align: center; }
	
.post .imgright {
	width: 198px;
	float: right;
	padding-top: 9px;
	margin: 10px 0 10px 20px;
	text-align: center; }
	
	.imgleft img, .imgright img { max-width: 180px; }
	
.post .caption { margin: -2px 0 0; text-indent: 0; color: #a8a8a8; }

#project52 {
	text-align: center; }
	
.comment img, .author-comment img {
	width: 35px;
	height: 35px;
	display: block;
	float: left; }
	
/* 	7. FORMS
-------------------------------------------------------------- */
input, textarea {
	outline: 0; }

#about {
		padding: 30px 0 0; }
		
	#search input {
		width: 220px; }
		
#comment-form label{
	display: block;
	width: 140px;
	float: left;
	padding-top: 6px; }


#comment-form input[type="text"] {
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border: 1px solid #ccc;
	font: 15px/16px Calibri, "Lucida Grande", "Lucida Sans", Verdana, sans-serif;
	padding: 4px;
	width: 450px;
	margin-bottom: 10px;
}

#comment-form textarea {
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border: 1px solid #ccc;
	font: 15px/16px Calibri, "Lucida Grande", "Lucida Sans", Verdana, sans-serif;
	padding: 4px;
	width: 450px;
	height: 198px;
	resize: none; 
	display: block;
	clear: both;
	margin-bottom: 20px;
}

#comment-form input[type=submit] {
	-webkit-appearance:button;
	border:1px solid #999;
	-webkit-border-radius:2px;
	background:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#ddd));
	font-size:15px;
	height: 29px;
	width: 460px;
	text-shadow: #fff 1px 1px 0;
	cursor: pointer;
}

#comment-form input[type=submit]:active {
	border-color: #999;
	background: #ddd;
	background: -moz-linear-gradient(top, bottom, from(#ddd), to(#fff));
	background: -webkit-gradient(linear,left top,left bottom,from(#ddd),to(#fff));
}