/*
Theme Name: Penelope Metcalf
Theme URI: http://www.penelopemetcalf.com/
Description: 
Version: 1.
Author: Thai To
Author URI: 
Tags: 

*/



/* Begin Typography & Colors */
html {
	height: 85%;
}
body {
	height: 100%;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	background: #fff;
	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: #808184;
}
.thrColAbs #container {
	height: 100%;
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 1080px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0;
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
/* Tips for absolutely positioned sidebars:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
*/
.thrColAbs #sidebar1 {
	position: fixed;
	width: 200px;
	top: 0;
	left: 0;
	margin-top: 0;
	margin-left: 60px;
	padding: 0;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 10px;
	z-index: 99;
}
.thrColAbs #sidebar2 {
	position: fixed;
	bottom: 0;
	left: 0;
	margin-left: 900px;
	margin-bottom: 20px;
	width: 190px;
	z-index: 98;
}
.thrColAbs #sidebar1 #logo, .thrColAbs #sidebar1 #navigation {
	margin-top: 40px;
}
.thrColAbs #sidebar1 #navigation ul {
	margin: 0;
	padding: 0;
}
.thrColAbs #sidebar1 #navigation ul li {
	list-style-type: none;
	list-style-image: none;
}
.thrColAbs #sidebar1 #navigation ul li ul {
	margin-left: 12px;
	padding: 0;
}
.thrColAbs #sidebar1 #navigation ul li ul li {
	list-style-type: none;
	list-style-image: none;
}
.thrColAbs #sidebar1 #navigation ul li p {
	margin: 0;
	padding: 0;
}
.thrColAbs #sidebar1 #navigation ul li a, .thrColAbs #sidebar1 #navigation ul li a:visited, .thrColAbs #sidebar1 #navigation ul li a:link {
	text-decoration: none;
	color: #808184;
}

.thrColAbs #sidebar1 #navigation ul li a:hover {
	text-decoration: none;
	color: #231f20;	
}

.thrColAbs #sidebar1 #navigation ul li a.page_item_on {
	text-decoration: none;
	color: #231f20;
}


.thrColAbs #mainContent {
	margin-top: 116px;
	margin-left: 270px;
	margin-right: 320px;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.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;
}
h1 {
	padding-top: 0;
	margin-top: 0;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

p {
	padding-top: 0;
	margin-top: 0;
	padding-bottom: 10px;
	margin-bottom: 10px;

}

.entry a, .entry a:active, .entry a:visited
{
	text-decoration: underline;
	color: #808184;
}

.entry a:hover
{
	text-decoration: underline;
	color: #231f20;
}

a.noscrub, a.noscrub:active, a.noscrub:visited
{
	text-decoration: underline;
	color: #808184;
}

a.noscrub:hover
{
	text-decoration: underline;
	color: #231f20;
}