/*
 * SimpleModal Confirm 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: confirm.css 114 2008-03-20 00:53:05Z emartin24 $
 *
 */

body {padding:0; margin:0; height:100%; width:100%;}

/* Overlay */
#confirmModalOverlay {background-color:#000000; cursor:wait;}

/* Container */
#confirmModalContainer {height:auto; width:480px; left:50%; top:15%; margin-left:-240px; font-family: Arial, Helvetica, sans-serif; font-size:14px; text-align:left; background:#fff; border:1px solid #333;}
#confirmModalContainer .header {height:30px; width:100%; background:url(../img/header.gif) repeat-x; color:#fff; font-size:1.1em; line-height:30px;}
#confirmModalContainer .header span {padding-left:8px;}
#confirmModalContainer .message {color:#333; text-align: left; margin:0 auto; padding:12px 10px; font-size:1em;}
#confirmModalContainer .buttons {width:160px; float:right; padding:10px 8px 10px;} 
#confirmModalContainer .buttons div {float:right; margin-left:8px; width:70px; height:23px; padding-top: 3px; color:#fff; font-weight:bold; text-align:center; background:url(../img/button.gif) repeat-x; cursor:pointer;} 
#confirmModalContainer a.modalCloseX,
#confirmModalContainer a.modalCloseX:link,
#confirmModalContainer a.modalCloseX:active,
#confirmModalContainer a.modalCloseX:visited {text-decoration:none; font-size:1.1em; position:absolute; top:-1px; left:460px; color:#ddd;}
#confirmModalContainer a.modalCloseX:hover {color:#9bb3b3;}

#confirmModalContainer a.textoBoton:link,
#confirmModalContainer a.textoBoton:active,
#confirmModalContainer a.textoBoton:visited {text-decoration:none; font-size:1.0em; color:#fff;}
#confirmModalContainer a.textoBoton:hover {color:#ededed;}


.yes a {
	background-image: url(../img/btn_aceptar.gif);
	display:block;
	width:70px;
	height:22px;
	margin-top:15px;
	margin-right:10px;
	float:right}

.yes a:hover {
	background-image:url(../img/btn_aceptar_on.gif);
	display:block;
	width:70px;
	height:22px;
	margin-top:15px;
	margin-right:10px;
	float:right}

.no a {
	background-image:url(../img/btn_cancelar.gif);
	display:block;
	width:70px;
	height:22px;
	margin-top:15px;
	margin-right:130px;
	float:right}

.no a:hover {
	background-image:url(../img/btn_cancelar_on.gif);
	display:block;
	width:70px;
	height:22px;
	margin-top:15px;
	margin-right:130px;
	float:right}
.botones{
	padding:0 0 10px 0;
	height:22px;}
