@CHARSET "UTF-8";


:root {
	--color-purple: #441f54;
	--color-teal: #1f607c;
	--color-gold: #f7c631;
	--color-coral: #e34f6d;
	--color-stone-1: #e3ddd4;
	--color-stone-2: #eae5e1;
	--color-stone-3: #eeecea;
	--color-stone-4: #f5f6f5;
	--color-black: #000000;
	--color-white: #ffffff;
	--color-grey: #575757;
}

/************************************ BASIC TAGS ********************************************************************************************/
body {
	background: url("/bc/images/design/bg-body.png") no-repeat center top
		var(--color-stone-4);
	color: var(--color-purple);
	font: 11px MuseoSans_300, Arial, Calibri, Helvetica, sans-serif;
	margin: 0;
	min-width: 998px;
	height: 100%;
}

* {
	line-height: 1.0em;
	outline: none;
	border: none;
	padding: 0px;
	margin: 0px;
}

h1 {
	font-size: 1.4em;
	line-height: 1.4em;
}

h2 {
	font-size: 1.1em;
}

h4 {
	font-weight: normal;
	font-size: 1.3em;
}

a {
	text-decoration: none;
	color: var(--color-purple);
}

.login a {
	color: var(--color-black)
}

a:hover {
	color: #000000;
}

a.button {
	display: inline-block;
	height: 30px;
	width: 30px;
}

a.button>span {
	width: 100%;
	height: 100%;
	display: block;
}

a.button.green>span {
	background-image: url('/bc/images/icons/button_green.png');
}

a.button.red>span {
	background-image: url('/bc/images/icons/button_red.png');
}

button {
	text-align: center;
	font-size: 24px;
	line-height: 35px;
	vertical-align: middle;
	padding: 0px;
	color: var(--color-black);
	width: 100%;
	margin-bottom: 10px;
	margin-top: 5px;
	background-color: var(--color-stone-1);
	border-color: var(--color-stone-1);
	border-width: 2px;
	border-style: double;
	font-family: MuseoSans_700, Arial, Calibri, Helvetica, sans-serif;
}

button.orange {
	background-color: #E06700;
}

button.stone1_hover_purple {
	background-color: var(--color-stone-1);
	color: var(--color-black);
}

button.stone1_hover_purple:hover {
	background-color: var(--color-purple);
	color: var(--color-stone-4);
}

button:hover {
	color: #000000;
	background-color: #FFFFFF;
}

input {
	display: inline-block;
	font-size: 15px;
	background-color: var(--color-stone-3);
	color: var(--color-black);
	margin-bottom: 10px;
	padding: 3px 10px 3px 10px;
	vertical-align: middle;
	maxlength: 45;
	height: 1.8em;
	border: none;
	width: 260px;
	font-family: MuseoSans_300, Arial, Calibri, Helvetica, sans-serif;
}

textarea {
	display: inline-block;
	font-size: 15px;
	margin-right: 0px;
	margin-bottom: 10px;
	padding: 10px;
	vertical-align: middle;
	maxlength: 45;
	height: 150px;
	border: none;
	width: 260px;
	resize: none;
	background-color: var(--color-stone-3);
	color: var(--color-black);
	font-family: MuseoSans_300, Arial, Calibri, Helvetica, sans-serif;
}

input.button {
	text-align: center;
	font-size: 1.2em;
	line-height: 1.4em;
	padding: 0px;
	color: #FFFFFF;
	background-color: #B36900;
	border-color: #A35900;
	border-width: 2px;
	border-style: double;
}

input.checkbox {
	display: inline-block;
	font-size: 15px;
	color: var(--color-grey);
	margin: 3px 0 4px 0;
	padding: 3px 0px 3px 30px;
	maxlength: 45;
	height: 1.8em;
	border: medium solid;
	width: auto;
}

label {
	font-weight: bold;
	font-size: 1.0em;
	height: 30px;
	/*color: #FFFFFF;*/
	margin-left: 15px;
}

select {
	display: inline-block;
	font-size: 15px;
	color: var(--color-black);
	maxlength: 45;
	border: none;
	margin-right: 0px;
	margin-bottom: 10px;
	padding: 2px 4px;
	padding-left: 10px;
	vertical-align: middle;
	background-color: var(--color-stone-4);
	min-width: 100px;
	width: 280px;
	height: 2em;
	font-family: MuseoSans_300, Arial, Calibri, Helvetica, sans-serif;
}

.orange-arrow-right {
	background: url("/bc/images/design/orange_arrow_right.png") center
		center no-repeat;
	display: inline;
	padding: 10px;

}

