/*-------------------------------------------------
FORM ELEMENT STYLING
----------------------------------------------*/
label{
	font-weight:bold;
	padding-left:3px;
	font-size:11px;
}
	

textarea{
	width: 300px;
	height: 150px;
}

.required textarea {
	background-color:#FFFFCC;
}


input {
	padding:5px; 
	font-size:13px;
}

.required input{
	background-color:#FFFFCC; 
}


select {
	font-size:13px;
	padding:1px;
	/**
	 * Note if we set the padding as we do in the input fields
	 * that the scrollarrow doesn't grow accordingly so is tiny and looks out of whack
	 * in the middle of the larger padded dropdown. So I'm increasing the font size
	 */
}

.required select {
	background-color:#FFFFCC;
}

/** 
 * goal of this is to be a div class that required elements will go in so they can be styled 
 */
.required{
	display:inline;
}



/*-------------------------------------------------
REQUIRED & ERROR MESSAGES
-------------------------------------------------*/
#topErrorBox{
	border:4px solid #ff0000;
	padding:10px;
	margin:10px;
	background-color:#FF6666;
	line-height:1.5;
	color: #ffffff;
}

#topErrorBox li {
	color:#fff;
}

#topErrorBox td {
	color:#fff;
}

/**
 * for the global message at the top of the page
 */
.requiredErrorMessage{}

.requiredElementMessage{
	background-color:#FF6666;
	border:2px solid #ff0000;
	padding:2px;
	margin-bottom:4px;
	width:220px;
	text-align:center;
	color:#fff;
}

		
/** 
 * the text 'means field is required' 
 */
.requiredMessage{	
	padding:5px;
	width:200px;
	font-weight:bold;  
	margin:3px;
	background-color:#FFFFCC;
	font-size:11px;
}

.requiredImage{  
   /*	
	background-image: url(/cmeoutreach/images/required_star_jc.gif); 
	background-repeat: no-repeat; 
	padding-right:3px;
	z-index:1; 
	width:20px;
	*/
}
	

/*-------------------------------------------------
MISCELLANEOUS
-------------------------------------------------*/
/**
 * Styled to match a form input field 
 */
table.radioBoxes{
	margin-top:6px;
	margin-bottom:4px;
	margin-left:2px;
	border-right:1px solid #fafafa;
	border-bottom:1px solid #fafafa;
	border-left:2px solid #848484;
	border-top:2px solid #848484;
	padding:5px;
	width:300px;
}




/**
 * any text boxes that are for display purposes only -- not sure what that actually means... 
 */
	
.display {
	background-color:#eee; 
	width:500px;
	font-style:italic;
	border:0px;
	padding:4px;
	scrolling:no;
}