@import url("/rsrc/css/hint.min.css");
@import url("/rsrc/css/InfoPopupCSS.css");
@import url("/rsrc/css/ajax-busy-notice.css");
/********( Notifications )*****************************************************/
/********( CSS Index )*********************************************************/
/*
	0. CSS Introduction
	1. Notifications
	2. CSS Index
	3. CSS Introduction
	4. Notification Container
		4.1. Notifications
		4.2. Notification Types
			4.2.1. Alert
			4.2.2. Attention
			4.2.3. Debug
			4.2.4. Error
			4.2.5. Info
			4.2.6. Success
		4.3. Close Button
		4.4. Elements in Notifications

	EOF

*/
/********( CSS Introduction )**************************************************/
/*
	There can only be one place where system-generated messages apear but there
	might be more places where noticiations are used.

	The following notification classes are available:
		Client Notifications:
			- attention   : To notify the user he needs to pay attention to something.
			- error       : To notify the user of failure.
			- info        : To inform the user of a piece of information.
			- inform      : @see info
			- information : @see info
			- log         : To send the user a plain/normal message.
			- success     : to notify the user of success.
			- warn        : @see error

		Developer / Debug Notifications:
			- alert: For debug messages that need extra attention
			- debug: For simple debug messages.

	 Log is the same as if no type is given.
*/


/********( Notification Container )********************************************/
.NotificationList {
	margin: 0;
	padding: 0;
}
#notifications {
	/*position: fixed;*/
}

.notifications {
	display: inline-block;
	line-height: 1em;
	list-style-type: none;
	margin: 0 0 0 0px;
	padding: 0 15px 0 0;
	left: 50%;
	width: 536px;
	top: 0;
    -webkit-border-radius: 8px;
    border-radius: 8px;
	position: relative;
}
.notifications_default {
	left: 0;
	right: 0;
	top: 0 !important;
	width: auto;
	position: fixed;
}


	/********( Notifications )*************************************************/
	.notifications .notification {
		background-color: black;
		border: solid 2px black;
		clear: both;
		color: white;
		display: block;
		float: right;
		font-family: Verdana,Geneva,sans-serif;
		line-height: 18px;
		list-style-type: none;
		margin: 14px 0 0 0;
		padding: 10px 10px 10px 36px;
		position: relative;
		text-align: left;

		-moz-border-radius: .5em;
		border-radius: .5em;

		-webkit-box-shadow:     1px 1px 4px 0px #888;
		-moz-box-shadow:        1px 1px 4px 0px #888;
		box-shadow:             1px 1px 4px 0px #888;
	}

		.notifications .notification:hover {
			border-color: rgb(0,0,0);
		}

	/********( Notification Types )********************************************/
		.notifications .alert,
		.notifications .debug,
		.notifications .dump,
		.notifications .log,
		.notifications .attention,
		/*.notifications .info, .notifications .inform, .notifications .information,*/
		/*.notifications .success,*/
		.notifications .error, .notifications .warn
		{
			/*@TODO: place all icons in one file and use as sprites*/
			/*background-image: url("/rsrc/img/notifications-icons-sprite.png");*/
			background-position: 5px 6px;
			background-repeat: no-repeat;
			/*text-indent:20px;*/
		}

		.notifications .alert,
		.notifications .debug,
		.notifications .dump,
		/*.notifications .log,*/
		.notifications .attention,
		/*.notifications .info, .notifications .inform, .notifications .information,*/
		.notifications .success,
		.notifications .error, .notifications .warn
		{
			/*font-weight:bold;*/
			text-shadow: 0 0 2px .000000;
		}

		/********( Alert )*****************************************************/
		.notifications .alert {
			background-color: #b0b022;
			background-image: url("/rsrc/img/icon/exclamation-diamond-frame.png");
			border-color: #ffff00;
			background-position: 10px center;
		}

		/********( Attention )*************************************************/
		.notifications .attention {
			background-color: #ff8c00;
			background-image: url("/rsrc/img/icon/exclamation.png");
			border-color: #ffc800;
			background-position: 10px center;
		}

		/********( Error )*****************************************************/
		.notifications .error,
		.notifications .warn {
			background-color: #ffe3e3;
			background-image: url("/rsrc/img/icon/minus-circle.png");
			border-color: #db0000;
			color: #933;
			background-position: 10px center;
		}

		/********( Debug )*****************************************************/
		.notifications .dump,
		.notifications .debug {
			background-color: #b0b0b0;
			background-image: url("/rsrc/img/icon/game.png");
			border-color: #808080;
			background-position: 10px center;
		}

		/********( Dump )******************************************************/
		.notifications .dump {
			background-color: #fffacd;
			background-image: url("/rsrc/img/icon/ghost.png");
			color: #666;
			background-position: 10px center;
		}

		/********( Info )******************************************************/
		.notifications .success,
		.notifications .info,
		.notifications .information {
			background-color: #0785ad;
			border-color: #56a4c2;
			/*background-image: url("/rsrc/img/icon/information.png");*/
			background-position: 10px center;
		}

		/********( Log )*******************************************************/
		.notifications .log {
			background-image: url("/rsrc/img/icon/game-white.png");
			background-position: 10px center;
			border-color: #000000;
			font-weight: normal;
		}

		/********( Success )***************************************************/
/*		.notifications .success {
			background-color: rgb(34, 178, 34);
			background-image:url("/rsrc/img/icon/tick-circle.png");
			border-color:lime;
		}
*/

	/********( Close Button )**************************************************/
	.notifications .notification button.close {
		opacity: 0;
		background-image: url('/rsrc/img/notification-close.png');
		position: absolute;
		top: -15px;
		left: -15px;
		width: 26px;
		height: 26px;
		cursor: pointer;
		z-index: 1004;
		padding: 0;
		margin: 0;
		background-color: transparent;
		text-indent: 36px;
		overflow: hidden;
		border: 0;

	}

	.notifications .notification:hover button.close {
		opacity: 1;
	}

	/********( Elements in Notifications )*************************************/
		/********( Base Elements )*********************************************/
		.notifications fieldset {
			border: 0px none transparent;
		}

		.notifications ul {
			margin: 0;
		}

		/********( Elements  )*********************************************/
		.notifications .VisualizedVar li {
			color: rgb(0, 0, 0);
			font-size: 12px;
			font-weight: normal;
			list-style-type:none;
			padding: 0 0 0 .75em;
			text-align: left;
			white-space: nowrap;
		}

		.notifications li.VisualizedVar > ul {
			max-width:500px;
			max-height:400px;
			overflow:auto;
		}

        
.MessageOfTheDay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 8010;
	margin: 0;
	padding: 5px 15px;
	color: #000;
	background: #FFE6A0;
	background: rgba(255, 230, 160, .9);
	line-height: 24px;
	border: 1px solid #FFE6A0;
	border-top: 0;
	box-shadow: 0 1px 2px 0 #808080;
	-moz-box-shadow: 0 1px 2px 0 #808080;
	font-size: 13px;
}
.LoginTemplate .MessageOfTheDay {
	box-shadow: 0 1px 2px 0 #000;
	-moz-box-shadow: 0 1px 2px 0 #000;
}
.MessageOfTheDay button {
	margin-top: 2px;
    float: right;
}

/********( EOF )***************************************************************/

/*! jQuery UI - v1.10.3 - 2013-08-07
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
* Copyright 2013 jQuery Foundation and other contributors Licensed MIT */

/* Layout helpers
----------------------------------*/
.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-clearfix {
	min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0);
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
}
.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-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin-top: 2px;
	padding: .5em .5em .5em .7em;
	min-height: 0; /* support: IE7 */
}
.ui-accordion .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-noicons {
	padding-left: .7em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	position: absolute;
	left: .5em;
	top: 50%;
	margin-top: -8px;
}
.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-button {*/
	/*display: inline-block;*/
	/*position: relative;*/
	/*padding: 0;*/
	/*line-height: normal;*/
	/*margin-right: .1em;*/
	/*cursor: pointer;*/
	/*vertical-align: middle;*/
	/*text-align: center;*/
	/*overflow: visible; *//* removes extra width in IE */
/*}*/
/*.ui-button,*/
/*.ui-button:link,*/
/*.ui-button:visited,*/
/*.ui-button:hover,*/
/*.ui-button:active {*/
	/*text-decoration: none;*/
/*}*/
/* to make room for the icon, a width needs to be set here */
/*.ui-button-icon-only {*/
	/*width: 2.2em;*/
/*}*/
/* button elements seem to need a little more width */
/*button.ui-button-icon-only {*/
	/*width: 2.4em;*/
/*}*/
/*.ui-button-icons-only {*/
	/*width: 3.4em;*/
/*}*/
/*button.ui-button-icons-only {*/
	/*width: 3.7em;*/
/*}*/

/* button text element */
/*.ui-button .ui-button-text {*/
	/*display: block;*/
	/*line-height: normal;*/
/*}*/
/*.ui-button-text-only .ui-button-text {*/
	/*padding: .4em 1em;*/
/*}*/
/*.ui-button-icon-only .ui-button-text,*/
/*.ui-button-icons-only .ui-button-text {*/
	/*padding: .4em;*/
	/*text-indent: -9999999px;*/
/*}*/
/*.ui-button-text-icon-primary .ui-button-text,*/
/*.ui-button-text-icons .ui-button-text {*/
	/*padding: .4em 1em .4em 2.1em;*/
/*}*/
/*.ui-button-text-icon-secondary .ui-button-text,*/
/*.ui-button-text-icons .ui-button-text {*/
	/*padding: .4em 2.1em .4em 1em;*/
/*}*/
/*.ui-button-text-icons .ui-button-text {*/
	/*padding-left: 2.1em;*/
	/*padding-right: 2.1em;*/
/*}*/
/* no icon support for input elements, provide padding by default */
/*input.ui-button {*/
	/*padding: .4em 1em;*/
/*}*/

/* button icon element(s) */
/*.ui-button-icon-only .ui-icon,*/
/*.ui-button-text-icon-primary .ui-icon,*/
/*.ui-button-text-icon-secondary .ui-icon,*/
/*.ui-button-text-icons .ui-icon,*/
/*.ui-button-icons-only .ui-icon {*/
	/*position: absolute;*/
	/*top: 50%;*/
	/*margin-top: -8px;*/
/*}*/
/*.ui-button-icon-only .ui-icon {*/
	/*left: 50%;*/
	/*margin-left: -8px;*/
/*}*/
/*.ui-button-text-icon-primary .ui-button-icon-primary,*/
/*.ui-button-text-icons .ui-button-icon-primary,*/
/*.ui-button-icons-only .ui-button-icon-primary {*/
	/*left: .5em;*/
/*}*/
/*.ui-button-text-icon-secondary .ui-button-icon-secondary,*/
/*.ui-button-text-icons .ui-button-icon-secondary,*/
/*.ui-button-icons-only .ui-button-icon-secondary {*/
	/*right: .5em;*/
/*}*/

/* button sets */
/*.ui-buttonset {*/
	/*margin-right: 7px;*/
/*}*/
/*.ui-buttonset .ui-button {*/
	/*margin-left: 0;*/
	/*margin-right: -.3em;*/
/*}*/

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
/*input.ui-button::-moz-focus-inner,*/
/*button.ui-button::-moz-focus-inner {*/
	/*border: 0;*/
	/*padding: 0;*/
/*}*/
.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-year {
	width: 100%;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 49%;
}
.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;
}

/* with multiple calendars */
.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;
}

/* RTL support */
.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-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: 21px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
    position: relative;
    border: 0;
    padding: .5em 1em;
    background: none;
    height:auto !important;
}
.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;
	left: 11%;
	position: relative;
	margin: 0px 34px 0px 0px;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: 0em 10px 0em 0em;
	cursor: pointer;
}
.ui-dialog .ui-resizable-se {
	width: 12px;
	height: 12px;
	right: -5px;
	bottom: -5px;
	background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-menu {
	list-style: none;
	padding: 2px;
	margin: 0;
	display: block;
	outline: none;
}
.ui-menu .ui-menu {
	margin-top: -3px;
	position: absolute;
}
.ui-menu .ui-menu-item {
	margin: 0;
	padding: 0;
	width: 100%;
	/* support: IE10, see #8844 */
	list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}
.ui-menu .ui-menu-divider {
	margin: 5px -2px 5px -2px;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-menu-item a {
	text-decoration: none;
	display: block;
	padding: 2px .4em;
	line-height: 1.5;
	min-height: 0; /* support: IE7 */
	font-weight: normal;
}
.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
	font-weight: normal;
	margin: -1px;
}

.ui-menu .ui-state-disabled {
	font-weight: normal;
	margin: .4em 0 .2em;
	line-height: 1.5;
}
.ui-menu .ui-state-disabled a {
	cursor: default;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item a {
	position: relative;
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: .2em;
	left: .2em;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	position: static;
	float: right;
}
.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("/rsrc/css/ui-lightness/images/animated-overlay.gif");
	height: 100%;
	filter: alpha(opacity=25);
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
.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;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* For IE8 - See #6727 */
.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-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 22px;
}
.ui-spinner-button {
	width: 16px;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to overide default borders */
.ui-spinner a.ui-spinner-button {
	border-top: none;
	border-bottom: none;
	border-right: none;
}
/* vertical centre icon */
.ui-spinner .ui-icon {
	position: absolute;
	margin-top: -8px;
	top: 50%;
	left: 0;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
	/* need to fix icons sprite */
	background-position: -65px -16px;
}
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	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 li a {
	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 a,
.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
	cursor: text;
}
.ui-tabs .ui-tabs-nav li a, /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
	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;
	-webkit-box-shadow: 0 0 5px #aaa;
	box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
	border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
	font-size: 1.1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
    font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
    font-size: 1em;
    margin: 6px;
}
.ui-widget-content {
    border: 1px solid #dddddd;
    color: #333333;
}
.ui-widget-content a {
	color: #333333;
}
.ui-widget-header {
    border: 1px solid #e78f08;
    color: #ffffff;
    font-weight: bold;
}
.ui-widget-header a {
	color: #ffffff;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    border: 1px solid #cccccc;
    font-weight: bold;
    color: #1c94c4;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
	color: #1c94c4;
	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 {
    border: 1px solid #fbcb09;
    font-weight: bold;
    color: #c77405;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited {
	color: #c77405;
	text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
    border: 1px solid #fbd850;
    font-weight: bold;
    color: #eb8f00;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #eb8f00;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #fed22f;
	background: #ffe45c url(/rsrc/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x;
	color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #cd0a0a;
	background: #b81900 url(/rsrc/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% repeat;
	color: #ffffff;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #ffffff;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #ffffff;
}
.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); /* For IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url(/rsrc/css/ui-lightness/images/ui-icons_222222_256x240.png);
}
.ui-widget-header .ui-icon {
	background-image: url(/rsrc/css/ui-lightness/images/ui-icons_ffffff_256x240.png);
}
.ui-state-default .ui-icon {
	background-image: url(/rsrc/css/ui-lightness/images/ui-icons_ef8c08_256x240.png);
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
	background-image: url(/rsrc/css/ui-lightness/images/ui-icons_ef8c08_256x240.png);
}
.ui-state-active .ui-icon {
	background-image: url(/rsrc/css/ui-lightness/images/ui-icons_ef8c08_256x240.png);
}
.ui-state-highlight .ui-icon {
	background-image: url(/rsrc/css/ui-lightness/images/ui-icons_228ef1_256x240.png);
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url(/rsrc/css/ui-lightness/images/ui-icons_ffd27a_256x240.png);
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-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: -64px -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: -64px -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: 0 -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 is deprecated, use ui-icon-seek-start instead */
.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; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
	background: #666666 url(/rsrc/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat;
	opacity: .5;
	filter: Alpha(Opacity=50);
}
.ui-widget-shadow {
	margin: -5px 0 0 -5px;
	padding: 5px;
	background: #000000 url(/rsrc/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x;
	opacity: .2;
	filter: Alpha(Opacity=20);
	border-radius: 5px;
}

.modifications .ui-widget {
  font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif;
  font-size: 1em;
}
.modifications .ui-datepicker {
  background: #eeeeee;
}
.modifications .ui-datepicker .ui-widget-header {
  background: #cdbfdf;
}
.modifications .ui-widget-content a {
  color: #197eaa;
}
.modifications .ui-widget-content a.button {
  color: #ffffff;
}
.modifications .ui-widget-content a:hover {
  color: #0f4d67;
}
.modifications .ui-widget-header {
  border: 1px solid #2d6d98;
  color: #222222;
  font-weight: bold;
}
.modifications .ui-widget-header a {
  color: black;
}
.modifications .ui-state-default,
.modifications .ui-widget-content .ui-state-default,
.modifications .ui-widget-header .ui-state-default {
  border: 1px solid #1a1a2c;
  font-weight: normal;
  color: #000000;
}
.modifications .ui-state-default:hover,
.modifications .ui-widget-content .ui-state-default:hover,
.modifications .ui-widget-header .ui-state-default:hover {
  color: black;
}
.modifications .ui-state-active,
.modifications .ui-widget-content .ui-state-active,
.modifications .ui-widget-header .ui-state-active {
  border: 1px solid #c0c0c0;
  font-weight: normal;
  color: red;
}
.modifications .ui-state-active a,
.modifications .ui-widget-content .ui-state-active a,
.modifications .ui-widget-header .ui-state-active a {
  color: #ba1e21 !important;
}
.modifications .ui-state-highlight,
.modifications .ui-widget-content .ui-state-highlight,
.modifications .ui-widget-header .ui-state-highlight {
  border: 1px solid #267fa7;
  background: #267fa7 url(/rsrc/css/ui-lightness/images/ui-bg_inset-soft_55_267fa7_1x100.png) 50% bottom repeat-x;
  color: #000000;
}
.modifications .ui-state-highlight a,
.modifications .ui-widget-content .ui-state-highlight a,
.modifications .ui-widget-header .ui-state-highlight a {
  color: #000000;
}
.modifications .ui-state-error,
.modifications .ui-widget-content .ui-state-error,
.modifications .ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: #fef1ec url(/rsrc/css/ui-lightness/images/ui-bg_inset-soft_95_fef1ec_1x100.png) 50% bottom repeat-x;
  color: #cd0a0a;
}
.modifications .ui-state-highlight .ui-icon {
  background-image: url(/rsrc/css/ui-lightness/images/ui-icons_2d6d98_256x240.png);
}
.modifications .ui-corner-tl {
  -moz-border-radius: 4px 0px 0px 0px;
  -webkit-border-radius: 4px 0px 0px 0px;
  border-radius: 4px 0px 0px 0px;
}
.modifications .ui-corner-tr {
  -moz-border-radius: 0px 4px 0px 0px;
  -webkit-border-radius: 0px 4px 0px 0px;
  border-radius: 0px 4px 0px 0px;
}
.modifications .ui-corner-bl {
  -moz-border-radius: 0px 0px 0px 4px;
  -webkit-border-radius: 0px 0px 0px 4px;
  border-radius: 0px 0px 0px 4px;
}
.modifications .ui-corner-br {
  -moz-border-radius: 0px 0px 4px 0px;
  -webkit-border-radius: 0px 0px 4px 0px;
  border-radius: 0px 0px 4px 0px;
}
.modifications .ui-corner-top {
  -moz-border-radius: 4px 4px 0px 0px;
  -webkit-border-radius: 4px 4px 0px 0px;
  border-radius: 4px 4px 0px 0px;
}
.modifications .ui-corner-bottom {
  -moz-border-radius: 0px 0px 4px 4px;
  -webkit-border-radius: 0px 0px 4px 4px;
  border-radius: 0px 0px 4px 4px;
}
.modifications .ui-corner-right {
  -moz-border-radius: 0px 4px 4px 0px;
  -webkit-border-radius: 0px 4px 4px 0px;
  border-radius: 0px 4px 4px 0px;
}
.modifications .ui-corner-left {
  -moz-border-radius: 4px 0px 0px 4px;
  -webkit-border-radius: 4px 0px 0px 4px;
  border-radius: 4px 0px 0px 4px;
}
.modifications .ui-corner-all {
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
}
.modifications .ui-menu .ui-menu-item {
  list-style-type: none;
}
.modifications .ui-dialog {
  position: absolute;
  padding: 0.2em;
  width: 300px;
  -webkit-box-shadow: 0px 0px 1px 0px #000;
  box-shadow: 0px 0px 1px 0px #000;
  background: white;
}
.modifications .ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border: 0;
  background-image: none;
  margin: 0.5em 0 0 0;
  padding: 0.3em 1em 0.5em 0.4em;
}
.modifications .ui-tabs .ui-tabs-panel {
  border-width: 0;
  padding: 30px 15px;
  background: #ffffff;
  border-radius: 20px;
  margin: 20px;
  white-space: normal;
}
.modifications .ui-tabs .ui-tabs-panel.has-breadcrumb {
  padding: 15px 15px;
}
.modifications .ui-multiselect-checkboxes,
.modifications .ui-autocomplete,
.modifications .ui-menu,
.modifications .ui-widget,
.modifications .ui-widget-content {
  font-size: 16px;
  color: #454558;
}
.modifications .ui-multiselect-checkboxes li,
.modifications ul.ui-menu li.ui-menu-item {
  background: white;
}
.modifications .ui-multiselect-checkboxes li:nth-child(odd),
.modifications ul.ui-menu li.ui-menu-item:nth-child(odd) {
  background: #f0f7ff;
}
.modifications .ui-multiselect-checkboxes li .ui-state-hover,
.modifications ul.ui-menu li.ui-menu-item .ui-state-hover {
  background: #8c939b;
  color: white;
  border: none;
}
.modifications #content .ui-multiselect-menu label.ui-state-active,
.modifications .ui-multiselect-menu li label.ui-state-active {
  background: #8c939b;
  color: white;
  border: solid 1px #f0f7ff;
}
.modifications #content .ui-multiselect-menu label.ui-state-active:before,
.modifications .ui-multiselect-menu li label.ui-state-active:before {
  content: '✓ ';
}
.modifications .ui-widget-overlay {
  background: #000;
  opacity: 0;
  filter: alpha(opacity=0);
}
.modifications .ui-widget-overlay.grey {
  background: #000;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.modifications .ui-widget-overlay.newsItem {
  background: #000;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.modifications .ui-widget-shadow {
  margin: -8px 0 0 -8px;
  padding: 8px;
  background: #aaaaaa url(/rsrc/css/ui-lightness/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  opacity: 0.3;
  filter: alpha(opacity=30);
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
.modifications .ui-dialog.fancyDialog {
  position: absolute !important;
  top: calc(50vh - 210px) !important;
  left: calc(50vw - 210px) !important;
}
.modifications .ui-dialog.fancyDialog.fancyDialogMedium {
  margin-left: -315px !important;
  background: #fff;
}
.modifications .ui-dialog.fancyDialog.fancyDialogMedium .ui-widget-content {
  background: #fff;
}
.modifications .ui-dialog.fancyDialog.fancyDialogLarge {
  margin-left: -504px !important;
  background: #fff;
}
.modifications .ui-dialog.fancyDialog.fancyDialogLarge .ui-widget-content {
  background: #fff;
}
.modifications .ui-dialog.fancyDialog.newsItem {
  margin-left: -515px !important;
  margin-top: -150px !important;
  display: block;
}
.modifications .ui-dialog.fancyDialog.photo {
  background: #fff;
  padding: 0;
  margin: 0;
}
.modifications .ui-dialog.fancyDialog.photo .gravatarDialog {
  padding: 0;
  margin: 0;
}
.modifications .ui-dialog.fancyDialog.photo .gravatarDialog img {
  border-radius: 5px;
  border: 0;
  vertical-align: -3px;
}
.modifications .ui-dialog.fancyDialog.photo .ui-dialog-titlebar .ui-dialog-titlebar-close {
  outline: none;
  background-position-y: -1px;
}
.modifications .ui-dialog .ui-dialog-titlebar {
  border: 0;
  padding: 0;
  background: none;
}
.modifications .ui-dialog .ui-dialog-titlebar .ui-dialog-title {
  display: none;
}
.modifications .ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close .ui-icon {
  display: none;
}
.modifications .ui-dialog.fancyDialog .ui-dialog-titlebar .ui-dialog-titlebar-close {
  border: 0;
  padding: 0;
  position: absolute;
  top: -12px;
  right: -21px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1004;
  background: url(/rsrc/Google_Fonts_Icons/close-black.svg) no-repeat center;
  text-indent: 36px;
  overflow: hidden;
  background-color: white;
  border-radius: 20px;
}
.ui-widget {
  font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif;
  font-size: 1em;
}
.ui-datepicker {
  background: #eeeeee;
}
.ui-datepicker .ui-widget-header {
  background: #cdbfdf;
}
.ui-widget-content a {
  color: #197eaa;
}
.ui-widget-content a.button {
  color: #ffffff;
}
.ui-widget-content a:hover {
  color: #0f4d67;
}
.ui-widget-header {
  border: 1px solid #2d6d98;
  color: #222222;
  font-weight: bold;
}
.ui-widget-header a {
  color: black;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #1a1a2c;
  font-weight: normal;
  color: #000000;
}
.ui-state-default:hover,
.ui-widget-content .ui-state-default:hover,
.ui-widget-header .ui-state-default:hover {
  color: black;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid #c0c0c0;
  font-weight: normal;
  color: red;
}
.ui-state-active a,
.ui-widget-content .ui-state-active a,
.ui-widget-header .ui-state-active a {
  color: #ba1e21 !important;
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #267fa7;
  background: #267fa7 url(/rsrc/css/ui-lightness/images/ui-bg_inset-soft_55_267fa7_1x100.png) 50% bottom repeat-x;
  color: #000000;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #000000;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: #fef1ec url(/rsrc/css/ui-lightness/images/ui-bg_inset-soft_95_fef1ec_1x100.png) 50% bottom repeat-x;
  color: #cd0a0a;
}
.ui-state-highlight .ui-icon {
  background-image: url(/rsrc/css/ui-lightness/images/ui-icons_2d6d98_256x240.png);
}
.ui-corner-tl {
  -moz-border-radius: 4px 0px 0px 0px;
  -webkit-border-radius: 4px 0px 0px 0px;
  border-radius: 4px 0px 0px 0px;
}
.ui-corner-tr {
  -moz-border-radius: 0px 4px 0px 0px;
  -webkit-border-radius: 0px 4px 0px 0px;
  border-radius: 0px 4px 0px 0px;
}
.ui-corner-bl {
  -moz-border-radius: 0px 0px 0px 4px;
  -webkit-border-radius: 0px 0px 0px 4px;
  border-radius: 0px 0px 0px 4px;
}
.ui-corner-br {
  -moz-border-radius: 0px 0px 4px 0px;
  -webkit-border-radius: 0px 0px 4px 0px;
  border-radius: 0px 0px 4px 0px;
}
.ui-corner-top {
  -moz-border-radius: 4px 4px 0px 0px;
  -webkit-border-radius: 4px 4px 0px 0px;
  border-radius: 4px 4px 0px 0px;
}
.ui-corner-bottom {
  -moz-border-radius: 0px 0px 4px 4px;
  -webkit-border-radius: 0px 0px 4px 4px;
  border-radius: 0px 0px 4px 4px;
}
.ui-corner-right {
  -moz-border-radius: 0px 4px 4px 0px;
  -webkit-border-radius: 0px 4px 4px 0px;
  border-radius: 0px 4px 4px 0px;
}
.ui-corner-left {
  -moz-border-radius: 4px 0px 0px 4px;
  -webkit-border-radius: 4px 0px 0px 4px;
  border-radius: 4px 0px 0px 4px;
}
.ui-corner-all {
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
}
.ui-menu .ui-menu-item {
  list-style-type: none;
}
.ui-dialog {
  position: absolute;
  padding: 0.2em;
  width: 300px;
  -webkit-box-shadow: 0px 0px 1px 0px #000;
  box-shadow: 0px 0px 1px 0px #000;
  background: white;
}
.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border: 0;
  background-image: none;
  margin: 0.5em 0 0 0;
  padding: 0.3em 1em 0.5em 0.4em;
}
.ui-tabs .ui-tabs-panel {
  border-width: 0;
  padding: 30px 15px;
  background: #ffffff;
  border-radius: 20px;
  margin: 20px;
  white-space: normal;
}
.ui-tabs .ui-tabs-panel.has-breadcrumb {
  padding: 15px 15px;
}
.ui-multiselect-checkboxes,
.ui-autocomplete,
.ui-menu,
.ui-widget,
.ui-widget-content {
  font-size: 16px;
  color: #454558;
}
.ui-multiselect-checkboxes li,
ul.ui-menu li.ui-menu-item {
  background: white;
}
.ui-multiselect-checkboxes li:nth-child(odd),
ul.ui-menu li.ui-menu-item:nth-child(odd) {
  background: #f0f7ff;
}
.ui-multiselect-checkboxes li .ui-state-hover,
ul.ui-menu li.ui-menu-item .ui-state-hover {
  background: #8c939b;
  color: white;
  border: none;
}
#content .ui-multiselect-menu label.ui-state-active,
.ui-multiselect-menu li label.ui-state-active {
  background: #8c939b;
  color: white;
  border: solid 1px #f0f7ff;
}
#content .ui-multiselect-menu label.ui-state-active:before,
.ui-multiselect-menu li label.ui-state-active:before {
  content: '✓ ';
}
.ui-widget-overlay {
  background: #000;
  opacity: 0;
  filter: alpha(opacity=0);
}
.ui-widget-overlay.grey {
  background: #000;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.ui-widget-overlay.newsItem {
  background: #000;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.ui-widget-shadow {
  margin: -8px 0 0 -8px;
  padding: 8px;
  background: #aaaaaa url(/rsrc/css/ui-lightness/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  opacity: 0.3;
  filter: alpha(opacity=30);
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
.ui-dialog.fancyDialog {
  position: absolute !important;
  top: calc(50vh - 210px) !important;
  left: calc(50vw - 210px) !important;
}
.ui-dialog.fancyDialog.fancyDialogMedium {
  margin-left: -315px !important;
  background: #fff;
}
.ui-dialog.fancyDialog.fancyDialogMedium .ui-widget-content {
  background: #fff;
}
.ui-dialog.fancyDialog.fancyDialogLarge {
  margin-left: -504px !important;
  background: #fff;
}
.ui-dialog.fancyDialog.fancyDialogLarge .ui-widget-content {
  background: #fff;
}
.ui-dialog.fancyDialog.newsItem {
  margin-left: -515px !important;
  margin-top: -150px !important;
  display: block;
}
.ui-dialog.fancyDialog.photo {
  background: #fff;
  padding: 0;
  margin: 0;
}
.ui-dialog.fancyDialog.photo .gravatarDialog {
  padding: 0;
  margin: 0;
}
.ui-dialog.fancyDialog.photo .gravatarDialog img {
  border-radius: 5px;
  border: 0;
  vertical-align: -3px;
}
.ui-dialog.fancyDialog.photo .ui-dialog-titlebar .ui-dialog-titlebar-close {
  outline: none;
  background-position-y: -1px;
}
.ui-dialog .ui-dialog-titlebar {
  border: 0;
  padding: 0;
  background: none;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-title {
  display: none;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close .ui-icon {
  display: none;
}
.ui-dialog.fancyDialog .ui-dialog-titlebar .ui-dialog-titlebar-close {
  border: 0;
  padding: 0;
  position: absolute;
  top: -12px;
  right: -21px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1004;
  background: url(/rsrc/Google_Fonts_Icons/close-black.svg) no-repeat center;
  text-indent: 36px;
  overflow: hidden;
  background-color: white;
  border-radius: 20px;
}
#content .ui-widget {
  font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif;
  font-size: 1em;
}
#content .ui-datepicker {
  background: #eeeeee;
}
#content .ui-datepicker .ui-widget-header {
  background: #cdbfdf;
}
#content .ui-widget-content a {
  color: #197eaa;
}
#content .ui-widget-content a.button {
  color: #ffffff;
}
#content .ui-widget-content a:hover {
  color: #0f4d67;
}
#content .ui-widget-header {
  border: 1px solid #2d6d98;
  color: #222222;
  font-weight: bold;
}
#content .ui-widget-header a {
  color: black;
}
#content .ui-state-default,
#content .ui-widget-content .ui-state-default,
#content .ui-widget-header .ui-state-default {
  border: 1px solid #1a1a2c;
  font-weight: normal;
  color: #000000;
}
#content .ui-state-default:hover,
#content .ui-widget-content .ui-state-default:hover,
#content .ui-widget-header .ui-state-default:hover {
  color: black;
}
#content .ui-state-active,
#content .ui-widget-content .ui-state-active,
#content .ui-widget-header .ui-state-active {
  border: 1px solid #c0c0c0;
  font-weight: normal;
  color: red;
}
#content .ui-state-active a,
#content .ui-widget-content .ui-state-active a,
#content .ui-widget-header .ui-state-active a {
  color: #ba1e21 !important;
}
#content .ui-state-highlight,
#content .ui-widget-content .ui-state-highlight,
#content .ui-widget-header .ui-state-highlight {
  border: 1px solid #267fa7;
  background: #267fa7 url(/rsrc/css/ui-lightness/images/ui-bg_inset-soft_55_267fa7_1x100.png) 50% bottom repeat-x;
  color: #000000;
}
#content .ui-state-highlight a,
#content .ui-widget-content .ui-state-highlight a,
#content .ui-widget-header .ui-state-highlight a {
  color: #000000;
}
#content .ui-state-error,
#content .ui-widget-content .ui-state-error,
#content .ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: #fef1ec url(/rsrc/css/ui-lightness/images/ui-bg_inset-soft_95_fef1ec_1x100.png) 50% bottom repeat-x;
  color: #cd0a0a;
}
#content .ui-state-highlight .ui-icon {
  background-image: url(/rsrc/css/ui-lightness/images/ui-icons_2d6d98_256x240.png);
}
#content .ui-corner-tl {
  -moz-border-radius: 4px 0px 0px 0px;
  -webkit-border-radius: 4px 0px 0px 0px;
  border-radius: 4px 0px 0px 0px;
}
#content .ui-corner-tr {
  -moz-border-radius: 0px 4px 0px 0px;
  -webkit-border-radius: 0px 4px 0px 0px;
  border-radius: 0px 4px 0px 0px;
}
#content .ui-corner-bl {
  -moz-border-radius: 0px 0px 0px 4px;
  -webkit-border-radius: 0px 0px 0px 4px;
  border-radius: 0px 0px 0px 4px;
}
#content .ui-corner-br {
  -moz-border-radius: 0px 0px 4px 0px;
  -webkit-border-radius: 0px 0px 4px 0px;
  border-radius: 0px 0px 4px 0px;
}
#content .ui-corner-top {
  -moz-border-radius: 4px 4px 0px 0px;
  -webkit-border-radius: 4px 4px 0px 0px;
  border-radius: 4px 4px 0px 0px;
}
#content .ui-corner-bottom {
  -moz-border-radius: 0px 0px 4px 4px;
  -webkit-border-radius: 0px 0px 4px 4px;
  border-radius: 0px 0px 4px 4px;
}
#content .ui-corner-right {
  -moz-border-radius: 0px 4px 4px 0px;
  -webkit-border-radius: 0px 4px 4px 0px;
  border-radius: 0px 4px 4px 0px;
}
#content .ui-corner-left {
  -moz-border-radius: 4px 0px 0px 4px;
  -webkit-border-radius: 4px 0px 0px 4px;
  border-radius: 4px 0px 0px 4px;
}
#content .ui-corner-all {
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
}
#content .ui-menu .ui-menu-item {
  list-style-type: none;
}
#content .ui-dialog {
  position: absolute;
  padding: 0.2em;
  width: 300px;
  -webkit-box-shadow: 0px 0px 1px 0px #000;
  box-shadow: 0px 0px 1px 0px #000;
  background: white;
}
#content .ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border: 0;
  background-image: none;
  margin: 0.5em 0 0 0;
  padding: 0.3em 1em 0.5em 0.4em;
}
#content .ui-tabs .ui-tabs-panel {
  border-width: 0;
  padding: 30px 15px;
  background: #ffffff;
  border-radius: 20px;
  margin: 20px;
  white-space: normal;
}
#content .ui-tabs .ui-tabs-panel.has-breadcrumb {
  padding: 15px 15px;
}
#content .ui-multiselect-checkboxes,
#content .ui-autocomplete,
#content .ui-menu,
#content .ui-widget,
#content .ui-widget-content {
  font-size: 16px;
  color: #454558;
}
#content .ui-multiselect-checkboxes li,
#content ul.ui-menu li.ui-menu-item {
  background: white;
}
#content .ui-multiselect-checkboxes li:nth-child(odd),
#content ul.ui-menu li.ui-menu-item:nth-child(odd) {
  background: #f0f7ff;
}
#content .ui-multiselect-checkboxes li .ui-state-hover,
#content ul.ui-menu li.ui-menu-item .ui-state-hover {
  background: #8c939b;
  color: white;
  border: none;
}
#content #content .ui-multiselect-menu label.ui-state-active,
#content .ui-multiselect-menu li label.ui-state-active {
  background: #8c939b;
  color: white;
  border: solid 1px #f0f7ff;
}
#content #content .ui-multiselect-menu label.ui-state-active:before,
#content .ui-multiselect-menu li label.ui-state-active:before {
  content: '✓ ';
}
#content .ui-widget-overlay {
  background: #000;
  opacity: 0;
  filter: alpha(opacity=0);
}
#content .ui-widget-overlay.grey {
  background: #000;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#content .ui-widget-overlay.newsItem {
  background: #000;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#content .ui-widget-shadow {
  margin: -8px 0 0 -8px;
  padding: 8px;
  background: #aaaaaa url(/rsrc/css/ui-lightness/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  opacity: 0.3;
  filter: alpha(opacity=30);
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
#content .ui-dialog.fancyDialog {
  position: absolute !important;
  top: calc(50vh - 210px) !important;
  left: calc(50vw - 210px) !important;
}
#content .ui-dialog.fancyDialog.fancyDialogMedium {
  margin-left: -315px !important;
  background: #fff;
}
#content .ui-dialog.fancyDialog.fancyDialogMedium .ui-widget-content {
  background: #fff;
}
#content .ui-dialog.fancyDialog.fancyDialogLarge {
  margin-left: -504px !important;
  background: #fff;
}
#content .ui-dialog.fancyDialog.fancyDialogLarge .ui-widget-content {
  background: #fff;
}
#content .ui-dialog.fancyDialog.newsItem {
  margin-left: -515px !important;
  margin-top: -150px !important;
  display: block;
}
#content .ui-dialog.fancyDialog.photo {
  background: #fff;
  padding: 0;
  margin: 0;
}
#content .ui-dialog.fancyDialog.photo .gravatarDialog {
  padding: 0;
  margin: 0;
}
#content .ui-dialog.fancyDialog.photo .gravatarDialog img {
  border-radius: 5px;
  border: 0;
  vertical-align: -3px;
}
#content .ui-dialog.fancyDialog.photo .ui-dialog-titlebar .ui-dialog-titlebar-close {
  outline: none;
  background-position-y: -1px;
}
#content .ui-dialog .ui-dialog-titlebar {
  border: 0;
  padding: 0;
  background: none;
}
#content .ui-dialog .ui-dialog-titlebar .ui-dialog-title {
  display: none;
}
#content .ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close .ui-icon {
  display: none;
}
#content .ui-dialog.fancyDialog .ui-dialog-titlebar .ui-dialog-titlebar-close {
  border: 0;
  padding: 0;
  position: absolute;
  top: -12px;
  right: -21px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1004;
  background: url(/rsrc/Google_Fonts_Icons/close-black.svg) no-repeat center;
  text-indent: 36px;
  overflow: hidden;
  background-color: white;
  border-radius: 20px;
}
/*# sourceMappingURL=jquery-ui-dcpf.css.map */
.Stack {
  display: block;
  position: absolute;
  top: 32px;
  left: 0;
  z-index: 5;
  margin: 0;
  padding: 0;
  width: 100%;
  background: #fff;
  border-radius: 0 12px 0 0;
  -webkit-border-radius: 0 12px 0 0;
}
.Stack .loader {
  position: absolute;
  width: 100%;
  line-height: 84px;
  top: 0px;
  left: 0;
  margin: 0;
  padding: 0;
  background: #F5F5F5 url('/rsrc/img/vrest-loader-64x64.gif') no-repeat center 40px;
  height: 110px;
  display: block;
  z-index: 6;
  border-radius: 12px;
}
.Stack .Card {
  z-index: 5;
  position: absolute;
  width: 100%;
  margin: 0;
}
.Stack .Card .content {
  padding: 12px;
  margin: 0 0 0 0;
  border: 10px solid #DCDCDC;
  background: #F5F5F5;
  border-radius: 0 12px 0 0;
  -webkit-border-radius: 0 12px 0 0;
}
.Stack .Card .content .CardIframe {
  width: 100%;
}
.Stack .Card .closeButton {
  display: block;
  position: absolute;
  cursor: pointer;
  right: 6px;
  top: 5px;
  width: 20px;
  height: 20px;
  border: solid 2px #fff;
  font-size: 15px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  background: #333;
  -webkit-box-shadow: 1px 1px 3px 0 #666;
  box-shadow: 1px 1px 3px 0 #666;
}

/********( CSS Index )*********************************************************/
/*
	0. CSS Introduction
	1. General Reset
	2. Body
	3. Links
		3.1. highlite off-site links
	4. Text Elements
	5. Lists
	6. Tables

	EOF
 */
/********( CSS Introduction )**************************************************/
/*
	This document contains a foundation for all the HTML elements. It resets
	attributes that different browsers have different defaults for. It also has
	some font normalization and adds some base styles.

    Using a combination of Eric Meyers Reset, the YUI CSS Modules and a healthy
    dose of plain old common sense

    http://meyerweb.com/eric/tools/css/reset/
    http://developer.yahoo.com/yui/base/
    http://developer.yahoo.com/yui/fonts/
    http://developer.yahoo.com/yui/reset/
    http://en.wikipedia.org/wiki/Common_Sense_(pamphlet)

@TODO: Check out http://html5boilerplate.com/ for even more advanced reset.

*/
/********( General Reset )*************************************************************/
/*Being specific is a lot less expensive than targetting everything using a star "*" */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: initial;
  white-space: normal;
}
/********( Body )**************************************************************/
html,
body {
  height: 100%;
  width: 100%;
}
body {
  line-height: 1;
  /**
     * Percents could work for IE, but for backCompat purposes, we are using keywords.
     * x-small is for IE6/7 quirks mode.
    */
  font-size: 13px;
  line-height: 1.231em;
  /* position: relative; /* fix for the IE6 resize bug (position: relative becomes fixed) */
  position: relative;
}
big {
  font-size: 1.2em;
  font-weight: bold;
}
em {
  font-style: oblique;
}
strong {
  font-weight: bold;
}
h1 {
  color: #454558;
  margin: 0 0 15px;
}
h2 {
  color: #454558;
  margin: 15px 0 5px;
}
h3 {
  color: #454558;
  margin: 15px 0;
}
h4 {
  color: #454558;
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}
button,
.button {
  background-color: #EFEFEF;
}
a {
  color: #197eaa;
}
/********( Pseudo Classes )****************************************************/
/* remember to define focus styles! */
:focus {
  outline: 0px dotted;
}
.dcpf:focus {
  outline: 0px dotted;
}
/********( Links )*************************************************************/
a {
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: underline;
}
a.no-link {
  color: #454558 !important;
  cursor: text;
  text-decoration: none;
}
/********( highlite off-site links )***************************************/
/*a[target="_blank"]:before,*/
/*a[target="new"]:before {*/
/*margin:0 5px 0 0;*/
/*padding:1px;*/
/*outline:1px solid #333;*/
/*color:#333;*/
/*background:#ff9;*/
/*font:12px "Zapf Dingbats";*/
/*content: "\279C";*/
/*}*/
/********( Text Elements )*****************************************************/
p {
  margin-bottom: 1em;
}
blockquote {
  margin: 1em;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
/* Bump up IE to get to 13px equivalent for these fixed-width elements */
pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 100%;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}
code {
  white-space: pre;
}
strong {
  /*bringing boldness back to headers and the strong element*/
  font-weight: bold;
}
abbr,
acronym {
  /*indicating to users that more info is available */
  border-bottom: 1px dotted #000;
  cursor: help;
}
em {
  /*bringing italics back to the em element*/
  font-style: italic;
}
/********( Lists )*************************************************************/
ol,
ul {
  list-style: none;
}
ol,
ul {
  /*bringing lists on to the page with breathing room */
  margin: 1em;
  margin-left: 2em;
}
dl {
  /*bringing lists on to the page with breathing room */
  margin: 1em 0;
}
ol li {
  /*giving OL's LIs generated numbers*/
  list-style: decimal outside;
}
ul li {
  /*giving UL's LIs generated disc markers*/
  list-style: disc outside;
  white-space: normal;
  word-wrap: break-word;
}
ul.no-bullets li {
  list-style: none;
}
dl dd {
  margin-left: 1em;
  font-style: italic;
}
.ie6 dl dd,
.ie7 dl dd {
  margin-left: 0;
}
.ie6 dl dt,
.ie7 dl dt {
  margin-right: 1em;
}
/********( Tables )************************************************************/
/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
  font: 100%;
  margin-bottom: 1em;
}
th,
td {
  /*borders and padding to make the table readable*/
  /* border:1px solid #000; */
  padding: 0.5em;
}
th {
  /*distinguishing table headers from data cells*/
  font-weight: bold;
  /* text-align:center; */
  text-align: left;
}
caption {
  /*coordinated marking to match cell's padding*/
  margin-bottom: 0.5em;
  /*centered so it doesn't blend in to other content*/
  text-align: center;
}
small {
  font-size: 0.85em;
  color: gray;
}
::selection {
  /* Safari and Opera */
  background-color: #A8C3D4;
  color: #FFF;
}
*::-moz-selection {
  background-color: #A8C3D4;
  color: #FFF;
}
/********( IE fixes )***********************************************************/
.ie6 body,
.ie7 body {
  font-size: small;
  font: x-small;
}
/* Bump up IE to get to 13px equivalent for these fixed-width elements */
.ie6 pre,
.ie6 code,
.ie6 kbd,
.ie6 samp,
.ie6 tt .ie7 pre,
.ie7 code,
.ie7 kbd,
.ie7 samp,
.ie7 tt {
  font-size: 108%;
}
/********( EOF )***************************************************************/
/*# sourceMappingURL=base-elements.css.map */
#tabs,
#contentWrapper {
  margin: 0 auto;
}
#header {
  z-index: 10;
}
#sub-header {
  z-index: 9;
}
#footer {
  z-index: 0;
}
#contentWrapper {
  z-index: 1;
  /* To force elements with a higher z-index in the content to not show over the header*/
}
html {
  white-space: nowrap;
}
html.dcpf body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #eceaf6;
  white-space: normal;
}
html.dcpf.NoThemeTemplate body {
  background-image: none;
  background-color: #fefefe;
  background-repeat: repeat-x;
}
#header {
  background: rgba(0, 0, 0, 0);
  height: 80px;
  position: relative;
}
#header .logo-header {
  display: flex;
  align-items: center;
}
#header .logo-header #logo {
  background: url("/rsrc/img/logo-vrest-2025.png") transparent 0 no-repeat;
  z-index: 5;
  display: flex;
}
#header .logo-header #logo a {
  height: 34px;
  width: 140px;
}
#header .logo-header #slogan {
  width: 100%;
  margin-left: 10px;
}
#header #sessionTools {
  position: absolute;
  top: 0;
  margin: 0;
  right: 4%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header #sessionTools img {
  width: 35px;
}
#header #sessionTools li {
  margin: 0 0 0 20px;
  color: #454558;
  font-size: 10px;
  line-height: 20px;
}
#header #sessionTools li a {
  color: #454558;
  /* IE does not support inherit */
}
#header #sessionTools li a.myProfile {
  font-weight: bold;
}
#header #sessionTools li a .notificationsCount {
  display: none;
  font-size: 10px;
  font-weight: bold;
  position: absolute;
  top: -5px;
  left: 15px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  line-height: 19px;
  background-color: #ba1e21;
  color: #ffffff;
  text-align: center;
}
#header #sessionTools li a.hasUnreadNotifications .notificationsCount {
  display: inline;
}
#header #sessionTools li button {
  border: 0 none;
  color: #454558;
  cursor: pointer;
  padding: 0;
  background: none;
  font-size: 10px;
  height: 14px;
  line-height: 14px;
  min-height: 10px;
  behavior: none;
}
#header #sessionTools li button:hover {
  text-decoration: underline;
}
#header #tabs {
  text-transform: lowercase;
  width: 74%;
  margin: 0;
  height: 40px;
  left: 25%;
  position: relative;
  z-index: 100;
}
#header #tabs > ul > li {
  color: #fff;
}
#header #tabs > ul > li a {
  font-size: 13px;
  font-weight: initial;
  color: #000000;
  /* IE does not support inherit */
  line-height: 15px;
  text-decoration: none;
  vertical-align: bottom;
}
#header #tabs > ul > li a:hover {
  z-index: 11;
}
#header #tabs > ul .selected > a,
#header #tabs > ul .selected > a:hover,
#header #tabs > ul .sf-breadcrumb > a,
#header #tabs > ul .sf-breadcrumb > a:hover,
#header #tabs > ul .sfHover > a,
#header #tabs > ul li > a:hover {
  text-decoration: underline;
  text-decoration-color: #e8a33b;
  text-decoration-thickness: 2px;
}
#header #tabs .disabled a,
#header #tabs .disabled a:hover {
  background-position: -1px -210px;
}
#header #tabs .selected,
#header #tabs .selected:hover {
  z-index: 10;
}
#header #tabs .no-tab,
#header #tabs .no-tab:hover {
  background: none no-repeat scroll 0 0 transparent;
  border: 0px none transparent;
}
#header #tabs .no-tab a,
#header #tabs .no-tab:hover a {
  line-height: 28px;
  color: #e3e3e3;
  font-weight: normal;
}
#header #tabs .no-tab a:hover,
#header #tabs .no-tab:hover a:hover {
  color: #007bd2;
}
#header #tabs ul li {
  list-style-type: none;
}
#header #tabs.madeSticky {
  position: fixed;
  top: 0px;
}
#header #dividerBar {
  height: 41px;
  position: relative;
  width: 100%;
  z-index: 90;
  margin-top: -1px;
}
#header #dividerBar #utilityBox {
  text-align: right;
  margin: 0 auto;
  width: 1102px;
}
#header #dividerBar.madeSticky {
  position: fixed;
  top: 41px;
}
#sub-header {
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
  background-color: #fafcff;
  height: 80px;
  position: relative;
}
#wrapper {
  height: 100%;
}
#wrapper #header {
  flex: 0 0 auto;
}
#wrapper #contentWrapper {
  display: flex;
  flex-flow: column;
  flex: 1 0 auto;
}
#wrapper #footer {
  flex: 0 0 46px;
  width: 100%;
}
#contentWrapper {
  position: relative;
  margin-top: -260px;
}
#contentWrapper #workArea {
  float: left;
  margin-top: 260px;
  position: relative;
  padding: 0 0 0;
  border-top: 0;
  border-radius: 0 0 5px 5px;
}
#contentWrapper #workArea .FavoritesUtility {
  position: absolute;
  right: 10px;
  line-height: 34px;
  z-index: 18;
  padding-top: 5px;
  /* Hover state */
  /* Active state */
  /* No CSS3 support */
}
#contentWrapper #workArea .FavoritesUtility .favoChooser {
  /* Size and position */
  position: relative;
  /* Enable absolute positionning for children and pseudo elements */
  padding: 0 5px;
  margin: 0 0 0 28px;
  /* Styles */
  background: #f1f1f1;
  color: #fff;
  outline: none;
  cursor: pointer;
  /* Font settings */
  font-size: 11px;
  top: -29px;
  z-index: 2;
  width: 110px;
  line-height: 22px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  border: 1px solid #e3e3e3;
}
#contentWrapper #workArea .FavoritesUtility .favoChooser:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -6px;
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent #fff;
}
#contentWrapper #workArea .FavoritesUtility .favoChooser ul.dropdown {
  /* Size & position */
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  /* Styles */
  background: #fff;
  list-style: none;
  font-weight: normal;
  /* Cancels previous font-weight: bold; */
  /* Hiding */
  opacity: 0;
  pointer-events: none;
  padding: 0;
  margin: 2px 0;
  line-height: 16px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  border: 1px solid #ccc;
  width: 300px;
  margin-left: -181px;
  max-height: 500px;
  overflow-y: auto;
  display: none;
}
#contentWrapper #workArea .FavoritesUtility .favoChooser ul.dropdown li {
  list-style: none;
}
#contentWrapper #workArea .FavoritesUtility .favoChooser span {
  display: block;
  width: 90px;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}
#contentWrapper #workArea .FavoritesUtility .favoChooser .dropdown li a {
  display: block;
  text-decoration: none;
  color: #9e9e9e;
  padding: 10px 20px;
}
#contentWrapper #workArea .FavoritesUtility .favoChooser .dropdown li.favoAdmin a {
  color: #e3e3e3;
}
#contentWrapper #workArea .FavoritesUtility .favoChooser .dropdown li:hover a {
  background: #f3f8f8;
}
#contentWrapper #workArea .FavoritesUtility .favoChooser.active .dropdown {
  opacity: 1;
  pointer-events: auto;
  display: block;
}
#contentWrapper #workArea .FavoritesUtility .favoChooser.active:after {
  border-color: #f1f1f1 transparent;
  border-width: 6px 6px 0 6px;
  margin-top: -3px;
}
#contentWrapper #workArea .FavoritesUtility .favoChooser.active {
  background: #f1f1f1;
}
#contentWrapper #workArea .FavoritesUtility .no-opacity .favoChooser .dropdown,
#contentWrapper #workArea .FavoritesUtility .no-pointerevents .favoChooser .dropdown {
  display: none;
  opacity: 1;
  /* If opacity support but no pointer-events support */
  pointer-events: auto;
  /* If pointer-events support but no pointer-events support */
}
#contentWrapper #workArea .FavoritesUtility .no-opacity .favoChooser.active .dropdown,
#contentWrapper #workArea .FavoritesUtility .no-pointerevents .favoChooser.active .dropdown {
  display: block;
}
#contentWrapper #workArea .FavoritesList {
  float: left;
  border-radius: 5px;
  border: 1px solid #ddd;
  width: 250px;
  background: transparent url("/rsrc/img/opacity50.png");
  margin: 20px;
  padding: 0;
}
#contentWrapper #workArea .FavoritesList span {
  font-weight: bold;
  font-size: 13px;
  color: #666;
  margin: 10px 0;
  padding: 5px 10px;
  display: block;
}
#contentWrapper #workArea .FavoritesList ul {
  padding: 0;
  margin: 0;
}
#contentWrapper #workArea .FavoritesList ul li {
  margin: 0;
  list-style: none;
  border-top: 1px solid #eee;
}
#contentWrapper #workArea .FavoritesList ul li a {
  display: block;
  padding: 10px 10px;
  line-height: 20px;
  text-decoration: none;
}
#contentWrapper #workArea .FavoritesList ul li a:hover {
  background: #eff9fe;
}
#contentWrapper #workArea #pageTitle h1,
#contentWrapper #workArea #secondaryNavigation h1 {
  margin: 0 0 0 30px;
}
#contentWrapper #workArea #pageTitle .pageUtilities,
#contentWrapper #workArea #secondaryNavigation .pageUtilities {
  position: absolute;
  right: 5px;
  top: 8px;
  height: 20px;
}
#contentWrapper #workArea #pageTitle .pageUtilities .divider,
#contentWrapper #workArea #secondaryNavigation .pageUtilities .divider {
  float: right;
  margin: -5px 10px 0;
  background: #ccc;
  width: 1px;
  height: 25px;
  opacity: 0.25;
}
#contentWrapper #workArea #pageTitle .pageUtilities .Searchbox,
#contentWrapper #workArea #secondaryNavigation .pageUtilities .Searchbox {
  float: right;
  margin: -4px 0 0 0;
}
#contentWrapper #workArea #pageTitle .pageUtilities .Searchbox input,
#contentWrapper #workArea #secondaryNavigation .pageUtilities .Searchbox input {
  width: 94px;
}
#contentWrapper #workArea #pageTitle .pageUtilities #fullscreen-toggle,
#contentWrapper #workArea #secondaryNavigation .pageUtilities #fullscreen-toggle {
  height: 16px;
  width: 16px;
  float: right;
  margin-left: 10px;
}
#contentWrapper #workArea #pageTitle .pageUtilities #print-page,
#contentWrapper #workArea #secondaryNavigation .pageUtilities #print-page {
  height: 16px;
  position: absolute;
  right: 8px;
  top: 9px;
  width: 16px;
}
#contentWrapper #workArea #pageTitle .pageUtilities #export-to-pdf,
#contentWrapper #workArea #secondaryNavigation .pageUtilities #export-to-pdf {
  height: 16px;
  width: 16px;
  float: right;
  margin-left: 10px;
}
#contentWrapper #workArea #pageTitle .pageUtilities #export-to-pdf-form,
#contentWrapper #workArea #secondaryNavigation .pageUtilities #export-to-pdf-form {
  float: right;
  margin: 0;
  margin-left: 10px;
  height: 16px;
  width: 16px;
  padding: 0;
}
#contentWrapper #workArea #pageTitle .pageUtilities #export-to-pdf-button,
#contentWrapper #workArea #secondaryNavigation .pageUtilities #export-to-pdf-button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  height: auto;
  min-width: 0;
}
#contentWrapper #workArea #pageTitle .pageUtilities .FavoritesUtility,
#contentWrapper #workArea #secondaryNavigation .pageUtilities .FavoritesUtility {
  float: right;
  margin-left: 10px;
  height: 17px;
  width: 19px;
  overflow: hidden;
}
#contentWrapper #workArea #pageTitle .pageUtilities .FavoritesUtility h4,
#contentWrapper #workArea #secondaryNavigation .pageUtilities .FavoritesUtility h4 {
  background: url(/rsrc/img/layout/add-to-favorites.png) left top no-repeat;
  cursor: pointer;
  font-size: 50%;
  font-weight: normal;
  height: 17px;
  line-height: 80%;
  padding-left: 19px;
  text-align: center;
}
#contentWrapper #workArea #pageTitle .pageUtilities #favourites-link,
#contentWrapper #workArea #secondaryNavigation .pageUtilities #favourites-link {
  height: 16px;
  width: 19px;
  float: right;
  margin-left: 10px;
  background: url(/rsrc/img/layout/favorites.png) left top no-repeat;
}
#contentWrapper #workArea #pageTitle {
  background: url(/rsrc/img/base/base-bg-pageHeader-gradient.png) 0 0 repeat-x #d7e2e8;
  line-height: 30px;
}
#contentWrapper #workArea #print-page {
  background: url("/rsrc/img/icon/fugue/printer.png") no-repeat scroll 0 0 transparent;
  cursor: pointer;
}
#contentWrapper #workArea #secondaryNavigation {
  background-color: #fff;
}
#contentWrapper #workArea #secondaryNavigation ul li {
  line-height: 1.4em;
  font-size: 0.8em;
}
#contentWrapper #workArea #secondaryNavigation ul li a {
  padding: 0.5em 0.65em;
}
#contentWrapper #workArea #secondaryNavigation.tab-menu {
  border: 0;
  background: #e3e3e3 url(/rsrc/css/ui-lightness/images/ui-bg_inset-soft_75_267fa7_1x100.png) 50% -30px repeat-x;
  /*Taken from .ui-widget-header*/
  font-size: 1.2em;
  margin: 0.3em 0.3em 0 0.3em;
  min-height: 28px;
  padding: 0.3em 0 0;
  border: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3 !important;
  margin-bottom: 16px;
  list-style-type: none;
}
#contentWrapper #workArea #secondaryNavigation.tab-menu h1 {
  color: #fff;
  text-indent: 1em;
  font-size: 0.8em;
  padding-top: 0.3em;
  line-height: 1em;
}
#contentWrapper #workArea #secondaryNavigation.tab-menu ul {
  background: none;
  border-right: none;
  border-top: none;
}
#contentWrapper #workArea #secondaryNavigation.tab-menu #fullscreen-toggle {
  background-image: url("/rsrc/img/icon/arrow-out-light.png");
  cursor: pointer;
}
#contentWrapper #workArea .fullscreen-content #secondaryNavigation.tab-menu #fullscreen-toggle {
  background-image: url("/rsrc/img/icon/arrow-in-light.png");
  cursor: pointer;
}
#contentWrapper #workArea .tab-menu-outer {
  margin: 5px 0 -17px 0 !important;
  border: 0 !important;
  padding: 0 0 0 0.3em !important;
  background: transparent !important;
  z-index: 1;
}
#contentWrapper #workArea .tab-menu-outer ul {
  border: 0;
  background: transparent !important;
  margin: 0;
  padding: 0.2em 0.2em 0;
}
#contentWrapper #workArea .tab-menu-outer ul li {
  list-style-type: none;
  border-bottom: 0 none;
  float: left;
  list-style: none outside none;
  margin: 0 0.2em 1px 0;
  padding: 0;
  position: relative;
  top: 1px;
  white-space: nowrap;
}
#contentWrapper #workArea .tab-menu-outer ul li a {
  padding: 0.5em 0.75em !important;
  float: left;
  color: #555555;
  margin: 0;
}
#contentWrapper #workArea .tab-menu-outer ul li .toggle-button {
  display: none;
}
#contentWrapper #workArea .tab-menu-outer ul li.notselected {
  border: 1px solid #bbb !important;
  border-bottom: 1px solid #ccc !important;
  background: #ddd !important;
}
#contentWrapper #workArea .tab-menu-outer ul li.notselected:hover {
  border: 1px solid #e3e3e3 !important;
  border-bottom: 1px solid #ccc !important;
}
#contentWrapper #workArea .tab-menu-outer ul li.selected {
  background: #f4f4f4;
  border-bottom: 1px solid #f4f4f4 !important;
}
#contentWrapper #workArea .tab-menu-outer ul li.selected:hover {
  border: 1px solid #cecece !important;
  border-bottom: 1px solid #f4f4f4 !important;
  cursor: default;
}
#contentWrapper #workArea #content {
  position: relative;
  line-height: 1.3em;
  color: #454558;
  border-radius: 0 12px 0 0;
  /* Opera 10.5, IE9, Saf5, Chrome, FF4, iOS 4, Android 2.1+ */
  padding: 1em 10px 21px;
  border-radius: 10px 10px 10px 10px;
}
#contentWrapper #workArea #content fieldset p {
  margin: 0 0 0.5em 0.5em;
}
#contentWrapper #workArea #content .contentBox {
  min-height: 18px;
}
#contentWrapper #workArea #content .IcsConceptRejected {
  color: #f00;
}
#contentWrapper #workArea #content #accordion,
#contentWrapper #workArea #content .Accordion {
  margin: 0 0 2em;
  width: 100%;
}
#contentWrapper #workArea #content .TabHeader {
  position: relative;
  top: -24px;
  padding: 0px 10px;
  margin: 10px -10px 0;
  background: #fff;
}
#contentWrapper #workArea #content .TabContainer {
  position: relative;
  top: -24px;
  border: 0;
  padding: 13px 0 0 0;
  padding: 0px;
  margin: 0 -10px -45px;
  border-radius: 10px 10px 10px 10px;
}
#contentWrapper #workArea #content .TabContainer ul.TabButtons {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: 40px 10px;
  list-style-type: none;
  padding: 19px 6px 0;
  height: 23px;
}
#contentWrapper #workArea #content .TabContainer ul.TabButtons li {
  display: block;
  float: left;
  list-style-type: none;
  border: 1px solid rgba(48, 81, 110, 0.04);
  border-radius: 4px 4px 0 0;
  margin: -8px 5px 0 0;
}
#contentWrapper #workArea #content .TabContainer ul.TabButtons li a {
  display: block;
  float: left;
  padding: 0px;
  font-size: 22px;
  color: #1a1a2c;
  margin: 0px 0px 0px 15px;
}
#contentWrapper #workArea #content .TabContainer .ui-tabs-nav {
  padding: 10px 6px 0 !important;
  border: 0;
  border-radius: 0;
  line-height: 16px;
  margin: 0;
  height: 32px !important;
}
#contentWrapper #workArea #content .TabContainer .ui-tabs-nav li {
  margin: 0 5px 0 0 !important;
}
#contentWrapper #workArea #content .TabContainer .ui-tabs-nav .ui-state-default {
  border: none;
  margin-right: 5px;
}
#contentWrapper #workArea #content .TabContainer .ui-tabs-nav .ui-state-default.ui-state-hover {
  text-decoration: underline;
  text-decoration-color: #e8a33b;
  text-decoration-thickness: 3px;
  text-underline-offset: 9px;
}
#contentWrapper #workArea #content .TabContainer .ui-tabs-nav .ui-tabs-active {
  border-color: rgba(48, 81, 110, 0.04);
}
#contentWrapper #workArea #content .TabContainer .ui-tabs-nav .ui-tabs-active.ui-state-hover {
  text-decoration: underline;
  text-decoration-color: #e8a33b;
  text-decoration-thickness: 2px;
}
#contentWrapper #workArea #content .unacceptedOwnerLicense .TabContainer {
  top: -71px;
  padding: 50px 0 0 0;
}
#contentWrapper #workArea #content .unacceptedOwnerLicense .InfoText {
  position: relative;
  z-index: 11;
  top: -10px;
}
#contentWrapper #workArea #content .unacceptedOwnerLicense .Overlay {
  top: 94px !important;
}
#contentWrapper #workArea #content .NoThemeTemplate #workArea #content .TabHeader {
  position: relative;
  top: -24px;
  padding: 0px 10px;
  margin: 10px -10px 0;
  background: #fff;
}
#contentWrapper #workArea #content .NoThemeTemplate #workArea #content .TabContainer {
  position: relative;
  top: -24px;
  border: 0;
  padding: 13px 0 0 0;
  padding: 0px;
  margin: 0 -10px -45px;
  border-radius: 10px 10px 10px 10px;
}
#contentWrapper #workArea #content .NoThemeTemplate #workArea #content .TabContainer ul.TabButtons {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: 40px 10px;
  list-style-type: none;
  padding: 19px 6px 0;
  height: 23px;
}
#contentWrapper #workArea #content .NoThemeTemplate #workArea #content .TabContainer ul.TabButtons li {
  display: block;
  float: left;
  list-style-type: none;
  border: 1px solid rgba(48, 81, 110, 0.04);
  border-radius: 4px 4px 0 0;
  margin: -8px 5px 0 0;
}
#contentWrapper #workArea #content .NoThemeTemplate #workArea #content .TabContainer ul.TabButtons li a {
  display: block;
  float: left;
  padding: 0px;
  font-size: 22px;
  color: #1a1a2c;
  margin: 0px 0px 0px 15px;
}
#contentWrapper #workArea #content .NoThemeTemplate #workArea #content .TabContainer .ui-tabs-nav {
  padding: 10px 6px 0 !important;
  border: 0;
  border-radius: 0;
  line-height: 16px;
  margin: 0;
  height: 32px !important;
}
#contentWrapper #workArea #content .NoThemeTemplate #workArea #content .TabContainer .ui-tabs-nav li {
  margin: 0 5px 0 0 !important;
}
#contentWrapper #workArea #content .NoThemeTemplate #workArea #content .TabContainer .ui-tabs-nav .ui-state-default {
  border: none;
  margin-right: 5px;
}
#contentWrapper #workArea #content .NoThemeTemplate #workArea #content .TabContainer .ui-tabs-nav .ui-state-default.ui-state-hover {
  text-decoration: underline;
  text-decoration-color: #e8a33b;
  text-decoration-thickness: 3px;
  text-underline-offset: 9px;
}
#contentWrapper #workArea #content .NoThemeTemplate #workArea #content .TabContainer .ui-tabs-nav .ui-tabs-active {
  border-color: rgba(48, 81, 110, 0.04);
}
#contentWrapper #workArea #content .NoThemeTemplate #workArea #content .TabContainer .ui-tabs-nav .ui-tabs-active.ui-state-hover {
  text-decoration: underline;
  text-decoration-color: #e8a33b;
  text-decoration-thickness: 2px;
}
#contentWrapper #workArea #content .NoThemeTemplate #workArea #content .unacceptedOwnerLicense .TabContainer {
  top: -71px;
  padding: 50px 0 0 0;
}
#contentWrapper #workArea #content .NoThemeTemplate #workArea #content .unacceptedOwnerLicense .InfoText {
  position: relative;
  z-index: 11;
  top: -10px;
}
#contentWrapper #workArea #content .NoThemeTemplate #workArea #content .unacceptedOwnerLicense .Overlay {
  top: 94px !important;
}
#contentWrapper #workArea #content .NoThemeTemplate #workArea #content .TabContainer {
  top: 0px;
  margin: 0 0 0 0;
}
#contentWrapper #workArea #content .NoThemeTemplate #workArea #content .TabContainer .ui-tabs-nav {
  padding: 0 !important;
}
#contentWrapper #workArea #content .NoThemeTemplate #workArea #content .TabContainer .Tab {
  border: 1px solid #ffffff;
}
@media (max-width: 1118px) {
  #contentWrapper #workArea #content .TabContainer ul.TabButtons li a {
    font-size: 16px;
    margin: 0 0 0 5px;
  }
}
@media (min-width: 1000px) and (max-width: 1158px) {
  #contentWrapper #workArea #content .TabContainer ul.TabButtons li a {
    font-size: 19px;
    margin: 0 0 0 5px;
  }
}
#contentWrapper #workArea #content table .layout {
  margin: 0 !important;
  padding: 0 !important;
  cell-spacing: 0 !important;
  border-collapse: collapse !important;
}
#contentWrapper #workArea #content table .layout tr {
  margin: 0 !important;
  padding: 0 !important;
}
#contentWrapper #workArea #content table .layout tr > td {
  vertical-align: top !important;
  margin: 0 !important;
  padding: 0 !important;
}
#contentWrapper #workArea #content .footer {
  border-bottom: 1px solid #dcdcdc;
}
@media screen and (min-width: 1280px) {
  .dcpf #header #logo {
    margin: 0;
    left: 3%;
  }
  .dcpf #header #slogan {
    width: 100%;
    font-size: xx-large;
  }
  .dcpf #header #dividerBar #utilityBox {
    width: 94%;
  }
  .dcpf #tabs,
  .dcpf #contentWrapper {
    width: 94%;
  }
  .dcpf #footerinner {
    width: 94%;
  }
  .dcpf #tabs > .sf-menu {
    left: 3%;
    margin: 0;
  }
  .dcpf .sf-navbar > li > ul {
    width: 89%;
  }
  .dcpf #contentWrapper #workArea {
    width: 100%;
  }
  .dcpf .FormButtons {
    width: 100%;
    right: 0;
  }
  .dcpf .FormButtons.madeSticky {
    width: 93.9%;
    right: 3.1%;
  }
}
.ie6.dcpf #header #logo,
.ie7.dcpf #header #logo,
.ie8.dcpf #header #logo {
  margin: 0;
  left: 7%;
}
.ie6.dcpf #header #slogan,
.ie7.dcpf #header #slogan,
.ie8.dcpf #header #slogan {
  width: 94%;
  left: 7%;
}
.ie6.dcpf #header #sessionTools,
.ie7.dcpf #header #sessionTools,
.ie8.dcpf #header #sessionTools {
  margin: 0;
  right: 7%;
}
.ie6.dcpf #header #dividerBar #utilityBox,
.ie7.dcpf #header #dividerBar #utilityBox,
.ie8.dcpf #header #dividerBar #utilityBox {
  width: 94%;
}
.ie6.dcpf #tabs,
.ie7.dcpf #tabs,
.ie8.dcpf #tabs,
.ie6.dcpf #contentWrapper,
.ie7.dcpf #contentWrapper,
.ie8.dcpf #contentWrapper {
  width: 94%;
}
.ie6.dcpf #footer,
.ie7.dcpf #footer,
.ie8.dcpf #footer {
  width: 94%;
}
.ie6.dcpf #tabs > .sf-menu,
.ie7.dcpf #tabs > .sf-menu,
.ie8.dcpf #tabs > .sf-menu {
  left: 7%;
  margin: 0;
}
.ie6.dcpf .sf-navbar > li > ul,
.ie7.dcpf .sf-navbar > li > ul,
.ie8.dcpf .sf-navbar > li > ul {
  width: 89%;
}
.ie6.dcpf #contentWrapper #workArea,
.ie7.dcpf #contentWrapper #workArea,
.ie8.dcpf #contentWrapper #workArea {
  width: 100%;
}
.ie6.dcpf .FormButtons,
.ie7.dcpf .FormButtons,
.ie8.dcpf .FormButtons {
  width: 100%;
  right: 0;
}
.ie6.dcpf .FormButtons.madeSticky,
.ie7.dcpf .FormButtons.madeSticky,
.ie8.dcpf .FormButtons.madeSticky {
  width: 85.9%;
  right: 7.1%;
}
html.vrest_business #header {
  background-image: url("/rsrc/img/base/base-bg-body-gradient-vrest_business.png");
}
html.vrest_business #header #logo {
  background: url("/rsrc/img/logo-vrest-business.png") transparent 0 0 no-repeat;
}
html.vrest_business #header #slogan {
  color: #1b2661;
}
html.vrest_business #header #tabs {
  background-image: url("/rsrc/img/base/base-bg-body-gradient-vrest_business.png");
}
html.vrest_business #header #tabs > ul > li {
  color: #fff;
}
html.vrest_business #header #tabs > ul > li > a {
  background-image: url("/rsrc/img/sprite-tabs-vb.png");
  border-bottom: 0;
}
html.vrest_business #header #dividerBar {
  background-image: url("/rsrc/img/base/base-bg-body-gradient-vrest_business.png");
}
html.vrest_business #footer {
  border: 1px solid #263046;
  color: #fff;
  border-top: 0;
  border-bottom: 0;
  background: #263046;
  width: 94%;
}
html.vrest_business #footer .footer_support a,
html.vrest_business #footer .footer_support p {
  font-weight: normal;
  color: #fff;
}
html.vrest_business #footer #copyrightMessage,
html.vrest_business #footer .footerlinks {
  font-weight: normal;
}
html.vrest_business #footerInner {
  background: #535e86;
  border: 0;
  font-weight: normal;
}
html.vrest_business .footer_poweredby_support {
  width: 405px;
}
html.vrest_business .footer_poweredby_support .footer_poweredby {
  background: url("/rsrc/img/vrest_logo_footer_business.png") no-repeat scroll 0 0 transparent;
  width: 196px;
  display: none;
}
html.vrest_business #copyrightMessage,
html.vrest_business .footerlinks {
  float: right;
  width: 59%;
}
html.vrest_business body {
  background-image: url("/rsrc/img/base/base-bg-body-gradient-vrest_business.png");
  background-color: #1b2661;
  background-color: #fff;
}
html.vrest_business #contentWrapper #workArea #content {
  border-right: 0;
  padding-bottom: 0;
}
html.vrest_business .dashboardblock {
  border: 1px solid #eee;
}
html.vrest_business h1 {
  color: #1b2661;
}
html.vrest_business h2 {
  color: #ef404a;
}
html.vrest_business h3 {
  color: #ef404a;
}
html.vrest_business h4 {
  color: #ef404a;
}
html.vrest_business a {
  color: #1b2661;
}
html.LandingPageTemplate body {
  background-position: 0 -4px;
}
html.LandingPageTemplate #header {
  background-position: 0 -4px;
  height: 92px;
}
html.LandingPageTemplate #header #logo {
  background: transparent none;
  font-size: 32px;
  line-height: 70px;
  font-weight: bold;
  color: #686868;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
}
html.LandingPageTemplate #contentWrapper {
  margin-top: -180px;
}
html.LandingPageTemplate #contentWrapper #workArea {
  margin-top: 180px;
}
html.LandingPageTemplate #contentWrapper #workArea #content {
  padding-bottom: 0;
  margin-bottom: 0;
}
html.LandingPageTemplate #contentWrapper #workArea #content .dashboardblock {
  min-height: 250px;
  color: #777;
}
html.SimplifiedDefaultThemeTemplate body {
  background-position: 0 -4px;
}
html.SimplifiedDefaultThemeTemplate #header {
  background: transparent 0 0 repeat-x;
  background-position: 0 -4px;
  height: 92px;
}
html.SimplifiedDefaultThemeTemplate #header #logo {
  background: url("/rsrc/img/logo-vrest-100x60.png") transparent 0 3px no-repeat;
}
html.SimplifiedDefaultThemeTemplate #header #logo a {
  height: 34px;
}
html.SimplifiedDefaultThemeTemplate #header #slogan {
  top: 35px;
}
html.SimplifiedDefaultThemeTemplate #header #dividerBar {
  height: 23px;
  position: relative;
  width: 100%;
  z-index: 90;
  background: #007bd2 0 -73px repeat-x;
  margin-top: 0;
}
html.SimplifiedDefaultThemeTemplate #header #dividerBar .dividerMessage {
  margin: 0 auto;
  width: 100%;
  line-height: 23px;
  color: #f5f5f5;
  text-align: center;
}
html.SimplifiedDefaultThemeTemplate #header #dividerBar .dividerMessage a {
  color: #f5f5f5;
}
html.SimplifiedDefaultThemeTemplate #contentWrapper {
  margin-top: -180px;
  border-bottom: 0;
}
html.SimplifiedDefaultThemeTemplate #contentWrapper #workArea {
  margin-top: 180px;
}
html.SimplifiedDefaultThemeTemplate #contentWrapper #workArea #content {
  padding-bottom: 0;
  margin-bottom: 0;
}
html.SimplifiedDefaultThemeTemplate #contentWrapper #workArea #content .dashboardblock {
  min-height: 250px;
  color: #777;
}
html.SimplifiedDefaultThemeTemplate #footer {
  padding: 2px 0;
  background: #f5f5f5;
  margin-top: -12px;
  height: 75px;
}
.ie6 #print-page,
.ie7 #print-page {
  top: 16px !important;
}
.ie6 #export-to-pdf-form,
.ie7 #export-to-pdf-form {
  margin-top: -3px !important;
}
.ie6 #secondaryNavigation.tab-menu #fullscreen-toggle,
.ie7 #secondaryNavigation.tab-menu #fullscreen-toggle {
  top: 15px;
}
.ie6 #contentWrapper {
  background-image: url(/rsrc/img/base/base-bg-nav2-bottom-8.png);
}
.ie6 .DisclosureButton {
  border: none;
  /* IE6 doesn't support transparent */
}
.ie6 .FavoritesUtility,
.ie7 .FavoritesUtility,
.ie8 .FavoritesUtility,
.ie9 .FavoritesUtility {
  margin: 8px 0 0 0;
  width: 152px;
  text-align: right;
}
.ie6 .FavoritesUtility .favoChooser,
.ie7 .FavoritesUtility .favoChooser,
.ie8 .FavoritesUtility .favoChooser,
.ie9 .FavoritesUtility .favoChooser {
  display: none;
}
.ie6 .FavoritesUtility img,
.ie7 .FavoritesUtility img,
.ie8 .FavoritesUtility img,
.ie9 .FavoritesUtility img {
  float: left;
}
.ie6 .FavoritesUtility select,
.ie7 .FavoritesUtility select,
.ie8 .FavoritesUtility select,
.ie9 .FavoritesUtility select {
  display: inline !important;
  float: right;
  margin: 0 0 0 27px;
  top: -20px;
  position: relative;
  width: 120px;
}
.zebra {
  background-color: #e9e9e9;
}
.zebra > * {
  background-color: #e9e9e9;
  padding: 0.25em 0.35em;
  white-space: nowrap;
  vertical-align: top;
  line-height: 22px;
}
.zebra > *:nth-child(odd) {
  background-color: #f6f6f6;
  border-top: solid 1px #dcdcdc;
  border-bottom: solid 1px #ffffff;
}
.intro_vrest_com.dcpf #header #tabs > ul > li > a,
.intro2_vrest_com.dcpf #header #tabs > ul > li > a {
  background-color: #e6b1b1;
}
.intro_vrest_com.dcpf #header #tabs > ul .selected > a,
.intro2_vrest_com.dcpf #header #tabs > ul .selected > a,
.intro_vrest_com.dcpf #header #tabs > ul .selected > a:hover,
.intro2_vrest_com.dcpf #header #tabs > ul .selected > a:hover,
.intro_vrest_com.dcpf #header #tabs > ul .sf-breadcrumb > a,
.intro2_vrest_com.dcpf #header #tabs > ul .sf-breadcrumb > a,
.intro_vrest_com.dcpf #header #tabs > ul .sf-breadcrumb > a:hover,
.intro2_vrest_com.dcpf #header #tabs > ul .sf-breadcrumb > a:hover,
.intro_vrest_com.dcpf #header #tabs > ul .sfHover > a,
.intro2_vrest_com.dcpf #header #tabs > ul .sfHover > a,
.intro_vrest_com.dcpf #header #tabs > ul li > a:hover,
.intro2_vrest_com.dcpf #header #tabs > ul li > a:hover {
  background-color: #db8f8f;
}
.intro_vrest_com.dcpf #header #tabs .no-tab a,
.intro2_vrest_com.dcpf #header #tabs .no-tab a,
.intro_vrest_com.dcpf #header #tabs .no-tab:hover a,
.intro2_vrest_com.dcpf #header #tabs .no-tab:hover a {
  color: #e6b1b1;
}
.intro_vrest_com.dcpf #header #tabs .no-tab a:hover,
.intro2_vrest_com.dcpf #header #tabs .no-tab a:hover,
.intro_vrest_com.dcpf #header #tabs .no-tab:hover a:hover,
.intro2_vrest_com.dcpf #header #tabs .no-tab:hover a:hover {
  color: #db8f8f;
}
.intro_vrest_com.dcpf #header #dividerBar,
.intro2_vrest_com.dcpf #header #dividerBar {
  background: #db8f8f;
}
.acceptatie2_vrest_com.dcpf #header #tabs > ul > li > a,
.acceptatie_vrest_com.dcpf #header #tabs > ul > li > a,
.testservices_vrest_com.dcpf #header #tabs > ul > li > a {
  background-color: #ffd14d;
}
.acceptatie2_vrest_com.dcpf #header #tabs > ul .selected > a,
.acceptatie_vrest_com.dcpf #header #tabs > ul .selected > a,
.testservices_vrest_com.dcpf #header #tabs > ul .selected > a,
.acceptatie2_vrest_com.dcpf #header #tabs > ul .selected > a:hover,
.acceptatie_vrest_com.dcpf #header #tabs > ul .selected > a:hover,
.testservices_vrest_com.dcpf #header #tabs > ul .selected > a:hover,
.acceptatie2_vrest_com.dcpf #header #tabs > ul .sf-breadcrumb > a,
.acceptatie_vrest_com.dcpf #header #tabs > ul .sf-breadcrumb > a,
.testservices_vrest_com.dcpf #header #tabs > ul .sf-breadcrumb > a,
.acceptatie2_vrest_com.dcpf #header #tabs > ul .sf-breadcrumb > a:hover,
.acceptatie_vrest_com.dcpf #header #tabs > ul .sf-breadcrumb > a:hover,
.testservices_vrest_com.dcpf #header #tabs > ul .sf-breadcrumb > a:hover,
.acceptatie2_vrest_com.dcpf #header #tabs > ul .sfHover > a,
.acceptatie_vrest_com.dcpf #header #tabs > ul .sfHover > a,
.testservices_vrest_com.dcpf #header #tabs > ul .sfHover > a,
.acceptatie2_vrest_com.dcpf #header #tabs > ul li > a:hover,
.acceptatie_vrest_com.dcpf #header #tabs > ul li > a:hover,
.testservices_vrest_com.dcpf #header #tabs > ul li > a:hover {
  background-color: #ffbd00;
}
.acceptatie2_vrest_com.dcpf #header #tabs .no-tab a,
.acceptatie_vrest_com.dcpf #header #tabs .no-tab a,
.testservices_vrest_com.dcpf #header #tabs .no-tab a,
.acceptatie2_vrest_com.dcpf #header #tabs .no-tab:hover a,
.acceptatie_vrest_com.dcpf #header #tabs .no-tab:hover a,
.testservices_vrest_com.dcpf #header #tabs .no-tab:hover a {
  color: #ffd14d;
}
.acceptatie2_vrest_com.dcpf #header #tabs .no-tab a:hover,
.acceptatie_vrest_com.dcpf #header #tabs .no-tab a:hover,
.testservices_vrest_com.dcpf #header #tabs .no-tab a:hover,
.acceptatie2_vrest_com.dcpf #header #tabs .no-tab:hover a:hover,
.acceptatie_vrest_com.dcpf #header #tabs .no-tab:hover a:hover,
.testservices_vrest_com.dcpf #header #tabs .no-tab:hover a:hover {
  color: #ffbd00;
}
.acceptatie2_vrest_com.dcpf #header #dividerBar,
.acceptatie_vrest_com.dcpf #header #dividerBar,
.testservices_vrest_com.dcpf #header #dividerBar {
  background: #ffbd00;
}
.vrapp_vrest_com.dcpf #header #tabs > ul > li > a,
.test_vrest_com.dcpf #header #tabs > ul > li > a {
  background-color: #aad2b3;
}
.vrapp_vrest_com.dcpf #header #tabs > ul .selected > a,
.test_vrest_com.dcpf #header #tabs > ul .selected > a,
.vrapp_vrest_com.dcpf #header #tabs > ul .selected > a:hover,
.test_vrest_com.dcpf #header #tabs > ul .selected > a:hover,
.vrapp_vrest_com.dcpf #header #tabs > ul .sf-breadcrumb > a,
.test_vrest_com.dcpf #header #tabs > ul .sf-breadcrumb > a,
.vrapp_vrest_com.dcpf #header #tabs > ul .sf-breadcrumb > a:hover,
.test_vrest_com.dcpf #header #tabs > ul .sf-breadcrumb > a:hover,
.vrapp_vrest_com.dcpf #header #tabs > ul .sfHover > a,
.test_vrest_com.dcpf #header #tabs > ul .sfHover > a,
.vrapp_vrest_com.dcpf #header #tabs > ul li > a:hover,
.test_vrest_com.dcpf #header #tabs > ul li > a:hover {
  background-color: #86be92;
}
.vrapp_vrest_com.dcpf #header #tabs .no-tab a,
.test_vrest_com.dcpf #header #tabs .no-tab a,
.vrapp_vrest_com.dcpf #header #tabs .no-tab:hover a,
.test_vrest_com.dcpf #header #tabs .no-tab:hover a {
  color: #aad2b3;
}
.vrapp_vrest_com.dcpf #header #tabs .no-tab a:hover,
.test_vrest_com.dcpf #header #tabs .no-tab a:hover,
.vrapp_vrest_com.dcpf #header #tabs .no-tab:hover a:hover,
.test_vrest_com.dcpf #header #tabs .no-tab:hover a:hover {
  color: #86be92;
}
.vrapp_vrest_com.dcpf #header #dividerBar,
.test_vrest_com.dcpf #header #dividerBar {
  background: #86be92;
}
.dcpf_robin_imac_local.dcpf #header #tabs > ul > li > a,
.dcpf_robin_hp_local.dcpf #header #tabs > ul > li > a,
.dcpf_thijs-macbook-pro_local.dcpf #header #tabs > ul > li > a,
.dcpf_jos_localhost.dcpf #header #tabs > ul > li > a,
.dcpf_erik_localhost.dcpf #header #tabs > ul > li > a,
.dcpf_thijs_vrest_local.dcpf #header #tabs > ul > li > a,
.dcpf_galina_local.dcpf #header #tabs > ul > li > a {
  background-color: #7c7c7c;
}
.dcpf_robin_imac_local.dcpf #header #tabs > ul .selected > a,
.dcpf_robin_hp_local.dcpf #header #tabs > ul .selected > a,
.dcpf_thijs-macbook-pro_local.dcpf #header #tabs > ul .selected > a,
.dcpf_jos_localhost.dcpf #header #tabs > ul .selected > a,
.dcpf_erik_localhost.dcpf #header #tabs > ul .selected > a,
.dcpf_thijs_vrest_local.dcpf #header #tabs > ul .selected > a,
.dcpf_galina_local.dcpf #header #tabs > ul .selected > a,
.dcpf_robin_imac_local.dcpf #header #tabs > ul .selected > a:hover,
.dcpf_robin_hp_local.dcpf #header #tabs > ul .selected > a:hover,
.dcpf_thijs-macbook-pro_local.dcpf #header #tabs > ul .selected > a:hover,
.dcpf_jos_localhost.dcpf #header #tabs > ul .selected > a:hover,
.dcpf_erik_localhost.dcpf #header #tabs > ul .selected > a:hover,
.dcpf_thijs_vrest_local.dcpf #header #tabs > ul .selected > a:hover,
.dcpf_galina_local.dcpf #header #tabs > ul .selected > a:hover,
.dcpf_robin_imac_local.dcpf #header #tabs > ul .sf-breadcrumb > a,
.dcpf_robin_hp_local.dcpf #header #tabs > ul .sf-breadcrumb > a,
.dcpf_thijs-macbook-pro_local.dcpf #header #tabs > ul .sf-breadcrumb > a,
.dcpf_jos_localhost.dcpf #header #tabs > ul .sf-breadcrumb > a,
.dcpf_erik_localhost.dcpf #header #tabs > ul .sf-breadcrumb > a,
.dcpf_thijs_vrest_local.dcpf #header #tabs > ul .sf-breadcrumb > a,
.dcpf_galina_local.dcpf #header #tabs > ul .sf-breadcrumb > a,
.dcpf_robin_imac_local.dcpf #header #tabs > ul .sf-breadcrumb > a:hover,
.dcpf_robin_hp_local.dcpf #header #tabs > ul .sf-breadcrumb > a:hover,
.dcpf_thijs-macbook-pro_local.dcpf #header #tabs > ul .sf-breadcrumb > a:hover,
.dcpf_jos_localhost.dcpf #header #tabs > ul .sf-breadcrumb > a:hover,
.dcpf_erik_localhost.dcpf #header #tabs > ul .sf-breadcrumb > a:hover,
.dcpf_thijs_vrest_local.dcpf #header #tabs > ul .sf-breadcrumb > a:hover,
.dcpf_galina_local.dcpf #header #tabs > ul .sf-breadcrumb > a:hover,
.dcpf_robin_imac_local.dcpf #header #tabs > ul .sfHover > a,
.dcpf_robin_hp_local.dcpf #header #tabs > ul .sfHover > a,
.dcpf_thijs-macbook-pro_local.dcpf #header #tabs > ul .sfHover > a,
.dcpf_jos_localhost.dcpf #header #tabs > ul .sfHover > a,
.dcpf_erik_localhost.dcpf #header #tabs > ul .sfHover > a,
.dcpf_thijs_vrest_local.dcpf #header #tabs > ul .sfHover > a,
.dcpf_galina_local.dcpf #header #tabs > ul .sfHover > a,
.dcpf_robin_imac_local.dcpf #header #tabs > ul li > a:hover,
.dcpf_robin_hp_local.dcpf #header #tabs > ul li > a:hover,
.dcpf_thijs-macbook-pro_local.dcpf #header #tabs > ul li > a:hover,
.dcpf_jos_localhost.dcpf #header #tabs > ul li > a:hover,
.dcpf_erik_localhost.dcpf #header #tabs > ul li > a:hover,
.dcpf_thijs_vrest_local.dcpf #header #tabs > ul li > a:hover,
.dcpf_galina_local.dcpf #header #tabs > ul li > a:hover {
  background-color: #505050;
}
.dcpf_robin_imac_local.dcpf #header #tabs .no-tab a,
.dcpf_robin_hp_local.dcpf #header #tabs .no-tab a,
.dcpf_thijs-macbook-pro_local.dcpf #header #tabs .no-tab a,
.dcpf_jos_localhost.dcpf #header #tabs .no-tab a,
.dcpf_erik_localhost.dcpf #header #tabs .no-tab a,
.dcpf_thijs_vrest_local.dcpf #header #tabs .no-tab a,
.dcpf_galina_local.dcpf #header #tabs .no-tab a,
.dcpf_robin_imac_local.dcpf #header #tabs .no-tab:hover a,
.dcpf_robin_hp_local.dcpf #header #tabs .no-tab:hover a,
.dcpf_thijs-macbook-pro_local.dcpf #header #tabs .no-tab:hover a,
.dcpf_jos_localhost.dcpf #header #tabs .no-tab:hover a,
.dcpf_erik_localhost.dcpf #header #tabs .no-tab:hover a,
.dcpf_thijs_vrest_local.dcpf #header #tabs .no-tab:hover a,
.dcpf_galina_local.dcpf #header #tabs .no-tab:hover a {
  color: #7c7c7c;
}
.dcpf_robin_imac_local.dcpf #header #tabs .no-tab a:hover,
.dcpf_robin_hp_local.dcpf #header #tabs .no-tab a:hover,
.dcpf_thijs-macbook-pro_local.dcpf #header #tabs .no-tab a:hover,
.dcpf_jos_localhost.dcpf #header #tabs .no-tab a:hover,
.dcpf_erik_localhost.dcpf #header #tabs .no-tab a:hover,
.dcpf_thijs_vrest_local.dcpf #header #tabs .no-tab a:hover,
.dcpf_galina_local.dcpf #header #tabs .no-tab a:hover,
.dcpf_robin_imac_local.dcpf #header #tabs .no-tab:hover a:hover,
.dcpf_robin_hp_local.dcpf #header #tabs .no-tab:hover a:hover,
.dcpf_thijs-macbook-pro_local.dcpf #header #tabs .no-tab:hover a:hover,
.dcpf_jos_localhost.dcpf #header #tabs .no-tab:hover a:hover,
.dcpf_erik_localhost.dcpf #header #tabs .no-tab:hover a:hover,
.dcpf_thijs_vrest_local.dcpf #header #tabs .no-tab:hover a:hover,
.dcpf_galina_local.dcpf #header #tabs .no-tab:hover a:hover {
  color: #505050;
}
.dcpf_robin_imac_local.dcpf #header #dividerBar,
.dcpf_robin_hp_local.dcpf #header #dividerBar,
.dcpf_thijs-macbook-pro_local.dcpf #header #dividerBar,
.dcpf_jos_localhost.dcpf #header #dividerBar,
.dcpf_erik_localhost.dcpf #header #dividerBar,
.dcpf_thijs_vrest_local.dcpf #header #dividerBar,
.dcpf_galina_local.dcpf #header #dividerBar {
  background: #505050;
}
/*# sourceMappingURL=layout_v2.css.map */
/*!
 * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */
.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900); }

.fa,
.fa-classic,
.fa-sharp,
.fas,
.fa-solid,
.far,
.fa-regular,
.fab,
.fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto; }

.fas,
.fa-classic,
.fa-solid,
.far,
.fa-regular {
  font-family: 'Font Awesome 6 Free'; }

.fab,
.fa-brands {
  font-family: 'Font Awesome 6 Brands'; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em; }

.fa-xs {
  font-size: 0.75em;
  line-height: 0.08333em;
  vertical-align: 0.125em; }

.fa-sm {
  font-size: 0.875em;
  line-height: 0.07143em;
  vertical-align: 0.05357em; }

.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em; }

.fa-xl {
  font-size: 1.5em;
  line-height: 0.04167em;
  vertical-align: -0.125em; }

.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: calc(var(--fa-li-width, 2em) * -1);
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit; }

.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); }

.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em); }

.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em); }

.fa-beat {
  -webkit-animation-name: fa-beat;
          animation-name: fa-beat;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
          animation-timing-function: var(--fa-animation-timing, ease-in-out); }

.fa-bounce {
  -webkit-animation-name: fa-bounce;
          animation-name: fa-bounce;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); }

.fa-fade {
  -webkit-animation-name: fa-fade;
          animation-name: fa-fade;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }

.fa-beat-fade {
  -webkit-animation-name: fa-beat-fade;
          animation-name: fa-beat-fade;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }

.fa-flip {
  -webkit-animation-name: fa-flip;
          animation-name: fa-flip;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
          animation-timing-function: var(--fa-animation-timing, ease-in-out); }

.fa-shake {
  -webkit-animation-name: fa-shake;
          animation-name: fa-shake;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
          animation-timing-function: var(--fa-animation-timing, linear); }

.fa-spin {
  -webkit-animation-name: fa-spin;
          animation-name: fa-spin;
  -webkit-animation-delay: var(--fa-animation-delay, 0s);
          animation-delay: var(--fa-animation-delay, 0s);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 2s);
          animation-duration: var(--fa-animation-duration, 2s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
          animation-timing-function: var(--fa-animation-timing, linear); }

.fa-spin-reverse {
  --fa-animation-direction: reverse; }

.fa-pulse,
.fa-spin-pulse {
  -webkit-animation-name: fa-spin;
          animation-name: fa-spin;
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));
          animation-timing-function: var(--fa-animation-timing, steps(8)); }

@media (prefers-reduced-motion: reduce) {
  .fa-beat,
  .fa-bounce,
  .fa-fade,
  .fa-beat-fade,
  .fa-flip,
  .fa-pulse,
  .fa-shake,
  .fa-spin,
  .fa-spin-pulse {
    -webkit-animation-delay: -1ms;
            animation-delay: -1ms;
    -webkit-animation-duration: 1ms;
            animation-duration: 1ms;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transition-duration: 0s;
            transition-duration: 0s; } }

@-webkit-keyframes fa-beat {
  0%, 90% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  45% {
    -webkit-transform: scale(var(--fa-beat-scale, 1.25));
            transform: scale(var(--fa-beat-scale, 1.25)); } }

@keyframes fa-beat {
  0%, 90% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  45% {
    -webkit-transform: scale(var(--fa-beat-scale, 1.25));
            transform: scale(var(--fa-beat-scale, 1.25)); } }

@-webkit-keyframes fa-bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0); }
  10% {
    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); }
  30% {
    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); }
  50% {
    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); }
  57% {
    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0); }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0); } }

@keyframes fa-bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0); }
  10% {
    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); }
  30% {
    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); }
  50% {
    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); }
  57% {
    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0); }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0); } }

@-webkit-keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4); } }

@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4); } }

@-webkit-keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    opacity: 1;
    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
            transform: scale(var(--fa-beat-fade-scale, 1.125)); } }

@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    opacity: 1;
    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
            transform: scale(var(--fa-beat-fade-scale, 1.125)); } }

@-webkit-keyframes fa-flip {
  50% {
    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } }

@keyframes fa-flip {
  50% {
    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } }

@-webkit-keyframes fa-shake {
  0% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg); }
  4% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg); }
  8%, 24% {
    -webkit-transform: rotate(-18deg);
            transform: rotate(-18deg); }
  12%, 28% {
    -webkit-transform: rotate(18deg);
            transform: rotate(18deg); }
  16% {
    -webkit-transform: rotate(-22deg);
            transform: rotate(-22deg); }
  20% {
    -webkit-transform: rotate(22deg);
            transform: rotate(22deg); }
  32% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg); }
  36% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg); }
  40%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }

@keyframes fa-shake {
  0% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg); }
  4% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg); }
  8%, 24% {
    -webkit-transform: rotate(-18deg);
            transform: rotate(-18deg); }
  12%, 28% {
    -webkit-transform: rotate(18deg);
            transform: rotate(18deg); }
  16% {
    -webkit-transform: rotate(-22deg);
            transform: rotate(-22deg); }
  20% {
    -webkit-transform: rotate(22deg);
            transform: rotate(22deg); }
  32% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg); }
  36% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg); }
  40%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.fa-rotate-90 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }

.fa-rotate-180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }

.fa-rotate-270 {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg); }

.fa-flip-horizontal {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1); }

.fa-flip-vertical {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1); }

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1); }

.fa-rotate-by {
  -webkit-transform: rotate(var(--fa-rotate-angle, 0));
          transform: rotate(var(--fa-rotate-angle, 0)); }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: var(--fa-stack-z-index, auto); }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: var(--fa-inverse, #fff); }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */

.fa-0::before {
  content: "\30"; }

.fa-1::before {
  content: "\31"; }

.fa-2::before {
  content: "\32"; }

.fa-3::before {
  content: "\33"; }

.fa-4::before {
  content: "\34"; }

.fa-5::before {
  content: "\35"; }

.fa-6::before {
  content: "\36"; }

.fa-7::before {
  content: "\37"; }

.fa-8::before {
  content: "\38"; }

.fa-9::before {
  content: "\39"; }

.fa-fill-drip::before {
  content: "\f576"; }

.fa-arrows-to-circle::before {
  content: "\e4bd"; }

.fa-circle-chevron-right::before {
  content: "\f138"; }

.fa-chevron-circle-right::before {
  content: "\f138"; }

.fa-at::before {
  content: "\40"; }

.fa-trash-can::before {
  content: "\f2ed"; }

.fa-trash-alt::before {
  content: "\f2ed"; }

.fa-text-height::before {
  content: "\f034"; }

.fa-user-xmark::before {
  content: "\f235"; }

.fa-user-times::before {
  content: "\f235"; }

.fa-stethoscope::before {
  content: "\f0f1"; }

.fa-message::before {
  content: "\f27a"; }

.fa-comment-alt::before {
  content: "\f27a"; }

.fa-info::before {
  content: "\f129"; }

.fa-down-left-and-up-right-to-center::before {
  content: "\f422"; }

.fa-compress-alt::before {
  content: "\f422"; }

.fa-explosion::before {
  content: "\e4e9"; }

.fa-file-lines::before {
  content: "\f15c"; }

.fa-file-alt::before {
  content: "\f15c"; }

.fa-file-text::before {
  content: "\f15c"; }

.fa-wave-square::before {
  content: "\f83e"; }

.fa-ring::before {
  content: "\f70b"; }

.fa-building-un::before {
  content: "\e4d9"; }

.fa-dice-three::before {
  content: "\f527"; }

.fa-calendar-days::before {
  content: "\f073"; }

.fa-calendar-alt::before {
  content: "\f073"; }

.fa-anchor-circle-check::before {
  content: "\e4aa"; }

.fa-building-circle-arrow-right::before {
  content: "\e4d1"; }

.fa-volleyball::before {
  content: "\f45f"; }

.fa-volleyball-ball::before {
  content: "\f45f"; }

.fa-arrows-up-to-line::before {
  content: "\e4c2"; }

.fa-sort-down::before {
  content: "\f0dd"; }

.fa-sort-desc::before {
  content: "\f0dd"; }

.fa-circle-minus::before {
  content: "\f056"; }

.fa-minus-circle::before {
  content: "\f056"; }

.fa-door-open::before {
  content: "\f52b"; }

.fa-right-from-bracket::before {
  content: "\f2f5"; }

.fa-sign-out-alt::before {
  content: "\f2f5"; }

.fa-atom::before {
  content: "\f5d2"; }

.fa-soap::before {
  content: "\e06e"; }

.fa-icons::before {
  content: "\f86d"; }

.fa-heart-music-camera-bolt::before {
  content: "\f86d"; }

.fa-microphone-lines-slash::before {
  content: "\f539"; }

.fa-microphone-alt-slash::before {
  content: "\f539"; }

.fa-bridge-circle-check::before {
  content: "\e4c9"; }

.fa-pump-medical::before {
  content: "\e06a"; }

.fa-fingerprint::before {
  content: "\f577"; }

.fa-hand-point-right::before {
  content: "\f0a4"; }

.fa-magnifying-glass-location::before {
  content: "\f689"; }

.fa-search-location::before {
  content: "\f689"; }

.fa-forward-step::before {
  content: "\f051"; }

.fa-step-forward::before {
  content: "\f051"; }

.fa-face-smile-beam::before {
  content: "\f5b8"; }

.fa-smile-beam::before {
  content: "\f5b8"; }

.fa-flag-checkered::before {
  content: "\f11e"; }

.fa-football::before {
  content: "\f44e"; }

.fa-football-ball::before {
  content: "\f44e"; }

.fa-school-circle-exclamation::before {
  content: "\e56c"; }

.fa-crop::before {
  content: "\f125"; }

.fa-angles-down::before {
  content: "\f103"; }

.fa-angle-double-down::before {
  content: "\f103"; }

.fa-users-rectangle::before {
  content: "\e594"; }

.fa-people-roof::before {
  content: "\e537"; }

.fa-people-line::before {
  content: "\e534"; }

.fa-beer-mug-empty::before {
  content: "\f0fc"; }

.fa-beer::before {
  content: "\f0fc"; }

.fa-diagram-predecessor::before {
  content: "\e477"; }

.fa-arrow-up-long::before {
  content: "\f176"; }

.fa-long-arrow-up::before {
  content: "\f176"; }

.fa-fire-flame-simple::before {
  content: "\f46a"; }

.fa-burn::before {
  content: "\f46a"; }

.fa-person::before {
  content: "\f183"; }

.fa-male::before {
  content: "\f183"; }

.fa-laptop::before {
  content: "\f109"; }

.fa-file-csv::before {
  content: "\f6dd"; }

.fa-menorah::before {
  content: "\f676"; }

.fa-truck-plane::before {
  content: "\e58f"; }

.fa-record-vinyl::before {
  content: "\f8d9"; }

.fa-face-grin-stars::before {
  content: "\f587"; }

.fa-grin-stars::before {
  content: "\f587"; }

.fa-bong::before {
  content: "\f55c"; }

.fa-spaghetti-monster-flying::before {
  content: "\f67b"; }

.fa-pastafarianism::before {
  content: "\f67b"; }

.fa-arrow-down-up-across-line::before {
  content: "\e4af"; }

.fa-spoon::before {
  content: "\f2e5"; }

.fa-utensil-spoon::before {
  content: "\f2e5"; }

.fa-jar-wheat::before {
  content: "\e517"; }

.fa-envelopes-bulk::before {
  content: "\f674"; }

.fa-mail-bulk::before {
  content: "\f674"; }

.fa-file-circle-exclamation::before {
  content: "\e4eb"; }

.fa-circle-h::before {
  content: "\f47e"; }

.fa-hospital-symbol::before {
  content: "\f47e"; }

.fa-pager::before {
  content: "\f815"; }

.fa-address-book::before {
  content: "\f2b9"; }

.fa-contact-book::before {
  content: "\f2b9"; }

.fa-strikethrough::before {
  content: "\f0cc"; }

.fa-k::before {
  content: "\4b"; }

.fa-landmark-flag::before {
  content: "\e51c"; }

.fa-pencil::before {
  content: "\f303"; }

.fa-pencil-alt::before {
  content: "\f303"; }

.fa-backward::before {
  content: "\f04a"; }

.fa-caret-right::before {
  content: "\f0da"; }

.fa-comments::before {
  content: "\f086"; }

.fa-paste::before {
  content: "\f0ea"; }

.fa-file-clipboard::before {
  content: "\f0ea"; }

.fa-code-pull-request::before {
  content: "\e13c"; }

.fa-clipboard-list::before {
  content: "\f46d"; }

.fa-truck-ramp-box::before {
  content: "\f4de"; }

.fa-truck-loading::before {
  content: "\f4de"; }

.fa-user-check::before {
  content: "\f4fc"; }

.fa-vial-virus::before {
  content: "\e597"; }

.fa-sheet-plastic::before {
  content: "\e571"; }

.fa-blog::before {
  content: "\f781"; }

.fa-user-ninja::before {
  content: "\f504"; }

.fa-person-arrow-up-from-line::before {
  content: "\e539"; }

.fa-scroll-torah::before {
  content: "\f6a0"; }

.fa-torah::before {
  content: "\f6a0"; }

.fa-broom-ball::before {
  content: "\f458"; }

.fa-quidditch::before {
  content: "\f458"; }

.fa-quidditch-broom-ball::before {
  content: "\f458"; }

.fa-toggle-off::before {
  content: "\f204"; }

.fa-box-archive::before {
  content: "\f187"; }

.fa-archive::before {
  content: "\f187"; }

.fa-person-drowning::before {
  content: "\e545"; }

.fa-arrow-down-9-1::before {
  content: "\f886"; }

.fa-sort-numeric-desc::before {
  content: "\f886"; }

.fa-sort-numeric-down-alt::before {
  content: "\f886"; }

.fa-face-grin-tongue-squint::before {
  content: "\f58a"; }

.fa-grin-tongue-squint::before {
  content: "\f58a"; }

.fa-spray-can::before {
  content: "\f5bd"; }

.fa-truck-monster::before {
  content: "\f63b"; }

.fa-w::before {
  content: "\57"; }

.fa-earth-africa::before {
  content: "\f57c"; }

.fa-globe-africa::before {
  content: "\f57c"; }

.fa-rainbow::before {
  content: "\f75b"; }

.fa-circle-notch::before {
  content: "\f1ce"; }

.fa-tablet-screen-button::before {
  content: "\f3fa"; }

.fa-tablet-alt::before {
  content: "\f3fa"; }

.fa-paw::before {
  content: "\f1b0"; }

.fa-cloud::before {
  content: "\f0c2"; }

.fa-trowel-bricks::before {
  content: "\e58a"; }

.fa-face-flushed::before {
  content: "\f579"; }

.fa-flushed::before {
  content: "\f579"; }

.fa-hospital-user::before {
  content: "\f80d"; }

.fa-tent-arrow-left-right::before {
  content: "\e57f"; }

.fa-gavel::before {
  content: "\f0e3"; }

.fa-legal::before {
  content: "\f0e3"; }

.fa-binoculars::before {
  content: "\f1e5"; }

.fa-microphone-slash::before {
  content: "\f131"; }

.fa-box-tissue::before {
  content: "\e05b"; }

.fa-motorcycle::before {
  content: "\f21c"; }

.fa-bell-concierge::before {
  content: "\f562"; }

.fa-concierge-bell::before {
  content: "\f562"; }

.fa-pen-ruler::before {
  content: "\f5ae"; }

.fa-pencil-ruler::before {
  content: "\f5ae"; }

.fa-people-arrows::before {
  content: "\e068"; }

.fa-people-arrows-left-right::before {
  content: "\e068"; }

.fa-mars-and-venus-burst::before {
  content: "\e523"; }

.fa-square-caret-right::before {
  content: "\f152"; }

.fa-caret-square-right::before {
  content: "\f152"; }

.fa-scissors::before {
  content: "\f0c4"; }

.fa-cut::before {
  content: "\f0c4"; }

.fa-sun-plant-wilt::before {
  content: "\e57a"; }

.fa-toilets-portable::before {
  content: "\e584"; }

.fa-hockey-puck::before {
  content: "\f453"; }

.fa-table::before {
  content: "\f0ce"; }

.fa-magnifying-glass-arrow-right::before {
  content: "\e521"; }

.fa-tachograph-digital::before {
  content: "\f566"; }

.fa-digital-tachograph::before {
  content: "\f566"; }

.fa-users-slash::before {
  content: "\e073"; }

.fa-clover::before {
  content: "\e139"; }

.fa-reply::before {
  content: "\f3e5"; }

.fa-mail-reply::before {
  content: "\f3e5"; }

.fa-star-and-crescent::before {
  content: "\f699"; }

.fa-house-fire::before {
  content: "\e50c"; }

.fa-square-minus::before {
  content: "\f146"; }

.fa-minus-square::before {
  content: "\f146"; }

.fa-helicopter::before {
  content: "\f533"; }

.fa-compass::before {
  content: "\f14e"; }

.fa-square-caret-down::before {
  content: "\f150"; }

.fa-caret-square-down::before {
  content: "\f150"; }

.fa-file-circle-question::before {
  content: "\e4ef"; }

.fa-laptop-code::before {
  content: "\f5fc"; }

.fa-swatchbook::before {
  content: "\f5c3"; }

.fa-prescription-bottle::before {
  content: "\f485"; }

.fa-bars::before {
  content: "\f0c9"; }

.fa-navicon::before {
  content: "\f0c9"; }

.fa-people-group::before {
  content: "\e533"; }

.fa-hourglass-end::before {
  content: "\f253"; }

.fa-hourglass-3::before {
  content: "\f253"; }

.fa-heart-crack::before {
  content: "\f7a9"; }

.fa-heart-broken::before {
  content: "\f7a9"; }

.fa-square-up-right::before {
  content: "\f360"; }

.fa-external-link-square-alt::before {
  content: "\f360"; }

.fa-face-kiss-beam::before {
  content: "\f597"; }

.fa-kiss-beam::before {
  content: "\f597"; }

.fa-film::before {
  content: "\f008"; }

.fa-ruler-horizontal::before {
  content: "\f547"; }

.fa-people-robbery::before {
  content: "\e536"; }

.fa-lightbulb::before {
  content: "\f0eb"; }

.fa-caret-left::before {
  content: "\f0d9"; }

.fa-circle-exclamation::before {
  content: "\f06a"; }

.fa-exclamation-circle::before {
  content: "\f06a"; }

.fa-school-circle-xmark::before {
  content: "\e56d"; }

.fa-arrow-right-from-bracket::before {
  content: "\f08b"; }

.fa-sign-out::before {
  content: "\f08b"; }

.fa-circle-chevron-down::before {
  content: "\f13a"; }

.fa-chevron-circle-down::before {
  content: "\f13a"; }

.fa-unlock-keyhole::before {
  content: "\f13e"; }

.fa-unlock-alt::before {
  content: "\f13e"; }

.fa-cloud-showers-heavy::before {
  content: "\f740"; }

.fa-headphones-simple::before {
  content: "\f58f"; }

.fa-headphones-alt::before {
  content: "\f58f"; }

.fa-sitemap::before {
  content: "\f0e8"; }

.fa-circle-dollar-to-slot::before {
  content: "\f4b9"; }

.fa-donate::before {
  content: "\f4b9"; }

.fa-memory::before {
  content: "\f538"; }

.fa-road-spikes::before {
  content: "\e568"; }

.fa-fire-burner::before {
  content: "\e4f1"; }

.fa-flag::before {
  content: "\f024"; }

.fa-hanukiah::before {
  content: "\f6e6"; }

.fa-feather::before {
  content: "\f52d"; }

.fa-volume-low::before {
  content: "\f027"; }

.fa-volume-down::before {
  content: "\f027"; }

.fa-comment-slash::before {
  content: "\f4b3"; }

.fa-cloud-sun-rain::before {
  content: "\f743"; }

.fa-compress::before {
  content: "\f066"; }

.fa-wheat-awn::before {
  content: "\e2cd"; }

.fa-wheat-alt::before {
  content: "\e2cd"; }

.fa-ankh::before {
  content: "\f644"; }

.fa-hands-holding-child::before {
  content: "\e4fa"; }

.fa-asterisk::before {
  content: "\2a"; }

.fa-square-check::before {
  content: "\f14a"; }

.fa-check-square::before {
  content: "\f14a"; }

.fa-peseta-sign::before {
  content: "\e221"; }

.fa-heading::before {
  content: "\f1dc"; }

.fa-header::before {
  content: "\f1dc"; }

.fa-ghost::before {
  content: "\f6e2"; }

.fa-list::before {
  content: "\f03a"; }

.fa-list-squares::before {
  content: "\f03a"; }

.fa-square-phone-flip::before {
  content: "\f87b"; }

.fa-phone-square-alt::before {
  content: "\f87b"; }

.fa-cart-plus::before {
  content: "\f217"; }

.fa-gamepad::before {
  content: "\f11b"; }

.fa-circle-dot::before {
  content: "\f192"; }

.fa-dot-circle::before {
  content: "\f192"; }

.fa-face-dizzy::before {
  content: "\f567"; }

.fa-dizzy::before {
  content: "\f567"; }

.fa-egg::before {
  content: "\f7fb"; }

.fa-house-medical-circle-xmark::before {
  content: "\e513"; }

.fa-campground::before {
  content: "\f6bb"; }

.fa-folder-plus::before {
  content: "\f65e"; }

.fa-futbol::before {
  content: "\f1e3"; }

.fa-futbol-ball::before {
  content: "\f1e3"; }

.fa-soccer-ball::before {
  content: "\f1e3"; }

.fa-paintbrush::before {
  content: "\f1fc"; }

.fa-paint-brush::before {
  content: "\f1fc"; }

.fa-lock::before {
  content: "\f023"; }

.fa-gas-pump::before {
  content: "\f52f"; }

.fa-hot-tub-person::before {
  content: "\f593"; }

.fa-hot-tub::before {
  content: "\f593"; }

.fa-map-location::before {
  content: "\f59f"; }

.fa-map-marked::before {
  content: "\f59f"; }

.fa-house-flood-water::before {
  content: "\e50e"; }

.fa-tree::before {
  content: "\f1bb"; }

.fa-bridge-lock::before {
  content: "\e4cc"; }

.fa-sack-dollar::before {
  content: "\f81d"; }

.fa-pen-to-square::before {
  content: "\f044"; }

.fa-edit::before {
  content: "\f044"; }

.fa-car-side::before {
  content: "\f5e4"; }

.fa-share-nodes::before {
  content: "\f1e0"; }

.fa-share-alt::before {
  content: "\f1e0"; }

.fa-heart-circle-minus::before {
  content: "\e4ff"; }

.fa-hourglass-half::before {
  content: "\f252"; }

.fa-hourglass-2::before {
  content: "\f252"; }

.fa-microscope::before {
  content: "\f610"; }

.fa-sink::before {
  content: "\e06d"; }

.fa-bag-shopping::before {
  content: "\f290"; }

.fa-shopping-bag::before {
  content: "\f290"; }

.fa-arrow-down-z-a::before {
  content: "\f881"; }

.fa-sort-alpha-desc::before {
  content: "\f881"; }

.fa-sort-alpha-down-alt::before {
  content: "\f881"; }

.fa-mitten::before {
  content: "\f7b5"; }

.fa-person-rays::before {
  content: "\e54d"; }

.fa-users::before {
  content: "\f0c0"; }

.fa-eye-slash::before {
  content: "\f070"; }

.fa-flask-vial::before {
  content: "\e4f3"; }

.fa-hand::before {
  content: "\f256"; }

.fa-hand-paper::before {
  content: "\f256"; }

.fa-om::before {
  content: "\f679"; }

.fa-worm::before {
  content: "\e599"; }

.fa-house-circle-xmark::before {
  content: "\e50b"; }

.fa-plug::before {
  content: "\f1e6"; }

.fa-chevron-up::before {
  content: "\f077"; }

.fa-hand-spock::before {
  content: "\f259"; }

.fa-stopwatch::before {
  content: "\f2f2"; }

.fa-face-kiss::before {
  content: "\f596"; }

.fa-kiss::before {
  content: "\f596"; }

.fa-bridge-circle-xmark::before {
  content: "\e4cb"; }

.fa-face-grin-tongue::before {
  content: "\f589"; }

.fa-grin-tongue::before {
  content: "\f589"; }

.fa-chess-bishop::before {
  content: "\f43a"; }

.fa-face-grin-wink::before {
  content: "\f58c"; }

.fa-grin-wink::before {
  content: "\f58c"; }

.fa-ear-deaf::before {
  content: "\f2a4"; }

.fa-deaf::before {
  content: "\f2a4"; }

.fa-deafness::before {
  content: "\f2a4"; }

.fa-hard-of-hearing::before {
  content: "\f2a4"; }

.fa-road-circle-check::before {
  content: "\e564"; }

.fa-dice-five::before {
  content: "\f523"; }

.fa-square-rss::before {
  content: "\f143"; }

.fa-rss-square::before {
  content: "\f143"; }

.fa-land-mine-on::before {
  content: "\e51b"; }

.fa-i-cursor::before {
  content: "\f246"; }

.fa-stamp::before {
  content: "\f5bf"; }

.fa-stairs::before {
  content: "\e289"; }

.fa-i::before {
  content: "\49"; }

.fa-hryvnia-sign::before {
  content: "\f6f2"; }

.fa-hryvnia::before {
  content: "\f6f2"; }

.fa-pills::before {
  content: "\f484"; }

.fa-face-grin-wide::before {
  content: "\f581"; }

.fa-grin-alt::before {
  content: "\f581"; }

.fa-tooth::before {
  content: "\f5c9"; }

.fa-v::before {
  content: "\56"; }

.fa-bangladeshi-taka-sign::before {
  content: "\e2e6"; }

.fa-bicycle::before {
  content: "\f206"; }

.fa-staff-snake::before {
  content: "\e579"; }

.fa-rod-asclepius::before {
  content: "\e579"; }

.fa-rod-snake::before {
  content: "\e579"; }

.fa-staff-aesculapius::before {
  content: "\e579"; }

.fa-head-side-cough-slash::before {
  content: "\e062"; }

.fa-truck-medical::before {
  content: "\f0f9"; }

.fa-ambulance::before {
  content: "\f0f9"; }

.fa-wheat-awn-circle-exclamation::before {
  content: "\e598"; }

.fa-snowman::before {
  content: "\f7d0"; }

.fa-mortar-pestle::before {
  content: "\f5a7"; }

.fa-road-barrier::before {
  content: "\e562"; }

.fa-school::before {
  content: "\f549"; }

.fa-igloo::before {
  content: "\f7ae"; }

.fa-joint::before {
  content: "\f595"; }

.fa-angle-right::before {
  content: "\f105"; }

.fa-horse::before {
  content: "\f6f0"; }

.fa-q::before {
  content: "\51"; }

.fa-g::before {
  content: "\47"; }

.fa-notes-medical::before {
  content: "\f481"; }

.fa-temperature-half::before {
  content: "\f2c9"; }

.fa-temperature-2::before {
  content: "\f2c9"; }

.fa-thermometer-2::before {
  content: "\f2c9"; }

.fa-thermometer-half::before {
  content: "\f2c9"; }

.fa-dong-sign::before {
  content: "\e169"; }

.fa-capsules::before {
  content: "\f46b"; }

.fa-poo-storm::before {
  content: "\f75a"; }

.fa-poo-bolt::before {
  content: "\f75a"; }

.fa-face-frown-open::before {
  content: "\f57a"; }

.fa-frown-open::before {
  content: "\f57a"; }

.fa-hand-point-up::before {
  content: "\f0a6"; }

.fa-money-bill::before {
  content: "\f0d6"; }

.fa-bookmark::before {
  content: "\f02e"; }

.fa-align-justify::before {
  content: "\f039"; }

.fa-umbrella-beach::before {
  content: "\f5ca"; }

.fa-helmet-un::before {
  content: "\e503"; }

.fa-bullseye::before {
  content: "\f140"; }

.fa-bacon::before {
  content: "\f7e5"; }

.fa-hand-point-down::before {
  content: "\f0a7"; }

.fa-arrow-up-from-bracket::before {
  content: "\e09a"; }

.fa-folder::before {
  content: "\f07b"; }

.fa-folder-blank::before {
  content: "\f07b"; }

.fa-file-waveform::before {
  content: "\f478"; }

.fa-file-medical-alt::before {
  content: "\f478"; }

.fa-radiation::before {
  content: "\f7b9"; }

.fa-chart-simple::before {
  content: "\e473"; }

.fa-mars-stroke::before {
  content: "\f229"; }

.fa-vial::before {
  content: "\f492"; }

.fa-gauge::before {
  content: "\f624"; }

.fa-dashboard::before {
  content: "\f624"; }

.fa-gauge-med::before {
  content: "\f624"; }

.fa-tachometer-alt-average::before {
  content: "\f624"; }

.fa-wand-magic-sparkles::before {
  content: "\e2ca"; }

.fa-magic-wand-sparkles::before {
  content: "\e2ca"; }

.fa-e::before {
  content: "\45"; }

.fa-pen-clip::before {
  content: "\f305"; }

.fa-pen-alt::before {
  content: "\f305"; }

.fa-bridge-circle-exclamation::before {
  content: "\e4ca"; }

.fa-user::before {
  content: "\f007"; }

.fa-school-circle-check::before {
  content: "\e56b"; }

.fa-dumpster::before {
  content: "\f793"; }

.fa-van-shuttle::before {
  content: "\f5b6"; }

.fa-shuttle-van::before {
  content: "\f5b6"; }

.fa-building-user::before {
  content: "\e4da"; }

.fa-square-caret-left::before {
  content: "\f191"; }

.fa-caret-square-left::before {
  content: "\f191"; }

.fa-highlighter::before {
  content: "\f591"; }

.fa-key::before {
  content: "\f084"; }

.fa-bullhorn::before {
  content: "\f0a1"; }

.fa-globe::before {
  content: "\f0ac"; }

.fa-synagogue::before {
  content: "\f69b"; }

.fa-person-half-dress::before {
  content: "\e548"; }

.fa-road-bridge::before {
  content: "\e563"; }

.fa-location-arrow::before {
  content: "\f124"; }

.fa-c::before {
  content: "\43"; }

.fa-tablet-button::before {
  content: "\f10a"; }

.fa-building-lock::before {
  content: "\e4d6"; }

.fa-pizza-slice::before {
  content: "\f818"; }

.fa-money-bill-wave::before {
  content: "\f53a"; }

.fa-chart-area::before {
  content: "\f1fe"; }

.fa-area-chart::before {
  content: "\f1fe"; }

.fa-house-flag::before {
  content: "\e50d"; }

.fa-person-circle-minus::before {
  content: "\e540"; }

.fa-ban::before {
  content: "\f05e"; }

.fa-cancel::before {
  content: "\f05e"; }

.fa-camera-rotate::before {
  content: "\e0d8"; }

.fa-spray-can-sparkles::before {
  content: "\f5d0"; }

.fa-air-freshener::before {
  content: "\f5d0"; }

.fa-star::before {
  content: "\f005"; }

.fa-repeat::before {
  content: "\f363"; }

.fa-cross::before {
  content: "\f654"; }

.fa-box::before {
  content: "\f466"; }

.fa-venus-mars::before {
  content: "\f228"; }

.fa-arrow-pointer::before {
  content: "\f245"; }

.fa-mouse-pointer::before {
  content: "\f245"; }

.fa-maximize::before {
  content: "\f31e"; }

.fa-expand-arrows-alt::before {
  content: "\f31e"; }

.fa-charging-station::before {
  content: "\f5e7"; }

.fa-shapes::before {
  content: "\f61f"; }

.fa-triangle-circle-square::before {
  content: "\f61f"; }

.fa-shuffle::before {
  content: "\f074"; }

.fa-random::before {
  content: "\f074"; }

.fa-person-running::before {
  content: "\f70c"; }

.fa-running::before {
  content: "\f70c"; }

.fa-mobile-retro::before {
  content: "\e527"; }

.fa-grip-lines-vertical::before {
  content: "\f7a5"; }

.fa-spider::before {
  content: "\f717"; }

.fa-hands-bound::before {
  content: "\e4f9"; }

.fa-file-invoice-dollar::before {
  content: "\f571"; }

.fa-plane-circle-exclamation::before {
  content: "\e556"; }

.fa-x-ray::before {
  content: "\f497"; }

.fa-spell-check::before {
  content: "\f891"; }

.fa-slash::before {
  content: "\f715"; }

.fa-computer-mouse::before {
  content: "\f8cc"; }

.fa-mouse::before {
  content: "\f8cc"; }

.fa-arrow-right-to-bracket::before {
  content: "\f090"; }

.fa-sign-in::before {
  content: "\f090"; }

.fa-shop-slash::before {
  content: "\e070"; }

.fa-store-alt-slash::before {
  content: "\e070"; }

.fa-server::before {
  content: "\f233"; }

.fa-virus-covid-slash::before {
  content: "\e4a9"; }

.fa-shop-lock::before {
  content: "\e4a5"; }

.fa-hourglass-start::before {
  content: "\f251"; }

.fa-hourglass-1::before {
  content: "\f251"; }

.fa-blender-phone::before {
  content: "\f6b6"; }

.fa-building-wheat::before {
  content: "\e4db"; }

.fa-person-breastfeeding::before {
  content: "\e53a"; }

.fa-right-to-bracket::before {
  content: "\f2f6"; }

.fa-sign-in-alt::before {
  content: "\f2f6"; }

.fa-venus::before {
  content: "\f221"; }

.fa-passport::before {
  content: "\f5ab"; }

.fa-heart-pulse::before {
  content: "\f21e"; }

.fa-heartbeat::before {
  content: "\f21e"; }

.fa-people-carry-box::before {
  content: "\f4ce"; }

.fa-people-carry::before {
  content: "\f4ce"; }

.fa-temperature-high::before {
  content: "\f769"; }

.fa-microchip::before {
  content: "\f2db"; }

.fa-crown::before {
  content: "\f521"; }

.fa-weight-hanging::before {
  content: "\f5cd"; }

.fa-xmarks-lines::before {
  content: "\e59a"; }

.fa-file-prescription::before {
  content: "\f572"; }

.fa-weight-scale::before {
  content: "\f496"; }

.fa-weight::before {
  content: "\f496"; }

.fa-user-group::before {
  content: "\f500"; }

.fa-user-friends::before {
  content: "\f500"; }

.fa-arrow-up-a-z::before {
  content: "\f15e"; }

.fa-sort-alpha-up::before {
  content: "\f15e"; }

.fa-chess-knight::before {
  content: "\f441"; }

.fa-face-laugh-squint::before {
  content: "\f59b"; }

.fa-laugh-squint::before {
  content: "\f59b"; }

.fa-wheelchair::before {
  content: "\f193"; }

.fa-circle-arrow-up::before {
  content: "\f0aa"; }

.fa-arrow-circle-up::before {
  content: "\f0aa"; }

.fa-toggle-on::before {
  content: "\f205"; }

.fa-person-walking::before {
  content: "\f554"; }

.fa-walking::before {
  content: "\f554"; }

.fa-l::before {
  content: "\4c"; }

.fa-fire::before {
  content: "\f06d"; }

.fa-bed-pulse::before {
  content: "\f487"; }

.fa-procedures::before {
  content: "\f487"; }

.fa-shuttle-space::before {
  content: "\f197"; }

.fa-space-shuttle::before {
  content: "\f197"; }

.fa-face-laugh::before {
  content: "\f599"; }

.fa-laugh::before {
  content: "\f599"; }

.fa-folder-open::before {
  content: "\f07c"; }

.fa-heart-circle-plus::before {
  content: "\e500"; }

.fa-code-fork::before {
  content: "\e13b"; }

.fa-city::before {
  content: "\f64f"; }

.fa-microphone-lines::before {
  content: "\f3c9"; }

.fa-microphone-alt::before {
  content: "\f3c9"; }

.fa-pepper-hot::before {
  content: "\f816"; }

.fa-unlock::before {
  content: "\f09c"; }

.fa-colon-sign::before {
  content: "\e140"; }

.fa-headset::before {
  content: "\f590"; }

.fa-store-slash::before {
  content: "\e071"; }

.fa-road-circle-xmark::before {
  content: "\e566"; }

.fa-user-minus::before {
  content: "\f503"; }

.fa-mars-stroke-up::before {
  content: "\f22a"; }

.fa-mars-stroke-v::before {
  content: "\f22a"; }

.fa-champagne-glasses::before {
  content: "\f79f"; }

.fa-glass-cheers::before {
  content: "\f79f"; }

.fa-clipboard::before {
  content: "\f328"; }

.fa-house-circle-exclamation::before {
  content: "\e50a"; }

.fa-file-arrow-up::before {
  content: "\f574"; }

.fa-file-upload::before {
  content: "\f574"; }

.fa-wifi::before {
  content: "\f1eb"; }

.fa-wifi-3::before {
  content: "\f1eb"; }

.fa-wifi-strong::before {
  content: "\f1eb"; }

.fa-bath::before {
  content: "\f2cd"; }

.fa-bathtub::before {
  content: "\f2cd"; }

.fa-underline::before {
  content: "\f0cd"; }

.fa-user-pen::before {
  content: "\f4ff"; }

.fa-user-edit::before {
  content: "\f4ff"; }

.fa-signature::before {
  content: "\f5b7"; }

.fa-stroopwafel::before {
  content: "\f551"; }

.fa-bold::before {
  content: "\f032"; }

.fa-anchor-lock::before {
  content: "\e4ad"; }

.fa-building-ngo::before {
  content: "\e4d7"; }

.fa-manat-sign::before {
  content: "\e1d5"; }

.fa-not-equal::before {
  content: "\f53e"; }

.fa-border-top-left::before {
  content: "\f853"; }

.fa-border-style::before {
  content: "\f853"; }

.fa-map-location-dot::before {
  content: "\f5a0"; }

.fa-map-marked-alt::before {
  content: "\f5a0"; }

.fa-jedi::before {
  content: "\f669"; }

.fa-square-poll-vertical::before {
  content: "\f681"; }

.fa-poll::before {
  content: "\f681"; }

.fa-mug-hot::before {
  content: "\f7b6"; }

.fa-car-battery::before {
  content: "\f5df"; }

.fa-battery-car::before {
  content: "\f5df"; }

.fa-gift::before {
  content: "\f06b"; }

.fa-dice-two::before {
  content: "\f528"; }

.fa-chess-queen::before {
  content: "\f445"; }

.fa-glasses::before {
  content: "\f530"; }

.fa-chess-board::before {
  content: "\f43c"; }

.fa-building-circle-check::before {
  content: "\e4d2"; }

.fa-person-chalkboard::before {
  content: "\e53d"; }

.fa-mars-stroke-right::before {
  content: "\f22b"; }

.fa-mars-stroke-h::before {
  content: "\f22b"; }

.fa-hand-back-fist::before {
  content: "\f255"; }

.fa-hand-rock::before {
  content: "\f255"; }

.fa-square-caret-up::before {
  content: "\f151"; }

.fa-caret-square-up::before {
  content: "\f151"; }

.fa-cloud-showers-water::before {
  content: "\e4e4"; }

.fa-chart-bar::before {
  content: "\f080"; }

.fa-bar-chart::before {
  content: "\f080"; }

.fa-hands-bubbles::before {
  content: "\e05e"; }

.fa-hands-wash::before {
  content: "\e05e"; }

.fa-less-than-equal::before {
  content: "\f537"; }

.fa-train::before {
  content: "\f238"; }

.fa-eye-low-vision::before {
  content: "\f2a8"; }

.fa-low-vision::before {
  content: "\f2a8"; }

.fa-crow::before {
  content: "\f520"; }

.fa-sailboat::before {
  content: "\e445"; }

.fa-window-restore::before {
  content: "\f2d2"; }

.fa-square-plus::before {
  content: "\f0fe"; }

.fa-plus-square::before {
  content: "\f0fe"; }

.fa-torii-gate::before {
  content: "\f6a1"; }

.fa-frog::before {
  content: "\f52e"; }

.fa-bucket::before {
  content: "\e4cf"; }

.fa-image::before {
  content: "\f03e"; }

.fa-microphone::before {
  content: "\f130"; }

.fa-cow::before {
  content: "\f6c8"; }

.fa-caret-up::before {
  content: "\f0d8"; }

.fa-screwdriver::before {
  content: "\f54a"; }

.fa-folder-closed::before {
  content: "\e185"; }

.fa-house-tsunami::before {
  content: "\e515"; }

.fa-square-nfi::before {
  content: "\e576"; }

.fa-arrow-up-from-ground-water::before {
  content: "\e4b5"; }

.fa-martini-glass::before {
  content: "\f57b"; }

.fa-glass-martini-alt::before {
  content: "\f57b"; }

.fa-rotate-left::before {
  content: "\f2ea"; }

.fa-rotate-back::before {
  content: "\f2ea"; }

.fa-rotate-backward::before {
  content: "\f2ea"; }

.fa-undo-alt::before {
  content: "\f2ea"; }

.fa-table-columns::before {
  content: "\f0db"; }

.fa-columns::before {
  content: "\f0db"; }

.fa-lemon::before {
  content: "\f094"; }

.fa-head-side-mask::before {
  content: "\e063"; }

.fa-handshake::before {
  content: "\f2b5"; }

.fa-gem::before {
  content: "\f3a5"; }

.fa-dolly::before {
  content: "\f472"; }

.fa-dolly-box::before {
  content: "\f472"; }

.fa-smoking::before {
  content: "\f48d"; }

.fa-minimize::before {
  content: "\f78c"; }

.fa-compress-arrows-alt::before {
  content: "\f78c"; }

.fa-monument::before {
  content: "\f5a6"; }

.fa-snowplow::before {
  content: "\f7d2"; }

.fa-angles-right::before {
  content: "\f101"; }

.fa-angle-double-right::before {
  content: "\f101"; }

.fa-cannabis::before {
  content: "\f55f"; }

.fa-circle-play::before {
  content: "\f144"; }

.fa-play-circle::before {
  content: "\f144"; }

.fa-tablets::before {
  content: "\f490"; }

.fa-ethernet::before {
  content: "\f796"; }

.fa-euro-sign::before {
  content: "\f153"; }

.fa-eur::before {
  content: "\f153"; }

.fa-euro::before {
  content: "\f153"; }

.fa-chair::before {
  content: "\f6c0"; }

.fa-circle-check::before {
  content: "\f058"; }

.fa-check-circle::before {
  content: "\f058"; }

.fa-circle-stop::before {
  content: "\f28d"; }

.fa-stop-circle::before {
  content: "\f28d"; }

.fa-compass-drafting::before {
  content: "\f568"; }

.fa-drafting-compass::before {
  content: "\f568"; }

.fa-plate-wheat::before {
  content: "\e55a"; }

.fa-icicles::before {
  content: "\f7ad"; }

.fa-person-shelter::before {
  content: "\e54f"; }

.fa-neuter::before {
  content: "\f22c"; }

.fa-id-badge::before {
  content: "\f2c1"; }

.fa-marker::before {
  content: "\f5a1"; }

.fa-face-laugh-beam::before {
  content: "\f59a"; }

.fa-laugh-beam::before {
  content: "\f59a"; }

.fa-helicopter-symbol::before {
  content: "\e502"; }

.fa-universal-access::before {
  content: "\f29a"; }

.fa-circle-chevron-up::before {
  content: "\f139"; }

.fa-chevron-circle-up::before {
  content: "\f139"; }

.fa-lari-sign::before {
  content: "\e1c8"; }

.fa-volcano::before {
  content: "\f770"; }

.fa-person-walking-dashed-line-arrow-right::before {
  content: "\e553"; }

.fa-sterling-sign::before {
  content: "\f154"; }

.fa-gbp::before {
  content: "\f154"; }

.fa-pound-sign::before {
  content: "\f154"; }

.fa-viruses::before {
  content: "\e076"; }

.fa-square-person-confined::before {
  content: "\e577"; }

.fa-user-tie::before {
  content: "\f508"; }

.fa-arrow-down-long::before {
  content: "\f175"; }

.fa-long-arrow-down::before {
  content: "\f175"; }

.fa-tent-arrow-down-to-line::before {
  content: "\e57e"; }

.fa-certificate::before {
  content: "\f0a3"; }

.fa-reply-all::before {
  content: "\f122"; }

.fa-mail-reply-all::before {
  content: "\f122"; }

.fa-suitcase::before {
  content: "\f0f2"; }

.fa-person-skating::before {
  content: "\f7c5"; }

.fa-skating::before {
  content: "\f7c5"; }

.fa-filter-circle-dollar::before {
  content: "\f662"; }

.fa-funnel-dollar::before {
  content: "\f662"; }

.fa-camera-retro::before {
  content: "\f083"; }

.fa-circle-arrow-down::before {
  content: "\f0ab"; }

.fa-arrow-circle-down::before {
  content: "\f0ab"; }

.fa-file-import::before {
  content: "\f56f"; }

.fa-arrow-right-to-file::before {
  content: "\f56f"; }

.fa-square-arrow-up-right::before {
  content: "\f14c"; }

.fa-external-link-square::before {
  content: "\f14c"; }

.fa-box-open::before {
  content: "\f49e"; }

.fa-scroll::before {
  content: "\f70e"; }

.fa-spa::before {
  content: "\f5bb"; }

.fa-location-pin-lock::before {
  content: "\e51f"; }

.fa-pause::before {
  content: "\f04c"; }

.fa-hill-avalanche::before {
  content: "\e507"; }

.fa-temperature-empty::before {
  content: "\f2cb"; }

.fa-temperature-0::before {
  content: "\f2cb"; }

.fa-thermometer-0::before {
  content: "\f2cb"; }

.fa-thermometer-empty::before {
  content: "\f2cb"; }

.fa-bomb::before {
  content: "\f1e2"; }

.fa-registered::before {
  content: "\f25d"; }

.fa-address-card::before {
  content: "\f2bb"; }

.fa-contact-card::before {
  content: "\f2bb"; }

.fa-vcard::before {
  content: "\f2bb"; }

.fa-scale-unbalanced-flip::before {
  content: "\f516"; }

.fa-balance-scale-right::before {
  content: "\f516"; }

.fa-subscript::before {
  content: "\f12c"; }

.fa-diamond-turn-right::before {
  content: "\f5eb"; }

.fa-directions::before {
  content: "\f5eb"; }

.fa-burst::before {
  content: "\e4dc"; }

.fa-house-laptop::before {
  content: "\e066"; }

.fa-laptop-house::before {
  content: "\e066"; }

.fa-face-tired::before {
  content: "\f5c8"; }

.fa-tired::before {
  content: "\f5c8"; }

.fa-money-bills::before {
  content: "\e1f3"; }

.fa-smog::before {
  content: "\f75f"; }

.fa-crutch::before {
  content: "\f7f7"; }

.fa-cloud-arrow-up::before {
  content: "\f0ee"; }

.fa-cloud-upload::before {
  content: "\f0ee"; }

.fa-cloud-upload-alt::before {
  content: "\f0ee"; }

.fa-palette::before {
  content: "\f53f"; }

.fa-arrows-turn-right::before {
  content: "\e4c0"; }

.fa-vest::before {
  content: "\e085"; }

.fa-ferry::before {
  content: "\e4ea"; }

.fa-arrows-down-to-people::before {
  content: "\e4b9"; }

.fa-seedling::before {
  content: "\f4d8"; }

.fa-sprout::before {
  content: "\f4d8"; }

.fa-left-right::before {
  content: "\f337"; }

.fa-arrows-alt-h::before {
  content: "\f337"; }

.fa-boxes-packing::before {
  content: "\e4c7"; }

.fa-circle-arrow-left::before {
  content: "\f0a8"; }

.fa-arrow-circle-left::before {
  content: "\f0a8"; }

.fa-group-arrows-rotate::before {
  content: "\e4f6"; }

.fa-bowl-food::before {
  content: "\e4c6"; }

.fa-candy-cane::before {
  content: "\f786"; }

.fa-arrow-down-wide-short::before {
  content: "\f160"; }

.fa-sort-amount-asc::before {
  content: "\f160"; }

.fa-sort-amount-down::before {
  content: "\f160"; }

.fa-cloud-bolt::before {
  content: "\f76c"; }

.fa-thunderstorm::before {
  content: "\f76c"; }

.fa-text-slash::before {
  content: "\f87d"; }

.fa-remove-format::before {
  content: "\f87d"; }

.fa-face-smile-wink::before {
  content: "\f4da"; }

.fa-smile-wink::before {
  content: "\f4da"; }

.fa-file-word::before {
  content: "\f1c2"; }

.fa-file-powerpoint::before {
  content: "\f1c4"; }

.fa-arrows-left-right::before {
  content: "\f07e"; }

.fa-arrows-h::before {
  content: "\f07e"; }

.fa-house-lock::before {
  content: "\e510"; }

.fa-cloud-arrow-down::before {
  content: "\f0ed"; }

.fa-cloud-download::before {
  content: "\f0ed"; }

.fa-cloud-download-alt::before {
  content: "\f0ed"; }

.fa-children::before {
  content: "\e4e1"; }

.fa-chalkboard::before {
  content: "\f51b"; }

.fa-blackboard::before {
  content: "\f51b"; }

.fa-user-large-slash::before {
  content: "\f4fa"; }

.fa-user-alt-slash::before {
  content: "\f4fa"; }

.fa-envelope-open::before {
  content: "\f2b6"; }

.fa-handshake-simple-slash::before {
  content: "\e05f"; }

.fa-handshake-alt-slash::before {
  content: "\e05f"; }

.fa-mattress-pillow::before {
  content: "\e525"; }

.fa-guarani-sign::before {
  content: "\e19a"; }

.fa-arrows-rotate::before {
  content: "\f021"; }

.fa-refresh::before {
  content: "\f021"; }

.fa-sync::before {
  content: "\f021"; }

.fa-fire-extinguisher::before {
  content: "\f134"; }

.fa-cruzeiro-sign::before {
  content: "\e152"; }

.fa-greater-than-equal::before {
  content: "\f532"; }

.fa-shield-halved::before {
  content: "\f3ed"; }

.fa-shield-alt::before {
  content: "\f3ed"; }

.fa-book-atlas::before {
  content: "\f558"; }

.fa-atlas::before {
  content: "\f558"; }

.fa-virus::before {
  content: "\e074"; }

.fa-envelope-circle-check::before {
  content: "\e4e8"; }

.fa-layer-group::before {
  content: "\f5fd"; }

.fa-arrows-to-dot::before {
  content: "\e4be"; }

.fa-archway::before {
  content: "\f557"; }

.fa-heart-circle-check::before {
  content: "\e4fd"; }

.fa-house-chimney-crack::before {
  content: "\f6f1"; }

.fa-house-damage::before {
  content: "\f6f1"; }

.fa-file-zipper::before {
  content: "\f1c6"; }

.fa-file-archive::before {
  content: "\f1c6"; }

.fa-square::before {
  content: "\f0c8"; }

.fa-martini-glass-empty::before {
  content: "\f000"; }

.fa-glass-martini::before {
  content: "\f000"; }

.fa-couch::before {
  content: "\f4b8"; }

.fa-cedi-sign::before {
  content: "\e0df"; }

.fa-italic::before {
  content: "\f033"; }

.fa-table-cells-column-lock::before {
  content: "\e678"; }

.fa-church::before {
  content: "\f51d"; }

.fa-comments-dollar::before {
  content: "\f653"; }

.fa-democrat::before {
  content: "\f747"; }

.fa-z::before {
  content: "\5a"; }

.fa-person-skiing::before {
  content: "\f7c9"; }

.fa-skiing::before {
  content: "\f7c9"; }

.fa-road-lock::before {
  content: "\e567"; }

.fa-a::before {
  content: "\41"; }

.fa-temperature-arrow-down::before {
  content: "\e03f"; }

.fa-temperature-down::before {
  content: "\e03f"; }

.fa-feather-pointed::before {
  content: "\f56b"; }

.fa-feather-alt::before {
  content: "\f56b"; }

.fa-p::before {
  content: "\50"; }

.fa-snowflake::before {
  content: "\f2dc"; }

.fa-newspaper::before {
  content: "\f1ea"; }

.fa-rectangle-ad::before {
  content: "\f641"; }

.fa-ad::before {
  content: "\f641"; }

.fa-circle-arrow-right::before {
  content: "\f0a9"; }

.fa-arrow-circle-right::before {
  content: "\f0a9"; }

.fa-filter-circle-xmark::before {
  content: "\e17b"; }

.fa-locust::before {
  content: "\e520"; }

.fa-sort::before {
  content: "\f0dc"; }

.fa-unsorted::before {
  content: "\f0dc"; }

.fa-list-ol::before {
  content: "\f0cb"; }

.fa-list-1-2::before {
  content: "\f0cb"; }

.fa-list-numeric::before {
  content: "\f0cb"; }

.fa-person-dress-burst::before {
  content: "\e544"; }

.fa-money-check-dollar::before {
  content: "\f53d"; }

.fa-money-check-alt::before {
  content: "\f53d"; }

.fa-vector-square::before {
  content: "\f5cb"; }

.fa-bread-slice::before {
  content: "\f7ec"; }

.fa-language::before {
  content: "\f1ab"; }

.fa-face-kiss-wink-heart::before {
  content: "\f598"; }

.fa-kiss-wink-heart::before {
  content: "\f598"; }

.fa-filter::before {
  content: "\f0b0"; }

.fa-question::before {
  content: "\3f"; }

.fa-file-signature::before {
  content: "\f573"; }

.fa-up-down-left-right::before {
  content: "\f0b2"; }

.fa-arrows-alt::before {
  content: "\f0b2"; }

.fa-house-chimney-user::before {
  content: "\e065"; }

.fa-hand-holding-heart::before {
  content: "\f4be"; }

.fa-puzzle-piece::before {
  content: "\f12e"; }

.fa-money-check::before {
  content: "\f53c"; }

.fa-star-half-stroke::before {
  content: "\f5c0"; }

.fa-star-half-alt::before {
  content: "\f5c0"; }

.fa-code::before {
  content: "\f121"; }

.fa-whiskey-glass::before {
  content: "\f7a0"; }

.fa-glass-whiskey::before {
  content: "\f7a0"; }

.fa-building-circle-exclamation::before {
  content: "\e4d3"; }

.fa-magnifying-glass-chart::before {
  content: "\e522"; }

.fa-arrow-up-right-from-square::before {
  content: "\f08e"; }

.fa-external-link::before {
  content: "\f08e"; }

.fa-cubes-stacked::before {
  content: "\e4e6"; }

.fa-won-sign::before {
  content: "\f159"; }

.fa-krw::before {
  content: "\f159"; }

.fa-won::before {
  content: "\f159"; }

.fa-virus-covid::before {
  content: "\e4a8"; }

.fa-austral-sign::before {
  content: "\e0a9"; }

.fa-f::before {
  content: "\46"; }

.fa-leaf::before {
  content: "\f06c"; }

.fa-road::before {
  content: "\f018"; }

.fa-taxi::before {
  content: "\f1ba"; }

.fa-cab::before {
  content: "\f1ba"; }

.fa-person-circle-plus::before {
  content: "\e541"; }

.fa-chart-pie::before {
  content: "\f200"; }

.fa-pie-chart::before {
  content: "\f200"; }

.fa-bolt-lightning::before {
  content: "\e0b7"; }

.fa-sack-xmark::before {
  content: "\e56a"; }

.fa-file-excel::before {
  content: "\f1c3"; }

.fa-file-contract::before {
  content: "\f56c"; }

.fa-fish-fins::before {
  content: "\e4f2"; }

.fa-building-flag::before {
  content: "\e4d5"; }

.fa-face-grin-beam::before {
  content: "\f582"; }

.fa-grin-beam::before {
  content: "\f582"; }

.fa-object-ungroup::before {
  content: "\f248"; }

.fa-poop::before {
  content: "\f619"; }

.fa-location-pin::before {
  content: "\f041"; }

.fa-map-marker::before {
  content: "\f041"; }

.fa-kaaba::before {
  content: "\f66b"; }

.fa-toilet-paper::before {
  content: "\f71e"; }

.fa-helmet-safety::before {
  content: "\f807"; }

.fa-hard-hat::before {
  content: "\f807"; }

.fa-hat-hard::before {
  content: "\f807"; }

.fa-eject::before {
  content: "\f052"; }

.fa-circle-right::before {
  content: "\f35a"; }

.fa-arrow-alt-circle-right::before {
  content: "\f35a"; }

.fa-plane-circle-check::before {
  content: "\e555"; }

.fa-face-rolling-eyes::before {
  content: "\f5a5"; }

.fa-meh-rolling-eyes::before {
  content: "\f5a5"; }

.fa-object-group::before {
  content: "\f247"; }

.fa-chart-line::before {
  content: "\f201"; }

.fa-line-chart::before {
  content: "\f201"; }

.fa-mask-ventilator::before {
  content: "\e524"; }

.fa-arrow-right::before {
  content: "\f061"; }

.fa-signs-post::before {
  content: "\f277"; }

.fa-map-signs::before {
  content: "\f277"; }

.fa-cash-register::before {
  content: "\f788"; }

.fa-person-circle-question::before {
  content: "\e542"; }

.fa-h::before {
  content: "\48"; }

.fa-tarp::before {
  content: "\e57b"; }

.fa-screwdriver-wrench::before {
  content: "\f7d9"; }

.fa-tools::before {
  content: "\f7d9"; }

.fa-arrows-to-eye::before {
  content: "\e4bf"; }

.fa-plug-circle-bolt::before {
  content: "\e55b"; }

.fa-heart::before {
  content: "\f004"; }

.fa-mars-and-venus::before {
  content: "\f224"; }

.fa-house-user::before {
  content: "\e1b0"; }

.fa-home-user::before {
  content: "\e1b0"; }

.fa-dumpster-fire::before {
  content: "\f794"; }

.fa-house-crack::before {
  content: "\e3b1"; }

.fa-martini-glass-citrus::before {
  content: "\f561"; }

.fa-cocktail::before {
  content: "\f561"; }

.fa-face-surprise::before {
  content: "\f5c2"; }

.fa-surprise::before {
  content: "\f5c2"; }

.fa-bottle-water::before {
  content: "\e4c5"; }

.fa-circle-pause::before {
  content: "\f28b"; }

.fa-pause-circle::before {
  content: "\f28b"; }

.fa-toilet-paper-slash::before {
  content: "\e072"; }

.fa-apple-whole::before {
  content: "\f5d1"; }

.fa-apple-alt::before {
  content: "\f5d1"; }

.fa-kitchen-set::before {
  content: "\e51a"; }

.fa-r::before {
  content: "\52"; }

.fa-temperature-quarter::before {
  content: "\f2ca"; }

.fa-temperature-1::before {
  content: "\f2ca"; }

.fa-thermometer-1::before {
  content: "\f2ca"; }

.fa-thermometer-quarter::before {
  content: "\f2ca"; }

.fa-cube::before {
  content: "\f1b2"; }

.fa-bitcoin-sign::before {
  content: "\e0b4"; }

.fa-shield-dog::before {
  content: "\e573"; }

.fa-solar-panel::before {
  content: "\f5ba"; }

.fa-lock-open::before {
  content: "\f3c1"; }

.fa-elevator::before {
  content: "\e16d"; }

.fa-money-bill-transfer::before {
  content: "\e528"; }

.fa-money-bill-trend-up::before {
  content: "\e529"; }

.fa-house-flood-water-circle-arrow-right::before {
  content: "\e50f"; }

.fa-square-poll-horizontal::before {
  content: "\f682"; }

.fa-poll-h::before {
  content: "\f682"; }

.fa-circle::before {
  content: "\f111"; }

.fa-backward-fast::before {
  content: "\f049"; }

.fa-fast-backward::before {
  content: "\f049"; }

.fa-recycle::before {
  content: "\f1b8"; }

.fa-user-astronaut::before {
  content: "\f4fb"; }

.fa-plane-slash::before {
  content: "\e069"; }

.fa-trademark::before {
  content: "\f25c"; }

.fa-basketball::before {
  content: "\f434"; }

.fa-basketball-ball::before {
  content: "\f434"; }

.fa-satellite-dish::before {
  content: "\f7c0"; }

.fa-circle-up::before {
  content: "\f35b"; }

.fa-arrow-alt-circle-up::before {
  content: "\f35b"; }

.fa-mobile-screen-button::before {
  content: "\f3cd"; }

.fa-mobile-alt::before {
  content: "\f3cd"; }

.fa-volume-high::before {
  content: "\f028"; }

.fa-volume-up::before {
  content: "\f028"; }

.fa-users-rays::before {
  content: "\e593"; }

.fa-wallet::before {
  content: "\f555"; }

.fa-clipboard-check::before {
  content: "\f46c"; }

.fa-file-audio::before {
  content: "\f1c7"; }

.fa-burger::before {
  content: "\f805"; }

.fa-hamburger::before {
  content: "\f805"; }

.fa-wrench::before {
  content: "\f0ad"; }

.fa-bugs::before {
  content: "\e4d0"; }

.fa-rupee-sign::before {
  content: "\f156"; }

.fa-rupee::before {
  content: "\f156"; }

.fa-file-image::before {
  content: "\f1c5"; }

.fa-circle-question::before {
  content: "\f059"; }

.fa-question-circle::before {
  content: "\f059"; }

.fa-plane-departure::before {
  content: "\f5b0"; }

.fa-handshake-slash::before {
  content: "\e060"; }

.fa-book-bookmark::before {
  content: "\e0bb"; }

.fa-code-branch::before {
  content: "\f126"; }

.fa-hat-cowboy::before {
  content: "\f8c0"; }

.fa-bridge::before {
  content: "\e4c8"; }

.fa-phone-flip::before {
  content: "\f879"; }

.fa-phone-alt::before {
  content: "\f879"; }

.fa-truck-front::before {
  content: "\e2b7"; }

.fa-cat::before {
  content: "\f6be"; }

.fa-anchor-circle-exclamation::before {
  content: "\e4ab"; }

.fa-truck-field::before {
  content: "\e58d"; }

.fa-route::before {
  content: "\f4d7"; }

.fa-clipboard-question::before {
  content: "\e4e3"; }

.fa-panorama::before {
  content: "\e209"; }

.fa-comment-medical::before {
  content: "\f7f5"; }

.fa-teeth-open::before {
  content: "\f62f"; }

.fa-file-circle-minus::before {
  content: "\e4ed"; }

.fa-tags::before {
  content: "\f02c"; }

.fa-wine-glass::before {
  content: "\f4e3"; }

.fa-forward-fast::before {
  content: "\f050"; }

.fa-fast-forward::before {
  content: "\f050"; }

.fa-face-meh-blank::before {
  content: "\f5a4"; }

.fa-meh-blank::before {
  content: "\f5a4"; }

.fa-square-parking::before {
  content: "\f540"; }

.fa-parking::before {
  content: "\f540"; }

.fa-house-signal::before {
  content: "\e012"; }

.fa-bars-progress::before {
  content: "\f828"; }

.fa-tasks-alt::before {
  content: "\f828"; }

.fa-faucet-drip::before {
  content: "\e006"; }

.fa-cart-flatbed::before {
  content: "\f474"; }

.fa-dolly-flatbed::before {
  content: "\f474"; }

.fa-ban-smoking::before {
  content: "\f54d"; }

.fa-smoking-ban::before {
  content: "\f54d"; }

.fa-terminal::before {
  content: "\f120"; }

.fa-mobile-button::before {
  content: "\f10b"; }

.fa-house-medical-flag::before {
  content: "\e514"; }

.fa-basket-shopping::before {
  content: "\f291"; }

.fa-shopping-basket::before {
  content: "\f291"; }

.fa-tape::before {
  content: "\f4db"; }

.fa-bus-simple::before {
  content: "\f55e"; }

.fa-bus-alt::before {
  content: "\f55e"; }

.fa-eye::before {
  content: "\f06e"; }

.fa-face-sad-cry::before {
  content: "\f5b3"; }

.fa-sad-cry::before {
  content: "\f5b3"; }

.fa-audio-description::before {
  content: "\f29e"; }

.fa-person-military-to-person::before {
  content: "\e54c"; }

.fa-file-shield::before {
  content: "\e4f0"; }

.fa-user-slash::before {
  content: "\f506"; }

.fa-pen::before {
  content: "\f304"; }

.fa-tower-observation::before {
  content: "\e586"; }

.fa-file-code::before {
  content: "\f1c9"; }

.fa-signal::before {
  content: "\f012"; }

.fa-signal-5::before {
  content: "\f012"; }

.fa-signal-perfect::before {
  content: "\f012"; }

.fa-bus::before {
  content: "\f207"; }

.fa-heart-circle-xmark::before {
  content: "\e501"; }

.fa-house-chimney::before {
  content: "\e3af"; }

.fa-home-lg::before {
  content: "\e3af"; }

.fa-window-maximize::before {
  content: "\f2d0"; }

.fa-face-frown::before {
  content: "\f119"; }

.fa-frown::before {
  content: "\f119"; }

.fa-prescription::before {
  content: "\f5b1"; }

.fa-shop::before {
  content: "\f54f"; }

.fa-store-alt::before {
  content: "\f54f"; }

.fa-floppy-disk::before {
  content: "\f0c7"; }

.fa-save::before {
  content: "\f0c7"; }

.fa-vihara::before {
  content: "\f6a7"; }

.fa-scale-unbalanced::before {
  content: "\f515"; }

.fa-balance-scale-left::before {
  content: "\f515"; }

.fa-sort-up::before {
  content: "\f0de"; }

.fa-sort-asc::before {
  content: "\f0de"; }

.fa-comment-dots::before {
  content: "\f4ad"; }

.fa-commenting::before {
  content: "\f4ad"; }

.fa-plant-wilt::before {
  content: "\e5aa"; }

.fa-diamond::before {
  content: "\f219"; }

.fa-face-grin-squint::before {
  content: "\f585"; }

.fa-grin-squint::before {
  content: "\f585"; }

.fa-hand-holding-dollar::before {
  content: "\f4c0"; }

.fa-hand-holding-usd::before {
  content: "\f4c0"; }

.fa-bacterium::before {
  content: "\e05a"; }

.fa-hand-pointer::before {
  content: "\f25a"; }

.fa-drum-steelpan::before {
  content: "\f56a"; }

.fa-hand-scissors::before {
  content: "\f257"; }

.fa-hands-praying::before {
  content: "\f684"; }

.fa-praying-hands::before {
  content: "\f684"; }

.fa-arrow-rotate-right::before {
  content: "\f01e"; }

.fa-arrow-right-rotate::before {
  content: "\f01e"; }

.fa-arrow-rotate-forward::before {
  content: "\f01e"; }

.fa-redo::before {
  content: "\f01e"; }

.fa-biohazard::before {
  content: "\f780"; }

.fa-location-crosshairs::before {
  content: "\f601"; }

.fa-location::before {
  content: "\f601"; }

.fa-mars-double::before {
  content: "\f227"; }

.fa-child-dress::before {
  content: "\e59c"; }

.fa-users-between-lines::before {
  content: "\e591"; }

.fa-lungs-virus::before {
  content: "\e067"; }

.fa-face-grin-tears::before {
  content: "\f588"; }

.fa-grin-tears::before {
  content: "\f588"; }

.fa-phone::before {
  content: "\f095"; }

.fa-calendar-xmark::before {
  content: "\f273"; }

.fa-calendar-times::before {
  content: "\f273"; }

.fa-child-reaching::before {
  content: "\e59d"; }

.fa-head-side-virus::before {
  content: "\e064"; }

.fa-user-gear::before {
  content: "\f4fe"; }

.fa-user-cog::before {
  content: "\f4fe"; }

.fa-arrow-up-1-9::before {
  content: "\f163"; }

.fa-sort-numeric-up::before {
  content: "\f163"; }

.fa-door-closed::before {
  content: "\f52a"; }

.fa-shield-virus::before {
  content: "\e06c"; }

.fa-dice-six::before {
  content: "\f526"; }

.fa-mosquito-net::before {
  content: "\e52c"; }

.fa-bridge-water::before {
  content: "\e4ce"; }

.fa-person-booth::before {
  content: "\f756"; }

.fa-text-width::before {
  content: "\f035"; }

.fa-hat-wizard::before {
  content: "\f6e8"; }

.fa-pen-fancy::before {
  content: "\f5ac"; }

.fa-person-digging::before {
  content: "\f85e"; }

.fa-digging::before {
  content: "\f85e"; }

.fa-trash::before {
  content: "\f1f8"; }

.fa-gauge-simple::before {
  content: "\f629"; }

.fa-gauge-simple-med::before {
  content: "\f629"; }

.fa-tachometer-average::before {
  content: "\f629"; }

.fa-book-medical::before {
  content: "\f7e6"; }

.fa-poo::before {
  content: "\f2fe"; }

.fa-quote-right::before {
  content: "\f10e"; }

.fa-quote-right-alt::before {
  content: "\f10e"; }

.fa-shirt::before {
  content: "\f553"; }

.fa-t-shirt::before {
  content: "\f553"; }

.fa-tshirt::before {
  content: "\f553"; }

.fa-cubes::before {
  content: "\f1b3"; }

.fa-divide::before {
  content: "\f529"; }

.fa-tenge-sign::before {
  content: "\f7d7"; }

.fa-tenge::before {
  content: "\f7d7"; }

.fa-headphones::before {
  content: "\f025"; }

.fa-hands-holding::before {
  content: "\f4c2"; }

.fa-hands-clapping::before {
  content: "\e1a8"; }

.fa-republican::before {
  content: "\f75e"; }

.fa-arrow-left::before {
  content: "\f060"; }

.fa-person-circle-xmark::before {
  content: "\e543"; }

.fa-ruler::before {
  content: "\f545"; }

.fa-align-left::before {
  content: "\f036"; }

.fa-dice-d6::before {
  content: "\f6d1"; }

.fa-restroom::before {
  content: "\f7bd"; }

.fa-j::before {
  content: "\4a"; }

.fa-users-viewfinder::before {
  content: "\e595"; }

.fa-file-video::before {
  content: "\f1c8"; }

.fa-up-right-from-square::before {
  content: "\f35d"; }

.fa-external-link-alt::before {
  content: "\f35d"; }

.fa-table-cells::before {
  content: "\f00a"; }

.fa-th::before {
  content: "\f00a"; }

.fa-file-pdf::before {
  content: "\f1c1"; }

.fa-book-bible::before {
  content: "\f647"; }

.fa-bible::before {
  content: "\f647"; }

.fa-o::before {
  content: "\4f"; }

.fa-suitcase-medical::before {
  content: "\f0fa"; }

.fa-medkit::before {
  content: "\f0fa"; }

.fa-user-secret::before {
  content: "\f21b"; }

.fa-otter::before {
  content: "\f700"; }

.fa-person-dress::before {
  content: "\f182"; }

.fa-female::before {
  content: "\f182"; }

.fa-comment-dollar::before {
  content: "\f651"; }

.fa-business-time::before {
  content: "\f64a"; }

.fa-briefcase-clock::before {
  content: "\f64a"; }

.fa-table-cells-large::before {
  content: "\f009"; }

.fa-th-large::before {
  content: "\f009"; }

.fa-book-tanakh::before {
  content: "\f827"; }

.fa-tanakh::before {
  content: "\f827"; }

.fa-phone-volume::before {
  content: "\f2a0"; }

.fa-volume-control-phone::before {
  content: "\f2a0"; }

.fa-hat-cowboy-side::before {
  content: "\f8c1"; }

.fa-clipboard-user::before {
  content: "\f7f3"; }

.fa-child::before {
  content: "\f1ae"; }

.fa-lira-sign::before {
  content: "\f195"; }

.fa-satellite::before {
  content: "\f7bf"; }

.fa-plane-lock::before {
  content: "\e558"; }

.fa-tag::before {
  content: "\f02b"; }

.fa-comment::before {
  content: "\f075"; }

.fa-cake-candles::before {
  content: "\f1fd"; }

.fa-birthday-cake::before {
  content: "\f1fd"; }

.fa-cake::before {
  content: "\f1fd"; }

.fa-envelope::before {
  content: "\f0e0"; }

.fa-angles-up::before {
  content: "\f102"; }

.fa-angle-double-up::before {
  content: "\f102"; }

.fa-paperclip::before {
  content: "\f0c6"; }

.fa-arrow-right-to-city::before {
  content: "\e4b3"; }

.fa-ribbon::before {
  content: "\f4d6"; }

.fa-lungs::before {
  content: "\f604"; }

.fa-arrow-up-9-1::before {
  content: "\f887"; }

.fa-sort-numeric-up-alt::before {
  content: "\f887"; }

.fa-litecoin-sign::before {
  content: "\e1d3"; }

.fa-border-none::before {
  content: "\f850"; }

.fa-circle-nodes::before {
  content: "\e4e2"; }

.fa-parachute-box::before {
  content: "\f4cd"; }

.fa-indent::before {
  content: "\f03c"; }

.fa-truck-field-un::before {
  content: "\e58e"; }

.fa-hourglass::before {
  content: "\f254"; }

.fa-hourglass-empty::before {
  content: "\f254"; }

.fa-mountain::before {
  content: "\f6fc"; }

.fa-user-doctor::before {
  content: "\f0f0"; }

.fa-user-md::before {
  content: "\f0f0"; }

.fa-circle-info::before {
  content: "\f05a"; }

.fa-info-circle::before {
  content: "\f05a"; }

.fa-cloud-meatball::before {
  content: "\f73b"; }

.fa-camera::before {
  content: "\f030"; }

.fa-camera-alt::before {
  content: "\f030"; }

.fa-square-virus::before {
  content: "\e578"; }

.fa-meteor::before {
  content: "\f753"; }

.fa-car-on::before {
  content: "\e4dd"; }

.fa-sleigh::before {
  content: "\f7cc"; }

.fa-arrow-down-1-9::before {
  content: "\f162"; }

.fa-sort-numeric-asc::before {
  content: "\f162"; }

.fa-sort-numeric-down::before {
  content: "\f162"; }

.fa-hand-holding-droplet::before {
  content: "\f4c1"; }

.fa-hand-holding-water::before {
  content: "\f4c1"; }

.fa-water::before {
  content: "\f773"; }

.fa-calendar-check::before {
  content: "\f274"; }

.fa-braille::before {
  content: "\f2a1"; }

.fa-prescription-bottle-medical::before {
  content: "\f486"; }

.fa-prescription-bottle-alt::before {
  content: "\f486"; }

.fa-landmark::before {
  content: "\f66f"; }

.fa-truck::before {
  content: "\f0d1"; }

.fa-crosshairs::before {
  content: "\f05b"; }

.fa-person-cane::before {
  content: "\e53c"; }

.fa-tent::before {
  content: "\e57d"; }

.fa-vest-patches::before {
  content: "\e086"; }

.fa-check-double::before {
  content: "\f560"; }

.fa-arrow-down-a-z::before {
  content: "\f15d"; }

.fa-sort-alpha-asc::before {
  content: "\f15d"; }

.fa-sort-alpha-down::before {
  content: "\f15d"; }

.fa-money-bill-wheat::before {
  content: "\e52a"; }

.fa-cookie::before {
  content: "\f563"; }

.fa-arrow-rotate-left::before {
  content: "\f0e2"; }

.fa-arrow-left-rotate::before {
  content: "\f0e2"; }

.fa-arrow-rotate-back::before {
  content: "\f0e2"; }

.fa-arrow-rotate-backward::before {
  content: "\f0e2"; }

.fa-undo::before {
  content: "\f0e2"; }

.fa-hard-drive::before {
  content: "\f0a0"; }

.fa-hdd::before {
  content: "\f0a0"; }

.fa-face-grin-squint-tears::before {
  content: "\f586"; }

.fa-grin-squint-tears::before {
  content: "\f586"; }

.fa-dumbbell::before {
  content: "\f44b"; }

.fa-rectangle-list::before {
  content: "\f022"; }

.fa-list-alt::before {
  content: "\f022"; }

.fa-tarp-droplet::before {
  content: "\e57c"; }

.fa-house-medical-circle-check::before {
  content: "\e511"; }

.fa-person-skiing-nordic::before {
  content: "\f7ca"; }

.fa-skiing-nordic::before {
  content: "\f7ca"; }

.fa-calendar-plus::before {
  content: "\f271"; }

.fa-plane-arrival::before {
  content: "\f5af"; }

.fa-circle-left::before {
  content: "\f359"; }

.fa-arrow-alt-circle-left::before {
  content: "\f359"; }

.fa-train-subway::before {
  content: "\f239"; }

.fa-subway::before {
  content: "\f239"; }

.fa-chart-gantt::before {
  content: "\e0e4"; }

.fa-indian-rupee-sign::before {
  content: "\e1bc"; }

.fa-indian-rupee::before {
  content: "\e1bc"; }

.fa-inr::before {
  content: "\e1bc"; }

.fa-crop-simple::before {
  content: "\f565"; }

.fa-crop-alt::before {
  content: "\f565"; }

.fa-money-bill-1::before {
  content: "\f3d1"; }

.fa-money-bill-alt::before {
  content: "\f3d1"; }

.fa-left-long::before {
  content: "\f30a"; }

.fa-long-arrow-alt-left::before {
  content: "\f30a"; }

.fa-dna::before {
  content: "\f471"; }

.fa-virus-slash::before {
  content: "\e075"; }

.fa-minus::before {
  content: "\f068"; }

.fa-subtract::before {
  content: "\f068"; }

.fa-chess::before {
  content: "\f439"; }

.fa-arrow-left-long::before {
  content: "\f177"; }

.fa-long-arrow-left::before {
  content: "\f177"; }

.fa-plug-circle-check::before {
  content: "\e55c"; }

.fa-street-view::before {
  content: "\f21d"; }

.fa-franc-sign::before {
  content: "\e18f"; }

.fa-volume-off::before {
  content: "\f026"; }

.fa-hands-asl-interpreting::before {
  content: "\f2a3"; }

.fa-american-sign-language-interpreting::before {
  content: "\f2a3"; }

.fa-asl-interpreting::before {
  content: "\f2a3"; }

.fa-hands-american-sign-language-interpreting::before {
  content: "\f2a3"; }

.fa-gear::before {
  content: "\f013"; }

.fa-cog::before {
  content: "\f013"; }

.fa-droplet-slash::before {
  content: "\f5c7"; }

.fa-tint-slash::before {
  content: "\f5c7"; }

.fa-mosque::before {
  content: "\f678"; }

.fa-mosquito::before {
  content: "\e52b"; }

.fa-star-of-david::before {
  content: "\f69a"; }

.fa-person-military-rifle::before {
  content: "\e54b"; }

.fa-cart-shopping::before {
  content: "\f07a"; }

.fa-shopping-cart::before {
  content: "\f07a"; }

.fa-vials::before {
  content: "\f493"; }

.fa-plug-circle-plus::before {
  content: "\e55f"; }

.fa-place-of-worship::before {
  content: "\f67f"; }

.fa-grip-vertical::before {
  content: "\f58e"; }

.fa-arrow-turn-up::before {
  content: "\f148"; }

.fa-level-up::before {
  content: "\f148"; }

.fa-u::before {
  content: "\55"; }

.fa-square-root-variable::before {
  content: "\f698"; }

.fa-square-root-alt::before {
  content: "\f698"; }

.fa-clock::before {
  content: "\f017"; }

.fa-clock-four::before {
  content: "\f017"; }

.fa-backward-step::before {
  content: "\f048"; }

.fa-step-backward::before {
  content: "\f048"; }

.fa-pallet::before {
  content: "\f482"; }

.fa-faucet::before {
  content: "\e005"; }

.fa-baseball-bat-ball::before {
  content: "\f432"; }

.fa-s::before {
  content: "\53"; }

.fa-timeline::before {
  content: "\e29c"; }

.fa-keyboard::before {
  content: "\f11c"; }

.fa-caret-down::before {
  content: "\f0d7"; }

.fa-house-chimney-medical::before {
  content: "\f7f2"; }

.fa-clinic-medical::before {
  content: "\f7f2"; }

.fa-temperature-three-quarters::before {
  content: "\f2c8"; }

.fa-temperature-3::before {
  content: "\f2c8"; }

.fa-thermometer-3::before {
  content: "\f2c8"; }

.fa-thermometer-three-quarters::before {
  content: "\f2c8"; }

.fa-mobile-screen::before {
  content: "\f3cf"; }

.fa-mobile-android-alt::before {
  content: "\f3cf"; }

.fa-plane-up::before {
  content: "\e22d"; }

.fa-piggy-bank::before {
  content: "\f4d3"; }

.fa-battery-half::before {
  content: "\f242"; }

.fa-battery-3::before {
  content: "\f242"; }

.fa-mountain-city::before {
  content: "\e52e"; }

.fa-coins::before {
  content: "\f51e"; }

.fa-khanda::before {
  content: "\f66d"; }

.fa-sliders::before {
  content: "\f1de"; }

.fa-sliders-h::before {
  content: "\f1de"; }

.fa-folder-tree::before {
  content: "\f802"; }

.fa-network-wired::before {
  content: "\f6ff"; }

.fa-map-pin::before {
  content: "\f276"; }

.fa-hamsa::before {
  content: "\f665"; }

.fa-cent-sign::before {
  content: "\e3f5"; }

.fa-flask::before {
  content: "\f0c3"; }

.fa-person-pregnant::before {
  content: "\e31e"; }

.fa-wand-sparkles::before {
  content: "\f72b"; }

.fa-ellipsis-vertical::before {
  content: "\f142"; }

.fa-ellipsis-v::before {
  content: "\f142"; }

.fa-ticket::before {
  content: "\f145"; }

.fa-power-off::before {
  content: "\f011"; }

.fa-right-long::before {
  content: "\f30b"; }

.fa-long-arrow-alt-right::before {
  content: "\f30b"; }

.fa-flag-usa::before {
  content: "\f74d"; }

.fa-laptop-file::before {
  content: "\e51d"; }

.fa-tty::before {
  content: "\f1e4"; }

.fa-teletype::before {
  content: "\f1e4"; }

.fa-diagram-next::before {
  content: "\e476"; }

.fa-person-rifle::before {
  content: "\e54e"; }

.fa-house-medical-circle-exclamation::before {
  content: "\e512"; }

.fa-closed-captioning::before {
  content: "\f20a"; }

.fa-person-hiking::before {
  content: "\f6ec"; }

.fa-hiking::before {
  content: "\f6ec"; }

.fa-venus-double::before {
  content: "\f226"; }

.fa-images::before {
  content: "\f302"; }

.fa-calculator::before {
  content: "\f1ec"; }

.fa-people-pulling::before {
  content: "\e535"; }

.fa-n::before {
  content: "\4e"; }

.fa-cable-car::before {
  content: "\f7da"; }

.fa-tram::before {
  content: "\f7da"; }

.fa-cloud-rain::before {
  content: "\f73d"; }

.fa-building-circle-xmark::before {
  content: "\e4d4"; }

.fa-ship::before {
  content: "\f21a"; }

.fa-arrows-down-to-line::before {
  content: "\e4b8"; }

.fa-download::before {
  content: "\f019"; }

.fa-face-grin::before {
  content: "\f580"; }

.fa-grin::before {
  content: "\f580"; }

.fa-delete-left::before {
  content: "\f55a"; }

.fa-backspace::before {
  content: "\f55a"; }

.fa-eye-dropper::before {
  content: "\f1fb"; }

.fa-eye-dropper-empty::before {
  content: "\f1fb"; }

.fa-eyedropper::before {
  content: "\f1fb"; }

.fa-file-circle-check::before {
  content: "\e5a0"; }

.fa-forward::before {
  content: "\f04e"; }

.fa-mobile::before {
  content: "\f3ce"; }

.fa-mobile-android::before {
  content: "\f3ce"; }

.fa-mobile-phone::before {
  content: "\f3ce"; }

.fa-face-meh::before {
  content: "\f11a"; }

.fa-meh::before {
  content: "\f11a"; }

.fa-align-center::before {
  content: "\f037"; }

.fa-book-skull::before {
  content: "\f6b7"; }

.fa-book-dead::before {
  content: "\f6b7"; }

.fa-id-card::before {
  content: "\f2c2"; }

.fa-drivers-license::before {
  content: "\f2c2"; }

.fa-outdent::before {
  content: "\f03b"; }

.fa-dedent::before {
  content: "\f03b"; }

.fa-heart-circle-exclamation::before {
  content: "\e4fe"; }

.fa-house::before {
  content: "\f015"; }

.fa-home::before {
  content: "\f015"; }

.fa-home-alt::before {
  content: "\f015"; }

.fa-home-lg-alt::before {
  content: "\f015"; }

.fa-calendar-week::before {
  content: "\f784"; }

.fa-laptop-medical::before {
  content: "\f812"; }

.fa-b::before {
  content: "\42"; }

.fa-file-medical::before {
  content: "\f477"; }

.fa-dice-one::before {
  content: "\f525"; }

.fa-kiwi-bird::before {
  content: "\f535"; }

.fa-arrow-right-arrow-left::before {
  content: "\f0ec"; }

.fa-exchange::before {
  content: "\f0ec"; }

.fa-rotate-right::before {
  content: "\f2f9"; }

.fa-redo-alt::before {
  content: "\f2f9"; }

.fa-rotate-forward::before {
  content: "\f2f9"; }

.fa-utensils::before {
  content: "\f2e7"; }

.fa-cutlery::before {
  content: "\f2e7"; }

.fa-arrow-up-wide-short::before {
  content: "\f161"; }

.fa-sort-amount-up::before {
  content: "\f161"; }

.fa-mill-sign::before {
  content: "\e1ed"; }

.fa-bowl-rice::before {
  content: "\e2eb"; }

.fa-skull::before {
  content: "\f54c"; }

.fa-tower-broadcast::before {
  content: "\f519"; }

.fa-broadcast-tower::before {
  content: "\f519"; }

.fa-truck-pickup::before {
  content: "\f63c"; }

.fa-up-long::before {
  content: "\f30c"; }

.fa-long-arrow-alt-up::before {
  content: "\f30c"; }

.fa-stop::before {
  content: "\f04d"; }

.fa-code-merge::before {
  content: "\f387"; }

.fa-upload::before {
  content: "\f093"; }

.fa-hurricane::before {
  content: "\f751"; }

.fa-mound::before {
  content: "\e52d"; }

.fa-toilet-portable::before {
  content: "\e583"; }

.fa-compact-disc::before {
  content: "\f51f"; }

.fa-file-arrow-down::before {
  content: "\f56d"; }

.fa-file-download::before {
  content: "\f56d"; }

.fa-caravan::before {
  content: "\f8ff"; }

.fa-shield-cat::before {
  content: "\e572"; }

.fa-bolt::before {
  content: "\f0e7"; }

.fa-zap::before {
  content: "\f0e7"; }

.fa-glass-water::before {
  content: "\e4f4"; }

.fa-oil-well::before {
  content: "\e532"; }

.fa-vault::before {
  content: "\e2c5"; }

.fa-mars::before {
  content: "\f222"; }

.fa-toilet::before {
  content: "\f7d8"; }

.fa-plane-circle-xmark::before {
  content: "\e557"; }

.fa-yen-sign::before {
  content: "\f157"; }

.fa-cny::before {
  content: "\f157"; }

.fa-jpy::before {
  content: "\f157"; }

.fa-rmb::before {
  content: "\f157"; }

.fa-yen::before {
  content: "\f157"; }

.fa-ruble-sign::before {
  content: "\f158"; }

.fa-rouble::before {
  content: "\f158"; }

.fa-rub::before {
  content: "\f158"; }

.fa-ruble::before {
  content: "\f158"; }

.fa-sun::before {
  content: "\f185"; }

.fa-guitar::before {
  content: "\f7a6"; }

.fa-face-laugh-wink::before {
  content: "\f59c"; }

.fa-laugh-wink::before {
  content: "\f59c"; }

.fa-horse-head::before {
  content: "\f7ab"; }

.fa-bore-hole::before {
  content: "\e4c3"; }

.fa-industry::before {
  content: "\f275"; }

.fa-circle-down::before {
  content: "\f358"; }

.fa-arrow-alt-circle-down::before {
  content: "\f358"; }

.fa-arrows-turn-to-dots::before {
  content: "\e4c1"; }

.fa-florin-sign::before {
  content: "\e184"; }

.fa-arrow-down-short-wide::before {
  content: "\f884"; }

.fa-sort-amount-desc::before {
  content: "\f884"; }

.fa-sort-amount-down-alt::before {
  content: "\f884"; }

.fa-less-than::before {
  content: "\3c"; }

.fa-angle-down::before {
  content: "\f107"; }

.fa-car-tunnel::before {
  content: "\e4de"; }

.fa-head-side-cough::before {
  content: "\e061"; }

.fa-grip-lines::before {
  content: "\f7a4"; }

.fa-thumbs-down::before {
  content: "\f165"; }

.fa-user-lock::before {
  content: "\f502"; }

.fa-arrow-right-long::before {
  content: "\f178"; }

.fa-long-arrow-right::before {
  content: "\f178"; }

.fa-anchor-circle-xmark::before {
  content: "\e4ac"; }

.fa-ellipsis::before {
  content: "\f141"; }

.fa-ellipsis-h::before {
  content: "\f141"; }

.fa-chess-pawn::before {
  content: "\f443"; }

.fa-kit-medical::before {
  content: "\f479"; }

.fa-first-aid::before {
  content: "\f479"; }

.fa-person-through-window::before {
  content: "\e5a9"; }

.fa-toolbox::before {
  content: "\f552"; }

.fa-hands-holding-circle::before {
  content: "\e4fb"; }

.fa-bug::before {
  content: "\f188"; }

.fa-credit-card::before {
  content: "\f09d"; }

.fa-credit-card-alt::before {
  content: "\f09d"; }

.fa-car::before {
  content: "\f1b9"; }

.fa-automobile::before {
  content: "\f1b9"; }

.fa-hand-holding-hand::before {
  content: "\e4f7"; }

.fa-book-open-reader::before {
  content: "\f5da"; }

.fa-book-reader::before {
  content: "\f5da"; }

.fa-mountain-sun::before {
  content: "\e52f"; }

.fa-arrows-left-right-to-line::before {
  content: "\e4ba"; }

.fa-dice-d20::before {
  content: "\f6cf"; }

.fa-truck-droplet::before {
  content: "\e58c"; }

.fa-file-circle-xmark::before {
  content: "\e5a1"; }

.fa-temperature-arrow-up::before {
  content: "\e040"; }

.fa-temperature-up::before {
  content: "\e040"; }

.fa-medal::before {
  content: "\f5a2"; }

.fa-bed::before {
  content: "\f236"; }

.fa-square-h::before {
  content: "\f0fd"; }

.fa-h-square::before {
  content: "\f0fd"; }

.fa-podcast::before {
  content: "\f2ce"; }

.fa-temperature-full::before {
  content: "\f2c7"; }

.fa-temperature-4::before {
  content: "\f2c7"; }

.fa-thermometer-4::before {
  content: "\f2c7"; }

.fa-thermometer-full::before {
  content: "\f2c7"; }

.fa-bell::before {
  content: "\f0f3"; }

.fa-superscript::before {
  content: "\f12b"; }

.fa-plug-circle-xmark::before {
  content: "\e560"; }

.fa-star-of-life::before {
  content: "\f621"; }

.fa-phone-slash::before {
  content: "\f3dd"; }

.fa-paint-roller::before {
  content: "\f5aa"; }

.fa-handshake-angle::before {
  content: "\f4c4"; }

.fa-hands-helping::before {
  content: "\f4c4"; }

.fa-location-dot::before {
  content: "\f3c5"; }

.fa-map-marker-alt::before {
  content: "\f3c5"; }

.fa-file::before {
  content: "\f15b"; }

.fa-greater-than::before {
  content: "\3e"; }

.fa-person-swimming::before {
  content: "\f5c4"; }

.fa-swimmer::before {
  content: "\f5c4"; }

.fa-arrow-down::before {
  content: "\f063"; }

.fa-droplet::before {
  content: "\f043"; }

.fa-tint::before {
  content: "\f043"; }

.fa-eraser::before {
  content: "\f12d"; }

.fa-earth-americas::before {
  content: "\f57d"; }

.fa-earth::before {
  content: "\f57d"; }

.fa-earth-america::before {
  content: "\f57d"; }

.fa-globe-americas::before {
  content: "\f57d"; }

.fa-person-burst::before {
  content: "\e53b"; }

.fa-dove::before {
  content: "\f4ba"; }

.fa-battery-empty::before {
  content: "\f244"; }

.fa-battery-0::before {
  content: "\f244"; }

.fa-socks::before {
  content: "\f696"; }

.fa-inbox::before {
  content: "\f01c"; }

.fa-section::before {
  content: "\e447"; }

.fa-gauge-high::before {
  content: "\f625"; }

.fa-tachometer-alt::before {
  content: "\f625"; }

.fa-tachometer-alt-fast::before {
  content: "\f625"; }

.fa-envelope-open-text::before {
  content: "\f658"; }

.fa-hospital::before {
  content: "\f0f8"; }

.fa-hospital-alt::before {
  content: "\f0f8"; }

.fa-hospital-wide::before {
  content: "\f0f8"; }

.fa-wine-bottle::before {
  content: "\f72f"; }

.fa-chess-rook::before {
  content: "\f447"; }

.fa-bars-staggered::before {
  content: "\f550"; }

.fa-reorder::before {
  content: "\f550"; }

.fa-stream::before {
  content: "\f550"; }

.fa-dharmachakra::before {
  content: "\f655"; }

.fa-hotdog::before {
  content: "\f80f"; }

.fa-person-walking-with-cane::before {
  content: "\f29d"; }

.fa-blind::before {
  content: "\f29d"; }

.fa-drum::before {
  content: "\f569"; }

.fa-ice-cream::before {
  content: "\f810"; }

.fa-heart-circle-bolt::before {
  content: "\e4fc"; }

.fa-fax::before {
  content: "\f1ac"; }

.fa-paragraph::before {
  content: "\f1dd"; }

.fa-check-to-slot::before {
  content: "\f772"; }

.fa-vote-yea::before {
  content: "\f772"; }

.fa-star-half::before {
  content: "\f089"; }

.fa-boxes-stacked::before {
  content: "\f468"; }

.fa-boxes::before {
  content: "\f468"; }

.fa-boxes-alt::before {
  content: "\f468"; }

.fa-link::before {
  content: "\f0c1"; }

.fa-chain::before {
  content: "\f0c1"; }

.fa-ear-listen::before {
  content: "\f2a2"; }

.fa-assistive-listening-systems::before {
  content: "\f2a2"; }

.fa-tree-city::before {
  content: "\e587"; }

.fa-play::before {
  content: "\f04b"; }

.fa-font::before {
  content: "\f031"; }

.fa-table-cells-row-lock::before {
  content: "\e67a"; }

.fa-rupiah-sign::before {
  content: "\e23d"; }

.fa-magnifying-glass::before {
  content: "\f002"; }

.fa-search::before {
  content: "\f002"; }

.fa-table-tennis-paddle-ball::before {
  content: "\f45d"; }

.fa-ping-pong-paddle-ball::before {
  content: "\f45d"; }

.fa-table-tennis::before {
  content: "\f45d"; }

.fa-person-dots-from-line::before {
  content: "\f470"; }

.fa-diagnoses::before {
  content: "\f470"; }

.fa-trash-can-arrow-up::before {
  content: "\f82a"; }

.fa-trash-restore-alt::before {
  content: "\f82a"; }

.fa-naira-sign::before {
  content: "\e1f6"; }

.fa-cart-arrow-down::before {
  content: "\f218"; }

.fa-walkie-talkie::before {
  content: "\f8ef"; }

.fa-file-pen::before {
  content: "\f31c"; }

.fa-file-edit::before {
  content: "\f31c"; }

.fa-receipt::before {
  content: "\f543"; }

.fa-square-pen::before {
  content: "\f14b"; }

.fa-pen-square::before {
  content: "\f14b"; }

.fa-pencil-square::before {
  content: "\f14b"; }

.fa-suitcase-rolling::before {
  content: "\f5c1"; }

.fa-person-circle-exclamation::before {
  content: "\e53f"; }

.fa-chevron-down::before {
  content: "\f078"; }

.fa-battery-full::before {
  content: "\f240"; }

.fa-battery::before {
  content: "\f240"; }

.fa-battery-5::before {
  content: "\f240"; }

.fa-skull-crossbones::before {
  content: "\f714"; }

.fa-code-compare::before {
  content: "\e13a"; }

.fa-list-ul::before {
  content: "\f0ca"; }

.fa-list-dots::before {
  content: "\f0ca"; }

.fa-school-lock::before {
  content: "\e56f"; }

.fa-tower-cell::before {
  content: "\e585"; }

.fa-down-long::before {
  content: "\f309"; }

.fa-long-arrow-alt-down::before {
  content: "\f309"; }

.fa-ranking-star::before {
  content: "\e561"; }

.fa-chess-king::before {
  content: "\f43f"; }

.fa-person-harassing::before {
  content: "\e549"; }

.fa-brazilian-real-sign::before {
  content: "\e46c"; }

.fa-landmark-dome::before {
  content: "\f752"; }

.fa-landmark-alt::before {
  content: "\f752"; }

.fa-arrow-up::before {
  content: "\f062"; }

.fa-tv::before {
  content: "\f26c"; }

.fa-television::before {
  content: "\f26c"; }

.fa-tv-alt::before {
  content: "\f26c"; }

.fa-shrimp::before {
  content: "\e448"; }

.fa-list-check::before {
  content: "\f0ae"; }

.fa-tasks::before {
  content: "\f0ae"; }

.fa-jug-detergent::before {
  content: "\e519"; }

.fa-circle-user::before {
  content: "\f2bd"; }

.fa-user-circle::before {
  content: "\f2bd"; }

.fa-user-shield::before {
  content: "\f505"; }

.fa-wind::before {
  content: "\f72e"; }

.fa-car-burst::before {
  content: "\f5e1"; }

.fa-car-crash::before {
  content: "\f5e1"; }

.fa-y::before {
  content: "\59"; }

.fa-person-snowboarding::before {
  content: "\f7ce"; }

.fa-snowboarding::before {
  content: "\f7ce"; }

.fa-truck-fast::before {
  content: "\f48b"; }

.fa-shipping-fast::before {
  content: "\f48b"; }

.fa-fish::before {
  content: "\f578"; }

.fa-user-graduate::before {
  content: "\f501"; }

.fa-circle-half-stroke::before {
  content: "\f042"; }

.fa-adjust::before {
  content: "\f042"; }

.fa-clapperboard::before {
  content: "\e131"; }

.fa-circle-radiation::before {
  content: "\f7ba"; }

.fa-radiation-alt::before {
  content: "\f7ba"; }

.fa-baseball::before {
  content: "\f433"; }

.fa-baseball-ball::before {
  content: "\f433"; }

.fa-jet-fighter-up::before {
  content: "\e518"; }

.fa-diagram-project::before {
  content: "\f542"; }

.fa-project-diagram::before {
  content: "\f542"; }

.fa-copy::before {
  content: "\f0c5"; }

.fa-volume-xmark::before {
  content: "\f6a9"; }

.fa-volume-mute::before {
  content: "\f6a9"; }

.fa-volume-times::before {
  content: "\f6a9"; }

.fa-hand-sparkles::before {
  content: "\e05d"; }

.fa-grip::before {
  content: "\f58d"; }

.fa-grip-horizontal::before {
  content: "\f58d"; }

.fa-share-from-square::before {
  content: "\f14d"; }

.fa-share-square::before {
  content: "\f14d"; }

.fa-child-combatant::before {
  content: "\e4e0"; }

.fa-child-rifle::before {
  content: "\e4e0"; }

.fa-gun::before {
  content: "\e19b"; }

.fa-square-phone::before {
  content: "\f098"; }

.fa-phone-square::before {
  content: "\f098"; }

.fa-plus::before {
  content: "\2b"; }

.fa-add::before {
  content: "\2b"; }

.fa-expand::before {
  content: "\f065"; }

.fa-computer::before {
  content: "\e4e5"; }

.fa-xmark::before {
  content: "\f00d"; }

.fa-close::before {
  content: "\f00d"; }

.fa-multiply::before {
  content: "\f00d"; }

.fa-remove::before {
  content: "\f00d"; }

.fa-times::before {
  content: "\f00d"; }

.fa-arrows-up-down-left-right::before {
  content: "\f047"; }

.fa-arrows::before {
  content: "\f047"; }

.fa-chalkboard-user::before {
  content: "\f51c"; }

.fa-chalkboard-teacher::before {
  content: "\f51c"; }

.fa-peso-sign::before {
  content: "\e222"; }

.fa-building-shield::before {
  content: "\e4d8"; }

.fa-baby::before {
  content: "\f77c"; }

.fa-users-line::before {
  content: "\e592"; }

.fa-quote-left::before {
  content: "\f10d"; }

.fa-quote-left-alt::before {
  content: "\f10d"; }

.fa-tractor::before {
  content: "\f722"; }

.fa-trash-arrow-up::before {
  content: "\f829"; }

.fa-trash-restore::before {
  content: "\f829"; }

.fa-arrow-down-up-lock::before {
  content: "\e4b0"; }

.fa-lines-leaning::before {
  content: "\e51e"; }

.fa-ruler-combined::before {
  content: "\f546"; }

.fa-copyright::before {
  content: "\f1f9"; }

.fa-equals::before {
  content: "\3d"; }

.fa-blender::before {
  content: "\f517"; }

.fa-teeth::before {
  content: "\f62e"; }

.fa-shekel-sign::before {
  content: "\f20b"; }

.fa-ils::before {
  content: "\f20b"; }

.fa-shekel::before {
  content: "\f20b"; }

.fa-sheqel::before {
  content: "\f20b"; }

.fa-sheqel-sign::before {
  content: "\f20b"; }

.fa-map::before {
  content: "\f279"; }

.fa-rocket::before {
  content: "\f135"; }

.fa-photo-film::before {
  content: "\f87c"; }

.fa-photo-video::before {
  content: "\f87c"; }

.fa-folder-minus::before {
  content: "\f65d"; }

.fa-store::before {
  content: "\f54e"; }

.fa-arrow-trend-up::before {
  content: "\e098"; }

.fa-plug-circle-minus::before {
  content: "\e55e"; }

.fa-sign-hanging::before {
  content: "\f4d9"; }

.fa-sign::before {
  content: "\f4d9"; }

.fa-bezier-curve::before {
  content: "\f55b"; }

.fa-bell-slash::before {
  content: "\f1f6"; }

.fa-tablet::before {
  content: "\f3fb"; }

.fa-tablet-android::before {
  content: "\f3fb"; }

.fa-school-flag::before {
  content: "\e56e"; }

.fa-fill::before {
  content: "\f575"; }

.fa-angle-up::before {
  content: "\f106"; }

.fa-drumstick-bite::before {
  content: "\f6d7"; }

.fa-holly-berry::before {
  content: "\f7aa"; }

.fa-chevron-left::before {
  content: "\f053"; }

.fa-bacteria::before {
  content: "\e059"; }

.fa-hand-lizard::before {
  content: "\f258"; }

.fa-notdef::before {
  content: "\e1fe"; }

.fa-disease::before {
  content: "\f7fa"; }

.fa-briefcase-medical::before {
  content: "\f469"; }

.fa-genderless::before {
  content: "\f22d"; }

.fa-chevron-right::before {
  content: "\f054"; }

.fa-retweet::before {
  content: "\f079"; }

.fa-car-rear::before {
  content: "\f5de"; }

.fa-car-alt::before {
  content: "\f5de"; }

.fa-pump-soap::before {
  content: "\e06b"; }

.fa-video-slash::before {
  content: "\f4e2"; }

.fa-battery-quarter::before {
  content: "\f243"; }

.fa-battery-2::before {
  content: "\f243"; }

.fa-radio::before {
  content: "\f8d7"; }

.fa-baby-carriage::before {
  content: "\f77d"; }

.fa-carriage-baby::before {
  content: "\f77d"; }

.fa-traffic-light::before {
  content: "\f637"; }

.fa-thermometer::before {
  content: "\f491"; }

.fa-vr-cardboard::before {
  content: "\f729"; }

.fa-hand-middle-finger::before {
  content: "\f806"; }

.fa-percent::before {
  content: "\25"; }

.fa-percentage::before {
  content: "\25"; }

.fa-truck-moving::before {
  content: "\f4df"; }

.fa-glass-water-droplet::before {
  content: "\e4f5"; }

.fa-display::before {
  content: "\e163"; }

.fa-face-smile::before {
  content: "\f118"; }

.fa-smile::before {
  content: "\f118"; }

.fa-thumbtack::before {
  content: "\f08d"; }

.fa-thumb-tack::before {
  content: "\f08d"; }

.fa-trophy::before {
  content: "\f091"; }

.fa-person-praying::before {
  content: "\f683"; }

.fa-pray::before {
  content: "\f683"; }

.fa-hammer::before {
  content: "\f6e3"; }

.fa-hand-peace::before {
  content: "\f25b"; }

.fa-rotate::before {
  content: "\f2f1"; }

.fa-sync-alt::before {
  content: "\f2f1"; }

.fa-spinner::before {
  content: "\f110"; }

.fa-robot::before {
  content: "\f544"; }

.fa-peace::before {
  content: "\f67c"; }

.fa-gears::before {
  content: "\f085"; }

.fa-cogs::before {
  content: "\f085"; }

.fa-warehouse::before {
  content: "\f494"; }

.fa-arrow-up-right-dots::before {
  content: "\e4b7"; }

.fa-splotch::before {
  content: "\f5bc"; }

.fa-face-grin-hearts::before {
  content: "\f584"; }

.fa-grin-hearts::before {
  content: "\f584"; }

.fa-dice-four::before {
  content: "\f524"; }

.fa-sim-card::before {
  content: "\f7c4"; }

.fa-transgender::before {
  content: "\f225"; }

.fa-transgender-alt::before {
  content: "\f225"; }

.fa-mercury::before {
  content: "\f223"; }

.fa-arrow-turn-down::before {
  content: "\f149"; }

.fa-level-down::before {
  content: "\f149"; }

.fa-person-falling-burst::before {
  content: "\e547"; }

.fa-award::before {
  content: "\f559"; }

.fa-ticket-simple::before {
  content: "\f3ff"; }

.fa-ticket-alt::before {
  content: "\f3ff"; }

.fa-building::before {
  content: "\f1ad"; }

.fa-angles-left::before {
  content: "\f100"; }

.fa-angle-double-left::before {
  content: "\f100"; }

.fa-qrcode::before {
  content: "\f029"; }

.fa-clock-rotate-left::before {
  content: "\f1da"; }

.fa-history::before {
  content: "\f1da"; }

.fa-face-grin-beam-sweat::before {
  content: "\f583"; }

.fa-grin-beam-sweat::before {
  content: "\f583"; }

.fa-file-export::before {
  content: "\f56e"; }

.fa-arrow-right-from-file::before {
  content: "\f56e"; }

.fa-shield::before {
  content: "\f132"; }

.fa-shield-blank::before {
  content: "\f132"; }

.fa-arrow-up-short-wide::before {
  content: "\f885"; }

.fa-sort-amount-up-alt::before {
  content: "\f885"; }

.fa-house-medical::before {
  content: "\e3b2"; }

.fa-golf-ball-tee::before {
  content: "\f450"; }

.fa-golf-ball::before {
  content: "\f450"; }

.fa-circle-chevron-left::before {
  content: "\f137"; }

.fa-chevron-circle-left::before {
  content: "\f137"; }

.fa-house-chimney-window::before {
  content: "\e00d"; }

.fa-pen-nib::before {
  content: "\f5ad"; }

.fa-tent-arrow-turn-left::before {
  content: "\e580"; }

.fa-tents::before {
  content: "\e582"; }

.fa-wand-magic::before {
  content: "\f0d0"; }

.fa-magic::before {
  content: "\f0d0"; }

.fa-dog::before {
  content: "\f6d3"; }

.fa-carrot::before {
  content: "\f787"; }

.fa-moon::before {
  content: "\f186"; }

.fa-wine-glass-empty::before {
  content: "\f5ce"; }

.fa-wine-glass-alt::before {
  content: "\f5ce"; }

.fa-cheese::before {
  content: "\f7ef"; }

.fa-yin-yang::before {
  content: "\f6ad"; }

.fa-music::before {
  content: "\f001"; }

.fa-code-commit::before {
  content: "\f386"; }

.fa-temperature-low::before {
  content: "\f76b"; }

.fa-person-biking::before {
  content: "\f84a"; }

.fa-biking::before {
  content: "\f84a"; }

.fa-broom::before {
  content: "\f51a"; }

.fa-shield-heart::before {
  content: "\e574"; }

.fa-gopuram::before {
  content: "\f664"; }

.fa-earth-oceania::before {
  content: "\e47b"; }

.fa-globe-oceania::before {
  content: "\e47b"; }

.fa-square-xmark::before {
  content: "\f2d3"; }

.fa-times-square::before {
  content: "\f2d3"; }

.fa-xmark-square::before {
  content: "\f2d3"; }

.fa-hashtag::before {
  content: "\23"; }

.fa-up-right-and-down-left-from-center::before {
  content: "\f424"; }

.fa-expand-alt::before {
  content: "\f424"; }

.fa-oil-can::before {
  content: "\f613"; }

.fa-t::before {
  content: "\54"; }

.fa-hippo::before {
  content: "\f6ed"; }

.fa-chart-column::before {
  content: "\e0e3"; }

.fa-infinity::before {
  content: "\f534"; }

.fa-vial-circle-check::before {
  content: "\e596"; }

.fa-person-arrow-down-to-line::before {
  content: "\e538"; }

.fa-voicemail::before {
  content: "\f897"; }

.fa-fan::before {
  content: "\f863"; }

.fa-person-walking-luggage::before {
  content: "\e554"; }

.fa-up-down::before {
  content: "\f338"; }

.fa-arrows-alt-v::before {
  content: "\f338"; }

.fa-cloud-moon-rain::before {
  content: "\f73c"; }

.fa-calendar::before {
  content: "\f133"; }

.fa-trailer::before {
  content: "\e041"; }

.fa-bahai::before {
  content: "\f666"; }

.fa-haykal::before {
  content: "\f666"; }

.fa-sd-card::before {
  content: "\f7c2"; }

.fa-dragon::before {
  content: "\f6d5"; }

.fa-shoe-prints::before {
  content: "\f54b"; }

.fa-circle-plus::before {
  content: "\f055"; }

.fa-plus-circle::before {
  content: "\f055"; }

.fa-face-grin-tongue-wink::before {
  content: "\f58b"; }

.fa-grin-tongue-wink::before {
  content: "\f58b"; }

.fa-hand-holding::before {
  content: "\f4bd"; }

.fa-plug-circle-exclamation::before {
  content: "\e55d"; }

.fa-link-slash::before {
  content: "\f127"; }

.fa-chain-broken::before {
  content: "\f127"; }

.fa-chain-slash::before {
  content: "\f127"; }

.fa-unlink::before {
  content: "\f127"; }

.fa-clone::before {
  content: "\f24d"; }

.fa-person-walking-arrow-loop-left::before {
  content: "\e551"; }

.fa-arrow-up-z-a::before {
  content: "\f882"; }

.fa-sort-alpha-up-alt::before {
  content: "\f882"; }

.fa-fire-flame-curved::before {
  content: "\f7e4"; }

.fa-fire-alt::before {
  content: "\f7e4"; }

.fa-tornado::before {
  content: "\f76f"; }

.fa-file-circle-plus::before {
  content: "\e494"; }

.fa-book-quran::before {
  content: "\f687"; }

.fa-quran::before {
  content: "\f687"; }

.fa-anchor::before {
  content: "\f13d"; }

.fa-border-all::before {
  content: "\f84c"; }

.fa-face-angry::before {
  content: "\f556"; }

.fa-angry::before {
  content: "\f556"; }

.fa-cookie-bite::before {
  content: "\f564"; }

.fa-arrow-trend-down::before {
  content: "\e097"; }

.fa-rss::before {
  content: "\f09e"; }

.fa-feed::before {
  content: "\f09e"; }

.fa-draw-polygon::before {
  content: "\f5ee"; }

.fa-scale-balanced::before {
  content: "\f24e"; }

.fa-balance-scale::before {
  content: "\f24e"; }

.fa-gauge-simple-high::before {
  content: "\f62a"; }

.fa-tachometer::before {
  content: "\f62a"; }

.fa-tachometer-fast::before {
  content: "\f62a"; }

.fa-shower::before {
  content: "\f2cc"; }

.fa-desktop::before {
  content: "\f390"; }

.fa-desktop-alt::before {
  content: "\f390"; }

.fa-m::before {
  content: "\4d"; }

.fa-table-list::before {
  content: "\f00b"; }

.fa-th-list::before {
  content: "\f00b"; }

.fa-comment-sms::before {
  content: "\f7cd"; }

.fa-sms::before {
  content: "\f7cd"; }

.fa-book::before {
  content: "\f02d"; }

.fa-user-plus::before {
  content: "\f234"; }

.fa-check::before {
  content: "\f00c"; }

.fa-battery-three-quarters::before {
  content: "\f241"; }

.fa-battery-4::before {
  content: "\f241"; }

.fa-house-circle-check::before {
  content: "\e509"; }

.fa-angle-left::before {
  content: "\f104"; }

.fa-diagram-successor::before {
  content: "\e47a"; }

.fa-truck-arrow-right::before {
  content: "\e58b"; }

.fa-arrows-split-up-and-left::before {
  content: "\e4bc"; }

.fa-hand-fist::before {
  content: "\f6de"; }

.fa-fist-raised::before {
  content: "\f6de"; }

.fa-cloud-moon::before {
  content: "\f6c3"; }

.fa-briefcase::before {
  content: "\f0b1"; }

.fa-person-falling::before {
  content: "\e546"; }

.fa-image-portrait::before {
  content: "\f3e0"; }

.fa-portrait::before {
  content: "\f3e0"; }

.fa-user-tag::before {
  content: "\f507"; }

.fa-rug::before {
  content: "\e569"; }

.fa-earth-europe::before {
  content: "\f7a2"; }

.fa-globe-europe::before {
  content: "\f7a2"; }

.fa-cart-flatbed-suitcase::before {
  content: "\f59d"; }

.fa-luggage-cart::before {
  content: "\f59d"; }

.fa-rectangle-xmark::before {
  content: "\f410"; }

.fa-rectangle-times::before {
  content: "\f410"; }

.fa-times-rectangle::before {
  content: "\f410"; }

.fa-window-close::before {
  content: "\f410"; }

.fa-baht-sign::before {
  content: "\e0ac"; }

.fa-book-open::before {
  content: "\f518"; }

.fa-book-journal-whills::before {
  content: "\f66a"; }

.fa-journal-whills::before {
  content: "\f66a"; }

.fa-handcuffs::before {
  content: "\e4f8"; }

.fa-triangle-exclamation::before {
  content: "\f071"; }

.fa-exclamation-triangle::before {
  content: "\f071"; }

.fa-warning::before {
  content: "\f071"; }

.fa-database::before {
  content: "\f1c0"; }

.fa-share::before {
  content: "\f064"; }

.fa-mail-forward::before {
  content: "\f064"; }

.fa-bottle-droplet::before {
  content: "\e4c4"; }

.fa-mask-face::before {
  content: "\e1d7"; }

.fa-hill-rockslide::before {
  content: "\e508"; }

.fa-right-left::before {
  content: "\f362"; }

.fa-exchange-alt::before {
  content: "\f362"; }

.fa-paper-plane::before {
  content: "\f1d8"; }

.fa-road-circle-exclamation::before {
  content: "\e565"; }

.fa-dungeon::before {
  content: "\f6d9"; }

.fa-align-right::before {
  content: "\f038"; }

.fa-money-bill-1-wave::before {
  content: "\f53b"; }

.fa-money-bill-wave-alt::before {
  content: "\f53b"; }

.fa-life-ring::before {
  content: "\f1cd"; }

.fa-hands::before {
  content: "\f2a7"; }

.fa-sign-language::before {
  content: "\f2a7"; }

.fa-signing::before {
  content: "\f2a7"; }

.fa-calendar-day::before {
  content: "\f783"; }

.fa-water-ladder::before {
  content: "\f5c5"; }

.fa-ladder-water::before {
  content: "\f5c5"; }

.fa-swimming-pool::before {
  content: "\f5c5"; }

.fa-arrows-up-down::before {
  content: "\f07d"; }

.fa-arrows-v::before {
  content: "\f07d"; }

.fa-face-grimace::before {
  content: "\f57f"; }

.fa-grimace::before {
  content: "\f57f"; }

.fa-wheelchair-move::before {
  content: "\e2ce"; }

.fa-wheelchair-alt::before {
  content: "\e2ce"; }

.fa-turn-down::before {
  content: "\f3be"; }

.fa-level-down-alt::before {
  content: "\f3be"; }

.fa-person-walking-arrow-right::before {
  content: "\e552"; }

.fa-square-envelope::before {
  content: "\f199"; }

.fa-envelope-square::before {
  content: "\f199"; }

.fa-dice::before {
  content: "\f522"; }

.fa-bowling-ball::before {
  content: "\f436"; }

.fa-brain::before {
  content: "\f5dc"; }

.fa-bandage::before {
  content: "\f462"; }

.fa-band-aid::before {
  content: "\f462"; }

.fa-calendar-minus::before {
  content: "\f272"; }

.fa-circle-xmark::before {
  content: "\f057"; }

.fa-times-circle::before {
  content: "\f057"; }

.fa-xmark-circle::before {
  content: "\f057"; }

.fa-gifts::before {
  content: "\f79c"; }

.fa-hotel::before {
  content: "\f594"; }

.fa-earth-asia::before {
  content: "\f57e"; }

.fa-globe-asia::before {
  content: "\f57e"; }

.fa-id-card-clip::before {
  content: "\f47f"; }

.fa-id-card-alt::before {
  content: "\f47f"; }

.fa-magnifying-glass-plus::before {
  content: "\f00e"; }

.fa-search-plus::before {
  content: "\f00e"; }

.fa-thumbs-up::before {
  content: "\f164"; }

.fa-user-clock::before {
  content: "\f4fd"; }

.fa-hand-dots::before {
  content: "\f461"; }

.fa-allergies::before {
  content: "\f461"; }

.fa-file-invoice::before {
  content: "\f570"; }

.fa-window-minimize::before {
  content: "\f2d1"; }

.fa-mug-saucer::before {
  content: "\f0f4"; }

.fa-coffee::before {
  content: "\f0f4"; }

.fa-brush::before {
  content: "\f55d"; }

.fa-mask::before {
  content: "\f6fa"; }

.fa-magnifying-glass-minus::before {
  content: "\f010"; }

.fa-search-minus::before {
  content: "\f010"; }

.fa-ruler-vertical::before {
  content: "\f548"; }

.fa-user-large::before {
  content: "\f406"; }

.fa-user-alt::before {
  content: "\f406"; }

.fa-train-tram::before {
  content: "\e5b4"; }

.fa-user-nurse::before {
  content: "\f82f"; }

.fa-syringe::before {
  content: "\f48e"; }

.fa-cloud-sun::before {
  content: "\f6c4"; }

.fa-stopwatch-20::before {
  content: "\e06f"; }

.fa-square-full::before {
  content: "\f45c"; }

.fa-magnet::before {
  content: "\f076"; }

.fa-jar::before {
  content: "\e516"; }

.fa-note-sticky::before {
  content: "\f249"; }

.fa-sticky-note::before {
  content: "\f249"; }

.fa-bug-slash::before {
  content: "\e490"; }

.fa-arrow-up-from-water-pump::before {
  content: "\e4b6"; }

.fa-bone::before {
  content: "\f5d7"; }

.fa-user-injured::before {
  content: "\f728"; }

.fa-face-sad-tear::before {
  content: "\f5b4"; }

.fa-sad-tear::before {
  content: "\f5b4"; }

.fa-plane::before {
  content: "\f072"; }

.fa-tent-arrows-down::before {
  content: "\e581"; }

.fa-exclamation::before {
  content: "\21"; }

.fa-arrows-spin::before {
  content: "\e4bb"; }

.fa-print::before {
  content: "\f02f"; }

.fa-turkish-lira-sign::before {
  content: "\e2bb"; }

.fa-try::before {
  content: "\e2bb"; }

.fa-turkish-lira::before {
  content: "\e2bb"; }

.fa-dollar-sign::before {
  content: "\24"; }

.fa-dollar::before {
  content: "\24"; }

.fa-usd::before {
  content: "\24"; }

.fa-x::before {
  content: "\58"; }

.fa-magnifying-glass-dollar::before {
  content: "\f688"; }

.fa-search-dollar::before {
  content: "\f688"; }

.fa-users-gear::before {
  content: "\f509"; }

.fa-users-cog::before {
  content: "\f509"; }

.fa-person-military-pointing::before {
  content: "\e54a"; }

.fa-building-columns::before {
  content: "\f19c"; }

.fa-bank::before {
  content: "\f19c"; }

.fa-institution::before {
  content: "\f19c"; }

.fa-museum::before {
  content: "\f19c"; }

.fa-university::before {
  content: "\f19c"; }

.fa-umbrella::before {
  content: "\f0e9"; }

.fa-trowel::before {
  content: "\e589"; }

.fa-d::before {
  content: "\44"; }

.fa-stapler::before {
  content: "\e5af"; }

.fa-masks-theater::before {
  content: "\f630"; }

.fa-theater-masks::before {
  content: "\f630"; }

.fa-kip-sign::before {
  content: "\e1c4"; }

.fa-hand-point-left::before {
  content: "\f0a5"; }

.fa-handshake-simple::before {
  content: "\f4c6"; }

.fa-handshake-alt::before {
  content: "\f4c6"; }

.fa-jet-fighter::before {
  content: "\f0fb"; }

.fa-fighter-jet::before {
  content: "\f0fb"; }

.fa-square-share-nodes::before {
  content: "\f1e1"; }

.fa-share-alt-square::before {
  content: "\f1e1"; }

.fa-barcode::before {
  content: "\f02a"; }

.fa-plus-minus::before {
  content: "\e43c"; }

.fa-video::before {
  content: "\f03d"; }

.fa-video-camera::before {
  content: "\f03d"; }

.fa-graduation-cap::before {
  content: "\f19d"; }

.fa-mortar-board::before {
  content: "\f19d"; }

.fa-hand-holding-medical::before {
  content: "\e05c"; }

.fa-person-circle-check::before {
  content: "\e53e"; }

.fa-turn-up::before {
  content: "\f3bf"; }

.fa-level-up-alt::before {
  content: "\f3bf"; }

.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0; }

.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0; }

/*!
 * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: 'Font Awesome 6 Free';
  --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; }

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/rsrc/css/Fontawesome/webfonts/fa-solid-900.woff2") format("woff2"), url("/rsrc/css/Fontawesome/webfonts/fa-solid-900.ttf") format("truetype"); }

.fas,
.fa-solid {
  font-weight: 900; }

/********( CSS Index )*********************************************************/
/*
	0. CSS Introduction

	1. Semantic Helper Classes
		1.1. Code

	2. Non-Sematic Helper Classes
		2.1. auto-width
		2.2. Border

		2.3. Floats
			2.3.1. Float Left
			2.3.2. Float Right

		2.4. Clears
			2.4.1. Clear None
			2.4.2. Clear Both
			2.4.2. Clear Left
			2.4.2. Clear Right

		2.5.Lists
			2.5.1. Remove List Bullets
			2.5.2. Make a List Horizontal
			2.5.3. Multi-Column List
			2.5.4. threeColumnList
			2.5.5. DefinitionList

		2.6. Fix Float Clearing
		2.7. Colours
		2.8. Fonts
		2.9. CSS tooltips

	3. CSS only popup on hover
	4. JQuery and JQuery UI
	EOF
*/
/********( CSS Introduction )**************************************************/
/*
	This document contains classes that make it easier to style content by
	providing a solution to most common CSS tasks, like styling lists in a
	certain fashion or dealing with floats, etc.
*/
/********( hint )********************************************/
.hint--rounded:before {
  border-bottom-color: #87cefa;
}
.hint--rounded:after {
  background-color: #fff;
  border: 2px solid #87cefa;
  color: #777;
  text-shadow: 0 0 0;
  font-weight: normal;
  font-size: 13px;
  font-family: Verdana, Geneva, sans-serif;
  z-index: 999;
  /*position: relative;*/
  text-align: left;
  white-space: pre-line;
}
.symbolIcon.hint--always {
  color: #9e9e9e;
  border: 2px solid #9e9e9e;
}
.hint--dotted {
  margin: 0;
  border-bottom: 1px dotted #98acb8;
}
.hint--larger:after {
  width: 500px !important;
}
/********( InfoPopupCSS )********************************************/
/********( ajax-busy-notice )********************************************/
/********( Sematic Helper Classes )********************************************/
/********( Code )**********************************************************/
ol.code {
  border: 1px solid #bebebe;
  font-family: monospace;
  margin: 1em 0;
  overflow: auto;
  position: relative;
  width: 830px;
}
ol.code li {
  font-family: monospace;
  list-style-position: inside;
  white-space: pre;
}
ol.code li.line {
  background-color: #fffacd;
  border: 1px solid;
  color: #cd0000;
}
/********( Unimportant )***************************************************/
.unimportant {
  -filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}
/********( Smaller )*******************************************************/
.smaller {
  font-size: smaller;
}
/********( Non-Sematic Helper Classes )****************************************/
/********( Auto Width )****************************************************/
.auto-width {
  width: auto !important;
}
/********( Truncate )****************************************************/
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 1.5em;
  vertical-align: top;
  line-height: 17px;
}
/********( Border )****************************************/
.border {
  border: 1px solid;
}
.border-right {
  border-right: 1px solid;
}
.cell-border td,
.cell-border th {
  border: 1px solid;
}
/********( Floats )****************************************************/
/********( Float Left )****************************************************/
.float-left {
  float: left;
}
/********( Float Right )****************************************************/
.float-right {
  float: right;
}
/********( Clears )****************************************************/
/********( Clear None )****************************************************/
.no-clear,
.clear-none {
  clear: none;
}
/********( Clear Both )****************************************************/
.clear-both {
  clear: both;
  height: 0;
}
/********( Clear Left )****************************************************/
.clear-left {
  clear: left;
}
/********( Clear Right )****************************************************/
.clear-right {
  clear: right;
}
/********( Lists )*********************************************************/
/********( Remove List Bullets )***************************************/
.no-style-type > li {
  list-style-type: none;
}
/********( Make a List Horizontal )************************************/
.horizontal-list {
  display: block;
  list-style-position: outside;
  list-style-type: none;
  margin: 0;
}
.horizontal-list li {
  list-style-position: outside;
  list-style-type: none;
  display: block;
  float: left;
  position: relative;
}
.horizontal-list.with-dividers li,
.horizontal-list.with-dividers-on-link a {
  border-left: 1px solid;
  /*_border-left: expression(this.previousSibling==null?'none':'1px solid'); */
  /* IE6 */
}
.horizontal-list.with-dividers li:first-child {
  border-left: none;
}
.horizontal-list.with-dividers li .logoutButton {
  background: none;
  border: 0;
  padding: 0;
  line-height: 11px;
  height: 11px;
  min-height: 14px;
  color: #454558;
  margin: -3px 0 0 0px;
}
.horizontal-list.with-dividers li .logoutButton:hover {
  text-decoration: underline;
}
/********( Multi-Column List )*****************************************/
/* free interpretation of http://www.alistapart.com/articles/multicolumnlists/ */
.multi-column li {
  margin: 0;
  padding: 0;
  /* Stipulate the height of each item so that
	vertical return = items * height */
  line-height: 1.2em;
}
/* If li position is left static, Internet Explorer disables hyperlinks in
   the list in all but the final column. This rule will be processed only by
   Internet Explorer because only IE believes that there’s a level above HTML:
 */
* html .multi-column li {
  position: relative;
}
/* horizontal position of each column */
.multi-column li.column1 {
  margin-left: 0;
}
.multi-column li.column2 {
  margin-left: 10em;
}
.multi-column li.column3 {
  margin-left: 20em;
}
/* Bring the first item of each column
back up to the level of item 1.
Vertical return = items * height.
Here, 5 items * 1.2em line-height = 6em */
.multi-column li.reset {
  margin-top: -6em;
}
/********( threeColumnList )*******************************************/
ul.threeColumnList li {
  display: inline-block;
  width: 33%;
}
/********( definitionList )*******************************************/
dl.keyValueInline {
  margin: 0;
  line-height: 22px;
  overflow: hidden;
  border-radius: 12px;
  background: white;
  padding: 20px;
}
dl.keyValueInline.keyValueInline_higher_Aiosbeheerdossier.keyValueInline_small.clearfix {
  line-height: 30px;
  display: grid
;
  grid-template-columns: 150px auto;
  gap: 10px;
  align-items: center;
}
dl.keyValueInline dt {
  clear: both;
  float: left;
  width: 180px;
  min-height: 22px;
  padding-left: 16px;
}
dl.keyValueInline dt label {
  color: #333;
}
dl.keyValueInline dd label {
  color: #333;
}
dl.keyValueInline dt .question-info.JS-enhanced {
  float: right;
  margin: 0 -6px 0 5px;
}
dl.keyValueInline dt .InfoPopupCSS.InfoBox {
  float: right;
  line-height: 12px;
  margin: 3px -6px 0 5px;
}
dl.keyValueInline dt .InfoPopup {
  margin: 13px 0 0 -24px;
}
dl.keyValueInline dt .EditableInfoPopup {
  float: right;
  margin-top: 3px;
}
dl.keyValueInline dd {
  float: left;
  min-height: 22px;
}
dl.keyValueInline_ddRight dd {
  float: right;
}
dl.keyValueInline_ddRight dd .datepickerWrapper {
  margin-right: 5px;
}
dl.keyValueInline dd.important {
  font-weight: bold;
}
dl.keyValueInline dd.unimportant {
  font-weight: normal;
}
dl.keyValueInline_higher {
  line-height: 30px;
  overflow: hidden;
  border-radius: 12px;
  padding: 20px;
}
dl.keyValueInline_higher > dt,
dl.keyValueInline_higher > dd {
  min-height: 30px;
}
dl.keyValueInline_higher > dt {
  min-height: 30px;
  line-height: 18px;
  margin-top: 6px;
}
dl.keyValueInline_xx-small dt {
  width: 53px;
}
dl.keyValueInline_x-small dt {
  width: 79px;
}
dl.keyValueInline_smaller dt {
  width: 106px;
}
dl.keyValueInline_small dt {
  width: 308px;
}
dl.keyValueInline_medium dt {
  width: 212px;
}
dl.keyValueInline_large dt {
  width: 265px;
}
dl.keyValueInline_larger dt {
  width: 318px;
}
dl.keyValueInline_x-large dt {
  width: 344px;
}
dl.keyValueInline_xx-large dt {
  width: 371px;
}
dl.keyValueInline_xxx-large dt {
  width: 565px;
}
dl.keyValueInline_xxxx-large dt {
  width: 600px;
}
dl.keyValueInline_xxxxx-large dt {
  width: 800px;
}
dl.keyValueInline dd input[type="text"],
dl.keyValueInline dd input[type="password"],
dl.keyValueInline dd button,
dl.keyValueInline dd .button,
dl.keyValueInline dd input[type="button"],
dl.keyValueInline dd input[type="reset"],
dl.keyValueInline dd input[type="submit"],
dl.keyValueInline dd input[type="datepicker"],
dl.keyValueInline dd select,
dl.keyValueInline dd .selector,
dl.keyValueInline dd textarea {
  margin: 0 5px 5px 0;
}
dl.keyValueInline dd ul {
  margin: 0 0 1em 20px;
}
dl.keyValueInline_higher dd textarea,
dl.keyValueInline_higher dd .datepickerWrapper {
  margin-top: 5px;
  margin-bottom: 0;
}
dl.keyValueInline_higher dd .datepickerWrapper input {
  margin-bottom: 0;
}
.panel {
  background: #FAFAFA;
  border: 1px solid #ddd;
  padding: 10px !important;
  margin: 0 0 20px !important;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: inset 0px 0px 3px 0px #ddd;
  box-shadow: inset 0px 0px 3px 0px #ddd;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/********( actionmenu )*******************************************/
ol.actionmenu {
  line-height: 20px;
  width: 900px;
  margin: 0 !important;
}
ol.actionmenu.narrow {
  width: 525px;
}
.ie6 ol.actionmenu li,
.ie7 ol.actionmenu li,
.ie8 ol.actionmenu li,
.ie9 ol.actionmenu li {
  list-style: none inside !important;
  padding: 0;
}
.ie6 ol.actionmenu ol,
.ie7 ol.actionmenu ol {
  margin: 0 0 10px 15px;
}
.ie8 ol.actionmenu ol,
.ie9 ol.actionmenu ol {
  margin: 0 0 5px 5px;
}
.ie8 ol.actionmenu ol li:before,
.ie9 ol.actionmenu ol li:before {
  content: '- ';
}
ol.actionmenu_inlineInputs {
  line-height: 30px;
  width: 1049px;
}
ol.actionmenu li,
ol.actionmenu li label {
  color: black;
  clear: both;
  padding: 3px 10px;
  margin: 10px -20px 10px 30px;
}
ol.actionmenu ol,
ol.actionmenu_noSubMenu {
  margin: 0 0 5px 19px;
}
ol.actionmenu ol li,
ol.actionmenu_noSubMenu li {
  color: #454558;
}
ol.actionmenu ol .actionLink,
ol.actionmenu_noSubMenu .actionLink {
  display: block;
  width: 110px;
  height: 20px;
  float: right;
}
ol.actionmenu.actionmenu_genericTemplates ol .actionLink,
ol.actionmenu_noSubMenu.actionmenu_genericTemplates .actionLink {
  float: left;
  width: 85px;
}
ol.actionmenu.actionmenu_genericTemplates ol li {
  clear: both;
}
ol.actionmenu.actionmenu_genericTemplates ol .GenericTemplate {
  display: block;
  width: 1200px;
}
ol.actionmenu.actionmenu_genericTemplates ol .TitleText,
ol.actionmenu_noSubMenu.actionmenu_genericTemplates .TitleText {
  width: 420px;
  float: left;
  margin: 0 10px 0 0;
}
ol.actionmenu ol .statusText,
ol.actionmenu_noSubMenu .statusText {
  display: block;
  width: 540px;
  height: 20px;
  float: right;
}
ol.actionmenu.actionmenu_genericTemplates ol .statusText,
ol.actionmenu_noSubMenu.actionmenu_genericTemplates .statusText {
  float: left;
  width: 650px;
}
ol.actionmenu ol .inlineInputs {
  display: block;
  width: 830px;
  float: right;
  text-align: right;
}
ol.actionmenu ol .inlineInputs select,
ol.actionmenu ol .inlineInputs input,
ol.actionmenu ol .inlineInputs button {
  margin: 0 0 0 10px;
}
ol.actionmenu ol .inlineInputs button {
  width: 75px;
}
/********( advanced-actionmenu )*******************************************/
.actionmenu,
.ActionMenu {
  width: 100%;
  line-height: 20px;
}
.actionmenu > .ActionMenuHeader,
.ActionMenu > .ActionMenuHeader {
  width: 100%;
  font-weight: bold;
  color: #1a1a2c;
}
.actionmenu .ActionMenuItem > div,
.ActionMenu .ActionMenuItem > div {
  float: left;
  margin-right: 25px;
  font-weight: normal;
  color: #454558;
}
.actionmenu .ActionMenuItem .ItemTitle,
.ActionMenu .ActionMenuItem .ItemTitle {
  width: 375px;
  margin: 5px;
}
.actionmenu .ActionMenuItem.SurveyBlueprintListItem .ItemTitle,
.ActionMenu .ActionMenuItem.SurveyBlueprintListItem .ItemTitle,
.actionmenu .ActionMenuItem.SimplifiedSurveyBlueprintListItem .ItemTitle,
.ActionMenu .ActionMenuItem.SimplifiedSurveyBlueprintListItem .ItemTitle {
  width: 395px;
  margin-right: 10px;
}
.actionmenu .ActionMenuItem .ItemCreate,
.ActionMenu .ActionMenuItem .ItemCreate {
  height: 20px;
  width: 75px;
  margin: 0px 184px;
}
.actionmenu .ActionMenuItem .ItemOverview,
.ActionMenu .ActionMenuItem .ItemOverview {
  height: 20px;
  width: 125px;
  margin-right: 0;
}
.actionmenu .ActionMenuItem .ItemCreate.concept {
  width: 110px;
  margin-right: 0;
}
.ActionMenu .ActionMenuItem .ItemCreate.concept {
  width: 110px;
  margin-right: 0;
}
.actionmenu .ActionMenuItem .ItemCreate.action {
  width: 143px;
  margin-right: 0;
}
.ActionMenu .ActionMenuItem .ItemCreate.action {
  width: 143px;
  margin-right: 0;
}
.actionmenu .ActionMenuItem .ItemCreate.completed {
  width: 115px;
  margin-right: 0;
}
.ActionMenu .ActionMenuItem .ItemCreate.completed {
  width: 115px;
  margin-right: 0;
}
.actionmenu .ActionMenuItem .ItemStatus,
.ActionMenu .ActionMenuItem .ItemStatus {
  width: 410px;
  height: 20px;
  margin: 0;
}
.actionmenu,
.ActionMenu {
  counter-reset: my-counter;
  margin: 20px;
  white-space: normal;
}
.actionmenu > .ActionMenuHeader:before,
.ActionMenu > .ActionMenuHeader:before {
  content: counter(my-counter) '.';
  counter-increment: my-counter;
  float: left;
  width: 26px;
  font-weight: bold;
  color: #1a1a2c;
}
.actionmenu .ActionMenuItem:before,
.ActionMenu .ActionMenuItem:before {
  content: counter(my-counter) '.';
  counter-increment: my-counter;
  float: left;
  width: 26px;
  font-weight: normal;
  color: #454558;
}
.ie8 .actionmenu > .ActionMenuHeader:before,
.ie8 .ActionMenu > .ActionMenuHeader:before,
.ie8 .actionmenu .ActionMenuItem:before,
.ie8 .ActionMenu .ActionMenuItem:before,
.ie9 .actionmenu > .ActionMenuHeader:before,
.ie9 .ActionMenu > .ActionMenuHeader:before,
.ie9 .actionmenu .ActionMenuItem:before,
.ie9 .ActionMenu .ActionMenuItem:before {
  content: '- ';
  padding-left: 5px;
  width: 15px;
}
.actionmenu .ActionMenu,
.ActionMenu .ActionMenu {
  margin-left: 26px;
}
.actionmenu .ActionMenu .ActionMenuItem .ItemTitle,
.ActionMenu .ActionMenu .ActionMenuItem .ItemTitle {
  width: 349px;
}
/********( Fix Float Clearing )********************************************/
/* Jeff Starr's slightly enhanced, universal clearfix hack:
 * http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack/
 */
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.clearfix {
  display: inline-block;
}
/* start commented backslash hack \*/
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}
/* close commented backslash hack */
/********( Colours )********************************************/
.colour-red {
  color: #FF0000;
}
.colour-green {
  color: #00FF00;
}
.colour-vrest-00 {
  color: #ffffff;
}
.colour-vrest-01 {
  color: #BD0026;
}
.colour-vrest-02 {
  color: #FC4E2A;
}
.colour-vrest-03 {
  color: #FED976;
}
.colour-vrest-04 {
  color: #ADDD8E;
}
.colour-vrest-05 {
  color: #41AB5D;
}
.colour-vrest-06 {
  color: #006837;
}
.colour-vrest-07 {
  color: orange;
}
.current_module {
  background-color: #ADDD8E;
}
.WaterMark {
  color: #7f7f7f;
}
/********( Fonts )********************************************/
.text-bold {
  font-weight: bold;
}
/********( CSS only popup on hover )*******************************************/
.hoverPop {
  position: relative;
}
.hoverPop .handle {
  cursor: help;
  border-bottom: 1px dashed;
}
.hoverPop .popup {
  display: none;
  background: #cdcdcd;
  border: 1px solid;
  position: absolute;
  z-index: 999;
}
.hoverPop:hover .popup {
  display: inline;
}
.hoverPop:hover .handle {
  display: none;
}
a.InfoPopupTooltip {
  text-decoration: none;
  cursor: pointer;
  line-height: 17px;
  vertical-align: 48px;
  top: -2px;
  position: relative;
  right: -10px;
}
a.InfoPopupTooltip:hover {
  position: relative;
}
a.InfoPopupTooltip span {
  display: none;
  z-index: 100;
  width: 190px;
  text-decoration: none;
  margin: 14px 0 0 -17px;
  overflow: hidden;
  color: #606060;
  font-weight: normal;
  font-size: 13px;
  position: absolute;
  padding: 5px;
  background: #fff;
  border: 2px solid #87cefa;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 1px 0px #87cefa;
  box-shadow: 0px 0px 1px 0px #87cefa;
  text-shadow: 0;
  line-height: 20px;
}
a.InfoPopupTooltip:hover span {
  display: block;
}
a.InfoPopupTooltip span:before {
  content: "";
  position: absolute;
  bottom: -18px;
  /* value = - border-top-width - border-bottom-width */
  left: 10px;
  /* controls horizontal position */
  border-width: 18px 18px 0;
  border-style: solid;
  border-color: #87cefa transparent;
  display: block;
  width: 0;
  top: -18px;
  /* value = - border-top-width - border-bottom-width */
  bottom: auto;
  left: 5px;
  right: auto;
  /* controls horizontal position */
  border-width: 0 18px 18px;
}
a.InfoPopupTooltip span:after {
  content: "";
  position: absolute;
  bottom: -15px;
  /* value = - border-top-width - border-bottom-width */
  left: 17px;
  /* value = (:before left) + (:before border-left) - (:after border-left) */
  border-width: 15px 15px 0;
  border-style: solid;
  border-color: #fff transparent;
  display: block;
  width: 0;
  top: -15px;
  /* value = - border-top-width - border-bottom-width */
  bottom: auto;
  left: 8px;
  right: auto;
  /* value = (:before right) + (:before border-right) - (:after border-right) */
  border-width: 0 15px 15px;
}
#divMayus {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 10px;
  color: #2D6D98;
  text-shadow: 1px 1px 1px #ddeaf3;
  background: #eef9ff;
  border: 2px solid #2D6D98;
}
a.InfoPopupTooltip_anchorRight:hover span {
  left: -195px;
}
.tableWrap {
  width: 100%;
  overflow-x: scroll;
  overflow-y: visible;
}
.headerSortDown:after,
.headerSortDown:hover:after {
  content: '▼';
  float: right;
  display: block;
  width: 20px;
  margin-right: -20px;
  text-align: right;
}
.headerSortUp:after,
.headerSortUp:hover:after {
  content: '▲';
  float: right;
  display: block;
  width: 20px;
  margin-right: -20px;
  text-align: right;
}
.InfoText {
  color: #2D6D98;
  border: solid 2px #2D6D98;
  background-color: #e4eff5;
  padding: 0px;
  margin: 0px 0 15px;
  border-radius: 8px;
  padding: 8px;
  line-height: 22px;
  white-space: normal;
}
.InfoText_positive {
  color: #20af00;
  border: solid 2px #20af00;
  background-color: #e6f5e0;
}
.InfoText_negative {
  color: #db0000;
  border: solid 2px #db0000;
  background-color: #ffe3e3;
}
.flex {
  padding-right: 0.5em !important;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.padding-right {
  padding-right: 25px !important;
  width: 100%;
}
.symbolIcon {
  font-size: 16px;
  background: white;
  border-radius: 5px;
  color: #454558;
  border: 2px solid #454558;
  vertical-align: baseline;
  font-weight: bold;
  margin: 0;
  width: 25px;
  height: 25px;
  line-height: 27px;
  cursor: pointer;
  text-align: center;
}
.tooltipDotted {
  border-bottom: 1px dotted #98acb8;
  line-height: 1em;
  cursor: pointer;
}
.tooltipDotted {
  border-bottom: 1px dotted #98acb8;
  line-height: 1em;
  cursor: pointer;
}
/********( JQuery and JQuery UI )**********************************************/
#ui-datepicker-div {
  display: none;
  z-index: 100 !important;
  overflow: visible;
}
/*/ jQueryBubblePopup /*/
.question-info {
  margin-left: 1em;
  display: none;
}
.question-info.JS-enhanced {
  display: inline;
}
.question-info img {
  vertical-align: -4px;
}
.jquerybubblepopup * {
  text-align: left;
}
/********( EOF )***************************************************************/
.text-align-right {
  text-align: right !important;
}
.flagged-inactive {
  text-decoration: line-through;
  color: darkred;
}
.flagged-invalid {
  text-decoration: none;
  color: darkred;
  border: solid 1px darkred;
}
/********( IE fixes )***********************************************************/
.ie6 ol.code li,
.ie7 ol.code li {
  line-height: 0.7em;
  /* For IE, to make the lines a bit less tall */
}
.ie6 dl.keyValueInline dd,
.ie7 dl.keyValueInline dd {
  float: none;
}
.ie7 .actionLink,
.ie7 .statusText,
.ie7 .inlineInputs {
  margin-top: -20px !important;
}
.ie7 dl.keyValueInline dt .question-info.JS-enhanced {
  margin: -26px -6px 0 5px;
}
.ie7 dl.keyValueInline dt .InfoPopupCSS.InfoBox {
  margin: -23px -6px 0 5px;
}
/*# sourceMappingURL=helpers.css.map */
button,
.button,
input,
label,
select,
optgroup,
option,
textarea {
  color: #ffffff;
  font-family: "inter", sans-serif;
  font-size: 1em;
  padding: 1px;
}
button,
.button,
input,
select,
optgroup,
option,
textarea {
  color: #454558;
}
label {
  color: #454558;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
input[type="number"]:focus,
select:focus,
select.focus,
textarea:focus {
  color: #454558;
  border: 1px solid #bfb0d7;
  outline: none;
  box-shadow: 0px 0px 2px #6a5acd;
}
input[type="text"]:hover,
input[type="password"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="number"]:hover,
select:hover,
textarea:hover {
  color: #454558;
  /* Dit werkt alleen als @text gedefinieerd is in je preprocessor */
  border: 1px solid #bfb0d7;
  outline: none;
  box-shadow: 0px 0px 2px #6a5acd;
}
.button:focus,
button:focus {
  outline: 1px solid #040007;
}
input:-moz-placeholder {
  color: rgba(58, 97, 131, 0.04);
  font-size: 0.9em;
}
#content .fieldset,
#content fieldset {
  border: solid 1px rgba(48, 81, 110, 0.04);
  background: white;
  padding: 2.5em 0 1em;
  /* Top Padding to make room for the legend */
  position: relative;
  margin: 2em auto;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
#content .fieldset {
  padding: 1em 10px 1em;
  /* Top Padding to make room for the legend */
}
.NoThemeTemplate #content .fieldset,
.NoThemeTemplate #content fieldset {
  max-width: 1600px;
}
#content .narrow .fieldset,
#content .narrow fieldset {
  width: 411px;
}
#content fieldset legend {
  font-weight: bold;
  position: absolute;
  top: 1.2em;
}
#content .fieldset h2 {
  font-weight: bold;
}
#content form p {
  margin-bottom: 1em;
}
#content form ul,
#content ul.form,
#content ul.form > li {
  line-height: 24px;
  list-style-type: none;
  margin: 0;
  /* IE inherets the li margin to the input element, so no margin would be nice. */
  margin-left: 2em;
  /* kris, 2012-11-07: nested lists were not indfented at all. */
}
#content form ul.RadioGroup,
#content ul.form.RadioGroup,
#content ul.form.RadioGroup > li {
  line-height: 20px;
}
#content label {
  line-height: 1em;
}
/********( Input )*************************************************************/
/********( Normal Fields )*************************************************/
/********( Common Elements )********************************************/
button,
.button,
input,
select,
textarea {
  -webkit-border-radius: 0.5em;
  -moz-border-radius: 0.5em;
  border-radius: 0.5em;
  border: 1px solid transparent;
  min-height: 18px;
  outline: 0px none;
  margin-top: 0;
  margin-bottom: 0px;
  -webkit-box-sizing: content-box !important;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: content-box !important;
  /* Firefox, other Gecko */
  box-sizing: content-box !important;
}
input:not(.button),
select {
  z-index: 1;
}
input[type="checkbox"],
input[type="radio"],
input[type="checkbox"].no-jquery,
input[type="radio"].no-jquery {
  width: 13px;
  border: 0;
}
/********( Text Controls )*****************************************/
input[type="text"],
input[type="file"],
input[type="password"],
button,
.button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="number"],
select,
textarea {
  background: no-repeat scroll 0 0 #ffffff;
  border-bottom-color: #000000;
  border-top-color: #000000;
  border-left-color: #000000;
  border-right-color: #000000;
}
input[type="text"].error,
input[type="file"].error,
input[type="password"].error,
button.error,
.button.error,
input[type="button"].error,
input[type="reset"].error,
input[type="submit"].error,
input[type="number"].error,
select.error,
textarea.error {
  background: no-repeat scroll 0 0 #FFE3E3;
  border-bottom-color: #933;
  border-top-color: #933;
  border-left-color: #933;
  border-right-color: #933;
}
/********( Button Controls )***************************************/
input[type="button"],
input[type="reset"],
input[type="submit"],
:root {
  --button-text-color: #000000;
  --button-bg-color: #bfb0d7;
  --button-hover-bg-color: #0096CCFF;
  --button-shadow: rgba(0, 0, 0, 0.15);
}
button,
.button {
  color: #ffffff;
  margin-right: 5px;
  min-width: 20px;
  padding: 5px 12px;
  text-align: center;
  white-space: nowrap;
  background-color: #bfb0d7;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 18px var(--button-shadow);
  cursor: pointer;
  overflow: visible;
  transition: background-color 0.3s, box-shadow 0.3s;
}
button:hover,
.button:hover {
  background-color: var(--button-hover-bg-color);
  box-shadow: 0 4px 8px var(--button-shadow);
  color: var(--button-hover-text-color);
}
icon-share {
  background-image: url('/rsrc/img/icon/share-icon-white.svg');
}
icon-share:hover {
  background-image: url('/rsrc/img/icon/share-icon-black.svg');
}
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
button:hover,
.button:hover {
  background-color: rgba(56, 94, 127, 0.04);
}
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active,
button:active,
.button:active {
  border-bottom-color: rgba(55, 92, 124, 0.04);
  border-top-color: rgba(59, 99, 134, 0.04);
  background-color: rgba(48, 81, 110, 0.04);
}
button[rel="delete"],
button[rel="unDelete"],
button[rel="select"],
button[rel="edit"],
button[rel="add"],
button[rel="shift"],
button[rel="publish"],
button[rel="criteria"],
button[rel="export"],
button[rel="copy"],
button[rel="conflict"],
button[rel="add_portfolioholder"],
a.selectButton,
a.deleteButton,
a.unDeleteButton,
a.publishButton,
a.historyButton,
a.messageHistoryButton,
a.criteriaButton,
a.exportButton,
a.extendButton,
a.copyButton,
a.conflictButton {
  border: 0;
  width: 20px;
  height: 20px;
  text-indent: -5000px;
  padding: 0;
}
.ie6 button[rel="delete"],
.ie6 button[rel="unDelete"],
.ie6 button[rel="select"],
.ie6 button[rel="edit"],
.ie6 button[rel="add"],
.ie6 button[rel="shift"],
.ie6 button[rel="publish"],
.ie6 button[rel="criteria"],
.ie6 button[rel="export"],
.ie6 button[rel="copy"],
.ie6 button[rel="conflict"],
.ie6 button[rel="add_portfolioholder"],
.ie6 a.selectButton,
.ie6 a.deleteButton,
.ie6 a.unDeleteButton,
.ie6 a.publishButton,
.ie6 a.criteriaButton,
.ie6 a.exportButton,
.ie6 a.extendButton,
.ie6 a.copyButton,
.ie6 a.conflictButton,
.ie7 button[rel="delete"],
.ie7 button[rel="unDelete"],
.ie7 button[rel="select"],
.ie7 button[rel="edit"],
.ie7 button[rel="add"],
.ie7 button[rel="shift"],
.ie7 button[rel="publish"],
.ie7 button[rel="criteria"],
.ie7 button[rel="export"],
.ie7 button[rel="copy"],
.ie7 button[rel="conflict"],
.ie7 button[rel="add_portfolioholder"],
.ie7 a.selectButton,
.ie7 a.deleteButton,
.ie7 a.unDeleteButton,
.ie7 a.publishButton,
.ie7 a.criteriaButton,
.ie7 a.exportButton,
.ie7 a.extendButton,
.ie7 a.copyButton,
.ie7 a.conflictButton {
  display: block;
}
button[rel="select"],
button[rel="edit"],
a.selectButton,
a.selectButton:hover {
  background: url('/rsrc/img/icon/pencil-box.png') no-repeat;
}
button[rel="delete"],
a.deleteButton,
a.deleteButton:hover {
  background: url('/rsrc/img/icon/recyclebin.png') no-repeat;
}
button[rel="add_portfolioholder"] {
  background: url('/rsrc/img/icon/fugue/ui-tab--plus.png') no-repeat center 4px;
}
button[rel="unDelete"],
a.unDeleteButton,
a.unDeleteButton:hover {
  background: url('/rsrc/img/icon/unDelete.png') no-repeat;
}
button[rel~="add"] {
  background: url('/rsrc/img/icon/fugue/plus-white.png') no-repeat;
}
button[rel~="shift"],
a.extendButton,
a.extendButton:hover {
  background: url('/rsrc/img/icon/fugue/clock--plus.png') no-repeat;
}
button[rel~="publish"] {
  background: url('/rsrc/img/icon/publish.png') no-repeat;
}
a.publishButton,
a.publishButton:hover,
button[rel~="publish"] {
  background: url('/rsrc/img/icon/fugue/users.png') no-repeat;
}
a.publishButton.disabled,
a.publishButton.disabled:hover {
  opacity: 0.3;
}
.ie6 a.publishButton.disabled,
a.publishButton.disabled:hover,
.ie7 a.publishButton.disabled,
a.publishButton.disabled:hover,
.ie8 a.publishButton.disabled,
a.publishButton.disabled:hover {
  display: none;
}
button[rel~="history"] {
  background: url('/rsrc/img/icon/clock-history.png') no-repeat;
}
a.historyButton,
a.historyButton:hover,
button[rel~="history"] {
  background: url('/rsrc/img/icon/fugue/clock-history.png') no-repeat;
}
a.historyButton.disabled,
a.historyButton.disabled:hover {
  opacity: 0.3;
}
.ie6 a.historyButton.disabled,
a.historyButton.disabled:hover,
.ie7 a.historyButton.disabled,
a.historyButton.disabled:hover,
.ie8 a.historyButton.disabled,
a.historyButton.disabled:hover {
  display: none;
}
button[rel~="messageHistory"] {
  background: url('/rsrc/img/icon/mails-stack.png') no-repeat;
}
a.messageHistoryButton,
a.messageHistoryButton:hover,
button[rel~="messageHistory"] {
  background: url('/rsrc/img/icon/fugue/mails-stack.png') no-repeat;
}
a.messageHistoryButton.disabled,
a.messageHistoryButton.disabled:hover {
  opacity: 0.3;
}
.ie6 a.messageHistoryButton.disabled,
a.messageHistoryButton.disabled:hover,
.ie7 a.messageHistoryButton.disabled,
a.messageHistoryButton.disabled:hover,
.ie8 a.messageHistoryButton.disabled,
a.messageHistoryButton.disabled:hover {
  display: none;
}
a.exportButton,
a.exportButton:hover,
button[rel~="export"] {
  background: url('/rsrc/img/icon/fugue/blue-document-export.png') no-repeat;
}
a.exportButton.disabled,
a.exportButton.disabled:hover {
  opacity: 0.3;
}
.ie6 a.exportButton.disabled,
a.exportButton.disabled:hover,
.ie7 a.exportButton.disabled,
a.exportButton.disabled:hover,
.ie8 a.exportButton.disabled,
a.exportButton.disabled:hover {
  display: none;
}
a.criteriaButton,
a.criteriaButton:hover,
button[rel~="criteria"] {
  background: url('/rsrc/img/icon/fugue/n-box-small.png') no-repeat;
}
a.vbCriteriaButton.disabled,
a.vbCriteriaButton.disabled:hover {
  opacity: 0.3;
}
.ie6 a.vbCriteriaButton.disabled,
a.vbCriteriaButton.disabled:hover,
.ie7 a.vbCriteriaButton.disabled,
a.vbCriteriaButton.disabled:hover,
.ie8 a.vbCriteriaButton.disabled,
a.vbCriteriaButton.disabled:hover {
  display: none;
}
a.copyButton,
a.copyButton:hover,
button[rel~="copy"] {
  background: url('/rsrc/img/icon/fugue/blue-document-copy.png') no-repeat;
}
a.copyButton.disabled,
a.copyButton.disabled:hover {
  opacity: 0.3;
}
.ie6 a.copyButton.disabled,
a.copyButton.disabled:hover,
.ie7 a.copyButton.disabled,
a.copyButton.disabled:hover,
.ie8 a.copyButton.disabled,
a.copyButton.disabled:hover {
  display: none;
}
a.conflictButton,
a.conflictButton:hover,
button[rel~="conflict"] {
  background: url('/rsrc/img/icon/exclamation.png') no-repeat;
}
a.conflictButton.disabled,
a.conflictButton.disabled:hover {
  opacity: 0.3;
}
.ie6 a.conflictButton.disabled,
a.conflictButton.disabled:hover,
.ie7 a.conflictButton.disabled,
a.conflictButton.disabled:hover,
.ie8 a.conflictButton.disabled,
a.conflictButton.disabled:hover {
  display: none;
}
.button {
  display: inline-block;
  line-height: 20px;
  height: 20px;
  padding: 10px;
  font-style: normal;
}
.button:hover {
  text-decoration: none;
}
/********( Inline Button )*****************************************************/
/*
    For this to work you need to put an <A> or <BUTTON> tag directly after an
    <INPUT> tag and give both the class 'inline-button'
*/
#workArea input.inline-button {
  margin: 0 0 0 0;
  display: inline;
  height: 22px;
  padding: 0 0 0 4px;
  vertical-align: top;
}
#workArea button.inline-button {
  vertical-align: top;
  background-position: 50% 50%;
  height: 24px;
  margin: 0 0 0 -10px;
  padding: 2px 2px 0;
  cursor: pointer;
  background-color: #ddd;
}
#workArea button.inline-button:hover {
  background-color: #ccc;
}
/********( Inline Button Rel=Search )***************************/
.inline-button[rel*="search"] {
  background-image: url("/rsrc/img/icon/fugue/magnifier.png");
}
/********( IconButton )*******************************************************/
.button .icon {
  background-position: center center;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  display: inline-block;
  vertical-align: -5px;
  margin-right: 4px;
}
.excelButton .icon {
  background-image: url('/rsrc/img/icon/export-excel.png');
}
.iconButton {
  width: 30px;
  padding: 0 !important;
  overflow: hidden;
}
.iconButton:disabled:before,
.iconButton.disabled:before {
  content: ' ';
  opacity: 0.7;
  display: block;
  background: #fafafa;
  width: 32px;
  height: 30px;
  position: absolute;
  margin-left: -2px;
  margin-top: -1px;
  -webkit-border-radius: 0.5em;
  border-radius: 0.5em;
}
.iconButton:hover {
  background-color: #d3d3d3;
}
a.iconButton {
  width: 22px;
  min-width: 28px;
  height: 28px;
  line-height: 28px;
}
.iconButton .icon {
  display: inline-block;
  line-height: 28px;
  width: 28px;
  height: 28px;
  vertical-align: -9px;
  background-position: center center;
  background-repeat: no-repeat;
}
button.iconButton.smallButton {
  width: 20px;
  min-width: 20px;
  height: 20px;
  line-height: 20px;
}
a.iconButton.smallButton {
  width: 20px;
  min-width: 20px;
  height: 20px;
  line-height: 20px;
  vertical-align: -5px;
  margin-left: 7px;
}
.iconButton.smallButton .icon {
  display: inline-block;
  line-height: 20px;
  width: 20px;
  height: 20px;
  vertical-align: -4px;
  background-position: center center;
  background-repeat: no-repeat;
}
.iconButton.exportButton .icon {
  background: url('/rsrc/img/icon/fugue/document-export.png') center center no-repeat;
}
.iconButton.printButton .icon {
  background: url('/rsrc/img/icon/fugue/printer.png') center center no-repeat;
}
.iconButton.searchButton .icon {
  background: url('/rsrc/img/icon/Refresh.png') center center no-repeat;
}
.iconButton.pdfButton .icon {
  background: url('/rsrc/img/icon/fugue/document-pdf-text.png') center center no-repeat;
}
.iconButton.first .icon {
  background: url('/rsrc/img/icon/fugue/arrow-stop-180.png') center center no-repeat;
}
.iconButton.previous .icon {
  background: url('/rsrc/img/icon/fugue/arrow-180.png') center center no-repeat;
}
.iconButton.next .icon {
  background: url('/rsrc/img/icon/fugue/arrow.png') center center no-repeat;
}
.iconButton.last .icon {
  background: url('/rsrc/img/icon/fugue/arrow-stop.png') center center no-repeat;
}
.iconButton.save .icon {
  background: url('/rsrc/img/icon/tick.png') center center no-repeat;
}
.iconButton.cancel .icon {
  background: url('/rsrc/img/icon/cancel.png') center center no-repeat;
}
/********( Input Type=[FileUpload] )*******************************/
input.FileUpload {
  border: 1px solid #bbb;
  border-color: #909090 #BBBBBB #DDDDDD;
}
/********( Input Type=[SelectBox] )********************************/
/********( Input Type=[Image] )************************************/
/********( Labels )************************************************/
/********( Mark Label as Required )****************************/
.required {
  color: red;
}
sup.required {
  margin-left: 0.4em;
}
/********( Custom Elements )*******************************************/
input[rel*="enhanced"] {
  /* make some space for an icon */
  padding-right: 26px;
  margin-right: -26px;
}
/********( Auto Complete )*****************************************/
input[rel*="enhanced"] {
  background-position: right -123px;
}
/********( Auto Complete )*****************************************/
input[type=text].working,
input[type=search].working {
  background: url('/rsrc/img/icon/fugue/hourglass.png') right top no-repeat;
}
.ui-autocomplete {
  max-height: 150px;
  overflow-y: auto;
  overflow-x: hidden;
}
.AutoSuggest {
  display: inline-block;
}
.AutoSuggest input[rel*="autocomplete"] {
  margin-right: 0 !important;
}
/********( Date Picker )*******************************************/
.datepickerWrapper {
  display: inline-block;
  vertical-align: -5px;
}
.datepickerWrapper.display-mode {
  display: inline-block;
  vertical-align: 0px;
}
input[rel*="datepicker"] {
  padding: 1px;
  background-image: none;
  display: inline-block;
  float: left;
  margin-right: 0 !important;
  position: relative;
  z-index: 1;
}
.ui-datepicker-trigger {
  float: left;
  display: inline-block;
  padding: 2px 1px 1px 8px;
  cursor: pointer;
  margin-left: -32px;
  position: relative;
  z-index: 1;
}
/********( Search )************************************************/
input[rel*="search"] {
  background-position: right -63px;
}
/********( Drop Down )*********************************************/
select,
select[rel*="dropdown"],
input[rel*="dropdown"] {
  background-position: right -32px;
}
/********( Disabled Fields )***********************************************/
button:disabled,
.button.disabled,
input:disabled,
optgroup:disabled,
option:disabled,
select:disabled,
textarea:disabled,
fieldset.disabled,
fieldset.disabled label,
fieldset.disabled button,
fieldset.disabled .button,
fieldset.disabled input,
fieldset.disabled label,
fieldset.disabled select,
fieldset.disabled optgroup,
fieldset.disabled option,
fieldset.disabled textarea,
.fieldset.disabled,
.fieldset.disabled label,
.fieldset.disabled button,
.fieldset.disabled .button,
.fieldset.disabled input,
.fieldset.disabled label,
.fieldset.disabled select,
.fieldset.disabled optgroup,
.fieldset.disabled option,
.fieldset.disabled textarea {
  color: #969696;
  cursor: default;
  background-color: lightgrey;
}
input:disabled,
select:disabled,
textarea:disabled {
  background: #E6E6E6;
  border-color: #aaa #ccc #ddd #ddd;
}
.radio:disabled,
.checkbox:disabled {
  opacity: 0.5;
}
.radio:disabled:checked,
.checkbox:disabled:checked {
  opacity: 1;
}
input[rel*="autocomplete"]:disabled,
input[rel*="dropdown"]:disabled,
select[rel*="dropdown"]:disabled,
input[rel*="datepicker"]:disabled,
input[rel*="search"]:disabled {
  background-repeat: no-repeat;
}
input[rel*="autocomplete"]:disabled {
  background-position: right -1px;
}
input[rel*="dropdown"]:disabled,
select[rel*="dropdown"]:disabled {
  background-position: right -32px;
}
input[rel*="datepicker"]:disabled {
  background-position: right -94px;
  z-index: 3;
}
input[rel*="search"]:disabled {
  background-position: right -63px;
}
.Range.disabled .ui-slider {
  background: 10px 50% no-repeat #cccccc;
  border: 1px solid #999;
}
.ui-slider {
  overflow: visible;
}
.Range.disabled .ui-slider .ui-slider-handle {
  background: url("/image/slider/handle/150.150.150.0/") no-repeat scroll 50% bottom transparent;
}
/********( Readonly Fields )***********************************************/
button[readonly],
input[readonly],
optgroup[readonly],
option[readonly],
select[readonly],
textarea[readonly] {
  color: #797979;
}
input[readonly],
select[readonly],
textarea[readonly] {
  background: #E6E6E6;
  border-color: #aaa #ccc #ddd #ddd;
}
input[rel*="autocomplete"][readonly],
input[rel*="dropdown"][readonly],
select[rel*="dropdown"][readonly],
input[rel*="datepicker"][readonly],
input[rel*="search"][readonly] {
  background-repeat: no-repeat;
}
input[rel*="autocomplete"][readonly] {
  background-position: right -1px;
}
input[rel*="dropdown"][readonly],
select[rel*="dropdown"][readonly] {
  background-position: right -32px;
}
input[rel*="datepicker"][readonly] {
  background-position: right -94px;
  z-index: 3;
}
input[rel*="search"][readonly] {
  background-position: right -63px;
}
/********( Textarea )**********************************************************/
textarea {
  min-height: 53px;
}
table textarea {
  vertical-align: -7px;
}
/********( Javascript Enhanced Elements )**************************************/
/********( Select Boxes )**************************************************/
/* NO CUSTOM STYLING AVAILABLE YET */
/********( OLD DPF STYLING FOR RANGE SLIDERS  )**************************************/
/********( Range Sliders )*************************************************/
/* THE FOLLOWING STYLES HAVE NOT YET BEEN CHECKED! */
/********( Container )*************************************************/
.Range {
  position: relative;
  margin-bottom: 2em;
}
/********( Slider )****************************************************/
.Range .ui-slider-horizontal {
  height: 15px;
  overflow: visible;
}
.Range .ui-slider {
  background: 10px 50% no-repeat #d1e9ef;
  border: 1px solid #90E7FF;
  position: relative;
  text-align: left;
}
/********( Handle )****************************************************/
.Range .ui-slider .ui-slider-handle {
  background: url("/image/slider/handle/139.199.210.0/") no-repeat scroll 50% bottom transparent;
  cursor: default;
  height: 15px;
  outline: medium none;
  position: absolute;
  width: 19px;
  z-index: 2;
}
.Range .ui-slider-horizontal .ui-slider-handle {
  margin-left: -19px;
  top: 0;
  border: none;
}
/********( Display Value )*********************************************/
.Range .JS-slider-value {
  float: right;
  margin-top: -22px;
  width: 278px;
}
/********( Decorations )***********************************************/
/********( END OF OLD DPF STYLING FOR RANGE SLIDERS )**************************************/
/********( Global Overriding Styles )******************************************/
.ValidationError,
.ValidationMessage {
  border: solid 1px #DB0000 !important;
  background: #FFE3E3 !important;
  color: #933 !important;
  padding: 2px 5px;
  margin: 0 0 10px 0;
  line-height: 23px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
.InvalidValue {
  border: solid 1px #DB0000 !important;
  background: #FFE3E3 !important;
}
/********( Form Layouts )******************************************************/
/********( Single Column )*************************************************/
#content .single-column .ValidationMessage {
  clear: left;
  float: right;
  position: relative;
  top: 0;
  width: 265px;
}
/* label next to form field */
#content .single-column dt {
  width: 265px;
  margin-right: 2em;
}
#content .single-column label {
  clear: left;
  float: left;
  line-height: 2em;
  padding-right: 2em;
  text-align: left;
  width: 265px;
}
#content .single-column.label-text-align-right label {
  text-align: right;
}
#content .single-column.label-text-align-left label {
  text-align: left;
}
/*#content .single-column button,*/
#content .single-column input,
#content .single-column select,
#content .single-column textarea,
#content .single-column .checkbox-wrapper,
#content .single-column .radio-wrapper {
  float: left;
  width: 265px;
}
#content .single-column input[rel*="autocomplete"],
#content .single-column input[rel*="dropdown"],
#content .single-column input[rel*="search"] {
  width: 233px;
}
#content .single-column .datepickerWrapper {
  float: left;
  width: 268px;
}
/* label contains form field */
/*#content .single-column label button,*/
/********( Form Buttons )**************************************************/
#PageForm {
  /* make some room for the buttons */
  padding-bottom: 56px;
}
.FormButtons {
  bottom: 0;
  height: 42px;
  /*margin-left: -10px;*/
  /*padding-right: 10px;*/
  position: relative;
  text-align: right;
  /*width: 882px;*/
  z-index: 15;
  /* because JS slider handle get z-index:2; */
  /*width: 1091px;*/
  width: 100%;
  right: 0;
}
.NoThemeTemplate .FormButtons {
  position: fixed;
  background-color: #fff;
}
.CardThemeTemplate .FormButtons {
  position: relative;
  border: 0;
}
.SimpleFormButtons .TotalAccrPoints,
.FormButtons .TotalAccrPoints {
  font-weight: bold;
  padding-right: 10px;
  line-height: 40px;
}
.SimpleFormButtonsmenu {
  text-align: right;
  height: 300px;
}
.FormButtons.madeSticky {
  -webkit-box-shadow: 0px -3px 6px -3px #d9d9d9;
  box-shadow: 0px -3px 6px -3px #d9d9d9;
  width: 1102px;
  margin-left: -10px;
  right: auto;
}
.FormButtons button,
.FormButtons .button {
  margin-top: 10px;
  margin-bottom: 10px;
}
.FormButtons p {
  margin: 1em;
}
.SimpleFormButtons button,
.SimpleFormButtons .button {
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: 5px;
  margin-right: 0;
}
.profileFormHeader {
  font-weight: bold;
  color: #2D6D98;
}
.profileHeaderItalic {
  font-style: italic;
}
/********( Search Form )**************************************************/
#content fieldset[rel="search"] {
  margin: 1px 0 2em;
  padding: 2.5em 1em 0;
  border: 1px solid #eee;
  -webkit-box-shadow: 0px 0px 0px 1px #ccc;
  box-shadow: 0px 0px 0px 1px #ccc;
  overflow: hidden;
}
.searchform {
  margin: 0 0 10px 0;
}
.searchitem {
  float: left;
  margin-top: 20px;
  margin-right: 15px;
  margin-bottom: 10px;
  margin-left: 0;
}
.searchitemNoLabel {
  margin-top: 34px;
}
.searchitemLabelOnly {
  margin-top: 36px;
}
.searchitem:last-child {
  margin-right: 0;
}
.searchitem label {
  display: block;
}
.searchitem .ActionButton {
  margin: 15px 0 0 0px;
  padding: 0 7px 0 4px;
  display: block;
}
.searchitemNoLabel .checkbox-wrapper {
  line-height: 1.4em !important;
  margin-top: 3px;
}
.searchitem label input.Checkbox {
  width: 16px !important;
}
.searchitem .checkbox-wrapper input {
  width: 16px !important;
  top: 5px !important;
}
fieldset[rel="search"] .tools {
  position: absolute;
  top: 4px;
  right: 4px;
  -webkit-border-radius: 4px;
  border-radius: 10px;
  padding: 6px 2px 6px 6px;
  background: #f3f3f3;
  -webkit-box-shadow: inset 0px 0px 3px 0px #ccc;
  box-shadow: inset 0px 0px 3px 0px #ccc;
}
fieldset[rel="search"] .tools:before {
  content: "Overige opties: ";
  color: #bbb;
  margin-right: 10px;
  margin-right: 5px;
  font-size: 12px;
}
.exportTools {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-border-radius: 4px;
  border-radius: 10px;
  padding: 6px 2px 6px 6px;
  background: #f3f3f3;
  -webkit-box-shadow: inset 0px 0px 3px 0px #ccc;
  box-shadow: inset 0px 0px 3px 0px #ccc;
}
.exportTools:before {
  content: "Exporteer naar: ";
  color: #bbb;
  margin-right: 10px;
  margin-right: 5px;
  font-size: 12px;
}
/********( Browser Specific Fixes )****************************************/
/* override extra button outline in Firefox*/
input[type="button"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0px;
}
/* Supposed to jog the input so the outline doesn't look too ugly in FireFox
. Still requires a nicer solution as it screws up styling in other browsers...
.checkbox-wrapper input, x:-moz-any-link, x:default{
    right: -15px !important;
    top: 7px !important;
}
.radio-wrapper input, x:-moz-any-link, x:default {
    right: -15px !important;
    top: 7px !important;
}

.checkbox-wrapper.label-text-left input, x:-moz-any-link, x:default  {
    right: 4px !important;
    top: 7px !important;
}

.radio-wrapper.label-text-left input, x:-moz-any-link, x:default  {
    right: 4px !important;
    top: 7px !important;
}

/********( EOF )***************************************************************/
.ui-wrapper .ui-resizable-handle.ui-icon {
  right: 10px;
  bottom: 10px;
}
/********( Inline Button )****************************************/
.no-bullet li,
.RadioGroup li,
.CheckBoxGroup li {
  list-style-type: none;
}
.ProcedureSessionSelection li {
  float: left;
}
/********( IE fixes )***********************************************************/
.ie6 #content fieldset,
.ie7 #content fieldset {
  padding: 0 1em 1em;
  /* Top Padding to make room for the legend */
  margin: 1.5em 0 0 0;
}
.ie6 #content fieldset legend,
.ie7 #content fieldset legend {
  position: relative;
  top: 0;
  margin: 0 0 10px 0;
}
.ie6 .datepickerWrapper,
.ie7 .datepickerWrapper {
  zoom: 1;
  display: inline;
}
.ie6 input[rel*="datepicker"],
.ie7 input[rel*="datepicker"] {
  float: none;
  zoom: 1;
  display: inline;
}
.ie6 .ui-datepicker-trigger,
.ie7 .ui-datepicker-trigger {
  left: -30px;
  top: 0px;
  float: none;
  zoom: 1;
  display: inline;
  vertical-align: 0px;
}
.ie6 #content .single-column .datepickerWrapper .ui-datepicker-trigger,
.ie7 #content .single-column .datepickerWrapper .ui-datepicker-trigger {
  left: 0px;
  top: 0;
}
.ie6 .iconButton:disabled .icon,
.ie6 .iconButton.disabled .icon,
.ie7 .iconButton:disabled .icon,
.ie7 .iconButton.disabled .icon,
.ie8 .iconButton:disabled .icon,
.ie8 .iconButton.disabled .icon {
  background-color: #bbb !important;
}
.ie6 .ui-autocomplete {
  height: 150px;
}
.ie6 #content a.inline-button {
  top: 3px;
  left: -25px;
}
.ie7 #content a.inline-button {
  top: 3px;
  left: -25px;
}
.ie8 #content a.inline-button {
  top: 3px;
  left: -25px;
}
.ie9 #content a.inline-button {
  top: 3px;
  left: -25px;
}
.toolbar {
  padding: 4px 6px 6px 6px;
  margin: 0 0 20px 0;
  background: #D6E1E7;
  border: 1px solid #BBCFDB;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.toolbar ul {
  display: block;
  margin: 0 !important;
  padding: 0;
  list-style-type: none;
}
.toolbar ul li {
  margin-left: 0 !important;
  padding-left: 0 !important;
  list-style-type: none;
  display: inline;
}
.toolbar ul li.DividerLeft {
  margin-left: 10px !important;
  padding-left: 15px !important;
  border-left: 1px solid #BBCFDB;
}
dl dt.required,
label.required {
  color: #333;
}
dl dt.required:after,
label.required:after {
  color: red;
  background: transparent;
  border: none;
  display: inline;
  content: ' *';
}
ul.layout,
ul.layout li {
  list-style-type: none;
  line-height: 1.1em;
  margin: 0;
  padding: 0;
}
/*# sourceMappingURL=forms.css.map */
#content .xx-small input,
#content .xx-small label,
#content .xx-small select,
#content .xx-small textarea,
#content .xx-small button,
#content input.xx-small,
#content label.xx-small,
#content select.xx-small,
#content textarea.xx-small,
#content button.xx-small {
  font-size: 100%;
  width: 53px;
}
#content .xx-small input[rel*="autocomplete"],
#content .xx-small input[rel*="dropdown"],
#content .xx-small select[rel*="dropdown"],
#content .xx-small input[rel*="search"],
#content input[rel*="autocomplete"].xx-small,
#content input[rel*="dropdown"].xx-small,
#content select[rel*="dropdown"].xx-small,
#content input[rel*="search"].xx-small {
  width: 21px;
}
#content .x-small input,
#content .x-small label,
#content .x-small select,
#content .x-small textarea,
#content .x-small button,
#content input.x-small,
#content label.x-small,
#content select.x-small,
#content textarea.x-small,
#content button.x-small {
  font-size: 100%;
  width: 79px;
}
#content .x-small input[rel*="autocomplete"],
#content .x-small input[rel*="dropdown"],
#content .x-small select[rel*="dropdown"],
#content .x-small input[rel*="search"],
#content input[rel*="autocomplete"].x-small,
#content input[rel*="dropdown"].x-small,
#content select[rel*="dropdown"].x-small,
#content input[rel*="search"].x-small {
  width: 47px;
}
#content .smaller input,
#content .smaller label,
#content .smaller select,
#content .smaller textarea,
#content .smaller button,
#content input.smaller,
#content label.smaller,
#content select.smaller,
#content textarea.smaller,
#content button.smaller {
  font-size: 100%;
  width: 106px;
}
#content .smaller input[rel*="autocomplete"],
#content .smaller input[rel*="dropdown"],
#content .smaller select[rel*="dropdown"],
#content .smaller input[rel*="search"],
#content input[rel*="autocomplete"].smaller,
#content input[rel*="dropdown"].smaller,
#content select[rel*="dropdown"].smaller,
#content input[rel*="search"].smaller {
  width: 74px;
}
#content .small input,
#content .small label,
#content .small select,
#content .small textarea,
#content .small button,
#content input.small,
#content label.small,
#content select.small,
#content textarea.small,
#content button.small {
  font-size: 100%;
  width: 159px;
}
#content .small input[rel*="autocomplete"],
#content .small input[rel*="dropdown"],
#content .small select[rel*="dropdown"],
#content .small input[rel*="search"],
#content input[rel*="autocomplete"].small,
#content input[rel*="dropdown"].small,
#content select[rel*="dropdown"].small,
#content input[rel*="search"].small {
  width: 127px;
}
#content .medium input,
#content .medium label,
#content .medium select,
#content .medium textarea,
#content .medium button,
#content input.medium,
#content label.medium,
#content select.medium,
#content textarea.medium,
#content button.medium {
  font-size: 100%;
  width: fit-content;
}
#content .medium input[rel*="autocomplete"],
#content .medium input[rel*="dropdown"],
#content .medium select[rel*="dropdown"],
#content .medium input[rel*="search"],
#content input[rel*="autocomplete"].medium,
#content input[rel*="dropdown"].medium,
#content select[rel*="dropdown"].medium,
#content input[rel*="search"].medium {
  width: 180px;
}
#content .large input,
#content .large label,
#content .large select,
#content .large textarea,
#content .large button,
#content input.large,
#content label.large,
#content select.large,
#content textarea.large,
#content button.large {
  font-size: 100%;
  width: 265px;
}
#content .large input[rel*="autocomplete"],
#content .large input[rel*="dropdown"],
#content .large select[rel*="dropdown"],
#content .large input[rel*="search"],
#content input[rel*="autocomplete"].large,
#content input[rel*="dropdown"].large,
#content select[rel*="dropdown"].large,
#content input[rel*="search"].large {
  width: 233px;
}
#content .larger input,
#content .larger label,
#content .larger select,
#content .larger textarea,
#content .larger button,
#content input.larger,
#content label.larger,
#content select.larger,
#content textarea.larger,
#content button.larger {
  font-size: 100%;
  width: 318px;
}
#content .larger input[rel*="autocomplete"],
#content .larger input[rel*="dropdown"],
#content .larger select[rel*="dropdown"],
#content .larger input[rel*="search"],
#content input[rel*="autocomplete"].larger,
#content input[rel*="dropdown"].larger,
#content select[rel*="dropdown"].larger,
#content input[rel*="search"].larger {
  width: 286px;
}
#content .x-large input,
#content .x-large label,
#content .x-large select,
#content .x-large textarea,
#content .x-large button,
#content input.x-large,
#content label.x-large,
#content select.x-large,
#content textarea.x-large,
#content button.x-large {
  font-size: 100%;
  width: 344px;
}
#content .x-large input[rel*="autocomplete"],
#content .x-large input[rel*="dropdown"],
#content .x-large select[rel*="dropdown"],
#content .x-large input[rel*="search"],
#content input[rel*="autocomplete"].x-large,
#content input[rel*="dropdown"].x-large,
#content select[rel*="dropdown"].x-large,
#content input[rel*="search"].x-large {
  width: 312px;
}
#content .xx-large input,
#content .xx-large label,
#content .xx-large select,
#content .xx-large textarea,
#content .xx-large button,
#content input.xx-large,
#content label.xx-large,
#content select.xx-large,
#content textarea.xx-large,
#content button.xx-large {
  font-size: 100%;
  width: 371px;
}
#content .xx-large input[rel*="autocomplete"],
#content .xx-large input[rel*="dropdown"],
#content .xx-large select[rel*="dropdown"],
#content .xx-large input[rel*="search"],
#content input[rel*="autocomplete"].xx-large,
#content input[rel*="dropdown"].xx-large,
#content select[rel*="dropdown"].xx-large,
#content input[rel*="search"].xx-large {
  width: 339px;
}
#content .xxx-large input,
#content .xxx-large label,
#content .xxx-large select,
#content .xxx-large textarea,
#content .xxx-large button,
#content input.xxx-large,
#content label.xxx-large,
#content select.xxx-large,
#content textarea.xxx-large,
#content button.xxx-large {
  font-size: 100%;
  width: 371px;
}
#content .xxx-large input[rel*="autocomplete"],
#content .xxx-large input[rel*="dropdown"],
#content .xxx-large select[rel*="dropdown"],
#content .xxx-large input[rel*="search"],
#content input[rel*="autocomplete"].xxx-large,
#content input[rel*="dropdown"].xxx-large,
#content select[rel*="dropdown"].xxx-large,
#content input[rel*="search"].xxx-large {
  width: 418px;
}
#content .xxxx-large input,
#content .xxxx-large label,
#content .xxxx-large select,
#content .xxxx-large textarea,
#content .xxxx-large button,
#content input.xxxx-large,
#content label.xxxx-large,
#content select.xxxx-large,
#content textarea.xxxx-large,
#content button.xxxx-large {
  font-size: 100%;
  width: 371px;
}
#content .xxxx-large input[rel*="autocomplete"],
#content .xxxx-large input[rel*="dropdown"],
#content .xxxx-large select[rel*="dropdown"],
#content .xxxx-large input[rel*="search"],
#content input[rel*="autocomplete"].xxxx-large,
#content input[rel*="dropdown"].xxxx-large,
#content select[rel*="dropdown"].xxxx-large,
#content input[rel*="search"].xxxx-large {
  width: 468px;
}
#content .xxxxx-large input,
#content .xxxxx-large label,
#content .xxxxx-large select,
#content .xxxxx-large textarea,
#content .xxxxx-large button,
#content input.xxxxx-large,
#content label.xxxxx-large,
#content select.xxxxx-large,
#content textarea.xxxxx-large,
#content button.xxxxx-large {
  font-size: 100%;
  width: 371px;
}
#content .xxxxx-large input[rel*="autocomplete"],
#content .xxxxx-large input[rel*="dropdown"],
#content .xxxxx-large select[rel*="dropdown"],
#content .xxxxx-large input[rel*="search"],
#content input[rel*="autocomplete"].xxxxx-large,
#content input[rel*="dropdown"].xxxxx-large,
#content select[rel*="dropdown"].xxxxx-large,
#content input[rel*="search"].xxxxx-large {
  width: 518px;
}
body .xx-small input,
body .xx-small label,
body .xx-small select,
body .xx-small textarea,
body .xx-small button,
body input.xx-small,
body label.xx-small,
body select.xx-small,
body textarea.xx-small,
body button.xx-small {
  font-size: 100%;
  width: 53px;
}
body .xx-small input[rel*="autocomplete"],
body .xx-small input[rel*="dropdown"],
body .xx-small select[rel*="dropdown"],
body .xx-small input[rel*="search"],
body input[rel*="autocomplete"].xx-small,
body input[rel*="dropdown"].xx-small,
body select[rel*="dropdown"].xx-small,
body input[rel*="search"].xx-small {
  width: 21px;
}
body .x-small input,
body .x-small label,
body .x-small select,
body .x-small textarea,
body .x-small button,
body input.x-small,
body label.x-small,
body select.x-small,
body textarea.x-small,
body button.x-small {
  font-size: 100%;
  width: 79px;
}
body .x-small input[rel*="autocomplete"],
body .x-small input[rel*="dropdown"],
body .x-small select[rel*="dropdown"],
body .x-small input[rel*="search"],
body input[rel*="autocomplete"].x-small,
body input[rel*="dropdown"].x-small,
body select[rel*="dropdown"].x-small,
body input[rel*="search"].x-small {
  width: 47px;
}
body .smaller input,
body .smaller label,
body .smaller select,
body .smaller textarea,
body .smaller button,
body input.smaller,
body label.smaller,
body select.smaller,
body textarea.smaller,
body button.smaller {
  font-size: 100%;
  width: 106px;
}
body .smaller input[rel*="autocomplete"],
body .smaller input[rel*="dropdown"],
body .smaller select[rel*="dropdown"],
body .smaller input[rel*="search"],
body input[rel*="autocomplete"].smaller,
body input[rel*="dropdown"].smaller,
body select[rel*="dropdown"].smaller,
body input[rel*="search"].smaller {
  width: 74px;
}
body .small input,
body .small label,
body .small select,
body .small textarea,
body .small button,
body input.small,
body label.small,
body select.small,
body textarea.small,
body button.small {
  font-size: 100%;
  width: 159px;
}
body .small input[rel*="autocomplete"],
body .small input[rel*="dropdown"],
body .small select[rel*="dropdown"],
body .small input[rel*="search"],
body input[rel*="autocomplete"].small,
body input[rel*="dropdown"].small,
body select[rel*="dropdown"].small,
body input[rel*="search"].small {
  width: 127px;
}
body .medium input,
body .medium label,
body .medium select,
body .medium textarea,
body .medium button,
body input.medium,
body label.medium,
body select.medium,
body textarea.medium,
body button.medium {
  font-size: 100%;
  width: 212px;
}
body .medium input[rel*="autocomplete"],
body .medium input[rel*="dropdown"],
body .medium select[rel*="dropdown"],
body .medium input[rel*="search"],
body input[rel*="autocomplete"].medium,
body input[rel*="dropdown"].medium,
body select[rel*="dropdown"].medium,
body input[rel*="search"].medium {
  width: 180px;
}
body .large input,
body .large label,
body .large select,
body .large textarea,
body .large button,
body input.large,
body label.large,
body select.large,
body textarea.large,
body button.large {
  font-size: 100%;
  width: 265px;
}
body .large input[rel*="autocomplete"],
body .large input[rel*="dropdown"],
body .large select[rel*="dropdown"],
body .large input[rel*="search"],
body input[rel*="autocomplete"].large,
body input[rel*="dropdown"].large,
body select[rel*="dropdown"].large,
body input[rel*="search"].large {
  width: 233px;
}
body .larger input,
body .larger label,
body .larger select,
body .larger textarea,
body .larger button,
body input.larger,
body label.larger,
body select.larger,
body textarea.larger,
body button.larger {
  font-size: 100%;
  width: 318px;
}
body .larger input[rel*="autocomplete"],
body .larger input[rel*="dropdown"],
body .larger select[rel*="dropdown"],
body .larger input[rel*="search"],
body input[rel*="autocomplete"].larger,
body input[rel*="dropdown"].larger,
body select[rel*="dropdown"].larger,
body input[rel*="search"].larger {
  width: 286px;
}
body .x-large input,
body .x-large label,
body .x-large select,
body .x-large textarea,
body .x-large button,
body input.x-large,
body label.x-large,
body select.x-large,
body textarea.x-large,
body button.x-large {
  font-size: 100%;
  width: 344px;
}
body .x-large input[rel*="autocomplete"],
body .x-large input[rel*="dropdown"],
body .x-large select[rel*="dropdown"],
body .x-large input[rel*="search"],
body input[rel*="autocomplete"].x-large,
body input[rel*="dropdown"].x-large,
body select[rel*="dropdown"].x-large,
body input[rel*="search"].x-large {
  width: 312px;
}
body .xx-large input,
body .xx-large label,
body .xx-large select,
body .xx-large textarea,
body .xx-large button,
body input.xx-large,
body label.xx-large,
body select.xx-large,
body textarea.xx-large,
body button.xx-large {
  font-size: 100%;
  width: 371px;
}
body .xx-large input[rel*="autocomplete"],
body .xx-large input[rel*="dropdown"],
body .xx-large select[rel*="dropdown"],
body .xx-large input[rel*="search"],
body input[rel*="autocomplete"].xx-large,
body input[rel*="dropdown"].xx-large,
body select[rel*="dropdown"].xx-large,
body input[rel*="search"].xx-large {
  width: 339px;
}
body .xxx-large input,
body .xxx-large label,
body .xxx-large select,
body .xxx-large textarea,
body .xxx-large button,
body input.xxx-large,
body label.xxx-large,
body select.xxx-large,
body textarea.xxx-large,
body button.xxx-large {
  font-size: 100%;
  width: 371px;
}
body .xxx-large input[rel*="autocomplete"],
body .xxx-large input[rel*="dropdown"],
body .xxx-large select[rel*="dropdown"],
body .xxx-large input[rel*="search"],
body input[rel*="autocomplete"].xxx-large,
body input[rel*="dropdown"].xxx-large,
body select[rel*="dropdown"].xxx-large,
body input[rel*="search"].xxx-large {
  width: 418px;
}
body .xxxx-large input,
body .xxxx-large label,
body .xxxx-large select,
body .xxxx-large textarea,
body .xxxx-large button,
body input.xxxx-large,
body label.xxxx-large,
body select.xxxx-large,
body textarea.xxxx-large,
body button.xxxx-large {
  font-size: 100%;
  width: 371px;
}
body .xxxx-large input[rel*="autocomplete"],
body .xxxx-large input[rel*="dropdown"],
body .xxxx-large select[rel*="dropdown"],
body .xxxx-large input[rel*="search"],
body input[rel*="autocomplete"].xxxx-large,
body input[rel*="dropdown"].xxxx-large,
body select[rel*="dropdown"].xxxx-large,
body input[rel*="search"].xxxx-large {
  width: 468px;
}
body .xxxxx-large input,
body .xxxxx-large label,
body .xxxxx-large select,
body .xxxxx-large textarea,
body .xxxxx-large button,
body input.xxxxx-large,
body label.xxxxx-large,
body select.xxxxx-large,
body textarea.xxxxx-large,
body button.xxxxx-large {
  font-size: 100%;
  width: 371px;
}
body .xxxxx-large input[rel*="autocomplete"],
body .xxxxx-large input[rel*="dropdown"],
body .xxxxx-large select[rel*="dropdown"],
body .xxxxx-large input[rel*="search"],
body input[rel*="autocomplete"].xxxxx-large,
body input[rel*="dropdown"].xxxxx-large,
body select[rel*="dropdown"].xxxxx-large,
body input[rel*="search"].xxxxx-large {
  width: 518px;
}
/*# sourceMappingURL=InputSizing.css.map */
	/********( Fullscreen Workarea )***************************************/
	.fullscreen-content #contentWrapper {
		background: none;
		width: auto;
		margin-bottom: 0px;
		margin-top: 0px;
	}

	.fullscreen-content #workArea {
		border:4px solid #000000;
		height: 93%; /* Taking fomrbuttons into account */
		position: fixed;
		width: 98%;
		z-index: 100;
		top: -250px;
		left: 1%;
		overflow: scroll;

		/*background: white url(/rsrc/img/base/fullscreen-background.png) 10% 95px repeat-x;*/
	}

	.fullscreen-content  .notifications {
	    left: 100%;
	    margin: 0 0 0 -585px;
		top: 70px !important;
		position: fixed;
	}


	html .fullscreen-content #header,
	html .fullscreen-content #dividerBar{
		background: none;
		height: 0;
	}
	.fullscreen-content #footer,
	.fullscreen-content #primaryNavigation,
	.fullscreen-content #logo,
	.fullscreen-content #slogan,
	.fullscreen-content #sessionTools,
	.fullscreen-content #tabs,
	.fullscreen-content #utilityBox
	{
		display: none;
	}

	.fullscreen-content #workArea #content{
		padding: 0 0 2em !important;
		border: 1px solid #DCDCDC;
		border-top: 0;
		border-left: 0;
	}

	.fullscreen-content #workArea #content > * {
		padding-left: 2em;
	}

	.fullscreen-content #workArea .FormButtons {
		bottom: 3.85%;
		height: 35px;
		left: 3%;
		margin: 0;
		right: 3%;
		width: 95%;
	}


.BreadcrumbPath {
  margin-top: 0;
  line-height: 2.8em;
  font-size: 12px;
}
.BreadcrumbPath li {
  list-style-type: none;
  display: inline;
  padding: 0px;
}
.BreadcrumbPath li:before {
  content: '>';
  font-size: 9px;
  color: rgba(14, 24, 32, 0.04);
  padding: 0;
  margin: -5px 0 0;
  left: -10px;
  position: relative;
}
.BreadcrumbPath li:first-child:before {
  content: '';
  padding: 0;
}
.BreadcrumbPath li a {
  color: #1a1a2c !important;
}
/*# sourceMappingURL=BreadcrumbPath.css.map */
/*
	SUPERFISH.CSS
	http://users.tpg.com.au/j_birch/plugins/superfish/#sample4
*/
/*** ESSENTIAL STYLES ***/
.sf-menu,
.sf-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sf-menu {
  line-height: 1;
}
.sf-menu ul {
  position: absolute;
  top: -999em;
  width: 10em;
  /* left offset of submenus need to match (see below) */
}
.sf-menu ul li {
  width: 100%;
}
.sf-menu li:hover {
  visibility: inherit;
  /* fixes IE7 'sticky bug' */
}
.sf-menu li {
  float: left;
  position: relative;
}
.sf-menu a {
  display: block;
  position: relative;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
  left: 0;
  top: 2.5em;
  /* match top ul list item height */
  z-index: 99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
  top: -999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
  left: 10em;
  /* match ul width */
  top: 0;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
  top: -999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
  left: 10em;
  /* match ul width */
  top: 0;
}
/*** DEMO SKIN ***/
.sf-menu {
  float: left;
  margin-bottom: 1em;
}
.sf-menu a {
  border-left: 1px solid #fff;
  border-top: 1px solid #CFDEFF;
  padding: 0.75em 1em;
  text-decoration: none;
}
.sf-menu a,
.sf-menu a:visited {
  /* visited pseudo selector so IE6 applies text colour*/
  color: #13a;
}
.sf-menu li {
  background: #BDD2FF;
}
.sf-menu li li {
  background: #AABDE6;
}
.sf-menu li li li {
  background: #9AAEDB;
}
.sf-menu li:hover,
.sf-menu li.sfHover,
.sf-menu a:focus,
.sf-menu a:hover,
.sf-menu a:active {
  background: #CFDEFF;
  outline: 0;
}
/*** arrows **/
.sf-menu a.sf-with-ul {
  padding-right: 2.25em;
  min-width: 1px;
  /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
  position: absolute;
  display: block;
  right: 0.75em;
  top: 1.05em;
  /* IE6 only */
  width: 10px;
  height: 10px;
  text-indent: -999em;
  overflow: hidden;
  background: url('/rsrc/img/navigation-arrows-ffffff.png') no-repeat -10px -100px;
  /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator {
  /* give all except IE6 the correct values */
  top: 0.8em;
  background-position: 0 -100px;
  /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
  background-position: -10px -100px;
  /* arrow hovers for modern browsers*/
}
/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator {
  background-position: -10px 0;
}
.sf-menu ul a > .sf-sub-indicator {
  background-position: 0 0;
}
/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
  background-position: -10px 0;
  /* arrow hovers for modern browsers*/
}
/*** shadows for all but IE6 ***/
.sf-shadow ul {
  /*background:	url('../images/shadow.png') no-repeat bottom right;*/
  /*padding: 0 8px 9px 0;*/
  /*-moz-border-radius-bottomleft: 17px;*/
  /*-moz-border-radius-topright: 17px;*/
  /*-webkit-border-top-right-radius: 17px;*/
  /*-webkit-border-bottom-left-radius: 17px;*/
}
.sf-shadow ul.sf-shadow-off {
  background: transparent;
}
/*
	NAVBAR.CSS
	http://users.tpg.com.au/j_birch/plugins/superfish/#sample4
*/
/*** adding the class sf-navbar in addition to sf-menu creates an all-horizontal nav-bar menu ***/
.sf-navbar {
  background: #BDD2FF;
  height: 2.5em;
  padding-bottom: 2.5em;
  position: relative;
}
.sf-navbar li {
  background: #AABDE6;
  position: static;
}
.sf-navbar a {
  border-top: none;
}
.sf-navbar li ul {
  width: 44em;
  /*IE6 soils itself without this*/
}
.sf-navbar li li {
  background: #BDD2FF;
  position: relative;
}
.sf-navbar li li ul {
  width: 13em;
}
.sf-navbar li li li {
  width: 100%;
}
.sf-navbar ul li {
  width: auto;
  float: left;
}
.sf-navbar a,
.sf-navbar a:visited {
  border: none;
}
.sf-navbar li.current {
  background: #BDD2FF;
}
.sf-navbar li:hover,
.sf-navbar li.sfHover,
.sf-navbar li li.current,
.sf-navbar a:focus,
.sf-navbar a:hover,
.sf-navbar a:active {
  background: #BDD2FF;
}
.sf-navbar ul li:hover,
.sf-navbar ul li.sfHover,
ul.sf-navbar ul li:hover li,
ul.sf-navbar ul li.sfHover li,
.sf-navbar ul a:focus,
.sf-navbar ul a:hover,
.sf-navbar ul a:active {
  background: #D1DFFF;
}
ul.sf-navbar li li li:hover,
ul.sf-navbar li li li.sfHover,
.sf-navbar li li.current li.current,
.sf-navbar ul li li a:focus,
.sf-navbar ul li li a:hover,
.sf-navbar ul li li a:active {
  background: #E6EEFF;
}
ul.sf-navbar .current ul,
ul.sf-navbar ul li:hover ul,
ul.sf-navbar ul li.sfHover ul {
  left: 0;
  top: 2.5em;
  /* match top ul list item height */
}
ul.sf-navbar .current ul ul {
  top: -999em;
}
.sf-navbar li li.current > a {
  font-weight: bold;
}
/*** point all arrows down ***/
/* point right for anchors in subs */
.sf-navbar ul .sf-sub-indicator {
  background-position: -10px -100px;
}
.sf-navbar ul a > .sf-sub-indicator {
  background-position: 0 -100px;
}
/* apply hovers to modern browsers */
.sf-navbar ul a:focus > .sf-sub-indicator,
.sf-navbar ul a:hover > .sf-sub-indicator,
.sf-navbar ul a:active > .sf-sub-indicator,
.sf-navbar ul li:hover > a > .sf-sub-indicator,
.sf-navbar ul li.sfHover > a > .sf-sub-indicator {
  background-position: -10px -100px;
  /* arrow hovers for modern browsers*/
}
/*** remove shadow on first submenu ***/
.sf-navbar > li > ul {
  background: transparent;
  padding: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topright: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
}
/*
	Customization
*/
#tabs > .sf-menu > li {
  background: transparent;
}
a > p > .sf-sub-indicator {
  top: 1.1em;
  background-image: none;
}
.sf-menu a.sf-with-ul {
  padding-right: 0em;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
  top: 42px;
}
#tabs .sf-menu li ul .menu-item > a {
  background-image: none;
  font-size: 12px !important;
  text-transform: lowercase !important;
}
.sf-menu > li > a {
  padding-left: 13px;
}
.sf-menu > li > a {
  text-align: left;
  height: 40px;
  overflow: hidden;
  width: 169px;
  padding: 0 0 0 0;
  display: table;
}
.sf-menu > li > a > p {
  display: table-cell;
  vertical-align: middle;
  padding: 0 10px 0 13px;
}
.sf-navbar .level-1 > a {
  padding: 11px 20px 11px 13px;
  font-size: 11px;
  font-weight: bold;
  border: 0px solid transparent;
  border-right: 4px solid transparent;
  /*margin-left: -2px;*/
}
.sf-navbar .level-1.with-children > a {
  padding-right: 35px;
  background-image: url('/rsrc/img/menu-sprite_v2.png') !important;
  background-position: right -67px !important;
  background-repeat: no-repeat;
}
.sf-navbar .sfHover > .level-1 > a,
.sf-navbar .selected .level-1 > a,
.sf-navbar .level-1 > a:hover {
  background-image: url('/rsrc/img/menu-sprite_v2.png') !important;
  background-position: right 6px !important;
  background-repeat: no-repeat;
  padding: 11px 10px 11px 0;
  margin: 0 10px 0 9px;
}
.ie6 .sf-navbar .sfHover > .level-1 > a,
.ie6 .sf-navbar .selected .level-1 > a,
.ie6 .sf-navbar .level-1 > a:hover,
.ie7 .sf-navbar .sfHover > .level-1 > a,
.ie7 .sf-navbar .selected .level-1 > a,
.ie7 .sf-navbar .level-1 > a:hover {
  padding-left: 8px;
  background-position: left 9px !important;
}
.sf-navbar .level-1 > a::selection {
  background-color: #4da3e0;
}
.sf-navbar .sfHover > .level-1.with-children > a,
.sf-navbar .selected .level-1.with-children > a,
.sf-navbar .level-1.with-children > a:hover {
  padding-right: 25px;
}
.sf-menu li {
  background: transparent;
}
.sf-menu li:first-child,
.sf-menu li:last-child {
  -webkit-border-radius: 4px;
  /* Saf3-4, iOS 1-3.2, Android <e;1.6 */
  -moz-border-radius: 4px;
  /* FF1-3.6 */
  border-radius: 4px;
  /* Opera 10.5, IE9, Saf5, Chrome, FF4, iOS 4, Android 2.1+ */
}
.sf-menu li li {
  background: transparent;
}
.sf-menu li li li {
  background: transparent;
}
.sf-menu li:hover,
.sf-menu li.sfHover,
.sf-menu a:focus,
.sf-menu a:hover,
.sf-menu a:active {
  background: #fff;
  outline: 0;
}
.sf-navbar li.current {
  background: #fff;
}
.sf-navbar li li ul {
  width: 16em;
}
.sf-navbar li:hover,
.sf-navbar li.sfHover,
.sf-navbar li li.current,
.sf-navbar a:focus,
.sf-navbar a:hover,
.sf-navbar a:active {
  background: transparent;
}
.sf-navbar ul li:hover,
.sf-navbar ul li.sfHover,
ul.sf-navbar ul li:hover li,
ul.sf-navbar ul li.sfHover li,
.sf-navbar ul a:focus,
.sf-navbar ul a:hover,
.sf-navbar ul a:active {
  background: transparent;
}
ul.sf-navbar li li li:hover,
ul.sf-navbar li li li.sfHover,
.sf-navbar li li.current li.current,
.sf-navbar ul li li a:focus,
.sf-navbar ul li li a:hover,
.sf-navbar ul li li a:active {
  background: #fff;
}
ul.sf-navbar .current ul,
ul.sf-navbar ul li:hover ul,
ul.sf-navbar ul li.sfHover ul {
  left: 0px;
  top: 38px;
  /* match top ul list item height */
  border: 2px solid #007bd2;
  border-top: 0px solid #007bd2;
  background-color: #f2f2f2;
  border-radius: 0 0 5px;
  /* Opera 10.5, IE9, Saf5, Chrome, FF4, iOS 4, Android 2.1+ */
  /* useful if you don't want a bg color from leaking outside the border: */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 2px 2px 6px #666;
  /* Saf3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  -moz-box-shadow: 2px 2px 6px #666;
  /* FF3.5 - 3.6 */
  box-shadow: 2px 2px 6px #666;
  /* Opera 10.5, IE9, FF4+, Chrome 6+, iOS 5 */
}
ul.sf-navbar .current ul ul,
ul.sf-navbar ul li:hover ul ul,
ul.sf-navbar ul li.sfHover ul ul {
  border: 2px solid #007bd2;
  border-top: 2px solid #007bd2;
  border-radius: 5px;
  /* Opera 10.5, IE9, Saf5, Chrome, FF4, iOS 4, Android 2.1+ */
}
#tabs .sf-navbar li li li ul {
  left: 15.3em;
  top: 0px;
}
#tabs .sf-navbar li.selected > .level-2 > a,
#tabs .sf-navbar li.selected > .level-3 > a {
  font-weight: bold !important;
  background: #fff;
}
#tabs .sf-navbar li li li ul:after,
#tabs .sf-navbar li li li ul:before {
  border-color: transparent;
}
#tabs .sf-navbar li li li a {
  background-image: none;
  font-size: 11px;
  border-top: 1px solid #d6d6d6;
  font-weight: normal !important;
  color: #666666 !important;
  border-bottom: 0 !important;
}
.sf-navbar li:first-child > .level-2 > a,
.sf-navbar li:first-child > .level-3 > a {
  border-top: 0 !important;
  border-bottom: 0 !important;
}
.sf-navbar .level-2.selected > a,
.sf-navbar .level-3.selected > a {
  color: #999 !important;
}
ul.sf-navbar .current ul > li > .with-children > a,
ul.sf-navbar ul li:hover ul > li > .with-children > a,
ul.sf-navbar ul li.sfHover ul > li > .with-children > a {
  padding-right: 30px;
  background-image: url('/rsrc/img/navigation-arrows.png') !important;
  background-repeat: no-repeat !important;
  background-position: right -153px !important;
}
ul.sf-navbar .current ul > li.sfHover > .with-children > a,
ul.sf-navbar ul li:hover ul > li.sfHover > .with-children > a,
ul.sf-navbar ul li.sfHover ul > li.sfHover > .with-children > a {
  padding-right: 30px;
  background-image: url('/rsrc/img/navigation-arrows.png') !important;
  background-repeat: no-repeat !important;
  background-position: right -98px !important;
  background-color: #fff !important;
  -webkit-border-radius: 4px;
  /* Saf3-4, iOS 1-3.2, Android <e;1.6 */
  -moz-border-radius: 4px;
  /* FF1-3.6 */
  border-radius: 4px;
  /* Opera 10.5, IE9, Saf5, Chrome, FF4, iOS 4, Android 2.1+ */
}
.sf-menu .toggle-button {
  display: none;
}
.intro_vrest_com .header,
.intro2_vrest_com .header {
  background-color: #e6b1b1;
}
.acceptatie2_vrest_com .header,
.acceptatie_vrest_com .header,
.testservices_vrest_com .header {
  background-color: #ffd14d;
}
.test_vrest_com .header,
.vrapp_vrest_com .header {
  background-color: #aad2b3;
}
.dcpf_robin_imac_local .header,
.dcpf_robin_hp_local .header {
  background-color: #858585;
}
:root {
  --header-height: 5rem;
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}
/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: #fafcff;
  color: #656e81;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  margin-inline: 3.5rem;
}
/*=============== HEADER ===============*/
.header {
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
  background-color: #fafcff;
  z-index: var(--z-fixed);
}
.myProfile:hover ul.ProfileDropdown {
  display: block;
}
.myProfile:active ul.ProfileDropdown {
  display: block;
}
ul.ProfileDropdown {
  display: none;
  position: absolute;
  padding: 0;
  background: #fafcff;
  right: 0;
  margin: 0;
  border-radius: 4px;
  box-shadow: #64646f33 0 7px 29px;
  -webkit-user-select: none;
  user-select: none;
  overflow: hidden;
}
ul.ProfileDropdown li {
  padding-left: 0 !important;
  margin: 0 !important;
}
ul.ProfileDropdown li a,
ul.ProfileDropdown li span {
  color: #253c6a !important;
  display: inline-block;
  width: 100%;
  padding: 10px 15px;
}
ul.ProfileDropdown .button {
  color: #253c6a !important;
  margin: 0 !important;
  padding: 10px 15px;
  --button-shadow: none;
  background: none;
}
/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}
.nav .nav__menu {
  height: var(--header-height);
}
.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  color: #253c6a;
  font-weight: var(--font-semi-bold);
  transition: color 0.3s;
}
.nav__logo i {
  font-size: 1.25rem;
}
.nav__logo:hover {
  color: #3a6fd9;
}
.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}
.nav__toggle-menu,
.nav__toggle-close {
  font-size: 1.25rem;
  color: #253c6a;
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}
.nav__toggle-close {
  opacity: 0;
}
@media screen and (max-width: 1118px) {
  #sub-header {
    height: 0;
  }
  #sub-header .nav {
    height: 0;
  }
  .nav__menu {
    background-color: #fafcff;
    position: absolute;
    left: 0;
    width: 100vw;
    height: auto !important;
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav__menu.show-menu {
    top: 0;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0.5rem;
  }
  .nav__menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  }
  .container {
    margin-inline: 1.5rem;
  }
}
.nav__link {
  color: #253c6a;
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}
.nav__link a {
  color: #253c6a;
}
.nav__link:hover {
  background-color: #f2f6fd;
}
/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}
/* Show icon */
.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__toggle-close {
  opacity: 1;
}
/*=============== DROPDOWN ===============*/
.dropdown__button {
  cursor: pointer;
}
.dropdown__arrow {
  font-size: 1rem;
  font-weight: initial;
  transition: transform 0.4s;
  margin-left: 5px;
}
.dropdown__content,
.dropdown__group,
.dropdown__list {
  display: grid;
}
.dropdown__container {
  background-color: #f2f6fd;
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}
.dropdown__content {
  row-gap: 1.75rem;
  padding: 2rem;
}
.dropdown__group {
  padding-left: 2.5rem;
  row-gap: 0.5rem;
}
.dropdown__group:first-child {
  margin-top: 1.25rem;
}
.dropdown__group:last-child {
  margin-bottom: 1.25rem;
}
.dropdown__icon i {
  font-size: 1.25rem;
  color: #3a6fd9;
}
.dropdown__title a {
  color: #253c6a;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}
.dropdown__title.level-1 a {
  font-weight: var(--font-semi-bold);
  color: #253c6a;
}
.dropdown__title.level-2 a {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: #253c6a;
}
.dropdown__list {
  row-gap: 0.25rem;
}
.dropdown__list.level-1 {
  margin: 0;
}
.dropdown__list.hide {
  display: none;
}
.dropdown__link {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: #656e81;
  transition: color 0.3s;
}
.dropdown__link:hover {
  color: #253c6a;
}
.dropdown__arrow {
  cursor: pointer;
  padding: 1px;
}
.dropdown__arrow.open {
  transform: rotate(180deg);
}
/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
  .dropdown__group {
    padding-left: 1.5rem;
  }
}
@media screen and (max-width: 1118px) {
  ul.dropdown__list.level-1 {
    position: relative;
    left: -22px;
  }
  ul.dropdown__list.level-2 {
    right: 22px;
    position: relative;
    margin: 0;
  }
  .dropdown__content {
    row-gap: 25px;
  }
  .dropdown__item {
    cursor: pointer;
    padding: 1px;
  }
  .dropdown__item.show-dropdown .nav__link .dropdown__arrow {
    transform: rotate(180deg);
  }
  .dropdown__item.show-dropdown > .dropdown__container {
    top: 4.3rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
    height: auto;
  }
}
/* For large devices */
@media screen and (min-width: 1118px) {
  /* Nav */
  .nav {
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    display: flex;
    column-gap: 3rem;
    height: 100%;
    justify-content: space-around;
    margin: 0;
  }
  .nav li {
    display: flex;
  }
  .nav li.MainItem {
    padding: 0 25px;
  }
  .nav__link {
    padding: 0;
  }
  .nav__link:hover {
    background-color: initial;
  }
  /* Dropdown */
  .dropdown__button {
    column-gap: 0.25rem;
  }
  .dropdown__container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.5rem;
    background-color: #fafcff;
    box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .dropdown__content {
    display: flex;
    grid-template-columns: repeat(5, max-content);
    column-gap: 6rem;
    margin-inline: auto;
    justify-content: center;
  }
  .dropdown__group {
    padding: 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }
  .dropdown__group:first-child,
  .dropdown__group:last-child {
    margin: 0;
  }
  .dropdown__list {
    row-gap: 0.75rem;
    margin: 0 10px;
  }
  .dropdown__icon {
    width: 60px;
    height: 60px;
    background-color: #f2f6fd;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
  }
  .dropdown__icon i {
    font-size: 2rem;
  }
  .dropdown__title {
    font-size: var(--normal-font-size);
  }
  .dropdown__link {
    font-size: var(--small-font-size);
  }
  .dropdown__link:hover {
    color: #3a6fd9;
  }
  .dropdown__item {
    cursor: pointer;
    padding: 1px;
  }
  .dropdown__item:hover .nav__link .dropdown__arrow,
  .dropdown__item.show-dropdown .nav__link .dropdown__arrow {
    transform: rotate(180deg);
  }
  .dropdown__item:hover > .dropdown__container,
  .dropdown__item.show-dropdown > .dropdown__container {
    top: 4.3rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }
}
@media screen and (min-width: 1280px) {
  .nav li {
    display: flex;
  }
}
/*# sourceMappingURL=navigationMenu.css.map */
#footerInner {
  width: 94%;
  color: #e0e0e0;
  position: relative;
  background: none;
  height: 30px;
  padding: 2px 0;
  border: 0;
  margin: 10px auto 0;
  font-size: 15px;
}
.footer_poweredby_support {
  float: left;
  width: 300px;
  margin: 3px 0px;
}
.footer_poweredby {
  background: url("/rsrc/img/vrest_logo_footer.png") no-repeat scroll 0 0 transparent;
  height: 25px;
  width: 92px;
  padding: 0 15px 0 0;
  margin: 0 12px 0 0;
  float: left;
}
.footer_support {
  float: left;
  width: 300px;
  margin: 0 0 0 0;
}
#footer .footer_support p,
#footer .footer_support a {
  margin: 0;
  padding: 0;
  font-weight: bold;
  line-height: 24px;
  color: #1a1a2c;
}
#copyrightMessage,
.footerlinks {
  float: right;
  width: 65%;
  margin: 3px 0 0 0;
  padding: 0;
  font-weight: bold;
  text-align: right;
  margin-right: 0px;
  line-height: 14px;
  height: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #1a1a2c;
}
#copyrightMessage {
  line-height: 24px;
}
#footer .footerlinks ul {
  float: right;
  margin: 3px 0 0 0;
}
#footer .footerlinks ul li:first-child a {
  border: 0;
}
@media screen and (min-width: 1280px) {
  .dcpf #footerinner {
    width: 94% !important;
  }
}
/*# sourceMappingURL=footer.css.map */
@media print {
  /********( Print Stylesheet)*********************************************************
	 0. CSS Introduction

	 1. Base Elements
		 1.1. Links

	 2. Other Elements
	 3. Form Elements

	 EOF
 */
  /********( CSS Introduction )***************************************************

	 This document contains all the styles to make the pages look nice when
	 printed or exported to PDF.
 */
  /********( Base Elements )*****************************************************/
  html,
  body {
    height: 98%;
    background: none #FFF !important;
  }
  a img[src^="/rsrc/img/icon/"] {
    display: none;
  }
  a[href^="mailto"]:after {
    content: " ";
  }
  /********( Other Elements )****************************************************/
  #primaryNavigation {
    width: 0;
  }
  #primaryNavigation #supportFooter {
    bottom: -4em;
  }
  #primaryNavigation #supportFooter p a,
  #primaryNavigation #supportFooter p {
    color: #4682b4;
  }
  #contentWrapper,
  #workArea {
    margin-top: 0;
    margin-bottom: 0;
  }
  #header,
  #footer,
  #secondaryNavigation,
  #primaryNavigation .menu,
  .datagrid .Toolbar {
    display: none;
  }
  /********( Form Elements )*****************************************************/
  .Radio {
    /*display: block;*/
    background: #fff;
    border: 1px solid #999;
    height: 14px;
    width: 14px;
    margin: 0 10px 0 0;
  }
  .Radio:checked {
    /*display: block;*/
    background: #333;
    border: 1px solid #000;
    height: 14px;
    width: 14px;
    margin: 0 10px 0 0;
  }
  .RadioGroup li {
    list-style-type: none;
    float: left;
  }
  .RadioGroup li label {
    margin-right: 1em;
  }
  button {
    display: none;
  }
  .DropdownList {
    font-weight: bold;
  }
  /********( Other )*****************************************************/
  h2.dompdf {
    display: block !important;
    margin: 3em 0 0 0;
    clear: both;
    line-height: 1.5em;
  }
  .nodompdf {
    display: none !important;
  }
  table.DataGrid > tbody > tr > td {
    padding: 0.25em 0.35em;
    white-space: nowrap;
    vertical-align: top;
    line-height: 22px;
  }
  .Collapsible h3 {
    border: 0 !important;
    background: transparent !important;
    padding: 0 0 0.5em !important;
  }
  .Collapsible h3 .triangle {
    display: none;
  }
  .Collapsible .CollapsibleContent {
    overflow: visible !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 0 0.5em !important;
  }
  .ProgressOverview .ProgressOverviewTableWrapper .ProgressOverviewTable {
    width: 1300px;
  }
  /********( EOF )***************************************************************/
  .Mugshots .TableView .TableViewColumn ul li,
  .MugshotsExport .TableView .TableViewColumn ul li {
    line-height: 17px;
  }
  .Mugshots .TableView .TableViewColumn ul > .gravatar,
  .MugshotsExport .TableView .TableViewColumn ul > .gravatar {
    padding: 3px;
    border: 1px solid #ccc !important;
    background: #fff;
    float: left;
    margin: 1px 10px 5px 0;
  }
  .Mugshots .TableView .TableViewColumn:hover,
  .MugshotsExport .TableView .TableViewColumn:hover {
    padding: 0;
    margin: 0;
  }
  .MugshotsExport {
    background: #fff;
  }
  .MugshotsExport #ajax-busy-notice {
    position: fixed;
    top: 10px;
    left: 10px;
    padding: 15px 30px;
    border: 1px solid #333 !important;
    background-color: #eee;
    z-index: 999999999;
  }
  .MugshotsExport #ajax-busy-notice img {
    margin: auto;
  }
  .MugshotsExport *,
  .MugshotsExport *:hover {
    border-color: #fff !important;
  }
  .MugshotsExport fieldset[rel*="search"] {
    display: none;
  }
  .MugshotsExport .TableView tbody > tr td:hover > * {
    background-color: transparent;
  }
  .MugshotsExport .TableView tbody > tr:nth-child(odd) td:hover > * {
    background-color: transparent;
  }
  .MugshotsExport .TableView tfoot .Pager,
  .MugshotsExport .TableView tfoot .selectWrapper {
    display: none;
  }
}
/*# sourceMappingURL=printToPrinter.css.map */
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #ffffff;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 20px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);

}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background: url(/rsrc/img/shape_icons/exit.svg) no-repeat;
	z-index: 200;
	background-color: #ffffff;
	border-radius: 32px;;
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: url("/rsrc/img/vrest-loader-64x64.gif") no-repeat center;
    opacity: 0.8;
    cursor: pointer;
    z-index: 8060;
}

#fancybox-loading div {
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -16px;
	width: 34px;
	height: 34px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url('/rsrc/js/3rd-party/jquery-plugins/fancybox/blank.gif'); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
	overflow: hidden !important;
	width: auto;
}

.fancybox-lock body {
	overflow: hidden !important;
}

.fancybox-lock-test {
	overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url('/rsrc/js/3rd-party/jquery-plugins/fancybox/fancybox_overlay.png');
}

.fancybox-overlay-fixed {
    position: fixed;
    bottom: 0;
    right: 0;
	background-color: rgba(0, 0, 0, 0.92);
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

.fancybox-wrap.minified{
	top: 50% !important;
	margin-top: -170px !important;
}

.fancybox-wrap.minified .fancybox-inner{
	height: 300px !important;
}

.fancybox-wrap.fullscreen {
	width: 100% !important;
	height: 100% !important;
	top: 0 !important;
	left: 0 !important;
}
.fancybox-wrap.fullscreen .fancybox-inner{
	width: 100% !important;
	max-width: 1600px;
	/*height: auto !important;*/
	margin: 0 auto;
}
.fancybox-wrap.fullscreen .fancybox-skin{
	height: 100% !important;
	padding: 0 !important;
}
.fancybox-wrap.fullscreen .fancybox-close{
	top: 0;
	right: 0;
}

.interactive-help-available {
  outline: solid 2px #C3ECFF !important;
}
.interactive-help-clicker {
  cursor: help;
  outline: 0;
  background: #999;
  border: 1px solid #fff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 0;
  position: absolute;
  top: 14px;
  right: 3px;
  z-index: 1004;
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  width: 16px;
  height: 16px;
  min-height: 16px;
  min-width: 16px;
  text-align: center;
  display: none;
  -webkit-box-shadow: 0 0 4px #ccc;
  box-shadow: 0 0 4px #ccc;
}
.interactive-help-clicker.visible {
  display: block;
}
.interactive-help-clicker.parentCard {
  display: none;
}
.interactive-help-clicker.parentCard.visible {
  display: none;
}
.interactive-help-dialog.ui-dialog {
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
  border: 1px solid #bbb;
  max-width: 700px;
  min-width: 150px;
  min-height: 55px;
}
.interactive-help-dialog.ui-dialog .ui-dialog-titlebar {
  background: #ddd;
  margin: -0.2em -0.2em 0 -0.2em;
  padding: 5px 15px;
  -webkit-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  color: #666;
}
.interactive-help-dialog.ui-dialog .ui-dialog-titlebar .ui-dialog-title {
  display: block;
}
.interactive-help-dialog.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close {
  outline: 0;
  background: #999;
  border: 1px solid #fff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 0;
  position: absolute;
  top: 14px;
  right: 3px;
  cursor: pointer;
  z-index: 1004;
  overflow: hidden;
  color: #fff;
  display: block;
  font-size: 11px;
  width: 16px;
  height: 16px;
  min-height: 16px;
  min-width: 16px;
}
.interactive-help-dialog.ui-dialog .helptext {
  margin: 0;
}
.ah_toolbar {
  z-index: -1;
  padding: 0;
  text-align: right;
  position: relative;
  margin: 0;
  right: 4.5%;
  bottom: 44px;
  width: 100%;
  min-width: 1280px;
  margin-bottom: -44px;
}
.ah_toolbar li.toolbarbutton {
  background: transparent;
  padding: 3px;
  margin: 0 7px;
  display: inline;
  list-style: none;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  line-height: 12px;
  height: 12px;
  min-height: 0px;
}
.ah_toolbar li.toolbarbutton img {
  vertical-align: -3px;
}
.ah_toolbar li.toolbarbutton:hover {
  background: #7fb7cd;
}
.ah_toolbar li.toolbarbutton:active {
  background: #7fb7cd;
}
.interactivehelpEnabled .interactive-help-admin-highlighted {
  outline: solid 2px #C3ECFF !important;
}
.CardThemeTemplate .ah_toolbar,
.NoThemeTemplate .ah_toolbar {
  display: none;
  padding: 0;
  text-align: right;
  position: relative;
  margin: 0;
  right: 0;
  bottom: 0px;
  width: 100%;
  min-width: 20px;
}


@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('/rsrc/css/bootstrap/bootstrap_glyphicons_only/fonts/glyphicons-halflings-regular.eot');
  src: url('/rsrc/css/bootstrap/bootstrap_glyphicons_only/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('/rsrc/css/bootstrap/bootstrap_glyphicons_only/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('/rsrc/css/bootstrap/bootstrap_glyphicons_only/fonts/glyphicons-halflings-regular.woff') format('woff'), url('/rsrc/css/bootstrap/bootstrap_glyphicons_only/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('/rsrc/css/bootstrap/bootstrap_glyphicons_only/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\002a";
}
.glyphicon-plus:before {
  content: "\002b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "\26fa";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "\231b";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before {
  content: "\e227";
}
.glyphicon-btc:before {
  content: "\e227";
}
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-yen:before {
  content: "\00a5";
}
.glyphicon-jpy:before {
  content: "\00a5";
}
.glyphicon-ruble:before {
  content: "\20bd";
}
.glyphicon-rub:before {
  content: "\20bd";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}