.white-arrow-right {
	background: url("/bc/images/design/white_arrow_right.png") center center
		no-repeat;
	display: inline;
	padding: 10px;
}

.black-arrow-hover_stone4 {
	background: url("/bc/images/design/white_arrow_right.png") center center
	no-repeat;
	display: inline;
	padding: 10px;
	filter: brightness(0) saturate(100%);
}

.stone1_hover_purple:hover .black-arrow-hover_stone4 {
	filter: brightness(0) saturate(100%) invert(100%) sepia(74%) saturate(9%) hue-rotate(49deg) brightness(100%) contrast(94%);
}

.orange-arrow-down {
	background: url("/bc/images/design/orange_arrow_down.png") center center
		no-repeat;
	display: inline;
	padding: 10px;
}

.arrow-down-bg {
	background: url("/bc/images/design/arrow_down_bg.png") no-repeat scroll
		right 16px bottom 8px rgba(0, 0, 0, 0);
}

.xdebug-error {
	padding-top: 145px;
}

/************************************ DEFAULT STYLES ********************************************************************************************/
.grey-box
{
	background-color: var(--color-stone-4);
	border: 1px solid var(--color-purple)
}

.text-black {
	color: var(--color-black);
}

.text-orange {
	color: #DC7300;
}

.text-purple {
	color: var(--color-purple);
}

.text-coral {
	color: var(--color-coral);
}


.link-orange a {
	color: #DC7300;
}

.link-purple a {
	color: var(--color-purple);
}

.link-coral a {
	color: var(--color-coral);
}

.text-white {
	color: var(--color-white) !important;
}

.text-bg-white {
	background-color: #FFFFFF;
}

.text-bg-stone4 {
	background-color: var(--color-stone-4);
}

.text-stone-4 {
	color: var(--color-stone-4) !important;
}

.middle {
	vertical-align: middle;
}

.top {
	vertical-align: top;
}

.bottom {
	vertical-align: bottom;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
}

.hidden {
	display: none;
}

.top {
	vertical-align: top;
}

.table-cell {
	display: table-cell;
}

.table-row {
	display: table-row;
}

.width_960 {
	width: 960px !important;
}

.width_1000 {
	width: 1000px !important;
}

.width_640 {
	width: 640px !important;
}

.width_480 {
	width: 480px !important;
}

.width_460 {
	width: 460px !important;
}

.width_340 {
	width: 340px !important;
}

.width_320 {
	width: 320px !important;
}

.width_300 {
	width: 300px !important;
}

.width_240 {
	width: 240px !important;
}

.width_100p {
	width: 100%;
}

.height_590 {
	height: 590px !important;
}

.height_240 {
	height: 240px !important;
}

.marg_10 {
	margin: 10px !important;
}

.padd_10 {
	padding: 10px !important;
}

.padd_r_16 {
	padding-right: 16px !important;
}

.border_no_top {
	border-top: none;
}

.inline {
	display: inline;
}

.inline_block {
	display: inline-block;
}

.flex_vertical_align {
	display: flex;
	align-items: center;
}

.text_error {
	color: #CC0000;
	font-weight: bold;
}

.header {
	font-weight: bold;
	font-size: 1.3em;
	font-family: MuseoSans_700, Arial, Calibri, Helvetica, sans-serif;
	color: var(--color-purple);
}

.header_grey {
	font-weight: bold;
	font-size: 1.6em;
	color: var(--color-grey);
	margin: 0 0 20px;
}

.status_img {
	height: 25px;
	width: 25px;
}

.selectionRight {
	text-align: right;
	margin-right: 0px;
	font-size: 18px;
	line-height: 1.3;
}

.selectionLeft {
	font-size: 18px;
	line-height: 1.3;
	margin-left: 0px;
}

.text-medium {
	font-size: 1.4em;
	line-height: 1.4em;
}

.text-large {
	font-size: 2.5em;
	line-height: 1.4em;
}

.Strong {
	font-weight: bold;
}

.fw-400 {
	font-weight: 400;
}

.bold  {
	font-family: MuseoSans_700, Arial, Calibri, Helvetica, sans-serif;
}

/************************************ Notify settings STYLES ********************************************************************************************/
div.nfs_template, div.nfs_empty_template{
	display:none;
}
.notify_settings_container, .notify_settings_guest_container ,.notify_settings_notified_container {
	font-size: 0;
	/*background-color: #FFDDAA;*/
	margin: 0px;
	padding: 0px;
	white-space-collapse: discard;
	text-space-collapse: trim-inner;
}

