/*
 * 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, #simplemodal-overlay  {
	background-color:#000;
	cursor:wait;
}

/* Container */
#modalContainer, #modalContainerSmall {
	height:578px;/*616-10-28*/
	width:472px;/*528-28-28*/
	left:50%;
	top:0;
	padding:10px 28px 28px 28px;
	z-index: 1002;
	background-color: #EDE9D8;
    background-image:none;
}

#modalContainerSmall {
	height:250px;
	
}

#modalContainer a.modalCloseImg,  #modalContainerSmall a.modalCloseImg{
	display:inline;
	z-index:2000;
	top:22px;
	right:28px;
	cursor:pointer;
	background:url(../images/modal/btn_close_moda.jpg) no-repeat;
	width:82px;
	height:17px;
	position: absolute;
}

html > body #modalContainer {
      background:url(../images/modal/modal_bg.png) no-repeat;
}


/* 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 */
     
     
div#Submit-popup 
{
	margin-left:-250px;
	background:#fff;
	border:solid 1px #333;
}

div#Submit-popup div.top
{
	background:#fff;
	width:500px;
	height:9px;
	font-size:1px;
}

div#Submit-popup div.bottom
{
	background:#fff;
	width:500px;
	height:5px;
	font-size:1px;
}

div#Submit-popup div.content
{
	padding:3px 13px 20px 30px;
}
