/* TL_Style.css---Lost Towns Project---Oct.27 2013 */

body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background-color: #42413C;
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ ELEMENT/TAG selectors ~~ */
ul, ol, dl {
	padding: 0;
	margin: 0;
	text-align: left;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	padding-right: 15px;
	padding-left: 15px;
	font-size: 12pt;
	color: #000;
	text-align: left;
}
a img { 
border: none;
}
a:link {
	color: #42413C;
	text-decoration: underline; 
	}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus {
	text-decoration: none;
	color: #666666;
}

/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 960px;
	background-color: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}



/* ~~ LAYOUT~~ */

.content {
	padding: 10px 0;
	color: #000;
}

#googleMap {
	margin:0;
	padding:0;
	height:100%;
	align:center;
}

/* ~~ Navigation Bar ~~ */

#navbar {
	margin: 0px;
	padding: 0px;
	font: Arial, Helvetica, sans-serif ;
	font-size: 90%;
	color: #FFF;
	background-color: #333 ;
	}
#nav li {
	margin: 0px;
	padding: 0px;
	float: left;
}
#navbar ul {
	margin: 0px;
	padding: 0px;
	text-align: center;
}
#navbar ul li {
	display: inline;
	margin-left: 20px;
	padding-left: 20px;
	list-style-type: none;
}
#navbar a:link {
	color: #FFF;
	text-decoration: none;
}
#navbar a:hover {
	color: #FF6;
	text-decoration: underline;
}
#navbar a:visited {
	color: #3CC;
	text-decoration: none;
}


/* ~~ FOOTER ~~ */
.footer {
	padding: 10px 0;
	background-color: #666;
	text-align: center;
	font-size: 9pt;
	height: 80px;
}

.footer img{
	margin: 30px;
	margin-bottom: 20px;
	margin-top: 20px;
	border: medium;
	border-color: #000;
	height: 50;
	align: center;
	text-align: left;
	position: relative;
}

.footertxt {
	font-size: 8pt;
	text-align: center;
	margin-right: 120px;
	padding-top: 15px;
	color: #FFF;

}
/* ~~ 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;
}
