
/*---------------------------------------

	LEAN MODAL

-----------------------------------------*/

#lean_overlay {
position: fixed;
z-index: 10000;
top: 0px;
left: 0px;
height:100%;
width:100%;
background: #000;
display: none;
}


/*---------------------------------------

	EXAMPLES

-----------------------------------------*/

#signup {
	float:left; 
	margin:5px;
	width: 640px;
	background-color:#FFF;
	border-radius:2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4);
	-webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4);
}

#signup-header { background: #64B8FF; padding: 18px 18px 14px 18px; border-bottom: 1px solid #CCC; border-top-left-radius: 5px; -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px; border-top-right-radius: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px; }

#signup-header  h2 { color: #444; font-size: 2em; font-weight: 700; margin-bottom: 3px; text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5); }
#signup-header  p { color: #444; font-size: 1.3em; margin: 0; text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5); text-shadow: none; }

#signup .txt-fld { position: relative; width: 600px; padding: 20px 15px; border-bottom: 0px solid #EEE; text-align: left; }
#signup .btn-fld { width: 630px; overflow: hidden; padding: 12px 20px 12px 20px; }

#signup .txt-fld input { width: 594px; padding: 8px; border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; font-size: 17px; color: #666; background: #FFF; font-family: "Roboto"; outline: none; border-top: 1px solid #CCC; border-left: 1px solid #CCC; border-right: 1px solid #E7E6E6; border-bottom: 1px solid #E7E6E6; }
#signup .txt-fld label { display: block; float: left; width: 630px; padding-top: 0px; color: #999; font-size: 12px; text-align: left;  }
#signup .txt-fld textarea { padding: 8px; font-family: 'Roboto', sans-serif; font-size: 17px; color: #666; background-color: #FFF; border: #CCC; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; resize: none; width: 592px; height: 250px; border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px;}

#signup .txt-fld input.good_input { background: #DEF5E1 url(../img/good.png) 236px center no-repeat; }
#signup .txt-fld input.error_input { background: #FDE0E0; }
  
.modal_close { position: absolute; top: 10px; right: 12px; display: block; width: 16px; height: 16px; background: url(../img/close.png); z-index: 2; }

