/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	NCS Main Style Sheet
	White Rabbit Web Design
	Author: Mark Finney
	Date: 6 Feb 2007
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

CONTENTS:

* Page Set Up
* Header
* Content
* Map
* Footer
* Extras

Credit to Michael Barrish for his article "The Best Way to Organize A Stylesheet"

http://lumino.us/weblog/the_best_way_to_organize_a_stylesheet

This article has really helped me think about structure. I reccomend reading it, particularly if you are new to CSS.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	Page Set Up	
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


html, body {
	margin: 0;
	padding: 0;
	text-align: center;
}


body {
	background-color: #fff;
	color: #000;
	font-family: Arial, Verdana, sans-serif;
	font-size: 76%;
	margin: 0 auto;
	width: 760px;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0px;	
	padding: 0px;
}

h1 {
	font-size: 3em;
	font-weight: normal;
}

h2 {
	font-size: 1.65em;
	font-weight: normal;
	margin: 15px 0 8px 0;
}

img {
	border: none;
}


#wrapper {
	font-size: 1em;
}


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	Header
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#header {
	margin-top: 30px;
}

#header h1, #header p {
	display:none
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	Content
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#titleBar {
	margin:0;
}

#contentWrapperFixed {
	height: 400px;
	margin-top: 10px;
	position: relative;
	width: 760px;
}


#contentWrapper {
	margin-top: 10px;
	position: relative;
	width: 760px;

}

#content {
	line-height: 1.8em;
	padding: 0 50px 55px;
	text-align: left;
}

#content ul {
	margin-left: 40px;
	text-align: left;
}

#content p {
	margin: 15px 0 30px 0;
}

#regionContent {
	padding: 0 30px 0 30px;
	text-align: left;
}

#regionContent p {
	line-height: 1.8em;
	padding: 0 30px;
	text-align: center;
}

#regionContent img {
	margin: 0 30px 35px 30px;
}

#navContainer {
	padding-left: 42px;
	position: absolute;
	top: 118px;
	left: 0;
	width: 320px;
}

#navContainer a {
	text-decoration: none;
}

.mainLinks {
	float: left;
	padding: 20px 16px 0px 16px;
}


.logo {
	margin: 0 30px 0 30px;
	text-align: left;
}

img.logo {
	margin: 0 100px 0 100px;
	text-align: left;
}

.back {
	text-align: right;
	padding: 0 45px 0 0;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	Map
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#mapContainer {
	position: absolute;
	right: 0;	
	top: 0;
	text-align: right;
	width: 400px;
}



/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	Footer
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#footer {
	margin-top: 5px;
}

#footer p {
	margin: 0;
	color: #c8c8c8;
	font-size: .8em;
}#footer p a,#footer p a:hover,#footer p a:visited,#footer p a:link {color: #c8c8c8;}

#footer hr {
	background-color: #304497;
	height: 3px;
	width: 670px;
}


#footer hr.faq {
	background-color: #51adb8;
	height: 3px;
	width: 670px;
}

div#navigation ul {
	font-size: 0.9em;
	margin: 0;
	padding: 2px 0 10px 0;
	list-style-type: none;
}

div#navigation ul li {
	border-right: 1px solid #2e4895;
	display: inline;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

div#navigation ul li a,
div#navigation ul li a:link,
div#navigation ul li a:focus,
div#navigation ul li a:visited,
div#navigation ul li a:hover {
	color: #2e4895;
	text-decoration: none;
	padding: 0 10px;
	margin: 0;
}

div#navigation ul li.last {
border:none;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	Extras
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


.clearfix:after {
	content: "."; 
	display: block; 
	height: 0; 
   	clear: both; 
	visibility: hidden;
}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
/* End hide from IE-mac */
