@charset "UTF-8";

/*******************************************************************************
*  visual_consistencies.css : 2005.09.07 : Ruthsarian Layouts
* -----------------------------------------------------------------------------
*  Font sizes on heading elements and the margin/padding applied to these
*  same elements will vary from browser to browser. This is an attempt to pull
*  the font sizes and spacing together for a consistent look across all
*  browsers. 
*
*  There are other rules included in this stylesheet (with comments on each)
*  to handle other visual consistency issues. You do not need to use this
*  stylesheet, nor do you need to follow it exactly. You can make changes
*  anywhere you want to make things look the way you want to. Nothing here
*  _should_ break a layout if modified.
*******************************************************************************/

ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	/* pixels are used here, rather than ems, because I want a consistent 
	 * margin on the different headings. if I use ems, 1em for an h1 element 
	 * is much larger than 1em on an h6 element. I don't want this.
	 */
	margin-top: 10px;
	margin-bottom: 10px;
	padding-top: 0;
	padding-bottom: 0;
}
ul ul, ul ol, ol ul, ol ol
{
	/* kill margins on sub-lists
	 */
	margin-top: 0;
	margin-bottom: 0;
}
h1
{
	font-size: 240%;
}
h2
{
	font-size: 180%;
}
h3
{
	font-size: 140%;
}
h4
{
	font-size: 100%;
}
h5
{
	font-size: 70%;
}
h6
{
	font-size: 50%;
}
a, a:link, a:visited, a:active
{
	text-decoration: underline;
}
a:hover
{
	/* because I like the visual feedback a user gets when they
	 * mouse over a link and see the underline of the link
	 * disappear.
	 */
	text-decoration: none;
}
code, pre
{
	/* Make sure we're all using the same monospaced font for CODE
	 * and PRE elements
	 */
	font-family: "Courier New", Courier, monospace;
}
label
{
	/* It's all about the visual feedback. In this case, label 
	 * elements are usually clickable which then set focus on
	 * their target. I want to show that to the user in a manner
	 * they are used to and understand.
	 */
	cursor: pointer;
}
table
{
	/* Some browsers won't carry the font size down into the 
	 * browser like they're suppose to.
	 */
	font-size: 100%;
}
td, th
{
	/* I never like or use the default vertical centering "feature"
	 * provided by tables. 
	 */
	vertical-align: top;
}
body
{
	/* I've seen several comments that setting the base font size to 100.1%
	 * fixes some browser bugs. Which bugs? I don't know. I believe it's
	 * to fix some rounding-error bugs that some browsers (Mozilla) are
	 * prone to. It doesn't hurt anything, so I keep it here.
	 */
	font-size: 100.1%;
}

/******************************************************************************/
#main_menu {
	width: 950px;
	height: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: #96B937;
	z-index: 999;
	position: absolute;
}

#main_menu li {
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
}

#main_menu li a {
	display: block;
	margin: 0;
	padding: 7px 13px 8px 14px;
	border-left: solid 1px #e3e9c0;
	border-right: solid 1px #e3e9c0;
	font-size: 90%;
	text-decoration: none;
	color: #fff;
}

#main_menu li a:hover,
#main_menu li a.last:hover {
	background-color: #bdd33d;
}

#main_menu li a.last {
	padding-left: 35px;
	border-right: 0;
	background: url(../images/home-trans.png) no-repeat 0 0;
}

#main_menu li ul {
	display: none;
	margin: 0;
	padding: 0;
	width: 208px;
	list-style: none;
	background: #96B937;
	position: absolute;
}

#main_menu li ul li {
	float: none;
}

#main_menu li ul li a {
	display: block;
	width: 178px;
	margin-bottom: -1px;
	border: solid 1px #e3e9c0;	
}

#main_menu li:hover ul,
#main_menu li.over ul {
	display: block;
}
/**************************************************************************
 * STYLES START HERE.  DO NOT MODIFY ANY CODE ABOVE THIS LINE, ONLY BELOW *
 **************************************************************************/

body {
	margin: 0;
  	font-family: Arial, Helvetica, sans-serif;
   font-size: 90%;
	background: #0c130b url(../images/background.jpg) no-repeat top center;
}

#bottom-nav {
	padding: 5px;
   font-size: 80%;
   color: #fff;
   text-align: right;
}

#bottom-nav a {
	color: #fff;
}

#recycle {
	position: absolute;
   bottom: 200px;
   left: 100px;
}

