/*
 * 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{
	height:100%;
	margin:0;
	padding:0;
	width:100%;
}

/* Overlay */
#modalOverlay{
	background-color:#000000;
	cursor:auto;
}

/* Container */
#modalContainer{
	height:375px;
	left:50%;
	margin-left:-325px;
	top:15%;
	width:650px;
}
#modalContainer a.modalCloseImg{
	background:url(../img/ico-close.jpg) no-repeat;
	cursor:pointer;
	display:inline;
	height:34px;
	position:absolute;
	right:-35px;
	top:0;
	width:34px;
	z-index:4200;
}
.pop{
	background:#ffffff;
	border:none;
	height:375px;
	margin:0;
	padding:20px;
	width:650px;
}
#pop-up-interna{
	margin:0 0 0 -10px;
	padding:0;
}