.support-box {
	border: 1px solid #aaaaaa;
	border-radius: 5px;
	padding: 10px;
	box-sizing: border-box;
	margin-bottom: 30px;
}
.support-box.no-padding {
	padding: 0;
}
.support-box.sbox-1 {
	width: 100%;
	clear: both;
}
.support-box.sbox-5 {
	width: 49%;
	float: left;
	clear: left;
}
.support-box.sbox-6 {
	width: 49%;
	float: right;
	clear: right;
}

.support-box.youtube {
	padding: 0;
	overflow: hidden;
	background: #000;
}
.support-box.youtube iframe {
	border-radius: 5px;
    vertical-align: bottom;
}

#navigation-wrapper {
	padding: 15px 30px 25px 30px;
    z-index: 999;
    box-sizing: border-box;
    box-shadow: 		inset 8px 0px 8px -8px #696868, 
    					inset -8px 0px 8px -8px #696868;
    overflow-y: hidden;
    width: 100%;
    border-radius: 4px;
}

#navigation-wrapper.sticky {
	position: fixed;
	width: 937px;
	/*margin-top: -388px;*/
	margin-left: -1px;
	background: #F7F7F7;
	border-radius: 0 0 4px 4px;
	border: 1px solid #aaaaaa;
}

#navigator {
	width: 100%;

	
}

.mbottom {
	margin-bottom: 30px;
}

#navigator ul {
	width: 100%;
	display: flex;
	list-style: none;
	padding: 0px;
	margin-bottom: 0px;
}

#navigator ul>li {
	flex-grow: 1;
	background: #993366;
	border: 1px solid #000;
	border-radius: 5px;
	color: #ffffff;
	padding: 10px;
    margin-right: 10px;
    max-width: 200px;
    min-width: 200px;
    box-sizing: border-box;
    transition: all 100ms ease;
    max-height: 54px;
    position: relative;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* IE/Edge */
    user-select: none;
    cursor: pointer;
}



#navigator ul>li.multiple {
	background: none;
	border: 0;
	border-radius: 5px;
	color: #ffffff;
	padding: 0;
    margin-right: 10px;
    max-width: 200px;
    min-width: 200px;
    box-sizing: border-box;
    transition: all 100ms ease;
    cursor: default;
}

#navigator ul>li.multiple .controller {
	position: absolute;
	top: 0px;
	color: #000;
	z-index: 999;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

#navigator ul>li.multiple>.next,
#navigator ul>li.multiple>.back {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none;   /* Chrome/Safari/Opera */
	-khtml-user-select: none;    /* Konqueror */
	-moz-user-select: none;      /* Firefox */
	-ms-user-select: none;       /* IE/Edge */
	user-select: none;  
}
#navigator ul>li.multiple>.next {
	position: absolute;
	cursor: pointer;
	left: 50%;
	margin-left: -12px;
	bottom: -30px;
	z-index: 999;
	color: #000;
}
#navigator ul>li.multiple>.back {
	position: absolute;
	cursor: pointer;
	left: 50%;
	margin-left: -12px;
	top: -25px;
	display: none;
	z-index: 999;
	color: #000;
}

#navigator ul>li.multiple ul { 
	width: 100%; 
	display: block;
	position: relative; 
	top: 0px;
	transition: all 200ms ease;
}
#navigator ul>li.multiple ul>li { 
	height: 54px;
	margin-bottom: 30px;
}
#navigator ul>li.multiple ul>li:hover {
	transform: scale(1.05);
}

#navigator ul>li.current {
	background: #541B38;
}

#navigator ul>li:last-child {
	margin-right: 0px;
}
#navigator ul>li:not(.multiple):hover {
	transform: scale(1.05);
}
#navigator ul>li>a {
	color: #fff;
}
#navigator ul>li .number {
    width: 30px;
    text-align: center;
    float: left;
    font-weight: 700;
}

#navigator ul>li .content {
	float: right;
    width: 140px;
}


.workflow {
	position: relative;
}
#workflow-content {
	padding: 0px 40px;
}


#navigation-buttons {
	position: absolute;
	top: 50%;
	left: 0px;
	margin-top: -24px;
	width: 100%;
}

#navigation-buttons i {
	font-size: 48px;
	cursor: pointer;
	transition: all 100ms ease;
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none;   /* Chrome/Safari/Opera */
	-khtml-user-select: none;    /* Konqueror */
	-moz-user-select: none;      /* Firefox */
	-ms-user-select: none;       /* IE/Edge */
	user-select: none;  
}
#navigation-buttons i:hover {
	transform: scale(1.2);
}
#navigation-buttons .back {
	display: none;
	position: absolute;
	left: 0px;
}
#navigation-buttons .next {
	right: 0px;
	position: absolute;
}

.workflowlist span { font-weight: bold; }
.workflowlist { margin-bottom: 0px; }
.workflowlist li {
	margin-bottom: 5px;
	cursor: pointer; 
}

.minimized-dialogs {
	position: fixed;
	bottom: 0;
	right: 50px;
}

@keyframes showMinimizedItem {
    from 	{bottom: -40px;}
    to 		{bottom: 0px;}
}
@keyframes hideMinimizedItem {
    from 	{bottom: 0px;}
    to 		{bottom: -40px;}
}

.minimized-dialogs ul { 
	overflow: hidden; 
	margin: 0px;
}
.minimized-dialogs ul>li {
	position: relative;
	list-style: none;
	background: #ccc;
	animation: showMinimizedItem 500ms ease;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    display: inline-block;
    margin-left: 10px;
}

.minimized-dialogs ul>li.hide {
	animation: hideMinimizedItem 500ms ease;
    animation-fill-mode: forwards; 
}

.quicklinks {
	margin-bottom: 30px;
}

.quicklinks a {
	margin-right: 10px;
	background: #993366;
    border: 1px solid #000;
    border-radius: 5px;
    color: #ffffff;
    padding: 5px;
    text-decoration: none;
}

.quicklinks a:hover {
	color: #ffffff;	
}