﻿/**********************************************
** CORE.CSS - Core Styling of HTML Tags
** Notes:	try to use 'em' measurement for font sizes and margins 
**			this allows users to specify smaller/larger text. (http://www.alistapart.com/articles/howtosizetextincss)
*/

html
{
    margin: 0;
    padding: 0;
    border: 0;
}
body
{
	-moz-background-clip:border;
	-moz-background-inline-policy:continuous;
	-moz-background-origin:padding;
	background:#000000 none repeat scroll 0 0;
	color:#000000;
	font-family:Arial,Verdana,Tahoma,sans-serif;
	font-size: 0.8em;
	text-transform:lowercase !important;
	line-height:1.25em;
	text-align:center;
	border:0 none;
	margin:0;
	outline-color:-moz-use-text-color;
	outline-style:none;
	outline-width:0;
	padding:0;
	vertical-align:baseline;
}
form 
{

}
h1
{
	background:#000000 none repeat scroll 0 0;
	color:#FFFFFF;
	font-size:18px;
	margin:0 0 3px;
	padding:14px 24px 14px;
	text-align:left;
}
h2
{
	font-size:18px;
	margin:0 0 3px;
	padding:14px 24px 14px;

}
h3
{
	padding:10px 24px;
	text-align:left;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.8em;
	margin:0px;
}
h4
{
	background-color:#DADADA;
	color:Black;
	border-bottom:solid 2px black;
	width:100%;
	padding:10px 0 10px 24px;
	display:inline-block;
	margin:20px 0;
}
h5
{
	font-size:15px;
	font-weight:bold;
	margin:10px 0 10px 24px;
}
p
{
    color: #000;
}

a 
{
	color:#CC0000;
}

select, select option
{
	text-transform: lowercase;
}


/****************************
Adactus stub, DO NOT REMOVE
****************************/
.DebugHelper
{
	color:#000000;
	font-size:large;
}