.nfs_user_container_outer, .nfs_user_container_guest_outer, .nfs_user_container_notified_outer, .nfs_empty {
	white-space-collapse: discard;
	text-space-collapse: trim-inner;
	display: inline-block;
	width: 226px;
	max-width: 230px;
	vertical-align: top;
	padding: 5px;
	
}

.nfs_user_container {
	font-size: 11px;
	white-space-collapse: discard;
	text-space-collapse: trim-inner;
	display: inline-block;
	background-color: #7d7d7dff;
	width: 226px;
	max-width: 230px;
	
	border: solid 2px;
	border-radius: 5px;
	vertical-align: top;
}

.nfs_user_email {
	position:relative;
	vertical-align: middle;
	background-color: #f2f2f2ff;
	border: solid 2px;
	border-radius: 5px;
	margin: -2px;
	padding: 10px;
	white-space: nowrap;
}

.nfs_user_email>img, .nfs_user_email>div {
	display: inline-block;
	vertical-align: middle;
	font-size: 1.3em;
	font-weight: bold;
	overflow: hidden;
	max-width: 180px;
}

.nfs_add_user, .nfs_blank, .nfs_remove_user{
	text-align:center;
	padding:5px;
	height: 32px;
}

.nfs_line {
	background-color: #7d7d7dff;
	max-width: 230px;
	padding: 5px;
	max-width: 230px;
}

.nfs_line_disabled img {
    display: none;
}

.nfs_envelopes {
	height: 50px;
	text-align: center;
}
.nfs_envelopes_temṕlate{
	display:none;
}

.nfs_hide {
    display: none;
}

.nfs_divider_big {
	height: 5px;
	background-color: #f3efefff;
	margin: 0px 10px 10px 10px;
	padding: 0;
}

.nfs_divider_small {
	height: 2px;
	background-color: #f3efefff;
	margin: 0px 10px 10px 10px;
	padding: 0;
}

.nfs_divider_outside {
	background-color: #7d7d7dff;
}

.nfs_interval>select:active, .nfs_interval>select:focus,
	.nfs_interval>select:-moz-focus-inner {
	outline: none;
}

.nfs_interval>select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #FFF; /* your normal text color here */
}

.nfs_interval>select:-moz-focusring * {
	color: #FFF; /* your normal text color here */
	text-shadow: none;
}

.nfs_interval>select {
	outline: none;
	max-width: 216px;
	height: 35px;
	-webkit-appearance: button;
	-moz-appearance: button;
	-webkit-user-select: none;
	-moz-user-select: none;
	-webkit-padding-end: 20px;
	-moz-padding-end: 20px;
	-webkit-padding-start: 2px;
	-moz-padding-start: 2px;
	background-color: #f2f2f2ff;
	background-position: center right;
	background-repeat: no-repeat;
	background-position-x: 180px;
	border: 2px solid #000000ff;
	border-radius: 5px;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
	font-size: 1.2em;
	font-weight: bold;
	margin: 0;
	overflow: hidden;
	padding-top: 2px;
	padding-bottom: 2px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nfs_user_legend {
	text-align: right;
	font-size: 14px;
}
.nfs_user_legend > *{
	font-weight: bold;
}

.nfs_user_container_outer.nfs_user_legend, .nfs_user_container_guest_outer.nfs_user_legend, .nfs_user_container_notified_outer.nfs_user_legend {
	background-color: var(--color-stone-4);
	border: none;
	vertical-align: middle;
}

.nfs_user_email_desc {
	height: 50px;
}

.nfs_interval_desc {
	background-color: var(--color-stone-4);
	height: 31px;
	display: table-cell;
	text-align: right;
	vertical-align: middle;
	width: 216px;
	padding-right: 20px;
}
.nfs_envelopes_desc{
	background-color: var(--color-stone-4);
	height: 50px;
	display: table-cell;
	text-align: right;
	vertical-align: middle;
	width: 216px;
	padding-right: 20px;
}

.nfs_envelopes_inactive{
	color: #bdbdbdff;
}


.nfs_cust_message{
	margin:5px;
	
}
.nfs_cust_message>div{
	display: inline-block;
	padding:10px;
	vertical-align: middle;
}
.nfs_cust_message.odd{
	background-color: var(--color-stone-3);
}

.nfs_cb_messages {
	height: 20px;
	width: 20px;
	margin-top: 4px;
	margin-bottom: 4px;
}

.nfs_cb_messages_image_disabled {
	filter: opacity(0.33);
}

.nfs_cb_messages_text_enabled {
	font-weight: bold;
}

#dialog-form-customNotify{
	font-size:16px;
}

