/*******************************************************************************
 * Tree container
 */
.ui-helper-hidden {
	display: none;
}

ul.manual_book1-container
{
	font-family: tahoma, arial, helvetica;
	font-size: 10pt; /* font size should not be too big */
	white-space: nowrap;
	padding: 3px;
	margin: 0; /* issue 201 */
	color: #444;
	background-color: #fff;
	overflow: auto;
/*	height: 100%; /* issue 263 */
}

.manual_book1-container:focus {
    outline: none;
}

ul.manual_book1-container ul
{
	padding: 0 0 0 16px;
	margin: 0;
}

.manual_book1-container ul:focus {
    outline: none;
}

ul.manual_book1-container li
{
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	-moz-background-clip:border;
	-moz-background-inline-policy: continuous;
	-moz-background-origin: padding;
	background-attachment: scroll;
	background-color: transparent;
	background-repeat: repeat-y;
	background-image: url("vline.gif");
	background-position: 0 0;
	/*
	background-image: url("icons_96x256.gif");
	background-position: -80px -64px;
	*/
	margin: 0;
	padding: 1px 0 0 0;
}
/* Suppress lines for last child node */
ul.manual_book1-container li.manual_book1-lastsib
{
	background-image: none;
}
/* Suppress lines if level is fixed expanded (option minExpandLevel) */
ul.manual_book1-no-connector > li
{
	background-image: none;
}

/* Style, when control is disabled */
.ui-manual_book1-disabled ul.manual_book1-container
{
	opacity: 0.5;
/*	filter: alpha(opacity=50); /* Yields a css warning */
	background-color: silver;
}

/*******************************************************************************
 * Common icon definitions
 */
span.manual_book1-empty,
span.manual_book1-vline,
/*span.manual_book1-connector,*/
span.manual_book1-expander,
span.manual_book1-icon,
span.manual_book1-checkbox,
span.manual_book1-radio,
span.manual_book1-drag-helper-img,
#manual_book1-drop-marker
{
	width: 16px;
	height: 16px;
/*	display: -moz-inline-box; /* @ FF 1+2 removed for issue 221 */
/*	-moz-box-align: start; /* issue 221 */
	display: inline-block; /* Required to make a span sizeable */
	vertical-align: top;
	background-repeat: no-repeat;
	background-position: left;
	background-image: url("icons.gif");
	background-position: 0 0;
}
/** Used by iconclass option */
span.manual_book1-custom-icon {
	display: inline-block;
}
/** Used by 'icon' node option: */
ul.manual_book1-container img
{
	width: 16px;
	height: 16px;
	margin-left: 3px;
	vertical-align: top;
	border-style: none;
}


/*******************************************************************************
 * Lines and connectors
 */

/*
span.manual_book1-connector
{
	background-position: -16px -64px;
}
 */

/*******************************************************************************
 * Expander icon
 * Note: IE6 doesn't correctly evaluate multiples class names,
 *		 so we create combined class names that can be used in the CSS.
 *
 * Prefix: manual_book1-exp-
 * 1st character: 'e': expanded, 'c': collapsed, 'n': no children
 * 2nd character (optional): 'd': lazy (Delayed)
 * 3rd character (optional): 'l': Last sibling
 */

span.manual_book1-expander
{
	background-position: 0px -80px;
	cursor: pointer;
}
.manual_book1-exp-cl span.manual_book1-expander /* Collapsed, not delayed, last sibling */
{
	background-position: 0px -96px;
}
.manual_book1-exp-cd span.manual_book1-expander /* Collapsed, delayed, not last sibling */
{
	background-position: -64px -80px;
}
.manual_book1-exp-cdl span.manual_book1-expander /* Collapsed, delayed, last sibling */
{
	background-position: -64px -96px;
}
.manual_book1-exp-e span.manual_book1-expander,  /* Expanded, not delayed, not last sibling */
.manual_book1-exp-ed span.manual_book1-expander  /* Expanded, delayed, not last sibling */
{
	background-position: -32px -80px;
}
.manual_book1-exp-el span.manual_book1-expander,  /* Expanded, not delayed, last sibling */
.manual_book1-exp-edl span.manual_book1-expander  /* Expanded, delayed, last sibling */
{
	background-position: -32px -96px;
}
.manual_book1-loading span.manual_book1-expander  /* 'Loading' status overrides all others */
{
	background-position: 0 0;
	background-image: url("loading.gif");
}

.manual_book1-exp-n span.manual_book1-expander, /* Connector instead of expander, if node has no children */
.manual_book1-exp-nl span.manual_book1-expander
{
	background-position: -16px -64px;
	cursor: default;
}


/*******************************************************************************
 * Checkbox icon
 */
span.manual_book1-checkbox
{
	margin-left: 3px;
	background-position: 0px -32px;
}
span.manual_book1-checkbox:hover
{
	background-position: -16px -32px;
}

.manual_book1-partsel span.manual_book1-checkbox
{
	background-position: -64px -32px;
}
.manual_book1-partsel span.manual_book1-checkbox:hover
{
	background-position: -80px -32px;
}

