/* 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%;
    text-align: left;
    margin-left: -150px;
    width: 300px;
    
    background-color: #fff;
    color: #333;
    border: 1px solid black;
    padding: 6px;  
	z-index: 9999;
}                   

.popupwindow
{
text-align: left;
} 

 

.cmykw
{
	width: 500px;
	margin-left: -250px;  
  	height: 300px;
	overflow: auto;
}
     
.cmykw p
{
	margin: 0 0 10px 0;
}   

.cmykw ul
{
	margin: 0 0 10px 16px;
}

.mail
{
	width: 500px;
	top: 5%;   
	 text-align: left;   
	font-size: 11px;
} 

.mail textarea
{
	text-align: left;
	font: 11px verdana, arial;
	background-color: #fff;  
	width: 98%;
	height: 60%;
}    
.mail #msubjet
{
	text-align: left;
	font: 11px verdana, arial;
	background-color: #fff;  
	width: 98%;
}
  
div.mail img.jqResize {position: absolute; right: 2px; bottom: 2px;}  

.jqmWindow h3
{
	font-size: 13px;
	margin: 0 0 20px 0;
}
       

#mb {
	height: auto; 
	max-height: 400px;
	overflow: auto;
}

.mtitle
{
	background: #f60;
	height: 20px;
	line-height: 20px;
	font-size: 16px;
	color: #fff;    
   	padding: 4px 8px;
	margin: 0 0 12px 0;
	text-weight: bold;
	position: relative;
}    

.mtitle  a.closeMsg 
{
	color: #fff;
	font-size: 11px;
   	padding: 0;
	margin: 0;
	background: none;
	position: absolute;
	right: 12px;
	bottom: 2px;
}                      
.jqmWindow a.closeMsg
{
	padding: 0;
	margin: 0;
	background: none;
	position: absolute;
	right: 2px;
	bottom: 2px;
}
     
.closeLink
{
	position: relative;	
	margin: 20px 0 0 0;
}   

.jqmOverlay { background-color: #000; }

/* 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');
}
