/* PrismJS 1.15.0
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript+abap+actionscript+ada+apacheconf+apl+applescript+c+arff+asciidoc+asm6502+csharp+autohotkey+autoit+bash+basic+batch+bison+brainfuck+bro+cpp+aspnet+arduino+coffeescript+clojure+ruby+csp+css-extras+d+dart+diff+django+docker+eiffel+elixir+elm+markup-templating+erlang+fsharp+flow+fortran+gedcom+gherkin+git+glsl+go+graphql+groovy+less+handlebars+haskell+haxe+http+hpkp+hsts+ichigojam+icon+inform7+ini+io+j+java+jolie+json+julia+keyman+kotlin+latex+markdown+liquid+lisp+livescript+lolcode+lua+makefile+crystal+erb+matlab+mel+mizar+monkey+n4js+nasm+nginx+nim+nix+nsis+objectivec+ocaml+opencl+oz+parigp+parser+pascal+perl+php+php-extras+sql+powershell+processing+prolog+properties+protobuf+scss+puppet+pure+python+q+qore+r+jsx+typescript+renpy+reason+rest+rip+roboconf+textile+rust+sas+sass+stylus+scala+scheme+smalltalk+smarty+plsql+soy+pug+swift+yaml+tcl+haml+tt2+twig+tsx+vbnet+velocity+verilog+vhdl+vim+visual-basic+wasm+wiki+xeora+xojo+xquery+tap&plugins=line-highlight+line-numbers+autoloader+unescaped-markup+normalize-whitespace+keep-markup */
/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */

code[class*="language-"],
pre[class*="language-"] {
	color: black;
	background: none;
	text-shadow: 0 1px white;
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	text-align: left;
	white-space: pre-wrap;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.5;

	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
	text-shadow: none;
	background: #b3d4fc;
}

pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
	text-shadow: none;
	background: #b3d4fc;
}

@media print {
	code[class*="language-"],
	pre[class*="language-"] {
		text-shadow: none;
	}
}

/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	background: #f9f9f9;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
	padding: .1em;
	border-radius: .3em;
	white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: slategray;
}

.token.punctuation {
	color: #999;
}

.namespace {
	opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
	color: #905;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
	color: #690;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
	color: #9a6e3a;
	background: hsla(0, 0%, 100%, .5);
}

.token.atrule,
.token.attr-value,
.token.keyword {
	color: #07a;
}

.token.function,
.token.class-name {
	color: #DD4A68;
}

.token.regex,
.token.important,
.token.variable {
	color: #e90;
}

.token.important,
.token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}

.token.entity {
	cursor: help;
}

pre[data-line] {
	position: relative;
	padding: 1em 0 1em 3em;
}

.line-highlight {
	position: absolute;
	left: 0;
	right: 0;
	padding: inherit 0;
	margin-top: 1em; /* Same as .prism’s padding-top */

	background: hsla(24, 20%, 50%,.08);
	background: linear-gradient(to right, hsla(24, 20%, 50%,.1) 70%, hsla(24, 20%, 50%,0));

	pointer-events: none;

	line-height: inherit;
	white-space: pre;
}

	.line-highlight:before,
	.line-highlight[data-end]:after {
		content: attr(data-start);
		position: absolute;
		top: .4em;
		left: .6em;
		min-width: 1em;
		padding: 0 .5em;
		background-color: hsla(24, 20%, 50%,.4);
		color: hsl(24, 20%, 95%);
		font: bold 65%/1.5 sans-serif;
		text-align: center;
		vertical-align: .3em;
		border-radius: 999px;
		text-shadow: none;
		box-shadow: 0 1px white;
	}

	.line-highlight[data-end]:after {
		content: attr(data-end);
		top: auto;
		bottom: .4em;
	}

.line-numbers .line-highlight:before,
.line-numbers .line-highlight:after {
	content: none;
}

pre[class*="language-"].line-numbers {
	position: relative;
	padding-left: 3.8em;
	counter-reset: linenumber;
}

pre[class*="language-"].line-numbers > code {
	position: relative;
	white-space: inherit;
}

.line-numbers .line-numbers-rows {
	position: absolute;
	pointer-events: none;
	top: 0;
	font-size: 100%;
	left: -3.8em;
	width: 3em; /* works for line-numbers below 1000 lines */
	letter-spacing: -1px;
	border-right: 1px solid #999;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

}

	.line-numbers-rows > span {
		pointer-events: none;
		display: block;
		counter-increment: linenumber;
	}

		.line-numbers-rows > span:before {
			content: counter(linenumber);
			color: #999;
			display: block;
			padding-right: 0.8em;
			text-align: right;
		}

/* Fallback, in case JS does not run, to ensure the code is at least visible */
[class*='lang-'] script[type='text/plain'],
[class*='language-'] script[type='text/plain'],
script[type='text/plain'][class*='lang-'],
script[type='text/plain'][class*='language-'] {
	display: block;
	font: 100% Consolas, Monaco, monospace;
	white-space: pre;
	overflow: auto;
}

/*! jQuery UI - v1.12.1 - 2016-09-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* Copyright jQuery Foundation and other contributors; Licensed MIT */
.ui-helper-hidden {
	display: none
}

.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px
}

.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none
}

.ui-helper-clearfix:before, .ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse
}

.ui-helper-clearfix:after {
	clear: both
}

.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter: Alpha(Opacity = 0)
}

.ui-front {
	z-index: 100
}

.ui-state-disabled {
	cursor: default !important;
	pointer-events: none
}

.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat
}

.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block
}

.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	font-size: 100%
}

.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto
}

.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default
}

.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: 0
}

.ui-menu .ui-menu {
	position: absolute
}

.ui-menu .ui-menu-item {
	margin: 0;
	cursor: pointer;
	list-style-image:
		url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")
}

.ui-menu .ui-menu-item-wrapper {
	position: relative;
	padding: 3px 1em 3px .4em
}

.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0
}

.ui-menu .ui-state-focus, .ui-menu .ui-state-active {
	margin: -1px
}

.ui-menu-icons {
	position: relative
}

.ui-menu-icons .ui-menu-item-wrapper {
	padding-left: 2em
}

.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0
}

.ui-menu .ui-menu-icon {
	left: auto;
	right: 0
}

.ui-button {
	padding: .4em 1em;
	display: inline-block;
	position: relative;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow: visible
}

.ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover,
	.ui-button:active {
	text-decoration: none
}

.ui-button-icon-only {
	width: 2em;
	box-sizing: border-box;
	text-indent: -9999px;
	white-space: nowrap
}

input.ui-button.ui-button-icon-only {
	text-indent: 0
}

.ui-button-icon-only .ui-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px
}

.ui-button.ui-icon-notext .ui-icon {
	padding: 0;
	width: 2.1em;
	height: 2.1em;
	text-indent: -9999px;
	white-space: nowrap
}

input.ui-button.ui-icon-notext .ui-icon {
	width: auto;
	height: auto;
	text-indent: 0;
	white-space: normal;
	padding: .4em 1em
}

input.ui-button::-moz-focus-inner, button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0
}

.ui-controlgroup {
	vertical-align: middle;
	display: inline-block
}

.ui-controlgroup>.ui-controlgroup-item {
	float: left;
	margin-left: 0;
	margin-right: 0
}

.ui-controlgroup>.ui-controlgroup-item:focus, .ui-controlgroup>.ui-controlgroup-item.ui-visual-focus
	{
	z-index: 9999
}

.ui-controlgroup-vertical>.ui-controlgroup-item {
	display: block;
	float: none;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	text-align: left
}

.ui-controlgroup-vertical .ui-controlgroup-item {
	box-sizing: border-box
}

.ui-controlgroup .ui-controlgroup-label {
	padding: .4em 1em
}

.ui-controlgroup .ui-controlgroup-label span {
	font-size: 80%
}

.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item
	{
	border-left: none
}

.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item {
	border-top: none
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
	border-right: none
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
	border-bottom: none
}

.ui-controlgroup-vertical .ui-spinner-input {
	width: 75%;
	width: calc(100% - 2.4em)
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
	border-top-style: solid
}

.ui-checkboxradio-label .ui-icon-background {
	box-shadow: inset 1px 1px 1px #ccc;
	border-radius: .12em;
	border: none
}

.ui-checkboxradio-radio-label .ui-icon-background {
	width: 16px;
	height: 16px;
	border-radius: 1em;
	overflow: visible;
	border: none
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
	.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
	background-image: none;
	width: 8px;
	height: 8px;
	border-width: 4px;
	border-style: solid
}

.ui-checkboxradio-disabled {
	pointer-events: none
}

.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none
}

.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em
}

.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover
	{
	top: 1px
}

.ui-datepicker .ui-datepicker-prev {
	left: 2px
}

.ui-datepicker .ui-datepicker-next {
	right: 2px
}

.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px
}

.ui-datepicker .ui-datepicker-next-hover {
	right: 1px
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span
	{
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px
}

.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center
}

.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year
	{
	width: 45%
}

.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em
}

.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0
}

.ui-datepicker td {
	border: 0;
	padding: 1px
}

.ui-datepicker td span, .ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none
}

.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0
}

.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left
}

.ui-datepicker.ui-datepicker-multi {
	width: auto
}

.ui-datepicker-multi .ui-datepicker-group {
	float: left
}

.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em
}

.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%
}

.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%
}

.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
	.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header
	{
	border-left-width: 0
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left
}

.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0
}

.ui-datepicker-rtl {
	direction: rtl
}

.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto
}

.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
	.ui-datepicker-rtl .ui-datepicker-group {
	float: right
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
	.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px
}

.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: .5em;
	top: .3em
}

.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0
}

.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative
}

.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis
}

.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px
}

.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto
}

.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right
}

.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer
}

.ui-dialog .ui-resizable-n {
	height: 2px;
	top: 0
}

.ui-dialog .ui-resizable-e {
	width: 2px;
	right: 0
}

.ui-dialog .ui-resizable-s {
	height: 2px;
	bottom: 0
}

.ui-dialog .ui-resizable-w {
	width: 2px;
	left: 0
}

.ui-dialog .ui-resizable-se, .ui-dialog .ui-resizable-sw, .ui-dialog .ui-resizable-ne,
	.ui-dialog .ui-resizable-nw {
	width: 7px;
	height: 7px
}

.ui-dialog .ui-resizable-se {
	right: 0;
	bottom: 0
}

.ui-dialog .ui-resizable-sw {
	left: 0;
	bottom: 0
}

.ui-dialog .ui-resizable-ne {
	right: 0;
	top: 0
}

.ui-dialog .ui-resizable-nw {
	left: 0;
	top: 0
}

.ui-draggable .ui-dialog-titlebar {
	cursor: move
}

.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none
}

.ui-resizable {
	position: relative
}

.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none
}

.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle
	{
	display: none
}

.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0
}

.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0
}

.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%
}

.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%
}

.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px
}

.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px
}

.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px
}

.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px
}

.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden
}

.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%
}

.ui-progressbar .ui-progressbar-overlay {
	background:
		url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
	height: 100%;
	filter: alpha(opacity = 25);
	opacity: 0.25
}

.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none
}

.ui-selectable {
	-ms-touch-action: none;
	touch-action: none
}

.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black
}

.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none
}

.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	overflow-x: hidden;
	padding-bottom: 1px
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0
}

.ui-selectmenu-open {
	display: block
}

.ui-selectmenu-text {
	display: block;
	margin-right: 20px;
	overflow: hidden;
	text-overflow: ellipsis
}

.ui-selectmenu-button.ui-button {
	text-align: left;
	white-space: nowrap;
	width: 14em
}

.ui-selectmenu-icon.ui-icon {
	float: right;
	margin-top: 0
}

.ui-slider {
	position: relative;
	text-align: left
}

.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
	-ms-touch-action: none;
	touch-action: none
}

.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0
}

.ui-slider.ui-state-disabled .ui-slider-handle, .ui-slider.ui-state-disabled .ui-slider-range
	{
	filter: inherit
}

.ui-slider-horizontal {
	height: .8em
}

.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em
}

.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%
}

.ui-slider-horizontal .ui-slider-range-min {
	left: 0
}

.ui-slider-horizontal .ui-slider-range-max {
	right: 0
}

.ui-slider-vertical {
	width: .8em;
	height: 100px
}

.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em
}

.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%
}

.ui-slider-vertical .ui-slider-range-min {
	bottom: 0
}

.ui-slider-vertical .ui-slider-range-max {
	top: 0
}

.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none
}

.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle
}

.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: .222em 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 2em
}

.ui-spinner-button {
	width: 1.6em;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0
}

.ui-spinner a.ui-spinner-button {
	border-top-style: none;
	border-bottom-style: none;
	border-right-style: none
}

.ui-spinner-up {
	top: 0
}

