/* -----------------------------------------------------------------------
/* <copyright file="default.css" company="ViCon GmbH">
/*     Copyright © ViCon GmbH.
/* </copyright>
/* <summary>
/*		This file provides all default styles for
/*		this web apps content.
/* </summary>
/* -----------------------------------------------------------------------*/

/* ~~~ general ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

html {																															/* general settings */
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 0.8em;
	height: 100%;
	overflow: hidden;
}

html a {																														/* default settings for links */
	text-decoration: none;
	outline: none;
}

body {
	position: relative;
	margin: 0 auto;
	padding: 0px;
	height: 100%;
	min-width: 1024px;/* navibar keeps its style when browser-window is scaled */
	overflow: hidden;
}

div:focus {
	outline: none;
}

.clearBoth { clear: both; }

/* ~~~ header ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#header {
	padding: 5px 0 5px 5px;
}

#header img {																													/* ViFlow logo */
	float: right;
	margin-top: -5px;
	height: 50px;
	padding: 5px 10px 5px 50px;
}

#location {
	height: 50px;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
}

#whereami {
	list-style-type: none;
	display: inline-block;
	height: 50px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	white-space: nowrap;
}

#whereami li {
	height: 50px;
	display: inline-block;
	line-height: 50px;
}

#whereami li:last-child a:before{
	display: none;
}

#whereami li:last-child a:after{
	display: none;
}

#whereami li:last-child a[href="#"]{
	border-right: 1px solid #fff;
}

#whereami li:last-child a[href="#"]:after, #whereami li:last-child a[href="#"]:before{
	display: inline-block;
}

#whereami li a, #whereami li span {
	position: relative;
	line-height: 30px;
	display: inline-block;
	padding-left: 20px;
	padding-right: 10px;
	border-right: 1px solid;
}

#whereami li a span{
	padding-right: 0;
}

#whereami li a:after{
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	top: calc(50% - 9px);
	right: -16px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 8px solid transparent;
	border-left: 8px solid;
	z-index: 2;
}

#whereami li a:before{
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	top: calc(50% - 11px);
	right: -16px;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 10px solid transparent;
	border-left: 10px solid;
	z-index: 1;
	margin-right: -4px;
}

#whereami li:first-child a[href="#"]:before{
	display:none;
}

#whereami li:first-child a[href="#"]:after{
	display:none;
}

#whereami li:first-child a[href="#"]{
	display: inline-block;
	height: 30px;
	line-height: 30px;
}

#whereami li:nth-child(2) a{
	padding-left: 10px;
	padding-right: 10px;
}

#whereami li a[href="#"]{
	padding: 0 10px 0 20px;
}

#whereami li img {
	width: auto;
	height: auto;
	vertical-align: middle;
	padding: 2px;
	float: left;
}

/* ~~~ error message ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#errorbackground{
	position: absolute;
	z-index: 99999999;
	background-color: #FFFFFF;
	animation-direction: normal;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	animation-name: errorReveal;
	animation-fill-mode: backwards;
	animation-delay: 2s;
	animation-duration: .3s;
}

@keyframes errorReveal {
	0% {opacity:0};
	50% {opacity:0};
	100% {opacity:1};
}

#errormessage {
	position: relative;
	width: 600px;
	min-height: 500px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	overflow: auto;
	background: #A11325;
	color: #fff;
	border-radius: 8px;
	margin: 0 auto;
}

#err_h1{
	position: relative;
	margin: 150px 0 0 0;
	text-align: center;
}

#err_h1:before{
	position: absolute;
	content: url(../images/ui/error.png);
	content: url(../images/ui/error.svg);
	width: 100px;
	top: -115px;
	left: calc(50% - 50px);
}

#errormessage ul li{
	margin: 0 0 10px 0;
	line-height: 18px;
}

#errormessage ul li a{
	color: #fff;
	text-decoration: underline;
}

#err_h2{
	text-align: center;	
}

#errormessage p {
	font-style: italic;
	font-size: smaller;
}

/* ~~~ splash ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* ~~~ splash ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#splash #background {
	position: absolute;
	z-index: 9999997;
	opacity: 0.25;
	background-color: #000000;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	overflow: auto;
}

#splash #main {
	background-image: url(../images/ui/splash.png);
	background-repeat: no-repeat;
	background-position: center;
	background-color: transparent;
	position: absolute;
	z-index: 99999998;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	margin: auto;
	border-radius: 15px;
	width: 640px;
	height: 480px;
}

#splash #main #title {
	position: absolute;
	font-size: 26pt;
	color: #828282;
	top: 95px;
	left: 50px;
	right: 50px;
}

#splash #main #loader {
	position: absolute;
	bottom: 15px;
}

#splash #main #copyright {
	position: absolute;
	bottom: 20px;
	left: 50px;
	right: 50px;
}

#copyright{
	left: 20px!important;
}

#loader{
	width: 100%;
	top: calc(50% - 5px);
	background-image: url(../images/ui/busy.gif);
	background-repeat: no-repeat;
	background-position: center;
	background-color: transparent;	
}

/* ~~~ main navigation ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#navibar {																																
	height: 40px;/* fixed size is required because header and processNav must fit together */	
}

