﻿/* File Created: June 15, 2012 */
/* Use specifically for stylesheets related to 3rd party javascript libraries */




/* 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). */
.modalPopup { display: none; }
.modalPopupWindow { display: none; }
.jqmWindow {
    display: none;    
	position: fixed;
	top: 15%;      
	left:50%;   
	background: none repeat scroll 0 0 #DDDDDD;
	border: 20px solid #DDDDDD;
	border-radius: 10px 10px 10px 10px;
	box-shadow: 0 0 20px #000000;
	color: #333333;
	/*border: 1px solid black;*/
	padding: 10px 10px;
	z-index: 999998;
	text-align: left;
}

.jqmOverlay  
{
	background: none repeat scroll 0 0 #000000;
	display: block !important;
	height: 100%;
	left: 0;
	opacity: 0.8;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000; }
.jqmClose
{	
	cursor: pointer;
	display: inline;
	position: absolute;
	right: -35px;
	top: -45px;
	z-index: 999999;
	width: 50px; height: 50px;
	text-indent: -9999px;
	background: transparent url(//localhost:2250/cdn/img/global/close_pop.png) no-repeat top center;	
}

/* 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');
}


