.modal
{
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba( 0, 0, 0, 0.5 );
	z-index: 999;
}

.modal .modal1_contenido
{
	display: block;
	position: fixed;
	top: 25%;
	left: 30%;
	z-index: 999;
	width: 40%;
	height: 330px;
	background-color: white;
	border-radius: 7px;
	box-sizing: border-box;
	padding: 5px 20px 5px 20px;
	line-height: 150%;
	overflow-y: auto;
	font-size: 10pt;
}

.modal .modal1_contenido .titulo
{
	font-size: 13pt;
	font-weight: normal;
	font-family: 'Trajan Pro';
	margin-top: 15px;
	height: 30px;
	width: 100%;
}

.modal .modal1_contenido .mensaje
{
	width: 100%;
	height: 220px;
	overflow-y: auto;
	margin-bottom: 10px;
}

.modal .modal1_contenido .pie
{
	text-align: right;
}

.modal .modal1_contenido .carga
{
	text-align: center;
	padding-top: 20%;
}

.modal .modal2_contenido
{
	display: block;
	position: fixed;
	top: 30%;
	left: 40%;
	z-index: 999;
	width: 25%;
	height: 150px;
	background-color: white;
	border-radius: 5px;
	box-sizing: border-box;
	line-height: 150%;
	overflow-y: auto;
	font-size: 10pt;
}

.modal .modal2_contenido .titulo
{
	background-color: #428ac6;
	height: 35px;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	box-sizing: border-box;
	padding-left: 10px;
	padding-top: 7px;
	color: white;
}

.modal .modal2_contenido .mensaje
{
	height: 80px;
	padding-left: 10px;
	padding-top: 15px;
	box-sizing: border-box;
}

.modal .modal2_contenido .pie
{
	height: 30px;
	text-align: right;
	box-sizing: border-box;
	padding-right: 10px;
}