html, body	{  
	margin:0; 
	padding: 0;
	width: 100%;
	height: 100%;
	font-family: "AvantGarde Bk BT", Helvetica, Arial, "Franklin Gothic Book";
	background: rgb(240, 240, 240);
}

/* --- Contenedores --- */
.contGrid {
	height: 100%;
	display: grid;
}
.divGrid {
	margin: auto;
	max-width: 600px;
	width: 100%;
}
.divEnc {
	margin: 10px 10px;
}
.divGr {
	margin: 10px 10px;
	padding: 0px 10px 10px 10px;
	border: 1px solid rgb(120,120,120);
	
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
/* --- Formato coment.php --- */
.titulo {
	color: rgb(140,140,140);
	font-size: 40px;
	font-weight: bold;
	letter-spacing: 8px;
	line-height: 1.4;
}
.codigo {
	background: rgb(100, 100, 100);
	color: white;
	font-weight: bold;
	margin: 0px 0px 10px 0px;
	padding: 8px 0px 5px 10px;
	width: 40px;
	display: inline-block;
}
.fecha {
	background: rgb(230, 230, 230);
	color: rgb(120,120,120);
	font-weight: bold;
	margin: 0px 0px 10px 0px;
	padding: 8px 0px 5px 10px;
	width: 200px;
	display: inline-block;
}
.texto {
	color: rgb(100,100,100);
	font-size: 18px;
	line-height: 1.0;
}

/* --- Formato index.php --- */
.tituloI {
	color: rgb(100,100,100);
	font-size: 50px;
	font-weight: bold;
	letter-spacing: 10px;
	line-height: 1.6;
}
.textoI {
	color: rgb(100,100,100);
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 10px;
	line-height: 1.8;
}
label {
	color: rgb(120,120,120);
	font-size: 16px;
}
input[type="text"], select {
	width: 100%;
	height: 32px;
	font-size: 22px;
	color: rgb(180,180,180);
	margin-top: 20px;
	margin-bottom: 30px;
}
textarea {
	width: 100%;
	height: 140px;
	resize: vertical;
	font-size: 22px;
	color: rgb(180,180,180);
	margin-top: 10px;
	margin-bottom: 30px;
}
button {
	min-width: 80px;
	height: 30px;
}


/* --- Formato contenedor mensaje de aviso --- */
#cont_mensaje {
	border: 1px rgb(150,150,150) solid;
	
	-moz-box-shadow:  0px 0px 29px 0px rgb(128,128,128);
	-webkit-box-shadow:  0px 0px 29px 0px rgb(128,128,128);
	box-shadow:  0px 0px 29px 0px rgb(128,128,128);

	max-width: 400px;
	min-width: 320px;
	margin: 10% auto 25px;
}
#cont_mensaje #contTitulo	{
	/*font-weight: bold;*/
	font-size: x-large;
	padding: 20px;
	background-color: #0f95fc;
	color: white;
}
#cont_mensaje #contDescripcion	{
	padding: 20px;
	min-height: 60px;
	border-bottom: 2px green solid;
	background-color: white;
}
#cont_mensaje #contBotones	{
	background-color: white;
	padding: 20px;
}