/*
	--------------------------------------------------
	BASE STYLES
	--------------------------------------------------
	Client:	CreativeDSG
	Author:	Darren Gould
	Date:	November, 2009
	
*/

/* ------------------------ 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;
}


/* =============================================================================================== 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: #E1E1E1 url(../images/structure/background_uber.jpg) center top no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.5em;
	letter-spacing: 0.02em;
	color: #666;
}


/* ===================================================================================== SET BASE FONT ATTRIBUTES */

p, blockquote, li, td 
{
	font-size: 14px;
}

p, blockquote 
{
	padding-bottom: 1.5em;
}

blockquote 
{
	padding-left: 20px;
	padding-right: 20px;
}

h1 {
	margin: 0;
	padding: 0px 0px 45px 0;
	color: #333;
	font: bold 36px/42px Arial, Helvetica, sans-serif;
}

h1 .highlight { color: #D11E1E; }

h3 {
	margin: 0;
	padding: 0 0 10px 0;
	color: #FFF;
	font: bold 16px Arial, Helvetica, sans-serif;
}

ul, ol 
{
	margin-left: 40px;
	padding-bottom: 1.5em;
}

li 
{
	padding-bottom: .75em;
}


/* ===================================================================================== STANDARDIZE LINK STYLES ACROSS SITE */

a, a:link, a:visited { color: #D11E1E; text-decoration: none; border-bottom: 1px dotted #D11E1E; }
a:hover, a:active { color: #A91818; text-decoration: none; border-bottom: 1px dotted #A91818; }
a img, a:link img, a:visited img { border: none; }


/* ===================================================================================== KILL BORDER ON IMG LINKS */

a img, 
:link img, 
:visited img, 
:hover img, 
:active img 
{ 
	border: none;
}

a { outline: none; }
:focus { -moz-outline-style: 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;
}

.hidden { display:none; }


/* ===================================================================================== STANDARD MULTIPLE COLUMN CLEARING TRICK */

/* make sure your columns divs are inside a holding div that is set to float:left; */

.clear { clear: left; }




/* ----- END OF TEMPLATE ----- */