.ui-spinner-down {
	bottom: 0
}

.ui-tabs {
	position: relative;
	padding: .2em
}

.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0
}

.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
	.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer
}

.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none
}

.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px
}

body .ui-tooltip {
	border-width: 2px
}

.ui-widget {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em
}

.ui-widget .ui-widget {
	font-size: 1em
}

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button
	{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em
}

.ui-widget.ui-widget-content {
	border: 1px solid #c5c5c5
}

.ui-widget-content {
	border: 1px solid #ddd;
	background: #fff;
	color: #333
}

.ui-widget-content a {
	color: #333
}

.ui-widget-header {
	border: 1px solid #ddd;
	background: #e9e9e9;
	color: #333;
	font-weight: bold
}

.ui-widget-header a {
	color: #333
}

.ui-state-default, .ui-widget-content .ui-state-default,
	.ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover,
	html .ui-button.ui-state-disabled:active {
	border: 1px solid #c5c5c5;
	background: #f6f6f6;
	font-weight: normal;
	color: #454545
}

.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited,
	a.ui-button, a:link.ui-button, a:visited.ui-button, .ui-button {
	color: #454545;
	text-decoration: none
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover,
	.ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus,
	.ui-button:hover, .ui-button:focus {
	border: 1px solid #ccc;
	background: #ededed;
	font-weight: normal;
	color: #2b2b2b
}

.ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link,
	.ui-state-hover a:visited, .ui-state-focus a, .ui-state-focus a:hover,
	.ui-state-focus a:link, .ui-state-focus a:visited, a.ui-button:hover, a.ui-button:focus
	{
	color: #2b2b2b;
	text-decoration: none
}

.ui-visual-focus {
	box-shadow: 0 0 3px 1px rgb(94, 158, 214)
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active,
	a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover
	{
	border: 1px solid #003eff;
	background: #007fff;
	font-weight: normal;
	color: #fff
}

.ui-icon-background, .ui-state-active .ui-icon-background {
	border: #003eff;
	background-color: #fff
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited
	{
	color: #fff;
	text-decoration: none
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight,
	.ui-widget-header .ui-state-highlight {
	border: 1px solid #dad55e;
	background: #fffa90;
	color: #777620
}

.ui-state-checked {
	border: 1px solid #dad55e;
	background: #fffa90
}

.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,
	.ui-widget-header .ui-state-highlight a {
	color: #777620
}

.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error
	{
	border: 1px solid #f1a899;
	background: #fddfdf;
	color: #5f3f3f
}

.ui-state-error a, .ui-widget-content .ui-state-error a,
	.ui-widget-header .ui-state-error a {
	color: #5f3f3f
}

.ui-state-error-text, .ui-widget-content .ui-state-error-text,
	.ui-widget-header .ui-state-error-text {
	color: #5f3f3f
}

.ui-priority-primary, .ui-widget-content .ui-priority-primary,
	.ui-widget-header .ui-priority-primary {
	font-weight: bold
}

.ui-priority-secondary, .ui-widget-content .ui-priority-secondary,
	.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter: Alpha(Opacity = 70);
	font-weight: normal
}

.ui-state-disabled, .ui-widget-content .ui-state-disabled,
	.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter: Alpha(Opacity = 35);
	background-image: none
}

.ui-state-disabled .ui-icon {
	filter: Alpha(Opacity = 35)
}

.ui-icon {
	width: 16px;
	height: 16px
}

.ui-icon, .ui-widget-content .ui-icon {
	background-image: url("clientlib-site/css/images/ui-icons_444444_256x240.png")
}

.ui-widget-header .ui-icon {
	background-image: url("clientlib-site/css/images/ui-icons_444444_256x240.png")
}

.ui-state-hover .ui-icon, .ui-state-focus .ui-icon, .ui-button:hover .ui-icon,
	.ui-button:focus .ui-icon {
	background-image: url("clientlib-site/css/images/ui-icons_555555_256x240.png")
}

.ui-state-active .ui-icon, .ui-button:active .ui-icon {
	background-image: url("clientlib-site/css/images/ui-icons_ffffff_256x240.png")
}

.ui-state-highlight .ui-icon, .ui-button .ui-state-highlight.ui-icon {
	background-image: url("clientlib-site/css/images/ui-icons_777620_256x240.png")
}

.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {
	background-image: url("clientlib-site/css/images/ui-icons_cc0000_256x240.png")
}

.ui-button .ui-icon {
	background-image: url("clientlib-site/css/images/ui-icons_777777_256x240.png")
}

.ui-icon-blank {
	background-position: 16px 16px
}

.ui-icon-caret-1-n {
	background-position: 0 0
}

.ui-icon-caret-1-ne {
	background-position: -16px 0
}

.ui-icon-caret-1-e {
	background-position: -32px 0
}

.ui-icon-caret-1-se {
	background-position: -48px 0
}

.ui-icon-caret-1-s {
	background-position: -65px 0
}

.ui-icon-caret-1-sw {
	background-position: -80px 0
}

.ui-icon-caret-1-w {
	background-position: -96px 0
}

.ui-icon-caret-1-nw {
	background-position: -112px 0
}

.ui-icon-caret-2-n-s {
	background-position: -128px 0
}

.ui-icon-caret-2-e-w {
	background-position: -144px 0
}

.ui-icon-triangle-1-n {
	background-position: 0 -16px
}

.ui-icon-triangle-1-ne {
	background-position: -16px -16px
}

.ui-icon-triangle-1-e {
	background-position: -32px -16px
}

.ui-icon-triangle-1-se {
	background-position: -48px -16px
}

.ui-icon-triangle-1-s {
	background-position: -65px -16px
}

.ui-icon-triangle-1-sw {
	background-position: -80px -16px
}

.ui-icon-triangle-1-w {
	background-position: -96px -16px
}

.ui-icon-triangle-1-nw {
	background-position: -112px -16px
}

.ui-icon-triangle-2-n-s {
	background-position: -128px -16px
}

.ui-icon-triangle-2-e-w {
	background-position: -144px -16px
}

.ui-icon-arrow-1-n {
	background-position: 0 -32px
}

.ui-icon-arrow-1-ne {
	background-position: -16px -32px
}

.ui-icon-arrow-1-e {
	background-position: -32px -32px
}

.ui-icon-arrow-1-se {
	background-position: -48px -32px
}

.ui-icon-arrow-1-s {
	background-position: -65px -32px
}

.ui-icon-arrow-1-sw {
	background-position: -80px -32px
}

.ui-icon-arrow-1-w {
	background-position: -96px -32px
}

.ui-icon-arrow-1-nw {
	background-position: -112px -32px
}

.ui-icon-arrow-2-n-s {
	background-position: -128px -32px
}

.ui-icon-arrow-2-ne-sw {
	background-position: -144px -32px
}

.ui-icon-arrow-2-e-w {
	background-position: -160px -32px
}

.ui-icon-arrow-2-se-nw {
	background-position: -176px -32px
}

.ui-icon-arrowstop-1-n {
	background-position: -192px -32px
}

.ui-icon-arrowstop-1-e {
	background-position: -208px -32px
}

.ui-icon-arrowstop-1-s {
	background-position: -224px -32px
}

.ui-icon-arrowstop-1-w {
	background-position: -240px -32px
}

.ui-icon-arrowthick-1-n {
	background-position: 1px -48px
}

.ui-icon-arrowthick-1-ne {
	background-position: -16px -48px
}

.ui-icon-arrowthick-1-e {
	background-position: -32px -48px
}

.ui-icon-arrowthick-1-se {
	background-position: -48px -48px
}

.ui-icon-arrowthick-1-s {
	background-position: -64px -48px
}

.ui-icon-arrowthick-1-sw {
	background-position: -80px -48px
}

.ui-icon-arrowthick-1-w {
	background-position: -96px -48px
}

.ui-icon-arrowthick-1-nw {
	background-position: -112px -48px
}

.ui-icon-arrowthick-2-n-s {
	background-position: -128px -48px
}

.ui-icon-arrowthick-2-ne-sw {
	background-position: -144px -48px
}

.ui-icon-arrowthick-2-e-w {
	background-position: -160px -48px
}

.ui-icon-arrowthick-2-se-nw {
	background-position: -176px -48px
}

.ui-icon-arrowthickstop-1-n {
	background-position: -192px -48px
}

.ui-icon-arrowthickstop-1-e {
	background-position: -208px -48px
}

.ui-icon-arrowthickstop-1-s {
	background-position: -224px -48px
}

.ui-icon-arrowthickstop-1-w {
	background-position: -240px -48px
}

.ui-icon-arrowreturnthick-1-w {
	background-position: 0 -64px
}

.ui-icon-arrowreturnthick-1-n {
	background-position: -16px -64px
}

.ui-icon-arrowreturnthick-1-e {
	background-position: -32px -64px
}

.ui-icon-arrowreturnthick-1-s {
	background-position: -48px -64px
}

.ui-icon-arrowreturn-1-w {
	background-position: -64px -64px
}

.ui-icon-arrowreturn-1-n {
	background-position: -80px -64px
}

.ui-icon-arrowreturn-1-e {
	background-position: -96px -64px
}

.ui-icon-arrowreturn-1-s {
	background-position: -112px -64px
}

.ui-icon-arrowrefresh-1-w {
	background-position: -128px -64px
}

.ui-icon-arrowrefresh-1-n {
	background-position: -144px -64px
}

.ui-icon-arrowrefresh-1-e {
	background-position: -160px -64px
}

.ui-icon-arrowrefresh-1-s {
	background-position: -176px -64px
}

.ui-icon-arrow-4 {
	background-position: 0 -80px
}

.ui-icon-arrow-4-diag {
	background-position: -16px -80px
}

.ui-icon-extlink {
	background-position: -32px -80px
}

.ui-icon-newwin {
	background-position: -48px -80px
}

.ui-icon-refresh {
	background-position: -64px -80px
}

.ui-icon-shuffle {
	background-position: -80px -80px
}

.ui-icon-transfer-e-w {
	background-position: -96px -80px
}

.ui-icon-transferthick-e-w {
	background-position: -112px -80px
}

.ui-icon-folder-collapsed {
	background-position: 0 -96px
}

.ui-icon-folder-open {
	background-position: -16px -96px
}

.ui-icon-document {
	background-position: -32px -96px
}

.ui-icon-document-b {
	background-position: -48px -96px
}

.ui-icon-note {
	background-position: -64px -96px
}

.ui-icon-mail-closed {
	background-position: -80px -96px
}

.ui-icon-mail-open {
	background-position: -96px -96px
}

.ui-icon-suitcase {
	background-position: -112px -96px
}

.ui-icon-comment {
	background-position: -128px -96px
}

.ui-icon-person {
	background-position: -144px -96px
}

.ui-icon-print {
	background-position: -160px -96px
}

.ui-icon-trash {
	background-position: -176px -96px
}

.ui-icon-locked {
	background-position: -192px -96px
}

.ui-icon-unlocked {
	background-position: -208px -96px
}

.ui-icon-bookmark {
	background-position: -224px -96px
}

.ui-icon-tag {
	background-position: -240px -96px
}

.ui-icon-home {
	background-position: 0 -112px
}

.ui-icon-flag {
	background-position: -16px -112px
}

.ui-icon-calendar {
	background-position: -32px -112px
}

.ui-icon-cart {
	background-position: -48px -112px
}

.ui-icon-pencil {
	background-position: -64px -112px
}

.ui-icon-clock {
	background-position: -80px -112px
}

.ui-icon-disk {
	background-position: -96px -112px
}

.ui-icon-calculator {
	background-position: -112px -112px
}

.ui-icon-zoomin {
	background-position: -128px -112px
}

.ui-icon-zoomout {
	background-position: -144px -112px
}

.ui-icon-search {
	background-position: -160px -112px
}

.ui-icon-wrench {
	background-position: -176px -112px
}

.ui-icon-gear {
	background-position: -192px -112px
}

.ui-icon-heart {
	background-position: -208px -112px
}

.ui-icon-star {
	background-position: -224px -112px
}

.ui-icon-link {
	background-position: -240px -112px
}

.ui-icon-cancel {
	background-position: 0 -128px
}

.ui-icon-plus {
	background-position: -16px -128px
}

.ui-icon-plusthick {
	background-position: -32px -128px
}

.ui-icon-minus {
	background-position: -48px -128px
}

.ui-icon-minusthick {
	background-position: -64px -128px
}

.ui-icon-close {
	background-position: -80px -128px
}

.ui-icon-closethick {
	background-position: -96px -128px
}

.ui-icon-key {
	background-position: -112px -128px
}

.ui-icon-lightbulb {
	background-position: -128px -128px
}

.ui-icon-scissors {
	background-position: -144px -128px
}

.ui-icon-clipboard {
	background-position: -160px -128px
}

.ui-icon-copy {
	background-position: -176px -128px
}

.ui-icon-contact {
	background-position: -192px -128px
}

.ui-icon-image {
	background-position: -208px -128px
}

.ui-icon-video {
	background-position: -224px -128px
}

.ui-icon-script {
	background-position: -240px -128px
}

.ui-icon-alert {
	background-position: 0 -144px
}

.ui-icon-info {
	background-position: -16px -144px
}

.ui-icon-notice {
	background-position: -32px -144px
}

.ui-icon-help {
	background-position: -48px -144px
}

.ui-icon-check {
	background-position: -64px -144px
}

.ui-icon-bullet {
	background-position: -80px -144px
}

.ui-icon-radio-on {
	background-position: -96px -144px
}

.ui-icon-radio-off {
	background-position: -112px -144px
}

.ui-icon-pin-w {
	background-position: -128px -144px
}

.ui-icon-pin-s {
	background-position: -144px -144px
}

.ui-icon-play {
	background-position: 0 -160px
}

.ui-icon-pause {
	background-position: -16px -160px
}

.ui-icon-seek-next {
	background-position: -32px -160px
}

.ui-icon-seek-prev {
	background-position: -48px -160px
}

.ui-icon-seek-end {
	background-position: -64px -160px
}

.ui-icon-seek-start {
	background-position: -80px -160px
}

.ui-icon-seek-first {
	background-position: -80px -160px
}

.ui-icon-stop {
	background-position: -96px -160px
}

.ui-icon-eject {
	background-position: -112px -160px
}

.ui-icon-volume-off {
	background-position: -128px -160px
}

.ui-icon-volume-on {
	background-position: -144px -160px
}

.ui-icon-power {
	background-position: 0 -176px
}

.ui-icon-signal-diag {
	background-position: -16px -176px
}

.ui-icon-signal {
	background-position: -32px -176px
}

.ui-icon-battery-0 {
	background-position: -48px -176px
}

.ui-icon-battery-1 {
	background-position: -64px -176px
}

.ui-icon-battery-2 {
	background-position: -80px -176px
}

.ui-icon-battery-3 {
	background-position: -96px -176px
}

.ui-icon-circle-plus {
	background-position: 0 -192px
}

.ui-icon-circle-minus {
	background-position: -16px -192px
}

.ui-icon-circle-close {
	background-position: -32px -192px
}

.ui-icon-circle-triangle-e {
	background-position: -48px -192px
}

.ui-icon-circle-triangle-s {
	background-position: -64px -192px
}

.ui-icon-circle-triangle-w {
	background-position: -80px -192px
}

.ui-icon-circle-triangle-n {
	background-position: -96px -192px
}

.ui-icon-circle-arrow-e {
	background-position: -112px -192px
}

.ui-icon-circle-arrow-s {
	background-position: -128px -192px
}

.ui-icon-circle-arrow-w {
	background-position: -144px -192px
}

.ui-icon-circle-arrow-n {
	background-position: -160px -192px
}

.ui-icon-circle-zoomin {
	background-position: -176px -192px
}

.ui-icon-circle-zoomout {
	background-position: -192px -192px
}

.ui-icon-circle-check {
	background-position: -208px -192px
}

.ui-icon-circlesmall-plus {
	background-position: 0 -208px
}

.ui-icon-circlesmall-minus {
	background-position: -16px -208px
}

.ui-icon-circlesmall-close {
	background-position: -32px -208px
}

.ui-icon-squaresmall-plus {
	background-position: -48px -208px
}

.ui-icon-squaresmall-minus {
	background-position: -64px -208px
}

.ui-icon-squaresmall-close {
	background-position: -80px -208px
}

.ui-icon-grip-dotted-vertical {
	background-position: 0 -224px
}

.ui-icon-grip-dotted-horizontal {
	background-position: -16px -224px
}

.ui-icon-grip-solid-vertical {
	background-position: -32px -224px
}

.ui-icon-grip-solid-horizontal {
	background-position: -48px -224px
}

.ui-icon-gripsmall-diagonal-se {
	background-position: -64px -224px
}

.ui-icon-grip-diagonal-se {
	background-position: -80px -224px
}

.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
	border-top-left-radius: 3px
}

.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
	border-top-right-radius: 3px
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
	border-bottom-left-radius: 3px
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
	border-bottom-right-radius: 3px
}

