/* Uni-Form by Dragan Babic  - http://dnevnikeklektika.com/ , http://draganbabic.com/ */ 
/* Some rights reserved - http://creativecommons.org/licenses/by-sa/2.5/ */

.uniForm{
  margin:0 0 30px 20px;
  padding:0;
  position:relative;
  width:90%;
  overflow:hidden;
}

/* Some generals */
.uniForm fieldset{
	border: 1px solid #E1E5E8;
	margin: 1em 0;
	padding:1em;
	background-color: #E9EBED;
	background-image: url(images/fieldset_gradient.jpg);
	background-repeat: repeat-x;
}

.uniForm fieldset legend{
	margin:0; 
	color:#3A404A;
	font-weight:bold; 
    font-size:110%; 
	background-color:#E9EBED;
	padding: 1px 3px;
	margin-bottom:5px;
}

textarea {font-size:1.1em; font-family:Arial, Helvetica, sans-serif}
.uniForm .ctrlHolder{ /* This is the main unit that contains our form elements */
	overflow:hidden;
	margin:0;
	padding:7px;
	clear:both;
}

/* .inlineLabels */
.uniForm .inlineLabels label {
	width:35%; /* Required property */
}
.uniForm .inlineLabels .textInput{
	width:55%; /* Required property */
}
.uniForm .inlineLabels .selectInput{
	width:55%; /* Required property */
}
.uniForm .inlineLabels textarea{
	width:55%; /* Required property */
	height:12em; 
}
.uniForm .inlineLabels .formHint{
	margin-top:0;
	margin-left:47%; 
}

.uniForm .inlineLabel,
.uniForm .inlineLabels .inlineLabel {
	width:auto;
	float:none;
	margin:0 1em 0 0;
	display:inline;
}

.uniForm .inlineLabels label,
.uniForm .inlineLabels .label{
	float:left;
	margin:.1em 2% 0 0; padding:0;
	line-height:100%;
	position:relative;
	font-size:1em;
}

.uniForm .inlineLabels .textInput {
	float:left;	
	padding:2px; 

}

.uniForm .inlineLabels .selectInput{
	float:left;
	font-size:1.1em;
}

.uniForm .inlineLabels textarea{
	float:left;
}

.uniForm .inlineLabels .formHint{
	clear:both;
}

/* Required fields asterisk styling, use if needed */
.uniForm label em {
	display:block;
	position:absolute; 
	left:98%; 
	top:0px;
	font-style:normal;
	font-weight:bold;
}

.uniForm .focused{
  background:#FDF9B2; 
}

/* Messages */
.uniForm #errorMsg{
	background:#ffdfdf url(images/ico_error.gif) 5px 50% no-repeat;
	border:1px solid #FF7979; 
	border-width:1px 0;
	margin:0 0 2em 0; 
	padding:1em 0 1em 30px;
}
.uniForm #okMsg{
	background:#E5FFDF url(images/ico_ok.gif) 5px 50% no-repeat;
	border:1px solid #7CCD6B;
	border-width:1px 0;
	margin:0 0 2em 0;
	padding:1em 0 1em 30px;
}

.uniForm #errorMsg h3 {color:#FF1313}
.uniForm #okMsg h3 {color:#239809}

.uniForm #errorMsg h3, .uniForm #okMsg h3{
    margin:0 0 0 0;
    font-size:110%;
    line-height:100%;
    font-weight:bold;
}

.uniForm .buttonHolder{
	overflow:hidden;
	clear:both;
	margin-top:10px;
	}

.uniForm .submitButton{
	font-weight:bold;
	width:150px;
	padding:4px;
	color:#3A404A;
	border: 1px solid #bccad3;
	text-transform:uppercase;
	font-family:Arial, Helvetica, sans-serif;
	background: #F6F6F6 url(images/bkg_btn_submit.jpg) repeat-x left 50%;
}
