@charset "utf-8";
body  {
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: #00004F;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
}
#container {
	width: 780px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: center; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#header {
	float: none;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 13px;
	padding-left: 50px;
	background-color: #FFFFFF;
} 
#container #header img {
	padding-bottom: 0px;
}
#header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 20px;
	padding-left: 0;
}

/* Tips for mainContent:
1. the space between the mainContent and sidebars is created with the left and right margins on the mainContent div.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 300px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
#mainContent {
	font-size: small;
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 10px;
	width: 740px;
}
#Nav {
	background-color: #00006A;
	text-align: center;
	clear: none;
	padding: 5px;
}

#Nav ul {
	margin: 0px;
	padding: 0px;
}
#Nav li {
	list-style-type: none;
	display: inline;
	margin-right: 2%;
	margin-left: 1%;
	color: #FFFFFF;
	font-size: small;
}
#Nav a {
	color: #FFFFFF;
	background-color: #00004F;
	text-decoration: none;
	font-weight: bold;
	font-size: 90%;
}

#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#Nav a:hover {
	font-weight: bold;
	color: #FF0000;
	text-decoration: none;
	font-size: 90%;
}
#container #mainContent {
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
}

#container #footer {
	background-color: #E3CCAC;
}
#container #footer #FooterPlaces {
	font-size: xx-small;
	font-style: italic;
	padding: 5px;
}
#container #footer #FooterAddress {
	font-size: medium;
	text-align: center;
	font-weight: 900;
}
#container #footer #FooterLinks {
	font-size: x-small;
}
#container #HeaderImage {
	float: left;
}
#container #mainContent #BankruptcyHome object {
	text-align: left;
	float: none;
}
