/*
 * HelpMaker HTML styles
 */

/*------------------------------------------------------ Main container */

.hm-body {
	position: absolute;
	top: 40px;
	right: 0;
	bottom: 0;
	left: 20%;
	overflow-y: auto;
}

/*------------------------------------------------------ Title bar */

.hm-title {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 40px;
	background-color: #909090;
	z-index: -10;
}

.hm-title p {
	font-size: 1.2em;
	line-height: 40px;
	margin: 0 0 0 10px;
	color: #FFF;
}

.hm-title input.hm-header-button {
	padding: 0 5px;
	width: 70px;
}

.hm-search {
	position: absolute;
	top: 8px;
	right: 10px;
}

/*------------------------------------------------------ Search results */

.hm-body div.hm-results {
	margin-left: 3em;
}

.hm-body .hm-results input {
	padding: 0 5px;
	width: 70px;
}

.hm-body .hm-results ol {
	font-size: 1.0em;
	margin-left: 0;
	padding-left: 20px;
}

/*------------------------------------------------------ Navigation tree container */

.hm-tree {
	position: absolute;
	top: 40px;
	right: 80%;
	height: calc(100% - 50px);
	left: 0;
	background-color: #f8f8f8;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 10px 0 0 0;
	font-size: .95em;
}

.hm-tree * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hm-tree a {
	text-decoration: none;
}

/*------------------------------------------------------ Navigation tree elements */

.hm-tree ul {
	padding: 0 0 0 16px;
}

.hm-tree li {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 3px 0 0 0;
}

.hm-tree li a:hover {
	text-decoration: none;
	color: #444;
	background-color: #def;
}

.hm-tree li[isselected=true] > a {
	font-weight: bold;
	color: #444;
}

.hm-tree li .hm-icon {
	background-image: url("trees.png");
	background-repeat: no-repeat;
	width: 16px;
	height: 16px;
	vertical-align: bottom;
	display: inline-block;
	margin-right: 3px;
	cursor: pointer;
}

.hm-tree li .hm-hit {
	background-image: url("trees.png");
	background-repeat: no-repeat;
	width: 16px;
	height: 16px;
	vertical-align: bottom;
	display: inline-block;
	cursor: pointer;
}

.hm-tree li.hm-leaf {
	margin-left: 16px;
}

.hm-tree li.hm-folder .hm-icon {
	background-position: -16px 0;
}

.hm-tree li.hm-leaf .hm-icon {
	background-position: -16px -32px;
}

.hm-tree li.hm-folder .hm-hit {
	background-position: 0 0;
}

.hm-tree th,
.hm-tree td {
	background-color: transparent;
}

