@charset "UTF-8";
/* CSS Document */

/*
-----------------------------------------------
Form Validation
Author:   Vincent Hu
Version:  3/3/09
----------------------------------------------- */

/* Commenting Styleguide */
/* :TODO: 
	1. Remember to remove this rule before site goes live
	2. 
 */


/* :KLUDGE: I managed to fix this problem in IE by ... */
/* :BUG: Rule breaks in IE...eg. 5 */

/* use cssoptimiser.com to remove extra comments/ whitespaces...
or use server-side compression to  see tinyurl.com/8w9rp */ 


/* Validation - More to come */

form p {
	position:relative;
}
form p.statusApproved {
	background:url(../images/icon_checkMark.gif) 321px 30px no-repeat;
	
}
	
form span.nonValidEntry {
	background:#ae3b0d;
	color:#fff;
	font-size:10px;
	padding:2px 5px;
	margin-top:5px;
	width:306px;
	height:21px;
	display:block;
	clear:left;

} 
form input.error{
	border:3px solid #7f220f;
	
}


form label.error{
	background:transparent url(../images/icon_notApproved.png) no-repeat scroll 0 -10px;
	color:#FF0000;
	display:block;
	font-size:11px;
	height:30px;
	left:317px;
	line-height:12px;
	padding-left:30px;
	position:absolute;
	text-align:left;
	text-transform:none;
	top:35px;
	width:175px;
}

input.studentForm_submit_btn, input.educatorForm_submit_btn{
	 width:119px!important;
	 height:50px!important;
	 border:none!important;
	 padding:0!Important;
	 background:none!important;
	 margin:0!important;
	 
}
 
div.feedback { 
	padding:20px 40px;
	background: #D5CFBE;
	margin:10px 20px 10px 0;
	font-size:15px;
	color:#7F220F;
	display:none;
}

div.error {
	background:#D5CFBE url(../images/icon_warning.png) no-repeat scroll 20px 20px;
	display:block;
}



/* the overlayed element */ 
div.overlay {
	
	/* growing background image */
	background-image:url(../images/white.png);
	
	/* dimensions after the growing animation finishes  */
	width:600px;
	height:470px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:55px;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(../images/icon_close.png);
	position:absolute;
	right:5px;
	top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}