#recycle img {
	margin-top: 10px;
	float: left;
}

#recycle p {
	margin-left: 50px;
}

#wrapper {
	position: relative;
	margin: 0 auto;
	width: 950px;
}

h1 span {
	display: none;
}

#header {

	padding: 43px 0 14px 25px;
	height: 113px;
	background: #fff;
}

#pageTitle {
	position: absolute;
   top: 94px;
   right: 100px;
	width: 233px;
   height: 58px;
   background: transparent url(../images/sizing_title-trans.png) no-repeat 0 0;
}
#logo h1 {
	margin: 0;
}

#logo a {
	display: block;
   width: 351px;
   height: 113px;
	background: transparent url(../images/logo.jpg) no-repeat 0 0;
}

#folio {
	height: 335px;
   background: transparent;
   border-left: 1px solid #fff;
   border-right: 1px solid #fff;
	background: transparent url(../images/folio_sizing.jpg) no-repeat 0 0;
}

div.divider {
	width: 950px;
   height: 6px;
   background: #fff url(../images/divider-trans.png) no-repeat 0 0;
}

#content {
	padding: 85px 100px 1px 100px;
	border-top: 7px solid #fff;
   border-left: 7px solid #fff;
   border-right: 7px solid #fff;
   line-height: 140%;
   background: #fff url(../images/gradient.jpg) repeat-x 0 0;
}

img.floatleft {
	margin: 20px 20px 20px 0;
   float: left;
}

img.floatright {
	margin: 20px 0 20px 20px;
   float: right;
}

#content h2 {
	margin: 0;
   padding: 0;
	color: #a3c350;
   font-size: 120%;
}

#content p {
	margin: 0 0 20px 0;
}

#content .filmstrip {
	margin: 4px 0 0 30px;
   width: 300px;
	float: right;
}

#content .filmstrip p {
	margin: 0;
   padding: 0;
   margin-bottom: 14px;
   text-align: center;
   font-size: 80%;
   font-weight: bold;
}

#content .justalign li {
	text-align: justify;
}

#footer {
	height: 254px;
   background: transparent url(../images/footer-trans.png) no-repeat 0 0;
	border-top: 1px solid #fff;
}

#footer p {
	width: 950px;
	padding-top: 152px;
   padding-right: 4px;
	text-align: right;
   font-size: 85%;
   color: #fff;
}

#footer a {
	color: #fff;
}

#footer span {
	display: inline;
   color: #a3c350;
}

/********************
 * CALULATOR STYLES *
 ********************/

#stscal {
	width: 100%;
}

#stscal legend {
	font-weight: bold;
}

#stscal ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

#stscal ol li {
	padding: 5px 0 5px 5px;
}

#stscal ol li.alt {
	background: #b0c53a;
}

#stscal label {
	margin-right: 1%;
	display: block;
	width: 38%;
	float: left;
}

#stscal input {
	margin: 0;
   margin-right: 1%;
	padding: 0;
	width: 10%;
	float: left;
}

#stscal select {
   margin-left: 1%;
	padding: 0;
}

#stscal input.btn {
	width: auto;
}

#stscal input.submit {
	margin-right: 40px;
}

#stscal div {
	width: 49%;
	float: left;
}

#stscal li.last {
	margin: 0 auto;
   width: 160px;
}

#stscal div.error {
	margin-left: 38%;
   width: auto;
   clear: both;
	float: none;
 	color: #f00;
}

#stscal .empty {
	border: 0;
   background: none;
}

/****************
 * GRAPH STYLES *
 ****************/

#graph {
	margin: 30px 0;
   padding: 0;
   width: 753px;
}

#titles {
	padding-top: 40px;
	width: 200px;
   float: left;
   background: transparent url(../images/graph_left-trans.png) no-repeat top right;
}

#titles p,
#end p {
	margin: 10px 0;
	padding: 10px 10px 10px 0;
   text-align: right;
}

#rows {
	padding-top: 40px;
	width: 535px;
   float: left;
   background: transparent url(../images/graph-trans.png) no-repeat top left;
}

#rows div {
	margin: 10px 0;
	padding: 10px 0;
   text-align: right;
   color: #fff;
   font-weight: bold;
   background: #96b937;
}

#end {
	padding-top: 40px;
	width: 18px;
	float: left;
   background: transparent url(../images/graph_right-trans.png) no-repeat top left;
}