@charset "utf-8";
/* CSS Document */

/* #######################  TEMPLATE.CSS ############################ */

@import url(reset.css);
@import url(main_layout.css);
@import url(specific_layout.css);

/* #######################  BODY/HTML  ############################ */

	html {
		height:100%
	} 

	body{
		margin:0px;
		height:100%;
		/* Remove is using google fonts */
		font-family:Arial, Helvetica, sans-serif;  /*Jeffs simple cms will overide this */
		/*font-family: Verdana, Geneva, sans-serif;*/
		font-size: 100%;
		color: #666;
	}
	
/* ######################## PARAGRAPH ############################# */

	img {
		border: 0 none;
	}

	/* Clears Divs */
	.clear {
		clear: both;
	}

	p {
	font-size:0.8em;
	font-weight: normal;
	color: #666;
	}

/* ########################  FORMS  ############################# */

	input {
		
	}
	
/* ########################  HEADERS  ############################# */

	h1 {
		font-size:1.2em;
		font-weight: lighter;
		color: #999;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 10px;
		margin-left: 0px;
	}

	h2 {
		font-size:1em;
		font-weight: normal;
		color: #999;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 10px;
		margin-left: 0px;
	}

	h3 {
		font-size:1.5em;
		font-weight: 900;
		color: #000;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 10px;
		margin-left: 0px;
	}
	
	h4 {
		font-size:1.4em;
		font-weight: 900;
		color: #000;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 10px;
		margin-left: 0px;
	}

	h5 {
		font-size:1.3em;
		font-weight: 900;
		color: #000;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 10px;
		margin-left: 0px;
	}

	h6 {
		font-size:1.2em;
		font-weight: 900;
		color: #F0F;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 10px;
		margin-left: 0px;
	}
	
/* ########################## LINKS ############################### */

	/* BASIC LINKS */
	/* Order is important */
	/* Keep link and visted same color */
	/* Keep hover and active same color */

	a:link {
		color: #666;
		text-decoration: none;
	}

	a:visited {
		text-decoration: none;
		color: #666; 
	}

	a:hover {
		color: #000;
		text-decoration: none;
	}

	a:active {
		color: #000;
		text-decoration: none;
	}