.nfs_env_small{
	width:24px;
	height:24px;
	vertical-align: middle;
	margin:auto 0px;
}

div.nfs_legend{
	display:flex;
	justify-content: space-between;
	margin-top:24px;
	
}
div.nfs_legend > div{
	display: flex;
	padding: 25px auto;
	height:48px;
	margin:auto;
	
}
div.nfs_legend > div > span{
	margin:auto 10px;
	text-align:center;
	font-weight: bold;
	font-size:1.4em;
}

/************************************ Analysis STYLES ********************************************************************************************/
#timeline_chart {
	height: 70px;
	width: 100%;
	margin-bottom: 10px;
}

.chart_controls {
	/*top:364px; 
	position: fixed;
	*/
	float: left;
	z-index: 15;
	width: 500px;
	position: absolute;
	margin-top: -10px;
	display: none;
}

.chart_controls>i, .chart_controls>div {
	font-size: 1.8em;
	padding: 6px 4px 2px 4px;
	margin-right: 5px;
	vertical-align: middle;
	border: solid var(--color-purple);
	background-color: var(--color-stone-4);
	color: var(--color-purple);
}

/************************************ FORM STYLES ********************************************************************************************/
.formElementBox {
	margin: 0px;
}

.formElementBox>ul>li {
	background-color: #FAA;
	padding: 5px 10px 5px 10px;
	list-style: none;
	color: var(--color-grey);
}

.formElementBox>ul {
	padding-top: 5px;
}

.formElementBox>p {
	margin: 0px;
}

.formElementBox>p>input {
	margin-right: 0px;
}

/************************************ FLASHMESSAGE STYLES ********************************************************************************************/
.flashmessages {
	position: absolute;
	width: 100%;
	opacity: 0.8;
}

.box {
	background-position: 2px center;
	background-repeat: no-repeat;
	border-style: dotted;
	border-width: 1px;
	margin: 0 0 1px 0;
	padding: 5px 25px;
	color: #000000;
}

.box-error {
	border-color: #FF2222;
	background-color: #FFCCCC;
	background-image: url('/bc/images/icons/error_20.png');
}

.box-warning {
	border-color: #ff8800;
	background-color: #ffe1bf;
	background-image: url('/bc/images/icons/warning_20.png');
}

.box-notice {
	border-color: #0000ff;
	background-color: #bfbfff;
	background-image: url('/bc/images/icons/notice_20.png');
}

.box-info, .box-success {
	border-color: #22FF22;
	background-color: #CCFFCC;
	background-image: url('/bc/images/icons/success_20.png');
}

.box-debug {
	border-color: #ffff00;
	background-color: #ffffbf;
	background-image: url('/bc/images/icons/debug_20.png');
}

/************************************ MESSAGE STYLES ********************************************************************************************/
.info_box_outer {
	background-color: #f7f7f6;
	position: absolute;
	top: 157px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 100;
	margin: 0 0 30px;
	padding-bottom: 20px;
}

.info_box {
	position: relative;
	margin: 0px auto;
	padding: 0 20px;
	background-color: #DB7200;
	border-style: solid;
	border-width: 2px;
	border-color: #EC8711;
	height: 100%;
}

.info_box_header {
	background-color: #DB7200;
	font-weight: bold;
	font-size: 1.3em;
	vertical-align: middle;
	color: #FFFFFF;
	padding: 10px 0;
}

.info_box_content {
	position: absolute;
	top: 38px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-color: #fff6dd;
	overflow: auto;
	font-weight: normal;
	font-size: 1.2em;
	vertical-align: middle;
	color: #000000;
	padding: 10px 5px;
	overflow: auto;
	border-top-style: solid;
	border-top-width: 2px;
	border-top-color: #EC8711;
}

.info_box_close_header {
	float: right;
	padding: 6px 0px 0 0;;
}

.info_box_close_big {
	margin: 10px auto;
	padding: 10px;
	width: 200px;
}

.info_box_close_big>input {
	margin: 10px auto;
	text-align: center;
	font-size: 24px;
	line-height: 35px;
	vertical-align: middle;
	padding: 0px;
	color: #FFFFFF;
	width: 100%;
	margin-bottom: 10px;
	background-color: #B36900;
	border-color: #A35900;
	border-width: 2px;
	border-style: double;
	/*background: url("../images/design/button_m.png") repeat-x 0 6px;*/
}

.info_box_close_big>input:hover {
	font-weight: bold;
	color: #000000;
	background-color: #FFFFFF;
}
/************************************ DIALOG BOX *********************************************************************************************/
#dialog {
	font-size: 1.6em;
	padding: 15px;
}

