/*COPYRIGHT © 2026 AUTHOR-E BV. ALL RIGHTS RESERVED */
/* Main Layout style */
body {
    font-family:Arial;
    color: #2a233e;
}

a {
    color: inherit;
}

#Header 
{
    position: absolute;
    top: 0px;
    height: 100px;
    left: 0px;
    right: 0px;
    border-bottom: solid 1px gray;

    background-repeat: no-repeat;
    background-position: right center;
}

#Navigation1
{
    position: absolute;
    z-index: 1;
    left: 50px;
    top: 40px;
    border: solid 1px gray;
}

#Navigation2
{
    position: absolute;
    left: 0;
    top: 101px;
    width: 300px;
    bottom: 0px;
    border-right: solid 1px gray;
}

#ResetButton {
    position: absolute;
    left: 270px;
    top: 40px;
}

#ResetButton::after {
    content: "Reset"
}

#Content
{
    position: absolute;
    left: 321px;
    top: 101px;
    right: 0px;
    bottom: 0px;
    padding: 20px 20px 20px 40px;
}

/** Search **/
#SearchContainer.InlineSearch
{
	z-index: 100;
	position: absolute;
	top: 70px;
	right: 10px;
}

#SearchContainer .Button, #MainSearch .SearchButton
{
    width: 21px;
    height: 21px;
    border: 1px solid black;
    background-image: url("../Images/search.png");
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: middle;
}


#MainSearch
{
    position: absolute;
    left: 0px;
    top: 101px;
    right: 0px;
    bottom: 0px;
}

#MainSearch #SearchContainer.MainSearch
{
    background-color: #DDDDDD;
    
    padding: 20px 20px 20px 40px;
    text-align: center;
    
    border-bottom: solid 1px gray;
}

.Highlight
{
    background-color: Yellow;
}

.SearchNavigation
{
    text-align: center;
}

.SearchNavigation .Previous, .SearchNavigation .Next
{
    cursor: pointer;
    
    border: 1px solid gray;
    margin: 0px 3px;
    padding: 0px 3px;    
}

.SearchNavigation .Previous:hover, .SearchNavigation .Next:hover
{
    background-color: lightgray;
}

.SearchNavigation .Pages
{
    margin: 0px 20px;
    padding: 10px 0px;
}

.SearchNavigation .Pages .PageButton
{
    cursor: pointer;
    border: 1px solid gray;
    margin: 0px 3px;
    padding: 0px 3px;
}

.SearchNavigation .Pages .PageButton.Active
{
    color: White;
    background-color: #444444;
}

.SearchNavigation .Pages .PageButton:hover
{
    background-color: #DDDDDD;
}

.SearchNavigation .Pages .Separator
{
    margin: 0px 3px;
}

/* General tree styling */
.Tree
{
    padding: 5px 10px;
}

.Tree .Toggle
{
	cursor: pointer;
    width: 10px;
    height: 10px;
	margin: 2px 5px 0px 0px;
}

.Tree .Title
{
    margin: 0px 10px;
    font-size: 9pt;
}

.Tree .EmptyTitle
{
    font-size: 9pt;
}

.Tree .Node.Active > .Display
{
    font-weight: bold;
}

.Tree .Node > .Display a:hover
{
    text-decoration:underline;
    cursor: pointer;
}

.Tree .Node > .Display  a
{
    text-decoration:none;
}

.Tree .Node .Display
{
	margin: 5px 0px;
	cursor: default;
}

.Tree .Container.Expanded > .Display > .Toggle
{
    background-image: url("../Images/PointerDown.png");
}

.Tree .Container.Collapsed > .Display > .Toggle
{
    background-image: url("../Images/PointerRight.png");
}

.Tree .Leaf > .Display > .Toggle
{

}

.Tree .Children
{
    margin-left: 20px;
}

.DropDownList select
{
    width: 200px;
}

.Tab
{
    padding: 0px 20px;
}

.SearchResults .Result
{
	margin: 20px;
}

.SearchResults .Title
{
	font-weight: bold;
}

.Highlight
{
    background-color: Yellow;
}