@charset "utf-8";
body {
	font: 100%/1.0 Verdana, Arial, Helvetica, sans-serif;
	background-color: #fff;

}

/* ~~ Element/tag selectors ~~ */
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */

    padding: 1px;/* adding padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

h1 {font: 140%/1.4	Verdana, Arial, Helvetica, sans-serif;} 
h2 {font: 120%/1.2	Verdana, Arial, Helvetica, sans-serif;} 
h3 {font: 100%/1.0	Verdana, Arial, Helvetica, sans-serif;} 
h4 {font: 80%/0.8	Verdana, Arial, Helvetica, sans-serif;} 
h5 {font: 60%/0.6	Verdana, Arial, Helvetica, sans-serif;} 
h6 {font: 40%/0.4	Verdana, Arial, Helvetica, sans-serif;} 

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect.infoText ~~ */
a:link {
	color:#414958;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #4E5869;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/*this container surrounds all other content*/
.container {
	width: 780px;

	margin: 1em auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
	padding: 3px;  /* internal spacing */
	background-position: center;
	
	/**** border color and box-shadow to be matched
to icon (.header img) color ***/
	border: 2px solid #8d2814;
	-webkit-box-shadow: 0 0 16px  #8d2814;
	-moz-box-shadow: 0 0 16px  #8d2814;
	-o-box-shadow: 0 0 16px  #8d2814;
	-ms-box-shadow: 0 0 16px  #8d2814;
	box-shadow: 0 0 16px #8d2814;
	

}
/*********SECTIONING***********/
/*all section elements will be boxed in with some space inside and outside 
*/
section {
/**** border color to be matched icon color ***/
	border: 2px solid #8d2814;

	float: left; /* just float all sections to left*/
	padding: 3px; /* provide a bit of spacing inside*/
	margin: 5px;  /* provide some spacing outside */
    font-size: 0.8em;
	background-color: #fff;

	/* round the corners */
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;	
	border-radius: 10px; 
	
	
}

/* ~~the header is not given a width.infoText It will extend the full width of your layout.infoText It contains an image placeholder that should be replaced with your own linked logo~~ */
.header {
	padding: 5px;
	background-color: #bbb;
	border: thin solid #000;
	height:72px;
}
.header img{
	margin-right: 15px;
	float: left;
	height: 72px;
	width: 96px;
	-webkit-box-shadow: 0 0 16px  #000;
	-moz-box-shadow: 0 0 16px  #000;
	-o-box-shadow: 0 0 16px  #000;
	-ms-box-shadow: 0 0 16px  #000;
	box-shadow: 0 0 16px #000	
}

.header h1 {
	font-family: Verdana,Arial,Helvetica,sans-serif;
}



ul .nav {
	margin-left: 0px;
	padding-left: 0px;
	list-style: none;
	overflow: hidden;
}

.nav li { display: inline;}

.nav a {
	display: inline-block;
	padding: 5px;

	/* experimental
	background-image: -webkit-linear-gradient(#aaa 20%, #fff 50%, #aaa 80%);
	background-image: -moz-linear-gradient(#aaa 20%, #fff 50%, #aaa 80%);
	background-image: -o-linear-gradient(#aaa 20%, #fff 50%, #aaa 80%);
	background-image: linear-gradient(#aaa 20%, #fff 50%, #aaa 80%);	
	*/
}

/* ~~ This is the layout information.infoText ~~ 

1) Padding is only placed on the top and/or bottom of the div.infoText The elements within this div have padding on their sides.infoText This saves you from any "box model math".infoText Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width.infoText You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.infoText
*/
.content {
	padding: 5px;
	background-color: #eee;
	border: thin solid #000;
}



/* ~~ The footer ~~ */
.footer {
	font: 80%/0.8	Verdana, Arial, Helvetica, sans-serif;
    padding: 5px;
	background-color: #aaa;
	border: thin solid #000;
}

/* ~~ miscellaneous float/clear classes ~~ */
.footer .footerContact {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-left: 8px;
}

.footer .footerDate { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-right: 8px;
}

.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
