/*
	--------------------------------------------------
	STRUCTURE STYLES
	--------------------------------------------------
	Client:	Mohawk College Enterprise
	Author:	Darren Gould
	Date:	July, 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">
 */
 
* {
	margin: 0;
	padding: 0;
	letter-spacing: 0.025em;
}


/* =========================================================================== 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; line-height: 1.4em; }

li { list-style-type: none; }


/* =========================================================================== 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-color: #E3E0CF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 62.5%;
	color: #2B2B2B;
}


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


p, li, td {
	font-size: 1.2em;
}

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

h1, h2, h3, h4, h5 { 
	padding: 0 0 10px 0;
	font-family: Geneva, Verdana, sans-serif;
	font-weight: bold;
	color: #8E0D01;
	text-transform: uppercase;
}

h1 { font-size: 1.7em; }
h2 { font-size: 1.5em; }
h3 { font-size: 1.3em; }
h4 { font-size: 1.2em; }
h5 { font-size: 1.1em; }
h6 { font-size: 1.0em; }


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

a { color: #8E0D01; text-decoration: underline; }
a:link, a:visited { text-decoration: underline; }
a:hover, a:active { text-decoration: underline; color: #000; }


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

a img, :link img, :visited img, :hover img, :active 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: left; }
#baseclear { 
	clear: left;
	padding-bottom: 59px;
	*padding-bottom: 0px;
}

/*

	Ensuring content-related lists display
	properly in content areas

*/
#contentLeft ul, #printArea ul
{
	margin: 15px 0px 15px 30px;
}

#contentLeft ol, #printArea ol
{
	margin: 15px 0px 15px 30px;
}

#contentLeft ul li, #printArea ul li
{
	list-style-type: disc;
}

#contentLeft ul ul li, #printArea ul ul li{
	list-style-type: circle;
}

#contentLeft ul li ul li, #printArea ul li ul li{
	list-style-type: circle;
}

#contentLeft ol li, #printArea ol li{
	list-style-type: decimal;
}

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