/**{
	-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}*/
[ng-drag], [ng-drag-clone]{
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.drag-object.group{
	background: rgba(255,178,102, 0.1);
}
.drag-object.cible{
	background: rgba(146,99,232, 0.1);
}
.drag-object, [ng-drag-clone], [ng-drop] [ng-drag]{
    /*height: 15px;*/
    color:#000000;
	text-align: center;
    padding-left: 5px;
    padding-right: 5px;
    display: inline-block;
    margin:0 0px;
    cursor: move;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
   /* height: 17px;*/
}
.drag-object [ng-drag]{
   	/*width: 100px;*/
    height: 40px;
    position: absolute;
    top:0; left:0;
    padding: 0;
    margin: 0;
}
[ng-drag-clone]{
    margin: 0;
    border:1px solid aqua;
    border-radius: 6px;
    background: rgba(0,0,255, 0.7);
	color:white;
	height:40px;
   
}
[ng-drag].drag-over{
    border:solid 2px #ED2F94;
}
[ng-drag].dragging{
    opacity: 0.5;
}
[ng-drop]{
    background: rgba(3,130,39, 0.2);
    text-align: center;
    /*height: 60px;*/
    display: block;
    /*margin:20px auto;*/
    position: relative;
    padding:5px;
	border-radius: 10px;
}
[ng-drop].drag-enter{
    border:solid 2px #008427;
}
[ng-drop] span.title{
    display: block;
    position: absolute;
    top:50%;
    left:50%;
    width: 200px;
    height: 20px;
    margin-left: -100px;
    margin-top: -10px;
}
[ng-drop] div{
    position: relative;
    z-index: 2;
}
.nodrag-object-selected{
	color:#4AA7E0;
	background: #EDF2EE;
}
DIV.dropZone{
	margin:5px;
	font-size:8pt;
	border-radius: 5px;
}
.dragGhost{
	font-size:0.8em;
	color:white;
	height:50px !important;
	min-width:300px;
}
#masqueDropZone{
	text-align:center;
	vertical-align:middle;
	position:absolute;
	background-color: rgba(200,200,200, 0.5);
	z-index:100;
	height:155px;
	font-size:30pt;
	color:#555555;
	border-radius: 5px;
}
.my-drop-zone { border: dotted 3px lightgray; }
.nv-file-over { border: dotted 3px red; }