/* FORMS CSS */

FORM * {
	font-family: Arial, Helvetica, sans-serif;
	vertical-align: middle;
}

.formRow {
	clear: left;
	margin: 0 0 7px 0;
}

FORM .note {
	font-family: Verdana;
	color: #777777;
	font-style: italic;
	font-size: .9em;
}

INPUT {
	margin: 0;
	padding: 3px;
	background-color: #f5f9f9;
	border: none;
	border-left: 4px solid #d3e6e5;
	font-size: 12px;
}
TEXTAREA {
	margin: 0;
	padding: 3px;
	width: 200px;
	overflow: auto;
	background-color: #f5f9f9;
	border: none;
	border-left: 4px solid #d3e6e5;
	font-size: 12px;
}
SELECT {
	margin: 0;
	padding: 0;
	width: 210px;
	background-color: #f5f9f9;
	border: none;
	border-left: 4px solid #d3e6e5;
	font-size: 12px;
}
OPTION {
	margin: 0;
	padding: 0 3px;
	height: 18px;
	background-color: #f5f9f9;
	border: none;
	border-bottom: 1px solid #d3e6e5;
	font-size: 12px;
}

INPUT.textField {
	width: 200px;
}
INPUT.zipField {
	width: 137px;
}
SELECT.stateField {
	width: 60px;
}
INPUT.fileField {
}
INPUT.radioButton,
INPUT.checkBox {
	border: none;
	background-color: transparent;
}


INPUT.wide,
TEXTAREA.wide,
SELECT.wide {
	width: 310px;
}
INPUT.narrow,
TEXTAREA.narrow,
SELECT.narrow {
	width: 100px;
}


.labelLeft LABEL {
	display: block;
	float: left;
	width: 100px;
	padding: 0 3px 0 0;
	text-align: right;
}



.SForceContactForm .leftColumn .textField {
	width: 170px !important;
}
.SForceContactForm .rightColumn {
	width: 320px !important;
}
.SForceContactForm #SalesForceContactForm1_comments {
	width: 200px;
}


.employmentApplication .rightColumn .labelLeft LABEL {
	width: 122px;
}
.employmentApplication TABLE.radioExperience {
	width: 100%;
}
.employmentApplication TABLE.radioExperience TD {
	text-align: center;
}

.wideLabel LABEL {
	width: 150px;
}
.doubleLabel LABEL {
	width: 250px !important;
}





.labelTop {
	padding: 0 0 .5em 0;
}
.labelTop LABEL {
	display: block;
	clear: both;
	float: none;
	width: auto;
	text-align: left;
}


.submitRow {
	margin-top: 20px;
}
INPUT.submitButton{
	padding: 2px 25px;
	background-color: #007d9a;
	color: #cfe5e3;
	border: none;
	cursor: pointer;
	font-weight: bold;
}


.minorPatient {
	display: none;
}


.visible {
	display: block;
}
.invisible {
	display: none;
}



/* validation ****************************** */
.invalidRow {
	color: #ff4800;
}
.invalidField {
	background-color: #ffeadb;
	border-left: 4px solid #ff4800;
}



.infoNoteHolder {
	position: relative;
	/* IE6 mouse over behaviour; adds class=over
	to get the :hover functionality on any item */
	/*behavior: url("rollover.htc");*/
	/*m: expression(this.onmouseover = new Function("this.className += '_over';"));*/
	m: expression(this.onmouseover = new Function("this.className = 'infoNoteHolderOver';"));
}

.infoNoteHolderOver {
	position: relative;
	/*m: expression(this.onmouseout = new Function("this.className.replace('_over', '');"));*/
	m: expression(this.onmouseout = new Function("this.className = 'infoNoteHolder';"));
}

.infoNoteIcon {
	position: relative;
	/*FF*/ top: -2px;
	//*ie*/	top: 0px;
	padding: 0 4px 0 7px;
	//*ie*/	padding: 0 5px;	
	background-color: #FFDB6C;
	text-align: center;
	font-weight: bold;
	font-size: 10px;
	border: 1px solid #FFC736;
}
.infoNote {
	display: none;
	position: absolute;
	bottom: 20px;
	left: 0;
	padding: 5px 10px;
	width: 250px;
	text-align: left;
	background-color: #FFF4D2;
	border: 1px solid #FFDB6C;
}

.infoNoteHolder:hover .infoNote,
.infoNoteHolderOver .infoNote {
	display: block;
}





@media print {

	.nav,
	.header .search,
	.imageHeader,
	.pathNavContainer,
	.tabNav,
	.submitRow,
	.bottomNav A {
		display: none;
	}
	
	.tabPage {
		border: none;
	}

}


