body {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #000;
	background-color: #abc;
}

#header {
	width: 960px;
	height: 75px;     /* header image width (66) + margin top (9) */
	margin: 0 auto;
	padding: 0;
	background-color: #bde;
	font-size: 11px;
}

#header img {
	border: 0;
	margin-top: 9px;
	float: left;
}

#header_company {
	padding-top: 20px;
	padding-left: 60px;
	float: left;
	font-size: 14px;
	font-weight: bold;
}

#header_contact_info {
	padding: 5px 10px 0 0;
	margin: 0;
	float: right;
	text-align: right;
}

#header_contact_info ul {
	list-style: none;
	padding-top: 8px;
	margin: 0;
}

/* So far header_menu only contains link "Edit this page" */
#header_menu {
	padding-top: 5px;
	padding-left: 10px;
	/* wide enough so it doesn't fit betwen div "header_company" and "contact_info" */
	width: 650px;
	float: left;
}

#header_status {
	padding-top: 5px;
	padding-right: 10px;
	float: right;
	clear: right;
	font-weight: bold;
}


/*
** We need a table to contain the "navbar" to the right and the "content"
** to the left, because their content is variable, and we want them to
** automatically resize and always have the same height.
*/
table#navbar_and_content {
	width: 960px;
	margin: 0 auto;
	/* Needed because cellspacing = 1 by default */
/*	border-collapse: collapse; */
}

td#navbar {
	width: 150px;
	/* default padding of a td element is 1 */
	padding: 0;
	vertical-align: top;
	background-color: #d3d3d3;
}

td#navbar ul {
	/* default padding and margin of ul elements are not 0 */
	margin: 0;
	padding: 0;
	list-style: none;
}
td#navbar a {
	display: block;
	padding: 5px 0 5px 5px;
	color: #118;
	font-size: 13px;;
	font-weight: bold;
	text-decoration: none;
	border-bottom: 1px solid #f2f2f2;
}
td#navbar a:hover {
	background-color: #f2f2f2;
}
td#navbar #current_tab a {
	background-color: #aaa;
}
td#navbar #current_tab a:hover {
	cursor: default;
}

td#content {
	padding: 0 20px;
	vertical-align: top;
	color: black;
	background-color: white;
}

td#content #flash_msg {
	color: #900;
	font-weight: bold;
	font-size: 18px;
	margin: 5px 0 0 0;
}

#footer {
	width: 960px;
	margin: 0 auto;
	padding: 5px 0;
	color: white;
	background-color: #689;
	text-align: center;
	font-size: 11px;
}

#footer #footer_disclaimer {
	text-align: left;
}
#footer p {
	margin: 8px 15px;
	font-size: 11px;
}
#footer a {
	color: white;
}
#footer a:hover {
	text-decoration: none;
}

/* FROM THIS POINT NOT CLEANED UP
*/
h1 {
	font: bold 22px "Times New Roman", serif;
	text-align: center;
	margin: 8px 0 0 0;
}

h2 {
	font-family: "Times New Roman", serif;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}

.real_estate_begin_p {
	font: italic bold 14px Arial, Helvetica, sans-serif;
}

p {
	font-size: 14px;
}

/* These might have to go to the page itself as inline-styling */
#litigation_links {
	text-align: center;
}
#litigation_links ul {
	list-style-type: none;
}

ul.padded_items li {
	padding-top: 5px;
	padding-bottom: 5px;
}

tr.message_unread {
	font-weight: bold;
}



/*

/* RailsSpace BEGIN */

/* Blog Styles */
.post {
	margin-top: 0.5em;
	margin-bottom: 2em;
}
.post_title {
	font-weight: bold;
	float: left;
}
.post_actions {
	float: right;
}
.post_body {
	padding: 1em 1em 0 1em;
}
.post_comments {
	font-size: 85%;
	padding-bottom: 2px;
}
.post_dates {
	text-align: left;
	font-size: 70%;
	color: #788;
}

