
/**
 * Layout
 *
 * @category	JavaScript
 * @author      Paul Smiechowicz <paul@designofadecade.com>
 * @copyright   2013 Paul Smiechowicz 
 * @version     1.0
 * @license     http://www.opensource.org/licenses/bsd-license.php
 * @link        http://designedit.designofadecade.com/designedit/css/layout

*/

/* fonts */
@import url(//fonts.googleapis.com/css?family=Roboto);

* { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

/* reset */
input, textarea {
    -webkit-appearance: none;
    -webkit-border-radius:0; 
    border-radius:0;
}

select {
    border-radius:0;
    -webkit-border-radius:0;
}



/* animation */
@keyframes rotate
{
	0%   {}
	100% 
	{
		transform: rotate(360deg);
	}
}
@-webkit-keyframes rotate
{
	0%   {}
	100% {-webkit-transform: rotate(360deg);}
}

html {
	touch-action: manipulation;
	-webkit-text-size-adjust:none;
}


/* body */
html, body.de {
	margin:0;
	padding:0;
	width:100%;
	height: 100%; 
	font-family: 'Roboto', sans-serif;		
	font-size:12pt;
	color:#333;
	overflow:hidden !important;
	-ms-touch-action: none;
}
	body.de {
		position: fixed;
	}

	/* OS 7 Hack */
	body.ios7 {
       position: fixed;
       bottom: 0;
       width:100%;
       height: 100%;
	   overflow:hidden
	}


.de_wrapper {
	 position: fixed;
	top:0px;
	left:0px;
	width:100% !important;
	height: 100%;  
	overflow:hidden !important;
}

.de a {
	cursor:pointer;
	color:#00aeff;
}

.1de div {
	display:block;	
}

.de .hide {
	display:none;
}

.de .clear {
	clear:both;
}

.de .notransition {
   -o-transition-property: none !important;
	-moz-transition-property: none !important;
	-ms-transition-property: none !important;
	-webkit-transition-property: none !important;
	transition-property: none !important;
	-o-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-webkit-transform: none !important;
	transform: none !important;
	-webkit-animation: none !important;
	-moz-animation: none !important;
	-o-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
}


/* layout */
.de .center {
	position:relative;	
	margin:0;
	padding:0;
	max-width:1000px;	
	height:auto;
	margin-left:auto;
	margin-right:auto;
}

/* panels */
.de .panels {
	position:relative;
	width:100%;
	height:auto;
}
	.de .panels .header {
		font-size:13pt;
		color:#0085C2;
		height:15px;
		line-height:15px;
		padding:17px 0; 
		cursor:pointer;
		-webkit-touch-callout:none;
		-webkit-user-select:none;
		-khtml-user-select:none;
		-moz-user-select:none;
		-ms-user-select:none;
		user-select:none;
		-webkit-tap-highlight-color:rgba(0,0,0,0);
	}	
		.de .panels .header i {
			position:absolute;
			top:15px;
			right:2px;
			color:#848484; 
			font-size:13pt;
			line-height:20px;
		}
		
		.de .panels .header.info {
			padding-top:7px;
			line-height:19px;
			padding-bottom:27px;
		}	
		
			
		
			.de .panels .header .info  {
				position:relative;
				font-size:9pt;
				color:#969696;
				white-space: nowrap;  
				overflow:hidden;
				text-overflow:ellipsis;
				margin-right:30px;
				margin-left:1px;
			}	
			
			.de .panels .header.open .info {
				color:#ccc;
			}
		
	.de .panels .content, .de .panels .content.close {
		display:none;
		padding-bottom:20px;
	}	
	
		.de .panels .content.open {
			display:block;
		}

	.de .panels .panel {
		padding:0px 20px;
		background-color:#FFF;
	}

	.de .panels .panel:nth-child(even) {
		background-color:#e6e6e6;
	}
	

/* heading */
.de h2, .de h3 {
	margin:0;
	padding:0;
	color:#00aeff;
}	

.de .clError {
	color:#DA3030 !important;	
}

.de button.clError {
	background-color:#DA3030 !important;
	color:#fff !important;
}

.de .clNote {
	color:#666;	
}

/* elements */
.de hr {
	padding:0;
	margin:20px 0;	
	border:none;
	outline:none;
	border-top:1px dotted #D3D3D3;
}


/* loader url(images/loader-default.gif)  */
.de .loader {
	position:absolute;
	top:0px;
	left:0px;
	height:100%;
	width:100%;
	background:center center no-repeat rgba(255,255,255,0.4);
}
	.de .loader:after{	
		position:absolute;
		top:50%;
		margin-top:-15px;
		left: 50%;
		margin-left: -15px;
		content: "";
		border-bottom: 3px solid #ddd;
		border-left: 3px solid #ddd;
		border-right: 3px solid #666;
		border-top: 3px solid #666;
		border-radius: 100%;
		height: 30px;
		width: 30px;
		-webkit-animation: rotate 1s linear 0s infinite;
		-moz-animation: rotate 1s linear 0s infinite;
		-o-animation: rotate 1s linear 0s infinite;
		animation: rotate 1s linear 0s infinite;
	}

	.de .loader.info > div {	
		position:absolute;
		height: 30px;
		width: 80%;
		line-height: 30px;
		top:50%;
		text-align: center;
		margin-top:10px;
		left: 50%;
		letter-spacing: 0px;
		font-size: 12pt;
		font-weight: bold;
		margin-left: -40%;
		color:#666;
	}

	.de .loader.info:after {	
		margin-top:-40px;
	}

/* progress */
.de .progress {
	position:absolute;
	top:0px;
	left:0px;
	height:100%;
	width:100%;
	background: center center no-repeat rgba(255, 255, 255, 0.81);
}
	.de .progress > div {
		position:absolute;
		width: 90%;
		height: 25px;
		top:50%;
		margin-top:-15px;
		border-radius: 5px;
		left: 50%;
		margin-left: -45%;
		background-color: #666;
		overflow: hidden;
	}
		.de .progress > div > div {			
				position:absolute;			
				height: 100%;			
				width: 0;			
				background-color: #0085c2;
		}

	.de .progress > div span {
		position: relative;
		height: 40px;
		width: 80%;
		top: 4px;
		letter-spacing: 0px;
		font-size: 11pt;
		margin-left: 10px;
		color: #ffffff;
		text-transform: uppercase;
	}

/* drag */
.de .drag {	
	position:absolute;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: rgba(255,255,255,0.95);
	padding: 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
	min-width: 300px;
	border-radius:3px;
}

	.de .drag  {
		position: absolute;
		-webkit-touch-callout:none;
		-webkit-user-select:none;
		-khtml-user-select:none;
		-moz-user-select:none;
		-ms-user-select:none;
		user-select:none;
 		pointer-events: none;
	}

	@media screen and (max-width: 400px) 
	{
		.de .drag {	
			left: 10px !important;
			margin-left: 0px !important; 
			width: calc(100% - 20px) !important;
		}
	}	

	.de .drag > img {	
		position: absolute;
		width: 60px;
	}

	.de .drag > div {	
		position: relative;
		height: 21px;
		line-height: 21px;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}

	.de .drag.img > div {	
		margin-left: 64px;
	}

	.de .drag > div label {
		display: inline;
		font-size: 10pt;
		padding-right: 5px;
		font-weight: normal;
		color: #0085C2;		
		text-transform: uppercase;
	}
		.de .drag > div label i {
			width: 20px;
			display: inline-block;
			text-align: center;
		}

		.de .drag > div label i:before {
			position: absolute;
			top:4px;
			left: 6px;
			font-size: 12pt;
			text-align: center;
			color: #666;
		}

	.de .drag > div span {	
		display: inline;	
		font-size: 10pt;
		color: #666;
	}

	/* over */
	.de .drag.over {	
		background: rgba(92,93,95,0.95);
		border: 1px solid rgba(255,255,255, 0.3);
	}

	.de .drag.over > div label {	
		color: #09B2FF
	}

		.de .drag.over > div span {	
			color: #eee;
		}



/* target */
.de_touch_target {	
	position:absolute;
	top:0px;
	left:0px;
	background-color:transparent;
    width: 100px;
    height: 100px;
    border-radius: 50%;
	border:2px  dotted #00aeff;
	opacity:0.50;
	z-index:6100;
	-ms-touch-action: none;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
 	pointer-events: none;
}

/* blanket */
.de_shield {	
	position:absolute;
	top:0px;
	left:0px;
	background-color:transparent;
    width:100%;
    height:100%;
	z-index:9000;
	opacity:0.50;
}

/* scroll */	
.de .scroller
{
	position:relative;
	width:100%;
	height:100%;
	overflow: hidden;
}	
	
	.de .scroller_area
	{
		position:relative;
		top:0px;
		left:0px;
		overflow-y: scroll;
		overflow-x: hidden;
		height:100%;
		-webkit-overflow-scrolling: touch;
	}

		.de .scroller.horizontal .scroller_area {
			overflow-y: hidden;
			overflow-x: scroll;
			width:100%;
			height: auto;
		}
	
		.de .scroller_area::-webkit-scrollbar 
		{
			-webkit-appearance:none;
			width:0;
		}
			
	.de .scroller_content 
	{
		position:absolute;
		top:0px;
		left:0px;
		width: 100%;
		height:auto !important;
		transition-property: top;
		transition-duration: 0;
	}
				
	.de .scroller_bar {
		position:absolute;
		top:0px;
		right:-10px;
		height: 100%;
		width:6px;
		background-color:#CCC;
		opacity: 0;
		transition-property: right, opacity;
		transition-duration: 0s, 0.5s;
		transition-delay: 1s, 0s;	
		overflow: hidden;
	}

		.de .scroller:not(.scroller_disabled) > .scroller_bar.fadein, 
		.de .scroller:not(.scroller_disabled):hover > .scroller_bar 
		{
			transition-property: right, opacity;
			transition-duration: 0s, 0.5s;
			transition-delay: 0s, 0s;
			right:0px;
		    opacity: 1;
		}
						
	.de .scroller_slider 
	{
		position:absolute;
		height:100px;
		width:6px;
		background-color:#666;
		cursor:pointer;	
	}	
	

/* list */
.de .list {
	position:relative;
	width:100%;	
	touch-action: none;	
}	

	.de .list.autoscroll {
		touch-action: auto;
	}
	

	/* thumbs */
	.de .list.thumbs .rows {
		padding:15px 0px 10px 10px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		font-size:0;		
	}

	.de .list .scroller {
		background: #F1F1F1;
	}
	
		.de .list.thumbs:after {
			content: " ";
			display:block;
			clear:both;
		}	
	
		.de .list.thumbs .thumb, .de .arrange.thumb {
			position:relative;
			display:block;
			float:left;
			width: 150px;
			height:auto;
			padding-right:10px;			
			margin-bottom:10px;			
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			-webkit-touch-callout:none;
			-webkit-user-select:none;
			-khtml-user-select:none;
			-moz-user-select:none;
			-ms-user-select:none;
			user-select:none;
		}			

			.de .list.thumbs .thumb img, .de .arrange.thumb img {
				-webkit-touch-callout:none;
				-webkit-user-select:none;
				-khtml-user-select:none;
				-moz-user-select:none;
				-ms-user-select:none;
				user-select:none;
 				pointer-events: none;
			}

			.1de .list.thumbs .thumb > div, .de .arrange.thumb > div {
			
				border: 1px solid #fff;
				border-bottom:none;
			}

			.de .list.thumbs .thumb > input, .de .arrange.thumb > input {
				display: none;
			}
		
			.de .list.thumbs .thumb.placeholder div, .de .list.thumbs .thumb.placeholder span  {
				background: #E6E6E6;				
			}
				.de .list.thumbs .thumb.placeholder span {
					background: #fff;
					color: #fff;
				}
			
				.de .list.thumbs .thumb.placeholder div img {
					visibility:hidden;
				}

			
			.de .arrange.thumb {			
				opacity:0.95;		
			}

			.de .list.thumbs .thumb.outline {
				opacity:0.50
			}
		
			.de .list.thumbs .thumb div, .arrange.thumb div {
				position:relative;
				display:block;
			}	

				.de .list.thumbs .thumb[data-de_selected="true"] > div  {
					background-color:rgb(0,0,0)
				} 	

				.de .list.thumbs .thumb[data-de_selected="true"] > div img {
  					opacity:0.4;
				} 
				
				.de .list.thumbs .thumb[data-de_selected="true"] > div:after {
					position:absolute;
					display:block;
					top:46%;
					margin-top:-12px;
					width:100%;
					height:auto;
					font-family: "Ionicons";
					-webkit-font-smoothing;	
					content: "\f383";
					font-size:25pt;
					text-align:center;
					color:#fff;
				} 
			
			.de .list.thumbs .thumb span, .de .arrange.thumb span {
				position:relative;
				display:block;
				font-style:normal;
				line-height: 30px;
				font-size:9pt;
				color:#666;
				padding: 0 20px 0px 5px;
				background-color: #fff;
				white-space: nowrap;  
				overflow:hidden;
				text-overflow:ellipsis;		
			}

				.de .arrange.thumb.copy > div  {
					background-color:rgb(0,0,0)
				} 	

					.de .arrange.thumb.copy > div img {
	  					opacity:0.4;
					} 
				
					.de .arrange.thumb.copy > div:after {
						position:absolute;
						display:block;
						top:46%;
						margin-top:-13px;
						width:100%;
						height:auto;
						font-family: "Ionicons";
						-webkit-font-smoothing;	
						content: "\f2c7";
						font-size:25pt;
						text-align:center;
						color:#fff;
					} 

				.de .list.thumbs .thumb span i, .de .arrange.thumb span i
				{
					position: absolute;
					top: 0px;
					right: 0px;
					width: 20px;
					height: 30px;					
				}

				.de .list.thumbs .thumb span i:after, .de .arrange.thumb span i:after
				{
					position: absolute;
					top: 0px;
					right: 10px;
					display: block;
					font-family: "Ionicons";
					font-style: normal;
					font-size: 14pt;
					-webkit-font-smoothing;
				    content: "\f397";
				}
		
			.de .list.thumbs .thumb img, .de .arrange.thumb img {
				width: 100%;
				display: block;
			}
	
	/* rows */
	.de .list .rows {
	}	

		/* row */
		.de .list .rows > .row, 
		.de .list .row.header,
		.de .arrange.row  {
			position:relative;
			display:block;
			width:100%;
			height:auto;		
			line-height:26px;
			font-size: 10pt;	
			overflow:hidden;	
			-webkit-touch-callout: none;
	   	    -webkit-user-select: none; 	
		}

			.de .list .row.header {
				font-size: 11pt;
			}
	
			.de:not(.mobile) .list .rows .row:not(.header):hover {
				background-color:#E8E8E8;	
			}
		
			.de .list .rows .row:nth-child(odd) {
				background-color:#F7F7F7;	
			}
			
			.de .list .rows > .row:last-child {
				border:none;
			}
	
			.de .list .rows > .row:after {
				content: " ";
				display:block;
				clear:both;
			}		

			.de .list .rows > .row.placeholder > .columns, 
			.de .list .rows > .row.placeholder > .buttons,
			.de .list .rows > .row.placeholder > input[type=checkbox] {
				opacity: 0 !important;
			}

			.de .arrange.row {
				-webkit-touch-callout:none;
				-webkit-user-select:none;
				-khtml-user-select:none;
				-moz-user-select:none;
				-ms-user-select:none;
				user-select:none;
				-webkit-tap-highlight-color:rgba(0,0,0,0);
				background-color:#FFF;
				opacity:0.8;	
				box-shadow: 0 0px 5px rgba(0, 0, 0, 0.3);			
			}	

			.de .list .rows > .row input[type=checkbox], 
			.de .arrange.row > input[type=checkbox]  {
			    position: absolute;
			    display: inline-block;
			    width: auto;
			  	 margin-left:11px;
				margin-top:9px;
			    margin-right: 6px;
			    padding: 0;
			    border: none;
			    background: none;
			    appearance: none;
			    -webkit-appearance: none;
			    -moz-appearance: none;
			    width: 16px;
			    height: 16px;
			    background: #fff;
			    border-radius: 2px;
			    border: none;
			    outline: none;
			    overflow: visible;
			    background-color: #ddd;
			    border:1px solid #dedede;				
			    line-height:32px;	
			}
				.de .list .rows > .row input[type=checkbox]:checked::after, 
				.de .arrange.row > input[type=checkbox]:checked::after  {
					  position: absolute;
					  content: '';
					  top:3px;
					  left:3px;	  
					  width:10px;
					  height:10px;
					  background-color:#0085C2;
					  border-radius:2px;
					}

			.de .list .rows > .row input[type=checkbox]:checked::after,
			.de .arrange.row > input[type=checkbox]:checked::after  {
			    top: 2px;
			    left: 2px;
			    width: 10px;
			    height: 10px;
			}

		
		
		/* buttons */
		.de .list .rows > .row > div.buttons, .de .list .row.header > div.buttons, .de .arrange.row > div.buttons {
			position:relative;
			display:block;
			width:auto;
			float:right;
			text-align:right;			
			box-sizing:border-box;
			margin:0; 
			padding:0;
			font-size:0;
			white-space:nowrap;
			line-height:0;
			
		}
		
			.de .list .rows > .row > div.buttons button, 
			.de .list .rows > .row > div.buttons a.button, 
			.de .list .row.header > div.buttons button, 
			.de .list .row.header > div.buttons a.button, 
			.de .arrange.row > div.buttons button,
			.de .arrange.row > div.buttons a.button {
				background:none;
				border:none;	
				display: inline-block;		
				height:37px;	
				width: 37px;
				box-sizing: border-box;	
				margin:0;
				padding:0;
				border-radius:0;
			}			
					
				.de .list .rows > .row > div.buttons button i, 
				.de .list .rows > .row > div.buttons a.button i, 
				.de .arrange.row > div.buttons button i, 
				.de .arrange.row > div.buttons a.button i {
					font-size:14pt;
					color:#6D6D6D;
					line-height:34px;
					pointer-events: none;
					user-select:none;
				}
			
				.de:not(.mobile) .list .rows > .row > div.buttons button:hover i, .de:not(.mobile) .list .rows > .row > div.buttons a.button:hover i {
					color:#fff;
				}

		.de .list .columns > div > button, .de .arrange.row > .columns > div > button
		{
			background:none;
			border:none;
			padding:0px 14px;
			height:32px;
			line-height:40px;
			box-sizing: border-box;	
			margin:0;
			border-radius:0;
			font-size:14pt;
			color:#969696;
			line-height:34px;
			margin-left: auto;
			margin-right: auto;
		} 

		.de .list .columns > div.not() > button 
		{
			background:none;
			border:none;
			padding:0px 14px;
			height:40px;
			line-height:40px;
			box-sizing: border-box;	
			margin:0;
			border-radius:0;
			font-size:14pt;
			color:#969696;
			line-height:45px;
			margin-left: auto;
			margin-right: auto;
		} 
		
		
		/* columns */
		.de .list.buttons .rows > .row > .columns, 
		.de .list.buttons .row.header > .columns, 
		.de .list.select .rows > .row > .columns, 
		.de .list.select .row.header > .columns,
		.de .list .rows > .row > .columns, 
		.de .list .row.header > .columns,
		.de .arrange.row > .columns
		{
			position:relative;
			display:block;
			overflow:hidden;
			white-space:nowrap;
			box-sizing:border-box;			
		} 
	
			/* select */
			.de .list.select .rows > .row > .columns, 
			.de .list.select .row.header > .columns, 
			.de .arrange.select.row > .columns {
				border-left:1px solid #fff;	
				margin-left:38px;
			} 
			
			.de .list .rows > .row > .columns div, 
			.de .list .row.header > .columns div,
			.de .arrange.row > .columns div {
				position:relative;
				display:block;
				float:left;
				width:33%;
				overflow:hidden;
				padding:4px 0px;
				padding-left:5px;
				white-space:nowrap;
				text-overflow:ellipsis;
				-webkit-box-sizing: border-box;
				-moz-box-sizing: border-box;
				box-sizing: border-box;
			}

				.de .list .rows > .row > .columns div input {
					margin-left: -4px;
				}

				.de .list .rows > .row > .columns div.preview {
					cursor: pointer;
				}

				.de .list .rows > .row > .columns div.preview:after,
				.de .arrange.row > .columns div.preview:after {
					position:absolute;	
					content: "\f03e";
					margin-left: 5px;
					margin-top: 1px;
					font-family: FontAwesome;
					font-style:normal;
					font-size:11pt;
					color:#bdbdbd;
					font-weight: normal;
				}

				.de .list .rows > .row > .columns div span,
				.de .arrange.row > .columns div span {
					font-weight: bold;
					font-size: 9pt;
				    padding: 2px 4px 2px 2px;
					display: none;
				}

				
				.de .list .rows > .row > .columns div.bold, 
				.de .list .row.header > .columns div.bold,
				.de .arrange.row > .columns div.bold {
					font-weight: bold;
				}

				.de .list .rows > .row > .columns div.center, 
				.de .list .row.header > .columns div.center,
				.de .arrange.row > .columns div.center {
					text-align: center;
					padding-right:5px;	
				}

				.de .list .rows > .row > .columns div.right, 
				.de .list .row.header > .columns div.right,
				.de .arrange.row > .columns div.right {
					text-align: right;
					padding-right:10px;	
				}
		
				.de .list .rows > .row > .columns div:first-child, 
				.de .list .row.header > .columns div:first-child,
				.de .arrange.row > .columns div:first-child {
					width:34%;	
				}

		
			.de .list .rows > .row > .columns:after, 
			.de .list  .row.header > .columns:after,
			.de .arrange.row > .columns:after {
				content: " ";
				display:block;
				clear:both;
			}
			
			/* thumbs */
			.de .list.thumbs .row.header > .columns div:first-child
			{
				width:100%;		
			}

		/* compact */

			.de .list.compact .row.header > .columns div, 
			.de .list.thumbs .row.header > .columns div {
				display:none; 
			}

			.de .list.compact .row.header:not(.sort) {
				display:none;
			}

			.de .list.compact .row.header > .columns div.default, 
			.de .list.thumbs .row.header > .columns div.default, 
			.de .list.compact .row.header > .columns div.up, 
			.de .list.compact .row.header > .columns div.down, 
			.de .list.thumbs .row.header > .columns div.up, 
			.de .list.thumbs .row.header > .columns div.down {
				display:block;
				width: 100%;
			}
			
			.de .list.compact .rows > .row > .columns div,
			.de .arrange.row.compact > .columns div {
				width: 100% !important;
				text-align: left !important;
				line-height: 9pt;
				font-size: 9pt;
			}

			.de .list.compact .rows > .row > .columns div:first-child,
			.de .arrange.row.compact > .columns div:first-child {
				font-weight: bold;
				line-height: 14pt;
				font-size: inherit;
			}

			.de .list.compact .rows > .row > .columns div span,
			.de .arrange.row.compact > .columns div span {
				display: inline;
			}

			.de .list.compact .rows > .row > .columns div:first-child span,
			.de .arrange.row.compact > .columns div:first-child span {
				display: none;
			}

			.de .list .rows > .row > .columns div span.info  {
				display: block;
			    line-height: 14pt;
			    font-size: 10pt;
			    color: #333;
			    font-size: 9pt !important;
			    margin: 5px 7px 10px;
			    border-left: 1px solid #CACACA;
			    padding-left: 10px;
			    text-overflow: ellipsis;
			    word-break: break-all;
			    font-weight: normal;
			}

			.de .list.compact .rows > .row > .columns div span.info  {
				margin-top:14px;
			}

			.de .list .rows > .row > .columns div span.info  br:first-child {
				display: none;
			}

			.de .list.compact .rows > .row > .columns,
			.de .arrange.row.compact > .columns {
				padding: 5px 0;
			}

			.de .list.compact .rows > .row input[type=checkbox],
			.de .arrange.row.compact input[type=checkbox] {
				margin-top: 10px;
			}

			.de .list.compact .rows > .row > .buttons button:not(.important), 
			.de .list.compact .row.header > .buttons button:not(.important),
			.de .arrange.row.compact > .buttons button:not(.important) { 
				display:none; 
			}

		/* options */
		.de .list .rows > .row > .columns div > i,
		.de .arrange.row > .columns div > i
		{
		    display:inline-block;
		    position:relative;
		    height: 15px;
		    top:0px;
		    line-height:16px;
		    font-size:8pt;
		    font-weight:normal;
		    padding:0;
		    margin-left:5px;
		    width:17px;
		    background: #E4E4E4;
		    text-align:left;
		    text-indent:2px;
		    border-radius: 3px;
		    cursor: pointer;
		    color: rgb(0, 133, 194);
		}

		.de .list .rows > .row > .columns div span.toggle,
		.de .arrange.row > .columns div span.toggle 
		{
		    display:inline-block;
		    position:relative;
		    height: 15px;
		    top:0px;
		    line-height:16px;
		    font-size:7pt;
		    font-weight:normal;
		    padding:0;
		    width:90%;
		    max-width: 100px;
		    background: #E4E4E4;
		    text-align:left;
		    text-indent:6px;
		    border-radius: 3px;
		    cursor: pointer;
		}	

			.de .list.compact  .rows > .row > .columns div span.toggle,
			.de .arrange.row.compact > .columns div span.toggle
			{
				width:55px;
			}

			.de .list .rows > .row > .columns div span.toggle:after,
			.de .arrange.row > .columns div span.toggle:after 
			{
			  position: absolute;
			  display: block;
			  top:4px;
			  margin-left:26px;
			  width: calc(100% - 31px);
			  height: 6px;
			  border-radius: 2px;
			  background: rgb(0, 133, 194);
			  content: '';
			  transition: all 0.3s ease;
			}

			.de .list .rows > .row > .columns div span.toggle.off,
			.de .arrange.row > .columns div span.toggle.off 
			{
				text-align: right;
				padding-right: 6px;
				-webkit-box-sizing: border-box;
				-moz-box-sizing: border-box;
				box-sizing: border-box;	
				color: #ACACAC;
			}

				.de .list .rows > .row > .columns div span.toggle.off:after,
				.de .arrange.row > .columns div span.toggle.off:after 
				{
				  margin-left:6px;
				  background: #C7C7C7;
				}

			.de .list .rows > .row > .columns div span.toggle.disabled,
			.de .arrange.row > .columns div span.toggle.disabled 
			{
				pointer-events: none;
				cursor: none;
				opacity: 0.30;
			}	

				.de .list .rows > .row > .columns div span.toggle.disabled:after,
				.de .arrange.row > .columns div span.toggle.disabled:after
				{
					background: #C7C7C7;
				}
			
		/* header */
		.de .list .row.header {
			background-color: #E4E4E4;
			color:#484848 !important;
			color: #0085C2 !important;
			border:none;
			-webkit-touch-callout:none;
			-webkit-user-select:none;
			-khtml-user-select:none;
			-moz-user-select:none;
			-ms-user-select:none;
			user-select:none;
			border-top: 1px solid #fff;
			border-bottom: 1px solid #fff;
		}
		
			.de .list .row.header > div.columns {
				
				border-right:none				
			}
		
				.de .list .row.header > div.columns div {
					border-right:1px solid #fff;
					padding:5px 5px 4px 5px;
					font-size: 10pt;
				}		
					.de .list .row.header > .columns div.up,
					.de .list .row.header > .columns div.down {
						padding-right:30px;
					}				
				
					.de .list .row.header.sort > div.columns div {
						cursor:pointer;
					}
					
					.de:not(.mobile) .list .row.header.sort > div.columns div:hover {
						background-color:#848484;
						color:#FFF;				
					}	
					
				
				/* direction */
				.de .list .row.header > .columns div > span {
					position:absolute;
					width:30px;
					height:100%;
					right:0px;
					top:0px;
					padding:0;
					margin:0;		
					cursor:pointer;
				}	
					/* down */					
					.de .list .row.header > .columns div.down > span:after, .de .list .row.header > .columns div.up > span:after {
						content:" ";
						position:absolute;
						width:0;
						height:0;
						right:10px;
						top:15px;
						padding:0;
						margin:0;			
						border: 6px solid;		
						border-color: #828282 transparent transparent transparent;
					}	
					
					/* up */
					.de .list .row.header > .columns div.up > span:after 
					{	
						top:8px;	
						border-color: transparent transparent #828282 transparent;
					}	
					
						/* hover */
						.de .list .row.header > .columns div.down:hover > span:after {
							border-color: #fff transparent transparent transparent;
						}	
						.de .list .row.header > .columns div.up:hover > span:after {
							border-color: transparent transparent #fff transparent;
						}					
			
						
		
		    /* checkbox button */
			.de .list .row.header > button {
					position:absolute;
					border:none;
					background:none;
					left:1px;
					padding:0 16px;	
											
				}
				
				.de .list .row.header button i {
					font-size:14pt;
					color:#555;	
					line-height:39px;	
				}
				
					.de .list .row.header button:hover i {
						color:#0085C2;
					}
			
			/* app buttons */
			.de .list .row.header > .buttons, .de .list >  .rows > .row > .buttons {
				height:1px;
				font-size:14pt;
				color:#555;
			}
			.de .list .row.header > .buttons button i {
				font-size:14pt;
				color:#555;
			}
			
				.de:not(.mobile) .list .row.header > div.buttons button:hover i, .de:not(.mobile) .list .row.header > div.buttons a.button:hover i {
					color:#0085C2;
				}		
		
		/* pagination */
		.de .list > .footer {
			position:relative;
			display:block;
			width:100%;
			height:26px;
			background-color:#E4E4E4;	
			border-top: 1px solid #fff;	
			overflow:hidden;
			line-height:27px;
			font-size:11pt;
		}				
		
			.de .list > .footer .pages {
				position:relative;
				display:block;
				overflow:hidden;
				white-space:nowrap;
				margin-left:38px;
				border-left:1px solid #fff;
				box-sizing: border-box;
				font-size:0;
			}
		
				.de .list > .footer .pages button {
					top:0px;
					margin:0;
					width:36px;
					height:26px;
					padding:0 8px;
					background:none;
					border:none;
					border-right:1px solid #fff;				
					line-height:30px;					
					text-align:center;
					border-radius:0;
					font-weight: normal;
					color: #484848;			
					box-sizing: border-box;
				}
				
					.de:not(.mobile) .list > .footer .pages button:hover {
						background-color:#848484;
						color:#FFF;
					}
					
					.de .list > .footer .pages button.selected {
						background-color:#BDBDBD;
					}


			.de_ui_dialog div.list.pages button {
				width: calc(20% - 10px);
				margin: 0 10px 10px 0;
			}
				
				.de_ui_dialog div.list.pages button:nth-child(5n) {  
					margin-right: 0;
				}
				
			.de .list > .footer div.info {
				font-family:Arial, Helvetica, sans-serif;
				float:right; 
				margin:0;
				padding:0 15px;
				border-right:1px solid #fff;		
				box-sizing: border-box;
				font-size:9pt;
				color:#484848;				
			}	

			.de .list > .footer div.views {
				font-family:Arial, Helvetica, sans-serif;
				float:right; 
				margin:0;
				padding:0;
				box-sizing: border-box;
				font-size:9pt;
				color:#484848;	
				line-height: 23pt;				
			}	

				.de .list.compact > .footer div.views {
					display: none;
				}

			.de .list > .footer div.settings {
				position: absolute;
				top:0px;
				left: 0px;	
				width: 38px;	
				line-height: 23pt;	
			}	
				
				.de .list > .footer div.settings button, .de .list > .footer div.views button {
					border-radius:0;
					background: none;
					font-weight: normal;
					padding: 0;
					width: 38px;
					text-align: center;
				}	

				.de .list > .footer div.views button {
					margin: 0 5px;
					width: 20px;
				}

				.de .list > .footer div.settings button i, .de .list > .footer div.views button i {
					font-size: 12pt;
					color: #5C5D5F;
				}
				
		
		
			
/* table */
.de .table {
	position:relative;
	width:100%;		
}
	.de .table > .row {
		position:relative;
		display:block;
		width:100%;		
		height:25px;		
		padding:4px 0px;	
		line-height:25px;
		overflow:hidden;	
	}
	
		.de .table > .row.onclick {
			cursor:pointer;	
		}
	
		.de .table > .row:after {
			content: " ";
			display:block;
			clear:both;
		}

		.de .table > .row > div {
			position:relative;
			display:block;
			overflow:hidden;
			margin-right:60px;		
			padding-left:10px;			
			white-space:nowrap;  
			font-size:11pt;				
			text-overflow:ellipsis;	
			-webkit-box-sizing: border-box;
	    	-moz-box-sizing: border-box;
			box-sizing: border-box;		
		}	
			.de .table > .row:nth-child(odd)
			{
				background-color:#f1f1f1;	
			}	
			
			.de .table > .row:not(.info):hover {
				background-color:#54c5fa;	
			}	
			
			.de .table > .row em {
				font-weight:normal;
				font-size:8pt;			
			}
			
			.de .table > .row > div i {
				color:#333;	
			}		
		
			/* stretchy */
			.de .table > .row:not(.stretchy) > div:not(.info):last-child {
				position:absolute;
				display:block;
				top:4px;			
				right:0px;
				width:auto;
				margin:0;
				float:left;
			}
		
			.de .table > .row:not(.stretchy) > div:not(.info):only-child {
				position:relative;
				display:block;
				overflow:hidden;
				margin-right:60px;		
				text-indent:10px;				
				white-space:nowrap;  			
				text-overflow:ellipsis;		
			}				
			
			/* columns */
			.de .table > .row > div.columns div {
				position:relative;
				display:block;
				float:left;
				width:30%;
				overflow:hidden;
				white-space:nowrap;  
				text-overflow:ellipsis;	
				-webkit-box-sizing: border-box;
				-moz-box-sizing: border-box;
				box-sizing: border-box;		
			}		
			
		
			/* status */
			.de .table > .row > div.status {
				float:right; 
				margin:0; 
				padding:0; 
				text-indent:0; 
				padding-right:10px; 
				margin-left:20px;	
			}	
			
		/* info */			
		.de .table > .row.info {
			cursor:pointer;
		}
		
			.de .table > .row.info.open {		
				height:auto;
			}
		
			.de .table > .row div.info:before {
				content: " ";
				display:block;
				clear:both;
			}
		
			.de .table > .row div.info  
			{
				position:relative;
				34border-top:1px solid #ccc;
				45padding-top:5px;
				margin:10px 10px;
				margin-top:0px;
				top:0;
				font-size:10pt;
				line-height:normal;
				white-space:normal;
				color:#666;
				float:none;
			}	
			
				.de .table > .row div.info div 
				{
					position:relative;
					word-break:break-all;
					margin:0;
					text-indent:0;
				}
			
		/* button */
		.de .table > .row button, .de .table > .row a.button {
			position:relative;
			display:inline-block;
			width:auto;
			text-indent:0;
			padding:2px 5px;
			margin:0;
			margin-right:4px;
			font-size:9pt;
			color:#333;
			font-weight:bold;		
			background: #f5f5f7;
			background:none;
			border:1px solid #fefef;
			border:none;	
			border-radius:2px;
			cursor:pointer;
			text-decoration:none;
		}
			.de .table > .row button, .de .table > .row a.button {
				padding:2px;			
			}
		
			.de .table > .row button i, .table > .de .row a.button i {
				font-size:12pt;
				line-height:20px;
				color:#555555;
			}
			
			.de.not(.mobile) .table > .row button:hover i, .de.not(.mobile) .table > .row a.button:hover i {
					color:#fff;
				}			
				
				
				
		
/* status */	
.de .status > div 
{
	position:relative;
	display:block;
	overflow:hidden;
	margin-right:60px;			
	white-space:nowrap;  			
	text-overflow:ellipsis;		
}
	
	.de .status > div:first-child {
		float:right; 
		margin:0; 
		padding:0; 
		text-indent:0;  
	}
		
		
/* file upload */		
.de .fileupload {
	position:relative;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	height:auto;
}
	.de .fileupload > .status {
		margin:0 10px; 
		margin-bottom:6px;
		height:20px;
		line-height:20px;
		font-size:10pt; 	
	}
	
	.de .fileupload > .notification {
			position:relative;
			height:200px; 
			margin-bottom:10px; 
			padding:8px 0;	
			border-top:1px dotted #D3D3D3; 
			border-bottom:1px dotted #D3D3D3; 		
		}
		
		.de .fileupload > .notification > .fa-file
		{
			position:absolute;
			top:0px;
			display:block;
			width:100%;
			font-size:100pt;
			opacity:0.20;
			text-align:center;
			vertical-align:middle
		}
	
		.de .fileupload > .notification .table .progress {		
			position:absolute; 
			top:0px; 
			height:100%; 
			width:0%; 		
			background-color:#00aeff; 		
			opacity:.20	
		}
	
		.de .fileupload .notification.drop .rows 
		{
			opacity:.50;
		}
	
		.de .fileupload .notification.drop .fa-file
		{
			display:block !important;
			color:#00aeff;
			opacity:.60;	
		}
	
	.de .fileupload > .right {
		margin:0 10px; 
		height:45px; 
		line-height:45px; 	
	}
	
	.de .fileupload > .right > .fallback {
		width:300px;
		height:23px;
		display:inline-block;
		overflow:hidden;
	}
	
		.de .fileupload > .right > .fallback form {
			position:absolute;
			width:300px;
			margin:0;
			padding:0;
		}
		
			.de .fileupload > .right > .fallback form input {
				font-size:9pt;
			}


/* nav */	

	/* side */	
	nav.side {
		position:absolute;
		top:0px;
		margin:0;
		padding:0;
		width:300px;
		left:-300px;
		height:100%;
		background-color:#272727;
		color:#fff;
		-webkit-touch-callout:none;
		-webkit-user-select:none;
		-khtml-user-select:none;
		-moz-user-select:none;
		-ms-user-select:none;
		user-select:none;
		-webkit-tap-highlight-color:rgba(0,0,0,0);
		overflow:hidden;	
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;	
		-moz-transition: 0.15s all;
		-webkit-transition: 0.15s all;
		-o-transition: 0.15s all;
		-ms-transition: 0.15s all;
	}
	
		nav.side.open {
			left:0px;
		}
		
		.navsideleft {
			-moz-transition: 0.15s all;
			-webkit-transition: 0.15s all;
			-o-transition: 0.15s all;
			-ms-transition: 0.15s all;
			padding-left:0px;
			margin-left:0px;
		}
		
		.navsideopen {
			padding-left:300px;
			margin-left:0;
		}
		
		/* On smaller screens move to left */	
		@media screen and (max-width: 700px) 
		{
			.navsideopen {
				padding-left:0;
				margin-left:300px;
			}
		}	
		
		/* iPhone */	
		@media screen and (max-width: 320px) 
		{
			nav.side {
				width:276px;
				left:-276px;
			}
			
			.navsideopen {
				margin-left:276px;
			}
		}	
		
		nav.side ul {
			position:relative;
			padding:0;
			margin:0;
			background-color:#2F2F2F;
		}
			
			nav.side:after {
				position:absolute;
				height:100%;
				top:0px;
				right:-1px;
				width:1px;
				content: " ";
				display:block;
				box-shadow: 0px 4px 12px 1px #272727;
			}		
		
			nav.side li {
				list-style: none;
				margin:0;
				padding:0;
				color:#fff;
			}
		
			nav.side > ul > li, nav.side > div > div > ul > li {
				position: relative;
				display: block;
				margin: 0;
				border-bottom:1px solid #5c5d5f;
			}
				nav.side  li > a {
					cursor:pointer;	
				}
		
				nav.side > ul > li > a, nav.side > div > div > ul > li > a {
					position: relative;
					display: block;
					padding: 14px 16px;
					line-height: 15px;
					margin: 0;
					color:#fff;
					text-decoration:none;
					text-transform:uppercase;
					font-size: 12pt;
					cursor:pointer;	
					background-color: #444;

					-webkit-touch-callout:none;	
				}
				
					nav.side a i {
						margin-right:6px;
						font-size:13pt;
						color:#9a9a9a;
					}
					
					nav.side a i.right {
						position:absolute;
						top:1px;
						right:15px;
						line-height: 15px;
						padding: 14px 0;
						font-size:13pt;
						cursor:pointer;
						color:#DBDBDB;
					}
					
					
					
					@media (min-width:600px) { 
						nav.side > ul > li > a:hover, nav.side > div > div > ul > li > a:hover {
							background-color:#232323;
							color:#fff;
						}
					}
					
						nav.side > ul > li > ul, nav.side > ul > li > ul > li > ul, nav.side > div > div > ul > li > ul, nav.side > div > div > ul > li > ul > li > ul {
							display: none;				
						}
					
						nav.side ul li ul {
							position: relative;
							display: none;
							left: 0px;
							width: 100%;
							-webkit-box-sizing: border-box;
							-moz-box-sizing: border-box;
							box-sizing: border-box;
							background-color:#292929;					
						}
							nav.side > ul > li > ul, nav.side > div > div > ul > li > ul {
								border-top:1px solid #5c5d5f;
							}
							
							nav.side ul li ul li {
								position: relative;
								float: none;
								width: 100%;
								height: auto;
								overflow:hidden;
							}
								nav.side ul li ul li a {
									position: relative;
									display: block;
									width: 100%;
									height: auto;
									padding: 14px 16px;
									padding-left:40px;															
									font-size: 12pt;
									color:#fff;
									text-decoration:none;
									-webkit-box-sizing: border-box;
									-moz-box-sizing: border-box;
									box-sizing: border-box;
									border-bottom:1px solid #464646;
									background-color:#2F2F2F;
									
								}	

								nav.side ul li ul li.selected {
									border-bottom: 1px solid #464646;
									margin-top: 4px;
									padding-bottom: 4px;
								}

								
								nav.side ul li ul li.selected ul {
									background-color:#2F2F2F;
									padding-bottom: 16px;
									margin-top: -5px;
								}
								

								nav.side ul li ul li:last-child, nav.side ul li ul li:last-child a {
									border-bottom: none;
								}
								    
								
								nav.side ul li ul li.selected  > a  {
									color: #0085C2;
								    text-transform: uppercase;
								    background-color: #2F2F2F;
								    border: none;
								}

								nav.side ul li ul li:not(.selected)  a:hover  {
									background-color: #232323;
								}
								
								nav.side li.selected > ul {
									display:block
								}
									
									nav.side ul li ul li ul li a {
										padding: 8px 16px;
    									padding-left: 55px;
										font-size: 11pt;
										background-color:#2F2F2F;
										border: none;
									}

										
									
									
									
						
					
/* header */	
header {
	position:relative;
	display:block;
	top:0px;
	left:0px;
	margin:0;
	padding:0;
	width:100%;
	height:35px;
	line-height:36px;
	background-color:#404040;
	box-shadow:-1px 0px 10px rgba(0, 0, 0, 0.3);
	color:#fff;
	border-bottom: 1px solid #5C5D5F;
	overflow:hidden;
}	
	.header_shadow {
		 position:absolute;
		 top:35px;
		 height:1px;
		 width: 100%;
		 box-shadow:2px 3px 12px rgba(0, 0, 0,0.6);
	}

	header > div
	{		
	}
			
	header .menu
	{
		position:absolute;
		float:none;
		display:block;
		height:35px;
		color:#fff;
	}
	
		header button, header .menu button
		{
			padding:0 11px;			
			font-size:20pt !important;
		}
		
		header button i, header .menu button i
		{
			font-size:20pt !important;
		}
	
	header .heading
	{
		position:relative;
		margin-left:40px;
		margin-right:50px;
		font-size:11pt;	
		white-space: nowrap;  
		overflow:hidden;
		text-overflow:ellipsis;
		text-transform: uppercase;
	}
	
		header .heading a:first-child
		{
			font-size:11pt;
			margin-left:0;
			color:#fff;
		}
	
		header .heading a
		{
			margin:0 2px;
			color:#fefefe;
			font-size:11pt;
		}
	
	header > .right
	{
		position:absolute;
		top:0px;
		right:0px;			
		background-color:rgba(255,255,255,0.1);
		font-size:0;
		overflow:hidden;
	}

	header > .notifications {
		position:absolute;
		top:0px;
		right:0px;			
		background-color:rgba(255,255,255,0.1);
		font-size:0;
		overflow:hidden;
	}
	
	header button, header .menu button {
		border:none !important;	
		background:none !important;	
		height:35px !important;
		line-height:20px !important;
		margin:0 !important;	
	}
	
	header > .right button {
		padding:0 20px;
	}
	
	@media screen and (max-width: 480px) 
	{
		header > .right button {
			display:none;
		}
		
		header > .right button:last-child {
			display:block;	
		}
	}	
	
	header button:hover, header button.selected, header .menu button:hover, header .menu button.selected {
		background-color:#3A3A3A !important;
	}
	
	header button i, header .menu button i {
		color:#0085C2 !important;	
		font-weight:normal !important;	
	}
	
	header > .right button i {
		font-size:16pt !important;	
	}
			
			
			
/* app */			
.de .app {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	overflow:hidden;
	1padding-left:350px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}	

	.de .app > .content {
		position:relative;
	}	
	
	
	
/* menu */			
.de_menu_context {
	position:absolute;	
	padding:0;
	display:block;
	background-color:#FFF;		
	border-radius:2px;
	background:#fafafa;
	overflow:hidden;
	box-shadow: 0 0px 5px rgba(0, 0, 0, 0.3);
	color:#666;
	font-size:11pt;
	min-width:150px;
	max-width:250px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

	.de_menu_context:focus {
		outline: none;
	}

	.de_menu_context ul {
		margin:0;
		padding:5px 0;
		list-style:none;
	}

	@media screen and (max-width: 400px) 
	{
		.de_menu_context {	
			max-width: calc(100% - 20px) !important;
		}
	}	

	.de_menu_context li {
		margin:0;
		padding:0;
		cursor:pointer;
		white-space: nowrap;
		padding:4px 20px;
		overflow: hidden;
    	text-overflow: ellipsis;
	}

	.de_menu_context li i {
		position: absolute;
		margin-top:-4px;
		right: 20px;
		font-size:16pt;
	}
	
	.de_menu_context li:hover {
		background:#E6E6E6;
	}
	
	
	.de_menu_context li.break {
		padding:0px 15px;
		margin:8px 0;
		height:0px;
		border-top:1px solid #D3D3D3;			
	}
	
	.de_menu_context li.heading:hover {
		background:none;
	}
	
	.de_menu_context li.heading
	{
		color: #00aeff;
		text-transform: uppercase;
		cursor: default;
		font-size: 10pt;
		white-space: nowrap;  
		overflow:hidden;
		text-overflow:ellipsis;
	}
	

/* layout break */		
.layoutbreak {
	position:absolute;
	top: 0px;
	left: -10px;
	width: 10px;
	height: 100%;
	background-color: #C5C5C5;
	cursor: ew-resize;
}

	.layoutbreak:before{
		position: absolute;
		top: calc(50% - 20px);
		left: 3px;
		width: 1px;
		height:40px;
		border-right:2px solid #E0E0E0;
		content: ' ';
	}


/* tree */	
.tree {
	position: relative;
	background-color: #E6E6E6;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px;
	font-size: 11pt;
}
	
	.tree ul, .tree ul li {		
		top:0;
		left:0;
		margin:0;
		padding:0;
		list-style-type: none;				
	}
	
		 .tree ul li {
			position:relative			
		}

		
		.tree ul div, .tree.drag div {
			position:relative;
			top:6px;
			left:30px;
			width:auto;
			font-size: 10pt;
			padding:5px 40px 5px 0;
			margin:0;
			font-weight:normal;
			white-space: nowrap;
			display:inline-block;
			cursor:pointer;
			background: rgba(255, 255, 255,0);
		}	
			.tree ul li.selected > div {
				
				color: #0085C2;
			}			
		
			.tree ul i, .tree.drag i {
				position:absolute;
				top:7px;
				left:13px;
				width:20px;
				height:30px;
				display:block;
				cursor:pointer;		
			}	
				.tree ul i:before, .tree.drag i:before, .tree.drag.copy i:first-child:before {
					position:absolute;
					top:8px;
					left:1px;		
					content: "\f07b";
					font-family: FontAwesome;
					font-style:normal;
					font-size:14pt;
					color:#B3B3B3;
				}	

				.tree ul i.toggle {
					position:absolute;
					top:7px;	
					width:28px;
					left:-15px;	

				}	

				.tree ul i.toggle:before, .tree ul li.selected i.toggle:before {
					position:absolute;
					top:9px;
					left:8px;		
					content: "\f196";
					font-family: FontAwesome;
					font-style:normal;
					font-size:10pt;
					padding: 2px;
					color:#B3B3B3;
					background-color: #E6E6E6;
				}				

				.tree ul li.selected > i:before {		
					color:#0085C2;
				}	
				
				.tree i:hover:before {
					color:#848484;	
				}	
				
			.tree > ul  {
				margin-left:2px;
			}
				
			.tree ul ul {
				margin-top:10px;
			}	
				
			.tree ul li {
				display:block;	
				padding:5px 0;
				padding-left:10px;		
				border-left:1px solid #ccc;				
			}	
				.tree ul li ul li {
					margin-left:12px;	
				}				
				
				.tree ul li::before {
				  position:absolute;
				  content: '';
				  margin-left:-10px;
				  margin-top:18px;  
				  width:10px;
				  height:1px;
				  border-bottom: 1px solid #ccc;
				}
			
				.tree ul li:last-child {
					border:none;	
				}				
					.tree ul li:last-child::before {
					  position:absolute;
					  content: '';
					  margin-left:-10px;
					  margin-top:-8px;  
					  width:10px;
					  height:27px;
					  border-left: 1px solid #ccc;
					  border-bottom: 1px solid #ccc;
					}		
	
	/* open */	
	.tree ul li.open > i.toggle:before {			
		content: "\f147";
		color:#B3B3B3;
	}	

	/* over */	
	.tree ul li.over > div, .tree ul li.over > i.folder:before {
		color:#848484 !important;
	}	


	.tree ul li.open > i:before {			
		content: "\f07c";
	}	
	
	/* loading */				
	.tree ul li.loading > i:before {	
		left:11px;		
		content: "\f021";
		color:#848484;
		-webkit-animation: spin 1s infinite linear;
		-moz-animation: spin 1s infinite linear;
		-o-animation: spin 1s infinite linear;
		animation: spin 1s infinite linear;
	}	

	/* drag */	
	.tree.drag {
		position: absolute;
		padding: 5px 10px;
		padding-left:30px;
		border-radius: 3px;
		border: 1px solid rgba(0,0,0,0.1);
		background-color: rgba(255,255,255,0.8);		
	}

		.tree.drag.copy {
			padding-left:50px;
		}

		.tree.drag.copy i:first-child {
			left: 7px;
			top: auto;
		}

		.tree.drag.copy i:first-child:before {
			content: "\f067";
			top:3px;
			font-size: 10pt;
			font-weight: normal;
			color:#848484;
		}
		

		.tree.drag i {
			left: 7px;
		}

		.tree.drag.copy i {
			left: 24px;
		}

		.tree.drag i, .tree.drag i:before {
			top:auto;
			color:#848484;
		}

		.tree.drag div {
			top:0px;
			left:0px;
		}	

				
					
/* buubble */		
.de .bubble {
	position:absolute;
	display:none;
	width:auto;
	right:10px;
	margin:6px 0 0 0;	
	padding:2px 10px;			
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color:#DA3030;
	border:1px solid#DA3030;		
	border-radius:5px;
	color:#fff;
	font-size:9pt;	
	opacity:0.9;
}
	.de .error .bubble {
		display:block;	
	}
		
	.de .bubble.left {
		right:auto;
		left:10px;
	}

	.de .bubble.under {
		margin-top:12px;
	}
	
	.de .bubble.bottom {
		margin-top:0px;
	}
		
	.de .bubble:after {
		position: absolute;
		display: block;
		content: " ";			
		top: -6px;
		left: 20px;
		margin:0;
		padding:0;
		width: 0;
		border-width: 0 8px 8px;
		border-style: solid;
		border-color: #DA3030 rgba(0, 0, 0, 0);
	}
	
		
/* button */
.de button, .de input[type=submit], .de a.button, .de div.button {
	position:relative;
	display:inline-block;
	width:auto;
	text-indent:0;
	padding:5px 10px;
	margin:0;
	margin-right:10px;
	min-width:20px;
	font-size:10pt;
	color:#333;
	font-weight:bold;
	background: #DDDDDD;
	border:none;
	border-radius:2px;
	cursor:pointer;
	text-decoration:none;
	line-height:normal;
}
	
	.de div.button {
		font-family:Arial, Helvetica, sans-serif;
	}
	
	/* focus  */
	.de button:focus, .de input[type=submit]:focus     
	{
		outline:none;
	}
	
	.de .right button, .de .right input[type=submit], .de .right a.button, .de .right div.button  {
		margin-right:0px;
		margin-left:10px;
	}
	
	.de button i, .de a.button i, , .de div.button i {
		pointer-events: none;
		font-size:12pt;
		line-height:20px;
		color:#555555;
	}
		
	.de button:disabled i, .de a.button.disabled i,  .de div.button.disabled i {
		color:#ccc !important;
	}
	
	.de button:hover, .de input[type=submit]:hover, .de a.button:not([disabled]):hover, .de button.selected, .de a.button.selected {
		background: #bcbcbc;
		border-color:#a6a6a6;
	}
		
	.de button:disabled, .de input[type=submit]:disabled, .de button.disabled
	{
		opacity:0.50;
		background:#FFF;
		color:#333;
		cursor: default;
	}

	/* ok */
	.de button.ok, .de input[type=submit].ok, .de a.button.ok, .de div.button.ok  {
		background-color:#0085C2;
		color:#FFF;
	}
		
		.de button.ok:not([disabled]):hover, .de input[type=submit].ok:not([disabled]):hover, .de a.button.ok:not([disabled]):hover, .de div.button.ok:not([disabled]):hover {
			background-color:#666;
			color:#FFF;
		}					
	
	/* image */
	.de button.image {
		padding:0;
		width:30px;
		height:24px;
	}	

	.de .buttons.right {
			text-align:right;	
	}		

		/* compact */
		.de .compact button.compact, .de .compact input[type=submit].compact, .de .compact a.button.compact, .de .compact div.button.compact {
			font-size:0pt;
			padding-right:auto;
			min-width: auto;
		}

			.de .compact button.compact i, .de .compact input[type=submit].compact i, .de .compact a.button.compact i, .de .compact div.button.compact i {
				font-size: 11pt;
    			padding-bottom: 1px;
			}
						
					
