

/* nao permitir selecao de texto */
.jitem {
	position: absolute;
	border: 4px solid rgba(0,0,0,0.5);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.jitem_enabled {}
.jitem_disabled {}

/* camada de bloqueio ao arrastar conteudo reativo */
.jitem_blocklayer {
	display: block;
	top: 30px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	z-index: 20;
	position: absolute;
}

/* sem selecao de texto */
.jitem_blockselect {
	-moz-user-select: none;
	-khtml-user-select: none;
	user-select: none;
	cursor:default;
}

/* conteudo do item */
.jitem_content {color: black; z-index: 10; }


@keyframes jitem_spin { 
  100% { 
    transform: rotateZ(360deg);
  }
}


