/* 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;   
	left:50%;
	top:50%;
	margin-top:-250px;
	margin-left:-375px;
	width:750px;
	height:500px;
	background-color: #EEE;
	color: #333;
	border: 1px solid black;
}
*/
.jqmWindow {
	display: none;    
	position: fixed;   
	left:50%;
	top:50%;
	margin-top:-250px;
	margin-left:-375px;
	width:750px;
	height:500px!important;
	background-color: #EEE;
	color: #333;
	border: 1px solid black;
}
.jqmTitle {
	
	margin: 0;	
	margin-left: auto;
	margin-right: auto;
	padding:10px;
	background:#FFF url(../media/popupmedia/title_bg.jpg) left bottom repeat-x;	
	color:#000;
	font-size:12px; font-weight:bold;
	text-align: center; 
}

.jqmClose {
display:block; border:1px solid #FFF; background:#000; color:#FFF; padding:5px 10px;
}
.jqmClose:hover {
	background:#FFF; color:#000; border-color:#000
}

.jqmOverlay { background-color: #000; }

/*
.jqmTitle { 
	font-size:12px;
	color:#FFF;
	background: #000;
}
*/
  /*
.addtoFave {
	margin: 0;
	margin-left: 5px;
	float: left;
	width: 140px;
	height: 20px;
	font-size:11px;
	background:url(../media/fav_icon.jpg) no-repeat;
	cursor: pointer;
	display: block;
}
#faveAdded {
	margin: 0;
	margin-left: 5px;
	margin-top: -15px;
	float: left;
	display: block;
}   */

#DetailsContent {
	border: none;
	width: 100%;
	height: 100%;
}

#DetailsContentWrap {
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	background:#FFF;
	color:#FFF;
	
}



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