/*
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: Tahoma,lucida Grande,Arial,Verdana,Helvetica,sans-serif;
}

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

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

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

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

p {
	font-size: 1.3em;
}

h1, h2, h3, p {
	margin: 0 20px 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;
	}

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

strong {
	font-weight: bold;
}

i {
	font-style: italic;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

	#rightColumn h1, #rightColumn h2, #rightColumn h3, #rightColumn p {
		margin-right: 0;
	}



/*
 * some more specific css for text items now! 
 */

#pageMenu li a {
	font-weight: bold;
	font-size: 1.1em;
}

#quoteBar h2 {
	font-size: 2.2em;
}

#quoteBar h3 {
	font-size: 1em;
	font-weight: normal;
}

#footerBar {
	font-size: .8em;
}