/*
Theme Name: blankSlate
Theme URI: http://shawncope.com
Description: A theme completely stripped of all styling. Functionality is based on the kubrick theme.
Version: 1.0
Author: Shawn Cope
Author URI: http://shawncope.com
Tags: blankSlate, no style, clean, empty

This theme was designed and built by Shawn Cope,
whose blog you will find at http://shawncope.com/

The CSS, XHTML and design is released under GPL:
http://www.opensource.org/licenses/gpl-license.php
*/

@import "style/reset.css";

/*Utility Styles************************/
.alignright {
	float: left;
}

.alignleft {
	float: right;
}
.center {
	display:block;
	margin:0 auto;
}

body  {
	background: #FFF8EC;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */

	color: #000000;
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
	font-size: 12px;
}
.twoColFixLtHdr #container { 
	width: 700px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	/* background: #FFFFFF; */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	text-align: center;
} 
 #sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	/* background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 5px 5px 5px;
}

.twoColFixLtHdr #contentHeader { 
	background:#ACC99D;
	margin: 0px 0px 0px 150px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 2px 5px 2px 2px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: #9D6564;
	text-decoration: none;
}


.twoColFixLtHdr #mainContent { 
	background: #FFFFFF;
	border: 1px solid #ACC99D;
	margin: 5px 0px 5px 150px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	height: auto;
}

 
.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#6F0000; 
	clear: both;
	font-family: Arial, Helvetica, sans-serif;	
	font-size: 12px;	
	color: #FFFFFF;	
	text-decoration: none;	
	line-height: 22px;
	text-align:center;
}
.twoColFixLtHdr #footer a { color: #FFFFFF; }
.twoColFixLtHdr #footer a:visited { text-decoration: none; }
.twoColFixLtHdr #footer a:hover { text-decoration: underline; }
.twoColFixLtHdr #footer a:link { text-decoration: none; }
.twoColFixLtHdr #footer a:active { color: #CCCCCC; 	text-decoration: underline; }

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

h1 {
	font-size: 24px;
	text-align:center;
	font-weight:bold;
	line-height: 30px;
	padding-bottom: 15px;
}

h2 {
	font-size: 14px;
	text-align:center;
	font-weight:bold;
	line-height: 20px;
	padding-bottom: 15px;
}

h3 {
	font-size: 14px;
	font-weight:bold;
	text-decoration: underline;
	line-height: 20px;
	padding: 5px 0 5px 0px;
}

ul {
	list-style:disc;
	padding: 0px 0 0 30px;
}

p {
	padding: 5px 0 5px 0;
}

a { color: #6F0000; }
a:visited { text-decoration: none; }
a:hover { text-decoration: underline; }
a:link { text-decoration:none; }
a:active { color: #ACC99D; 	text-decoration: underline; }