#navibar ul, #contextmenu {
	margin: 0;
	padding: 0;
	height: 40px;
	box-sizing: border-box;
	line-height: 40px;
}

	#navibar ul li, #contextmenu li { /* style for navigation points */
		list-style-type: none; /* no bullets */
		display: inline; /* list elements are next to each other */
		cursor: pointer; /* cursor gets to a hand - simulating a link */
		padding: 0;
		margin: 0 -4px 0 0;
	}

		#navibar ul li a, #navibar ul li a:link, #contextmenu li a, #contextmenu li a:link {
			position: relative;
			height: 40px;
			display: inline-block;
			padding: 0 18px 0 30px;
			margin: 0px auto;
		}

ul.dropdown li{
	display: block!important;
}

ul.dropdown li a{
	display: block!important;
}

.placeHolder {
	width: 1px;
	height: 31px !important;
	border-left: 1px solid;
	border-right: 1px solid;
	padding: 7px 0 7px 0 !important;
	margin: 0 6px 0 3px !important;
}

#navibar ul li a img, #contextmenu li a img { /* images in navigation points */
	vertical-align: middle; /* images on a level with text */
	margin: 0 6px 0 0;
	border: none;
}

#naviHelpLink img {
	vertical-align: middle;																										/* images on a level with text */
	margin: 0 4px 0 4px;
	border: none;
}

#navibar form {/* search element in the navi */
	position: relative;
	float: right;
	margin: 0;
	padding: 0;
}

#searchField {
	position: absolute;
	right: 40px;
	width: 200px;
	margin: 0 !important;
	padding: 0 5px;
	line-height: 40px;
	height: 40px;
	box-sizing: border-box; 
}

#searchButton {
	position: absolute;
	right: 0;
	margin: 0;
	padding: 0;
	height: 40px;
	width: 40px;
}


ul.dropdown {
	position: absolute;
	z-index: 300000;
	margin-top: 0;
	display: none;
	overflow: auto;
	overflow-x: hidden;	
	max-height: 500px;
	height: auto!important;	
	border-top: 3px solid;
	min-width: 200px;	
}

#contextmenu li a {
	padding: 0 10px !important;
	white-space: nowrap;
}

ul.dropdown li a{
	color: #005EA8;
	color: var(--accent);
}

#naviUserLinkNone {
    font-style: italic;
}

li[nouser=true] {
    display: none!important;
}

.selectedUser {
    font-weight: bold;
}

#navibar ul li a:before, #contextmenu li a:before{
	position: absolute;
	width: 18px;
	left: 6px;
	top:5px;
}

#naviProcessesLink:before{
	content: url(../images/ui/process.png);
	content: url(../images/ui/process.svg);
}

#naviProcessesLink.menuActive:before, #naviProcessesLink:hover:before{
	content: url(../images/ui/process_inv.png);
	content: url(../images/ui/process_inv.svg);
}

#naviInformationLink:before{
	content: url(../images/ui/information.png);
	content: url(../images/ui/information.svg);
}

#naviInformationLink.menuActive:before, #naviInformationLink:hover:before{
	content: url(../images/ui/information_inv.png);
	content: url(../images/ui/information_inv.svg);
}

#naviAreasLink:before{
	content: url(../images/ui/area.png);
	content: url(../images/ui/area.svg);
}

