
/* Medium Devices, Desktops */
@media only screen and (max-width : 1150px) {

	body:before {content: "md";}
	#header .bottom .nav-justified > li a {
    	font-size: .7em;
    	padding: 5px;
	}	
	#productos .producto img {
    margin: 0 auto;
     max-height: 130px; 
     max-width: 130px; 
	}
	
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) 	{

	body:before {content: "sm";}

	
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 540px) {

	body:before {content: "xs";}
	
	#header .bottom .nav-justified > li a {
    	font-size: .8em;
    	padding: 10px;
	}	

	
}




