a{
	text-decoration:none;
}
html, body{
	-webkit-user-select: none; /* Safari 3.1+ */
	-moz-user-select: none; /* Firefox 2+ */
	-ms-user-select: none; /* IE 10+ */
	user-select: none; /* Standard syntax */
	
	font-family: 'minusculas';
	
	background: black;
}

#fondo_news{
    float: left;
    width: 100%;
    background: rgba(86, 138, 214, 1); /* azul endanza*/
}
/* pagina - contenido */
#contenido_news {
	float: left;
	width: 76%;
	margin-left: 10%;
	padding: 10px 2%;
	color: white;
	
	margin-top: 290px;
	margin-bottom: 20px;
}
    #titulo_news, #subtitulo_news{
        float: left;
        width: 90%;
        margin-left: 5%;
        padding: 1.5% 0;
        text-align: center;
        font-family: 'mayusculas';
    }
     #titulo_news{
         font-size: 2em;
     }
     #subtitulo_news{
         font-size: 2.4em;
     }
    #imagen_news{
        float: left;
        width: 87%;
        margin-left: 5%;
        padding: 1.5%;
        background: white;
        
        -webkit-border-radius: 3px; 
    	-moz-border-radius: 3px; 
    	border-radius: 3px;
    	
    	margin-bottom: 70px;
    }
        #imagen_news img{
		    width: 100%;
        }
    

						
/* Media Queries */
@media screen and (min-width: 1500px) {
	#contenido_news{
		width: 70%;
		margin-left: 15%;
	}
}

@media screen and (max-width: 900px) {
    #imagen_news{
        width: 94%;
        margin: 20px 3%;
        padding: 0;
    }
}

@media screen and (max-width: 700px) {
    #contenido_news{
    	width: 80%;
    	margin-left: 10%;
    }
}

@media screen and (max-width: 500px) {
    #contenido_news{
    	margin-top: 160px;
    }
}

