@charset "utf-8";
/*--
	Add your style here
--*/ 
.portret{
	margin:0 auto;
	text-align:center;
}
#raz {
  overflow: hidden;  /* полоса прокрутки */ 
  max-height: 400px;
  -webkit-user-select: none; user-select: none;  /* убрать выделение элемента */ 
  position:relative;
 }
#raz:before {  /* картинка в :before не индексируются */ 
  content:url(../map/img/map.jpg); 
  cursor:move;
}
#raz:active {  /* вид курсора CSS */ 
  /*cursor: pointer;
  cursor: grabbing;*/
  cursor:move;  
}
#raz::-webkit-scrollbar {  /* спрятать полосу прокрутки в Chrome */ 
  display: none; 
}