@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

/*Page*/
.gridContainer {
	width: 100%;
	position: relative;
	margin: auto;
	min-height: 800px;
	height: 100%;
	display: block;
}

#head, #content, .section, #foot {
	width: 100%;
	text-align: center;
	vertical-align: middle;
	margin: auto;
	display: block;
	padding: 3%;
}

/*Header*/
#head {
	position: relative;
	padding: 0;
}

/*Navigation*/
#nav {
	vertical-align: middle;
	background-image: url(../_img/gBackground.png);
	background-repeat: repeat;
	display: block;
	margin: auto;
	text-align: center;
	padding: 1%;
}
#logo {
	max-width: 175px;
	display: inline-block;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
}
#tab {
	display: inline-block;
	padding: 10px;
}

.navT, .navL, .sep {
	padding: 5px;
}

.navT {
	font-size: 26px;
	display: block;
}
.navL {
	font-size: 20px;
	display: inline-block;
}
.sep {
	font-size: 20px;
	font-weight: bold;
	display: inline-block;
	vertical-align: top;
}

/*Content*/
#content {
	width: 60%;
	background-image: url(../_img/gBackground.png);
	background-repeat: repeat;
	margin-bottom: 10%;
	padding: 0px;
	max-width: 1200px;
}
.section {
	text-align: left;
	width: 80%;
	max-width: 1200px;
	position: relative;
}
.section h1 {
	background-image: url(../_img/tabBG.png);
	background-repeat: repeat-y;
	background-position: center center;
	background-size: contain;
	color: #FFF;
	text-align: center;
	font-size: 26px;
	display: block;
	padding: 2%;
	top: 0px;
	position: absolute;
	left: 0px;
	right: 0px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
}
.section p {
	display: block;
	padding-top: 8%;
	padding-bottom: 8%;
}

/*Foot*/
#foot {
	font-size: 9px;
	font-style: italic;
	color: #999;
	text-align: center;
	background-image: url(../_img/gBackground.png);
	background-repeat: repeat;
	width: 100%;
	position: absolute;
	bottom: 0;
	padding: 1%;
	margin: 0px;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
}