﻿/* jqModal base Styling courtesy of;
/* 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). */

.floaterWindow {
    position:absolute;
    top: 95px;
    width: 902px;
    height:528px;
	background-color:transparent;
	background-repeat:no-repeat;
    background-image:url(http://images.g4tv.com/static/home/g4_floater.jpg);
    color: #333;
    padding: 12px;
    left: 50%;
    margin-left: -453px;
}



.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;
}

.floaterCopy {
    position:relative;
    top: 130px;
	left:280px;
    color: #ffffff;
    font-size:14px;
    width:520px;

}

.floaterArrows
{
	float:left;
	width:30px;
	height:40px;
	color: #ef9c3c;
	font-weight:bold;
}

.floaterLine
{
	float:left;
	width:480px;
	height:40px;
	padding: 0px 0px 5px 0px;
}

.floaterFooter 
{
	padding-top:5px;
    position:relative;
    top: 160px;
	left:525px;
    color: #ef9c3c;
    width:347px;
    height:75px;
	text-align:right;
	font-size:13px;
	line-height:120%;
	font-weight:bold;
}



.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');
}