/*--------------------------------------------------------------------------------------------------
  Base Stylesheet
  Base HTML tag preferences.
--------------------------------------------------------------------------------------------------*/
html,body,div,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,pre,form,p,blockquote,fieldset,input,textarea,select { margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6,pre,code,address,caption,cite,code,em,strong,th { font-size: 1em; font-weight: normal; font-style: normal; }
ul,ol { list-style: none; }
input, textarea, select { padding: 1px; font-size: 100%; font-family: inherit }
a img,fieldset,iframe,img { border: none; }
a,a:link,a:hover,a:visited,a:active,fieldset,legend { background-color: transparent } 
table { border-collapse: collapse; border-spacing: 0; }
caption,th { text-align: left; }
body, html { background-color:transparent } 
html { font-size:100%; margin-bottom: 1px; min-height: 100%; } /* ensures inclusion of vertical scroll bar */
body { font-size: 62.5%; } /* Type size equalizer */
* html body { font-size: 63%; height: 100%; } /* @ IE Type size equalizer tweak */
body { text-align: center; } /* IE needs for centering container div as it doesn't respect auto margins */


/* Typography 
================================================================================================================ */
body { font-size: 0.625em; line-height: 1em; } /* Set the default font size to the equiv. of 10 pixels (with the default web browser font size setting) */  

/*p {
  font-size: 1em; line-height: 2em;
  margin-bottom: 1.5em;
}
h1 {
  font-size:1.667em; line-height: 2em;
  font-weight:normal;
  margin-bottom: 1.09em;
}
h2 {
  font-size:1.667em; line-height: 2em;
  font-weight:normal;
  margin-bottom: 1.09em;
}
h3 {
  font-size:1.334em; line-height: 2em;
  font-weight:normal;
}
*/





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



/*--------------------------------------------------------------------------------------------------
  LINKS
--------------------------------------------------------------------------------------------------*/
a:link, a:hover, a:visited, a:active {
	color: #000;
	font-weight: bold;
	text-decoration: underline;
}

a:hover {
	color: #000;
	text-decoration: none;
}



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




/* Forms
================================================================================================================ */
label {
	display:block;
	font-size: 10px;
	font-weight:bold;
	padding:3px 0 3px 0;
}
label span.notes {
	font-size:11px; 
	font-weight:normal;
	text-transform: none;
}
select option {
	margin: 3px 0px;
}

div.error label,
label.error {
	color: #9f1d1d;
}
div.error-message {
	color: #9f1d1d;
	font-size: 12px;
	margin: -6px 0 10px 0;
}
div.errorMessage {
	border-top: 4px solid #9f1d1d;
	background-color: #fff;
	color: #333;
	margin: 10px 0;
	padding: 10px;
	font-size: 12px; line-height: 150%;
}
div.inputWrapper {
	float: left;
	margin: 0 10px 10px 0px;
	text-align: left;
}
div.inputWrapper input, div.inputWrapper select, div.inputWrapper textarea {
	width: 95%;
}


.inputShort {
	width: 75px;
}
.inputMed {
	width: 160px;
}
.inputLong {
	width: 390px;
}



/* CakePHP's default wrapper for multi select checkboxes */
div.checkbox {
	display: block;
	margin: 0px 0px 5px 0px;
	text-align: left;
}
div.checkbox input {
	width: auto;
	display: inline;
	margin: 0px;
	padding: 0px;
}
div.checkbox label {
	display: inline;
	font-weight: normal;
	margin: 0px 0px 0px 5px;
	padding: 0px;
}
div.checkboxWrapper {
	float: left;
	margin: 0 10px 10px 0;
	text-align: left;
}
div.checkboxWrapper input {
	display: inline;
	padding: 0px;
}
div.checkboxWrapper label {
	display: inline;
	margin-left: 5px;
	padding: 0px;
}




div#flashMessage,
div#authMessage {
	/* border-top: 4px solid #3F080F; */
	font-family: Georgia, serif;
	font-size: 15px;
	margin: 0px auto;
	margin-top: 10px;
	padding: 10px;
/* 	width:630px; */
	text-align: center;
}
div#flashMessage strong,
div#authMessage strong {
	font-size: 16px;
}
div.message {
	background-color: #DAAD4D;
	color: #333;	
}
div.flashMessageError {
	background-color: #FFF9DF;
	color: #9f1d1d;
}
div.flashMessageSuccess {
	background-color: #FFF9DF;
	color: #9f1d1d;
}


/*--------------------------------------------------------------------------------------------------
  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 {
	background-color:#cdcdcd;
  border: 2px solid #9b1b0e;
	color: #9b1b0e;
	font-weight:normal;
	margin: 20px 0;
	padding: 10px;
}
.confirm_message {
	background-color:#cdcdcd;
  border: 1px solid #000;
	color: #9b1b0e;
	font-weight:normal;
	margin: 20px 0;
	padding: 10px;
}
#flash_message {
	background-color:#cdcdcd;
  border: 1px solid #000;
	color: #000;
	float: right;
	font-weight:bold;
	margin: 10px auto;
	padding: 10px;
	text-align: center;
	width: 300px;
}

.cake_debug, .cake-stack-trace {
  background-color: #ffffff;
  font-size: 10px;
}