/*--------------------------------------------------------------------------------------------------
  Base Stylesheet
  Base HTML tag preferences.
--------------------------------------------------------------------------------------------------*/
/* Default settings for typography consistency and scrollbar inclusion */
html { margin-bottom: 1px;min-height: 100%; } /* ensures inclusion of vertical scroll bar */
* html body { font-size: 65%; } /* @ IE */
body { font-size: 65%; }
/*body * * { font-size: 100%; }*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,p,blockquote,th,td { margin:0; padding:0; }
/* ------------------------------------------------------------------------------------------------*/

html {
	margin-bottom: 1px; 
	min-height: 100%; /* ensures inclusion of vertical scroll bar */
}


body {
	background-image: url(/img/body_filler.png);
	background-repeat: repeat-x;
	color: #00457c;
  font-family: "Calibri","Lucida Grande", Verdana, "Arial Unicode MS", sans-serif;
/*  font-family: "Georgia","Lucida Grande", verdana, helvetica, "Arial Unicode MS", sans-serif;*/
	padding-top: 20px;
  text-align:center; 
}






/*--------------------------------------------------------------------------------------------------
  IMAGES
--------------------------------------------------------------------------------------------------*/
img {
	border: none;
	}
img a {
	border: none;
	margin: 0;
	padding: 0;
	}



/*--------------------------------------------------------------------------------------------------
  LINKS
--------------------------------------------------------------------------------------------------*/
a:link, a:hover, a:visited, a:active {
  border-bottom: 1px solid #00457c;
	color: #00457c;
	font-weight: normal;
	text-decoration: none;
	}

a:hover {
  border-bottom: 1px dotted #214409;
	color: #214409;
	}
	


/*--------------------------------------------------------------------------------------------------
  TABLES
--------------------------------------------------------------------------------------------------*/
td {
	text-align: left;
}



/*--------------------------------------------------------------------------------------------------
  FORMS
--------------------------------------------------------------------------------------------------*/
form {
	margin:0;
	padding:0;
	margin-bottom:1em;
	text-align: left;
	}
fieldset {
	margin:0;
	padding:0;
	margin-bottom:2.5em;
	border:0;
	}
dt {
	margin:0;
	margin-top:1em;
	padding:0;
	}
dd {
	margin:0;
	padding:0;
	}
div.form_component {
  display: inline;
	float: left;
	font-family:verdana, helvetica, arial, sans-serif;
  font-size: 10px;
  margin:0 15px 15px 0;
	width:200px;
  }
label {
  display: block;
	font-family:verdana, helvetica, arial, sans-serif;
  font-size: 10px;
  font-weight: bold;
	padding: 3px;
}
label.form_error {
  border-left: 5px solid #9b1b0e;
  border-top: 1px solid #9b1b0e;
  }
input,textarea,select {
	border:1px solid #aaa;
	font-family:verdana, sans-serif;
	font-size:1em;
	margin: 5px 0 0 0;
	padding: 2px 2px 2px 5px;
	}
input.text, textarea, select {
	border:1px solid #413E31;
	font-family:verdana, helvetica, arial, sans-serif;
	font-size: 1em;
	padding: 2px;
  width:100%;
  }

.textarea {
	border:1px solid #999;
	height:100px;
	padding:5px;
	width:100%;
  }

/* Hide CakePHP's labels... */
div.input label {
  display:none;
}




/*--------------------------------------------------------------------------------------------------
  MISC CLASSES
--------------------------------------------------------------------------------------------------*/
.clear {
	clear:both;
	height:0px;
	overflow:hidden;
}
.clear-left {
	clear:left;
	height:0px;
	overflow:hidden;
}
.clear-right {
	clear:right;
	height:0px;
	overflow:hidden;
}
.hide, .hidden {
	display:none;
}
.item {
	margin-bottom:2em;
}


.error_message {
	border:1px solid #000;
	color: #9b1b0e;
	font-weight:bold;
	margin: 10px 0;
	padding:10px;
}
.confirm_message {
	background-color:#EDDF97;
	border:1px solid #000;
	color: #000;
	margin: 10px 0;
	padding:10px;
}

div#flashMessage {
	background-color: #333;
	border: 3px solid #999;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	padding: 10px;
	text-align: center;
}



