/* COLORS

GOLD: #7C6A56
PURPLE: #4B0C74
*/
@charset "UTF-8";
body {
	font-family: Verdana, Geneva, sans-serif;
	background: #fff;
	margin: 0;
	padding: 0;
	color: #736656;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { 
	padding: 0;
	margin: 0;
}
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. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #736656;
	text-decoration: none;
}
a:visited {
	color: #736656;
	text-decoration: underline;
}
a:hover, a:active, a:focus { 
	text-decoration: underline;
}

/* CONTAINER DIVS FOR HOME PAGE & INTERIOR PAGES */
.containerHP {
	position: relative;
	width: 1024px;
	height: 768px;
	background: #FFF;
	margin: 0 auto;
	background-image: url(../images/structure/HomePageBackground.jpg);
	background-repeat: no-repeat;
}

.containerInterior {
	position: relative;
	width: 1024px;
	height: 768px;
	background: #FFF;
	margin: 0 auto;
	background-image:	url(../images/structure/InteriorPagesBackground.jpg);
	background-repeat: no-repeat;
}

/*  NAVIGATION DIV */
.navigation {
	position: absolute;
	top: 18px;
	height: 20px;
	left: 50px;
	width: 570px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 15px;
	text-align: center;
	color: #fff;
}



/* ~~ The footer ~~ */
.footer {
	position: absolute;
	width: 100%;
	height: 60px;
	top: 710px;
}

.footer h1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 15px;
	color: #7C6A56;
	font-weight: normal;
	margin-left: 325px;
	margin-top: -3px;
}

.footer h2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 8px;
	color: #000;
	font-weight: normal;
	margin-left: 325px;
	margin-top: 2px;
}

.footer p {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #000;
	text-align: center;
	margin-top: -8px;	
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* 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: right;
	margin-left: 8px;
}
.fltlft { /* 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: left;
	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;
}

.SonoranSites {
	position: absolute;
	top: 3px;
	left: 850px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #000;
	
}