.jModal {
	border-radius: 8px;
	background-color: #f2f2f2;
	border: 1px solid #ddd;
	position: absolute;
	position: fixed;
	z-index: 10000;
}

.jModal-sombra {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	display: none;
	position: absolute;
	z-index: 9000;
	text-align: center;
	top: 0;
	left: 0px;
}

.jModal #jmodalheader {
	width: 100%;
	height: 45px;
	background-color: #ddd;
	line-height: 45px;
	padding-left: 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	color: #888;
	font-size: 2.3em;
	border-bottom: 1px solid #bbb;

	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.jModal #jmodalheader #close {
	color: #333;
	float: right;
	/*font-size: 0.8em;*/
	font-weight: bold;
	width: 25px;
	height: 45px;
	/*margin-top: 10px;*/
	margin-right: 15px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	display: block;
}

.jModal #jmodalheader #close div {
	height: 100%;
	padding: 0px;
	line-height: 20px;
	padding-left: 7px;
}

.jModal #jmodalheader #close:hover {
	background-color: #bbb;
	color: #000;
	cursor: pointer;
}

.jModal #jmodalfooter {
	width: 100%;
	height: 10px;
	background-color: #ddd;
	line-height: 10px;
	padding-left: 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	color: #888;
	font-size: 1.5em;
	border-top: 1px solid #bbb;
	border-radius: 0px 0px 4px 4px;
}

.jModal #jmodalcontenido {
	width: 100%;
	overflow: auto;
	padding-left: 25px;
	padding-top: 20px;
	padding-right: 15px;
	padding-bottom: 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	position: relative;
}