#naviAreasLink.menuActive:before, #naviAreasLink:hover:before{
	content: url(../images/ui/area_inv.png);
	content: url(../images/ui/area_inv.svg);
}

#naviHistoryLink:before{
	content: url(../images/ui/changes.png);
	content: url(../images/ui/changes.svg);
}

#naviHistoryLink.menuActive:before, #naviHistoryLink:hover:before{
	content: url(../images/ui/changes_inv.png);
	content: url(../images/ui/changes_inv.svg);
}

#naviZoomLink:before{
	content: url(../images/ui/zoom.png);
	content: url(../images/ui/zoom.svg);
}

#naviZoomLink.menuActive:before, #naviZoomLink:hover:before{
	content: url(../images/ui/zoom_inv.png);
	content: url(../images/ui/zoom_inv.svg);
}

#naviFeedbackLink:before{
	content: url(../images/ui/feedback.png);
	content: url(../images/ui/feedback.svg);
}

#naviFeedbackLink.menuActive:before, #naviFeedbackLink:hover:before{
	content: url(../images/ui/feedback_inv.png);
	content: url(../images/ui/feedback_inv.svg);
}

#hyperlinkMenuLink:before{
	content: url(../images/ui/hyperlink.png);
	content: url(../images/ui/hyperlink.svg);
}

#hyperlinkMenuLink.menuActive:before, #hyperlinkMenuLink:hover:before{
	content: url(../images/ui/hyperlink_inv.png);
	content: url(../images/ui/hyperlink_inv.svg);
}

#naviUsers a:before {
    content: url(../images/ui/user.png);
    content: url(../images/ui/user.svg);
}

#naviUsers a.menuActive:before, #naviUsers a:hover:before {
    content: url(../images/ui/user_inv.png);
    content: url(../images/ui/user_inv.svg);
}

#naviUsers .area a:before {
    content: url(../images/ui/area.png);
    content: url(../images/ui/area.svg);
}

#naviUsers .area a.menuActive:before, #naviUsers .area a:hover:before {
    content: url(../images/ui/area_inv.png);
    content: url(../images/ui/area_inv.svg);
}

#naviSettingsLink:before{
	content: url(../images/ui/properties.png);
	content: url(../images/ui/properties.svg);
}

#naviSettingsLink.menuActive:before, #naviSettingsLink:hover:before{
	content: url(../images/ui/properties_inv.png);
	content: url(../images/ui/properties_inv.svg);
}

#naviHelpLink:before{
	content: url(../images/ui/help.png);
	content: url(../images/ui/help.svg);
}

#naviHelpLink.menuActive:before, #naviHelpLink:hover:before{
	content: url(../images/ui/help_inv.png);
	content: url(../images/ui/help_inv.svg);
}

#hyperlinkMenuLink, #naviUsers a[href="#navibar"]{
	padding-right: 30px!important;
}

#hyperlinkMenuLink:after, #naviUsers a[href="#navibar"]:after{
	content: url(../images/ui/dropdown.png);
	content: url(../images/ui/dropdown.svg);
	position: absolute;
	width: 7px;
	right: 15px;
	top:3px;
}

#hyperlinkMenuLink.menuActive:after, #naviUsers a[href="#navibar"].menuActive:after, #hyperlinkMenuLink:hover:after, #naviUsers a[href="#navibar"]:hover:after{
	content: url(../images/ui/dropdown_inv.png);
	content: url(../images/ui/dropdown_inv.svg);
	position: absolute;
	width: 7px;
	height: 15px;
	right: 15px;
	top:5px;
	z-index: 3;
}

/*  show/hide Header */

.topVisible{
	display: block;
	z-index: 1
}

.topHidden{
	display: none;
}

#ShowHideHeader{
	cursor: pointer;	
	position: absolute;
	width: 40px;
	height: 40px;
	right: 240px;
	z-index: 2;
}

#ShowHideHeader a{
	display: block;
	width: 100%;
	height: 100%;
}

.showHeader{
	top: 0;	
	background-image: url(../images/ui/showHeader.png);
	background-image: url(../images/ui/showHeader.svg);
	background-position: 0 0;
	transition: background-position .2s ease;
	right: 20px!important;
}

.showHeader:hover{
	background-position:  0 2px;	
}

