@charset "UTF-8";
body  {
	background: #fff;
}
#container { 
	width: 850px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	min-width:850px; /* min width to avoid collapse and overlap of content. Must be in PX to set static width. */
} 
#header { 
	background: #fff;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
}

#print_header {
  display: none;
  border-bottom: 1px solid #888;
}

#sidebar {
	float: left;
	display:inline; 
	position: relative;
	width: 250px;
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 8px 10px;
}

#mainContent {
	width: 560px;
	float: left; /* the left margin's value is equal to the header and footer which creates alignment down the left side of the document. */
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 10px;
	
} 
#topimage {
	background-image:url(../images/pic_top.jpg);
	background-repeat: no-repeat;
	height: 198px;
	width: 560px;
		
	}
#demographics {
	width: 130px;
	float: right; /* the left margin's value is equal to the header and footer which creates alignment down the left side of the document. */
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 10px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #999999;
	color: #53C1BA;
	padding: 10px;
}
#quote {
	width: 150px;
	float: right; /* the left margin's value is equal to the header and footer which creates alignment down the left side of the document. */
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 10px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #999999;
	color: #53C1BA;
	padding: 10px;
} 

#random_tease {
	width: 230px;
	padding: 10px;
	background-color:#DAF2EA;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #999999;
	border-bottom-color: #999999;
} 
#random_tease h2{
	font-size:21px;
	font-weight: normal;
	color: #53C1BA;
}	

#alphabetical a {
	color: #53C1BA;
	font-size: 18px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 30px;
	padding-left: 5px;
}
#alphabetical span {
	font-size: 18px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 30px;
	padding-left: 5px;
}

#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#fff;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #999999;
} 
#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 */
}

fieldset {
  border-top: 1px solid #222;
  padding-left: 20px;
  margin-top: 10px;
  background-color: #eee;
  }
legend {
  padding: 0 5px;
  }
form dl dt {
  float: left;
  width: 100px;
  text-align: right;
  }

form dl dd {
  margin-left: 120px;
  
  }

form dl dd,
form dl dt {
  padding-top: 6px;
}

dl input, dl textarea, dl select {
  font-size: 1em;
  padding: 0.3em;
  width: 90%;
  border: 1px solid #888;
  }

dl input.checkbox { width: auto; }

form .checklist {
  list-style-type: none;
   
  }

.submit {
  border-top: 1px solid #888;
  color: #666;
  background-color: #eee;
  margin-top: 10px;
  padding: 15px 10px 25px 25px;
  text-align: left;
  font-size: 11px; }

  .submit input {
    border: 1px solid #666;
    padding: 4px;
    font-size: 14px; }

dl.listing dd { margin-bottom: 8px; }
  
/* Miscellaneous classes for reuse */
.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 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/* FLASH MESSAGES */
.flash {
  border: 1px solid #9c9;
  color: #060;
  font-size: 14px;
  margin-bottom: 12px;
  padding: 5px 5px 5px 35px;
  text-align: left; }
#notice {
  background: #e2f9e3 url(../images/admin/tick.png) no-repeat scroll 10px center; }
#warning {
  background: #f9e2e3 url(../images/admin/error.png) no-repeat scroll 8px center;
  border-color: #c99;
  color: #600; }