/* Hack to get IE to display fieldset/legend correctly */
/*
html fieldset {
  position: relative;
}
html legend {
  position:absolute;
  top: -1em;
  left: .5em;
}
html fieldset {
  position: relative;
  margin-top:1em;
  padding-top:2em;
  padding-bottom: 2em;
}
*/

/* Form Styles */

.schema2 fieldset {
  background-color: #ddd;
}
.schema2 legend {
  color: white;
  background-color: maroon;
  padding: .4em 1em;
}
.schema2 label {
  width: 5em;
  float: left;
  text-align: right;
  margin-right: 0.2em;
  display: block;
}
.schema2 h2 {
	text-align: left;
}
.schema2 a {
	color: blue;
	text-decoration: none;
}
.schema2 a:hover {
	color: green;
}

/* Doesn't seem useful */
!.form_row {
/*  white-space: nowrap; */
/*  padding-bottom: .5em; */
}
.schema2 .submit {
  margin-left: 6.7em;
}
.schema2 h3 {
	font-size: 16px;;
	font-weight: bold;
}

/* Debug Style */

/*
.debug_dump {
  text-align: left;
  border-top: 1px dashed black;
  background: #ccc;
  margin: 0;
  padding: 0.5em;
}
*/
/* RailsSpace END */


/*
** THIS IS scaffold.css
body { background-color: #fff; color: #333; }

body, p, ol, ul, td {
  font-family: verdana, arial, helvetica, sans-serif;
  font-size:   13px;
  line-height: 18px;
}

pre {
  background-color: #eee;
  padding: 10px;
  font-size: 11px;
}

a { color: #000; }
a:visited { color: #666; }
a:hover { color: #fff; background-color:#000; }
*/

.fieldWithErrors {
  padding: 2px;
  background-color: red;
  display: table;
}

#errorExplanation {
  width: 400px;
  border: 2px solid red;
  padding: 7px;
  padding-bottom: 12px;
  margin-bottom: 20px;
  background-color: #f0f0f0;
}

#errorExplanation h2 {
  text-align: left;
  font-weight: bold;
  padding: 5px 5px 5px 15px;
  font-size: 12px;
  margin: -7px;
  background-color: #c00;
  color: #fff;
}

#errorExplanation p {
  color: #333;
  margin-bottom: 0;
  padding: 5px;
}

#errorExplanation ul li {
  font-size: 12px;
  list-style: square;
}

/* Misc */
img.clip {
	vertical-align: middle;
	border: 0;
}
a.clip {
	text-decoration: none;
}

ul#cmdbar {
	padding: 0;
	margin: 0;
	float: left;
	width: 100%;
	list-style: none;
	font-weight: bold;
	font-size: 13px;
}
ul#cmdbar li {
	display: inline;
	float: left;
	border-right: 1px solid #333;
	font-family: Arial, Helvetica, sans-serif;
	border-bottom: 1px solid black;
}
ul#cmdbar li#current {
	border-bottom: 1px solid white;
}
ul#cmdbar li#first {
	width: 20px;
	border-bottom: 1px solid black;
	border-left: 0;
	border-right: 3px solid black;
}
ul#cmdbar li#first a {
	background-color: white;
	border: 0;
	border-left: 0;
	padding-bottom: 4px;
}
ul#cmdbar li#last {
	width: 200px;
	border-bottom: 1px solid black;
	border-right: 0;
}
ul#cmdbar li#last a {
	background-color: white;
	border: 0;
	border-right: 0;
	padding-bottom: 4px;
}
ul#cmdbar li a {
	padding: 0.2em 0.7em;
	color: black;
	text-decoration: none;
	float: left;
	border-top: 1px solid black;
	background-color: #DDD;
}
ul#cmdbar li a:hover {
	color: #555;
}
ul#cmdbar li#current a {
	border-bottom: 0;
	background-color: white;
}