/************************************ BC STATUS *********************************************************************************************/
.bc_status_container {
	float: left;
	margin: 4px;
	padding: 4px;
}

.bc_status_table {
	width: 100%;
	text-align: left;
	border: none;
}

.bc_status_table_row>td {
	padding: 5px;
}

.bc_status_table_row>td img {
	background-color: var(--color-stone-4);
	padding: 0 5px;
}

.bc_status_table thead, .bc_status_table thead>tr>td {
	font-weight: bold;
	padding: 5px;
}

.msg_state_unknown {
	background-color: #CCAACC;
}

.msg_state_info {
	background-color: #CCCCFF;
}

.msg_state_none {
	background-color: #EEEEEE;
}

.msg_state_warning {
	background-color: #FFFFCC;
}

.msg_state_error {
	/*background-color: #FFCCCC;*/
	background-color: #EEEEEE;
}

/************************************ HEADER ********************************************************************************************/
.header-container {
	height: 157px;
}

.header-holder {
	/*height: 157px;*/
	margin: 0 auto;
	top: 0;
	/*width: 960px;*/
	z-index: 1;
	display: flex;
	background-color: var(--color-stone-2);
	justify-content: center;
	padding-top: 14px;
}

.header-submenu {
	/*margin: 25px 0 15px;
	float: right;
	display: inline-block;*/
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 1.2em;
	color: var(--color-purple);
}

.header-logo {
	/*display: inline-block;
	margin: 15px;*/
}

.menu_header {
	position: relative;
	width: 1000px;
	padding: 0px;
	margin: 0 auto;
	/*color: #FFF;*/
	font-size: 2em;
}

.header-text {
	margin: 0 100px;
}

/************************************ NAVIGATION ********************************************************************************************/
.navbar-wrap {
	position: absolute;
	width: 100%;
	top: 110px;
}

.navbar-holder {
	height: 43px;
	padding: 0px 0 0;
}

.navbar-holder-content {
	height: 30px;
	width: 1020px;
	position: relative;
	/*display: flex;*/
	z-index: 2;
	margin-left: auto;
	margin-right: auto;
}

.xmenu-item {
	background: url("/bc/images/design/bg-navbar.png") repeat-x;
	height: 43px;
	padding: 0px 0px;
	vertical-align: middle;
	line-height: 43px;
	font-weight: bold;
	font-size: 1.2em;
	color: #FFFFFF;
	float: left;
}

.xmenu-item-active {
	background: none;
	background: url("/bc/images/design/bg-navbar_a.png");
	color: #000000;
}

.xmenu-divider.menu-divider-al {
	background: url("/bc/images/design/bg-navbar-middle_al.png");
}

.xmenu-divider.menu-divider-ar {
	background: url("/bc/images/design/bg-navbar-middle_ar.png");
}

.xmenu-item:HOVER {
	color: #000000;
}

.xmenu-divider-end {
	background: url("/bc/images/design/bg-navbar-middle_end.png") repeat;
	display: inline-block;
	height: 43px;
	top: 0;
	width: 44px;
}

.xmenu-divider-end-active {
	background: url("/bc/images/design/bg-navbar-middle_ar_end.png") repeat;
}

.xmenu-divider {
	background: url("/bc/images/design/bg-navbar-middle.png") repeat;
	display: inline-block;
	height: 43px;
	top: 0;
	width: 44px;
	float: left;
}

.xmenu-floater {
	float: right;
	line-height: 43px;
	font-size: 1.3em;
	position: absolute;
	right: 0;
	top: 0;
}

ul.nav {
	/*font-size: -2em;*/
	display: inline-flex;
}

ul.nav>li {
	display: inline-block;
	position: relative;
	padding-right: 44px;
	font-size: -2em;
}

ul.nav>li>a {
	height: 43px;
	padding: 0px 0px;
	vertical-align: middle;
	line-height: 43px;
	font-weight: bold;
	font-size: 1.2em;
	color: var(--color-purple);
	float: left;
	display: block;
	text-decoration: none;
	background: url("/bc/images/design/bg-navbar.png");
}

ul.nav>li:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0px;
	width: 44px;
	height: 43px;
	background: url('/bc/images/design/bg-navbar-middle.png') no-repeat;
}

ul.nav>li:hover:after, ul.nav>li.active:after {
	background: url('/bc/images/design/bg-navbar-middle_ar.png') no-repeat;
}
ul.nav > li.first:hover::after, ul.nav > li.first.active::after {
	background: none !important;
}

ul.nav>li:hover:first-child:before, ul.nav>li:first-child:before {
	background: none !important;
}

