@charset "utf-8";
/*
 *
 * Forms
 *
 */
form {
	margin: 0 auto;
}
fieldset {
	border: 2px dashed #CCC;
	padding: 10px;
	margin: 10px 0;
	display: block;
}
fieldset.noborder {
	border: 0;
}
legend {
	background-color: #FFF;
	padding: 0 5px;
	color: #858585;
	font-weight: bold;
}
form table td {
	padding: 3px;
}
label {
	color: #858585;
	font-size: 10px;
}
label.required {
	background: url(../images/icons/required.gif) no-repeat top right;
	padding-right: 10px;
}
input.field, select.field, textarea.field {
	border: 1px solid #999999;
	padding: 1px;
}
input.fullwidth, textarea.fullwidth {
	width: 300px;
}
button, a.buttons {
	display:block;
	float:left;
	margin:0 7px 0 0;
	background-color:#f5f5f5;
	border:1px solid #dedede;
	border-top:1px solid #eee;
	border-left:1px solid #eee;
	font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
	line-height:130%;
	text-decoration:none;
	font-weight:bold;
	color:#565656;
	cursor:pointer;
	padding:5px 10px 6px 7px; /* Links */
}
button img, a.buttons img {
	margin:0 3px -3px 0 !important;
	padding:0;
	border:none;
	width:16px;
	height:16px;
}
/* STANDARD */
button:hover, a.buttons:hover {
	background-color:#dff4ff;
	border:1px solid #3781B0;
	color:#3781B0 !important;
	text-decoration:none !important;
}
a.buttons:active {
	background-color:#3781B0;
	border:1px solid #3781B0;
	color:#fff !important;
}
/* POSITIVE */
button.positive, a.positive {
	color:#529214 !important;
}
a.positive:hover, button.positive:hover {
	background-color:#E6EFC2;
	border:1px solid #B0C94E;
	color:#529214 !important;
}
a.positive:active {
	background-color:#529214;
	border:1px solid #529214;
	color:#fff !important;
}
/* NEGATIVE */
a.negative, button.negative {
	color:#d12f19 !important;
}
a.negative:hover, button.negative:hover {
	background:#fbe3e4;
	border:1px solid #fbc2c4;
	color:#d12f19 !important;
}
a.negative:active {
	background-color:#d12f19;
	border:1px solid #d12f19;
	color:#fff !important;
}
/*
 *
 * PROMPTS & MESSAGES 
 *
 */
#valerrors ol, #messages ol {
	margin-top: 10px !important;
	margin-bottom: 0 !important;
	margin-left: 20px;
}
#valerrors ol li, #messages ol li {
	list-style: disc;
}
#valerrors h3, #messages h3 {
	font-weight: bold;
	margin-top: 10px !important;
	margin-bottom: 0 !important;
}
#valerrors p, #messages p {
	margin-top: 10px !important;
	margin-bottom: 0 !important;
	font-size: 10px;
	line-height: normal;
}
#valerrors, #messages {
	margin: 10px auto;
	background-position: 10px 10px;
	background-repeat:no-repeat;
	padding: 0 10px 10px 60px;
	vertical-align:middle;
	min-height: 50px;
	font-size: 10px;
}
#valerrors {
	background-color:#fbe3e4;
	border:1px solid #fbc2c4;
	background-image:url(../images/icons/largeredcross.gif);
}
#valerrors,
#valerrors ol,
#valerrors h3,
#valerrors p {
	color:#d12f19 !important;
}
#valerrors a {
	color:#d12f19 !important;
	text-decoration: underline;
}
#messages {
	background-color:#E6EFC2;
	border:1px solid #B0C94E;
	background-image:url(../images/icons/biggreentick.gif);
}
#messages,
#messages ol,
#messages h3,
#messages p {
	color:#529214 !important;
}
#messages a {
	color:#529214 !important;
	text-decoration: underline;
}