/* import css for little sections like news, blogs, etc. */
@import url(sections.css.php);


/***********************/
/* whole page business */
/***********************/

body {
	width: 750px;
	margin: auto;
	background-image: url(../images/page_bg.png);
	background-repeat: repeat-y;
	background-position: center;
	padding-left: 2px; /* I have no idea why, but the centrally-aligned stuff was slightly off, so this is a correction. And IE required an extra pixel. Pfft! */
}

div.mainContainer {
	width: 725px;
	margin: auto;
	padding: 0px 12px;
	color: #333;
	background-color: #fff;
}


/******************/
/* top navigation */
/******************/

#navContainer { margin-bottom: 6px; }

#navContainer #navLogo { float: left; }
#navContainer #navLogo a { display: block; width: 263px; height: 79px; }
#navContainer #navLogo a img {  }

#navContainer #navLinks { float: left; line-height: 120%; }
#navContainer #navLinks ul { width: 459px; margin: 0; padding: 0; }
#navContainer #navLinks ul li { float: left; list-style: none; margin-left: 9px; margin-bottom: 6px; width: 141px; height: 14px; }
#navContainer #navLinks ul li a { display: block; padding-left: 10px; padding-bottom: 1px; }
#navContainer #navLinks ul li a:link    { color: #fff; background-color: #006f53; text-decoration: none; }
#navContainer #navLinks ul li a:visited { color: #fff; background-color: #006f53; text-decoration: none; }
#navContainer #navLinks ul li a:hover   { color: #fff; background-color: #328e6f; text-decoration: none; }
#navContainer #navLinks ul li a:active  { color: #fff; background-color: #006f53; text-decoration: none; }


/*************************/
/* main part of the page */
/*************************/

#mainContainer {  }

#mainContainer #mainTop { margin-bottom: 10px; }

#mainContainer #sideBar  { width: 187px; }
#mainContainer #mainArea { width: 527px; float: right; }
body#Search #mainContainer #mainArea,
body#Shortlist #mainContainer #mainArea { width: 725px; }

.mainSection { margin-bottom: 20px; padding: 1px; }
.mainSection .sectionTitle   { color: #fff; background-color: #006f53; padding-left: 8px; line-height: 150%; }
.mainSection .sectionContent { padding: 8px 0px 0px 0px; }
.mainSection .sectionContent.indent { padding-left: 8px; padding-right: 8px; }

/**********/
/* footer */
/**********/

#footerContainer #rightFooter {
	float: right;
	color: #fff;
	background-color: #006f53;
	padding: 5px 25px;
}

#footerContainer #footer {
	color: #fff;
	background-color: #006f53;
	padding: 5px 25px;
}

#footerContainer #footer a { color: #fff; }


/*****************/
/* Random Things */
/*****************/

.floatLeft { display: block; float: left; }
.rightAlign { text-align: right; }

/* form stuff */
div.formRow { margin-bottom: 7px; }

a.moreLink {  }
p.marginTop { margin-top: 8px; }

dl { margin-left: 10px; }
dt { font-weight: bold; }
dd { margin-left: 20px; margin-bottom: 10px; }

/* lists that are semantically lists but it's cooler not to display them as a list */
ul.floatyList { margin: 0; padding: 0; }
ul.floatyList li { float: left; list-style: none; margin-left: 9px; }
ul.floatyList li a { display: block; padding: 0px; }

/***************/
/* Form Styles */
/***************/

/* all form elements are contained within a formrow div, with a label and
 *  then the element, this is the best way (but still not good) to emulate
 *  a table */
div.formrow {
  clear: both;
  text-align: left;
  margin-bottom: 10px;
}

div.formrow label {
  float: left;
  text-align: right;
  margin-right: 10px;
  width: 55px; /* default width for a default form, add new form ids and override */
}
div.formrow.indent { margin-left: 65px; } /* label width + label margin-right, override as above */
div.formrow label.radio {
	float: none;
	text-align: inherit;
	margin-right: 0;
	width: auto;
}

#recaptcha_widget         { margin-bottom: 15px; }
#recaptcha_image          { float: left; width: 300px; }
#recaptcha_options        { border-left: 1px solid #999; float: left; list-style: none; margin: 0 0 0 10px; padding: 0 0 0 5px; }
#recaptcha_response_field { width: 325px; }
#recaptcha_notice         { font-size: 0.833em; color: #555; }

/* message and error boxes, not just useful in contact form */
#messages,
#errors,
#warnings,
#info { margin-bottom: 10px; }
.message { border: 1px solid #080; background: #efe; color: #080; padding: 3px 5px; margin-bottom: 15px; float: left; } /* you may need to clearfix this */
.message.nomargin { margin-bottom: 0; } /* if before something with a margin-top */
.message.info { border-color: #880; background: #ffe; color: #880; } /* info box in yellow */
.message.warn { border-color: #f40; background: #ffe; color: #f40; } /* warning box in orange */
.message.error { border-color: #f00; background: #fee; color: #f00; } /* error box in red */