@charset "UTF-8";
/* -------------------- Resets --------------------- */
body, address, blockquote, dl, ol, ul, li, form, fieldset, h1, h2, h3, h4, h5, h6, p, pre {
	margin: 0;
	padding: 0;
}
img {
	border: 0; /* kills Gecko bug when img's are placed inside links */
/*	vertical-align: bottom; *//* set vertical align to bottom for IE */ 
}
/* --------------- Document Defaults -------------- */
html {
	height: 100%; 
	overflow: inherit; /* triggers 100% height in Opera 9.5 */
}
/* ------------------ Typography ------------------- */
h1, h2, h3, h4, h5, h6, p, pre, blockquote, address {
	margin:0 0 1em;
}
p, ul, ol {
	font-size: 1.2em;
}
ul {
	margin:0 0 1em 25px;
	list-style:none;
}
ul ul { /* fixes nested lists */
	font-size: 100%;
	font-weight: normal;
}
h1 {font-size:2.2em;}
h2 {font-size:2em;}
h3 {font-size:1.8em;}
h4 {font-size:1.6em;}
h5 {font-size:1.4em;}
h6 {font-size:1.2em;}
/* -------------------- Forms ---------------------- */
fieldset, table {
	border: none;
}
form :focus {
	outline: 0; /* removes Safari's blue border */
}  
input, label {
	vertical-align: middle;
}
label {
	cursor: pointer;
}
input, select, textarea {
	font-size: 1.2em;
	font-family: Tahoma, Arial, Helvetica, 'MS Sans Serif', sans-serif;
}
input, textarea {
	padding: .2em;
}
textarea { /* removes scrollbar from IE when none is needed */
	overflow: auto;
}	
/* ------------------- Links ---------------------- */
a {
	text-decoration: none;
	outline: 0; /* removes dotted border in FX */
}
a:visited {
	text-decoration: none;
}
a:active, a:focus, a:hover {
	visibility: visible; /* kills IE6 a:hover bug */
	text-decoration: underline;
}
