/* 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:-300px;	
    width:626px;
	min-height:220px;
}

.videoWindow {
    display: none; 
    position: fixed;
    top: 17%;
    left: 50%;
    margin-left:-200px;	
    width:416px;
	min-height:395px;
}

.block {
	display: none; 
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left:-125px;
	margin-top:200px;
	min-height:106px;
	background:url(../_img/message_small.gif) no-repeat;
	border:0;
	width:256px;
	height:106px;
}

/* for Internet Explorer */
/*\*/
* html .jqmWindow {
height: 220px;
}

* html .videoWindow {
height: 395px;
}

* html .block {
height: 106px;
}
/**/

#pop {
	position:relative;
	background:#fff;
	width:626px;
	height:auto;
	overflow:auto;
}

#pop_small{
	position:relative;
	background:#fff;
	width:256px;
	height:106px;
	*height:108px;
}

#pop_wide{
	position:relative;
	background:#fff;
	width:450px;
	height:115px;
}

#pop_content_small{
	position:relative;
	border:1px solid #a9a9a9;
	width:210px;
	margin:2px;
	height:82px;
	padding:0 20px 20px 20px;
}

#pop_content_wide{
	position:relative;
	border:1px solid #a9a9a9;
	width:404px;
	margin:2px;
	height:91px;
	padding:0 20px 20px 20px;
}

#pop_content {
	position:relative;
	border:1px solid #a9a9a9;
	width:594px;
	margin:5px;
	padding:0 0 20px 20px;
	overflow:auto;
}

#close {
	position:relative;
	left:-35px;
}

.langWindow{
	display: none; 
    position: absolute;
    top: 20px;
    left: 50%;
    margin-left:-500px;	
    width:1000px;
}

.jqmAccountMenu{ 
    position: absolute;
    top: 218px;
	_top:214px;
    left: 50%;
	margin-left:-479px;
	*margin-left:-480px;
	_margin-left:-479px;
    width:648px;
	z-index: 10;
}

#langWindow1 {
	position: absolute;
	margin-left:256px;
	color:#333;
	width:100px;
	background:#000;
	border-top:2px solid #666;
	border-left:1px solid #666;
	border-right:1px solid #666;
	border-bottom:1px solid #666;
	opacity:.85;filter: alpha(opacity=85); -moz-opacity: 0.85;
}

#langWindow2 {
	position: absolute;
	margin-left:-10px;
	color:#333;
	width:100px;
	background:#000;
	border-top:2px solid #666;
	border-left:1px solid #666;
	border-right:1px solid #666;
	border-bottom:1px solid #666;
	opacity:.85;filter: alpha(opacity=85); -moz-opacity: 0.85;
}

#langMid {
	position:relative;
	_top:-8px;
	padding:12px 0 12px 1px;
	width:98px;
}

.jqmOverlay { background-color: #000; }
.whiteOverlay { background-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');
}

* html .videoWindow {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

* html .block {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

* html .langWindow {
     position: absolute;
}