.ui-widget-overlay {
	background: #aaa;
	opacity: .003;
	filter: Alpha(Opacity = .3)
}

.ui-widget-shadow {
	-webkit-box-shadow: 0 0 5px #666;
	box-shadow: 0 0 5px #666
}
/* For Search Results */
.ui-widget {
font-family: "Roboto", Arial, sans-serif;
font-size: 1em; }
 
.ui-widget .ui-widget {
font-size: 1em; }
 
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
font-size: 1em; }
 
.ui-widget.ui-widget-content {
border: 1px solid #c5c5c5; }
 
.ui-widget-content {
border: 1px solid #dddddd;
background: #ffffff;
color: #333333; }
 
.ui-widget-content a {
color: #333333; }
 
.ui-widget-header {
border: 1px solid #dddddd;
background: #e9e9e9;
color: #333333;
font-weight: bold; }
 
.ui-widget-header a {
color: #333333; }
 
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
border-top-left-radius: 3px; }
 
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
border-top-right-radius: 3px; }
 
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
border-bottom-left-radius: 3px; }
 
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
border-bottom-right-radius: 3px; }
 
/* Overlays */
.ui-widget-overlay {
background: #aaaaaa;
opacity: .003;
filter: Alpha(Opacity=0.3);
/* support: IE8 */ }
 
