.uniForm {
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;	
}
/* Some generals */
.uniForm fieldset{
	border: 1px solid #e9e9e9;
	margin: 0 0;
	padding: 10px;
	width:  75%;
	background: #f1f1f1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
width: 678px;
margin-bottom:  20px;
}

.uniForm .ctrlHolder{ /* This is the main unit that contains our form elements */
	margin:0;
	padding: 7px 0;
	clear: both;
}

#srchForm label{ /* Adding spacing to labels */
	line-height: 130%;
}

.uniForm .btnTop { /* Adding style for a top search button for programs */
	background: #fff none repeat scroll 0%;
	border: 3px double #CCCCCC;
	font-size: 1em;
	padding: 2px;
	width: 20%;
	text-align: center;
}

.uniForm .btnTop:hover {
	background: #eee;
}

.uniForm .buttonHolder{
	clear: both;
	text-align: right;
	margin-top:  10px;
}
.uniForm .buttonHolder .submitButton {
	background: #EEEEEE none repeat scroll 0%;
	border: 3px double #CCCCCC;
	font-size: 1em;
	padding: 2px;
	width: 25%;
	text-align: center;
}
.uniForm .buttonHolder .submitButton:hover {
	background: #fff;
}
.uniForm .inlineLabel,
.uniForm .inlineLabels .inlineLabel,
.uniForm .blockLabels .inlineLabel{
	width: auto;
	float: none;
	margin: 0 1em 0 0;
	display: inline;
}

 /* Required asterisk styling, use if needed */
.uniForm em{
	color: #1155aa;
	font-weight:  bold;
   position:static;
   display:inline;
}

/* ########################################################################## */

/* Styles for form controls where labels are in line with the input elements */
/* Set the class of the parent (preferably to a fieldset) to .inlineLabels */
.uniForm .inlineLabels .ctrlHolder{
}
.uniForm .inlineLabels label,
.uniForm .inlineLabels .label{
	float: left;
	margin: .3em 2% 0 0;
	padding: 0;
	line-height: 100%;
	position: relative;
	width: 15%; /* Required property */
}
.uniForm .inlineLabels .textInput {
	float: left;
}
.uniForm .inlineLabels .selectInput, .uniForm .inlineLabels .selectInput-short{
	float: left;
	border: 2px solid #DFDFDF;
	width: 75%; /* Required property */
}
.uniForm .inlineLabels .selectInput-short{
	width: 20%;
}
.uniForm .inlineLabels textarea{
	float: left;
	font-family: "lucida grande","lucida sans unicode","trebuchet ms",arial,verdana,sans-serif;
	font-size: 99%;
	font-size-adjust: none;
	font-stretch: normal;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	line-height: 140%;
}
/* ########################################################################## */

/* Styles for form controls where labels are above the input elements */
/* Set the class of the parent (preferably to a fieldset) to .blockLabels */
.uniForm .blockLabels .ctrlHolder{
}
.uniForm .blockLabels label,
.uniForm .blockLabels .label{
	display: block;
	float: none;
	margin: .3em 0;
	padding: 0;
	line-height: 100%;
	width: auto;
}
.uniForm .blockLabels .label{
	float: left;
	margin-right: 3em;
}
.uniForm .blockLabels .inlineLabel{
	position: relative;
	top: .15em;
}
.uniForm .blockLabels .textInput{
	float: left;
	border: 2px solid #DFDFDF;
    width:80%; /* Required property */
}

.uniForm .textInputA{
	border: 2px solid #DFDFDF;
    width:50%; /* Required property */
}

.uniForm .blockLabels .selectInput, .uniForm .blockLabels .selectInput-short{
	display: block;
	border: 2px solid #DFDFDF;
    width:80.5%; /* Required property */
}

.uniForm .blockLabels textarea{
	float: left;
	border: 2px solid #DFDFDF;
	display: block;
    width:80%; /* Required property */
    height:12em; 
}

.uniForm .plainText {
font-weight: normal;
color: #000;
}

/* for block level radio buttons
================================================*/
.uniForm .radioBtns {
	overflow: hidden;
}

/* Misc
================================================*/

/* self-clearing floats */
.uniForm:after,
.uniForm .ctrlHolder:after,
.uniForm .buttonHolder:after,
.uniForm .radioBtns:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}



