.treeview, .treeview ul { 
	padding: 0;
	margin: 0;
	list-style: none;
}

.treeview ul {
	background-color: white;
	margin-top: 4px;
	margin-left:30px;
}

.treeview .hitarea {
	height: 16px;
	width: 16px;
	float: left;
	cursor: pointer;
}
/* fix for IE6 */
* html .hitarea {
	display: inline;
	float:none;
}

.treeview li { 
	margin: 0;
	padding: 3px 0pt 3px 0px;
}

.treeview a.selected {
	background-color: #eee;
}

.checkbox{
	float:left;
	width:14px;
	height:14px;
	background-image:url("images/unchecked.png");
	background-repeat:no-repeat;
	margin-top:3px;
	margin-right:2px;
}

.unchecked{
	background-image:url("images/unchecked.png");
}

.checked{
	background-image:url("images/checked.png");
}

.treeview .hover { color:#66CDCC; cursor: pointer; }

.treeview li .collapsable-hitarea{
	background-image:url("images/fleche.gif");
	background-position:0px 16px;
}

.treeview li .expandable-hitarea{
	background-image:url("images/fleche.gif");

}

.title{
	cursor:pointer;
	user-select:none;
}

.title:hover{
	color:#009ACC;
}

html{
   -moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;
   -o-user-select: none;
   user-select: none;
}


::selection { background: transparent;color:inherit; }
::-moz-selection { background: transparent;color:inherit; }
