/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2007 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.css 114 2008-03-20 00:53:05Z emartin24 $
 *
 */

body {padding:0; margin:0; height:100%; width:100%;}

/* Overlay */
#modalOverlay {background-color:#000; cursor:wait;}

/* Container */
#modalContainer {height:400px; width:600px; left:50%; top:15%; margin-left:-300px; background-color:#fff; border:3px solid #ccc;}
#modalContainer a.modalCloseImg {background:url(../img/basic/x.png) no-repeat; width:25px; height:29px; display:inline; z-index:3200; position:absolute; top:-15px; right:-18px; cursor:pointer;}
#modalContainer #basicModalContent {padding:8px;}

#basicModalContent{
	margin: 0 auto;
	width: 590px;
	height: 390px;
}

#contenido_scroll {
	margin: 0 auto;
	width: 592px;
	height: 392px;
	/*border: 3px solid #999;*/
	/*background: #ccc;*/
	color: #333;
	font-size: 12px;
	/*line-height: 140%;*/
	overflow: scroll; 
	overflow-x: hidden;
}

#contenido_scroll_b {
	margin: 0 auto;
	width: 880px;
	height: 500px;
	/*border: 3px solid #999;*/
	/*background: #ccc;*/
	color: #333;
	font-size: 9px;
	/*line-height: 140%;*/
	overflow: scroll;
	overflow-x: scroll;
	font-family: Arial, Helvetica, sans-serif;
}