body {
	background: #0f1a5a url(images/bg.jpg) repeat-x center top;
	margin: 0 auto 12px auto;
	padding: 0;
	color: #333;
}
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. */
	padding-right: 15px;
	padding-left: 15px; /* adding the 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, h2, h3, h4, h5, h6 {
  font-family: "minion-pro-1","minion-pro-2", bookman, georgia, "times new roman",serif;
  padding-bottom: 0;
  margin: 0 8px;
}
h1 {
  padding-top: 24px;
  font-size: 130%;
  color: #444;
  letter-spacing: .15em;
}
h2 {
	padding: 16px 0 0 0;
	margin: 0 24px;
	font-size: 120%;
	letter-spacing: .1em;
	border-bottom: 1px solid #555;
}
h3, h4, h5, h6 {
	padding-top: 12px;
	font-size: 110%;
	letter-spacing: .05em;
}
strong {
	font-style: normal;
	font-weight: 700;
}
a img {
	border: none;
}

.container {
	width: 960px;
	background: #999;
	margin: 0 auto; 
}
.header {
	width: 960px;
	height 90px;
	background: #333;
}
#nav {
	margin: 0 auto;
	text-align: center;
	padding: 6px 8px;
	background-color: #999;
	border-bottom: #0f1a5a 2px solid;
}
#nav ul {
	padding: 0px;
	margin: 6px auto 0 auto;
	font-size: 12px;
	font-weight: bold;
	font-family: verdana, helvetica, arial, sans-serif;
	}
#nav li {
	list-style: none;
	margin: 0;
	display: inline;
	padding: 0;
	}
#nav #thispage {
	color: #000;
	}
#nav li a {
	margin-right: 22px;
	padding: 3px 8px 3px 8px;
}
#nav li a:link {
	color: #0f1a5a;
	text-decoration: none;
	font-weight: bold;
	}
#nav li a:visited {
	color: #0f1a5a;
	text-decoration: none;
	font-weight: bold;
	}
#nav li a:hover, a:focus {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	}
#nav li a:active {
	color: #0f1a5a;
	text-decoration: none;
	font-weight: bold;
	}
.content {
	padding: 10px 0 0 0;
	font-family: "futura-pt-1","futura-pt-2", Verdana, Arial, Helvetica, sans-serif;
	line-height: 170%;
	background-color: #fff;
	-moz-box-shadow:0px 5px 15px #000000;
-webkit-box-shadow:0px 5px 15px #000000;
box-shadow:0px 5px 15px #000000;
filter: progid:DXImageTransform.Microsoft.Shadow(strength=5, direction=180, color='#000000');
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(strength=5, Direction=180, Color='#000000')";
/*Shadows look very different in IE (Only cardinal directions supported)*/
/*INNER ELEMENTS MUST NOT BREAK THIS ELEMENTS BOUNDARIES*/
/*Element should have a background-color*/
/*All filters must be placed together*/
/*IE DOES NOT SUPPORT BLUR PROPERTY OF SHADOWS*/
}
.content p {
	margin: 1em 24px;
}
.content ul li {
	margin: 1em 96px;
	list-style: url(images/bullet.gif);
}
.content a:link {
	color: #0f1a5a;
	text-decoration: none;
	border-bottom: 1px dotted #0f1a5a;
	font-style: normal;
	font-weight: 700;
}
.content a:visited {
	color: #0f1a5a;
	text-decoration: none;
	border-bottom: 1px dotted #0f1a5a;
	font-style: normal;
	font-weight: 700;
}
.content a:hover,  a:focus { 
	color: blue;
	text-decoration: none;
	border-bottom: 1px solid blue;
	font-style: normal;
	font-weight: 700;
}
.content a:active { 
	color: #0f1a5a;
	text-decoration: none;
	border-bottom: 1px dotted #0f1a5a;
	font-style: normal;
	font-weight: 700;
}
.content #listings p {
	margin-top: 2em;
	line-height: 120%;
}
.footer {
	clear: both;
	text-align: center;
	padding: 0;
	margin: 0 auto;
	background: #333 url(images/bg_footer.jpg);
}
.footer p {
	padding: 12px 2px;
	color: white;
	font-weight: normal;
	font-size: 90%;
	line-height: 130%;
}
.footer a:link {
	color: #ccf;
	text-decoration: none;
	border-bottom: 1px dotted #ccf;
	font-weight: bold;
}
.footer a:visited {
	color: #ccf;
	text-decoration: none;
	border-bottom: 1px dotted #ccf;
	font-weight: bold;
}
.footer a:hover,  a:focus { 
	color: white;
	text-decoration: none;
	border-bottom: 1px solid white;
	font-weight: bold;
}
.footer a:active { 
	color: #ccf;
	text-decoration: none;
	border-bottom: 1px dotted #ccf;
	font-weight: bold;
}
.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 {
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
