
	html {
		height: 100%;
		width: 100%;
		}

	body {
		z-index: 1;
		position: absolute;
		margin: 0;
		padding: 0;
		overflow: auto;
		-ms-overflow-style: scrollbar; /* stops ie10+ from displaying auto-hiding scroll bar on top of the body content (the domain selector, specifically) */
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		text-align: center;
		background: #a4aebf;
background: -ms-linear-gradient(top, #a4aebf 0%, #a4aebf 100%);
background: -moz-linear-gradient(top, #a4aebf 0%, #a4aebf 100%);
background: -o-linear-gradient(top, #a4aebf 0%, #a4aebf 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #a4aebf), color-stop(1, #a4aebf));
background: -webkit-linear-gradient(top, #a4aebf 0%, #a4aebf 100%);
background: linear-gradient(to bottom, #a4aebf 0%, #a4aebf 100%);
		background-repeat: no-repeat;
		background-attachment: fixed;
		webkit-background-size:cover;
		-moz-background-size:cover;
		-o-background-size:cover;
		background-size:cover;
		}

	pre {
		white-space: pre-wrap;
		}

	div#footer {
		display: inline-block;
		width: 100%;
		background: rgba(0,0,0,0.1);
		text-align: center;
		vertical-align: middle;
		margin-bottom: 20px;
		float: right;
		padding: 8px;
				-moz-border-radius: 0px 0px 4px 4px;
		-webkit-border-radius: 0px 0px 4px 4px;
		-khtml-border-radius: 0px 0px 4px 4px;
		border-radius: 0px 0px 4px 4px;
				}

	div#footer_login {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		background: rgba(0,0,0,0.1);
		text-align: center;
		vertical-align: middle;
		padding: 8px;
		}

	.footer {
		font-size: 11px;
		font-family: arial;
		line-height: 14px;
		color: rgba(255,255,255,0.3);
		white-space: nowrap;
		}

	.footer > a:hover {
		color: rgba(255,255,255,0.3);
		}

/* MENU: BEGIN ******************************************************************/

	/* Francois Modif Start */
	@media screen and (max-width: 575px) {
		.language-bar {
			visibility: hidden;
		    clear: both;
		    float: left;
		    margin: 10px auto 5px 20px;
		    width: 28%;
		    display: none;
		}
	}
	/* Francois Modif End */

	/* help bootstrap v4 menu be scrollable on mobile */
	@media screen and (max-width: 575px) {
		.navbar-collapse {
			max-height: calc(100vh - 60px);
			overflow-y: auto;
			}
	}

	/* main menu container */
	nav.navbar {
					background: #1c3556;
				-webkit-box-shadow: 0 0 5px #1c3556;
		-moz-box-shadow: 0 0 5px #1c3556;
		box-shadow: 0 0 5px #1c3556;
		border: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-khtml-border-radius: 0;
		border-radius: 0;
		padding: 0;
		}

	/* main menu logo */
	img.navbar-logo {
		border: none;
		height: 27px;
		width: auto;
		padding: 0 10px 0 7px;
		margin-top: -2px;
		cursor: pointer;
		}

	/* menu brand text */
	div.navbar-brand > a.navbar-brand-text {
		color: rgba(255,255,255,0.80);
		font-size: 13pt;
		white-space: nowrap;
		}

	/* menu brand text hover */
	div.navbar-brand > a.navbar-brand-text:hover {
		color: rgba(255,255,255,1.0);
		text-decoration: none;
		}

	/* main menu item */
	ul.navbar-nav > li.nav-item > a.nav-link {
		font-family: arial;
		font-size: 10.25pt;
		color: #fff;
		padding: 15px 10px 14px 10px; !important;
		}

	ul.navbar-nav > li.nav-item:hover > a.nav-link,
	ul.navbar-nav > li.nav-item:focus > a.nav-link,
	ul.navbar-nav > li.nav-item:active > a.nav-link {
		color: #fd9c03;
		background: rgba(0,0,0,1.0)		}

/* Francois Modif Start */
	/* mobile sub-sub menu handling */
	/* disable the menu item when a sub-menu is selected */
	ul.navbar-nav > li.nav-item:hover:has(ul > li.nav-item:hover > ul) > a.nav-link {
		color: #fff;
		background: transparent;
		}

	/* mobile sub-sub menu layout */
	ul.navbar-nav > li.nav-item > ul.dropdown-menu > li.nav-item > ul.dropdown-menu > li.nav-item > a.nav-link {
		font-family: arial;
		font-size: 10.25pt;
		color: #fff;
		/*padding: 3px 14px 3px 50px; !important;*/
		padding-left: 50px;
		}

	/* desktop sub-sub menu */
	@media(min-width: 768px) {
		li.nav-item > ul.dropdown-menu > li.nav-item > ul.dropdown-menu {
			display: none;
			}

		li.nav-item > ul.dropdown-menu > li.nav-item > ul.dropdown-menu.show {
			display: block;
			position: static;
			}

		ul.navbar-nav > li.nav-item > ul.dropdown-menu > li.nav-item > ul.dropdown-menu > li.nav-item > a.nav-link {
			padding: 3px 14px 0px 40px!important;
			}

		ul.navbar-nav > li.nav-item > ul.dropdown-menu > li.nav-item > ul.dropdown-menu > li.nav-item > a.nav-link:hover {
			color: #fd9c03;
			background: #141414;
			outline: none;
			}
	}

/* Francois Modif End */

	.navbar .navbar-nav > li > a > span.fas {
		margin: 1px 2px 0 0;
		}

	@media(min-width: 768px) {
		.dropdown:hover .dropdown-menu {
			display: block;
			}
		}

	/* sub menu container */
	ul.navbar-nav > li.nav-item > ul.dropdown-menu,
/* Francois Modif Start */
	/* mobile sub-sub menu */
	ul.navbar-nav > li.nav-item > ul.dropdown-menu > li.nav-item > ul.dropdown-menu {
/* Francois Modif End */
		margin-top: 0;
		padding-top: 0;
/* Francois Modif Start */		
		min-width: 225px;
/* Francois Modif End */		
		padding-bottom: 10px;
		border: 0;
		background: #1c3556;
		-webkit-box-shadow: 0 0 5px 1C3556;
		-moz-box-shadow: 0 0 5px 1C3556;
		box-shadow: 0 0 5px 1C3556;
				-moz-border-radius: 0px 0px 4px 4px;
		-webkit-border-radius: 0px 0px 4px 4px;
		-khtml-border-radius: 0px 0px 4px 4px;
		border-radius: 0px 0px 4px 4px;
				}

/* Francois Modif Start */
	/* remove padding on desktop */
	@media(min-width: 768px) {
		ul.navbar-nav > li.nav-item > ul.dropdown-menu > li.nav-item > ul.dropdown-menu {
		padding-bottom: 0px;
		}
	}
/* Francois Modif End */

	/* sub menu item */
	ul.navbar-nav > li.nav-item > ul.dropdown-menu > li.nav-item > a.nav-link {
		font-family: arial;
		color: #fff;
		font-size: 10pt;
		margin: 0;
		/* Francois Modif Start */
		/* Use the same padding that menus */
		/* padding: 3px 14px; */
		/* Francois Modif End */
		}
	}

/* Francois Modif Start */
	@media screen and (max-width: 575px) {
		ul.navbar-nav > li.nav-item > ul.dropdown-menu > li.nav-item > a.nav-link {
			padding-right: 0 !important;
			padding-left: 0 !important;
			}
	}

	@media screen and (min-width: 576px) {
		ul.navbar-nav > li.nav-item > ul.dropdown-menu > li.nav-item > a.nav-link {
			padding: 3px 14px !important;
		}
	}
/* Francois Modif End */

	ul.navbar-nav > li.nav-item > ul.dropdown-menu > li.nav-item > a.nav-link:hover,
	ul.navbar-nav > li.nav-item > ul.dropdown-menu > li.nav-item > a.nav-link:focus,
	ul.navbar-nav > li.nav-item > ul.dropdown-menu > li.nav-item > a.nav-link:active {
		color: #fd9c03;
		background: #141414;
		outline: none;
		}

	a.nav-link {
		text-align: left !important;
		}

	/* sub menu item icon */
	ul.dropdown-menu > li.nav-item > a.nav-link > span.fas {
		display: inline-block;
/* Francois Modif Start 	*/
/*		font-size: 8pt;		*/
/*		margin: 0 0 0 8px;  */
/*		opacity: 0.30;		*/
		font-size: 10pt;
		margin: 0 8px 0 0;
		opacity: 0.60;
		width: 15px;
		text-align: center;
/* Francois Modif End   	*/
		}

	/* domain name/selector */
	a.domain_selector_domain {
		color: rgba(255,255,255,0.8);
		}

	a.domain_selector_domain:hover,
	a.domain_selector_domain:focus,
	a.domain_selector_domain:active {
		color: rgba(255,255,255,1.0);
		}

	/* logout icon */
	a.logout_icon {
		color: rgba(255,255,255,0.8);
		}

	a.logout_icon:hover,
	a.logout_icon:focus,
	a.logout_icon:active {
		color: rgba(255,255,255,1.0);
		}

	a#header_logout_icon {
		display: inline-block;
		font-size: 11pt;
		padding-left: 5px;
		padding-right: 5px;
		margin-left: 5px;
		margin-right: 5px;
		}

	/* xs menu toggle button */
/*
	.navbar-inverse .navbar-toggle {
		background: transparent;
		border: none;
		padding: 16px 7px 17px 20px;
		margin: 0 8px;
		}

	.navbar-inverse .navbar-toggle:hover,
	.navbar-inverse .navbar-toggle:focus,
	.navbar-inverse .navbar-toggle:active {
		background: transparent;
		}
*/

	button.navbar-toggler {
		min-height: 50px;
		}

	button.navbar-toggler > span.fas.fa-bars {
		color: rgba(255,255,255,0.8);
		}

	button.navbar-toggler > span.fas.fa-bars:hover {
		color: rgba(255,255,255,1.0);
		}

/* SIDE MENU: Begin ***********************************************************/

/* Francois Modif Start */
	button.side-menu-toggler {
		color: rgba(255,255,255,0.8);
		background: transparent;
		border-color: transparent;
		margin-left: 15px;
		}
	button.side-menu-toggler:active,
	button.side-menu-toggler:focus {
		outline: none !important;
		}

	@media screen and (max-width: 575px) {
		button.side-menu-toggler {
			display: none;
		}
	}

/* Francois Modif End */

	/* side menu container */
	div#menu_side_container {
		z-index: 99900;
		position: fixed;
		top: 0;
		left: 0;
		width: 60px;
		height: 100%;
		overflow: auto;
					background: white;
				-webkit-box-shadow: 0 0 5px #1c3556;
		-moz-box-shadow: 0 0 5px #1c3556;
		box-shadow: 0 0 5px #1c3556;
		border: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-khtml-border-radius: 0;
		border-radius: 0;
		}