.hideHeader{
	top: 60px;
	background-image: url(../images/ui/hideHeader.png);
	background-image: url(../images/ui/hideHeader.svg);
	background-position: 0 0;
	transition: background-position .2s ease;	
}

.hideHeader:hover{
	background-position:  0 -2px;	
}

.toTop{
	top: 0!important;
}
/* ~~~ object navigation ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#processesOverview { display: none;} 												
#informationOverview { display: none;}
#areaOverview { display: none;}

#objectNav {/* blue part with pinToTheEdge-button, and process overview inside */
	display:none;
	margin: 0px;	
	position: absolute;/* for filling the whole height of the screen */
	left: 0!important;
	top: 100px;/* fixed size is required because header and processNav must fit together */
	bottom: 0px;/* fixed size is required because header and processNav must fit together */
	z-index: 10;/* processNav is in the foreground when it´s open */
	min-width: 150px;
	width: 300px;
	max-width: 60%;
	border-top: 3px solid;
}

#objectNav > div {
	overflow: hidden;
}

.button {																														/* general style for buttons */
	font-size: 1em;
	padding: 5px;
	border-top: 1px solid;
	border-right: 1px solid;
	border-left: 1px solid;
	border-bottom: 1px solid;
	float: right;
	margin-bottom: 0px;
	margin-top: 13px;
}

.tabstriptree {/* contains the 3 tabs for processes and information inside */												
	padding-right: 40px;
}

.tabstrip {/* contains the 3 tabs for processes and information inside */												
	margin: 0;
	line-height: 1;
	white-space: nowrap;
}

.tabstrip ul {/* contains 3 tabs for processes and information */
	width: 100%;
	position: relative;
	height: 40px;
	margin: 0;
	padding: 0;
}

.tabstrip ul li {/* gradient and border for the 3 tabs of processes and information */
	list-style-type: none;																										
	position: relative;
	display: inline-block;
	line-height: 40px;
	cursor: pointer;																													width: 50%;
}

.tabstrip ul li a {
	padding: 0 10px;
	position: relative;
	text-align: center;
	display: block!important;
}

.tabstripActive:after {/* style for the selected tab */
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	bottom: -3px;
	left: calc(50% - 10px);
	border-top: 10px solid transparent; 
	border-right: 10px solid transparent; 
	border-left: 10px solid transparent; 
	border-bottom: 10px solid; 
}

.tabstrip ul li:last-child{
	margin-left: -5px;
}

#foldersbutton {
	position: absolute;
	top: 0;
	right: 0;
	height: 40px;
	width: 40px;
	cursor: pointer;
	background-image: url(../images/ui/structure_inv.svg);
	background-repeat: no-repeat;
	background-position: center;
}

	#foldersbutton.menuActive {
		background-image: url(../images/ui/folder_inv.svg);
	}

.treeView {/* white window for processes and information */
	position: absolute;/* for filling the whole height of the screen */
	top: 40px;
	bottom: 10px;
	padding: 0px;
	width: 100%;
	overflow-x: hidden;/* too much content will be hidden and must be scrolled */	
	overflow-y: auto;/* too much content will be hidden and must be scrolled */	
	white-space: nowrap;/* no automatic line breaks text in GlobalProcessTree */
	line-height: 1.0;
	display: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: none;
	touch-action: manipulation;
}

.treeViewNoTabs {/* white window for processes and information */
	top: 0px;
}

.treeView~ul {
	padding-left: 0px;
}

.treeView ul {
	list-style-type: none;
	padding-left: 10px !important;
}

.treeView ul:first-child {
	padding-left: 1px !important;
}

.treeView li {
	cursor: pointer;
	margin: 2px;
}

.treeView img {
	width: auto;
	height: auto;
	vertical-align: middle;
	margin: 2px;
}

.treeView span {
	line-height: normal;
	padding-left: 3px;
}

.treeViewSelectedItem {
	text-decoration: underline;
}

.slider {
	width: 15px;
	height: 36px;
	position: relative;
	top: 50%;
	transform: translateY(-100%);
	float: right;
	cursor: ew-resize;
	-ms-touch-action: none;
	touch-action: none;
	background-image: url(../images/ui/slide_v.gif);
	background-position: center;
	background-repeat: no-repeat;
}

