@charset "utf-8";
@import url("reset-styles.css");
/*
Author: Kasper Sorensen
Website: http://www.kaspersorensen.com
Description: These style sheetssupports most of the default elements you find in a common Wordpress post.
Just change the colours to suit your own design and you are good to go.

NOTE: This stylesheet should be in the same directory as the reset-styles.cee file. There should be a folder called images that holds the following files: start_quote.gif & end_quote.gif
*/

/* Colours used in this stylesheet
a: blue
a:hover: underline
image border: #aaa
image background: #f3f3f3
blockquote: #666
blockquote background: #f3f3f3
blockquote border: #ddd

Optiopnal Wordpress default classes that you might want to style
.categories {...}
.cat-item {...}
.current-cat {...}
.current-cat-parent {...}
.pagenav {...}
.page_item {...}
.current_page_item {...}
.current_page_parent {...}
.widget {...}
.widget_text {...}
.blogroll {...}
.linkcat{...}
*/

body {
	width: 800px;
	margin: 10px auto;
	border: 1px solid #000;
	padding: 1em;
	
	color: #000;
	line-height: 2em;
	font-size: 12px;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
}
/*Typography Styles
-----------------------------------------------------*/
body abbr, body acronym {
	border-bottom: 1px dashed;
}
body abbr:hover, body acronym:hover {
	cursor: help;
}
body dd {
	padding: 0 0 0 1em;	
}
body dl {
	margin: 1em 0;	
}
body del {
	color: red;
}
body ins {
	color: green;	
}
body a {
	text-decoration: none;
	color: blue;
}
body a:hover {
	text-decoration: underline;	
}
body blockquote {
	background: #f3f3f3 url(images/start_quote.gif) top left no-repeat;
	background-position: 7px 7px;
	border: 1px solid #ddd;
	width: 70%;
	margin: 1em 4em;
	padding: 1em 0 1em 40px;
}
body blockquote p {
	background: url(images/end_quote.gif) bottom right no-repeat;
	margin: 0 10px 10px 0;
	color: #666;
	padding: 1em 35px 1em 0;
}
/*Alternative Blockquote with no images 
body blockquote {
	width: 70%;
	margin: 2em 4em;
	padding: 0 1em;
	border-left: 10px double #666;
}
*/

body ul, body ol {
	margin: .5em 0 .5em 3em;
	list-style-position: outside;
}
body ul {
	list-style: square;
}
body ol {
	list-style: decimal;	
}
body p {
	margin: 0 0 1em 0;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
	margin-bottom: .3em;
	display: block;
	clear: both;
}
body h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: 1.8em;
}
body h2 {
	padding-bottom: 3px;
	border-bottom: 1px dotted #ccc;
	margin-top: 1em;
	font-size: 1.4em;
	font-weight: normal;
}
body h3 {
	font-size: 1.3em;
}
body h4, body h5, body h6 {
	font-size: 1.1em;
	margin-bottom: 0;
}
/*Image Styles
-----------------------------------------------------*/
body .aligncenter, body div.aligncenter {
	display: block;
	clear: both;
	margin: 1em auto;
}
body .alignleft, body .alignnone {
	float: left;
}
body .alignright {
	float: right;
}
body img {
	border: 1px solid #aaa;
	background-color: #f3f3f3;
	padding: 5px;
	margin: 5px 5px; /*This should be matched with .wp-caption */
}
body .wp-caption img {
	border: none;
	margin: 0;
}
body .wp-caption {
	border: 1px solid #aaa;
	background-color: #f3f3f3;
	margin: 5px 5px; /*This should be matched with the img tag */
	/* optional rounded corners for browsers that support it 
    -moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;*/
}
body .wp-caption p.wp-caption-text {
	text-align: center;
	clear: both;
	font-size: 11px;
	line-height: 17px;
	padding: 0 5px 5px;
	margin: 0;
}
