﻿/*--------------------------------------------------
[Master Stylesheet]
	Project:		Test
	Version:		1.1
	Author:			Kevin O. Williams
	Date Created:	May 16, 2008
	Last Updated:	May 25, 2008

	Note:	This is the main development style sheet for
			web portal sites. Prior to publishing, remove
			comments and other formatting to reduce
			file size.

----------------------------------------------------*/

/*--------------------------------------------------
[Table of Contents]
	1. Resets
	2. Reference
	3. Body
	4. Wrapper	/ #wrapper
	5. Header	/ #header
	6. Content	/ #content
	7. Footer	/ #footer
	8. Typography
	9. Other
----------------------------------------------------*/

/* -------------------------------------------------
[1. Resets]
----------------------------------------------------*/
	*
		{
			padding: 0;
			margin: 0;
		}
	html, body
		{
			height: 100%;
		}
	#wrapper
		{
			min-height: 100%;
			height: auto !important;
			height: 100%;
			margin: 0 auto -80px; /* the bottom margin is the negative value of the footer's height */
		}

	* html #wrapper
		{
			height: 100%;
		}
		
	* html #content
		{
			height: 100%;
		}

/*--------------------------------------------------
[2. Reference]

	[Colors]
		
----------------------------------------------------*/

/*--------------------------------------------------
	[3. Body]
----------------------------------------------------*/
	body
		{
			background: #ccc;
			text-align: center;
		}
	
/*--------------------------------------------------
	[4. Wrapper]
----------------------------------------------------*/
	#wrapper
		{
			background: #ddd;
			border-left: solid 3px #222;
			border-right: solid 3px #222;
			margin: 0 auto;
			text-align: left;
			width: 760px;
		}

/*--------------------------------------------------
	[5. Header]
----------------------------------------------------*/
	#header
		{
			background: #fff;
			height: 140px;
			width: 760px;
		}

/*--------------------------------------------------
	[6. Content]
----------------------------------------------------*/
	#content
		{
			min-height: 100%;
			
			height: auto !important;
			height: 100%;
			width: 760px;
		}
	

/*--------------------------------------------------
	[7. Footer]
----------------------------------------------------*/
	.footer, .push
		{
			height: 75px; /* .push must be the same height as footer */
		}
	.push
		{
				clear: both;	/* Added to fix reflow issue with 3 columns */
		}	
	.footer
		{
			background: #bbb;
				clear: both;	/* Added to fix reflow issue with 3 columns */
			width: 760px;
			margin: 0 auto;	
			margin-top: -80px;
		}

/*--------------------------------------------------
	[8.Typography]
----------------------------------------------------*/

	
	
/*--------------------------------------------------
	[9. Other]
----------------------------------------------------*/
	/* Transparent PNG Fix for IE 6 */
	
	/*	For all element, not recommended
 
	* {behavior: url(iepngfix.htc)}

	*/
	
	/*	For specified element, recommended
 
	h1, h2, h3, a, img {behavior: url(iepngfix.htc)}

	*/
	
	/* PDF and Email Styles */
	.pdf
		{
			background: url(i/pdf.png) no-repeat left center;
			padding-left: 20px;
		}
	.email
		{
			background: url(i/email.png) no-repeat right center;
			padding-right: 18px;
		}
	a.email:hover
		{
			background: url(i/email-hover.png) no-repeat right center;
			color: #900;
		}
