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

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


body {
	font-family: Verdana, Geneva, sans-serif;
	font-size:11px;
	color: #677141;
}

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

h1, h2, h3, h4, h5, h6 {
	font-weight:bold;
	color: #981f40;
	font-style:italic;
	line-height:1.2em;
	margin-bottom:1em;
}
h1 {
	font-size:28px;
	margin-bottom:10px;
}
	h1.h2 {
		font-size:18px;
	}
h2 {
	line-height:1.6em;
}
h3 {
	font-style:normal;
	font-weight:bold;
	font-size:15px;
	margin-top:30px;
}

em {
	font-style:italic;
}

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

strong {
	font-weight:bold;
	color: #981f40;
}

.nice-bullets {
}
	.nice-bullets ul {
		list-style:decimal;
		margin-left:1.5em;
		font-weight:bold;
	}
		.nice-bullets ul li {
			margin-bottom:1em;
		}
		.nice-bullets ul ul {
			list-style:lower-alpha;
			font-weight:normal;
			margin-bottom:0;
		}
			.nice-bullets ul ul li {
				margin-bottom:0;
			}
			.nice-bullets ul ul ul {
				list-style:lower-roman;
				font-weight:normal;
				margin-bottom:0;
			}
				.nice-bullets ul ul ul li {
					margin-bottom:0;
				}