.ui-widget-shadow {
-webkit-box-shadow: 0px 0px 5px #666666;
box-shadow: 0px 0px 5px #666666; }
 
.ui-widget.ui-widget-content { text-align:left; font-size:14px;margin-top: 6px;background: #fffffff7;}
 

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("clientlib-site/css/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

.card.promoting-card .fa {
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s; }
  .card.promoting-card .fa[class*="fa-"]:hover {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    cursor: pointer; }

.card.weather-card .collapse-content a.collapsed:after {
  content: 'Expand'; }

.card.weather-card .collapse-content a:not(.collapsed):after {
  content: 'Collapse'; }

.card.weather-card .degree:after {
  content: "°C";
  position: absolute;
  font-size: 3rem;
  margin-top: .9rem;
  font-weight: 400; }

.card.gradient-card {
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out; }
  .card.gradient-card .first-content .card-title {
    font-weight: 500; }
  .card.gradient-card .second-content {
    display: none; }
  .card.gradient-card .third-content {
    display: none; }
  .card.gradient-card .card-body {
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    height: 0;
    padding-bottom: 0;
    padding-top: 0; }
  .card.gradient-card .card-image {
    -webkit-border-radius: .25rem;
    border-radius: .25rem; }
    .card.gradient-card .card-image .mask {
      -webkit-border-radius: .25rem;
      border-radius: .25rem; }
  .card.gradient-card:focus-within {
    margin-top: 3rem;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out; }
    .card.gradient-card:focus-within .card-image {
      -webkit-transition: all .5s ease-in-out;
      -o-transition: all .5s ease-in-out;
      transition: all .5s ease-in-out;
      width: 7rem;
      height: 7rem;
      margin-top: -2rem;
      margin-left: 1rem;
      -webkit-border-radius: .25rem;
      border-radius: .25rem;
      margin-bottom: 2rem; }
      .card.gradient-card:focus-within .card-image .mask {
        -webkit-border-radius: .25rem;
        border-radius: .25rem; }
    .card.gradient-card:focus-within .card-body {
      -webkit-transition: all .7s ease-in-out;
      -o-transition: all .7s ease-in-out;
      transition: all .7s ease-in-out;
      visibility: visible;
      opacity: 1;
      overflow: visible;
      padding-bottom: 1.25rem;
      padding-top: 1.25rem;
      height: auto;
      -webkit-border-radius: .25rem;
      border-radius: .25rem; }
      .card.gradient-card:focus-within .card-body .progress {
        height: .4rem; }
        .card.gradient-card:focus-within .card-body .progress .progress-bar {
          height: .4rem; }
    .card.gradient-card:focus-within .first-content {
      display: none; }
    .card.gradient-card:focus-within .second-content {
      display: block; }
    .card.gradient-card:focus-within .third-content {
      display: block;
      margin-top: -6rem; }
  @media (max-device-width: 1025px) {
    .card.gradient-card:hover {
      margin-top: 3rem;
      -webkit-transition: all .5s ease-in-out;
      -o-transition: all .5s ease-in-out;
      transition: all .5s ease-in-out; }
      .card.gradient-card:hover .card-image {
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        width: 7rem;
        height: 7rem;
        margin-top: -2rem;
        margin-left: 1rem;
        -webkit-border-radius: .25rem;
        border-radius: .25rem;
        margin-bottom: 2rem;
        -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }
        .card.gradient-card:hover .card-image .mask {
          -webkit-border-radius: .25rem;
          border-radius: .25rem; }
      .card.gradient-card:hover .card-body {
        -webkit-transition: all .7s ease-in-out;
        -o-transition: all .7s ease-in-out;
        transition: all .7s ease-in-out;
        visibility: visible;
        opacity: 1;
        overflow: visible;
        padding-bottom: 1.25rem;
        padding-top: 1.25rem;
        height: auto;
        -webkit-border-radius: .25rem;
        border-radius: .25rem; }
        .card.gradient-card:hover .card-body .progress {
          height: .4rem; }
          .card.gradient-card:hover .card-body .progress .progress-bar {
            height: .4rem; }
      .card.gradient-card:hover .first-content {
        display: none; }
      .card.gradient-card:hover .second-content {
        display: block; }
      .card.gradient-card:hover .third-content {
        display: block;
        margin-top: -6rem; } }

.card.booking-card .rating {
  font-size: .7rem; }

.card.chart-card .classic-tabs .nav li a.active {
  border-bottom: 2px solid;
  -webkit-transition: width .5s ease, background-color .5s ease;
  -o-transition: width .5s ease, background-color .5s ease;
  transition: width .5s ease, background-color .5s ease; }

.card.chart-card .classic-tabs .nav.tabs-white li a {
  color: #757575;
  font-weight: 500; }
  .card.chart-card .classic-tabs .nav.tabs-white li a.active {
    color: #673ab7; }

.card.chart-card .btn-deep-purple-accent {
  background-color: #b388ff;
  margin-top: -65px; }
  .card.chart-card .btn-deep-purple-accent i {
    color: #000 !important; }

.card.chart-card .btn-teal-accent {
  background-color: #1de9b6;
  margin-top: -65px; }
  .card.chart-card .btn-teal-accent i {
    color: #000 !important; }

.card.colorful-card .indigo-accent-text {
  color: #304ffe; }

.card.colorful-card .btn-indigo-accent {
  background-color: #304ffe; }

.card.colorful-card .yellow-darken-text {
  color: #fdd835; }

.card.colorful-card .testimonial-card .avatar {
  width: 55px;
  margin-top: -30px;
  border: 3px solid #fff; }
  .card.colorful-card .testimonial-card .avatar img {
    width: 50px;
    height: 50px; }

.card.colorful-card .brown-darken-text {
  color: #3e2723; }

.card.colorful-card .btn-red-lighten {
  background-color: #ffcdd2; }

.card.panels-card .hour {
  font-size: .8rem;
  margin-top: .3rem; }

.card-wrapper.card-action {
  min-height: 640px; }
  @media (max-width: 450px) {
    .card-wrapper.card-action {
      min-height: 790px; } }

.card-form .md-form input[type=text]:focus:not([readonly]),
.card-form .md-form input[type=email]:focus:not([readonly]),
.card-form .md-form input[type=password]:focus:not([readonly]) {
  -webkit-box-shadow: 0 1px 0 0 #fff;
  box-shadow: 0 1px 0 0 #fff;
  border-bottom: 1px solid #fff; }

.card-form .card-form-2 {
  -webkit-border-top-left-radius: 21px;
  border-top-left-radius: 21px;
  -webkit-border-top-right-radius: 21px;
  border-top-right-radius: 21px;
  margin-top: -35px; }
  .card-form .card-form-2 .form-check-input[type=checkbox].filled-in:checked + label:after,
  .card-form .card-form-2 label.btn input[type=checkbox].filled-in:checked + label:after {
    background-color: #e53935;
    border: 2px solid #e53935; }
  .card-form .card-form-2 .btn-outline-red-accent {
    border: 2px solid #e53935;
    background-color: transparent;
    color: #e53935; }
  .card-form .card-form-2 .pink-accent-text {
    color: #c51162; }

.z-depth-1-bottom {
  -webkit-box-shadow: 0 5px 5px -2px rgba(0, 0, 0, 0.16);
  box-shadow: 0 5px 5px -2px rgba(0, 0, 0, 0.16); }

.md-calendar {
  background-color: #69004b; }
  .md-calendar .weekdays,
  .md-calendar .days {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .md-calendar .weekdays li,
    .md-calendar .days li {
      text-align: center;
      width: 13.6%;
      padding: .9rem 0; }
  .md-calendar .days li {
    margin-bottom: .5rem;
    font-size: .9rem; }
    .md-calendar .days li.active {
      background-color: #fb0025; }
      .md-calendar .days li.active.rounded-right {
        -webkit-border-top-right-radius: 50% !important;
        border-top-right-radius: 50% !important;
        -webkit-border-bottom-right-radius: 50% !important;
        border-bottom-right-radius: 50% !important; }
      .md-calendar .days li.active.rounded-left {
        -webkit-border-top-left-radius: 50% !important;
        border-top-left-radius: 50% !important;
        -webkit-border-bottom-left-radius: 50% !important;
        border-bottom-left-radius: 50% !important; }
  .md-calendar .red-checkbox .form-check-input[type=checkbox].filled-in:checked + label:after {
    background-color: #fb0025;
    border: 2px solid #fb0025; }
  .md-calendar .red-checkbox .form-check-input[type=checkbox].filled-in:not(:checked) + label:after {
    border: 2px solid #fb0025; }
  .md-calendar .purple-checkbox .form-check-input[type=checkbox].filled-in:checked + label:after {
    background-color: #69004b;
    border: 2px solid #69004b; }
  .md-calendar .purple-checkbox .form-check-input[type=checkbox].filled-in:not(:checked) + label:after {
    border: 2px solid #69004b; }
  .md-calendar .blue-checkbox .form-check-input[type=checkbox].filled-in:checked + label:after {
    background-color: #0d47a1;
    border: 2px solid #0d47a1; }
  .md-calendar .blue-checkbox .form-check-input[type=checkbox].filled-in:not(:checked) + label:after {
    border: 2px solid #0d47a1; }
  .md-calendar .teal-checkbox .form-check-input[type=checkbox].filled-in:checked + label:after {
    background-color: #00695c;
    border: 2px solid #00695c; }
  .md-calendar .teal-checkbox .form-check-input[type=checkbox].filled-in:not(:checked) + label:after {
    border: 2px solid #00695c; }
  .md-calendar .unique-checkbox .form-check-input[type=checkbox].filled-in:checked + label:after {
    background-color: #3F729B;
    border: 2px solid #3F729B; }
  .md-calendar .unique-checkbox .form-check-input[type=checkbox].filled-in:not(:checked) + label:after {
    border: 2px solid #3F729B; }
.chat-room .friend-list li {
  border-bottom: 1px solid #e0e0e0; }
  .chat-room .friend-list li:last-of-type {
    border-bottom: none; }

.chat-room img.avatar {
  height: 3rem;
  width: 3rem; }

.chat-room .text-small {
  font-size: 0.95rem; }

.chat-room .text-smaller {
  font-size: 0.75rem; }

/* Materializecss Stepper - By Kinark 2016
// https://github.com/Kinark/Materialize-stepper
// CSS v2.1.3
*/
/*Validate.js FIX*/
label.invalid {
  font-size: 12.8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: red !important;
  top: 50px !important; }
  label.invalid.active {
    -webkit-transform: translateY(0%) !important;
    -ms-transform: translateY(0%) !important;
    transform: translateY(0%) !important; }

/*Validate.js FIX*/
ul.stepper .wait-feedback {
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

ul.stepper .step {
  position: relative;
  list-style: none; }
  ul.stepper .step.feedbacking .step-new-content > *:not(.wait-feedback) {
    opacity: 0.1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)"; }
  ul.stepper .step:not(:last-of-type).active {
    margin-bottom: 2.25rem; }
  ul.stepper .step:before {
    position: absolute;
    top: 0.75rem;
    counter-increment: section;
    content: counter(section);
    height: 1.75rem;
    width: 1.75rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 100%;
    border-radius: 100%;
    text-align: center;
    line-height: 1.75rem;
    font-weight: 400; }
  ul.stepper .step.active:before {
    background-color: #4285f4; }
  ul.stepper .step.done:before {
    content: '\f00c';
    font-family: FontAwesome;
    font-size: 1rem;
    background-color: #00c851; }
  ul.stepper .step.wrong:before {
    content: '\f071';
    font-family: FontAwesome;
    font-size: 1.1rem;
    background-color: #ff3547; }

ul.stepper > li:not(:last-of-type) {
  margin-bottom: 0.625rem;
  -webkit-transition: margin-bottom 0.4s;
  -o-transition: margin-bottom 0.4s;
  transition: margin-bottom 0.4s; }

ul.stepper .step-title {
  margin: 0 -1.3rem;
  cursor: pointer;
  padding: 0.9688rem 2.75rem 1.5rem 4rem;
  display: block; }
  ul.stepper .step-title:after {
    content: attr(data-step-label);
    display: block;
    position: absolute;
    font-size: 0.8rem;
    color: #424242;
    font-weight: 400; }
  ul.stepper .step-title:hover {
    background-color: rgba(0, 0, 0, 0.06); }

ul.stepper .step.active .step-title {
  font-weight: 500; }

ul.stepper .step-new-content {
  position: relative;
  display: none;
  height: -webkit-calc(100% - 132px);
  height: calc(100% - 132px);
  width: inherit;
  overflow: visible;
  margin-left: 41px;
  margin-right: 24px; }

ul.stepper > .step:not(:last-of-type):after {
  content: '';
  position: absolute;
  top: 3.125rem;
  left: 0.8438rem;
  width: 0.0625rem;
  height: 40%;
  height: -webkit-calc(100% - 38px);
  height: calc(100% - 38px);
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s; }

ul.stepper > .step.active:not(:last-child):after {
  height: 93%;
  height: -webkit-calc(100% - 12px);
  height: calc(100% - 12px); }

ul.stepper > .step[data-last="true"] {
  margin-bottom: 0; }
  ul.stepper > .step[data-last="true"]:after {
    height: 0;
    width: 0; }

ul.stepper .step-actions {
  display: -webkit-box;
  -webkit-box-pack: start; }
  ul.stepper .step-actions .btn:not(:last-child),
  ul.stepper .step-actions .btn-flat:not(:last-child),
  ul.stepper .step-actions .btn-large:not(:last-child) {
    margin-right: 0.3125rem; }

ul.stepper .step-new-content .row {
  margin-bottom: 0.4375rem; }

ul.stepper .md-form label {
  left: 0.875rem; }

ul.stepper .md-form .validate {
  margin-bottom: 0; }

@media only screen and (min-width: 993px) {
   ul.stepper.horizontal {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    min-height: 20rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    overflow: hidden; }
     ul.stepper.horizontal:before {
      content: '';
      background-color: transparent;
      width: 100%;
      min-height: 5.25rem;
      position: absolute;
      left: -3px;
      -webkit-border-top-left-radius: 2px;
      border-top-left-radius: 2px; }
     ul.stepper.horizontal:first-child {
      margin-top: -2.7rem; }
     ul.stepper.horizontal .step {
      position: static;
      margin: 0;
      width: 100%;
      display: -ms-flexbox;
      display: -webkit-box;
      display: -webkit-flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      height: 5.25rem !important; }
       ul.stepper.horizontal .step:not(:last-of-type):after {
        content: '';
        position: static;
        display: inline-block;
        width: 100%;
        height: 0.0625rem; }
     ul.stepper.horizontal > .step:last-of-type,  ul.stepper.horizontal > .step[data-last="true"] {
      width: auto !important; }
     ul.stepper.horizontal > .step.active:not(:last-of-type):after {
      content: '';
      position: static;
      display: inline-block;
      width: 100%;
      height: 0.0625rem; }
     ul.stepper.horizontal .step.active .step-title:before {
      background-color: #4285f4; }
     ul.stepper.horizontal .step.done .step-title:before {
      content: '\f00c';
      font-family: FontAwesome;
      font-size: 1rem;
      background: #00c851; }
     ul.stepper.horizontal .step.wrong .step-title:before {
      content: '\f071';
      font-family: FontAwesome;
      font-size: 1.1rem;
      background-color: #ff3547; }
     ul.stepper.horizontal .step-title {
      line-height: 5.25rem;
      height: 5.25rem;
      margin: 0;
      padding: 0 1.5625rem 0 4.0625rem;
      display: inline-block;
      max-width: 13.75rem;
      white-space: nowrap;
      overflow: hidden;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis;
      -ms-flex-negative: 0;
      -webkit-flex-shrink: 0;
      flex-shrink: 0; }
     ul.stepper.horizontal .step:before {
      content: none; }
     ul.stepper.horizontal .step .step-title:before {
      position: absolute;
      top: 1.7813rem;
      left: 1.1875rem;
      counter-increment: section;
      content: counter(section);
      height: 1.75rem;
      width: 1.75rem;
      color: white;
      background-color: rgba(0, 0, 0, 0.3);
      -webkit-border-radius: 100%;
      border-radius: 100%;
      text-align: center;
      line-height: 1.75rem;
      font-weight: 400; }
     ul.stepper.horizontal .step-title:after {
      top: 0.9375rem; }
     ul.stepper.horizontal .step-new-content {
      position: absolute;
      height: -webkit-calc(100% - 84px);
      height: calc(100% - 84px);
      top: 6rem;
      left: 0;
      width: 100%;
      overflow-y: hidden;
      overflow-x: hidden;
      margin: 0;
      padding: 1.25rem 1.25rem 4.75rem 1.25rem; }
     ul.stepper.horizontal .step-actions {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 20px;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse; }
       ul.stepper.horizontal .step-actions .btn:not(:last-child),
       ul.stepper.horizontal .step-actions .btn-flat:not(:last-child),
       ul.stepper.horizontal .step-actions .btn-large:not(:last-child) {
        margin-left: 0.3125rem;
        margin-right: 0; }
   ul.stepper.horizontal .step-new-content,
   ul.stepper.horizontal .step-actions {
    padding-left: 2.5rem;
    padding-right: 2.5rem; } }

.timeline-main .stepper.stepper-vertical.timeline li a {
  padding: 0px 24px;
  left: 50%; }
  @media (max-width: 450px) {
    .timeline-main .stepper.stepper-vertical.timeline li a {
      left: 6%; } }
  @media (min-width: 451px) and (max-width: 1025px) {
    .timeline-main .stepper.stepper-vertical.timeline li a {
      left: 6%; } }
  .timeline-main .stepper.stepper-vertical.timeline li a .circle {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.4em;
    text-align: center;
    position: absolute;
    top: 16px;
    margin-left: -50px;
    background-color: #ccc;
    z-index: 2; }

.timeline-main .stepper.stepper-vertical.timeline li .step-content {
  width: 45%;
  float: left;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  position: relative; }
  @media (max-width: 450px) {
    .timeline-main .stepper.stepper-vertical.timeline li .step-content {
      width: 80%;
      left: 3rem;
      margin-right: 3rem;
      margin-bottom: 2rem;
      float: right; } }
  @media (min-width: 451px) and (max-width: 1025px) {
    .timeline-main .stepper.stepper-vertical.timeline li .step-content {
      width: 85%;
      left: 3rem;
      margin-right: 3rem;
      margin-bottom: 2rem;
      float: right; } }
  .timeline-main .stepper.stepper-vertical.timeline li .step-content:before {
    position: absolute;
    top: 26px;
    right: -15px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-left: 15px solid #e0e0e0;
    border-right: 0 solid #e0e0e0;
    border-bottom: 15px solid transparent;
    content: " "; }
    @media (max-width: 450px) {
      .timeline-main .stepper.stepper-vertical.timeline li .step-content:before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto; } }
    @media (min-width: 451px) and (max-width: 1025px) {
      .timeline-main .stepper.stepper-vertical.timeline li .step-content:before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto; } }
  .timeline-main .stepper.stepper-vertical.timeline li .step-content:after {
    position: absolute;
    top: 27px;
    right: -14px;
    display: inline-block;
    border-top: 14px solid transparent;
    border-left: 14px solid #fff;
    border-right: 0 solid #fff;
    border-bottom: 14px solid transparent;
    content: " "; }
    @media (max-width: 450px) {
      .timeline-main .stepper.stepper-vertical.timeline li .step-content:after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto; } }
    @media (min-width: 451px) and (max-width: 1025px) {
      .timeline-main .stepper.stepper-vertical.timeline li .step-content:after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto; } }

.timeline-main .stepper.stepper-vertical.timeline li.timeline-inverted {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end; }
  .timeline-main .stepper.stepper-vertical.timeline li.timeline-inverted .step-content {
    float: right; }
    .timeline-main .stepper.stepper-vertical.timeline li.timeline-inverted .step-content:before {
      border-left-width: 0;
      border-right-width: 15px;
      left: -15px;
      right: auto; }
    .timeline-main .stepper.stepper-vertical.timeline li.timeline-inverted .step-content:after {
      border-left-width: 0;
      border-right-width: 14px;
      left: -14px;
      right: auto; }

.timeline-main .stepper.stepper-vertical.timeline li:not(:last-child):after {
  content: " ";
  position: absolute;
  width: 3px;
  background-color: #e0e0e0;
  left: 50%;
  top: 65px;
  margin-left: -1.5px; }
  @media (max-width: 450px) {
    .timeline-main .stepper.stepper-vertical.timeline li:not(:last-child):after {
      left: 6%; } }
  @media (min-width: 451px) and (max-width: 1025px) {
    .timeline-main .stepper.stepper-vertical.timeline li:not(:last-child):after {
      left: 6%; } }

@media (max-width: 1025px) {
  .timeline-main .stepper.stepper-vertical.timeline li {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end; } }

.timeline-main .stepper.stepper-vertical.timeline.colorful-timeline li .step-content:before {
  top: 1rem;
  border-left: 15px solid #D32F2F;
  border-right: 0 solid #D32F2F; }
  @media (max-width: 450px) {
    .timeline-main .stepper.stepper-vertical.timeline.colorful-timeline li .step-content:before {
      border-left-width: 0;
      border-right-width: 15px;
      left: -15px;
      right: auto; } }
  @media (min-width: 451px) and (max-width: 1025px) {
    .timeline-main .stepper.stepper-vertical.timeline.colorful-timeline li .step-content:before {
      border-left-width: 0;
      border-right-width: 15px;
      left: -15px;
      right: auto; } }

.timeline-main .stepper.stepper-vertical.timeline.colorful-timeline li .step-content:after {
  top: 1rem;
  border-left: 14px solid #D32F2F;
  border-right: 0 solid #D32F2F; }
  @media (max-width: 450px) {
    .timeline-main .stepper.stepper-vertical.timeline.colorful-timeline li .step-content:after {
      border-left-width: 0;
      border-right-width: 14px;
      left: -14px;
      right: auto; } }
  @media (min-width: 451px) and (max-width: 1025px) {
    .timeline-main .stepper.stepper-vertical.timeline.colorful-timeline li .step-content:after {
      border-left-width: 0;
      border-right-width: 14px;
      left: -14px;
      right: auto; } }

.timeline-main .stepper.stepper-vertical.timeline.colorful-timeline li .step-content .timeline-header {
  -webkit-border-top-left-radius: 2px;
  border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
  border-top-right-radius: 2px; }

.timeline-main .stepper.stepper-vertical.timeline.colorful-timeline li.timeline-inverted .step-content:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px; }

.timeline-main .stepper.stepper-vertical.timeline.colorful-timeline li.timeline-inverted .step-content:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px; }

.timeline-main .stepper.stepper-vertical.timeline.colorful-timeline li:not(:last-child):after {
  background-color: #D32F2F; }

.timeline-main .stepper.stepper-vertical.timeline.timeline-animated .more-padding {
  padding-right: 100px;
  padding-left: 100px; }

.timeline-main .stepper.stepper-vertical.timeline.timeline-animated li {
  -webkit-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out; }

.timeline-main .stepper.stepper-vertical.timeline.timeline-simple li a {
  padding: 0px; }
  .timeline-main .stepper.stepper-vertical.timeline.timeline-simple li a .circle {
    width: 23px;
    height: 23px;
    line-height: 23px;
    font-size: 1.4em;
    text-align: center;
    position: absolute;
    top: 16px;
    margin-left: -12px;
    background-color: #ccc;
    z-index: 2; }

.timeline-main .stepper.stepper-vertical.timeline.timeline-simple li .step-content {
  width: 45%;
  float: left;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  position: relative; }
  @media (max-width: 450px) {
    .timeline-main .stepper.stepper-vertical.timeline.timeline-simple li .step-content {
      width: 80%;
      left: 3rem;
      margin-right: 3rem;
      margin-bottom: 2rem;
      float: right; } }
  @media (min-width: 451px) and (max-width: 1025px) {
    .timeline-main .stepper.stepper-vertical.timeline.timeline-simple li .step-content {
      width: 85%;
      left: 3rem;
      margin-right: 3rem;
      margin-bottom: 2rem;
      float: right; } }
  .timeline-main .stepper.stepper-vertical.timeline.timeline-simple li .step-content:before {
    position: absolute;
    top: 15px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-left: 15px solid #e0e0e0;
    border-right: 0 solid #e0e0e0;
    border-bottom: 15px solid transparent;
    content: " "; }
    @media (max-width: 450px) {
      .timeline-main .stepper.stepper-vertical.timeline.timeline-simple li .step-content:before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto; } }
    @media (min-width: 451px) and (max-width: 1025px) {
      .timeline-main .stepper.stepper-vertical.timeline.timeline-simple li .step-content:before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto; } }
  .timeline-main .stepper.stepper-vertical.timeline.timeline-simple li .step-content:after {
    position: absolute;
    top: 15px;
    display: inline-block;
    border-top: 14px solid transparent;
    border-left: 14px solid #fff;
    border-right: 0 solid #fff;
    border-bottom: 14px solid transparent;
    content: " "; }
    @media (max-width: 450px) {
      .timeline-main .stepper.stepper-vertical.timeline.timeline-simple li .step-content:after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto; } }
    @media (min-width: 451px) and (max-width: 1025px) {
      .timeline-main .stepper.stepper-vertical.timeline.timeline-simple li .step-content:after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto; } }
  .timeline-main .stepper.stepper-vertical.timeline.timeline-simple li .step-content.hoverable {
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }
    .timeline-main .stepper.stepper-vertical.timeline.timeline-simple li .step-content.hoverable:hover {
      -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
      box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }

.timeline-main .stepper.stepper-vertical.timeline.timeline-simple li:not(:last-child):after {
  width: 2px;
  background-color: #9e9e9e;
  top: 32px;
  height: 100%; }

.timeline-main .stepper.stepper-vertical.timeline.timeline-simple li.timeline-inverted .step-content:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px; }

.timeline-main .stepper.stepper-vertical.timeline.timeline-simple li.timeline-inverted .step-content:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px; }

.timeline-main .stepper.stepper-vertical.timeline.timeline-images li a .circle {
  font-size: 1rem; }

.timeline-main .stepper.stepper-vertical.timeline.timeline-images li:not(:last-child):after {
  background-color: #26c6da; }

.chat-no-mdb-custom {
  background-color: #FFFFFF !important;
}
/*!
 * Veritas Application Custom Styles
 * Version: 1.0
 * Author:
 *
 *
 *
 *
 *
 * CUSTOM AND VDL-B OVERRIDES GO HERE
 *
 *
 *
 *
*/

/* -----------------------------------------------
                  MISC
------------------------------------------------*/
table.dataTable th {
	min-height: 24px;
}

table.dataTable td {
	vertical-align: top !important;
}

/* datatable cell alignments */
table.dataTable th.dt-left, table.dataTable td.dt-left {
	text-align: left;
}

table.dataTable th.dt-center, table.dataTable td.dt-center, table.dataTable td.dataTables_empty
	{
	text-align: center;
}

table.dataTable th.dt-right, table.dataTable td.dt-right {
	text-align: right;
}

table.dataTable th.dt-justify, table.dataTable td.dt-justify {
	text-align: justify;
}

table.dataTable th.dt-nowrap, table.dataTable td.dt-nowrap {
	white-space: nowrap;
}

table.dataTable thead th.dt-head-left, table.dataTable thead td.dt-head-left,
	table.dataTable tfoot th.dt-head-left, table.dataTable tfoot td.dt-head-left
	{
	text-align: left;
}

table.dataTable thead th.dt-head-center, table.dataTable thead td.dt-head-center,
	table.dataTable tfoot th.dt-head-center, table.dataTable tfoot td.dt-head-center
	{
	text-align: center;
}

table.dataTable thead th.dt-head-right, table.dataTable thead td.dt-head-right,
	table.dataTable tfoot th.dt-head-right, table.dataTable tfoot td.dt-head-right
	{
	text-align: right;
}

table.dataTable thead th.dt-head-justify, table.dataTable thead td.dt-head-justify,
	table.dataTable tfoot th.dt-head-justify, table.dataTable tfoot td.dt-head-justify
	{
	text-align: justify;
}

table.dataTable thead th.dt-head-nowrap, table.dataTable thead td.dt-head-nowrap,
	table.dataTable tfoot th.dt-head-nowrap, table.dataTable tfoot td.dt-head-nowrap
	{
	white-space: nowrap;
}

table.dataTable tbody th.dt-body-left, table.dataTable tbody td.dt-body-left
	{
	text-align: left;
}

table.dataTable tbody th.dt-body-center, table.dataTable tbody td.dt-body-center
	{
	text-align: center;
}

table.dataTable tbody th.dt-body-right, table.dataTable tbody td.dt-body-right
	{
	text-align: right;
}

table.dataTable tbody th.dt-body-justify, table.dataTable tbody td.dt-body-justify
	{
	text-align: justify;
}

table.dataTable tbody th.dt-body-nowrap, table.dataTable tbody td.dt-body-nowrap
	{
	white-space: nowrap;
}

@media ( max-width : 667px) {
	#dtUpdates .releaseAdjustmentType {
		width: 300px !important;
	}
	#dtUpdates .releaseAdjustmentVersion {
		width: 300px !important;
	}
	#dtUpdates .releaseAdjustmentPlatForm {
		width: 300px !important;
	}
	#dtUpdates .releaseAdjustmentRelDt {
		width: 300px !important;
	}
}

@media ( max-width : 736px) {
	#dtUpdates .releaseAdjustmentPlatForm {
		width: 150px !important;
	}
}

@media ( max-width : 800px) {
	#dtUpdates .releaseAdjustmentType {
		width: 300px !important;
	}
	#dtUpdates .releaseAdjustmentVersion {
		width: 300px !important;
	}
	#dtUpdates .releaseAdjustmentPlatForm {
		width: 150px !important;
	}
	#dtUpdates .releaseAdjustmentRelDt {
		width: 150px !important;
	}
}

@media ( max-width : 1280px) {
	#dtUpdates .releaseAdjustmentType {
		width: 100px !important;
	}
	#dtUpdates .releaseAdjustmentVersion {
		width: 100px !important;
	}
	#dtUpdates .releaseAdjustmentPlatForm {
		width: 100px !important;
	}
	#dtUpdates .releaseAdjustmentRelDt {
		width: 100px !important;
	}
	#dtUpdates .releaseAdjustmentType:before {
		right: 0.5em !important;
	}
	#dtUpdates .releaseAdjustmentType:after {
		right: 0em !important;
	}
	#dtUpdates .releaseAdjustmentVersion:before {
		right: 0.5em !important;
	}
	#dtUpdates .releaseAdjustmentVersion:after {
		right: 0em !important;
	}
	#dtUpdates .releaseAdjustmentPlatForm:before {
		right: 0.5em !important;
	}
	#dtUpdates .releaseAdjustmentPlatForm:after {
		right: 0em !important;
	}
	#dtUpdates .releaseAdjustmentRelDt:before {
		right: 0.5em !important;
	}
	#dtUpdates .releaseAdjustmentRelDt:after {
		right: 0em !important;
	}
}

.overlay {
	background-color: #ffffff;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 2000;
	top: 0px;
	left: 0px;
	opacity: .8; /* in FireFox */
	filter: alpha(opacity = 80); /* in IE */
}

.loading-bar {
	position: fixed;
	top: 0;
	left: calc(( 100vw/ 2)- 100px);
	z-index: 9999;
	margin-top: 20%;
}

.card-body.remove-extra-padding p {
	margin: 0 0 0 0 !important;
}

.popout-list-item__body.remove-extra-padding p {
	margin: 0 0 0 0 !important;
}

.noVEMSProductText h5 a {
	font-size: 1rem;
}

.noVEMSProductText {
	color: #696969;
	text-align: center;
}

.noVEMSProduct {
	margin-bottom: 110px;
	margin-top: 110px;
}

.noVEMSProduct .logo {
	border-radius: 50%;
	width: 120px;
	height: 120px;
	margin: 0 auto;
	background-image: url(clientlib-site/resources/img/content/icn-veritas-120x120.png);
	background-repeat: no-repeat;
}

.removeReadmeExtraMargin p {
	margin: 0 0 0 0 !important;
}

.removeReadmeExtraMargin ul {
	margin-bottom: 0 !important;
}

.removeReadmeExtraMargin ol {
	margin-bottom: 0 !important;
}

.invisible {
	display: none !important;
}

.form-check-input[type="radio"]:not (:checked ) +label,
	.form-check-input[type="radio"]:checked+label, label.btn input[type="radio"]:not
	(:checked ) +label, label.btn input[type="radio"]:checked+label {
	font-weight: 400 !important;
	font-size: 0.8125rem;
}

.control_indicator {
	cursor: not-allowed !important;
}

.expProductSelect-ShowonSignIn .select-dropdown li.optgroup>span,
	.expProductSelect .select-dropdown li.optgroup>span {
	color: #a4130d !important;
	font-weight: 800;
}

.expProductSelect-ShowonSignIn .dropdown-content li.optgroup-option>span,
	.expProductSelect .dropdown-content li.optgroup-option>span {
	padding-left: 30px;
}

@
-moz-document url-prefix () { .sld-panel .sld-body { height:calc(100vh - 250px);
	
}

}
.navbar .popover, .popover {
	z-index: 1800 !important;
}

.pipe-right-15::after {
	position: absolute;
	top: 4px;
	right: 0px;
	width: 1px;
	height: 15px;
	background: #696969;
	content: "";
}

.pipe-left-15::before {
	position: absolute;
	top: 4px;
	left: 0px;
	width: 1px;
	height: 15px;
	background: #696969;
	content: "";
}

.pipe-right-25::after {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 1px;
	height: 25px;
	background: #696969;
	content: "";
}

.pipe-left-25::before {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 1px;
	height: 25px;
	background: #696969;
	content: "";
}

.metadata {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-direction: row;
	flex-direction: row;
	color: #696969;
	font-size: 0.75rem;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.metadata div {
	position: relative;
	padding-right: 15px;
	height: 25px;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
}

.metadata div:not (:last-of-type )::after {
	position: absolute;
	top: 4px;
	right: 0px;
	width: 1px;
	height: 16px;
	background: #939393;
	content: "";
}

#accordionUrgentMsg div.card-header, #accordionUrgentMsg div.card-body {
	background-color: #fcc101;
}

#accordionSpecialMsg .card-header, #accordionSpecialMsg .card-body {
	background-color: rgba(96, 180, 249, 0.9);
}

ul.popout-list li {
	cursor: default;
}

.popout-list-item__header i.mdi:first-of-type {
	position: relative !important;
	top: 3px !important;
}

.popout-list-item__header {
	cursor: pointer;
}

div.alert i.mdi:first-of-type {
	position: relative !important;
	top: 3px !important;
}

.metadata.piped {
	padding-left: 15px;
}

.metadata.piped::before {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 1px;
	height: 16px;
	margin-right: 15px;
	background: #939393;
	content: "";
}

@media ( max-width : 992px) {
	.metadata.piped {
		padding-left: 0px;
	}
	.metadata.piped::before {
		background: transparent !important;
	}
}

.custom-control-label::after, .custom-control-label::before, table.dataTable tbody td.select-checkbox:before,
	table.dataTable tbody td.select-checkbox:after, table.dataTable tbody th.select-checkbox:before,
	table.dataTable tbody th.select-checkbox:after {
	cursor: pointer;
}

table.dataTable tbody td.select-checkbox.disabled:before, table.dataTable tbody th.select-checkbox.disabled:before
	{
	border: 1px dashed #696969;
}

#myDIV {
	display: none;
}

p.small {
	font-size: 0.8125rem;
	line-height: 0.9375rem;
}

p.xsmall {
	font-size: 0.75rem;
	line-height: 0.875rem;
}

p.line-height-0 {
	line-height: 0;
}

.dlcp_ExploreProductsBubble .select-dropdown li img {
	height: auto;
	width: auto;
	margin: 1.1rem 0.75rem 0.5rem 0.75rem;
	float: right;
}

.dlcp_ExploreProductsBubble .select-dropdown li img.hidden {
	visibility: hidden;
}

@media screen and (max-width: 414px) {
	#dtUpdates .releaseAdjustmentUpdName {
		width: 150px !important;
	}
	#dtUpdates .releaseAdjustmentType {
		width: 100px !important;
	}
	#dtUpdates .releaseAdjustmentRelDt {
		width: 300px !important;
	}
	#dtUpdates .releaseAdjustmentType:before {
		right: 0.5em !important;
	}
	#dtUpdates .releaseAdjustmentType:after {
		right: 0em !important;
	}
	#dtUpdates .releaseAdjustmentRelDt:before {
		right: 0.5em !important;
	}
	#dtUpdates .releaseAdjustmentRelDt:after {
		right: 0em !important;
	}
	.breadcrumb-item+.breadcrumb-item {
		padding-left: 0;
	}
	.breadcrumb-item+.breadcrumb-item::before {
		padding-right: 0;
		content: "";
	}
	h2 {
		font-size: 1.3rem;
	}
	.sld-header {
		font-size: 0.5rem;
	}
}
/* -----------------------------------------------
                  SHOW MORE/LESS
------------------------------------------------*/
.notes-fader-btm-gray {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100px;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(243, 243, 243,
		0)), to(rgba(243, 243, 243, 1)));
	background: linear-gradient(to bottom, rgba(243, 243, 243, 0) 0%,
		rgba(243, 243, 243, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f3f3f3',
		endColorstr='#f3f3f3', GradientType=0);
	pointer-events: none;
}

