/* -------------------------------------------------------------- 

   typography.css
   * Reset and define typography styles
   
-------------------------------------------------------------- */


body {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:12px;
	color: #fff;
}

p { 
	margin:0 0 1em 0;
	padding:0;
}

h1, h2, h3, h4, h5, h6 {
	font-weight:normal;
	color: #fff;
	line-height:1.2em;
	margin-bottom:1em;
}
h1 {
	font-size:23px;
	margin-bottom:35px;
	font-weight:normal;
}
h2 {
	font-size:20px;
	margin-bottom:10px;
	font-weight:normal;
	color: #a9a2ab;
}

h3 {
	font-style:normal;
	font-weight:normal;
	font-size:13px;
	color: #a9a2ab;
	margin-bottom:2em;
}

h4 {
	font-size:16px;
	color: #fff;
	margin-bottom:1em;
}

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

em {
	color: #a9a2ab;
}

.content {
	font-weight:bold;
}