/* Francois Modif Start */
	@media screen and (max-width: 575px) {
		.menu_side_container {
			display: none !important;
		}

		.content_container {
			width: calc(100%) !important;
		}
		
		div#footer {
			width: calc(100%) !important;
		}
	}
/* Francois Modif End */

	/* menu side brand container */
	div#menu_side_brand_container {
		position: -webkit-sticky;
		position: sticky;
		z-index: 99901;
		top: 0;
		padding: 20px;
		min-height: 75px;
		text-align: left;
					background: #1c3556;
				border: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-khtml-border-radius: 0;
		border-radius: 0;
		}

	/* menu side logo */
	img#menu_brand_image_contracted {
		border: none;
		width: auto;
		max-height: 30px;
		max-width: 30px;
		margin-right: 10px;
		}

	img#menu_brand_image_expanded {
		border: none;
		height: auto;
		max-width: 145px;
		max-height: 35px;
		margin-top: -3px;
		margin-left: -6px;
		}

	/* menu brand text */
	.menu_brand_text {
		color: rgba(255,255,255,0.80);
		font-weight: 600;
		white-space: nowrap;
		}

	.menu_brand_text:hover {
		color: rgba(255,255,255,1.0);
		text-decoration: none;
		}

	div#menu_side_container > a.menu_side_item_main {
		display: block;
		width: 100%;
		padding: 10px 20px;
		text-align: left;
		font-family: arial;
		font-size: 12pt;
		color: #1c3556;
		cursor: pointer;
		}

	div#menu_side_container > a.menu_side_item_main:hover,
	div#menu_side_container a.menu_side_item_main:focus,
	div#menu_side_container a.menu_side_item_main:active {
		color: #9ccc4d;
		background: white;
		text-decoration: none;
		}

	a.menu_side_item_sub {
		display: block;
		width: 100%;
		padding: 5px 20px 5px 45px;
		text-align: left;
		background: white;
		font-family: arial;
		font-size: 12pt;
		color: #1c3556;
		cursor: pointer;
		}

	a.menu_side_item_sub:hover,
	a.menu_side_item_sub:focus,
	a.menu_side_item_sub:active {
		color: #9ccc4d;
		background: white;
		text-decoration: none;
		}

/* Francois Modif Start */
	a.menu_side_item_sub_sub {
		display: block;
		width: 100%;
		padding: 5px 20px 5px 65px;
		text-align: left;
		background: white;
		font-family: arial;
		font-size: 12pt;
		color: #1c3556;
		cursor: pointer;
		}

	a.menu_side_item_sub_sub:hover,
	a.menu_side_item_sub_sub:focus,
	a.menu_side_item_sub_sub:active {
		color: #9ccc4d;
		background: white;
		text-decoration: none;
		}

/* Francois Modif End */

	a.menu_side_toggle {
		padding: 10px;
		cursor: pointer;
		}

