@charset "utf-8";
body {
	font-size:10px;
	font-family:Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

.oneColElsCtrHdr #container {
	width: 800px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background-color: #F2F2F2;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColElsCtrHdr #header { 
	background-color: #F2F2F2; 
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.oneColElsCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColElsCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color:#F2F2F2;
}

.oneColElsCtrHdr #mainContent2 {
	font:12px Verdana, Arial, Helvetica, sans-serif;
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color:#F2F2F2;
}

.oneColElsCtrHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color:#F2F2F2;
} 
.oneColElsCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
h1 {
	font:large;
	color:#808000;
	text-align:center;
}

legend{
	background-color:#FFFFFF;
	font-weight: bold;
	border: 1px solid;
	border-color: black;
	color: #000000;
	padding: 4px;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
}
input {
	border-bottom-color:#999999;
	border-right-color:#999999;
	border-left-color:#333333;
	border-top-color:#333333;
	border: 1px inset;
	background-color:#FFFF99;
}

.panel {
	clear: both;
	display: none;
	border: 3px solid;
	border-color: #999999;	/*padding: 1em;*/
}
.panel.active-tab-body {
	display: block;
}
#tabs {
	list-style: none;
	font-size:12px;
}

#tabs li {
	float: left;
}

#tabs a {
	float: left;
	padding: 5px 8px;
	margin-left: 6px;
	background-color: #F2F2F2;
	text-decoration: none;
	color: #999999;
}

#tabs a.active-tab {
	background-color: #CCC;
	/*border-top: 3px solid;
	border-color: #999;*/
	padding-top: 3px;
	color: #000;
}
input.disabled {
	/*border: 1px solid;
	border-color: #666666;*/
	background-color: #F2F2F2;
}
input.required, textarea.required {
	border: 1px solid;
	/*border-color: #0033CC;
	border-bottom-color:#0099CC;
	border-right-color:#0099CC;*/
}
input.validation-failed, textarea.validation-failed {
	border: 1px solid;
	border-color: #FF3300;
	color : #FF3300;
}
input.validation-passed, textarea.validation-passed {
	border: 1px solid;
	border-color:#00CC00;
	/*background-color:#C1FFD6;*/
	color : #000;
}

.validation-advice {
	margin: 5px 0;
	/*padding: 5px;*/
	background-color: #FF3300;
	color : #FFF;
	font-weight: bold;
}

.custom-advice {
	margin: 5px 0;
	/*padding: 5px;*/
	background-color: #C8AA00;
	color : #FFF;
	font-weight: bold;
}

fieldset {
	padding: 1em;
	margin-bottom: 0.5em;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
}
.form-row {
	clear: both;
	padding: 0.5em;
	/*display:table-row;*/
}

.field-label {
width:175px;
display:block;
text-align:right;
float:left;
clear:none;
}
.field-label2 {
text-align:left;

}

.field-widget {
display:block;
float:left;
}
.field-widget2 {
}

/*NEW ADDITIONS*/


fieldset fieldset legend{
	color: #ffffff;
	border: 1px solid black;
	font-size: 14px;
	/*display: table;*/
}

.warning{
	background-color:#80FF80;
	color:#000000;
	font-weight: bold;
}
