/* 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 (in jqModal.js). You
  can change this value by either;
    a) supplying one via CSS
    b) passing the "zIndex" parameter. E.g.  (window).jqm({zIndex: 500}); */
  
.jqmWindow {
    display: none;
    
    position: fixed;
    top: 17%;
    left: 50%;
    
    margin-left: -375px;
/*     width: 750px; */
     width: 549px;

    
    background-color: #E5E5E5;
    color: #AB111A;
    border: 1px solid white;
    padding: 0px;
}

.jqmOverlay { background-color: #232B37;}

/* 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');
}



/* Show only to IE PC \*/
* html .dialogboxhead h2 {height: 1%;} /* For IE 5 PC */





.dialogboxbody {
	margin: 0;
	
/* 	padding: 30px 30px 90px 30px; */
padding: 30px 30px 43px 30px;
}

.dialogcontent {
	background:#E5E5E5;
	padding:1em;
	border:1px solid #dddddd;
}

#dialogSubmit, #dialogClose {
	/*padding:3px;*/
	width:240px;
	background-color:#AB111A;
	Font-Family: Lato; /* (Bold) */
	Font-Weight: 700; /* (Bold)  */
	Size: 16PX;
	Color: #FFFFFF;
	Tracking: 50;
	Text-Transform: Uppercase;
	position: relative;
	z-index:1;
	padding: 15px 20px;
	border: none;
	overflow: visible;
}


.jqmdX { 
	clear:right; 
	float:right; 
	/* padding:0 5px; */ 
	cursor:pointer; 
}

#jqmContent{ 
	width:100%; 
	//height:100%; 
	display: block; 
	clear:both; 
	margin:auto; 
	margin-top:0px; 
	background:#E5E5E5; 
	border:0px solid #444; 
}

.dialogform {
	/*background-color:#E5E5E5;*/
	background-color:#FFF;
	padding: 0 0;
	padding-bottom:0px;
	margin:0; 
}


.dialogbutton:hover {
	background-color:#4697D4;
	color:#ffffff;
	hover:#ffffff;
}

.jqDrag {
  /*width: 595px;*/
  cursor: move;
}


