/*
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: Trebuchet MS, Arial,Verdana,Lucida Sans Unicode,Lucida Grande,Arial,Helvetica,sans-serif;
}

form, input, label, select {
	font-family: Trebuchet MS, Arial,Verdana,Lucida Sans Unicode,Lucida Grande,Arial,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: none;
}

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;
}


