
#fade { /*--Transparent background layer--*/
	display: none; /*--hidden by default--*/
	background: #000;
	position: fixed; left: 0; top: 0;
	width: 100%; height: 100%;
	opacity: .80;
	z-index: 9999;
}
.popup_block{
	display: none; /*--hidden by default--*/
	background: #fff;
	padding: 20px;
	border: 5px solid #ddd;
	float: left;
	font-size: 1.2em;
	position: fixed;
	top: 50%; left: 50%;
	z-index: 99999;
	/*--CSS3 Box Shadows--*/
	-webkit-box-shadow: 0px 0px 20px #000;
	-moz-box-shadow: 0px 0px 20px #000;
	box-shadow: 0px 0px 20px #000;
	/*--CSS3 Rounded Corners--*/
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
img.btn_close {
	float: right;
	margin: -30px -30px 0 0;
}
/*--Making IE6 Understand Fixed Positioning--*/

*html .popup_block {
	position: absolute;
}


/*Form Style Css*/

.quit_textbox  {
background:url("http://theyeshiva.net/content/images/input_text_bg.png") repeat-x scroll 0 0 #FFFFFF;
border:1px solid #9F9F9F;
font-family:arial,verdana,tahoma,sans-serif;
font-size:1.1em;
padding:2px;
}
.quit_text{
font-family:Verdana,sans-serif;
font-size:1.1em;
font-weight:normal;
}

.neatForm {
text-align:left;
font-family:arial;
font-size:17px;
}
.neatForm .label{
float: left;
width: 180px;
}

.neatForm .text, .neatForm .textarea{
width: 180px;
margin-bottom: 5px;
}

.neatForm .radio{
margin-bottom: 5px;
}

.neatForm .textarea{
width: 250px;
height: 150px;
}

.neatForm .boxes{
width: 1em;
}

.neatForm #submitbutton{
margin-left: 120px;
margin-top: 5px;
width: 90px;
}

.neatForm br{
clear: left;
}
/*End Form Style*/

/* jqModal base Styling courtesy of;
	Brice Burgess <bhb@iceburg.net> */

/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
	the Window's z-index value will be set to 3000 by default (via jqModal.js). */
	
.jqmWindow {
    display: none;
    
    position: fixed;
    top: 17%;
    left: 50%;
    
    margin-left: -150px;
    width: 350px;
    
    background-color: #EEE;
    color: #333;
    border: 1px solid black;
    padding: 12px;
}

.jqmOverlay { background-color: #000; }

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.jqm {position:absolute;top:0;left:0;z-index:-1;
	width: expression(this.parentNode.offsetWidth+'px');
	height: expression(this.parentNode.offsetHeight+'px');
}

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html .jqmWindow {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}
