/*
everything related to the layout and appearance of typography should go in here.

only em should be used for fonts.

due to reset.css, 1.2 em = 12px, 1.5em = 15px, works all os' and all browsers.
*/

body, form, input, label, select {
	font-family: Arial,Verdana,Helvetica,sans-serif;
	color: #1a2732;
}

form, input, label, select {
	font-family: Arial,Verdana,Helvetica,sans-serif;
	font-size: 1.2em;
}

h1 {
	font-weight: bold;
	font-size: 1.6em;
}

h2 {
	font-weight: bold;
	font-size: 1.4em;
}

h3 {
	font-weight: bold;
	font-size: 1.3em;
}

p {
	font-size: 1.2em;
}

h1, h2, h3, p {
	margin: 10px 10px 1em 10px;	/* using em for bottom margin so heading tags get more margin (its inherited from parent). */
}

ul {
	list-style-type: disc;
}

ol {
	list-style-type: decimal;
}	

	ul, ol {
		margin: 10px 10px 10px 30px;
		font-size: 1.2em;
	}

		ul li, ol li {
			margin: 0 0 0 30px;
		}

strong {
	font-weight: bold;
}

i {
	font-style: italic;
}


/*
 * *****************
 */



#sectionMenu h1 {
	font-size: 1.7em;
	font-weight: normal;
	line-height: 88px;
	width: 100px;
	float: left;
	text-indent: 20px;
}

#sectionMenu ul {
	font-size: 1.2em;		
}

	#sectionMenu ul li a {
		color: #928e8a;
		text-decoration: none;
	}

	#sectionMenu ul li a:hover {
		color: #cbc3b7;
	}
	
/*
 * *****************
 */

#mainBar h2, #mainBar h3, #mainBar p {
	margin: .8em 10px;
}

#mainBar ul, #mainBar ol {
	margin-left: 20px;
}

#mainBar h2 {
	font-size: 3em;
	font-weight: normal;
}

#mainBar h3 {
	font-size: 1.8em;
}

#mainBar a {
	text-decoration: underline;
	color: #000;
	}
	
#mainBar a:hover {
	text-decoration: underline;
	color: #000;
	}

/*
 * *****************
 */
	
#rightBar .tw_date {
	font-size: 1.1em;
	font-style: italic;
}

	#rightBar .tw_date a {
		color: #fff;
		text-decoration: none;
		}
		
	#rightBar .tw_date a:hover {
		color: #fff;
		text-decoration: underline;
	}	
	

#footerBar p {
	margin: 10px 0 0 0;
	line-height: 30px;
}