.cornerSlider {
	position: absolute;
	right: 0;
	bottom: 0;
	cursor: se-resize;
	-ms-touch-action: none;
	touch-action: none;
}

/* ~~~ content ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#content {
	position: absolute;																											/* for filling the whole height of the screen */
	top: 100px;
	bottom: 0px;
	left: 0px;																													/* content is fixed left and right */
	right: 0px;	
	white-space: nowrap;																											
	overflow: auto;																											/* content can be scrolled if the image is bigger than the screen */	
	-webkit-overflow-scrolling: touch;
	-ms-touch-action: none;
	touch-action: none;
	z-index: 0;																													/* content stays behind the processNav */
}

#svgport {
	position: absolute;
}

#printimage {
	display: none;
}

#pagetabs {
	display: none;
	position: absolute;
	bottom: 0;
	right: 0;
	width: auto;
}

#pagetabs ul {
	margin: 10px 2px 6px 10px;
}

/* ~~~ properties window ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#propertiesWindow {/* properties window, that is shown when clicked onto a shape */
	position: absolute;																			
	width: 850px;
	height: 500px;
	min-width: 600px;
	min-height: 400px;
	padding: 0 10px 40px 10px;
	top: 50%;
	left: 50%;
	z-index: 200000;
	display: none;
}

#propertiesWindowNavigation {
	height: auto;
	margin: 0px;
	padding: 0px;
	width: auto;
}

#propertiesWindowNavigation ul {
	float: left;
	margin: 0;
	padding: 0;
}

#propertiesWindowNavigation ul li {
    list-style-type: none;
    height: 40px;
    cursor: pointer;
    line-height: 40px;
    padding: 0 10px 0 10px;
}

    #propertiesWindowNavigation > ul > li[disabled="true"] {
        cursor: default;
    }

        #propertiesWindowNavigation > ul > li[disabled="true"] > a {
            color: lightgray;
            pointer-events: none;
        }

#propertiesWindowNavigation ul li a {
    height: 40px;
    line-height: 40px;
    display: block;
}

#propertiesWindowContent {
	height: calc(100% - 13px);
	min-height: inherit;
	width: auto;
	overflow: auto;
	margin-right: 2px;
	border-left: 3px solid;
}

#propertiesWindowContent iframe {
	border: none;
	width: 100%;
	height: 100%;
} 


#propertiesWindowProgress {
	position: absolute;
	top: 31px;
}

#propertiesWindowNavigation a:link, #propertiesWindowNavigation a:hover, #propertiesWindowNavigation a:active, #propertiesWindowNavigation a:visited {
	border-bottom: none !important;
}