.box_ShowMoreLess-show-more, .box_ShowMoreLess-show-less {
	overflow-y: hidden;
	max-height: 150px;
}

.box_ShowMoreLess-show-more {
	max-height: 100% !important;
}

/* -----------------------------------------------
                  BUTTONS
------------------------------------------------*/
.btn.btn-flat.btn-flat-black {
	color: #4a4a4a !important;
	font-weight: 400;
}

.btn-toggle-secondary {
	border: 1px solid #004677 !important;
	background-color: transparent !important;
	color: #004677 !important;
}

.btn-toggle-secondary:hover {
	background-color: #f9f9f9 !important;
}

/* -----------------------------------------------
                  STACKED ICONS
------------------------------------------------*/
.icon-stack-18px {
	position: relative;
	display: inline-block;
	width: 1.125rem;
	height: 1.125rem;
	vertical-align: middle;
	line-height: 1.125rem;
}

.icon-stack-18px .icon-stack-1x, .icon-stack-18px .icon-stack-2x {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
}

.icon-stack-18px .icon-stack-1x {
	font-size: 1.125em;
	line-height: inherit;
}

.icon-stack-18px .icon-stack-2x {
	color: #f9f9f9 !important;
	font-size: 0.625em;
}

.icon-stack-18px .icon-stack-2x-black {
	position: relative;
	left: 4px;
	color: #333333 !important;
	font-size: 0.625em;
}