.manual_book1-selected span.manual_book1-checkbox
{
	background-position: -32px -32px;
}
.manual_book1-selected span.manual_book1-checkbox:hover
{
	background-position: -48px -32px;
}

/*******************************************************************************
 * Radiobutton icon
 * This is a customization, that may be activated by overriding the 'checkbox'
 * class name as 'manual_book1-radio' in the tree options.
 */
.manual_book1-radio span.manual_book1-checkbox
{
	margin-left: 3px;
	background-position: 0px -48px;
}
.manual_book1-radio span.manual_book1-checkbox:hover
{
	background-position: -16px -48px;
}

.manual_book1-radio .manual_book1-partsel span.manual_book1-checkbox
{
	background-position: -64px -48px;
}
.manual_book1-radio .manual_book1-partsel span.manual_book1-checkbox:hover
{
	background-position: -80px -48px;
}

.manual_book1-radio .manual_book1-selected span.manual_book1-checkbox
{
	background-position: -32px -48px;
}
.manual_book1-radio .manual_book1-selected span.manual_book1-checkbox:hover
{
	background-position: -48px -48px;
}

/*
span.manual_book1-radio
{
	margin-left: 3px;
	background-position: 0px -48px;
}
span.manual_book1-radio:hover
{
	background-position: -16px -48px;
}

.manual_book1-partsel span.manual_book1-radio
{
	background-position: -64px -48px;
}
.manual_book1-partsel span.manual_book1-radio:hover
{
	background-position: -80px -48px;
}

.manual_book1-selected span.manual_book1-radio
{
	background-position: -32px -48px;
}
.manual_book1-selected span.manual_book1-radio:hover
{
	background-position: -48px -48px;
}
*/


/*******************************************************************************
 * Node type icon
 * Note: IE6 doesn't correctly evaluate multiples class names,
 *		 so we create combined class names that can be used in the CSS.
 *
 * Prefix: manual_book1-ico-
 * 1st character: 'e': expanded, 'c': collapsed
 * 2nd character (optional): 'f': folder
 */

span.manual_book1-icon /* Default icon */
{
	margin-left: 3px;
	background-position: 0px 0px;
}

.manual_book1-ico-cf span.manual_book1-icon  /* Collapsed Folder */
{
	background-position: 0px -16px;
}

.manual_book1-ico-ef span.manual_book1-icon  /* Expanded Folder */
{
	background-position: -64px -16px;
}

/* Status node icons */

.manual_book1-statusnode-wait span.manual_book1-icon
{
	background-image: url("loading.gif");
}

.manual_book1-statusnode-error span.manual_book1-icon
{
	background-position: 0px -112px;
/*	background-image: url("ltError.gif");*/
}

/*******************************************************************************
 * Node titles
 */

/* Remove blue color and underline from title links */
/*
a.manual_book1-title
{
	text-decoration: none;
}
*/
span.manual_book1-title
{
	display: inline-block;
}
.manual_book1-title
{
	font-size: 10pt; /* required for IE, quirks mode */
	display: inline-block; /* Better alignment, when title contains <br> */
	padding-left: 3px;
	padding-right: 3px; /* Otherwise italic font will be outside bounds */
	color: black; /* inherit doesn't work on IE */
	vertical-align: top;
	margin: 0px;
	margin-left: 3px;
	cursor: pointer;
	color: inherit;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	     -o-user-select: none;
	        user-select: none; 
}
.manual_book1-title a {
    text-decoration: none;
    color: inherit;
}
.manual_book1-title:hover
{
/*	text-decoration: underline; */
	background-color: #F2F7FD; /* light blue */
	border-color: #B8D6FB; /* darker light blue */
}

a.manual_book1-title:focus,
span.manual_book1-focused a:link,  /* @IE */
span.manual_book1-focused span.manual_book1-title
{
	outline: 1px dotted black;
	background-color: #EFEBDE; /* gray */
}

span.manual_book1-folder .manual_book1-title
{
	font-weight: bold;
}

span.manual_book1-has-children a
{
}

span.manual_book1-expanded a
{
}

span.manual_book1-selected span.manual_book1-title
{
	color: green;
	font-style: italic;
}

span.manual_book1-active a,
span.manual_book1-active span.manual_book1-title
{
	background-color: #3169C6 !important;
	color: white !important; /* @ IE6 */
}

/*******************************************************************************
 * 'table' extension
 */
/*
table.manual_book1-ext-table {
	border-collapse: collapse;
	width: 100%;
}
table.manual_book1-ext-table tbody tr:nth-child(even){
	background-color: #f4f4f8;
}
table.manual_book1-ext-table tbody tr td {
	border: 1px solid lightgray;
}
*/
table.manual_book1-ext-table {
	border-collapse: collapse;
}
table.manual_book1-ext-table tbody tr.manual_book1-focused {
	background-color: #99DEFD;
}
table.manual_book1-ext-table tbody tr.manual_book1-active {
	background-color: royalblue;
}
table.manual_book1-ext-table tbody tr.manual_book1-selected {
	background-color: #99FDDE;
}