ul.nav>li:hover:before, ul.nav>li.active:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: -44px;
	width: 44px; /* Change to your image width */
	height: 43px; /* Change to your image height */
	background: url('/bc/images/design/bg-navbar-middle_al.png') no-repeat;
	z-index: 1000;
}

ul.nav>li:last-child:after {
	background: url('/bc/images/design/bg-navbar-middle_end.png') no-repeat;
}

ul.nav>li:hover:last-child:after, ul.nav>li.active:last-child:after {
	/* Remove the image for the last menu item*/
	background: url('/bc/images/design/bg-navbar-middle_ar_end.png')
		no-repeat;
}

ul.nav>li:hover>a, ul.nav>li.active>a {
	color: var(--color-white);
	background: url("/bc/images/design/bg-navbar_a.png");
}

ul.nav>li>ul {
	display: none;
	position: absolute;
	left: 0px;
	height: 43px;
	top: 43px;
	left: -28px;
	white-space: nowrap;
	font-size: 1.2em;
	font-weight: bold;
	padding-top: 4px;
}

ul.nav>li:hover>ul, ul.nav>li>ul:hover {
	display: inline-block;
}

ul.nav>li>ul>li:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: -44px;
	width: 44px; /* Change to your image width */
	height: 43px; /* Change to your image height */
	background: url('/bc/images/design/bg-navbar-middle_al.png') no-repeat;
	z-index: 1000;
}

ul.nav>li>ul>li:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0px;
	width: 44px;
	height: 43px;
	background: url("/bc/images/design/bg-navbar_a.png");
}

ul.nav>li>ul>li:last-child:after {
	background: url('/bc/images/design/bg-navbar-middle_ar_end.png')
		no-repeat;
}

ul.nav>li>ul>li {
	display: inline-block;
	position: relative;
	padding-right: 44px;
}

ul.nav>li>ul>li:hover>a {
	color: var(--color-stone-4);
}
ul.nav>li>ul>li>a:hover {
	color: var(--color-stone-1);
}
ul.nav>li>ul>li>a {
	background: url("/bc/images/design/bg-navbar_a.png");
	display: inline-block;
	height: 43px;
	color: var(--color-stone-4);
	vertical-align: middle;
	line-height: 43px;
}

/************************************ TOOLBAR ********************************************************************************************/
.toolbar {
	padding: 0;
	margin: 0px auto;
	/*background-color: #DB7200;*/
	padding-top: 10px;
	padding-left: 20px;
	padding-bottom: 10px;
	padding-right: 20px;
}

.toolbar select>option {
	padding-left: 20px;
}

.toolbar select>option.bc_select_guest {
	background-image: url(/bc/images/icons/emblem-shared.png);
	background-size: 20px;
	background-repeat: no-repeat;
	background-position-y: -5px;
}

/************************************ CONTENT ********************************************************************************************/
.container-outer {
	margin: 0 0 35px;
	width: 100%;
	/*min-height: 500px;*/
}

.container_640 {
	width: 640px;
	vertical-align: top;
}

.container_320 {
	width: 320px;
	vertical-align: top;
	margin-left: 5px;
	padding-left: 5px;
	border-left: solid #bbb;
}

.container_320>div.switchable {
	margin-top: 15px;
	padding-top: 15px;
	border-top: solid #bbb;
}

.container {
	margin: 15px;
	margin-top: 15px;
}

.content-full {
	
}

.content-center {
	width: 960px;
	margin: 0 auto;
}

.infoContainer {
	display: table;
	font-size: 1.6em;
	margin: 80px auto;
	text-align: center;
	/*color: var(--color-grey);*/
}

.infoContainer p {
	line-height: 1.3em;
}

.infoHeader {
	margin-bottom: 30px;
	font-weight: bold;
}

/************************************ Login and Registration **********************************************************************************************/
.login_edit_table {
	background-color: #FFF;
	border-collapse: collapse;
	color: var(--color-grey);
}

.login_edit_table td {
	position: relative;
	background-color: #FFF;
	border-color: #000;
	border-style: solid;
	border-width: 2px;
	padding: 10px;
	padding-bottom: 60px;
	vertical-align: top;
	width: 280px;
}

.login_edit_table td button {
	position: absolute;
	bottom: 0px;
	width: 280px;
}

.loginContainer {
	margin: 50px auto;
	display: table;
	height: 330px;
}