/* BUTTONS ********************************************************************/

	/* buttons */
	input[type=file]::file-selector-button,
	input.btn,
	input.button,
	button.btn-default {
		height: 28px;
		padding: 5px 8px;
		border: 1px solid #242424;
				-moz-border-radius: 3px 3px 3px 3px;
		-webkit-border-radius: 3px 3px 3px 3px;
		-khtml-border-radius: 3px 3px 3px 3px;
		border-radius: 3px 3px 3px 3px;
						background: #4f4f4f;
		background-image: -ms-linear-gradient(top, #4f4f4f 0%, #000000 100%);
		background-image: -moz-linear-gradient(top, #4f4f4f 0%, #000000 100%);
		background-image: -o-linear-gradient(top, #4f4f4f 0%, #000000 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #4f4f4f), color-stop(1, #000000));
		background-image: -webkit-linear-gradient(top, #4f4f4f 0%, #000000 100%);
		background-image: linear-gradient(to bottom, #4f4f4f 0%, #000000 100%);
				font-family: Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif;
		text-align: center;
		text-transform: uppercase;
		color: #ffffff;
		font-weight: bold;
		font-size: 11px;
		vertical-align: middle;
		}

	input[type=file]::file-selector-button:hover,
	input.btn:hover,
	input.btn:active,
	input.btn:focus,
	input.button:hover,
	input.button:active,
	input.button:focus,
	button.btn-default:hover,
	button.btn-default:active,
	button.btn-default:focus {
		cursor: pointer;
		border-color: #000000;
				background: #000000;
		background-image: -ms-linear-gradient(top, #000000 0%, #000000 100%);
		background-image: -moz-linear-gradient(top, #000000 0%, #000000 100%);
		background-image: -o-linear-gradient(top, #000000 0%, #000000 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000000), color-stop(1, #000000));
		background-image: -webkit-linear-gradient(top, #000000 0%, #000000 100%);
		background-image: linear-gradient(to bottom, #000000 0%, #000000 100%);
				color: #ffffff;
		}

	button.btn-icon {
		margin: 0 2px;
		}
	button.btn-transparent {
		border: 0;
		background: transparent;
				color: #4f4f4f;
		}
	button.btn-transparent:hover,
	button.btn-transparent:active,
	button.btn-transparent:focus {
				color: #000000;
		}

	/* control icons (define after the default bootstrap btn-default class) */
	button.list_control_icon,
	button.list_control_icon_disabled {
		width: 24px;
		height: 24px;
		padding: 2px;
		margin: 1px;
		border: 1px solid #242424;
				-moz-border-radius: 3px 3px 3px 3px;
		-webkit-border-radius: 3px 3px 3px 3px;
		-khtml-border-radius: 3px 3px 3px 3px;
		border-radius: 3px 3px 3px 3px;
						background: #4f4f4f;
		background-image: -ms-linear-gradient(top, #4f4f4f 0%, #000000 100%);
		background-image: -moz-linear-gradient(top, #4f4f4f 0%, #000000 100%);
		background-image: -o-linear-gradient(top, #4f4f4f 0%, #000000 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #4f4f4f), color-stop(1, #000000));
		background-image: -webkit-linear-gradient(top, #4f4f4f 0%, #000000 100%);
		background-image: linear-gradient(to bottom, #4f4f4f 0%, #000000 100%);
				color: #ffffff;
		font-size: 10.5pt;
		text-align: center;
		-moz-opacity: 0.3;
		opacity: 0.3;
		}

	button.list_control_icon:hover,
	button.list_control_icon:active,
	button.list_control_icon:focus {
		cursor: pointer;
		border-color: #000000;
				background: #000000;
		background-image: -ms-linear-gradient(top, #000000 0%, #000000 100%);
		background-image: -moz-linear-gradient(top, #000000 0%, #000000 100%);
		background-image: -o-linear-gradient(top, #000000 0%, #000000 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000000), color-stop(1, #000000));
		background-image: -webkit-linear-gradient(top, #000000 0%, #000000 100%);
		background-image: linear-gradient(to bottom, #000000 0%, #000000 100%);
				color: #ffffff;
		-moz-opacity: 1.0;
		opacity: 1.0;
		}
/* BOOTSTRAP ACCORDEON*/

	.card-header {
		padding: .3rem 1.25rem;
	}
	.accordion .card-header:after {
		content: "-";
		width: 20px;
		padding-left: 7px;
		float: right;
		color: #ffffff;
		font-weight: 900;
		border: 1px solid #000000;
		border-radius: 14px 14px 14px 14px;
		background: #000000;
	}
	.accordion .card-header.collapsed:after {
		content: "+";
		padding-left: 5px;
	}
	.card-body {
		padding: unset;
	}

/* Bootstrap confirm modal */

	.modal-backdrop {
		z-index: 99999 !important;
	}
	.modal {
		z-index: 100000 !important;
	}
	.btn-danger, .btn-success {
		height: 32px;
		padding: 5px 8px;
		border: 1px solid;
		border-radius: 14px 14px 14px 14px;
		font-family: 'Candara', 'Calibri', 'Segoe', 'Segoe UI', 'Optima', 'Arial', 'sans-serif';
		text-align: center;
		text-transform: uppercase;
		font-weight: bold;
		font-size: 11px;
    }
	#bootstrap_confirm_modal {
		z-index: 100001 !important;
	}
    #bootstrap_confirm_modal_title, #bootstrap_confirm_modal_message {
		color: black;
    }

    @keyframes shake {
		0% { transform: translateX(0) rotate(0deg); }
		25% { transform: translateX(-5px) rotate(-10deg); }
		50% { transform: translateX(5px) rotate(10deg); }
		75% { transform: translateX(-5px) rotate(-10deg); }
		100% { transform: translateX(0) rotate(0deg); }
	}

	.shake {
		animation: shake 1.5s ease-in-out 3;
	}

/* ICONS *********************************************************************/

	span.icon_body {
		width: 16px;
		height: 16px;
		color: rgba(0,0,0,0.25);
		border: 0;
		}

	span.icon_body:hover {
		color: rgba(0,0,0,0.5);
		}

/* DOMAIN SELECTOR ***********************************************************/

	#domains_container {
		z-index: 99990;
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		width: 360px;
		overflow: hidden;
		display: none;
		}

	#domains_block {
		position: absolute;
		right: -300px;
		top: 0;
		bottom: 0;
		width: 340px;
		padding: 20px 20px 100px 20px;
		font-family: arial, san-serif;
		font-size: 10pt;
		overflow: hidden;
		background-color: #fff;
		-webkit-box-shadow: 0 0 10px #888888;
		-moz-box-shadow: 0 0 10px #888888;
		box-shadow: 0 0 10px #888888;
		}

	#domains_header {
		position: relative;
		width: 300px;
		height: 55px;
		margin-bottom: 20px;
		text-align: left;
		}

	#domains_list {
		position: relative;
		overflow: auto;
		width: 300px;
		height: 100%;
		padding: 1px;
		background-color: #fff;
		border: 1px solid #a4aebf;
		}

	div.domains_list_item, div.domains_list_item_active, div.domains_list_item_inactive {
		text-align: left;
		border-bottom: 1px solid #c5d1e5;
		padding: 5px 8px 8px 8px;
		overflow: hidden;
		white-space: nowrap;
		cursor: pointer;
		}

	div.domains_list_item span.domain_list_item_description, 
	div.domains_list_item_active span.domain_list_item_description, 
	div.domains_list_item_inactive span.domain_list_item_description {
		font-size: 11px;
		}

	div.domains_list_item span.domain_list_item_description {
		color: #999;
		}

	div.domains_list_item_active span.domain_list_item_description {
		color: #999;
		}

	div.domains_list_item_inactive span.domain_list_item_description {
		color: #999;
		}

	div.domains_list_item:hover a,
	div.domains_list_item:hover span {
		color: #5082ca;
		}
	
	div.domains_list_item_active:hover a,
	div.domains_list_item_active:hover span {
		color: ;
	}
	
	div.domains_list_item_inactive:hover a,
	div.domains_list_item_inactive:hover span {
		color: ;
	}

/* DOMAIN SELECTOR: END ********************************************************/

	#default_login {
		position: fixed;
		top: 50%;
		left: 50%;
		-moz-transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-khtml-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		padding: 30px;
				background: rgba(255,255,255,0.35);
				-moz-border-radius: 4px 4px 4px 4px;
		-webkit-border-radius: 4px 4px 4px 4px;
		-khtml-border-radius: 4px 4px 4px 4px;
		border-radius: 4px 4px 4px 4px;
										-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		}

	#login_logo {
		text-decoration: none;
		}

	a.login_link {
		color: #004083 !important;
		font-size: 11px;
		font-family: Arial;
		text-decoration: none;
		}

	a.login_link:hover {
		color: #5082ca !important;
		cursor: pointer;
		text-decoration: underline;
		}

	
	#main_content {
		display: inline-block;
		width: 100%;
		padding: 5px 10px 10px 10px;margin-top: 65px;		text-align: left;
		color: #5f5f5f;
		font-size: 12px;
		font-family: arial;
		}

	/* default body padding */
	.container-fluid {
		width: 90%;
		}

	/* maximize viewport usage on xs displays */
	@media(min-width: 0px) and (max-width: 767px) {
		.container-fluid {
			width: 100%;
			}

		#main_content {
/* 2023-09-19; PATCH: removed padding to hide the 8px space on the right side of the mobile screen */
			/*padding: 8px;*/
			}
		}

	div#content_header {
		padding: 10px;
		margin-top: 5px;
		height: 40px;
	}

/* GENERAL ELEMENTS *****************************************************************/

	img {
		border: none;
		}

	.title, b {
		color: #952424;
		font-size: 15px;
		font-family: arial;
		font-weight: bold;
		}

	a {
		color: #004083;
		text-decoration: none;
		}

	a:hover {
		color: #5082ca;
		text-decoration: underline;
		}

	form {
		margin: 0;
		}

	form.inline {
		display: inline-block;
		}

	/* style placeholder text (for browsers that support the attribute) - note: can't stack, each must be seperate */
		::-webkit-input-placeholder { color: #999999; opacity: 1.0; } /* chrome/opera/safari */
	::-moz-placeholder { color: #999999; opacity: 1.0; } /* ff 19+ */
	:-moz-placeholder { color: #999999; opacity: 1.0; } /* ff 18- */
	:-ms-input-placeholder { color: #999999; opacity: 1.0; } /* ie 10+ */
	::placeholder { color: #999999; opacity: 1.0; } /* official standard */

	select.txt,
	textarea.txt,
	input[type=text].txt,
	input[type=number].txt,
	input[type=password].txt,
	input[type=search].txt,
	label.txt,
	select.formfld,
	textarea.formfld,
	input[type=text].formfld,
	input[type=number].formfld,
	input[type=url].formfld,
	input[type=password].formfld,
	label.formfld {
		font-family: Arial;
		font-size: 12px;
		color: #000000;
		text-align: left;
		height: 28px;
		padding: 4px 6px;
		margin: 1px;
		border-width: 1px;
		border-style: solid;
		border-color: #c0c0c0;
		background: #ffffff;
		-webkit-box-shadow: 0 0 3px #cddaf0 inset;
-moz-box-shadow: 0 0 3px #cddaf0 inset;
box-shadow: 0 0 3px #cddaf0 inset;
				-moz-border-radius: 3px 3px 3px 3px;
		-webkit-border-radius: 3px 3px 3px 3px;
		-khtml-border-radius: 3px 3px 3px 3px;
		border-radius: 3px 3px 3px 3px;
				vertical-align: middle;
		}

	input[type=range].formfld {
		accent-color: #007BFF;
	}

	textarea.txt,
	input[type=text].txt,
	input[type=number].txt,
	input[type=password].txt,
	textarea.formfld,
	input[type=text].formfld,
	input[type=number].formfld,
	input[type=url].formfld,
	input[type=password].formfld {
		transition: width 0.25s;
		-moz-transition: width 0.25s;
		-webkit-transition: width 0.25s;
		max-width: 500px;
		}

	select.txt,
	select.formfld {
		padding: 4px 2px;
		}

	textarea.txt:hover,
	input[type=text].txt:hover,
	input[type=number].txt:hover,
	input[type=password].txt:hover,
	label.txt:hover,
	textarea.formfld:hover,
	input[type=text].formfld:hover,
	input[type=number].formfld:hover,
	input[type=url].formfld:hover,
	input[type=password].formfld:hover,
	label.formfld:hover {
		border-color: #c0c0c0;
		}

	textarea.txt:focus,
	input[type=text].txt:focus,
	input[type=number].txt:focus,
	input[type=password].txt:focus,
	label.txt:focus,
	textarea.formfld:focus,
	input[type=text].formfld:focus,
	input[type=number].formfld:focus,
	input[type=url].formfld:focus,
	input[type=password].formfld:focus,
	label.formfld:focus {
		border-color: #c0c0c0;
		/* first clear */
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
							-webkit-box-shadow: 0 0 5px #cddaf0;
			-moz-box-shadow: 0 0 5px #cddaf0;
			box-shadow: 0 0 5px #cddaf0;
				}

	input.login {
		font-family: Arial;
		font-size: 12px;
		color: #000000;
		border-width: 1px;
		border-color: #c0c0c0;
		background: #ffffff;
		/* first clear */
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		-webkit-box-shadow: 0 0 3px #cddaf0 inset;
-moz-box-shadow: 0 0 3px #cddaf0 inset;
box-shadow: 0 0 3px #cddaf0 inset;
				-moz-border-radius: 3px 3px 3px 3px;
		-webkit-border-radius: 3px 3px 3px 3px;
		-khtml-border-radius: 3px 3px 3px 3px;
		border-radius: 3px 3px 3px 3px;
				}

	input.login:hover {
		border-color: #c0c0c0;
		}

	input.login:focus {
		border-color: #c0c0c0;
		/* first clear */
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
							-webkit-box-shadow: 0 0 5px #cddaf0;
			-moz-box-shadow: 0 0 5px #cddaf0;
			box-shadow: 0 0 5px #cddaf0;
				}

	/* style placeholder text (for browsers that support the attribute) - note: can't stack, each must be seperate */
		input.login::-webkit-input-placeholder { color: #999999; opacity: 1.0; } /* chrome/opera/safari */
	input.login::-moz-placeholder { color: #999999; opacity: 1.0; } /* ff 19+ */
	input.login:-moz-placeholder { color: #999999; opacity: 1.0; } /* ff 18- */
	input.login:-ms-input-placeholder { color: #999999; opacity: 1.0; } /* ie 10+ */
	input.login::placeholder { color: #999999; opacity: 1.0; } /* official standard */

	input[type=password].formfld_highlight_bad,
	input[type=password].formfld_highlight_bad:hover,
	input[type=password].formfld_highlight_bad:active,
	input[type=password].formfld_highlight_bad:focus {
		border-color: #aa2525;
		-webkit-box-shadow: 0 0 3px #aa2525 inset;
		-moz-box-shadow: 0 0 3px #aa2525 inset;
		box-shadow: 0 0 3px #aa2525 inset;
		}

	input[type=password].formfld_highlight_good,
	input[type=password].formfld_highlight_good:hover,
	input[type=password].formfld_highlight_good:active,
	input[type=password].formfld_highlight_good:focus {
		border-color: #2fb22f;
		-webkit-box-shadow: 0 0 3px #2fb22f inset;
		-moz-box-shadow: 0 0 3px #2fb22f inset;
		box-shadow: 0 0 3px #2fb22f inset;
		}

	/* removes spinners (increment/decrement controls) inside input fields */
	input[type=number] { -moz-appearance: textfield; }
	::-webkit-inner-spin-button { -webkit-appearance: none; }
	::-webkit-outer-spin-button { -webkit-appearance: none; }

	/* disables text input clear 'x' in IE 10+, slows down autosizeInput jquery script */
	input[type=text]::-ms-clear {
		display: none;
	}

	input.fileinput {
		padding: 1px;
		display: inline;
		}

	input[type=checkbox] {
		margin-top: 2px;
		}

	label {
		font-weight: normal;
		vertical-align: middle;
		}

	label input[type=checkbox],
	label input[type=radio] {
		vertical-align: -2px;
		margin: 0;
		padding: 0;
		}

	span.playback_progress_bar {
		background-color: #b90004;
		width: 17px;
		height: 4px;
		margin-bottom: 3px;
		display: block;
		-moz-border-radius: 0 0 6px 6px;
		-webkit-border-radius: 0 0 6px 6px;
		-khtml-border-radius: 0 0 6px 6px;
		border-radius: 0 0 6px 6px;
		-webkit-box-shadow: 0 0 3px 0px rgba(255,0,0,0.9);
		-moz-box-shadow: 0 0 3px 0px rgba(255,0,0,0.9);
		box-shadow: 0 0 3px 0px rgba(255,0,0,0.9);
		}

	td.playback_progress_bar_background {
		padding: 0;
		border-bottom: none;
		background-image: -ms-linear-gradient(top, rgba(0,0,0,0.15) 0%, transparent 100%);
		background-image: -moz-linear-gradient(top, rgba(0,0,0,0.15) 0%, transparent 100%);
		background-image: -o-linear-gradient(top, rgba(0,0,0,0.15) 0%, transparent 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0,0,0,0.15)), color-stop(1, transparent));
		background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.15) 0%, transparent 100%);
		background-image: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, transparent 100%);
		overflow: hidden;
		}

	div.pwstrength_progress {
		display: none;
		}

	div.pwstrength_progress > div.progress {
		max-width: 200px;
		height: 6px;
		margin: 1px 0 0 1px;
		background: rgb(245, 245, 245);
				-moz-border-radius: 3px 3px 3px 3px;
		-webkit-border-radius: 3px 3px 3px 3px;
		-khtml-border-radius: 3px 3px 3px 3px;
		border-radius: 3px 3px 3px 3px;
				}

	div.pwstrength_progress_password_reset > div.progress {
		margin: 0 auto 4px auto;
		width: 200px;
		max-width: 200px;
		background: #ffffff;
		border-width: 1px;
		border-color: #c0c0c0;
		}

/* TABLES *****************************************************************/

	table {
		border-collapse: separate;
		border-spacing: 0;
		}

	th {
		padding: 4px 7px 4px 0;
		padding: 4px 7px;
		text-align: left;
		color: #3164ad;
		font-size: 12px;
		font-family: arial;
		background: none;
		border-bottom: 1px solid #a4aebf;
		}

	th a, th a:visited, th a:active {
		color: #3164ad;
		text-decoration: none;
		}

	th a:hover {
		color: #3164ad;
		text-decoration: underline;
		}

	td {
		color: #5f5f5f;
		font-size: 12px;
		font-family: arial;
		}

	table.tr_hover tr {
		cursor: default;
		}

	table.tr_hover tr:hover td,
	table.tr_hover tr:hover td a {
		color: #5082ca;
/*Francois Modif Start*/
		background: #d5d9e0;
/*Francois Modif End*/
		cursor: pointer;
		}

	table.tr_hover tr.tr_link_void:hover td {
		color: #000;
		cursor: default;
		}

	table.tr_hover tr td.tr_link_void {
		cursor: default;
		}

	td.list_control_icons {
		width: 52px;
		padding: none;
		padding-left: 2px;
		text-align: right;
		vertical-align: top;
		white-space: nowrap;
		}

	td.list_control_icon {
		width: 26px;
		padding: none;
		padding-left: 2px;
		text-align: right;
		vertical-align: top;
		white-space: nowrap;
		}

	th.no-mobile {
		@media (max-width: 575px) {
			display: none;
		}
	}
	td.no-mobile {
		@media (max-width: 575px) {
			display: none;
		}
	}
	th.only-mobile,
	td.only-mobile {
		@media (min-width: 576px) {
			display: none;
		}
	}

	span.no-mobile {
		@media (max-width: 575px) {
			display: none;
		}
	}
	span.only-mobile {
		@media (min-width: 576px) {
			display: none;
		}
	}

	/* form: label/field format */
	.vncell { /* form_label */
		background: #e5e9f0;
				-moz-border-radius: 4px 4px 4px 4px;
		-webkit-border-radius: 4px 4px 4px 4px;
		-khtml-border-radius: 4px 4px 4px 4px;
		border-radius: 4px 4px 4px 4px;
				border-right: 3px solid #e5e9f0;
		border-bottom: 1px solid #ffffff;
		padding: 7px 8px;
		text-align: right;
		color: #000000;
		font-family: Arial;
		font-size: 9pt;
		vertical-align: top;
		}

	.vncellreq { /* form_label_required */
		background: #e5e9f0;
				-moz-border-radius: 4px 4px 4px 4px;
		-webkit-border-radius: 4px 4px 4px 4px;
		-khtml-border-radius: 4px 4px 4px 4px;
		border-radius: 4px 4px 4px 4px;
				border-right: 3px solid #cbcfd5;
		border-bottom: 1px solid #ffffff;
		padding: 7px 8px;
		text-align: right;
		color: #000000;
		font-family: Arial;
		font-size: 9pt;
		font-weight: bold;
		vertical-align: top;
		}

	.vtable { /* form_field */
		background: #ffffff;
				-moz-border-radius: 0px 0px 0px 0px;
		-webkit-border-radius: 0px 0px 0px 0px;
		-khtml-border-radius: 0px 0px 0px 0px;
		border-radius: 0px 0px 0px 0px;
				border-bottom: 1px solid #e5e9f0;
		padding: 6px;
		text-align: left;
		vertical-align: middle;
		color: #666666;
		font-family: Arial;
		font-size: 8pt;
		}

	/* form: heading/row format */
	.vncellcol { /* form_heading */
		background: #e5e9f0;
				-moz-border-radius: 4px 4px 4px 4px;
		-webkit-border-radius: 4px 4px 4px 4px;
		-khtml-border-radius: 4px 4px 4px 4px;
		border-radius: 4px 4px 4px 4px;
				border-bottom: 3px solid #e5e9f0;
		padding: 8px 8px 4px 8px;
		text-align: left;
		color: #000000;
		font-family: Arial;
		font-size: 9pt;
		}

	.vncellcolreq { /* form_heading_required */
		background: #e5e9f0;
				-moz-border-radius: 4px 4px 4px 4px;
		-webkit-border-radius: 4px 4px 4px 4px;
		-khtml-border-radius: 4px 4px 4px 4px;
		border-radius: 4px 4px 4px 4px;
				border-bottom: 3px solid #cbcfd5;
		padding: 8px 8px 4px 8px;
		text-align: left;
		color: #000000;
		font-family: Arial;
		font-size: 9pt;
		font-weight: bold;
		}

	.vtablerow { /* form_row */
				height: 36px;
		background: #ffffff;
				-moz-border-radius: 0px 0px 0px 0px;
		-webkit-border-radius: 0px 0px 0px 0px;
		-khtml-border-radius: 0px 0px 0px 0px;
		border-radius: 0px 0px 0px 0px;
				border-bottom: 1px solid #e5e9f0;
		padding: 3px 0;
		text-align: left;
		vertical-align: middle;
		color: #666666;
		font-family: Arial;
		font-size: 9pt;
		}

	.row_style0 {
		border-bottom: 1px solid #c5d1e5;
		background: #e5e9f0;
		color: #000;
		font-family: arial;
		font-size: 12px;
		text-align: left;
		padding: 4px 7px;
		}

	.row_style1 {
		border-bottom: 1px solid #c5d1e5;
		background: #fff;
		color: #000;
		font-family: arial;
		font-size: 12px;
		text-align: left;
		padding: 4px 7px;
		}

	.row_style_slim {
		padding-top: 0;
		padding-bottom: 0;
		white-space: nowrap;
		}

	.row_stylebg {
		border-bottom: 1px solid #c5d1e5;
		background: #f0f2f6;
		color: #000;
		font-family: arial;
		font-size: 12px;
		text-align: left;
		padding: 4px 7px;
		}

/* RESPONSE MESSAGE STACK *******************************************************/

	#message_container {
		z-index: 99998;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		padding: 0;
		}

	.message_text {
		z-index: 99999;
		margin: 0 auto;
		padding: 15px;
		text-align: center;
		font-family: arial, san-serif;
		font-size: 10pt;
		display: block;
		color: #666;
		background: #fafafa;
		box-shadow: inset 0px 7px 8px -10px #666;
		border-bottom: solid 1px #666;
		opacity: 0;
		}

	.message_mood_positive {
		color: #004200;
		background: #97c950;
		box-shadow: inset 0px 7px 8px -10px #004200;
		border-bottom: solid 1px #004200;
		}

	.message_mood_negative {
		color: #670000;
		background: #ffcdcd;
		box-shadow: inset 0px 7px 8px -10px #670000;
		border-bottom: solid 1px #670000;
		}

	.message_mood_alert {
		color: #d66721;
		background: #ffe585;
		box-shadow: inset 0px 7px 8px -10px #d66721;
		border-bottom: solid 1px #d66721;
		}

/* OPERATOR PANEL ****************************************************************/
	@media screen and (max-width: 575px) {
		div.op_ext {
			width: 175px;
			}
	}
	@media screen and (min-width: 576px) {
		div.op_ext {
			width: 235px;
			}
	}
	div.op_ext {
		float: left;
		margin: 0px 8px 8px 0px;
		padding: 0px;
		border-style: solid;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		-webkit-box-shadow: 0 0 3px #e5e9f0;
		-moz-box-shadow: 0 0 3px #e5e9f0;
		box-shadow: 0 0 3px #e5e9f0;
		border-width: 1px 3px;
		border-color: #b9c5d8 #c5d1e5;
		background-color: #e5eaf5;
		cursor: default;
		}

/* Francois Modif Start */
	div.op_cc {
		float: left;
		width: 238px;
		height: 76px;
		margin: 0px 4px 8px 0px;
	}
/* Francois Modif End */

	div.op_state_active {
		background-color: #baf4bb;
		border-width: 1px 3px;
		border-color: #77d779;
		}

	div.op_state_ringing {
		background-color: #a8dbf0;
		border-width: 1px 3px;
		border-color: #41b9eb;
		}

	table.op_ext {
		width: 100%;
		height: 60px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		background-color: #e5eaf5;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		}

	td.op_ext_icon {
		vertical-align: middle;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		}

	img.op_ext_icon {
		cursor: move;
		width: 39px;
		height: 42px;
		border: none;
		}

	td.op_ext_info {
		text-align: left;
		vertical-align: top;
		font-family: arial;
		font-size: 10px;
		overflow: auto;
		width: 100%;
		padding: 3px 5px 3px 7px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		background-color: #f0f2f6;
		}

/* Francois Modif Start */
	p.op_cc_title {
		width: 190px;
		margin: 0;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		}
/* Francois Modif End */

	td.op_state_ringing {
		background-color: #d1f1ff;
		}

	td.op_state_active {
		background-color: #e1ffe2;
		}

/* Francois Modif Start */
	td.op_state_held {
		background-color: #be8e2c;
		}
/* Francois Modif End */

	table.op_state_ringing {
		background-color: #a8dbf0;
		}

	table.op_state_active {
		background-color: #baf4bb;
		}

/* Francois Modif Start */
	table.op_state_held {
		background-color: #be8e2c;
		}
/* Francois Modif End */

	.op_user_info {
		font-family: arial;
		font-size: 10px;
		display: inline-block;
		}

	.op_user_info strong {
		color: #3164AD;
		}

	.op_caller_info {
		display: block;
		margin-top: 4px;
		font-family: arial;
		font-size: 10px;
		}

	.op_call_info {
		display: inline-block;
		padding: 0px;
		font-family: arial;
		font-size: 10px;
		}

	#op_btn_status_available {
		background-image: -moz-linear-gradient(top, #8ec989 0%, #2d9c38 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #8ec989), color-stop(1, #2d9c38));
		background-color: #2d9c38;
		border: 1px solid #006200;
		}

	#op_btn_status_available_on_demand {
		background-image: -moz-linear-gradient(top, #abd0aa 0%, #629d62 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #abd0aa), color-stop(1, #629d62));
		background-color: #629d62;
		border: 1px solid #619c61;
		}

	#op_btn_status_on_break {
		background-image: -moz-linear-gradient(top, #ddc38b 0%, #be8e2c 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ddc38b), color-stop(1, #be8e2c));
		background-color: #be8e2c;
		border: 1px solid #7d1b00;
		}

	#op_btn_status_do_not_disturb {
		background-image: -moz-linear-gradient(top, #cc8984 0%, #960d10 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #cc8984), color-stop(1, #960d10));
		background-color: #960d10;
		border: 1px solid #5b0000;
		}

	#op_btn_status_logged_out {
		background-image: -moz-linear-gradient(top, #cacac9 0%, #8d8d8b 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #cacac9), color-stop(1, #8d8d8b));
		background-color: #8d8d8b;
		border: 1px solid #5d5f5a;
		}

/* DASHBOARD **********************************************************************/

	/* login message */
	div.login_message {
		border: 1px solid #bae0ba;
		background-color: #eeffee;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
		padding: 20px;
		margin-bottom: 15px;
		}

	/* hud boxes */
	div.hud_box {
		height: auto;
		vertical-align: top;
		text-align: center;
				background: #f9fbfe;
		background-image: -ms-linear-gradient(left, #edf1f7 0%, #f9fbfe 30%, #f9fbfe 70%, #edf1f7 100%);
		background-image: -moz-linear-gradient(left, #edf1f7 0%, #f9fbfe 30%, #f9fbfe 70%, #edf1f7 100%);
		background-image: -o-linear-gradient(left, #edf1f7 0%, #f9fbfe 30%, #f9fbfe 70%, #edf1f7 100%);
		background-image: -webkit-gradient(linear, left, right, color-stop(0, #edf1f7), color-stop(0.30, #f9fbfe), color-stop(0.70, #f9fbfe), color-stop(1, #edf1f7));
		background-image: -webkit-linear-gradient(left, #edf1f7 0%, #f9fbfe 30%, #f9fbfe 70%, #edf1f7 100%);
		background-image: linear-gradient(to right, #edf1f7 0%, #f9fbfe 30%, #f9fbfe 70%, #edf1f7 100%);
						-webkit-border-radius: 5px 5px 5px 5px;
		-moz-border-radius: 5px 5px 5px 5px;
		border-radius: 5px 5px 5px 5px;
				border: 1px solid #dbe0ea;
		overflow: hidden;
		margin: -1px;
		}

	div.hud_box:hover {
		border: 1px solid #cbd3e1;
		}

	span.hud_title {
		display: block;
		width: 100%;
		font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
		text-shadow: 0px 1px 2px #000;
		letter-spacing: -0.02em;
		color: #fff;
		font-size: 12pt;
				line-height: 26.25pt;
		text-align: center;
		background: #8e96a5;
		border-bottom: 1px solid #737983;
		overflow: hidden;
		}

	span.hud_title:hover {
		color: #fff;
		text-shadow: 0px 1px 2px #000;
		background: #969dab;
		cursor: pointer;
		}

	span.hud_stat {
		display: block;
		clear: both;
		text-align: center;
		text-shadow: 0px 2px 2px #737983;
		width: 100%;
		color: #fff;
		font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
		font-size: 60pt;
				line-height: 77pt;
		font-weight: normal;
		background: #a4aebf;
		border-top: 1px solid #c5d1e5;
		overflow: hidden;
				padding-top: px;
		padding-bottom: px;
		}

	span.hud_stat:hover {
		color: #fff;
		text-shadow: 0px 2px 2px #737983;
		background: #aeb7c5;
		cursor: pointer;
		}

	span.hud_stat_title {
		display: block;
		clear: both;
		width: 100%;
		height: 30px;
		cursor: default;
		text-align: center;
		text-shadow: 0px 1px 1px #737983;
		color: #fff;
		font-size: 14px;
		padding-top: 4px;
		white-space: nowrap;
		letter-spacing: -0.02em;
		font-weight: normal;
		font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
		background: #a4aebf;
		border-bottom: 1px solid #909aa8;
		margin: 0;
		overflow: hidden;
		}

	span.hud_stat:hover + span.hud_stat_title {
		color: #fff;
		text-shadow: 0px 1px 1px #737983;
		background: #aeb7c5;
		}

	div.hud_details {
		-moz-box-shadow: inset 0 7px 7px -7px #737983, inset 0 -8px 12px -10px #737983;
		-webkit-box-shadow: inset 0 7px 7px -7px #737983, inset 0 -8px 12px -10px #737983;
		box-shadow: inset 0 7px 7px -7px #737983, inset 0 -8px 12px -10px #737983;
		padding-top: 3px;
		padding-bottom: 15px;
		}

	@media(min-width: 0px) and (max-width: 1199px) {
		div.hud_details {
			display: none;
			height: auto;
			}
		}

	@media(min-width: 1200px) {
		div.hud_details {
			height: 350px;
			display: block;
/* Francois Modif Start */			
			overflow-y: auto;
/* Francois Modif End */			
			}
		}

	th.hud_heading {
		text-align: left;
		font-size: 11px;
		font-family: arial		color: #3164ad;
		}

	td.hud_text {
		font-size: 11px;
		color: #000;
		text-align: left;
		vertical-align: middle;
		}

	span.hud_expander {
		display: block;
		clear: both;
		background: #e5e9f0;
		padding: 4px 0;
		text-align: center;
		width: 100%;
		height: 25px;
		font-size: 13px;
		line-height: 5px;
		color: #a4aebf;
		border-top: 1px solid #fff;
		}

	span.hud_expander:hover {
		color: #a4aebf;
		background: #ebeef3;
		cursor: pointer;
		}

/* PLUGINS ********************************************************************/

	/* bootstrap colorpicker  */
	.colorpicker-2x .colorpicker-saturation {
		width: 200px;
		height: 200px;
		}

	.colorpicker-2x .colorpicker-hue,
	.colorpicker-2x .colorpicker-alpha {
		width: 30px;
		height: 200px;
		}

	.colorpicker-2x .colorpicker-color,
	.colorpicker-2x .colorpicker-color div{
		height: 30px;
		}

	/* jquery ui autocomplete styles */
	.ui-widget {
		margin: 0px;
		padding: 0px;
		}

	.ui-autocomplete {
		cursor: default;
		position: absolute;
		max-height: 200px;
		overflow-y: auto;
		overflow-x: hidden;
		white-space: nowrap;
		width: auto;
		border: 1px solid #c0c0c0;
		}

	.ui-menu, .ui-menu .ui-menu-item {
		width: 350px;
		}

	.ui-menu .ui-menu-item a {
		text-decoration: none;
		cursor: pointer;
		border-color: #fff;
		background-image: none;
		background-color: #fff;
		white-space: nowrap;
		font-family: arial;
		font-size: 12px;
		color: #444;
		}

	.ui-menu .ui-menu-item a:hover {
		color: #5082ca;
		border: 1px solid white;
		background-image: none;
		background-color: #fff;
		}
		
/* Francois Modif Start */

	/* jquerry SelectMenu */
    .ui-selectmenu-menu .ui-menu.customicons .ui-menu-item .ui-icon {
    	top: 0.1em;
    }
    
    .ui-selectmenu-menu {
    	text-align: right;
    }
    
    .ui-selectmenu-optgroup {
    	text-align: left;
    	font-size: 16px;
    }
    
    .ui-menu-item {
    	height: 50px;
    }
    
    .ui-widget-content {
    	vertical-align: middle;
    }
    
    .ui-menu-item-wrapper {
    	font-size: 12px;
    	height: 50px;
    }
    
    .ui-menu, .ui-menu .ui-menu-item {
    	width: 200px;
    	padding: 0px 20px 0px 00px;
    }
    
    ul.ui-menu {
    	width: 200px;
    	max-height: 300px;
    }
    
	.ui-menu .ui-menu-item-wrapper{
    	padding: 13px 1em 3px 0.4em  !important;;
	}    
	
	.ui-selectmenu-button.ui-button {
		background: white !important;
	}
	.ui-selectmenu-button.ui-button:focus {
		outline: black solid 2px;
	}
    
    /* select with CSS avatar icons */
    option.avatar {
		background-repeat: no-repeat !important;
    }
    .avatar .ui-icon {
		height: 50px;
		width: 50px;
		
		background-position: left center;
		background-size: 100% auto;
    }

	.dashboard-toolbar-feature-tile {
		width: 100%;
		text-align: center;
		cursor: pointer;
		color: white;
		padding: .10vw;
		border: .5vw solid white;
		border-radius: 2vw;
		background-color: #175e80;
	}

	.dashboard-toolbar-button {
		width: 100%;
		text-align: center;
		cursor: pointer;
		color: white;
		padding: .10vw;
		border: .5vw solid white;
		border-radius: 2vw;
		background-color: #000000;
	}

	.dashboard-toolbar-button:hover {
		background: #000000	}

	.dashboard-toolbar-icon {
		font-size: 4vw;
		margin-top: 2vw;
	}

	.dashboard-toolbar-label {
		@media (min-width: 150px) {
		    font-size: 10px;
		}
		@media (min-width: 576px) {
		    font-size: 12px;
		}
		@media (min-width: 768px) {
		    font-size: 14px;
		}
		@media (min-width: 992px) {
			font-size: 14px;
		}
/*			white-space: nowrap; */
		margin-top: .5vw;
		margin-bottom: .5vw;
	}
	.dashboard-tollbar-red-badge {
		@media (min-width: 150px) {
		    font-size: 8px;
		}
		@media (min-width: 576px) {
		    font-size: 10px;
		}
		@media (min-width: 768px) {
		    font-size: 12px;
		}
		@media (min-width: 992px) {
			font-size: 12px;
		}
		color: white;
		background-color: red;
		white-space: nowrap;
		margin-top: .5vw;
		margin-bottom: .5vw;
		border: 0vw solid;
		border-radius: 2vw;
	}

	.dashboard-toolbar-green-badge {
		@media (min-width: 150px) {
		    font-size: 8px;
		}
		@media (min-width: 576px) {
		    font-size: 10px;
		}
		@media (min-width: 768px) {
		    font-size: 12px;
		}
		@media (min-width: 992px) {
			font-size: 12px;
		}
		color: white;
		background-color: green;
		white-space: nowrap;
		margin-top: .5vw;
		margin-bottom: .5vw;
		border: 0vw solid;
		border-radius: 2vw;
	}

	.dashboard-tollbar-red-badge-text {
		@media (min-width: 150px) {
		    font-size: 8px;
		}
		@media (min-width: 576px) {
		    font-size: 10px;
		}
		@media (min-width: 768px) {
		    font-size: 12px;
		}
		@media (min-width: 992px) {
			font-size: 12px;
		}
		white-space: nowrap;
	}

	.dashboard-dropdown-menu {
		background: #000000;
		margin-top: -5px;
	}

	.dashboard-dropdown-item {
		background: #000000;
		color: white;
		@media (min-width: 150px) {
		    font-size: 8px;
		}
		@media (min-width: 576px) {
		    font-size: 10px;
		}
		@media (min-width: 768px) {
		    font-size: 12px;
		}
		@media (min-width: 992px) {
			font-size: 12px;
		}
	}
	.dashboard-dropdown-item span {
		width: 1vw;
		@media (max-width: 576px) {
			width: 4vw;
		}
	}

	.dashboard-dropdown-item:hover,
	.dashboard-dropdown-item:focus,
	.dashboard-dropdown-item:active {
		color: #9ccc4d;
		background: #000000;
	}
	/*Prevent bootstrap flickering*/
	.tooltip {
		pointer-events: none;
		z-index: 100000;
	}

	.search-bar {
		@media screen and (max-width: 575px) {
			flex: auto;
		}
	}

	.search-bar-input {
		float: right;
		max-width: 200px!important;
		outline: none;
		/*Prevent screen from zooming on mobile*/
		@media screen and (max-width: 575px) {
			font-size: 16px!important;
		}
	}

	.search_bar_table {
		@media screen and (max-width: 575px) {
			width: 100%;
		}
		@media screen and (min-width: 576px) {
			width: 500px;
		}
		padding: 8px;
	}

	.live_search {
		position: absolute;
		top: 40px;
		right: 0px;
		background: white;
		text-align: left;
		z-index: 99999;
	}

	/* Remove Spin Buttons in input number */
	/* Chrome, Safari, Edge, Opera */
	input.input_number_nospin::-webkit-outer-spin-button,
	input.input_number_nospin::-webkit-inner-spin-button {
		-webkit-appearance: none;
		margin: 0;
	}

	/* Firefox */
	input.input_number_nospin[type=number] {
		-moz-appearance: textfield;
	}

	@media screen and (min-width: 576px) {
		.what-is-new-div {
			max-height: 0px;
			border-radius: 0px;
			visibility: hidden;
		}
	}
	@media screen and (max-width: 575px) {
		.what-is-new-div {
			border-radius: 5px;
			border-style: dashed;
		}
	}
	.what-is-new-div {
		padding: 0 0px;
		margin-left: 1px;
		margin-right: 1px;
		border-color: red;
	}
	.what-is-new-div .col {
		padding-left: 5px;
		padding-right: 5px;
	}
	.what-is-new-div button {
		border: 1px solid orange;
		border-radius: 10px;
		font-size: 20px;
		background-color: orange;
		color: white;
		margin: 10px;
	}
	@media screen and (min-width: 576px) {
		.what-is-new-div button {
			visibility: hidden;
			margin: 2px;
		}
	}
	.what-is-new-popover {
		@media screen and (max-width: 575px) {
			visibility: hidden;
		}
		@media screen and (min-width: 576px) {
			width: 400px;
			max-width: 400px;
		}
		background: darkgreen;
		border-color: white;
		box-shadow: 0px 0px 0px 1px gray;
	}
	.what-is-new-popover .container {
		width: unset;
	}
	.what-is-new-popover .row {
		margin-left: unset;
		margin-right: unset;
	}
	.what-is-new-popover p {
		font-size: 10px;
		color: white;
		margin-bottom: 5px;
	}
	.what-is-new-popover a {
		color: white;
		text-decoration: underline;
	}
	.what-is-new-popover a:hover {
	    color: lightgreen;
	}
	.what-is-new-popover-description {
		font-size: 14px !important;
		color: orange !important;
	}
	.what-is-new-popover div.container {
		padding-left: 2px;
		padding-right: 2px;
		height: unset;
	}
	.what-is-new-popover div.col {
		padding-left: 2px;
		padding-right: 2px;
	}
	.what-is-new-popover-btn-close {
		position: absolute;
		top: 0px;
		right: 5px;
		color: white;
		opacity: 0.9;
	}
	.what-is-new-popover-btn-close:hover {
		color: lightgray;
	}
	.what-is-new-popover-btn-close:focus {
	    outline: none;
	    opacity: 0.9;
	}
	.what-is-new-popover-title {
		font-size: 30px;
		color: orange;
    }
    .what-is-new-popover-img {
		width: 100%;
    }
	.what-is-new-popover-lightbulb {
		@media screen and (max-width: 575px) {
			color: white;
		}
		@media screen and (min-width: 576px) {
			color: orange;
		}
		font-size: 40px;
	    animation: what-is-new-ingnite 5s linear infinite;
    }
	@keyframes what-is-new-ingnite {
		0%   { opacity: 1; }
		25%  { opacity: 0.25; }
		50%  { opacity: 1; }
		75% { opacity: 0.25; }
	}

	.tooltip,
	.popover {
		z-index: 1000001 !important;
	}

/* Francois Modif End */

/* CSS GRID ********************************************************************/

	div.form_grid {
		width: 100%;
		display: grid;
		grid-gap: 0;
		grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
		}

	div.form_set {
		width: 100%;
		display: grid;
		grid_gap: 0;
		grid-template-columns: 150px minmax(200px, 1fr);
		}

	div.form_set > .label {
		background: #e5e9f0;
				-moz-border-radius: 4px 4px 4px 4px;
		-webkit-border-radius: 4px 4px 4px 4px;
		-khtml-border-radius: 4px 4px 4px 4px;
		border-radius: 4px 4px 4px 4px;
				border-right: 3px solid #e5e9f0;
		border-bottom: 1px solid #ffffff;
		padding: 7px 8px;
		text-align: right;
		color: #000000;
		font-family: Arial;
		font-size: 9pt;
		white-space: nowrap;
		vertical-align: top;
		}

	div.form_set > .label.required {
		background: #e5e9f0;
				-moz-border-radius: 4px 4px 4px 4px;
		-webkit-border-radius: 4px 4px 4px 4px;
		-khtml-border-radius: 4px 4px 4px 4px;
		border-radius: 4px 4px 4px 4px;
				border-right: 3px solid #cbcfd5;
		border-bottom: 1px solid #ffffff;
		padding: 7px 8px;
		text-align: right;
		color: #000000;
		font-family: Arial;
		font-size: 9pt;
		font-weight: bold;
		white-space: nowrap;
		vertical-align: top;
		}

	div.form_set > .field {
		background: #ffffff;
				-moz-border-radius: 0px 0px 0px 0px;
		-webkit-border-radius: 0px 0px 0px 0px;
		-khtml-border-radius: 0px 0px 0px 0px;
		border-radius: 0px 0px 0px 0px;
				border-bottom: 1px solid #e5e9f0;
		padding: 6px;
		text-align: left;
		vertical-align: middle;
		color: #666666;
		font-family: Arial;
		font-size: 8pt;
		position: relative;
		}

	div.form_set > .field.nowrap {
		white-space: nowrap;
		}