/* Has a background image to create the black panel down the left side of the page, because height property can't be relied on. */

body {
	margin: 0;
	font-family: "Comic Sans MS", Arial, Helvetica;
	font-weight: bold;
}

/* The daisy image is attached to this. */

#container {
padding: 0;
margin: 0;
}

/* Banner across top of page that says the name of the whole site */

#main-title {
	margin-bottom: 0;
	margin-left: 0;
	margin-right: 0;
	padding-left: 25px;
	padding-right: 100px;
	font-size: 1.3em;
	letter-spacing: 5px;
	text-align: right;
	padding-top: 3px;
	padding-bottom: 7px;
	font-style: italic;
	color: #FF0000;
	border-bottom: 3px dotted #FF0000;
	font-weight: bold;
}

/* Styles for the main text on the page. */

#main-text {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 170px;
	margin-right: 220px;
	padding-right: 10px;
	border-right: 3px dotted #FF0000;
	color: #515151;
	background-image: url(images/daisy.jpg);
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: center 30px;
}

p, ol, table {
	text-align: justify;
	font-size: 0.9em;
	line-height: 1.9em;
	margin: 0;
	padding-top: 5px;
	padding-bottom: 5px;
	font-weight: bold;
}

ol, ul {
margin-left: 25px;
}

h1 {
margin-top: 0;
margin-bottom: 10px;
margin-left: 0;
margin-right: 0;
font-size: 1.2em;
padding-bottom: 9px;
padding-top: 10px;
padding-left: 0;
padding-right: 0;
color: #FF0000;
font-weight: normal;
}

h2 {
font-size: .9em;
font-weight: bold;
padding-left: 0;
color: #515151;
margin: 0;
padding-top: 5px;
padding-bottom: 5px;
}

a:link, a:visited {
text-decoration: none;
font-weight: bold;
color: #fdac00;
}

a:hover {
text-decoration: none;
font-weight: bold;
color: #FF0000;
}

/* Styles for the navbar on the left side. */

#left-menu {
	position: absolute;
	top: -2px;
	left: -4px;
	width: 160px;
	height: 100%;
	padding-top: 50px;
	font-weight: bold;
}

#left-menu p {
	margin-bottom: 4px;
	text-align: right;
	padding-right: 19px;
	font-size: 0.9em;
}

#left-menu a:link, #left-menu a:visited {
padding-right: 5px;
border-right: 3px #000 dotted;
}

#left-menu a:hover, #left-menu a.current {
color: #FF0000;
border-right: 3px dotted #FF0000;
}

/* Styles for the pullquote on the right side. */

#right-column {
position: absolute;
top: 100px;
right: 0px;
width: 220px;
font-size: .9em;
line-height: 1.6em;
background-color: #FFFFFF;
border-top: 3px dotted #FF0000;
border-bottom: 3px dotted #FF0000;
}

#right-column strong {
color: #d14013;
font-style: normal;
}

#right-column p {
font-style: italic;
padding-left: 10px;
padding-right: 5px;
padding-top: 50px;
}

/* Styles for the footer at the bottom of the page */

#footer {
text-align: right;
margin-bottom: 0;
padding-top: 8px;
padding-bottom: 8px;
font-size: .8em;
margin-top: 0;
padding-right: 50px;
border-top: 3px dotted #FF0000;
}

#footer a:link, #footer a:visited {
color: #fdac00;
}

#footer a:hover {
text-decoration: underline;
color: #fdac00;
}

.ulbullets {
	list-style-type: square;
	list-style-image: url(images/bullet.gif);
	list-style-position: outside;
	font-size: 100%;
	font-weight: bold;
	line-height: 200%;
	margin: 10px;
}	
/**************************************************************
   Form Elements
 **************************************************************/

form {
  padding: 0;
  margin: 0;
}

/* If you're finding the input elements get pushed down, increase the width */
label {
  float: left;
  width: 25%;
  vertical-align: top;
}

input,
textarea,
select {
  padding: 1px;
  font: 400 1em verdana, sans-serif;
  color: #999;
  background: #EEE;
  border: 1px solid #CCC;
}

input:focus,
input:hover,
textarea:focus,
textarea:hover,
select:focus,
select:hover {
  color: #000;
  background: #E7F1F3;
  border: 1px solid #888;
}

input.noBorder,
input:focus.noBorder,
input:hover.noBorder {
  padding: 0;
  border: 0;
}

input.button {
  padding: 2px 5px;

  font: 400 0.9em verdana, serif;
  cursor: pointer;

  color: #fff;
  background: #FC3307;
  border-width: 1px;
  border-style: solid;
  border-color: #FF7800 #691300 #691300 #FF7800;
}

input.radio {
  background: none;
  border: 0px;
}



.imgnoborder {
border-style:none;
border:0px;
}

.imgborderonly {
border:#666666 1px solid;
margin-right:5px;
}

.floatleft
{
float: left;
margin: 5px 5px 5px 5px;
}