/* jqModal base Styling courtesy of;
	Brice Burgess <bhb@iceburg.net> */

/* See patches/lt-ie7.css for ie6 specific CSS */

/* 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: 9%;
    left: 50%;
    margin-left: -260px;
    width: 520px;
    background: transparent;
    height: 30px;
    overflow: hidden;
    z-index: 11000;
	}

.lightbox .jqmWindow {
	height: auto;
	}

.jqm-inner {
	background: #333;
	}

.jqm-inner .loading {
	line-height: 30px;
	color: #fff;
	font-weight: bold;
	}

.jqmWindow .media {
	height: 400px;
	width: 520px;
	padding-top: 20px;
	background-color: #000;
	}
	
.jqmWindow .caption {
	background: #333;
	text-align: left;
	color: #fff;
	padding: 10px 60px 10px 20px;
	}

.jqmOverlay { background-color: #000;}

.ffOverlay {opacity:1 !important; background: transparent url(../library/ffoverlay.png);}

.jqmClose {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 30px;
    z-index: 20000;
    margin: 0;
    }
body.lightbox .jqmClose {
    top: 420px; 
	}
.jqmClose a {
    display: block;
    height: 0px;
    line-height: 30px;
    padding-top: 30px;
    color: #999 !important;
    background: #ccc url(../library/media-close.gif) no-repeat;
    cursor: pointer;
    overflow: hidden;
    font-size: 8px;
    }
.jqmClose a:focus,
.jqmClose a:hover {
    background-color: #fff !important;
    }
