$(window).resize(function(){
						  
if(($(window).width()>1000)){
  $('#contenido').css({
   left: ($(window).width() 
     - $('#contenido').outerWidth())/2,
  });	
}
});