/*******************************************************************************
 * 'columnview' extension
 */
/*
table.manual_book1-ext-columnview {
	border-collapse: collapse;
	width: 100%;
}
*/
table.manual_book1-ext-columnview td >ul
{
	padding: 0;
}
table.manual_book1-ext-columnview td >ul li
{
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	-moz-background-clip:border;
	-moz-background-inline-policy: continuous;
	-moz-background-origin: padding;
	background-attachment: scroll;
	background-color: transparent;
	background-position: 0 0;
	background-repeat: repeat-y;
	background-image: none;  /* no v-lines */

	margin:0;
	padding:1px 0 0 0;
}
/*
table.manual_book1-ext-columnview tbody tr[0] {
	height: 200px;
}
*/
table.manual_book1-ext-columnview tbody tr td {
	border: 1px solid gray;
	vertical-align: top;
	overflow: auto;
}
table.manual_book1-ext-columnview span.manual_book1-node {
	position: relative; /* allow positioning of embedded spans*/
	display: inline-block;
	width: 100%;
}
table.manual_book1-ext-columnview span.manual_book1-node a{
	border: 1px solid transparent;
	background-color: transparent;
}
table.manual_book1-ext-columnview span.manual_book1-node.manual_book1-expanded {
	background-color: #ccc;
}
table.manual_book1-ext-columnview span.manual_book1-node.manual_book1-active {
	background-color: royalblue;
}
table.manual_book1-ext-columnview span.manual_book1-cv-right {
	background-position: 0px -80px;
	position: absolute;
	right: 3px;
}


/*******************************************************************************
 * 'filter' extension
 */
.manual_book1-ext-filter span.manual_book1-node .manual_book1-title {
	color: silver;
	font-weight: lighter;
}
.manual_book1-ext-filter span.manual_book1-node.manual_book1-submatch .manual_book1-title {
	color: black;
	font-weight: normal;
}
.manual_book1-ext-filter span.manual_book1-node.manual_book1-match .manual_book1-title {
	color: black;
	font-weight: bold;
}


/*******************************************************************************
 * Drag'n'drop support
 */

/*** Helper object ************************************************************/
div.manual_book1-drag-helper
{
    display:none; 
    position: absolute; 
    z-index: 1000; 
    height:20px;
    width:20px;
}
div.manual_book1-drag-helper a
{
	border: 1px solid gray;
	background-color: white;
	padding-left: 5px;
	padding-right: 5px;
	opacity: 0.8;
}
span.manual_book1-drag-helper-img
{
	/*
	position: relative;
	left: -16px;
	*/
}
div.manual_book1-drag-helper /*.manual_book1-drop-accept*/
{

/*    border-color: green;
	background-color: red;*/
}
div.manual_book1-drop-accept span.manual_book1-drag-helper-img
{
	background-position: -32px -112px;
}
div.manual_book1-drag-helper.manual_book1-drop-reject
{
	border-color: red;
}
div.manual_book1-drop-reject span.manual_book1-drag-helper-img
{
	background-position: -16px -112px;
}

/*** Drop marker icon *********************************************************/

#manual_book1-drop-marker
{
	width: 24px;
	position: absolute;
	background-position: 0 -128px;
	margin: 0;
/*	border: 1px solid red; */
}
#manual_book1-drop-marker.manual_book1-drop-after,
#manual_book1-drop-marker.manual_book1-drop-before
{
	width:64px;
	background-position: 0 -144px;
}
#manual_book1-drop-marker.manual_book1-drop-copy
{
	background-position: -64px -128px;
}
#manual_book1-drop-marker.manual_book1-drop-move
{
	background-position: -64px -128px;
}

/*** Source node while dragging ***********************************************/

span.manual_book1-drag-source
{
	/* border: 1px dotted gray; */
	background-color: #e0e0e0;
}
span.manual_book1-drag-source a
{
	color: gray;
}

/*** Target node while dragging cursor is over it *****************************/

span.manual_book1-drop-target
{
	/*border: 1px solid gray;*/
}
span.manual_book1-drop-target a
{
}
span.manual_book1-drop-target.manual_book1-drop-accept a
{
	/*border: 1px solid green;*/
	background-color: #3169C6 !important;
	color: white !important; /* @ IE6 */
	text-decoration: none;
}
span.manual_book1-drop-target.manual_book1-drop-reject
{
	/*border: 1px solid red;*/
}
span.manual_book1-drop-target.manual_book1-drop-after a
{
}


/*** Wordpress ****************************************************************/

.manual_book1-focused span.current_post_item .manual_book1-title,
.manual_book1-focused span.current_page_item .manual_book1-title,
.manual_book1-focused span.current-cat .manual_book1-title {
	background-color: #F2F7FD;
	border-color: 1px solid #B8D6FB;
}
.manual_book1-focused span.manual_book1-active .manual_book1-title {
	color: #fff;
	border-color: #3169C6;
}