.login {
	background-color: var(--color-stone-4);
	padding-top: 10px;
	padding-left: 20px;
	padding-bottom: 10px;
	padding-right: 20px;
	width: 280px;
	border-color: var(--color-purple);
	border-style: solid;
	border-width: 0.5px;
	display: inline-table;
	color: var(--color-grey);
}
/************************************ Forms and Headers **********************************************************************************************/
.header {
	margin-bottom: 10px;
	font-size: 2.5em;
	font-stretch: wider;
}

.info {
	font-weight: bold;
	font-size: 20px;
	/*color: var(--color-grey);*/
}

.info p {
	line-height: 1.3em;
	text-align: center;
	padding-bottom: 5px;
}

/************************************ Scraping ********************************************************************************************/
.scrap_640_outer {
	padding: 10px;
	background-color: #ffffff;
	width: 640px;
	margin: auto;
	border: 1px solid var(--color-grey);
}

.scrap_div_640 {
	width: 640px;
	height: 480px;
	border: none;
	padding: 0;
	border-spacing: 0;
	background: url("/bc/images/design/ScreenBCUnplugged_640_480.png")
		repeat scroll 0 0 rgba(0, 0, 0, 0);
	margin: 0 auto;
}

.scrap_div_320 {
	width: 320px;
	height: 240px;
	border: none;
	padding: 0;
	border-spacing: 0;
	background: url("/bc/images/design/ScreenBCUnplugged_320_240.png")
		repeat scroll 0 0 rgba(0, 0, 0, 0);
	margin: 20px auto;
}

.scrap_img_640 {
	width: 640px;
	height: 480px;
	outline: none;
	padding: 0;
	display: block;
	/*visibility: hidden;*/
}

.scrap_img_320 {
	width: 320px;
	height: 240px;
	outline: none;
	padding: 0;
	display: block;
	/*visibility: hidden;*/
}

/************************************ DIRECTREMOTE ********************************************************************************************/
.pis_lis_state_table {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 275px;
}

.container_960 {
	position: relative;
	width: 960px;
	margin: 0 auto 10px;
	padding: 20px;
	background-color: var(--color-stone-4);
	/*background-color: rgba(255, 255, 255, 1);
	color: var(--color-grey);*/
}

.container_980 {
	position: relative;
	width: 980px;
	margin: 0 auto 10px;
	padding: 10px;
	background-color: var(--color-stone-4);
	color: var(--color-grey);
}

.container_960.border {
	border: 1px solid var(--color-grey);
}

.container_980.border {
	border: 1px solid var(--color-grey);
}


.container_2x2 {
	background-image: url("/bc/images/design/bg_2x2.png");
}

.container_seg_2x2 {
	position: absolute;
	margin: 0px;
	padding: 10px;
	width: 460px;
	height: 275px;
}

.seg_left {
	left: 10px;
}

.seg_top {
	top: 10px;
}

.seg_right {
	right: 10px;
}

.seg_bottom {
	bottom: 10px;
}

#chart_pis {
	display: inline-block;
	padding-right: 15px;
}

#chart_lis {
	float: right;
	display: inline;
	padding-right: 15px;
}

#pis_val {
	padding-left: 20px;
	font-weight: bold;
	font-size: 1.4em;
	padding-top: 5px;
}

#lis_val {
	padding-right: 20px;
	font-weight: bold;
	font-size: 1.4em;
	padding-top: 5px;
}

.valve, .pump, .relais, .valve_m {
	vertical-align: middle;
	height: 23px;
	line-height: 23px;
	background-color: #E7E7E7;
	margin: 2px;
	font-size: 1.3em;
	font-weight: bold;
	color: #71706E;
	background: no-repeat scroll;
	display: inline-block;
}

.valve, .pump, .relais {
	width: 100px;
}

.valve_m {
	width: 150px;
}

div.valves_outer {
	height: 230px;
	vertical-align: top;
}

div.temp1_ {
	width: 100px;
	height: 245px;
}

div.temp2_ {
	width: 100px;
	height: 245px;
}

div.temp3_ {
	width: 220px;
}

div.valves_outer>div {
	background-size: auto 100%;
}

.valve {
	background-position: 60px center;
}

.valve.on {
	background-image: url("/bc/images/icons/valve_green.png");
}

.valve.off {
	background-image: url("/bc/images/icons/valve_grey.png");
}

.valve_m {
	background-position: 60px center;
	/*@TODO: remove when functional!*/
	background-image: url("/bc/images/icons/valve_m_grey.png");
}

.valve_m.on {
	background-image: url("/bc/images/icons/valve_m_green.png");
}

.valve_m.off {
	background-image: url("/bc/images/icons/valve_m_grey.png");
}

.pump {
	background-position: 58px center;
}

.pump.on {
	background-image: url("/bc/images/icons/pump_green.png");
}

