/* Evella Styles CSS
Version: 2.50
Author: Jason Jou  
Description: Theme made for the evella blog.
*/

/* Color Scheme
	Charcoal: #36454F
	Stainless Steel: #E0DFDB
	Wood: #C86C39
	Sticky Note: #E6DD93;
*/

/* Required for Wordpress Post CSS */
.aligncenter, div.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.alignleft {
	float: left;
}

.alignright {
	float: right;
}

.wp-caption {
	border: 1px solid #ddd;
	text-align: center;
	background-color: #f3f3f3;
	padding-top: 4px;
	margin: 10px;
	/* optional rounded corners for browsers that support it */
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.wp-caption img {
	margin: 0;
	padding: 0;
	border: 0 none;
}

.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	padding: 0 4px 5px;
	margin: 0;
}

/* Blog Wide CSS */
a:link, a:visited {
	color: #36454F;
	text-decoration: none;
}

a:hover {
	color: #C86C39;
}

a img {
	border: none;
}

body, h1, h2, h3, h4, h5, h6, address, blockquote, dd, dl, hr, p, form, ul, li {
	color: #36454F;
	font-family: "American Typewriter", "Helvetica", sans-serif;
	font-size: 12px;
	margin: 0;
	padding: 0;
}

p {
	margin-bottom: 10px;
}

input {
	background: #36454F;
	border: none;
	color: #E6DD93;
	font-family: "American Typewriter", "Helvetica", sans-serif;
	margin: 0;
	padding: 0;
}

body {
	background: #E0DFDB;
}

