/* @override http://jer.dev.slidetoplay.com/v2_css/jqModal.css */

/* 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). */
	
.jqmWindow {
    display: none;
    
    position: fixed;
    top: 17%;
    left: 50%;
    
    margin-left: -300px;
    width: 600px;
    
    background-color: #EEE;
    color: #333;
    border: 1px solid black;
    padding: 12px;
}

.jqmWindow.login {
    margin-left: -200px;
    width: 400px;
   	font-size: 14px;
   	background-color: #fff;
    border: 4px solid #cccbc6;
    -moz-border-radius:10px;	-webkit-border-radius:10px;
    padding: 14px 16px;
}

.jqmWindow.video {
    margin-left: -450px;
    width: 860px;
    height: 540px;
   	font-size: 18px;
   	background-color: #fff;
    border: 4px solid #cccbc6;
    -moz-border-radius:10px;	-webkit-border-radius:10px;
    padding: 12px 16px;
	font-weight: bold;
}

.jqmWindow.video iframe {
	width: 880px;
	height: 530px;
	margin-left: -6px;
	border: none;
}

.jqmWindow.login p {
	clear: both;
	margin-bottom: 0;
}

.jqmWindow.login div.action {
	display: block;
	width: 90px;
	float: right;
	margin: 25px -5px 0 0;
}

.jqmWindow.login div.action input {
	color: white;
	background: #3542b5;
	font-weight: bold;
	-moz-border-radius:8px;	-webkit-border-radius:8px;
	padding: 5px 18px;
	opacity: 1;
	border-style: solid;
	border-color: rgba(220,219,214,0.63);
	width: 90px;
}

.jqmWindow.login div.action input:hover {
	background: #15218a;
}

.jqmWindow.login label {
	margin-right: 6px;	
}

.jqmWindow.login input	{
	background: white;
	font-size: 16px;
}

.jqmWindow.login .header {
	font-size: 18px;
	font-weight: bold;
}

.jqmWindow.login ul {
	list-style-type: none;
	margin: 15px 0;
	width: 300px;
	float: left;
}

.jqmWindow.login li {
	text-align: right;
}

.jqmWindow.login .header a.jqmClose{
	position: relative;
	top: -6px;
	right: -8px;
	float: right;
	color: white;
	font-size: 15px;
	background: #b15241;
	-moz-border-radius:5px;	-webkit-border-radius:5px;
	padding: 3px 5px 2px;
	text-decoration: none;
}

.jqmWindow.login .header a.jqmClose:hover{
	background: #b1230a;
	}

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