/*
	This css stylesheet contains all necesary style specifications to 
	get the publication to work and look correctly.
*/

/***************************
	general
***************************/
html, body, div
{
	/* no margins for all browsers */
	margin: 0px;
}

td
{
    vertical-align: top;
}

html, body
{
	/* remove scrollbar in IE compatibility mode */
	overflow: auto; 
	
	width: 100%;
	height: 100%;
}

/***************************
	index.htm 
***************************/
#center
{
    position: absolute;

	width: 100%;
	height: 100%;
	
	text-align: center; /* center website in case #main gets a fixed width */	
}

#main
{
    position: relative;
    top: 0px;
    height: 100%;
    
	text-align: left; /* prevent inheritance of text-align in #center */

	/* center website in case #main gets a fixed width */
	margin-left: auto;
	margin-right: auto;
}

/***************************
	Header
***************************/
#header
{
    position: absolute;
}

/***************************
	Options
***************************/
#options
{
    position: absolute;    
}

.options_button
{
	cursor: pointer;
}

/***************************
	Path
***************************/
#path
{
    position: absolute;    
}

.path_button
{
	
	cursor: pointer;
}

/***************************
	content
***************************/
.content
{
    position: absolute;
}

.content_content
{
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
}
/***************************
	search
***************************/
.search_results_table td
{
	white-space: nowrap;
}

.search_results_link 
{
	cursor: pointer;
}


/***************************
	Footer
***************************/
#footer
{
    position: absolute;
    clear: both;
}

/***************************
	tree
***************************/
.tree
{
	overflow: auto;
}

.tree_toggle
{
	display:inline-block;
	cursor: pointer;
}

.tree_node
{
	cursor: pointer;
	white-space: nowrap;
}

/***************************
	leftTree
***************************/
.leftTree_layout_nav
{
    width: 0;
}

.leftTree_layout_content
{
    width: 100%;
}

/***************************
	rightTree
***************************/
.rightTree_layout_nav
{
    position: absolute;
    width: 200px;
    top: 0px;
    bottom: 0px;
    right: 0px;
}

.rightTree_layout_content
{
    position: absolute;
    width: 800px;
    top: 0px;
    bottom: 0px;
}

/***************************
	tabSet
***************************/
.tab
{
	display: inline-block; /* needs to be a block for a certain tabset feature */
	white-space: nowrap; /* don't want a tab to go split onto another line */

	margin: 2px 2px 1px 0px;
	padding: 2px 10px 1px 10px;
}

.tab_link
{
	cursor: pointer;
}

.tab_link_active
{
	/* button shape */
	padding: 4px 10px 2px 10px;
	margin: 0px 2px 0px 0px;
}

/***************************
	pagemenu
***************************/
.pagemenu_previous_container
{
	display: inline-block;
}

.pagemenu_select_container
{
	display: inline-block;
}

.pagemenu_next_container
{
	display: inline-block;
}

.pagemenu_link
{
	cursor: pointer;
}

/***************************
	Dropdown menu
***************************/
.dropdown_submenu
{
	position: fixed;
	z-index: 100;
}

.dropdown_node
{
	display: inline;
	vertical-align: top;

	/* 
		inline blocks for IE7 

		zoom: 1 makes sure IE7 uses layout mode
	*/
	zoom: 1;
}

.dropdown_main_node
{
	/* center the expander image in IE7 */
	*text-align: center;
}

.dropdown_submenu_button
{
	display: block;
}

.dropdown_link, .dropdown_parent
{
	cursor: pointer;
}

/***************************
	document
***************************/
.document
{
    position: absolute;
    left: 0px;
    right: 0px;
    padding: 10px;
	margin-left: 40px;    
}

/***************************
	excursion
***************************/
.excursion
{
    cursor: pointer;
}
