/* TEXT */


/* Paragraphs and Headings */

body {
	font-family: Verdana, Arial, sans-serif;
	font-weight: normal;
	font-size: 10px;
}

p, blockquote, pre, dd, dt, li, legend, input, textarea {
	font-size: 1.2em;
	line-height: 1.35em;
	padding: 0 0 0.75em; /* a = 0.75em */
	color: #666;
	text-align: left;
}

h1 {
	font-size: 1.85em;
	font-weight: bold;
	text-transform: uppercase;
	padding: 1.35em 0 0.35em;
}

h2 {
	font-size: 1.2em;
	text-transform: uppercase;
	padding: 1.5em 0 0.8em;
	clear: both;
}





/* Lists */

ul,
ol {
	/* Space after the whole list */
	padding: 0 0 0.5em; /* c = a-b = 0.5em */
	margin: 0;
}

ul ul,
ul ol,
ol ul,
ol ol {
	/* Avoids double space for lists inside lists */
	padding: 0;
	margin: 0;
}

ul li,
ul ul li,
ol ul li {
	/* General bulleted item */
	list-style-type: none;
	background-image: url(../images/bullet_mini_grey.gif);
	background-repeat: no-repeat;
	background-position: 0 0.6em;
	padding: 0 0 0.25em 1em; /* b = 0.25em */
	margin: 0;
}

ol li,
ol ol li,
ul ol li {
	/* General numbered item */
	list-style-type: decimal;
	list-style-position: inside;
	background: none;
	padding: 0 0 0.25em; /* b = 0.25em */
	margin: 0;
}

ul ul li,
ul ol li,
ol ul li,
ol ol li {
	/* General indent for lists inside lists */
	margin-left: 2em;
}





/* Links */

a {
	text-decoration: none;
	color: #00A9A1;
}

a:hover {
	text-decoration: underline;
}





/* Rules */

hr {
	width: 100%;
	margin: 2em auto;
	color: #999;
	background-color: #999;
	height: 1px;
	border: 0;
}





/* General Definitions */

.first {
	margin-top: 0;
	padding-top: 0;
}