/* Sets the width and centers the blog */
#dimensions {
	margin: auto;
	width: 1000px;
}

	/* Gives blog height and displays the banner image */
	#banner {
		background-image: url('banner.png');
		background-repeat: no-repeat;
		background-position: top center;
		float: left;
		width: inherit;
	}
		
		#search {
			float: left;
			text-align: right;
			width: inherit;
		}
		
			#s {
				height: 16px;
			}
			
			#searchsubmit {
				height: 16px;
				width: 50px;
			}

		#title {
			float: left;
			margin-top: 125px;
			width: 850px;
		}
		
			#blogName {
				background: #E6DD93;
				float: left;
				font-size: 50px;
				margin-left: 300px;
				padding: 5px 10px;
			}
			
				#blogName a:hover {
					color: #36454F;
				}
				
			#feed {
				float: left;
				margin: 8px;
			}
				
			#blogDescription {
				background: #36454F;
				color: #E6DD93;
				float: left;
				margin-left: 350px;
				padding: 5px 10px;
			}
		
		#menu {
			float: right;
			margin-top: 5px;
			width: 150px;
		}
		
			#sidebar {
				background: #E6DD93;
				float: left;
				text-align: center;
				padding: 5px 0;
				width: 150px;
			}
			
				#sidebar ul {
					list-style-type: none;
				}
			
					#sidebar ul li {
						list-style-type: none;
					}
			
			#footer {
				float: left;
				text-align: center;
				width: inherit;
			}
	
	#content {
		margin: auto;
		width: 800px;
	}
	
		/* Bottom of the blog used for navigation buttons */		
		#bottom {
			float: left;
			width: inherit;
		}
		
			#nav {
				background: #E6DD93;
				float: right;
				font-size: 16px;
				margin-top: 25px;
				margin-right: 5px;
				padding: 10px;
				font-weight: bold;
			}
	
		/* This is a horizontal block that each post is made of.
		   The elements will then be positioned absolutely in each block.
		   Each block is made up of 3 major elements: the notecard, the sticky note, and the polaroid. */
		.postLeft {
			float: left;
			height: 220px;
			position: relative;
			width: inherit;
		}
		
		.postRight {
			float: left;
			height: 220px;
			margin-left: 100px;
			position: relative;
			width: 700px;
		}
		
			.notecard {
				background-image: url('notecard.png');
				background-repeat: no-repeat;
				float: left;
				height: 235px;
				left: 90px;
				position: absolute;
				top: 20px;
				width: 375px;
			}
			
				.title {
					float: left;
					font-size: 20px;
					padding: 5px 0 0 5px;
					width: 370px;
				}
				
				.metadata {
					float: left;
					font-size: 10px;
					padding-left: 5px;
					width: 370px;
				}
				
				.excerpt {
					float: left;
					padding: 5px 12px 0 13px;
					width: 345px;
				}
				
					.excerpt p {
						font-size: 16px;
						text-align: justify;
					}

			.polaroid {
				background-image: url('polaroid.png');
				background-repeat: no-repeat;
				height: 315px;
				padding-left: 20px;
				padding-top: 20px;
				position: absolute;
				left: 448px;
				width: 262px;
			}
			
			.sticky {
				background-image: url('sticky.png');
				background-repeat: no-repeat;
				background-position: left;
				float: left;
				height: 102px;
				position: absolute;
				top: 65px;
				width: 110px;
			}
			
				.month {
					float: left;
					font-size: 14px;
					height: 10px;
					margin-top: 25px;
					text-align: center;
					width: inherit;
				}
				
				.day {
					float: left;
					font-size: 20px;
					font-weight: bold;
					height: 20px;
					text-align: center;
					width: inherit;
				}
				
				.edit {
					float: left;
					font-size: 10px;
					text-align: center;
					width: inherit;
				}		
		
		/* This is the single post that users some elements from the main page's notecard/polaroid/sticky layout. */
		#post {
			float: left;
			margin-left: 25px;
			position: relative;
			width: 775px;
		}
		
			#block {
				background: #C86C39;
				float: left;
				margin-top: 20px;
				margin-left: 90px;
				padding: 20px;
				width: 640px;
			}
			
				#block a:hover {
					color: #E6DD93;
				}
			
				#postTitle {
					float: left;
					font-size: 40px;
					width: inherit;
				}
				
				#postMetaData {
					border-bottom: solid #36454F 1px;
					float: left;
					font-size: 12px;
					width: inherit;
				}
			
				#postContent {
					float: left;
					font-size: 16px;
					width: inherit;
				}
				
					#postContent p {
						font-size: 16px;
						text-align: justify;
					}
				
					#postContent a:link, #postContent a:visited {
						text-decoration: underline;
					}
					
					#postContent ul, #postContent li {
						font-size: 16px;
						margin-left: 15px;
						text-align: justify;
					}
			
				#postMultiPages {
					float: left;
					font-size: 12px;
					text-align: right;
					width: inherit;
				}
			
				#postComments {
					border-top: solid #36454F 1px;
					float: left;
					font-size: 12px;
					margin-top: 50px;
					width: inherit;
				}

					/* Used for the comments submitting text area */
					#postComments textarea {
						background: #C86C39;
						border: solid #36454F 1px;
						color: #36454F;
						font-family: "American Typewriter", "Georgia", serif;
						font-size: 16px;
						width: 638px;
					}
					
					#postComments input {
						background: #C86C39;
						border: solid #36454F 1px;
						color: #36454F;
						font-family: "American Typewriter", "Georgia", serif;
						font-size: 16px;
						margin-bottom: 1px;
						width: 200px;
					}
				
					.commentsPost {
						border-bottom: solid #36454F 1px;
						float: left;
						width: inherit;
					}
					
					.commentsLeftSide {
						background: #36454F;
						color: #E6DD93;
						float: left;
						margin-right: 2px;
						padding: 2px 0;
						text-align: center;
						width: 48px; 
					}
					
						.commentsLeftSide a:link, .commentsLeftSide a:visited {
							color: #E6DD93;
						}
						
						.commentsLeftSide a:hover {
							color: #C86C39;
						}
						
						.commentsMonth {
							font-size: 11px;
			    			height: 6px;
			    			text-transform: uppercase;
						}
						
						.commentsDay {
							font-size: 16px;
			    			font-weight: bold;
			    			height: 14px;
						}
						
						.commentsEdit {
							font-size: 10px;
							height: 10px;
						}
					
					.commentsRightSide {
						float: left;
						width: 590px; 
					}
					
						.commentsContent {
							float: left;
							text-align: left;
							width: inherit;
						}
							
							.commentsContent p {
								font-size: 14px;
								text-align: justify;
							}
					
						.commentsAuthor {
							float: right;
							text-align: right;
							width: inherit;
						}
						
					.commentsForm {
						float: left;
						margin-top: 10px;
					}