/* Reset all styles ********************** */
* { margin: 0; padding: 0; } 

hr {
	display: none;
}

body {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background: #fff2c4;
}

p, h1, h2, h3, li {
	font-family: "Helvetica Neue", Arial, sans-serif;
	color: #333;
}

p, li {
	font-size: 14px;
	line-height: 20px;
	margin: 0px 0px 11px 0px;
}

a:link, a:visited, .hilite {
	color: #0b9ec0;
	text-decoration: none;
}

a:hover {
	color: #00cfff;
	text-decoration: none;
}

h1 {
	font-size: 24px;
	font-weight: bold;
	margin: 0px 0px 10px 0px;
}

h2 {
	font-size: 18px;
	font-weight: bold;
	margin: 20px 0px 5px 0px;
}

div#page {
	position: relative;
	margin: 20px auto;
	padding: 0px 0px 0px 0px;
	display: block;
	width: 980px;
	background: #fff url(images/middle.png) repeat-y top left;
}

div#header {
	display: block;
	float: left;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	width: 980px;
	height: 321px;
	background: #fff url(images/header.png) no-repeat top left;
}

div#bottom {
	clear: both;
	display: block;
	float: left;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	width: 980px;
	height: 100px;
	background: #fff url(images/footer.png) no-repeat top left;
}


div.article {
	clear: both;
	float: left;
	display: block;
	padding: 0px 190px 0px 190px;
	margin: 0px 0px 0px 0px;
	width: 600px;
}

img.alignRight {
	float: right;
	margin: 0px 0px 10px 15px;
}

div#footer {
	clear: both;
	float: left;
	padding: 20px 0px 0px 0px;
	width: 980px;
}

div#footer p {
	font-size: 11px;
	width: 980px;
	text-align: center;
	font-weight: normal;
}

td {
	padding: 10px 10px 10px 10px;
	border: 0;
}

tr {
	border: 0;
}

/* The main panels *********************************************************/
ul {
	margin: 5px 0px 15px 0px;
}

li {
	margin: 5px 10px 5px 40px;
	padding: 0;
	list-style: disc;
}

li li {
	list-style: disc;
}

/*
P.I.E. FLOAT CLEARING
See http://www.positioniseverything.net/easyclearing.html 

DYSKE:
Use this on the container block, not in the content block.
You can apply multiple classes to an element by separating them with a space.
E.g. class="clearfix anotherClass"
clearfix must come first.
*/

.clearfix:after {
	content: ".";
	clear: both;
	height: 0;
	visibility: hidden;
	display: block;
}

.clearfix {
	display: inline-block; /* Fixes IE/Mac */
}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */		

