#dilaTree_title	{
	font-size: 25px;
	padding: 10px;
	border-bottom: 1px dotted;
}
#dilaTree_panel	{
	display:none;
	opacity:0;
	min-width:500px;
	position:absolute;
	left:-150px;
	top:0;
	height:100vh;
	background-color:white;
	z-index:1050;
}

#dilaTree_modal	{
	z-index:1000;
	display:none;
	width:100%;
	height:100vh;
	position:absolute;
	left:0;
	top:0;		
	transition: all .2s ease;
	background-color: black;
	opacity: 0.5;	
}

#dilaTree_search	{
	display:inline-block;
	width: 100%;
	height:55px;
	border-bottom:dotted 1px gray;
}

#dilaTree_container	{
	overflow:auto;
	padding-left: 1em;
}

.dilaTree_close	{
	font-size: 21px;
	font-weight: bold;
	line-height: 1;
	color: #000000;
	text-shadow: 0 1px 0 #ffffff;
	opacity: 0.2;
	padding: 0;
	background-color: transparent;	
	float:right;
	border:0;
	margin-top: 6px;
}
.dilaTree_close:hover	{
	text-decoration: none;
	cursor: pointer;
	opacity: 0.5;
}

.dilaTree_container_height_all	{
	height:calc(100vh - 60px - 55px);
}

.dilaTree_container_height_title	{
	height:calc(100vh - 60px);
}

#dilaTree_search_input	{
	width: 10em;
	display: inline-block;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.428571429;
	color: #555555;
	vertical-align: middle;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 0;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
	background-image: none;
	box-sizing: border-box;	
}
@media (min-width: 1500px) {
	#dilaTree_search_input	{
		width: 15em;
	}
}

#dilaTree_search_input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #999999;
}
#dilaTree_search_input::-moz-placeholder { /* Firefox 19+ */
  color: #999999;
}
#dilaTree_search_input:-ms-input-placeholder { /* IE 10+ */
  color: #999999;
}
#dilaTree_search_input:-moz-placeholder { /* Firefox 18- */
  color: #999999;
}

.dilaTree-search-navs	{
	border-radius: 0;
	display: inline-block;
	padding: 6px 5px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.428571429;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	border: 1px solid transparent;
	color: #333333;
	background-color: #ffffff;
	border-color: #cccccc;
	outline: 0;
}

.dilaTree-search-navs:hover	{
	color: #333333;
	background-color: #ebebeb;
	border-color: #adadad;	
	text-decoration: none;
}

.dilaTree-search-navs:active	{
	outline: none;
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.jstree-search-now {
    background-color: yellow;
}

.dilaTree-lock-scroll	{
	overflow:hidden;
}

.dilaTree-back-btn:hover	{
	text-decoration:underline;
	cursor:pointer;
}

/* 閃亮的點 design by winxd */
.shrink_point	{
    animation-duration: 1.1s;
    animation-iteration-count: 3;
    animation-name: shrink_point;	
	
	display: inline-block;
    margin: 5px 0 0 -1em;
    width: 0.8em;
	color:white;
	float:left;
	height:0.8em;
	border-radius:50px;
	background-color:white;
}


@keyframes shrink_point {
0% {
    background-color:#40b3ff;
}
100% {
    background-color:white;
}
}