/*
form, fieldset, label, input {
	padding: 0;
	margin: 0;	
}
*/

div.form {
}

ul.form {
	margin: 25px 0 0 0;
	padding: 0;
	list-style: none;
	background: none;
}

ul.form li {
	margin: 0 0 8px 0;
	padding: 0;
	list-style: none;
	background: none;
}


ul.form div.label {
	padding-right: 6px;
	padding-top: 4px;
}

ul.form div.element {
	padding-left: 6px;
	padding-top: 4px;
	float: left;
}

ul.form li.label-float div.label {
	width: 200px;
	float: left;
}

ul.form li.label-margined div.label {
		
}


ul.form li.label-normal div.label {
	float: none;
	margin: 0;
	padding: 0;
}

ul.form li.label-hidden div.label {
	display: none;
}


ul.form li.element-float div.element {
	/*width: 400px;*/
	float: left;
}

ul.form li.element-margined div.element {
	float: none;
	margin-left: 138px;
}

ul.form li.element-normal div.element {
/*	float: none;*/
	margin: 0;
	padding: 0;
}

ul.form li.element-normal div.element input.checkbox {
	margin: 7px 10px 0 0;
}

ul.form li.element-normal div.left-margin {
	float: left;
	width: 300px;
	margin-left: 25px;
}

ul.form li.element-hidden div.element {
	display: none;
}

ul.form div.text-right {
	text-align: right;
}

ul.form div.text-left {
	float: left;
	width: 6em;
	text-align: left;
}

ul.form div.text-justify {
	text-align: justify;
}

ul.form hr {
	width: 100%;
	height: 1px;
/*	color: #ddd;
	background: #ddd;*/
	background: transparent;
	border: none;
	border-top: 1px dashed #ddd;
	margin: 10px 0;
	clear: both;
}

ul.errors {
	list-style: none;
	margin: 0;
	padding: 2px;
}

ul.errors li {
	list-style: none;
	color: red;
	margin: 0;
	padding: 0;
}

/** ELEMENTS **/
/*
fieldset {
	padding: 20px;
	margin: 10px 0;
	border: 3px solid #f2f2f2;
border: none;	
	background: #f2f2f2;

	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background: -moz-linear-gradient(top, #f9f9f9, #f2f2f2);
	background: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#f2f2f2));
	background: linear-gradient(top, #f9f9f9, #f2f2f2);
	margin: 10px 0;
}

legend {
	display: block;
	width: 100%;
	font-size: 1.2em;
	color: #79ca0f;	
	padding-bottom: 2px;
	position: relative;
	margin-top: 30px;
	margin-bottom: -30px;
	border-bottom: 1px dashed #79ca0f;
	background: transparent;
}
*/
.form label {
	color: #777;	
}
/*
.form input, .form textarea, .form input.text, .form input.textbox, .form input.password {
	color: #555;
	background: #fff;
	padding: 2px 3px;
}
*/
.form textarea {
	color: #555;
	background: #fff;
	padding: 4px 5px;	
}

.form input {
	width: 20em;
	color: #555;
	background: #fff;
	padding: 2px 3px;

}

.form select {
	color: #444;	
}

input.text, input.textbox {
	border: 1px solid #ccc;
	
}
.form input.text, .form input.password {
	width: 300px;
	border: 1px solid #ccc;
}

.form input.radio, .form input.checkbox, .form .table input {
	width: auto;
	border: none;
	padding: 0;
	background: transparent;
}

.form input.checkbox {
}

.form input.datebox, .form input.timebox {
	background: #FFF url('../images/cal.gif') no-repeat 2px 2px;
	background-color: transparent;
	border: 1px solid #CCC;
	/*border: none;*/
	color: #555;
	padding-left: 25px;
	text-align: left;
	cursor: pointer;
}

.form input.timebox {
	background: #FFF url('../images/clock.gif') no-repeat 2px 2px;
	width: 55px;
}

.form select.select {
	border: 1px solid #CCC;
	padding: 2px;
}
/*
input.button {
	background: url('../images/button_bg.gif') repeat-x;
	border: 1px solid #3967a0;
	padding: 4px 18px;
	color: white;
	font-weight: bold;
}
*/
input.button, a.button, a.button:visited, a.button:focus, a.button:hover, a.button:active {
	width: auto;
	font-size: 1em;
	text-transform: uppercase;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
	color: #fff;
	border: none;
	padding: 5px 10px;
	margin: 5px 15px 5px 0;
	overflow: visible;
	cursor: pointer;
	background: #f39d33;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	background: -moz-linear-gradient(top, #f39d33, #f28600);
	background: -webkit-gradient(linear, left top, left bottom, from(#f39d33), to(#f28600));
	background: linear-gradient(top, #f39d33, #f28600);
	-moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
	-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
	box-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
}

.form input.button:hover, .form a.button:hover {
	background: #f28600;
	text-decoration: none;
}

.form textarea.textarea, .form textarea.small-textarea, .form textarea.large-textarea {
	border: 1px solid #CCC;
	width: 100%;
}

.form textarea.textarea {
	height: 200px;
}
.form textarea.small-textarea {
	height: 100px;
}
.form textarea.large-textarea {
	height: 400px;
}
