﻿/*Navigation area*/
* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}

/* section i edited */
body { background: #fff; color: #333; font: Georgia, "Times New Roman", Times, serif; }


h1, h2, h3, h4 { font-family:  Georgia, "Times New Roman", Times, serif; }

h1 {
	font-size: 1.8em;
	line-height: 1.11111em;
	padding: 0.8em 0px 0.8em 0px;
	color: #111;
}


h2 {
	font-size: 1.8em;
	line-height: 1.11111em;
	padding: 5px 0px 0px 0px;
		color: #111;
}

	h2 a, h2 a:visited { color: #333; }

	h2 a:hover { color: #237fa1; text-decoration: none; }

h3 {
	font-size: 1.23077em;
	line-height: 1.25em;
	color: #669900;
}


h4 { font-size: 0.84615em; line-height: 1.81818em; text-transform: uppercase; letter-spacing: 2px; }

#tagline {
	font: normal Verdana, serif;
	padding: 0;
	color: #666666;
	text-align: left;
	font-size: 80%;
	text-transform: uppercase;
}



/* not sure what this line does: */
.clear { clear: both; }


/*appearance elements*/



/*text styles */

.format_text {  font-size : 1.3em; line-height: 1.53846em; padding: 0 10px; }
		
	.format_text a { text-decoration: underline; }
	
	.format_text a:visited { color: #333; background: #e8e8e8; text-decoration: none; }
	
	.format_text a:hover { text-decoration: underline; }
		
	.format_text blockquote {
	font-size: 1.000em;
	line-height: 1.25em;
	margin: 0 0 0 10px;
	padding: 0.4375em 0 0.4375em 10px;
	background-color: #FFFFCC;
}
	
		
	.format_text p { margin: 0 0 1.53846em 0; }
	
	.format_text ul { list-style: none; margin: 0 0 1.53846em 0; }

	.format_text ol { margin: 0 0 1.53846em 20px; }
	
		.format_text li { }
	
		.format_text ul li { padding: 0 0 0 14px; background: url('images/bullet_text.gif') 0 0.38462em no-repeat; }
		
			.format_text ul li ul, .format_text ul li ol, .format_text ol li ul, .format_text ol li ol { margin: 0 0 0 10px; }
	
	
/*did not review the img code yet */
	.format_text img { }

		.format_text img.left { margin: 0 10px 1.53846em 0; float: left; clear: left; }
		
		.format_text img.right { margin: 0 0 1.53846em 10px; float: right; clear: right; }
		
		.format_text img.center { display: block; margin: 0 auto 1.53846em auto; float: none; clear: both; }
		
		.format_text img.block { display: block; margin: 0 auto 1.53846em 0; float: none; clear: both; }
	
		.format_text img.frame { padding: 9px; border: 1px solid #ddd; background: #eee; }
		
		.format_text img.stack { clear: none !important; }


/*---:[ sidebar styles ]:---*/

.sidebar_styles {
	font-size: 62.5%;
}

.sidebar_styles a, li, ul, ol {margin: 0.76923em 0 0.76923em 0;
	
}

.sidebar_styles a {
	font: normal 1.2em/1.33333em Verdana, serif;
	text-decoration: none;
	color: #0000FF;
	}

.sidebar_styles a:hover {
	color: #008000;
}


.sidebar_styles p {
	font: normal 1.2em/1.33333em Verdana, serif;
	margin: 0.76923em 0 0.76923em 0;
}

.sidebar_styles h1, h2, h3, h4 {
	margin:  0 0 0.76923em 0;
}

/*---:[ footer styles ]:---*/
.footer_style {
	text-align: center;
	font-size: 62.5%;
}

.footer_style h1, h2, h3, h4 {
	margin:  0 0 0.76923em 0;
}

.footer_style a {
	font: normal 1.2em/1.33333em Verdana, serif;
	color: #0000FF;
	padding: .2em 1em;

}

.footer_style ul
{
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
}

.footer_style ul li { display: inline; 	white-space: nowrap;
} /* nowrap is to prevent two or more word links from splitting into different lines */

.footer_style ul li a
{
	text-decoration: none;
	padding: .2em 1em;
	color: #008000;
}

.footer_style ul li a:hover
{
	color: #0000FF;
}



/*positioning code */
	#mainContainer { width: 865px;
margin: 0 auto; /*** Centers the design ***/
min-height: 100%;
background: #fffff url(/examples/three-column-100-bg.gif) repeat-y; /*** This is our faux columns ***/

text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}

* html #mainContainer {
height: 100%;  /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}

/**************************
HEADER
**************************/
#header {
background: #ffffff;
padding: 10px
}

/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 175px;  
}
* html .outer {
padding-right: 120px; /* Normally this shouldn't be in this hack, it should be in .outer, but because of IE7 I had to */
}
.inner {
width: 700px; /*** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
padding-bottom: 30px;
}
* html .inner {
width: 100%;
}

/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
float: left;
width: 700px;
margin-left: -175px; /*** Same length as .outer padding-left but with negative value ***/
}

* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}

#content {
float: right;
width: 525px;
background: #fff;
/*I added style element here*/
color: #333; font: 62.5% Georgia, "Times New Roman", Times, serif;
border-left: 1px #669900 dotted;
border-right: 1px #669900 dotted;
}
* html #content {
position: relative;  /*** IE needs this  ***/
}
.contentWrap{
padding: 5px;
}
.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 0px;
}
.contentWrap li {
padding-bottom: 2px;
}

/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left {
	float: left;
	width: 160px;
	padding: 5px;
}
* html #left {
position: relative;  /*** IE needs this  ***/
}
#left ul {
list-style: none;
padding-bottom: 4px;
}
#left li {
padding-bottom: 2px;
}

/*************************
RIGHT COLUMN
**************************/
#right {
float: right; 
width: 165px;
padding: 5px;
}
* html #right {
position: relative;  /*** IE needs this  ***/
margin-right: -140px; /*** IE gets this margin. ***/ /* i changed it from -165*/
}
#right ul {
list-style: none;
padding-bottom: 4px;
}
#right li {
padding-bottom: 2px;
}

/**************************
FOOTER
**************************/
#footer {
width: 865px;
height: 30px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 30px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
margin: 0 auto;
margin-top: -30px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
text-align: center;
}


