
/* Code for making a full height layout */
* {
	padding: 0;
	margin: 0;
}
html, body {
	height: 100%;
	padding:0;
	margin:0;
}
/* fixes IE6 */
* html #container {
	height: 100%;
}
#container {
	min-height: 100%;
}
/* end full height layout code */

body {
	color:#3b3b3b;
	font-family:Arial, Helvetica, sans-serif;
	font-size:small;
	font-weight:bold;
}

div, table, tr, th, td, form, img {
	border: 0px;
	margin: 0px;
	padding: 0px;
}

h1, h2, h3, h4, h5, h6, p {
	position: relative; /* fixes issue in IE6 when headers some times disappear */
}

/* header styles */

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}
h1 {
	font-size: 150%;
}
h2 {
	font-size: 140%;
}
h3 {
	font-size: 130%;
}
h4 {
	font-size: 120%;
}
h5 {
	font-size: 110%;
}
h6 {
	font-size: 100%;
}


/* a styles */

a {
	text-decoration: none;
	color:#EF4231;
}
a:hover{
	text-decoration: underline;
}
a:active{
	color:#A5A5A5;
}
a:focus {
	font-weight: bold;
}
a:visited {
	color:#DB2311;
}

/* p styles */

p {
	margin: 10px 0 15px 0;
	line-height:1.4em;
}

/* hr styles */

hr {
	margin: 5px 0 5px 0;
}

/* list styles */

ul, ol {
	margin: 0px;
	padding: 10px;
}
li {
	margin: 5px;
}


