/* Overall
-------------------------------------------------- */

fieldset { 
	padding: 1.4em; 
	margin: 0 0 1.5em 0; 
	border: 1px solid #ccc; 
}
legend {
	font-weight: bold;
	font-size:1.2em;
}
label {
	display:block;
	padding:0;
}
label.radio, label.checkbox { display:inline; }
#emailv {display:none;}
.required label, span.required {
   color: #D04B07;
   font-weight: bold;
}
/* --- */


/* Form-lists
-------------------------------------------------- */

/* IE: haslayout */
.form li,
.form .checkboxes,
.form .radios
{zoom: 1;}
/* --- */


/* --- */
.form { overflow: hidden; font-size: 12px; }
.form li {
	overflow: hidden;
	margin: 0;
	padding: 1em 0.5em;
	border-bottom: 1px solid #eee;
	border-width: 2px 0 1px;
	list-style: none;
}
.form label {
	font-weight: bold;
	line-height: 1.5em;
}
.form .actions {
	padding-top: 3em;
	border-width: 0;
	text-align: right;
}
.actions button,
.actions .button {
	float: right;
}
.form .checkboxes label,
.form .radios label {
	display: block;
	float: none;
	width: auto;
	margin-left: 2em;
	margin-top: -1.5em;
	text-align: left;
	font-weight: normal;
}
.form textarea {
	width: 90%;
	height: 8em;
}
.form select, .form .text, .form .password { width: 50%; }
/* --- */


/* Two-column */
.form label		{width: 			25%;}
.form .field	{margin-left: 	25%;}

.form label {
	float: left;
	display: inline;
	text-align: right;
}
.form .field {
	display: block;
	overflow: hidden;
	padding-left: 2em;
}
/* --- */


/* Single Column *
.form .field {
	display: block;
	margin-left: 1em;
}
/* --- */


/* Form Feedback
-------------------------------------------------- */
.warn,
.notice, 
.success		{ padding: .5em; margin-bottom: 1em; border: 2px solid #ddd; }
.warn			{ background: #FBE3E4; color: #D12F19; border-color: #FBC2C4; }
.notice		{ background: #FFF6BF; color: #817134; border-color: #FFD324; }
.success		{ background: #E6EFC2; color: #529214; border-color: #C6D880; }
.warn a		{ color: #D12F19; }
.notice a	{ color: #817134; }
.success a	{ color: #529214; }

input.error,
.error input { background: #FBE3E4; }
label.error,
.error label {	color: #D12F19; }
/* --- */








/* -------------------------------------------------------------- 
	Css Only Buttons.
	
   Created by Kevin Hale [particletree.com]
    particletree.com/features/rediscovering-the-button-element
-------------------------------------------------------------- */

/* Appearance
-------------------------------------------------- */


/* Standard */
a.button:link,
a.button:visited, 
button {
	border:1px solid #dedede;
	border-top:1px solid #eee;
	border-left:1px solid #eee;
	background-color:#f5f5f5;
	color:#333;
	font-style: normal;
	font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
}

button:hover, a.button:hover{
	background-color:#dff4ff;
	border:1px solid #c2e1ef;
	color:#336699;
	text-decoration: none;
}
a.button:active{
	background-color:#6299c5;
	border:1px solid #6299c5;
	color:#fff;
}

/* Positive */
body .positive,
body a.positive:visited {
	color:#529214;
}
a.positive:hover, button.positive:hover {
	background-color:#E6EFC2;
	border:1px solid #C6D880;
	color:#529214;
}
body a.positive:active {
	background-color:#529214;
	border:1px solid #529214;
	color:#fff;
}

/* Negative */
body .negative,
body a.negative:visited {
	color:#d12f19;
}
a.negative:hover, button.negative:hover {
	background:#fbe3e4;
	border:1px solid #fbc2c4;
	color:#d12f19;
}
body a.negative:active {
	background-color:#d12f19;
	border:1px solid #d12f19;
	color:#fff;
}
/* --- */


/* 
-------------------------------------------------- */

a.button, button {
  display:block;
  float:left;
  margin:0 0.583em 0.667em 0;
  padding:5px 10px 5px 7px;   /* Links */
  font-size:100%;
  line-height:130%;
  text-decoration:none;
  font-weight:bold;
  cursor:pointer;
}
button {
  width:auto;
  overflow:visible;
  padding:4px 10px 3px 7px;   /* IE6 */
}
button[type] {
  padding:4px 10px 4px 7px;   /* Firefox */
  line-height:17px;           /* Safari */
}
*:first-child+html button[type] {
  padding:4px 10px 3px 7px;   /* IE7 */
}
button img, a.button img{
  margin:0 3px -3px 0 !important;
  padding:0;
  border:none;
  width:16px;
  height:16px;
  float:none;
}
