/*
	--------------------------------------------------
	BASE STYLES
	--------------------------------------------------
	Client:	
	Author:	
	Date:	Month, Year
	
*/

/* ------------------------ DO NOT ALTER THIS FILE ---------------------------- 
This is the standard eSolutions website style sheet.
Create a copy of the three style sheets and place them in your new website directory so that
CSS are commonly kept in the /styles/ directory of the /root or /language for the website. 
   ------------------------ DO NOT ALTER THIS FILE ---------------------------- */

/* IMPORTING OTHER STANDARD STYLE SHEETS */
/* rather than importing styles we prefer to just link the styles on the pages since the
top part of each page is normally an include, so on the page under <title> add the following code ...

<link href="/styles/base.css" rel="stylesheet" type="text/css" media="screen">
<link href="/styles/structure.css" rel="stylesheet" type="text/css" media="screen">
<link href="/styles/content.css" rel="stylesheet" type="text/css" media="screen">
<link href="/styles/print.css" rel="stylesheet" type="text/css" media="print">
 */
 
 
/* =============================================================================================== REMOVE PADDING AND MARGIN VALUES */

html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, li, dd, dt, img, 
table, blockquote, q, caption, a, form, input, textarea, fieldset, pre 
{
	margin: 0;
	padding: 0;
}

span.required
{
	color: Red;
	padding: 0px 5px 0px 5px;
}


/* =============================================================================================== REMOVE PADDING AND MARGIN VALUES FROM TABLES */

/* this is commented out because it tends to wreak havock with the .NET stuff we do
thead,tbody,tfoot,th,tr,td {margin:0;padding:0;} */


/* ===================================================================================== BODY ATTRIBUTES */

body 
{
	background:#000 url(/images/structure/home-background.jpg) top center no-repeat;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 62.5%;
	color: #231F20;
	margin:0px;
	padding:0px;
}


/* ===================================================================================== SET BASE FONT ATTRIBUTES */

blockquote
{
}

p, blockquote, li, td 
{
	line-height: 1.5em;
	font-size: 1.3em;	
}

p, blockquote 
{
	padding-bottom: 1.5em;
}

blockquote 
{
	padding-left: 20px;
	padding-right: 20px;
}
blockquote p{
	font-size:1em;	
}

h1, h2, h3, h4, h5 
{ 
	padding: 10px 0 10px 0;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-transform: none;
}

h1 { font-size: 2.8em; padding: 0px 0px 10px 0; text-transform:uppercase; color:#123884; }
h2 { font-size: 1.5em; text-transform:uppercase; color:#123884; font-weight:bold; }
h3 { font-size: 1.3em; font-weight:bold; }
h4 { font-size: 1.2em; }
h5 { font-size: 1.1em; }
h6 { font-size: 1.0em; }

ul, ol 
{
	margin-left: 40px;
	padding-bottom: 1.5em;
}

li 
{
	padding-bottom: 0;
}


/* ===================================================================================== STANDARDIZE LINK STYLES ACROSS SITE */

a { color: #123884; text-decoration: none; font-weight: bold; }
a:link, a:visited { text-decoration: underline; }
a:hover, a:active { text-decoration: none; }


/* ===================================================================================== KILL BORDER ON IMG LINKS */

img 
{ 
	border: none;
}


/* ===================================================================================== MISCELLANEOUS STYLES TO ENSURE STANDARD TYPOGRAPHY */

em 
{
	font-style: italic;
	font-weight: normal;
}

strong 
{
	font-weight: bold;
}

acronym 
{
	background: transparent;
	cursor: help;
	font-style: normal;
}

a acronym 
{
	border: none;
	cursor: pointer;
}


/* ===================================================================================== STANDARD MULTIPLE COLUMN CLEARING TRICK */

/* make sure your columns divs are inside a holding div that is set to float:left; */

.clear { clear: both; }

fieldset { border: 0px; }



/* ----- END OF TEMPLATE ----- */