.icon-stack-24px .icon-stack-2x-black {
	position: relative;
	left: 5px;
	color: #333333 !important;
	font-size: 0.875em;
}

/* -----------------------------------------------
                  OWL CAROUSEL
------------------------------------------------*/
.owl-theme .owl-nav {
	-webkit-tap-highlight-color: transparent;
	margin-top: 0px;
	text-align: left;
	position: absolute;
	top: 0;
	width: 100%;
	height: 230px;
	align-content: center;
	align-items: center;
	flex: 1;
	pointer-events: none;
}

.owl-theme .owl-nav .owl-item {
	min-width: 300px;
}

.owl-item:last-of-type {
	margin-right: 0px !important;
}

.owl-carousel .owl-nav button.owl-prev {
	font-size: 36px;
	pointer-events: auto;
	position: absolute;
	top: -5px;
	left: -5px;
	padding-left: 10px !important;
	width: 110px;
	text-align: start;
	height: inherit;
	background: -moz-linear-gradient(left, rgba(243, 243, 243, 1) 0%,
		rgba(243, 243, 243, 1) 25%, rgba(243, 243, 243, 0.01) 99%,
		rgba(243, 243, 243, 0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(243, 243, 243, 1) 0%,
		rgba(243, 243, 243, 1) 25%, rgba(243, 243, 243, 0.01) 99%,
		rgba(243, 243, 243, 0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(243, 243, 243, 1) 0%,
		rgba(243, 243, 243, 1) 25%, rgba(243, 243, 243, 0.01) 99%,
		rgba(243, 243, 243, 0) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3',
		endColorstr='#00f3f3f3', GradientType=1); /* IE6-9 */
}

.owl-carousel .owl-nav button.owl-next {
	font-size: 36px;
	pointer-events: auto;
	position: absolute;
	top: -5px;
	right: -15px;
	padding-right: 25px !important;
	width: 110px;
	text-align: end;
	height: inherit;
	background: -moz-linear-gradient(left, rgba(243, 243, 243, 0) 0%,
		rgba(243, 243, 243, 0.01) 1%, rgba(243, 243, 243, 1) 75%,
		rgba(243, 243, 243, 1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(243, 243, 243, 0) 0%,
		rgba(243, 243, 243, 0.01) 1%, rgba(243, 243, 243, 1) 75%,
		rgba(243, 243, 243, 1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(243, 243, 243, 0) 0%,
		rgba(243, 243, 243, 0.01) 1%, rgba(243, 243, 243, 1) 75%,
		rgba(243, 243, 243, 1) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f3f3f3',
		endColorstr='#f3f3f3', GradientType=1); /* IE6-9 */
}

.owl-theme .owl-nav button.owl-prev:hover {
	background: -moz-linear-gradient(left, rgba(243, 243, 243, 1) 0%,
		rgba(243, 243, 243, 1) 25%, rgba(243, 243, 243, 0.01) 99%,
		rgba(243, 243, 243, 0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(243, 243, 243, 1) 0%,
		rgba(243, 243, 243, 1) 25%, rgba(243, 243, 243, 0.01) 99%,
		rgba(243, 243, 243, 0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(243, 243, 243, 1) 0%,
		rgba(243, 243, 243, 1) 25%, rgba(243, 243, 243, 0.01) 99%,
		rgba(243, 243, 243, 0) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3',
		endColorstr='#00f3f3f3', GradientType=1); /* IE6-9 */
}

.owl-carousel .owl-nav button.owl-next:hover {
	background: -moz-linear-gradient(left, rgba(243, 243, 243, 0) 0%,
		rgba(243, 243, 243, 0.01) 1%, rgba(243, 243, 243, 1) 75%,
		rgba(243, 243, 243, 1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(243, 243, 243, 0) 0%,
		rgba(243, 243, 243, 0.01) 1%, rgba(243, 243, 243, 1) 75%,
		rgba(243, 243, 243, 1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(243, 243, 243, 0) 0%,
		rgba(243, 243, 243, 0.01) 1%, rgba(243, 243, 243, 1) 75%,
		rgba(243, 243, 243, 1) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f3f3f3',
		endColorstr='#f3f3f3', GradientType=1); /* IE6-9 */
}

.owl-theme .owl-nav .disabled {
	opacity: 0;
	cursor: default;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
	background: none;
	color: #333;
	text-decoration: none;
}

#sldAccessPolicy .limitedReleaseHR hr {
	width: 755px;
	height: 1px;
	background: #E7E7E7;
	border: none;
	margin-top: 0rem;
}

#sldAccessPolicy hr {
	width: 1px;
	height: 240px;
	background: #E7E7E7;
	border: none;
	margin-top: 0rem;
}

#sldAccessPolicy .paddingTopForLimRel {
	padding-top: 1.875rem !important;
}

#sldAccessPolicy .marginTopForLimRel {
	margin-top: 1.25rem !important;
}

@media ( max-width : 992px) {
	.resp-btn {
		min-width: 100% !important;
		height: 30px !important;
		padding: 0.5rem 1.6rem !important;
		margin: 5px 0px !important;
	}
	.resp-btn .fas, .resp-btn .fab, .resp-btn .far {
		font-size: 0.7rem !important;
	}
	.metadata div:not (:last-of-type )::after {
		background: transparent !important;
	}
	#sldAccessPolicy .limitedReleaseHR hr {
		width: 96%;
		height: 1px;
		background: #E7E7E7;
		border: none;
		margin-top: 0rem;
	}
	#sldAccessPolicy hr {
		width: 96%;
		height: 1px;
		background: #E7E7E7;
		border: none;
		margin-top: 0rem;
	}
	#sldAccessPolicy .limitedReleaseCustPad {
		padding-left: 0rem !important;
		padding-right: 0rem !important;
	}
	#sldAccessPolicy .paddingTopForLimRel {
		padding-top: 0rem !important;
	}
	#sldAccessPolicy .marginTopForLimRel {
		margin-top: 0rem !important;
	}
}