.pump.off {
	background-image: url("/bc/images/icons/pump_grey.png");
}

.relais {
	background-position: 58px center;
}

.relais.on {
	background-image: url("/bc/images/icons/relais_green.png");
}

.relais.off {
	background-image: url("/bc/images/icons/relais_grey.png");
}

#messages {
	overflow: hidden;
	overflow-y: auto;
	resize: none;
	color: #71706E;
}

#messages>div {
	padding: 0 5px;
}

#messages p {
	padding: 5px 0;
}

#messages.big_messages {
	font-size: 1.4em;
	height: 480px;
}

#messages.small_messages {
	height: 240px;
}

#messages.small_messages .msg_duration {
	display: none;
}

img.msg_image {
	float: left;
	margin-top: 10px;
}

#messages.small_messages>div>img.msg_image {
	width: 20px;
	margin-top: 5px;
}

#messages.big_messages>div>img.msg_image {
	width: 40px;
	margin-top: 18px;
}

#messages.big_messages>div>.msg_text, #messages.big_messages>div>.msg_time,
	#messages.big_messages>div>.msg_duration {
	margin-left: 46px;
}

.msg_text {
	font-weight: bold;
	margin-left: 23px;
}

.msg_time {
	margin-left: 23px;
}

.msg_duration {
	margin-left: 23px;
}

.msg_container {
	background-color: #E7E7E7;
	padding: 2px;
	margin: 4px;
}

.msg_time {
	font-size: 0.9em;
}

.msg_container.msg_quit_0 {
	background-color: #F6C6C6;
}

.msg_container.msg_quit_1 {
	background-color: #C6F6C6;
}

/************************************ FOOTER ********************************************************************************************/
.footer {
	background-color: var(--color-purple);
	bottom: 0px;
	height: 30px;
	width: 100%;
	position: fixed;
	z-index: 100;
}

.footer>div {
	width: 100%;
	height: 30px;
	line-height: 30px;
	text-align: center;
}
/************************************ AGB ********************************************************************************************/
.agb li {
	margin-left: 10px;
	list-style: none;
}

.agb li>p {
	padding-left: 1.5em;
	text-indent: -0.5em;
	padding: 3px 0;
}

.agb li>p>span {
	margin-right: 20px;
	list-style: none;
}

.agb>p {
	font-weight: bold;
	padding: 10px 0;
}

/************************************ Privacy ********************************************************************************************/
.privacy li {
	margin-left: 10px;
	list-style: none;
}

.privacy li>p {
	padding-left: 1.5em;
	text-indent: -0.5em;
	padding: 3px 0;
}

.privacy li>p>span {
	margin-right: 20px;
	list-style: none;
}

.privacy>p {
	font-weight: bold;
	padding: 10px 0;
}

/********************************* Service *************************************************************************************************/
.service_select {
	
}

.service_select>.service {
	margin: 5px;
	background-color: #DFDFDD;
	padding-top: 10px;
	padding-left: 20px;
	padding-bottom: 10px;
	padding-right: 20px;
	width: 300px;
	border-width: 2px;
	border-style: solid;
	border-color: #EC8711;
	display: inline-block;
	vertical-align: top;
}

.service_select>.service>a {
	color: #000000;
	width: 290px;
	margin: 5px;
}

.service>.header {
	color: #000000;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #EC8711;
	margin-bottom: 10px;
	height: 30px;
	text-align: center;
}

img.env_single, img.env_multiple {
	height: 32px;
	width: 32px;
	padding: 8px;
}

#input_group_export label, span {
	font-size: 1.5em;
	margin: 0;
	font-weight: bold;
}

.export_table {
	margin: 0 auto 10px auto;
	width: 96%;
}
.export_table table {
	width: 100%;
	border-collapse: collapse;
	background-color: #e6e6e6;
	color: var(--color-grey);
	text-align: center;
	font-size: 14px;
	margin-top: 5px;
}

.export_table td, th {
	border: 1px solid black;
	height: 30px;
}


/*************** About *********/


.about_hover {
	height: 176px;
	width: 194px;
	background-color: var(--color-stone-1);
	display: inline-block;
	position: relative;
}

.about_white_triangle {
	position: absolute;
	top: 33px;
	content: '';
	border-top: 12px solid transparent;
	border-left: 15px solid var(--color-stone-4);
	border-bottom: 12px solid transparent;
}

.about_hover_text {
	position: absolute;
	top: 124px;
	font-family: MuseoSans_500, Arial, sans-serif;
	width: 194px;
	color: var(--color-black);
	text-align: center;
}