/* --------------------------------------------------------------   
   forms.css
   * form styles
   
   Falko Schuster <falko.schuster@fairnet-medien.de>     
-------------------------------------------------------------- */
/* form definitions main content area */

#content-main legend {
	font-weight:bold;
	color:#0466FC;

}
#content-main fieldset {	
	border:1px solid #86B6FE;	
	padding:0.5em;	
	margin:0 0 1em 0;
}
#content-left fieldset {	
	border:0;	
	padding:0;	
	margin:0;
}

/* sizes of text fields */
.input-tiny {
	width:10%;
}
.input-small {
	width:20%;
}
.input-medium {
	width:40%;
}
.input-large {
	width:60%;
}
.input-tinymce {
	width:90%;
}

.form-text,
.form-textarea {	
	background:#fff;
	border:1px solid #989EAA;
	padding: 0.1em 0 0.1em 0.3em;
	margin-bottom:0.5em;		
}
/* form fields in admin tables */
table .form-text,
table .form-textarea, 
.frontend .form-text,
.frontend .form-textarea 
{	
	margin-bottom:0;
	margin-right:0.2em;	
	font-size:0.8em;
	padding:0.1em;				
}
#content-left .form-text
{
	width:70%;
}
table label
{
	font-size:0.9em;
}


.form-text:focus,
.form-textarea:focus {
	border-color: #0466FC;	
}
.form-text:hover,
.form-textarea:hover {
	background:#F2F0D3;	
}

.form-set {
	margin-bottom:1em;
}

/* form buttons */
.button-positiv {
	text-transform:uppercase;
	color:#fff;	
	border:1px solid #0466FC;
	background:#86B6FE;
	padding:0.1em;		
	margin: 0.5em 0 0.5em 0;
}

.button-negativ {
	text-transform:uppercase;
	color:#000;	
	border:1px solid #000;
	background:#F1F3F5;
	padding:0.1em;		
	margin: 0.5em 0 0.5em 0;
}
table .button-positiv,
table .button-negativ, 
.frontend .button-positiv,
.frontend .button-negativ 
{
	margin:0;
	font-size:0.8em;
}
.button-positiv:hover,
.button-action-second:hover {
	background:#0466FC;
}
.button-negativ:hover {
	background:#0466FC;
}

/* form errors */
.text-error {
	color:#8B0000;
	font-weight:bold;
}
.form-error {
	border:1px solid #8B0000;
	color:#8B0000;
}
.form-error:hover {
	border:1px solid #8B0000;
	background:#FFC6C6;
}
.text-error-message {
	color:#8B0000;
}

/** forms type: **/
/* wide */
.form-wide label, #content-left fieldset label {
	display:block;
}
/* table style */
.form-left {
	width:25%;
	float:left;
}
.form-right {
		
}

.form-inline {
	display:inline;	
}

/* sortable list */
ul#sortableList {
	margin:0;
	padding:0;
	list-style-type:none;
}
#sortableList li {
	border:1px solid #0466FC;
	background:#86B6FE;
	padding:0.3em;
	margin:0.2em 0 0.2em 0;
	cursor:move;
}