/* ~~~ box definition ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.box {
	position: absolute;
	left: 50%;
	top: 50%;
	border: 1px solid;
}

.boxTitle {
	font-size: 110%;
	text-indent: 8px;
	cursor: default;
}

.boxTop {
	position: relative;
	float: left;
	width: 100%;
	line-height: 30px;
	box-sizing: border-box;
	margin: 0 0 10px 0;
}

.boxTop h1 {
	position: relative;
	padding: 0 6px 0 25px;
	margin: 0;
}

#propertiesWindow .boxTop h1{
	padding: 0;
	margin: 0 -10px 0 -10px;
}

#propertiesWindow .boxTop h1 span{
	margin: 0;
}

.boxTop.Movable h1 {
	cursor: move;
	-ms-touch-action: none;
	touch-action: none;
}

.boxTop h1 span {
	height: 30px;
	width: 30px;
	background-image: url(../images/ui/close.png);
	background-image: url(../images/ui/close.svg);
	background-position: center center;
	background-repeat: no-repeat;
	float: right;
	margin: 0 -7px 0 0;
	cursor: pointer;
}

/* ~~~ search result box ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#resultBox {
	width: 600px;
	min-width: 400px;
	height: 400px;
	min-height: 400px;
	z-index: 200000;		
	display: none;
}

#resultBox .tabstrip {
	margin-top: -12px;
}

#resultData {
	position: absolute;
	top: 80px;
	bottom: 10px;
	left: 10px;
	right: 10px;
	margin: 0 0 1px 0;
	padding: 5px 15px 5px 5px;
	overflow: auto;
	display: inherit !important;
}

#resultBoxProgress {
	position: absolute;
	top: 50px;
	margin: 12px;
}

#resultData span {
	display: block;
	padding: 10px;
}

#resultData img {
	width: auto;
	height: auto;
	vertical-align: middle;
	margin: 2px 5px 2px 0;
}

#resultData tr:first-child {
	display: none;
}

#resultData td:first-child {
	display: none;
}

#resultData td:last-child {
	display: none;
}

#resulttabs ul{
	width: calc(100% - 18px);
	margin: 12px 9px 0 9px;
}

#resulttabs ul li{
	width: 20%;
	height: 100%;
}

#modaloverlay{
	display: none!important;
}

.searchHit{
	position: relative;
	padding: 0 50px 0 10px!important;
}

.searchHit:after{
	content: url(../images/ui/searchHit.svg);
	position: absolute;
	right: 5px;
	top: calc(50% - 10px);
	height: 20px;
	width: 20px;
	border-radius: 20px;
	line-height: 20px;
}

/* ~~~ what's changed box ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#whatsChangedBox {
	width: 800px;
	min-width: 800px;
	height: 400px;
	min-height: 400px;
	z-index: 200000;		
	display: none;
}

#whatsChangedBoxProgress {
	position: absolute;
	top: 12px;
	margin: 12px;
}

#whatsChangedContent {
	overflow: auto;
	position: absolute;
	top: 40px;
	bottom: 20px;
	right: 0;
	left: 0;
	padding: 0px 10px 10px 10px;
}

#whatsChangedBoxData {
	overflow: auto;
	background-color: #FFFFFF;
	display: inherit !important;
}

#whatsChangedBoxData img {
	width: auto;
	height: auto;
	vertical-align: middle;
	margin: 2px 5px 2px 0;
}

#whatsChangedBoxMarker {
	position: absolute;
	bottom: 0px;
	left: 12px;
	margin: 0 auto;
}

#rssButton {
	display: none;
	margin: -16px 10px -2px 0;
	padding: 0;
	line-height: 1;
	float: right;
	cursor: pointer;
}

/* ~~~ settings box ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#settingsBox {
	max-width: 350px;
	z-index: 1000;
	display: none;
}

.settingsOption {
	display: inline-block;
	margin-bottom: 5px;
}

.settingsBoxDiv {
	cursor: default;
	margin: -10px 15px 20px 15px;
}

.settingsBoxDiv h2 {
	font-size: 100%;
	display: block;
	margin-bottom: 5px;
	-moz-user-select:none;																										/* no text select for firefox */
	-webkit-user-select: none;																									/* no téxt select for safari */
}

.settingsBoxDiv:last-child {
	border-bottom: none;
	padding-bottom: 0px;
}

.settingsBoxDiv {
	border-bottom: 1px solid;
	padding-bottom: 10px;
}

.settingsBoxDiv input, .settingsBoxDiv select {
	display: inline;
	outline: none;
	margin-left: 0px;
}

.settingsBoxDiv select {
	width: 100%;
}

.settingsBoxDiv p { 
	display: inline; 
	margin-right: 5px;
}

