/* CSS Document */
/* ----- ESTRUCTURA ----- */
*{	margin:0px;
	padding:0px;}
html {
        background: url(../img/bg.jpg) no-repeat top center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
		filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='.myBackground.jpg', sizingMethod='scale');
-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='myBackground.jpg', sizingMethod='scale')";
}
body{
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#000;
}
#prehome{
	width:100%;
	height:100%;
	min-width:955;
	min-height:600px;
	margin: 0 auto;
}
.entrada{
	width:300px;
	position:relative;
	top:85%;
	left:5%;
}
.entrada li.logotipo{
	background: transparent url(chinchew300x80.png) left top no-repeat;
	height:70px;
	text-indent: -9999px;
}
	
.entrada li{
	list-style:none;
	text-align:center;
}
a{
	font-weight: 500;
	color:#FFF;
	text-decoration:none;
}
a:hover{
	text-decoration: underline;
}

/* ------------- IMAGEN 100% PANTALLA Y FIJA -------------------- */
img.bg {
        /* Set rules to fill background */
        min-height: 100%;
        min-width: 1024px;

        /* Set up proportionate scaling */
        width: 100%;
        height: auto;

        /* Set up positioning */
        position: fixed;
        top: 0;
        left: 0;
}

@media screen and (max-width: 1024px) { /* Specific to this particular image */
        img.bg {
                left: 50%;
                margin-left: -512px;   /* 50% */
        }
}