@media ( max-width : 768px) {
	div.owl-item[style] {
		max-width: 350px !important;
		width: 350px !important;
		min-width: 280px !important;
		margin-right: 25px !important;
	}
	.owl-carousel .owl-nav button.owl-prev {
		display: none;
	}
	.owl-carousel .owl-nav button.owl-next {
		display: none;
	}
	#sldAccessPolicy .limitedReleaseHR hr {
		width: 96%;
		height: 1px;
		background: #E7E7E7;
		border: none;
		margin-top: 0rem;
	}
	#sldAccessPolicy hr {
		width: 96%;
		height: 1px;
		background: #E7E7E7;
		border: none;
		margin-top: 0rem;
	}
	#sldAccessPolicy .limitedReleaseCustPad {
		padding-left: 0rem !important;
		padding-right: 0rem !important;
	}
	#sldAccessPolicy .paddingTopForLimRel {
		padding-top: 0rem !important;
	}
	#sldAccessPolicy .marginTopForLimRel {
		margin-top: 0rem !important;
	}
}

@media ( max-width : 600px) {
	.checkSumTitleMsgBox {
		display: flex !important;
		flex-direction: column !important;
		margin-left: 0.0rem !important;
	}
	.js-textareacopybtn {
		margin-left: 0.0rem !important;
	}
	.filePlatform {
		margin-bottom: 0.9375rem !important;
	}
	.abstractHeader {
		margin-top: 1.875rem !important;
	}
	div.owl-item[style] {
		max-width: 230px !important;
		min-width: 275px !important;
		margin-right: 15px !important;
	}
	.owl-carousel .owl-nav button.owl-prev {
		display: none;
	}
	.owl-carousel .owl-nav button.owl-next {
		display: none;
	}
	div.dataTables_wrapper div.dataTables_info {
		padding-top: 1.65em !important;
	}
	#sldAccessPolicy .limitedReleaseHR hr {
		width: 96%;
		height: 1px;
		background: #E7E7E7;
		border: none;
		margin-top: 0rem;
	}
	#sldAccessPolicy hr {
		width: 96%;
		height: 1px;
		background: #E7E7E7;
		border: none;
		margin-top: 0rem;
	}
	#sldAccessPolicy .limitedReleaseCustPad {
		padding-left: 0rem !important;
		padding-right: 0rem !important;
	}
	#sldAccessPolicy .paddingTopForLimRel {
		padding-top: 0rem !important;
	}
	#sldAccessPolicy .marginTopForLimRel {
		margin-top: 0rem !important;
	}
}

@media ( max-width : 414px) {
	div.owl-item[style] {
		max-width: 375px !important;
		width: 375px !important;
		min-width: 280px !important;
		margin-right: 24px !important;
	}
	.owl-carousel .owl-nav button.owl-prev {
		display: none;
	}
	.owl-carousel .owl-nav button.owl-next {
		display: none;
	}
	#sldAccessPolicy .limitedReleaseHR hr {
		width: 96%;
		height: 1px;
		background: #E7E7E7;
		border: none;
		margin-top: 0rem;
	}
	#sldAccessPolicy hr {
		width: 96%;
		height: 1px;
		background: #E7E7E7;
		border: none;
		margin-top: 0rem;
	}
	#sldAccessPolicy .limitedReleaseCustPad {
		padding-left: 0rem !important;
		padding-right: 0rem !important;
	}
	#sldAccessPolicy .paddingTopForLimRel {
		padding-top: 0rem !important;
	}
	#sldAccessPolicy .marginTopForLimRel {
		margin-top: 0rem !important;
	}
}

@media ( max-width : 375px) {
	div.owl-item[style] {
		max-width: 335px !important;
		width: 335px !important;
		min-width: 280px !important;
		margin-right: 25px !important;
	}
	.owl-carousel .owl-nav button.owl-prev {
		display: none;
	}
	.owl-carousel .owl-nav button.owl-next {
		display: none;
	}
	.accessPolRespSlider {
		padding: 0px !important;
	}
	#sldAccessPolicy .limitedReleaseHR hr {
		width: 96%;
		height: 1px;
		background: #E7E7E7;
		border: none;
		margin-top: 0rem;
	}
	#sldAccessPolicy hr {
		width: 96%;
		height: 1px;
		background: #E7E7E7;
		border: none;
		margin-top: 0rem;
	}
	#sldAccessPolicy .limitedReleaseCustPad {
		padding-left: 0rem !important;
		padding-right: 0rem !important;
	}
	#sldAccessPolicy .paddingTopForLimRel {
		padding-top: 0rem !important;
	}
	#sldAccessPolicy .marginTopForLimRel {
		margin-top: 0rem !important;
	}
}

.owl-carousel .owl-stage-outer {
	padding: 5px;
	margin-right: -8px;
}

.owl-carousel .owl-item .card-avatar img {
	width: 42px !important;
	height: 42px !important;
}

.owl-carousel .owl-item .card-body div.d-flex i.mdi {
	width: 42px;
	min-width: 42px;
	margin-right: 0.9375rem;
	text-align: center;
}

.card .card-bottom .card-btn-icon i.mdi {
	line-height: 1.3rem;
}

/* -----------------------------------------------
                  DATATABLE
------------------------------------------------*/
.dataTables_wrapper .tbl-control-btns {
	width: 85px !important;
	position: relative !important;
	margin-left: 0px !important;
}

.dataTables_wrapper .buttons-colvis+div.dropdown-menu {
	left: auto !important;
	right: 0 !important;
}

div.rangeSelector select {
	display: inline-block !important;
}

#dtLatestUpdatesRange {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-pack: start;
	-ms-flex-align: center;
	width: auto;
	height: 45px;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-pack: start;
	justify-content: flex-start;
}

#dtLatestUpdates_filter label, #dtBaseUpgrades_filter label, #dtUpdates_filter label, #dtLatestDetails_filter label, #obsolescenceInfoTable_filter label{
	align-items: baseline;
	display: flex;
}

#dtLatestUpdates_filter input, #dtBaseUpgrades_filter input, #dtUpdates_filter input, #dtLatestDetails_filter input, #obsolescenceInfoTable_filter input{
	margin-left: 5px;
}

#dtLatestUpdatesToolbar {
	-webkit-box-pack: start;
	justify-content: flex-start;
	height: 45px;
}

#dtLatestUpdatesToolbar span.label {
	font-size: 0.875rem !important;
}

table.dataTable thead>tr>th.sorting_asc, table.dataTable thead>tr>th.sorting_desc,
	table.dataTable thead>tr>th.sorting, table.dataTable thead>tr>td.sorting_asc,
	table.dataTable thead>tr>td.sorting_desc, table.dataTable thead>tr>td.sorting
	{
	white-space: nowrap;
}

/* -----------------------------------------------
                  LANDING PAGE
------------------------------------------------*/
#dlcp_ExploreProducts {
	margin-top: -15px;
	min-height: 170px;
	background-color: #b1181e;
	background-position: top;
	background-size: cover;
	background-repeat: no-repeat;
	text-align: left;
	font-size: 0.875rem;
	padding: 0px;
}

@media screen and (max-width: 600px) {
	#dlcp_ExploreProducts {
		/* min-height: 350px;
    */
		
	}
}

#dlcp_ExploreProducts div.dlcp_ExploreProductsMask {
	position: relative;
	top: 0;
	left: 0;
	display: inline-block;
	padding: 25px 0px 30px 0px;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(51, 51, 51, 0)),
		to(rgba(51, 51, 51, 0.6)));
	background: linear-gradient(to top, rgba(51, 51, 51, 0) 0%,
		rgba(51, 51, 51, 0.6) 100%);
	content: "";
}

#dlcp_ExploreProducts h2, #dlcp_ExploreProducts p {
	font-weight: 200;
	margin: 0px;
}

@media screen and (min-width: 650px) {
	#dlcp_ExploreProducts p {
		border-left: 1px solid #ffffff;
		height: 25px;
		padding-top: 3px;
	}
}

@media screen and (max-width: 600px) {
	#dlcp_ExploreProducts p {
		border-left: 0px !important;
		padding-top: 10px !important;
		text-align: center;
	}
}

@media screen and (max-width: 766px) {
	#dlcp_ExploreProducts p {
		border-left: 0px !important;
		padding-top: 10px !important;
		text-align: center;
	}
}

#dlcp_ExploreProducts #btnOpenSource {
	color: #ffffff !important;
	font-weight: 200;
}

#dlcp_ExploreProducts #btnOpenSource:hover, #dlcp_ExploreProducts #btnOpenSource:active,
	#dlcp_ExploreProducts #btnOpenSource:focus {
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
}

#dlcp_ExploreProducts .dlcp_ExploreProductsBubble {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	padding: 0px 15px;
	min-height: 60px;
	border-radius: 0.375rem;
	background-color: #f9f9f9;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-align: center;
	align-items: center;
}

#dlcp_ExploreProducts .dlcp_ExploreProductsBubble .md-form {
	margin: 0px;
}

#dlcp_ExploreProducts .select-wrapper span.caret {
	top: 0.3rem;
}

/* -----------------------------------------------
              KB ARTICLE TILES
------------------------------------------------*/
.con_KBArticle, .con_DocItem, .con_CommunityItem, .con_TechAlertItem,
	.con_DownloadItem {
	margin-bottom: 30px;
	font-size: 0.875rem;
}

.con_KBArticle div.icn_type, .con_DocItem div.icn_type,
	.con_CommunityItem div.icn_type, .con_TechAlertItem div.icn_type,
	.con_DownloadItem div.icn_type {
	width: 50px;
	color: #4a4a4a;
}

.con_KBArticle h5, .con_DocItem h5, .con_CommunityItem h5,
	.con_TechAlertItem h5, .con_DownloadItem h5 {
	font-weight: 500;
	font-size: 1rem;
}

.con_KBArticle span.txt_ItemDate, .con_DocItem span.txt_ItemDate,
	.con_CommunityItem span.txt_ItemDate, .con_TechAlertItem span.txt_ItemDate,
	.con_DownloadItem span.txt_ItemDate {
	color: #696969;
	font-size: 0.6875rem;
}

.con_KBArticle p, .con_DocItem p, .con_CommunityItem p,
	.con_TechAlertItem p, .con_DownloadItem p {
	margin: 0;
	font-weight: 400;
	font-size: 0.875rem;
}

/* -----------------------------------------------
              KB ARTICLE Slider
------------------------------------------------*/
#section_ArticleDetails, #section_ArticleDetailsTranslated,
	#section_DocumentDetails, #pnl_AlertReader, #pnl_SupportReader {
	font-size: 0.875rem;
}

#section_ArticleDetails h1, #section_ArticleDetailsTranslated h1,
	#section_DocumentDetails h1, #pnl_AlertReader h1, #pnl_SupportReader h1
	{
	font-weight: 400;
	font-size: 1.375rem;
}

#section_ArticleDetails h2, #section_ArticleDetailsTranslated h2,
	#section_DocumentDetails h2, #pnl_AlertReader h2, #pnl_SupportReader h2
	{
	font-size: 1.125rem;
	font-weight: 500;
}

#section_ArticleDetails h3, #section_ArticleDetailsTranslated h3,
	#section_DocumentDetails h3, #pnl_AlertReader h3, #pnl_SupportReader h3
	{
	font-size: 1.2em;
	font-weight: 500;
}

#section_ArticleDetails h4, #section_ArticleDetailsTranslated h4,
	#section_DocumentDetails h4, #pnl_AlertReader h4, #pnl_SupportReader h4
	{
	font-size: 1rem;
	font-weight: 500;
}

#section_ArticleDetails h5, #section_ArticleDetailsTranslated h5,
	#section_DocumentDetails h5, #pnl_AlertReader h5, #pnl_SupportReader h5
	{
	font-size: 0.875rem;
	font-weight: 500;
}

#section_DocumentDetails #icn_ReadPDF {
	font-size: 0.8125rem;
	line-height: 0.8125rem;
}

.alert-warning-icon {
	padding-left: 50px;
	background-image:
		url("data:image;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAATCAYAAACUef2IAAAAAXNSR0IArs4c6QAAAa1JREFUOBGdkz9Lw0AYxnNpHAyUOlQyiYuFuhSkCZRCaEe/gR9BB2fnDLroYjf9AH4PsWMThC4Kbjo6SSGlNaY+b7mL12v+1cBxd+/7e588uXujaSUfx3GOaZTENVYGbLfbW+DGnG0FQfBdVKcXAZRnjJ1jatLgawrnPoWOXdfdDcPwDSo1rvRlmmZjOBx+5ikXOobolSRKWjUey9PNP2Pbto8Wi4UPBdVAjCOxfd9/zlJXC1Y4iA5SRInReW6FlzeZwmitE4CugOHwh4bYU44zUuhvmXp5aC8TIq9wtSfQarVKLadNJpOk1cB8gGmi/ULBiTnVMQouZFEBqzMxxKpx2q857na7+/P5/AVF23JBmuOlAGNT7vpd5tccz2aza1VULlDXnL1R4yuOcRm9OI4fVYj2+OTlxUGokpbXdb03Go2eRC5x7HketdCtSGw6o3ZAGqIucYyf4RTJO5FQ56wzljl81Rl+mnuKLd/Q7/d3IHopQ/9ZkwZpJcLoTQ+bep4Y9a/cwxlsnWtprNPpHEZRNMbbjAx4ozCOIzIMo1WxLOsBlY2NqvNhHZ118AtKsKcBIhObJgAAAABJRU5ErkJggg==")
		!important;
	background-position: left;
	background-position-x: 15px;
	background-repeat: no-repeat;
}

