
/* -- capa contenedora gral para formato telefono movil*/
#DivContenedorGral {
	margin: 0 auto;
	width: 980px;	
	z-index:0;	
	text-align: center;
	margin-left: auto;
	margin-right: auto;		
}

/* -- boton azul esfumado con sombra*/
.boton-personalizado {
color:#ffffff;
background: linear-gradient(to bottom right, #0888CB, #30B4FA);
border-width: 0px;
border-radius:10px;
#box-shadow: 2px 2px 10px green;
box-shadow: 2px 2px 10px grey;
}

.boton-personalizado:hover {
background: linear-gradient(to bottom right, #0888CB, #AEE1FC);
}


/* -- boton gris esfumado con sombra*/
.boton-personalizadogris {
color:black;
background: linear-gradient(to bottom right, #9B9999, #FAF5F5);  
border-width: 0px;
border-radius:10px;
box-shadow: 2px 2px 10px grey;
}

.boton-personalizadogris:hover {
background: linear-gradient(to bottom right, #D3D0D0, #FAF5F5);
}







/* -- para mostrar mientras una pagina se esta cargando*/
.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../imagenes/cargando.gif') 50% 50% no-repeat rgb(249,249,249);
    opacity: .8;
}