﻿body
{
	background: #73b385 url(../images/bgDash.gif) repeat-y center center;
}

/*SETTING FONT SIZES */
body 
{ 
	font-size: 1em; 
	line-height: 1.2em; /* Standard browsers: 1em = 16px */
	font-family: Arial, Verdana, Sans-Serif;
} 

/* To convert px to em use this equation:  1 / Parent PX size x req px = em equivalent
this means to get 879px we would do it like this:  1 / 16px x 879px = 54.9375em
Please check parent size.  Setting fontsize on any container changes the parent px size for any elements within.  So if a wrapper of two divs
has a new font size set to 12px, the two divs and any elements in the div and wrapper now have a parent px font size of 12px.
so equations would now read 1 / 12px x reqPixels = converted Ems. */

#content,#nav { font-size: .75em; }
h1 { font-size: 2em; }
h2 { font-size: 1.5em; }
h3 { font-size: 1.167em; }
h4 { font-size: 1em; }
h5 { font-size: .833em; }
h6 { font-size: .667em; }
h7 { font-size: .5em; }

.postTitle h2 
{
	line-height: 1.2em;
}


/*SETTING FONT COLORS AND STYLES FOR BASE ELEMENTS*/
h1,h2,h2 a,h3,h4,h5,h6,h7 
{
	text-transform: uppercase;
	color: #7cb1cd;
	text-decoration: none;
}

a
{
	color: #7cb1cd;
	text-decoration: none;
}

a:hover
{
	text-decoration: underline;
}

.dateDisplay
{
	text-transform: uppercase;
	color: #73b385;
	text-align: right;
}

h2 span
{
	display: block;
	float: right;
	text-transform: uppercase;
	color: #73b385;
}

p span.spacer
{
	margin-left: 15%;
	margin-right: 15%;
}


#mainWrap
{
	width: 879px;
	margin: 0 auto;
	padding: 10px 50px;
}

#header
{
	border-bottom: 1px dashed #d6d6d6;
	background-color: #FFF;
}

#header h1
{
	text-indent: -9999px;
	background: url(../images/header.gif) no-repeat;
	height: 138px;
	width: 855px;
	margin: -10px 0 0 0;
	padding: 0;
}

#header h1 a
{
	height: 138px;
	width: 855px;
	display: block;
}

#spacer 
{
	background-color: #fff;
	height: 40px;
}

#content
{
	width: 723px;
	float: left;
	padding-right: 10px;
}

.postTitle 
{
	border-bottom: 1px dashed #d6d6d6;
	padding: 0 0 5px 0;
	margin-bottom: 10px;
}

.postTitle h2
{
	float: left;
	width: 560px;
	margin: 0;
	padding: 0;
}

.postTitle .dateDisplay
{
	border-left: 2px solid #73b385;
	float: right;
	width: 132px;
}

.postBody
{
	padding-bottom: 10px;
}

.postBreak
{
	display: block;
	text-align: center;
	margin-bottom: 40px;
	font-size: 1.5em;
}

#nav
{
	width: 127px;
	float: right;
	text-align: right;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.archiveYears, .archiveYears ul
{
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: right;
}

.archiveYears
{
}

.archiveYears .rightArrow, .archiveYears .downArrow
{
	margin-right: 5px;
}

.archiveYears .rightArrow img, .archiveYears .downArrow img
{
	border: 0;
}

.archiveYears .downArrow
{
	display: none;
}

.archiveYears ul
{
	display: none;
}

/* GENERIC CLASSES FOR RANDOM USE */
.floatLeft { float:left; }
.floatRight { float: right; }
.textCenter { text-align: center; }
.textLeft { text-align: left; }
.textRight { text-align: right; }
.vAlignTop { vertical-align: top; }
.displayBlock { display: block; }
