/* The concept behind normalize.css is to start with normalized styles for HTML elements that are applied after reset.css clears everything. */

/* start with eric's reset */
@import url('reset.css');

body
{
	background-color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.7em;
}

a
{
	color: navy;
	text-decoration: none;
	cursor: pointer;
}

a:hover
{
	color: blue;
}

a:active
{
	color: orange;
}

a:visited
{
	color: purple;
}

img
{
	border: 0;
}

p
{
	line-height: 1.5em;
	margin-bottom: 1em;
}

hr {height: 2px; background-color: #ccc;border: none;}

blockquote
{
	line-height: 1.5em;
	margin: 2em;
}

strong
{
	font-weight: bold;
}

/* --------- HEADINGS --------- */
h1
{
	font-size: 180%;
	font-weight: bold;
	margin-bottom: 0.4em;
}

h2
{
	font-size: 160%;
	font-weight: bold;
	margin-bottom: 0.4em;
}

h3
{
	font-size: 140%;
	font-weight: bold;
	margin-bottom: 0.4em;
}

h4
{
	font-size: 120%;
	font-weight: bold;
	margin-bottom: 0.4em;
}

h5
{
	font-size: 110%;
	font-weight: bold;
	margin-bottom: 0.4em;
}

h6
{
	font-size: 100%;
	font-weight: bold;
	margin-bottom: 0.4em;
}

/* --------- LISTS --------- */
ul, ol
{
	margin: 1em;
	line-height: 1.5em;
}

li
{
	list-style-position: inside;
}

ul li
{
}

ol li
{
	list-style-type: decimal;
}

/* --------- FORMS --------- */
.required-indicator
{
	background-image: url('../images/forms/required.png');
	background-position: top 5px;
	background-repeat: no-repeat;
	color: red;
	display: inline-block;
	height: 12px;
	width: 12px;
	margin-left: 0;
}

.required-indicator:after
{
	content: "*"; /* fallback in case images or css does not load */
}

fieldset
{
}

legend
{
	font-weight: bold;
	font-size: 120%;
}

label
{
	clear: both;
	display: block;
	font-weight: bold;
}

input[type="search"] {
-webkit-appearance: none;
padding-bottom: 5px;
}

input, textarea, select
{
	font-family: inherit;
	background-color: #fff;
	padding: 0.3em;
	vertical-align: middle;
	font-size: 100%;
	border: 1px solid #abadb3;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

input:focus, textarea:focus, select:focus, input[type="password"]:focus
{
	border-color: #aaa;
}

select
{
	min-width: 160px;
}

textarea
{
	font-family: inherit;
	min-width: 150px;
	min-height: 50px;
}

button
{
	cursor: pointer;
	vertical-align: middle;
}

/* ------------ CLEARFIX ------------ */
.clearfix:after
{
	clear: both;
	content: ".";
	display: block;
	height: 0;
	line-height: 0;
	visibility: hidden;
}

.clearfix
{
}

html[xmlns] .clearfix
{
	display: block;
}

* html .clearfix
{
	height: 1%;
}