.con_Article_HeaderTimestamp, .con_Alert_HeaderTimestamp {
	position: relative;
	display: inline-flex;
	flex-direction: row;
	margin-top: 0px;
	margin-bottom: 0px;
	color: #696969;
	font-size: 0.75rem;
	flex-wrap: wrap;
}

.con_Article_HeaderTimestamp div, .con_Alert_HeaderTimestamp div {
	position: relative;
	padding-right: 15px;
	height: 25px !important;
	white-space: nowrap;
}

.con_Article_HeaderTimestamp div:not (:last-of-type )::after,
	.con_Alert_HeaderTimestamp div:not (:last-of-type )::after {
	position: absolute;
	top: 1px;
	right: 0px;
	width: 1px;
	height: 15px;
	background: #939393;
	content: "";
}

@media ( max-width : 414px) {
	.con_Article_HeaderTimestamp div:not (:last-of-type )::after,
		.con_Alert_HeaderTimestamp div:not (:last-of-type )::after {
		display: none;
	}
	.con_Article_HeaderTimestamp div, .con_Alert_HeaderTimestamp div {
		display: block !important;
		width: 100%;
	}
}

.con_Article_HeaderTimestamp .text-link, .con_Alert_HeaderTimestamp .text-link
	{
	font-size: 0.75rem;
}

.con_Article_HeaderTimestamp span.mdi, .con_Alert_HeaderTimestamp span.mdi
	{
	line-height: 0.9rem;
}

#el_Products {
	white-space: normal;
	height: auto;
}

#el_Products .inline {
	white-space: normal;
	height: 25px !important;
}

#con_InternalNotes, #con_RelatedCases, #con_ArticleFeedback {
	background-color: #fffac1;
}

#con_RelatedCases a {
	display: block;
}

#con_RelatedCases .case-link:hover {
	-webkit-box-shadow: inset 0px -1px 0px 0px rgba(147, 147, 147, 1);
	-moz-box-shadow: inset 0px -1px 0px 0px rgba(147, 147, 147, 1);
	box-shadow: inset 0px -1px 0px 0px rgba(147, 147, 147, 1);
}

#section_RelatedArticles .article-link:hover {
	-webkit-box-shadow: inset 0px -1px 0px 0px rgba(147, 147, 147, 1);
	-moz-box-shadow: inset 0px -1px 0px 0px rgba(147, 147, 147, 1);
	box-shadow: inset 0px -1px 0px 0px rgba(147, 147, 147, 1);
}

#section_Feedback {
	background-color: #e7e7e7;
}

#section_TitleTools .icon-stack-24px .icon-stack-1x {
	font-size: 1.6em;
	line-height: inherit;
}

#section_TitleTools .icon-stack-24px .icon-stack-1x {
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	text-align: center;
}

#section_TitleTools .icon-stack-24px .icon-stack-2x {
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	text-align: center;
}

#section_TitleTools .icon-stack-24px .icon-stack-2x-black {
	position: relative;
	left: 5px;
	color: #333333 !important;
	font-size: 0.875em;
}

#section_TitleTools #icn_CopyArticleLink {
	height: auto !important;
}

/* -----------------------------------------------
              OPEN SOURCE CARD GRID
------------------------------------------------*/
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	grid-gap: 15px;
	align-items: stretch;
}

.card-grid>card {
	border: 1px solid #ccc;
	box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.3);
}

.card-grid .card .card-avatar img {
	width: 42px !important;
	height: 42px !important;
}

.card-grid .card .card-body div.d-flex i.mdi {
	width: 42px;
	min-width: 42px;
	margin-right: 0.9375rem;
	text-align: center;
}

.card .card-bottom .card-btn-icon i.mdi {
	line-height: 1.3rem;
}

/* The below content is appended to app.css */
.fix-position {
	margin-left: 58px;
	margin-top: 7px;
}

.remove-extra-padding p {
	margin: 0 0 0 0 !important;
}

.printFriendly {
	display: none;
}

@media print {
	main>*:not(.printFriendly):not(#pf_breadcrumb) {
		display: none !important;
	}
	footer, #navbarSupportedContent-5, .slide-reveal-overlay {
		display: none !important;
	}
	.navbar {
		display: flex;
	}
	.navbar a, .box--breadcrumb a {
		text-decoration: none;
	}
	.fixed-top {
		position: absolute !important;
	}
	body {
		background-color: transparent;
	}
	.printFriendly, #pf_breadcrumb {
		display: block !important;
	}
	.doNotBreak {
		page-break-inside: avoid;
	}
	
}

.fixed-top {
	z-index: 1600;
}

.box--breadcrumb.fixed-top{
	z-index: 1000 !important;
}

#dd_TranslateMenu::after {
	display: none;
}

.pagination .page-item.active .page-link {
	background-color: #939393 !important;
}

@media ( max-width : 992px) {
	#box_ShowMoreLessReadMe .metadata div:not (:last-of-type )::after {
		background: #939393 !important;
	}
}

@media ( max-width : 767px) {
	#pf_breadcrumb li.breadcrumb-item.active {
		display: none;
	}
}

.text-link-sm {
	color: #0070bd;
	text-decoration: none;
	font-size: 0.75rem;
	cursor: pointer;
	margin-top: auto;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.metadata.piped::before {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 1px;
	height: 100%;
	margin-right: 15px;
	background: #939393;
	content: "";
}

.text-link-18 {
	color: #0070bd;
	text-decoration: none;
	font-size: 1.125rem;
	cursor: pointer;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

#dynamicZcontainer input {
	z-index: 1001;
}

#dynamicZcontainer-signout input {
	z-index: 1001;
}

.dynamicZ {
	z-index: 1002;
}

.disabledCheckbox:before {
	border: 1px dashed #696969 !important;
	opacity: 0.5;
}

.disabledCheckbox {
	pointer-events: none;
}

table.dataTable tbody td.select-checkbox:before, table.dataTable tbody th.select-checkbox:before
	{
	content: ' ';
	margin-top: -2px;
	margin-left: -6px;
	-webkit-border-radius: 3px;
	border-radius: 0px;
}

.mdi-16px, .mdi-16px.mdi-set, .mdi-16px.mdi:before {
	max-width: 1rem !important;
	height: 1rem !important;
	width: 1rem !important;
	font-size: 1rem !important;
	line-height: 1rem !important;
}

dl, ol, ul {
	font-size: 0.875rem;
}

.paragraph {
	margin-bottom: 0.9375rem;
	font-weight: normal;
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.ieMB {
	margin-bottom: 7rem !important;
}

#downloadToolbar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.overlayedToolbar {
	position: relative;
}

.overlayedToolbar .btn-group:first-of-type:after {
	display: none;
}

.latestRelease .owl-carousel .card {
	height: 218px;
}

w-10 {
	width: 10px !important;
}

li#navbar-Impersonation1 {
    padding-top: 7px;
    width: auto;    
}

li#navbar-Impersonation {
    padding-top: 7px;    
}

a#signInPanelTrigger {
    width: auto !important;
}

.popout-list-item__header {
    height: auto !important;
}

#dtBaseUpgrades td.d-flex.justify-items-between.sorting_1 {
    background-color: transparent !important;
}

#dtLatestDetails td.select-checkbox.selected {
    background-color: transparent !important;
}

#dtLatestDetails td.sorting_1 {
	background-color: transparent !important;
}

table#dtBaseUpgrades {
    border-collapse: inherit !important;
}

table#dtLatestDetails {
    border-collapse: inherit !important;
}

table#dtLatestUpdates {
    border-collapse: inherit !important;
}

table#dtBaseUpgrades.dataTable th {
    min-height: 26px;
}

table#dtLatestDetails.dataTable th {
    min-height: 26px;
}
/*VSOE-2012 */
.black-text {
    color: #333 !important;
    font-weight: 550 !important;
}

select.no-mdb-select.in-sld-panel {
    background-color: #f9f9f9 !important;;
}

.loadingoverlay_element {
	width: 92% !important;
}

#toast-container {
	position: fixed;
	z-index: 999999 !important;
}

.badgeContainer .criticalFlag{
    display: inline-block;
    margin-bottom: 0.3rem;
}

.badgeContainer .obsoleteFlag{
    display: inline-block;
    margin-bottom: 0.3rem;
}

#quickViewSection p{
	margin-bottom: 0rem !important;
}

#dtUpdates .releaseName{
	cursor:default !important;
}

/*Nav header changes for mobile view*/
:root {
    --mdb-bkgnd-light: #f4f5f8;
    --mdb-border-form: #193735;
    --mdb-link-color: #AB2328;
    --mdb-link-hover-color: #AB2328;
    --mdb-muted-color: #757575;
    --mdb-primary: #AB2328;
    --mdb-dropdown-state-color: #16181b;
    --mdb-dropdown-state-background-color: #eee;
    --mdb-gray-800: #4a4a4a;
    --mdb-white: #fff;
    --mdb-bg-light-gray: #d3d3d3;

    --mdb-nav-link-padding-x: 1rem;
    --mdb-nav-link-padding-y: 0.5rem;
    --mdb-nav-link-color: var(--mdb-link-color);
    --mdb-nav-link-hover-color: var(--mdb-link-hover-color);
    --mdb-nav-link-disabled-color: var(--mdb-muted-color);
    --mdb-dropdown-item-padding-x: 1rem;
    --mdb-dropdown-item-padding-y: 0.5rem;

}

.VDLB5 .dropdown-menu {
    border: none;
    -webkit-border-radius: .125rem;
    border-radius: .125rem;
    background-color: #f9f9f9;
    -webkit-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
}

.VDLB5 .dropdown-menu.animated {
    -webkit-animation-duration: .55s;
    animation-duration: .55s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
}

.VDLB5 .dropdown-menu {
    padding: 0;
}

.VDLB5 .dropdown-menu.show {
    display: block;
}

.VDLB5 .dropdown-menu a.dropdown-item:hover {
    color: var(--mdb-primary);
    text-decoration: none;
}

.VDLB5 .dropdown-menu a.dropdown-item.active,
.VDLB5 .dropdown-menu a.dropdown-item:active,
.VDLB5 .dropdown-menu a.dropdown-item:focus,
.VDLB5 .dropdown-menu a.dropdown-item:hover {
    background-color: var(--mdb-dropdown-state-background-color) !important;
    -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0) !important;
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

.VDLB5 .dropdown-menu .dropdown-item {
    padding: var(--mdb-dropdown-item-padding-y) var(--mdb-dropdown-item-padding-x);
    border-radius: 0;
}

.VDLB5 .dropdown-menu .dropdown-item.active,
.VDLB5 .dropdown-menu .dropdown-item:active,
.VDLB5 .dropdown-menu .dropdown-item:focus,
.VDLB5 .dropdown-menu .dropdown-item:hover {
    color: var(--mdb-dropdown-state-color);
    background-color: var(--mdb-dropdown-state-background-color);
}

.VDLB5 .nav-vtas-utility {
    background-color: var(--mdb-bkgnd-light);
}

.VDLB5 .nav-vtas-utility a:hover {
    text-decoration: underline;
}

.VDLB5 .nav.nav-vtas-utility-ul {
    height: 45px;
    justify-content: flex-end;
    align-items: center;
}

.VDLB5 .nav.nav-vtas-utility-ul a {
    font-size: .8125rem !important;
    color: var(--mdb-border-form);
}

.VDLB5 .nav-link {
    display: block;
    padding: var(--mdb-nav-link-padding-y) var(--mdb-nav-link-padding-x);
    font-size: var(--mdb-nav-link-font-size);
    font-weight: var(--mdb-nav-link-font-weight);
    color: var(--mdb-nav-link-color);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}


.VDLB5 .nav.nav-vtas-utility-ul .utility-dropdown {
    font-size: .8125rem !important;
    padding: .5rem 1rem;
    color: var(--mdb-border-form);
    -webkit-appearance: none;
    appearance: none;
}

.VDLB5 #utilOverflow::after {
    display: none !important;
    margin-left: 0;
    content: '';
    vertical-align: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
}