/* ~~~ zoom box ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#zoomBox {
	z-index: 100000;
	display: none;
	width: 300px;
}

#zoomBoxText {
	margin: 0 0 7px 15px;
}

#zoomGraphic {
	background-color: #FFFFFF;
	width: 240px;
	height: 170px;
	float: left;
	margin: 0px 0px 15px 15px;
	-ms-touch-action: none;
	touch-action: none;
}

#zoomEvents {
	width: 100px;
	height: 100px;
	border: 1px solid;
}

#zoomGraphic embed, #zoomRectangle, #zoomEvents {
	position: absolute;
	-ms-touch-action: none;
	touch-action: none;
}

#zoomRectangle {
	border: 2px solid highlight;
	display: none;
}

#zoomBox ul {
	float: left;
	padding: 0px;
	margin: -5px 10px 0px 15px;
}

#zoomBox ul li {
	list-style-type:none;
	margin-top: 6px;
	padding: 0px;
	margin-left: 0px;
	cursor: pointer;
}

#zoomSheet {
	width: 15px;
	height: 20px;
	background-image: url(../images/ui/zoom/fit_to_window.png);
	background-image: url(../images/ui/zoom/fit_to_window.svg);
}

#zoomSheet:hover { 
	background-image: url(../images/ui/zoom/fit_to_window.png);
	background-image: url(../images/ui/zoom/fit_to_window.svg);
}

#zoomPlus {
	width: 15px;
	height: 15px;
	background-image: url(../images/ui/zoom/zoom_in.png); 
	background-image: url(../images/ui/zoom/zoom_in.svg); 
}

#zoomPlus:hover { background-image: url(../images/ui/zoom/zoom_in_hover.png); }
#zoomPlus:hover { background-image: url(../images/ui/zoom/zoom_in_hover.svg); }

.zoomStep {
	width: 15px;
	height: 6px;
	background-image: url(../images/ui/zoom/step.png); 
	background-image: url(../images/ui/zoom/step.svg); 
}

.zoomStep:hover { background-image: url(../images/ui/zoom/step_hover.png); }
.zoomStep:hover { background-image: url(../images/ui/zoom/step_hover.svg); }

.activeZoomStep {
	width: 15px;
	height: 6px;
	background-image: url(../images/ui/zoom/step_active.png); 
	background-image: url(../images/ui/zoom/step_active.svg); 
}

#zoomMinus {
	width: 15px;
	height: 15px;
	background-image: url(../images/ui/zoom/zoom_out.png);
	background-image: url(../images/ui/zoom/zoom_out.svg);
}

#zoomMinus:hover { background-image: url(../images/ui/zoom/zoom_out_hover.png); }
#zoomMinus:hover { background-image: url(../images/ui/zoom/zoom_out_hover.svg); }

/* ~~~ property window content ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.propTable {
	width: 100%;
	border-spacing: 10px;
}

	/* Formatted strings should be displayed without the default paragraph margins */
	.propTable .formattedstring > p {
		margin-top: 0;
	}

.propTable caption {
	padding: 10px;
	padding-bottom: 0px;
	text-align: left;
}

.propTable .propTable {
	margin: -10px;
}

.propTable th, .propTable td {
	text-align: left;
	vertical-align: top;
}

.propTable th {
	white-space: nowrap;
}

.propTable .para {
	padding-top: 1em;
}

.propTable td {
	white-space: pre-wrap;
}

/* activation will cause #5082! 
.hideEmpty td {
	empty-cells: hide;
}
*/

.propTable:not(.sortable) {
	border-bottom: 1px dashed;
	margin-bottom: 10px;
}

.propTable:not(.sortable):last-child {
	border-bottom: none;
	margin-bottom: 0px;
}

.propTable:not(.sortable) td:last-child {
	width: 100%;
}

.sortable {
	border-spacing: 0 !important;
	padding: 5px;
}
.sortable.noPadding {
	border-spacing: 0 !important;
	padding: 0px;
}

.sortable > tr > td, .sortable > tr > th {
	padding: 5px;
}

.sortable > tr > th {
	cursor: pointer;
}

.sortable > tr > th:not(.sorted_asc):not(.sorted_desc):after {
	content: " \25B4\25BE";
}

.sortable > tr > th:not(.sorted_asc):after {
	content: " \25BE";
}

.sortable > tr > th:not(.sorted_desc):after {
	content: " \25B4";
}

/* ~~~ window ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.boxIcon{
	position: absolute;
	width: 18px;
	height: 18px;
	top: 6px;
	left: 10px;
}

/* ~~~ media queries ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

@media only screen and (max-width: 1024px) {
	.noTablet{
		display: none;
	}
	#naviProcessesLink:before, #naviInformationLink:before, #naviAreasLink:before{
		left: 14px!important;
	}
	#navibar ul li{
		position: relative;
		top: -1px;
	}
}


@media only screen and (max-width: 1206px) {
    .noMobile {
        display: none;
    }
	#navibar ul li {
		position: relative;
		top: -1px;
	}
		#navibar ul li a:link{
			margin: 0px auto -16px auto;
		}
	#navibar ul.dropdown li a:link{
		margin: 0px auto;
	}
	#naviHistoryLink:before, #naviZoomLink:before, #naviFeedbackLink:before, #hyperlinkMenuLink:before, #naviUserLink:before, #naviSettingsLink:before, #naviHelpLink:before{
		left: 14px!important;
	}
}

@media only screen and (min-width: 1676px) {
    .noMobile {
        display: inline-block;
    }
}