﻿.jqmWindow {
    display: none;
    
    position: fixed;
    top: 17%;
    left: 50%;
    
    margin-left: -300px;
    width: 600px;
   font-family:"lato", Sans-Serif;
   font-size:1.2em;
   font-weight:300;
  padding: 60px;
  margin-bottom: 30px;
  background-color: #f5f5f5;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;    
    background-color: #f5f5f5;
    color: #333;
}

.jqmWindow p{   font-family:"lato", Sans-Serif;
   font-size:1.2em;
   font-weight:300;}
.jqmWindow  .popup-window-header {
	background-color:#f5f5f5;
	/*border-bottom:1px solid #CCCCCC;
	height:25px;*/
}

.jqmWindow  .popup-window-title 
{
    display:none;
	color:#fff;
}

.jqmWindow  .jqmClose
{
	display:none;
}

.jqmWindow .popup-window-content
{
	padding:10px;
}

.jqmOverlay { background-color: #000; }

* html .jqmOverlay {
	position: absolute;
    top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + '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');
}