/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2008 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.css 132 2008-05-23 16:05:17Z emartin24 $
 *
 */

body {
	padding:0;
	margin:0;
	height:100%;
	width:100%;
}
/* Overlay */
#modalOverlay {
	background-color:#000;
	cursor:default;
}
/* Container */
#modalContainer {
	left:50%;
	top:20px;
	margin-left:-260px;
	padding:30px 28px 30px 28px;
	background-color:#fff;
}
#modalContainer a.modalCloseImg {
	display:inline;
	z-index:4000;
	position:absolute;
	top:4px;
	right:10px;
	cursor:pointer;
	background:url(../images/modal/btn_close_modal.jpg) no-repeat;
	width:40px;
	height:17px;
}
#modalContainer #basicModalContent {
	position:relative;
}


/* 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%;
}

.jqmOverlay { background-color: #000; }

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
