@import"tablas.css";
body {
	font-family:Verdana, Geneva, sans-serif;
	margin:0 auto;
	background: #CCC;
	font-size:75%;
	color:#172983;
}

#contenedor {
	margin:0 auto;
	padding:0px;
	width:960px;
	min-height:650px;
	background:#FFF;
	box-shadow:0px 0px 15px #333;
}

#tablaini {
	text-align:center;
	height:450px;
	background: url(../images/BackgroundIndex.png) top left no-repeat;
}

/*estilos para los elemntos de un fromulario*/
form {
	background:#FFF;
	width:940px;
	margin:0 auto;
}

/*estilos para los botones*/
a{
	text-decoration:none;
	cursor:pointer;
}

button {
	border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
	-webkit-border-radius: 8px;
	min-width:80px;
	color:#FFF;
	cursor:pointer;
	border:none;
	background:url(../images/degradeabajo-01.png) top left repeat-x;
}
button:hover {
	cursor:pointer;
	border:none;
	background:url(../images/degradeabajo-01.png) bottom left repeat-x;
}

input[type="submit"] {
	border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
	-webkit-border-radius: 8px;
	min-width:80px;
	cursor:pointer;
	border:none;
	color:#FFF;
	background:url(../images/degradeabajo-01.png);
}
input:hover[type="submit"] {
	cursor:pointer;
	border:none;
	background:url(../images/degradeabajo-01.png);
}

input[type="button"] {
		border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
	-webkit-border-radius: 8px;
	min-width:80px;
	color:#FFF;
	cursor:pointer;
	border:none;
	background:url(../images/degradeabajo-01.png) top left repeat-x;
}
input:hover[type="button"] {
	cursor:pointer;
	border:none;
	background:url(../images/degradeabajo-01.png) bottom left repeat-x;
}

/*-----------------[REDONDEAR BORDES]-----------------*/
.redondear {
	/*Para Mozilla*/
	-moz-border-radius:10px;
	/*Para Safari y Chrome*/
	-webkit-border-radius:10px;
	/* Para el estupido IE 8*/
	-ms-border-radius: 10px;
}
.redondearTop {
	/*Para Mozilla*/
	-moz-border-radius-topleft:10px;
	-moz-border-radius-topright:10px;
	/*Para Safari y Chrome*/
	-webkit-border-top-left-radius:10px;
	-webkit-border-top-right-radius:10px;
	/* Para el estupido IE 8*/
	-ms-border-radius-topleft: 10px;
	-ms-border-radius-topright: 10px;
}
.redondearBottom {
	/*Para Mozilla*/
	-moz-border-radius-bottomleft:10px;
	-moz-border-radius-bottomright:10px;
	/*Para Safari y Chrome*/
	-webkit-border-bottom-left-radius:10px;
	-webkit-border-bottom-right-radius:10px;
	/* Para el estupido IE 8*/
	-ms-border-radius-bottomleft: 10px;  
	-ms-border-radius-bottomright: 10px;
}
.redondearLeft {
	/*Para Mozilla*/
	-moz-border-radius-topleft:10px;
	-moz-border-radius-bottomleft:10px;
	/*Para Safari y Chrome*/
	-webkit-border-top-left-radius:10px;
	-webkit-border-bottom-left-radius:10px;
	/* Para el estupido IE 8*/
	-ms-border-radius-topleft: 10px;
	-ms-border-radius-topright: 10px;
}
.redondearRight {
	/*Para Mozilla*/
	-moz-border-radius-topright:10px;
	-moz-border-radius-bottomright:10px;
	/*Para Safari y Chrome*/
	-webkit-border-top-right-radius:10px;
	-webkit-border-bottom-right-radius:10px;
	/* Para el estupido IE 8*/
	-ms-border-radius-topright: 10px;
	-ms-border-radius-bottomright: 10px;
}