/* Copyright 2021 BlueCat Networks (USA) Inc. and its affiliates. All Rights Reserved. */

@import "fonts.css";
@import "icons.css";
@import "spinner.css";

/* Change default color of links and remove decoration */
a:link,
a:visited {
	color: #0073ae;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:active,
a:focus {
	outline: 0;
}

body {
	margin: 0px;
	padding: 0px;
	overflow: auto;
}

/* Default font size */
body,
input,
select,
textarea {
	font-style: normal;
	font-variant: normal;
	font-size: 12px;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
}

pre,
pre-wrap {
	font-family: 'Roboto Mono', Andale Mono, Consolas, monospace;
}

form {
	margin: 0px;
	padding: 0px;
}

a[disabled=true],
span[disabled=true] {
	color: #bdbdbd;
	pointer-events: none;
}

input {
	vertical-align: middle;
	margin: 0px;
	padding: 1px 6px;
	background-color: #fafafa;
	border: 1px solid #757575;
	border-radius: 3px;
}

input[type=text]{
    height: 26px;
}

input[type=password] {
	height: 26px;
	width: 180px;
}

textarea {
	border: 1px solid #757575;
	padding: 1px;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	height: 30px;
	margin: 0px;
	padding: 1px 30px 1px 6px;
	background-color: #fafafa;
	border: 1px solid #757575;
	border-radius: 3px;
	background: url("/images/caret-down.svg") no-repeat center #fafafa;
	background-size: 16px 16px;
	background-position-x: calc(100% - 5px);
}

select::-ms-expand {
	display: none;
}

input:focus,
select:focus,
textarea:focus {
	border: 2px solid #51bfea;
	outline: 0;
}

input:focus {
	padding: 0 5px;
}

select:focus {
	padding: 0px 29px 0px 5px;
}

textarea:focus {
	padding: 0;
}

input[type="button"]:disabled,
input[type="submit"]:disabled,
button:disabled {
	background: #ffffff;
	border: 2px solid #757575;
	color: #757575;
	cursor: not-allowed;
}

input[type="button"],
input[type="submit"],
button {
	margin-right: 4px;
	height: 30px;
	padding: 0 16px 0 16px;
	background-color: #0073ae;
	color: #ffffff;
	border-radius: 3px;
	font-weight: bold;
	cursor: pointer;
	border: 2px solid #0073ae;
}

input[tag="Cancel"],
input[tag="cancel"],
button[tag="Cancel"],
input[tag="Clear"],
input[tag="clear"],
input[tag="No"] {
	background-color: transparent;
	border: 2px solid #0073ae;
	color: #0073ae;
}

input[type="button"]:hover,
input[type="submit"]:hover,
button:hover {
	background-color: transparent;
	border: 2px solid #00497e;
	background-color: #00497e;
}

input[type="button"]:disabled:hover,
input[type="submit"]:disabled:hover,
button:disabled {
	background-color: transparent; 
	border: 2px solid #757575;
	color: #757575;
}

input[tag="Cancel"]:hover,
button[tag="Cancel"]:hover,
input[tag="cancel"]:hover,
input[tag="Clear"]:hover,
input[tag="clear"]:hover,
input[tag="No"]:hover {
	background-color: transparent;
	border: 2px solid #00497e;
	color: #00497e;
}

input[type="button"]:focus,
input[type="submit"]:focus,
button:focus {
	border: 2px solid #51bfea;
}

input[tag="Cancel"]:focus,
button[tag="Cancel"]:focus,
input[tag="cancel"]:focus,
input[tag="Clear"]:focus,
input[tag="clear"]:focus,
input[tag="No"]:focus {
	border: 2px solid #51bfea;
	color: #0da5e2;
	background-color: #ffffff;
}

input[type="button"]:active,
input[type="submit"]:active,
input[tag="Cancel"]:active,
button[tag="Cancel"]:active,
input[tag="cancel"]:active,
input[tag="Clear"]:active,
input[tag="clear"]:active,
input[tag="No"]:active,
button:active {
	background-color: #00497e;
	border: 2px solid #00497e;
	color: #ffffff;
	box-shadow: none;
}

input[type=checkbox] {
	background-color: #ffffff;
	display: inline-block;
	position: relative;
	width: 16px;
	height: 16px;
	box-sizing: border-box;
	vertical-align: bottom;
	margin: 2px;
	border: 2px solid #757575;
	border-radius: 2px;
	cursor: pointer;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type=checkbox]::after {
	display: block;
	position: absolute;
	box-sizing: border-box;
	content: '';
}

input[type=checkbox].error {
	border-color: #cc0000;
}

input[type=checkbox]:focus {
	box-shadow: 0 0 0 2px #51bfea;
}

input[type=checkbox].error:focus {
	box-shadow: 0 0 0 2px #cc0000;
}

input[type=checkbox]:checked {
	background-color: #0073ae;
	border-color: #0073ae;
}

input[type=checkbox].error:checked {
	background-color: #cc0000;
	border-color: #cc0000;
}

input[type=checkbox]:checked::after {
	top:-1px;
	left: 2px;
	width: 7px;
	height:12px;
	border: solid rgba(255, 255, 255, 0.9);
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}

input[type=checkbox]:disabled {
	background-color: #eeeeee;
	border-color: #757575;
	cursor: not-allowed;
}

input[type=checkbox]:disabled:checked {
	background-color: #757575;
	border-color: #757575;
	cursor: not-allowed;
}

input[type=checkbox]:disabled::after {
	border-color: rgba(255, 255, 255, 0.5);
}

input[type=radio] {
	background-color: #ffffff;
	display: inline-block;
	position: relative;
	width: 16px;
	height: 16px;
	box-sizing: border-box;
	vertical-align: bottom;
	margin: 0 2px 0 2px;
	border: 2px solid #757575;
	border-radius: 50%;
	cursor: pointer;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type=radio]::after {
	display: block;
	position: absolute;
	box-sizing: border-box;
	border-radius: 50%;
	content: '';
}

input[type=radio].error {
	border-color: #cc0000;
}

input[type=radio]:focus {
	box-shadow: 0 0 0 2px #51bfea;
}

input[type=radio].error:focus {
	box-shadow: 0 0 0 2px #cc0000;
}

input[type=radio]:checked {
	background-color: #0073ae;
	border-color: #0073ae;
}

input[type=radio].error:checked {
	background-color: #cc0000;
	border-color: #cc0000;
}

input[type=radio]:checked::after {
	top: 2px;
	left: 2px;
	border: 4px solid rgba(255, 255, 255, 0.9);
}

input[type=radio]:disabled {
	cursor: default;
	border-color: #757575;
}

input[type=radio]:disabled:checked {
	background-color: #757575;
}

input[type=radio]:disabled::after {
	border-color: rgba(255, 255, 255, 0.5);
}

input[type=file] {
	background-color: #ffffff;
	border-color: #ffffff;
}

.no-pointer-events {
	pointer-events: none;
	cursor: default;
}

#labelContainer {
	padding: 0 0 0 12px;
	background-color: #ffffff;
}

.TabbedEntityPagePanelContent {
	background-color: #fafafa;
}

.PagePanelContentPane {
	border-top: solid 1px #bdbdbd;
}

div.ContextPaneSwitcher {
	background-color: #ffffff;
	vertical-align: middle;
	padding: 5px 0 0 0;
	border-bottom: solid 1px #bdbdbd;
	height: 32px;
	width: auto;
	overflow: visible;
	white-space: nowrap;
	user-select: none;
}

.group-panel,
.single-tab-panel,
.GroupTableContainer {
	background-color: #ffffff;
	box-shadow: 0px 0px 1px 0px #757575;
	margin: 20px 0 0 0;
	padding: 10px 0 10px 0;
	width: 100%;
}

.GroupTableContainerSub {
	padding-left: 14px;
	width: 100%;
	border-spacing: 0px;
}

.group-panel-child {
	padding-left: 34px;
}

.context-pane-child-page {
	padding-left: 20px;
}

.group-table-container-child-page {
	padding-left: 34px;
}

#miniViewPanel {
	width: 100%;
	margin-left: -24px;
}

#miniViewPanel .group-content {
	width: 100%;
}

div.ActiveContextPane {
	background-color: transparent;
}

img.SkinImage-Large {
	width: 32px;
	height: 32px;
}

img.SkinImage-Medium {
	width: 24px;
	height: 24px;
}

img.SkinImage-Small {
	width: 16px;
	height: 16px;
	margin: 0 3px 0 0;
}

/*-----------------------------*/

#banner {
	background-color: #00497e;
	border-bottom: 0;
	box-shadow: 0px 0px 4px 0px #000000;
	color: #ffffff;
	font-size: 28px;
	position: relative;
	z-index: 1;
}

#banner-bar {
	display: flex;
	background-image: url("/images/BAM_Prim_Wht.svg");
	background-position: 10px 12px;
	background-repeat: no-repeat;
	background-size: 240px 22px;
	width: 100%;
	height: 40px;
}

#banner-search {
	margin-left: auto;
	margin-right: 4px;
	display: flex;
}

#banner-search ::placeholder,
#banner-search ::-webkit-input-placeholder {
	color: #b1e4f6;
}

#banner-search a,
#banner-search a:visited {
	color: #0073ae;
	font-weight: bold;
	font-size: 11px;
}

#banner-search .menu {
	width: 186px;
	margin-left: 5px;
	text-align: right;
}

#banner-search .selected {
	background-color: #ffffff;
}

input#QuickSearchField {
	color: #ffffff;
	width: 156px;
	height: 28px;
	background-color: #005999;
	border-radius: 3px;
	background-image: url("/images/search-solid.svg");
	background-position: 5px 9px;
	background-repeat: no-repeat;
	background-size: 12px 12px;
	padding: 0 0 0 26px;
	border: 2px solid #005999;
}

input#QuickSearchField:hover,
input#QuickSearchField:focus {
	border: 2px solid #b1e4f6;
	box-shadow: none;
}

#system-toolbar {
	display: flex;
	align-items: center;
	font-size: 16px;
	padding-right: 10px;
}

#system-toolbar a,
#system-toolbar a:visited {
	color: #51bfea;
}

#system-toolbar .action-item a {
	color: #000000;
}

#system-toolbar .ToolBarItem,
#system-toolbar .ToolBarItemSeparator {
	display: inline-block;
	background-color: #00497e;
	border: 0;
	margin: 0 5px 0 5px;
}

#system-toolbar .ToolBarItem a:hover,
#system-toolbar .combo-button-icon:hover,
#system-toolbar .combo-button.showing .combo-button-icon {
	color: #ffffff;
}

#system-toolbar .combo-button-icon {
	color: #51bfea;
	background-color: #00497e;
	font-size: 16px;
	padding-left: 5px;
	padding-right: 0px;
}

#system-toolbar .combo-button-icon .fa-angle-down {
	padding: 0;
}

#system-toolbar .combo-button .title {
	margin-left: 4px;
}

#system-toolbar .disabled:first-child {
	opacity: 1.0;
	margin-bottom: 5px;
}

#system-toolbar .disabled .action-title:first-child {
	font-weight: bold;
	color: #000000
}

.category-bar {
	border: 0 none;
	white-space: nowrap;
	user-select: none;
}

.category-bar a:link,
.category-bar a:visited {
	border-top: 0;
	border-right: 0;
	border-left: 0;
	border-bottom: 0;
	width: 100%;
	height: 100%;
}

span.category-bar {
	display: inline-block;
	white-space: nowrap;
}


/* Navigation bar */

#navigator ul {
	padding: 0px;
	margin: 0px;
}

#navigator li {
	list-style-type: none;
	display: inline;
	padding-left: 2px;
	padding-bottom: 4px;
}

/************* Page Footer **************/

#footer {
	padding: 4px;
	height: 40px;
	width: 99%;
	bottom: 0;
}

#footer table {
	padding: 10px 0 0 0;
	width: 99%;
}

#copyRightLink,
#versionText,
#footerClockText {
	color: #424242;
}

#contextPane {
	vertical-align: top;
	border-bottom: #bdbdbd solid 1px;
	margin: 0px;
}

#contextPaneNoBorder {
	vertical-align: top;
	margin: 0px;
}

.hiddenActionMenuItems {
	display: none;
}

div.buttons {
	margin: 24px 0 14px 0;
	padding-left: 40px;
}

.inline-buttons input,
.inlineButtons input,
.multi-item-editor-buttons input {
	padding: 0 12px 0 12px;
	height: 24px;
}

.multi-item-editor-buttons input {
	min-width: 100px;
}

.multi-item-editor-buttons div {
	padding: 2px 0 2px 0 ;
}

.lightbox-buttons {
	margin: 14px 14px 14px 0;
	display: flex;
	float: right;
	flex-direction: row-reverse;
}

.lightbox-buttons input[type="button"],
.lightbox-buttons input[type="submit"] {
	margin: 0 0 0 12px;
}

.login-buttons {
	margin-top: 24px;
}

div.ContentFrame {
	background-color: #fafafa;
	width: 100%;
	border-bottom: 1px solid #bdbdbd;
}

.value-table-filterbar {
	background-color: #e0f4fb;
	padding: 5px;
	margin-top: 5px;
	border-bottom: 1px solid #0073ae;
	width: 100%;
}

.value-table-filterbar input[type="text"],
.value-table-filterbar select {
	background-color: #ffffff;
	border: 1px solid #0073ae;
}

.value-table-filterbar input[type="text"]:focus,
.value-table-filterbar select:focus {
	border: 2px solid #51bfea;
}

.value-table-filterbar-item {
	float: right;
}

.value-table-filterbar-item-full {
}

table.value-table,
table.value-table-unfixed {
	border-collapse: collapse;
	width: 100%;
	border-spacing: 0;
	margin-top: 10px;
}

table.value-table {
	table-layout: auto;
}

.value-table th:not(:first-child) {
	padding-right: 10px;
}

tr.table-subheader th {
    text-transform: none;
    border-top: 1px solid rgba(0, 0, 0, 0.125) !important;
    white-space: normal;
}

table.value-table-cell {
	width: 100%;
	border-spacing: 0;
}

table.value-table-cell tr,
table.value-table-cell tr:first-child {
	background-color: transparent !important;
}

table.migration-statistics-table {
    border: none;
    border-collapse: collapse;
}

table.migration-statistics-table th {
    border-left: 1px solid rgba(0, 0, 0, 0.125) !important;
    border-right: 1px solid rgba(0, 0, 0, 0.125) !important;
    text-align: center !important;
    padding-left: 0.5em;
}

table.migration-statistics-table td {
    border-left: 1px solid rgba(0, 0, 0, 0.125) !important;
    border-right: 1px solid rgba(0, 0, 0, 0.125) !important;
    text-align: right !important;
    padding-right: 0.5em;
}

table.migration-statistics-table th:first-child {
    border-left: none !important;
}

table.migration-statistics-table td:first-child {
    border-left: none !important;
    text-align: left !important;
}

table.migration-statistics-table th:last-child,
table.migration-statistics-table td:last-child {
    border-right: none !important;
}

.filter-table-label {
	color: #424242;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 10px;
	padding-bottom: 2px;
}

.filterbar {
	display: flex;
}

.filterbar div {
	margin: 0 10px 0 10px;
}

.filterbar .inline-buttons {
	padding-top: 20px;
}

.filterbar-udf-value {
	display: flex;
}

.filterbar-udf-value span {
	margin-right: 5px;
}

.value-table-toolbar {
}

div.value-table {
	width: 100%;
}

.value-table .fa-sort-down, .fa-sort-up, .fa-sort {
	margin-left: 6px;
}

.value-table .fa-sort-down, .fa-sort-up {
	color: #0073ae;
}

.value-table .fa-sort {
	color: #757575;
}

.value-table-add a:link,
.value-table-delete a:link {
	text-decoration: underline;
}

.value-table-add,
.value-table-add:hover {
	background-color: #ffffff;
}

.value-table-selected th,
.value-table-selected td,
.value-table th,
.value-table td {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: auto;
	text-align: left;
	vertical-align: middle;
}

.value-table-selected th,
.value-table th {
	max-width: 100px;
}

.value-table-selected td,
.value-table td {
	max-width: 100px;
}

td.first-selection {
	max-width: 200px;
}

th.value-table-delete {
	width: 50px;
}

.value-table td,
.value-table-selected td {
	padding: 2px 1px 2px 0px;
}

.value-table th,
.value-table-selected th,
th.value-table-HeaderNoCheckBox {
	color: #757575;
	font-weight: bold;
	padding: 2px 1px 5px 0px;
}

.value-table-selected td {
	background-color: #b1e4f6;
}

.value-table th,
.value-table-selected th,
th.value-table-HeaderNoCheckBox,
.value-table-anchor,
.value-table-palette .available-cell option,
.value-table-palette .selected-cell option {
	text-transform: uppercase;
}

.value-table td.selection-column,
.value-table td.selection-column,
.value-table th.selection-column {
	width: 23px;
}

.value-table th.selection-column {
	padding-top: 0;
}

.list-header td.spanHeader {
	border: 0;
	width: 30px;
}

.list-header a:visited,
.list-header a:link {
	color: #757575;
	text-decoration: none;
}

.value-table-selected td a,
.value-table td a {
	color: black;
}

.value-table tr:first-child {
	background-color: #ffffff !important;
}

.value-table tr:nth-child(even) {
	background-color: #ffffff;
}

.value-table tr:nth-child(odd) {
	background-color: #eeeeee;
}

.value-table tr:hover {
	background-color: #b1e4f6;
}

.value-table td .vo-label a img {
	width: 16px;
	height: 16px;
}

.value-table-horizontal th {
	color: #000000;
	padding-left: 5px;
	font-size: 10px;
}

.vo-label {
	border-spacing: 0;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	border: 0;
	text-align: left;
	word-wrap: break-word;
	word-break: break-all;
	text-transform: none;
}

.vo-label th {
	padding-right: 4px;
	padding-left: 5px;
}

.vo-label span img {
	margin: 0 3px 0 0;
	display: inline-block;
	vertical-align: middle;
}

span.vo-label {
	vertical-align: middle;
}

table.reconciliation td {
	padding:2px;
}

.reconcileStatus th {
	text-align: left;
}

.valueEdit {
	font-weight:normal;
}

table.valueEdit {
	width: 100%;
}

.valueEdit th {
	padding: 2px;
	text-align: right;
	white-space: nowrap;
}

th.valueEditHeading {
	text-align: left;
}

td.valueEditHeading {
	text-align: left;
}

.form-input tr td,
table.valueEdit tr td {
	padding: 0px 4px 0px 0px;
	text-align: left;
}

.form-input input {
	vertical-align: middle;
}

.form-input input[type=file] {
	padding: 0;
}

table.form-input {
	border-spacing: 0;
}

.form-input-table {
	width: calc(100% - 10px);
}

.form-input-table tr:nth-child(odd) {
	background-color: #ffffff
}

.form-input-table tr:nth-child(even) {
	background-color: #eeeeee;
}

table.valueEdit table td {
	width: auto;
	vertical-align: middle;
	padding: 2px;
	padding-left: 0px;
	padding-right: 4px;
}

.form-input th,
.form-input label {
	text-transform: uppercase;
	font-size: 10px;
	font-weight: bold;
	text-align: left;
	padding-top: 10px;
}

.form-input td {
	height: 32px;
}

.form-input input[type=checkbox] {
	margin-bottom: 4px;
	margin-right: 5px;
}

.form-input input[type=radio] {
	margin-bottom: 2px;
	margin-right: 5px;
}

.form-input td img {
	vertical-align: middle;
}

.form-input-header {
	font-size: 14px;
}

.form-input-group {
	padding-top: 10px !important;
}

.form-input-child {
	padding-left: 30px !important;
}

.form-input-child tr:first-child th {
	padding-top: 0px;
}

span.form-input-subtext {
	text-transform: none;
	font-size: 9px;
	color: #757575;
}

.form-input-fixed-text {
	font-family: 'Roboto Mono', Andale Mono, Consolas, monospace;
}

.form-input-fixed-textarea {
	margin-top: 5px;
	padding: 15px;
	border: 1px solid #bdbdbd;
	font-family: 'Roboto Mono', Andale Mono, Consolas, monospace;
}

.form-input .extra-extra-small-input {
	width: 30px;
}

.form-input .extra-small-input {
	width: 85px;
}

.form-input .small-input {
	width: 200px;
}

.form-input .medium-input {
	width: 315px;
}

.form-input .large-input {
	width: 430px;
}

.form-input .extra-large-input {
	width: 660px;
}

.form-input select.full-input {
	width: 100%;
}

.form-input input[type=text].full-input {
	width: calc(100% - 11px);
}

.form-input textarea.full-input {
	width: calc(100% - 1px);
}

.form-confirmation {
	margin-top: 10px;
}

.form-confirmation ul {
	margin: 5px 0 20px 0;
	padding-inline-start: 0;
}

.form-confirmation li {
	list-style: none;
}

table.rawData table td {
	width: auto;
	vertical-align: middle;
	padding-left: 0px;
	padding-right: 4px;
}

.rawData th {
	text-align: right;
	white-space: nowrap;
}
.rawData td {
	padding-left: 4px;
	text-align: left;
	vertical-align: middle;
	white-space: normal;
}

.rawData td table {
	padding: 1px !important;
	margin-left: 0px !important;
	vertical-align: middle;
}

input.space {
	padding-left:1px;
}

/** This is used for form which need add a extra td for error message displaying.
	If use valueEdit, error message will show on the right side of the page***/
.valueEdit1 th {
	padding-right: 2px;
	text-align: right;
	white-space: nowrap;
}

table.valueEdit1 table tr td {
	width: auto;
	vertical-align: text-top;
	padding: 2px;
	padding-left: 0px;
	padding-right: 4px;
}

/** This is used for multi columns tables
**/
.valueEditMultiCol {
	font-weight:normal;
}

.valueEditMultiCol th {
	padding-right: 2px;
	text-align: right;
	white-space: nowrap;
}

table.valueEditMultiCol tr td {
	padding: 2px;
	text-align: left;
	width: auto;
	white-space: nowrap;
}

table.valueEditMultiCol table td {
	width: auto;
	vertical-align: middle;
	padding: 2px;
	padding-left: 0px;
	padding-right: 4px;
}

.valueEditMultiCol input,
.valueEditMultiCol select,
.valueEditMultiCol img {
	vertical-align: middle;
	margin: 0px;
	padding: 0px;
}

.disabledLabel {
	color: #bdbdbd;
}

.reportParam th {
	text-align: right;
	padding: 4px;
}

.reportParam td {
	text-align: left;
}

.sortBy td {
	padding: 4px;
	vertical-align: middle;
}

.sortBy th {
	padding-right: 4px;
	padding-left: 6px;
	text-align: right;
}

.valueEdit img {
	vertical-align: middle;
	margin: 0px;
	padding: 4px 6px 4px 6px;
	border: none;
}

th.valueEditTop {
	vertical-align: top;
	padding-top: 6px;
}

.absoluteName {
	border-collapse: collapse;
}

.absoluteName td {
	margin: 0px;
	padding: 0px;
}

.absoluteName a:link,
.absoluteName a:visited {
	color: #021cae;
	text-decoration: none;
}

.spacer {
	padding: 0px;
	margin: 0px;
	padding-top: 14px;
}

.spacer tr {
	height: 14px;
}

/****************************************************************************/

.table-values {
	line-height: 200%;
	padding-left: 4px;
	padding-right: 4px;
	padding-top: 2px;
	padding-bottom: 2px;
	color: #424242;
}

.selected {
	background-color: #b1e4fb;
}

.table-columns {
	line-height: 200%;
	text-align: left;
	padding-left: 4px;
	padding-right: 4px;
	padding-top: 2px;
	padding-bottom: 2px;
	border-top: 1px solid #e0f4fb;
	border-bottom: 1px solid #e0f4fb;
	background-color: #e0f4fb;
}

.table1 {
	padding: 0px;
}

.tableMenu {
	line-height: 200%;
	text-align: left;
}

.table-rows-selected td {
	background-color: #e0f4fb;
}

.table-rows td {
	background-color: transparent;
}

.table-rows-alternate td {
	border-bottom: 1px solid #bdbdbd;
	background-color: transparent;
}

.table-pages {
	line-height: 200%;
	padding-bottom: 4px;
	word-spacing: 5px;
}


.main-content-tt {
	font-size: 11px;
	word-spacing: 3px;
	letter-spacing: 0.5px;
	list-style-image: url(../images/bullet.gif);
}

/**
 * New tab stuff
 */

.tab-left,
.tab-right,
.tab-center,
.tab-image {
	background-color: #eeeeee;
}

.tab-center {
	font-size: 10px;
	font-weight: normal;
	line-height: 200%;
	padding-left: 4px;
	padding-right: 4px;
	color: #000000;
}

.tab-image {
	padding-top: 4px;
	padding-left: 4px;
	padding-right: 0px;
}

.tab-center a:link,
.tab-center a:visited {
	text-decoration: none;
	color: black;
}

.tab-selected-left,
.tab-selected-right,
.tab-selected-center,
.tab-selected-image {
	background-color: #eeeeee;
}

.tab-selected-image {
	padding-top: 4px;
	padding-bottom: 2px;
	padding-left: 4px;
	padding-right: 0px;
}

.tab-selected-center {
	color: #000000;
	font-size: 11px;
	font-weight: bold;
	line-height: 200%;
	padding-left: 4px;
	padding-right: 4px;
}

.tabpanel-top {
	border-bottom: 1px solid #bdbdbd;
}

.tabpanel-spacer {
	border-bottom: 1px solid #bdbdbd;
	width: 1px;
}

.tabpanel-topleft {
	border-left: 1px solid #bdbdbd;
	background-color: #FFFFFF;
}

.tabpanel-left {
	border-left: 1px solid #bdbdbd;
	background-color: #FFFFFF;
}

.tabpanel-bottomleft {
	border-left: 1px solid #bdbdbd;
	border-bottom: 1px solid #bdbdbd;
	background-color: #FFFFFF;
}

.tabpanel-topright {
	border-right: 1px solid #bdbdbd;
	background-color: #FFFFFF;
}

.tabpanel-bottomright {
	border-right: 1px solid #bdbdbd;
	border-bottom: 1px solid #bdbdbd;
	background-color: #FFFFFF;
}

.tabpanel-right {
	border-right: 1px solid #bdbdbd;
	background-color: #FFFFFF;
}

.tabpanel-center {
	background-color: #FFFFFF;
}

.tabpanel-bottom {
	border-bottom: 1px solid #bdbdbd;
	background-color: #FFFFFF;
}

/* ---------- detailsPane --------------------------*/

.detailsPane {
	margin: 0;
	padding: 0;
}

div.detailsPane > table {
	padding: 0px;
	border-spacing: 0px;
	border-collapse: separate;
}

.detailsPane tr {
	height: 20px;
}

.detailsPane tr > td:first-child {
	text-transform: uppercase;
	font-size: 10px;
	font-weight: bold;
	padding-right: 20px;
}

.detailsPane td {
	padding: 0;
	white-space: nowrap;
}

.detailsPane td ul {
	padding-inline-start: 0;
	margin-block-end: 1px;
	margin-block-start: 1px;
}

.detailsPane td ul li {
	list-style: none;
}

.detailsPane a,
.detailsPane .fieldError {
	text-transform: none;
	font-size: 12px;
	font-weight: normal;
}

.leftPane {
	width: 200px;
	padding: 7px;
	padding-right: 14px;
	vertical-align: top;
}

.rightPane {
	padding: 7px;
	padding-left: 14px;
	vertical-align: top;
	background-color: #FAFAFA;
}

.taskPanel {
	border-top: 1px solid #bdbdbd;
	border-left: 1px solid #bdbdbd;
	border-right: 1px solid #bdbdbd;
	border-bottom: 1px solid #bdbdbd;
	font-size: 10px;
	font-weight: normal;
	line-height: 150%;
	background-color: #FFFFFF;
	width: 100%;
}

.taskPanel table {
	width: 100%;
}

.taskPanel th {
	border-bottom: 1px solid #e0f4fb;
	font-size: 11px;
	font-weight: bold;
	line-height: 150%;
	text-align: left;
	padding-left: 4px;
	padding-right: 4px;
	padding-top: 2px;
	padding-bottom: 2px;
	background-color: #e0f4fb;
}

.taskPanel td {
	padding-top: 4px;
	padding-left: 4px;
	padding-bottom: 4px;
}

.tabContent {
	padding: 7px;
	border-bottom: 1px solid #eeeeee;
}

.tabpanel-Content {
	background-color: transparent;
	vertical-align: top;
}

td.tabpanel-Content {
	padding: 4px;
	margin: 0;
}

#stackTraceTable {
	font-family: 'Roboto Mono', Andale Mono, Consolas, monospace;
	color: #cc79a7;
}

#stackTraceTable td {
	height: auto;
}

#errorEventPanel {
	margin-top: 10px;
}

#errorEventPanel div {
	padding: 4px;
}

.iconList {
	margin: 0;
	padding: 0;
	background-color: #ffffff;
	list-style-type: none;
}

.iconList table {
	display: inline;
}

.iconList img {
	display: inline;
	text-align: center;
}

.iconListCellFirst {
	font-size: 16px;
	width: 15%;
	font-weight:bold;
	line-height: 150%;
	padding: 7px;
 	vertical-align: top;
}

.iconListCell {
	width: 15%;
	font-size: 16px;
	font-weight:bold;
	line-height: 150%;
	padding: 7px;
 	vertical-align: top;
}

.iconListItem {
	padding: 0px;
	padding-left: 4px;
	margin: 0px;
}

.iconListItem img {
	padding-right: 4px;
}

.IconListItemDescription {
	padding-top: 2px;
	font-size: 11px;
	font-weight:normal;
	line-height: 100%;
}

table.checkedError {
	margin: 0px;
	padding: 0px;
	padding-left: 5px;
}

/*
	Home Page
*/

.labelsListCell {
	padding: 2px;
}

.labelsListCell img {
	padding-right: 3px;
}

/**** Move to Home.css ***/
#miniViewWindowsGroups {
	margin: 0px;
	padding: 7px;
	width: 100%;
}

.miniViewWindowsLeft {
	vertical-align: top;
	padding: 7px;
}

.miniViewWindowsRight {
	vertical-align: top;
	width: 40%;
	padding-top:7px;
}

.miniViewWindows {
	border-left: #bdbdbd solid 1px;
	border-top: #bdbdbd solid 1px;
	border-right: #bdbdbd solid 1px;
	border-bottom: #bdbdbd solid 1px;
	background-color: white;
}

.miniViewMore {
	padding-left: 10px;
}

.filtersMenuDisabled {
	visibility:	hidden;
}

.filtersMenuEnabled {
	visibility:	visible;
}

/*
 * Apply to an element as a class to enable it as viewable
 */
.enabledForViewing {
	display: inline;
}

/*
 * Apply to an element as a class to disable it from being viewable
 */
.disabledForViewing {
	display: none;
}

/*-----Single Tab Panel ----------*/

.single-tab-panel-child {
	padding-left: 40px !important;
}

.single-tab-panel-header {
	font-size: 16px;
	color: #757575;
	padding: 0 0 0 0;
	cursor: pointer;
}

.single-tab-panel .fa-angle-right,
.single-tab-panel .fa-angle-down {
	color: #0073ae;
	margin: 2px 5px 0 0;
	font-size: 18px;
}

.single-tab-panel-content {
	margin-top: 5px;
	padding: 5px 0 0 16px;
}

.single-tab-panel-content-hidden {
	display: none;
}

#EventLevelSubscription .SingleTabPanelContentBody table {
	width: 100%;
}

#EventLevelSubscription .SingleTabPanelContentBody tbody tr:nth-child(odd) {
	background-color: #bdbdbd;
}

#EventLevelSubscription .SingleTabPanelContentBody span input {
	vertical-align: bottom;
}

#EventLevelSubscription .SingleTabPanelContentBody span {
	line-height: 20px;
}

div.SingleTabPanelHeader img {
	cursor: pointer;
}

div.SingleTabPanelContentHidden {
	display: none;
}

div.SingleTabPanel div.SingleTabPanel {
	border: none;
}

table.SingleTabPanel th {
	padding: 7px;
	background-color: #FAFAFA;
	font-size: 14px;
	font-weight: bold;
	color: #424242;
}

div.SingleTabPanel div.SingleTabPanel {
	padding: 4px;
	padding-top: 0px;

}

/*-------------------*/

.PanelText {
	padding: 2px 0px;
	display: inline;
}

td.userPassword {
	vertical-align: top;
	margin: 0px;
	padding: 0px;
}

td.userPassword th {
	text-align: right;
}

th.addressMatchListTitles {
	padding-top: 20px;
	vertical-align: top;
}

td.treeView {
	padding-left: 5px;
}

/*
 * Pop up link
 */

.popUpLink {
	list-style-type: none;
}

.popUpLink li {
	display:	none;
}

td.menuItemColumn {
	padding: 4px;
	padding-left: 4px;
	padding-right: 8px;
}

/*
 * Placeholder for old passwords
 */
.existingPassword::-webkit-input-placeholder { /* WebKit, Blink, Edge */
	color: black;
}

.existingPassword:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color: black;
	opacity: 1;
}

.existingPassword::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: black;
	opacity: 1;
}

.existingPassword:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: black;
}

.existingPassword::-ms-input-placeholder { /* Microsoft Edge */
	color: black;
}

.existingPassword::placeholder { /* Most modern browsers support this now. */
	color: black;
}

/*----------- Grid ------------ */

table.Grid {
	width: 100%;
	padding-left: 5px;
	background-color: #ffffff;
}

td.GridLeft,
td.GridRight {
	vertical-align: top;
	width: 50%;
	padding-left: 7px;
	padding-right: 7px;
}

.Grid .group-content {
	margin-left: 0px;
	display: block;
}

/*-----------------------------*/

ul.noIndentationSquare {
	display: inline;
	margin-left: 0px;
	padding-left: 0px;
	font-size:11px;
	list-style-type: square;
	list-style-position: inside;
}

ul.PageMenu {
	margin: 0px;
	list-style-type: none;
}

ul.PageMenu li {
	display: inline;
	padding: 1px;
	margin: 0px;
}

.ToolBar td {
	padding: 2px;
	padding-top: 4px;
	padding-bottom: 4px;
	background: #fafafa;
}

div.ToolBarItem,
a.ToolBarItem {
	padding: 3px;
}

div.ToolBarItemSeparator {
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 1px;
	padding-right: 1px;
	margin: 0px;
	height: 18px;
}

a.ToolBarItem img {
	vertical-align: middle;
	height: 16px;
	width: 16px;
}

.Grayedout {
	filter:alpha(opacity=30);
	-moz-opacity:.30;
	opacity:.30;
	vertical-align: bottom;
	padding-top: 2px !important;
	padding-right:0px !important;
	padding-left:2px !important;
}

.ToolBarItemLabel a:hover,
.ToolBarItemLabel a:visited,
.ToolBarItemLabel a:link {
	color: #0073ae;
	text-decoration: none;
}

div.ToolBarItemSelected {
	padding: 3px;
	border-top: 1px solid #bdbdbd;
	border-left: 1px solid #bdbdbd;
	border-right: 1px solid #bdbdbd;
	border-bottom: 1px solid #bdbdbd;
	background: white;
}

div.ToolBarItemSelected img {
	filter:alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}

table.ToolBarItemLabel {
	background: transparent;
}

table.ToolBarItemLabel td {
	padding: 0px;
	font-size: 10px !important;
}

table.ToolBarItemLabel td img {
	padding-left: 0px;
	padding-right: 0px;
}


/**
 *
 * Drop Down Menu
 *
 */

table.DropDownList {
	margin: 0px;
}

.DropDownList td {
	padding: 0px;
}

.DropDownList td img {
	padding-left: 2px;
	padding-right: 2px;
}

td.DropDownListButton,
td.DropDownListButtonSelected {
	cursor: pointer;
	padding: 0px;
}

td.DropDownListButton {
	padding: 1px;
}

td.DropDownListButtonSelected {
	border-left: 1px solid #bdbdbd;
	border-top: 1px solid #bdbdbd;
	border-right: 1px solid #bdbdbd;
	border-bottom: 1px solid #bdbdbd;
}

/***** NEW ********/

th.ActionMenuTitle {
	margin: 0px;
	padding: 7px;
	border-left: white solid 1px;
	border-top: white solid 1px;
	border-bottom: #eeeeee solid 1px;
	text-align: left;
	background-color: #eeeeee;
}

.menuSeparator {
	border-top: #eeeeee solid 1px;
	height: 1px;
	padding: 0px;
	margin: 0px;
	font-size: 0px;
}

td.ActionMenuItem {
	padding-left: 7px;
	padding-right: 7px;
	padding-top: 4px;
	padding-bottom: 4px;
}

.ActionMenuItem a {
	text-decoration: none;
}

.ActionMenuItem img {
	vertical-align: bottom;
	padding: 2px;
	padding-right: 4px;
}

table.HistoryDetails {
	width: 100%;
	border-collapse: collapse;
}

.HistoryDetails th {
	color: #757575;
	text-align: left;
	padding: 2px;
	font-size: 12px;
	font-weight: bold;
	padding-bottom: 4px;
	white-space: nowrap;
	border-bottom: 1px solid #bdbdbd;
}

.HistoryDetails td {
	vertical-align: middle;
	margin: 0px;
	padding: 2px;
	padding-top: 4px;
	padding-bottom: 4px;
}

tr.HistoryDetailsEven {
	background: #FAFAFA;
}

table.HistoryDetails td td {
	padding: 0px;
	padding-right: 4px;
	margin: 0px;
	vertical-align: top;
	border: none;
}

.group-content {
	display: flex;
	flex-flow: row wrap;
	margin: 5px 10px 30px 24px;
}

.group-content > :nth-child(1) { order: 2; }
.group-content > :nth-child(2) { order: 3; }
.group-content > :nth-child(3) { order: 4; }
.group-content > :nth-child(4) { order: 5; }
.group-content > :nth-child(5) { order: 6; }
.group-content > :nth-child(6) { order: 7; }
.group-content > :nth-child(7) { order: 8; }
.group-content > :nth-child(8) { order: 9; }
.group-content > :nth-child(9) { order: 10; }
.group-content > :nth-child(10) { order: 11; }
.group-content > :nth-child(11) { order: 12; }
.group-content > :nth-child(12) { order: 13; }
.group-content > :nth-child(13) { order: 14; }
.group-content > :nth-child(14) { order: 15; }
.group-content > :nth-child(15) { order: 16; }
.group-content > :nth-child(16) { order: 17; }

.group-row-break {
	flex-basis: 100%;
}

.group-header {
	width: 100%;
	font-size: 16px;
	padding: 4px 0 4px 0;
	color: #757575;
}

.group-header span.fa-angle-right, span.fa-angle-down {
	font-size: 18px;
}

.group-header a:hover {
	text-decoration: none;
	cursor: pointer;
}

.combo-button-bar {
	margin-right: 3px;
}

.combo-button-bar a:hover {
	text-decoration: none;
}

.combo-button-icon {
	font-size: 12px;
	color: #ffffff;
	padding: 3px 8px 4px 8px;
	border-radius: 3px ;
	background-color: #0072ae;
}

.combo-button-icon > .fa-angle-down {
	padding-left: 5px;
}

.combo-button-icon:hover {
	background-color: #00497e;
}

.combo-button.showing .combo-button-icon {
	background-color: #00497e;
}

.pager-link, .pager-link-disabled {
	margin: 0 10px 0 10px;
}

.pager-link > .fa-chevron-right,
.pager-link > .fa-chevron-left {
	color: #0073ae;
}

.pager-link-disabled > .fa-chevron-right,
.pager-link-disabled > .fa-chevron-left {
	color: #757575;
} 

.dialog,
dialog-minimized {
	margin:0px auto;
	min-width:20em;
}

.dialog .dialog-hd .dialog-c,
.dialog-minimized .dialog-hd .dialog-c,
.dialog .dialog-ft .dialog-c {
	font-size:1px; /* ensure minimum height */
	height:31px;
}

.dialog .dialog-ft .dialog-c {
	font-size:1px; /* ensure minimum height */
	height:19px;
}

.dialog .dialog-hd-thin .dialog-c {
	font-size:1px; /* ensure minimum height */
	height:12px;
}

/* content-specific */

table.dialog-title {
	width: 100%;
	padding: 0px;
	height: 25px !important;
}

div.dialog-title {
	font-weight: bold;
	color: #757575;
	padding: 2px;
	padding-left: 10px;
	padding-top: 4px;
	padding-right: 3px;
	padding-bottom: 0px;
	vertical-align: middle;

}

div.dialog-title img {
	padding: 0px;
	margin: 0px;
	width: 16px;
	height: 16px;
}

td.dialog-action {
	text-align: right;
	padding: 0px;
	padding-right: 10px;
	margin: 0px;
	margin-bottom:0px;
	width: 2%;
}

td.dialog-action .ToolBar {
	margin: 0px;
	padding: 0px;
	height: 100%;
}

td.dialog-action .ToolBar td {
	padding: 2px;
	padding-top:1px;
	padding-bottom:3px;
	font-size: 17px;
	background-color: transparent;
	height:100%;
	vertical-align: middle;
}


td.dialog-action a.ToolBarItem {
	padding: 2px;
	padding-top: 0px;
	padding-bottom: 0px;
	font-size: 17px;
	border: none;
	background-color: transparent;
	height:100% !important;
	vertical-align: top;
}

td.dialog-action a:hover.ToolBarItem {
	padding: 1px;
	padding-bottom:2px;
	border: 1px solid #bdbdbd;
	font-size: 12px;
	background: white;
	vertical-align: middle;
	height: 100%;
}

td.dialog-action a:hover.ToolBarItem img {
	padding: 1px;
	padding-bottom: 0px;
	font-size: 12px;
	filter:alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}


.dialog-action .ToolBarItem img {
	padding: 1px;
	padding-bottom: 0px;
}

.dialog-action img {
	margin: 0px;
	padding: 0px;
	filter:alpha(opacity=40);
	-moz-opacity:.40;
	opacity:.40;
}

/** -- Tab panel */

/** New tab panel */
table.TabPanel {
	width: 100%;
	background: white;
}

.TabPanelItem,
.TabPanelItemActive {
	white-space: nowrap;
	padding-right: 0px;
}

.TabPanelItemActive {
	color: #424242;
	font-weight: bold;
}

a.TabPanelItem:hover {
	text-decoration: none;
}

div.TabPanelItem {
	white-space: nowrap;
}

td.TabPanelLeftFill {
	border-bottom: 1px solid #bdbdbd;
	padding-left: 5px;
}

td.TabPanelSpacer {
	padding-left: 1px;
	width: 0;
	border-bottom: 1px solid #bdbdbd;
	font-size:1px; /* ensure minimum height */
}

td.TabPanelRightFill {
	width: 92%;
	border-bottom: 1px solid #bdbdbd;
}

.TabPanelItem {
	vertical-align: bottom;
}

.TabPanelItemActive img {
	display: none;
}

.TabPanelLabel,
.TabPanelLabelActive {
	height: 22px;
	display: inline-block;
	border-left: none 0px #ffffff;
	border-top: none 0px #ffffff;
	border-right: none 0px #ffffff;
	border-bottom: solid 1px #bdbdbd;
	background-color: #ffffff;
	padding: 4px 8px 4px 8px;
	margin: 0 8px 0 8px;
	white-space: nowrap;
	vertical-align: middle;
	color: white;
	cursor: pointer;
	text-align: center;
	font-weight: bold;
	font-size: 12px;
	color: #757575;
	user-select: none;
}

.TabPanelLabelActive {
	height: 22px;
	background-color: #ffffff;
	border-bottom: solid 3px #51bfea;
	color: #000000;
	text-decoration: none;
	user-select: none;
}

div.TabPanelLabel {
	padding-top: 8px;
}

.TabPanelLabelActive {
	color: black;
}

.TabPanelLabel a:visited,
.TabPanelLabel a:link {
	color: #000000;
}

.TabPanelLabel td,
.TabPanelLabelActive td {
	white-space: nowrap;
	padding: 0px;
}

table.TabPanelLabelActive {
	padding: 0px;
	margin: 0px;
}

.TabPanelLabel td img {
	margin: 0px;
	padding-bottom: 0px;
	display: none;
}

.TabPanelLabelActive td img {
	margin: 0px;
	padding-bottom: 0px;
	padding-right: 4px;
}

.dialog .value-table-pageSize {
	padding-left: 7px;
	padding-right: 7px;
}

div.UserHistoryContainer {
	padding-top: 14px;
	padding-left: 7px;
	padding-right: 7px;
}

table.ip td {
	padding-top: 4px;
	padding-bottom: 4px;
	padding-right: 20px;
}

div.space {
	padding-left:2px;
}

.tablePadding td {
	padding-top: 3px;
	padding-right: 5px;
	vertical-align: middle;
}

/*-----------------------------------
	Reason for Change Control
------------------------------------*/
textarea.ChangeReason {
	width: 90%;
}

.ObjectListIcon {
	padding-right: 4px;
	vertical-align: top;
	padding-top: 2px;
	width: 18px;
}

.ObjectListIcon img {
	width: 16px;
	height: 16px;
}

.ObjectListLabel {
	font-size: 12px;
	font-weight:normal;
	padding-left: 4px;
	padding-right: 4px;
}

.ObjectListDescription {
	padding-left: 4px;
	padding-right: 4px;
	color: #757575;
}

div.ObjectListFirstRow {
	padding: 10px 5px 5px 5px;
}

div.ObjectListRow {
	padding: 10px 5px 5px 5px;
	width: 100%;
}

/*--- Tri Grid --*/
table.TriGrid {
	width: 100%;
}

.TriGrid td.GridLeft,
.TriGrid td.GridMiddle,
.TriGrid td.GridRight {
	vertical-align: top;
	width: 33%;
	padding-left: 7px;
	padding-right: 7px;
}

.TreeBlockV4,
.TreeBlockV6,
.TreeNetwork,
.TreeNetworkV6,
.TreeZone,
.TreeBookmarks,
.TreeTag,
.TreeDeviceType,
.TreeDeviceSubtype,
.TreeView {
	background-repeat: no-repeat;
	background-position: 2px 2px;
	background-size: 16px;
	padding-left: 22px;
	padding-top: 0px;
	height:18px !important;
	vertical-align: middle !important;
	width: 80px;
	display:block;
}

.TreeBlockV4 {
	background-image: url('/images/fa/regular/cube_cobalt.svg');
}

.TreeBlockV6 {
	background-image: url('/images/fa/regular/cube_jade.svg');
}

.TreeNetwork {
	background-image: url('/images/fa/regular/network-wired_cobalt.svg');
}

.TreeNetworkV6 {
	background-image: url('/images/fa/regular/network-wired_jade.svg');
}

.TreeZone {
	background-image: url('/images/fa/regular/route-interstate_cobalt.svg');
}

.TreeBookmarks {
	background-image: url('/images/fa/regular/object-group_cobalt.svg');
}

.TreeTag {
	background-image: url('/images/fa/regular/tag_cobalt.svg');
}

.TreeDeviceType {
	background-image: url('/images/fa/regular/hdd_cobalt.svg');
}

.TreeDeviceSubtype {
	background-image: url('/images/fa/regular/hdd_cobalt.svg');
}

.TreeView {
	background-image: url('/images/fa/regular/globe-americas_cobalt.svg');
}

.TreeLabel {
	height: 18px !important;
	width: 100% !important;
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle !important;
}

.TreeLabel:hover {
	background-color: #b1e4f6;
}

.TreeLabel:focus {
	outline: 0;
}

.TreeExpand {
    width: 18px;
    height: 18px;
    float: left;
    display: inline;
    background-repeat : no-repeat;
}

.TreeExpandOpen .TreeExpand {
	background-image: url('/images/fa/solid/angle-down_cobalt.svg');
}

.TreeExpandClosed .TreeExpand {
	background-image: url('/images/fa/solid/angle-right_cobalt.svg');
}

.TreeExpandLeaf .TreeExpand {
	background-image: none;
}

.TreeNode {
    background-position : top left;
    background-repeat : repeat-y;
    margin-left: 19px;
    zoom: 1;
    padding-top:3px;
}

.TreeIsRoot {
	border-top: 0px;
}

.TreeIsLast {
	border-bottom: 0px;
}

.TreeContent {
    height:18px !important;
    min-height: 18px;
    min-width: 18px;
    margin-left:18px;
    cursor: default;
    display: block;
    /* can't make inline - multiline bugs */
}

.TreeContent .RichTextEditable, .TreeContent .RichTextEditable iframe {
      background-color: #ffffcc;
      color: black;
      height: 18px !important;
      vertical-align: middle;
}

.iconMsg {
	vertical-align: top;
	padding-left:4px;
}

.ItemNotHighlight {
	background-color: white;
	color: black;
}

div.autoScroll {
	height: 90px;
	overflow-x: auto;
	overflow-y: auto;
	border: 1px solid #757575;
}

.autoScroll table {
	outline: none;
}

.IP4RangedInfo td {
	padding-top: 2px;
	padding-left: 18px;
}

table.percent-bar {
	border: 1px solid #bdbdbd;
	width: 200px;
}

table.percent-bar tr {
	height: 15px;
}

table.percent-bar a {
	display: block;
	height: 15px;
	text-decoration: none;
	width: 100%;
}

table.percent-bar a span {
	display: none;
	font-size: 12px;
}

table.percent-bar a:hover {
	cursor: default;
	text-decoration: none;
}

table.percent-bar a:hover span {
	display: block;
	position: absolute;
	margin-left: 20px;
	margin-top: 18px;
	white-space: nowrap;
	border: 1px solid #757575;
	background-color: #eeeeee;
}

table.percent-bar td.percent-bar-free {
	padding: 0px;
	background-color: #e0f4fb;
}

table.percent-bar td.percent-bar-used {
	padding: 0px;
	background-color: #51bfea;
}

table.percent-bar td.percent-bar-dhcp-allocated {
	padding: 0px;
	background-color: #00497e;
}

table.percent-bar td.percent-bar-dhcp-reserved {
	padding: 0px;
	background-color: #007e64;
}

table.percent-bar td.percent-bar-dhcp-abandon {
	padding: 0px;
	background-color: #ff0000;
}

table.percent-bar td.percent-bar-reserved {
	padding: 0px;
	background-color: #00ae91;
}

table.percent-bar td.percent-bar-static {
	padding: 0px;
	background-color: #0073ae;
}

table.percent-bar td.percent-bar-gateway {
	padding: 0px;
	background-color: #ffa500;
}

table.bulk-table {
	table-layout: fixed;
	border-collapse: collapse;
	padding: 4px;
	width: 100%;
}

table.bulk-table th {
	text-align: right !important;
	padding-right: 6px;
	width: 60px;
}

table.bulk-table td {
	white-space: nowrap;
}

table.bulk-table a {
	padding-left:12px;
	padding-right:12px;
}

table.treeExt {
	width: 520px;
	table-layout: fixed;
}

table.treeExt td {
	width: 250px;
	overflow: hidden;
}

table.treeExt td a {
	white-space: nowrap;
	color: black;
}

/********** round border component - fieldset **************/

.fieldset {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	display: inline-block;
}

.fieldset .fieldset-hd {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	height: 3px;
	font-size: 1px;
}

.fieldset .fieldset-hd .fieldset-c {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	height:3px;
}

.fieldset .fieldset-bd {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.fieldset .fieldset-bd .fieldset-c {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	height: auto;
	background: none;
	overflow: hidden;
}

.fieldset .fieldset-bd .fieldset-c .fieldset-body {
	margin: 0 0 0 0;
	padding: 7px 7px 2px 7px;
	overflow: hidden;
	background-color: white;
}

.fieldset .fieldset-ft {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	height: 3px;
	font-size: 1px;
}

.fieldset .fieldset-ft .fieldset-c {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	height: 3px;
}

/**** Lightbox *****/

#lightbox-container {
	display: none;
}

#lightbox-glass {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #bdbdbd;
	filter:alpha(opacity=50);
	-moz-opacity:.50;
	opacity:.50;
	z-index: 100100;
}

#lightbox {
	position: absolute;
	background-color: white;
	z-index: 100200;
	border-radius: 4px;
	border-spacing: 0;
	padding-top: 10px;
}

#lightbox-content {
	height: 100%;
	width: 100%;
}

#lightbox-iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: none;
}

div.wait-page {
	display: block;
	position: absolute;
	top: calc(50% - 8px);
	left: calc(50% - 8px);
}

/* export download page */
#messagePane {
	display: block;
	width: 100%;
	vertical-align: middle;
	text-align: center;
	padding: 10px;
}

#messagePane #message {
	width: 100px;
	height: 10px;
}

#downloadIframe {
	display: block;
	width: 100%;
	height: 480px;
	border: none;
}

#updateDialog {
	margin: 0 auto;
	width: 100%;
	top: 30%;
}

.update-dialog {
	width: 400px;
	height: 100px;
	margin: 0 auto;
	margin-top: 10px;
	border: 2px solid #0073ae;
	padding: 0px;
	text-align: left;
	background: white;
}

.centerDialog {
	position: fixed;
	top: 40%;
	left: 40%;
	width: 400px;
	margin-left: -100px;
	height: 50px;
	margin-top: -25px;
}

.dialog-progress-bar {
	background-color: #b1e4f6;
	height:20px;
	font-size:16px;
	padding:10px;
	text-align:center;
}

.dialog-progress-content {
	padding-left:10px !important;
	padding-top: 6px;
	padding-bottom: 4px;
	font-size:20px;
	vertical-align:top;
	white-space: nowrap;
}

.dialog-progress-highlight {
	background-image: url( '/images/navigate_close.png' );
	background-repeat: no-repeat;
	padding-left: 25px;
	font-size: 14px;
	font-weight: bold;
	vertical-align: top;
	white-space: nowrap;
}

.dialog-progress-highlight-noarrow {
	padding-left: 25px;
	font-size: 12px;
	font-weight: bold;
	vertical-align: top;
	white-space: nowrap;
}

.dialog-progress-grayout {
	padding-left: 25px;
	font-size: 12px;
	font-weight: normal;
	color: #bdbdbd;
	vertical-align: top;
	white-space: nowrap;
}

.dialog-progress-noarrow {
	padding-left: 25px;
	font-size: 10px;
	font-weight: normal;
	vertical-align: top;
	white-space: nowrap;
}

.progress-dots {
	font-size: 14px !important;
	font-weight: bold;
	padding-top: 0px;
	vertical-align: top !important;
	padding-left: 5px;
	letter-spacing: 5px;
}

.dialog-progress-note {
	padding-top: 1px !important;
	padding-bottom: 1px !important;
}

.deployment-progress-highlight {
	line-height: 20px;
	font-size: 12px;
	font-weight: bold;
	white-space: nowrap;
}

.deployment-progress-grayout {
	line-height: 20px;
	font-size: 12px;
	font-weight: normal;
	color: #bdbdbd;
	white-space: nowrap;
}

.skinImage a:hover {
	text-decoration: none;
}

td.remainder,
th.remainder {
	width: 99%;
}

.warningBanner {
	text-align: center;
	width: 100%;
	font-size: 14px;
	font-weight: bold;
	padding-top: 15px;
	padding-bottom: 16px;
	color: black;
	background-color: #ffff00;
}

td.dhcpRangeCheckBoxTemplateRow {
	margin: 0px;
	padding-top: 1px;
	padding-left: 1px;
	padding-right: 1px;
	border: 0px;
	padding-bottom: 14px;
}

/* login class used by Login.html, NotAuthorized.html and ForceChangePassword.html */

.login {
	background-color: #e0f4fb;
}

.login #loginLogo {
	margin-top: 100px;
	margin-bottom: 30px;
	height: 140px;
	width: 216px;
}

.login #ssoLoginButton {
	width: 200px;
}

.login div {
	width: 300px;
	margin-top: 15px;
	margin-bottom: 15px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: center;
}

span.login input[type="text"],
span.login input[type="password"] {
	background-color: #ffffff;
	border: 1px solid #0073ae;
	width: 200px;
}

span.login input[type="text"]:focus,
span.login input[type="password"]:focus {
	border: 2px solid #51bfea;
}

span.login .separator {
	font-weight: bold;
}

.login .fa-info-circle {
	font-size: 14px;
	color: #0073ae;
	padding-right: 5px;
}

.login #contextPaneNoBorder {
	width: 100%;
}

.login #copyright {
	margin-top: 50px;
}

.login #disclaimerTitle {
	margin-top: 50px;
	color: #092734;
	font-size: 1.3em;
	font-weight: bold;
}

.login #disclaimerContent {
	background-color: white;
	width: 585px;
	height: 200px;
	overflow: auto;
	padding: 5px;
	display: block;
}

#disclaimerPreview {
	position: absolute;
	top: 0px;
 	left: 0px;
	width: 100%;
	height: 100%;
	padding-top: 100px;
	padding-bottom: 100px;
	display: none;
	background-color: #e0f4fb;
	z-index: 99;
}

#error-banner {
	background-color: #ff0000;
	color: #ffffff;
	font-size: 12px;
	font-weight: bold;
	left: 0px;
	padding-bottom: 14px;
	padding-top: 13px;
	position: absolute;
	text-align: center;
	top: 0px;
	width: 100%;
}


#error-banner .fa-times-circle {
	font-size: 20px;
	margin-right: 10px;
	color: #ffffff;
}

.exception-links {
	margin-bottom: -30px;
	margin-top: -20px;
}

.exception-links > * {
	margin-left: 15px;
}

/* Start of proteus-silver.css */

/****************** GENERAL STYLES *********************/

.insert-slot {
	display: block;
	zoom: 1;
	height: 600px;
	width: calc(100% - 14px);
}

/******************* PAGE SPECIFICS ********************/

#form {
	padding: 0 0 0 0;
	border: 0;
	margin: 0 0 0 0;
	outline: 0;
}

.location-bar {
	background-color: #ffffff;
	width: 100%;
	padding: 7px 10px 7px 10px;
	border-left: 0;
	border-right: 0;
	font-size: 11px;
}

.location-bar-myipam {
	background-color: #e0f4fb !important;
}

.location-bar select {
	border: none;
}

.location-bar .fa-angle-left {
	font-size: 24px;
}

.location-bar td:first-child {
	width: 24px;
}

.breadcrumb {
	margin: 0 0 0 0;
	color: #0073ae;
}

.breadcrumb li {
	display: inline;
	white-space: nowrap;
}

.breadcrumb li:last-child {
	color: #757575;
}

.location-bar .breadcrumb a {
	color: #0073ae;
}

.location-bar .configuration {
	vertical-align: top;
	margin-right: 1px;
	float: right;
	font-weight: bold;
}

#currentConfiguration,
#currentConfigurationGroup,
#currentConfigurationWithGroup {
	background-color: #b1e4f6;
	color: #424242;
	border: 1px solid #007eae;
}

.location-bar .configuration span {
	display: inline-block;
	height: 17px;
	float: right;
	margin-right: 15px;
	color: #0073ae;
	font-weight: bold;
}

/************** NAVIGATION CATEGORIES *******************/

/*--- toolbar ---*/

.ToolBar td {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	overflow: hidden;
	white-space: nowrap;
}


/*--- categories ---*/

span.categories {
	border: 0;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	border-bottom: solid 1px #eeeeee;
	height: 24px;
	width: auto;
	overflow: visible;
	white-space: nowrap;
	user-select: none;
}


.tab-bar {
	height: 24px;
	display: inline-block;
	padding: 8px 8px 4px 8px;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	text-align: center;
	font-size: 14px;
	color: #b1e4f6;
	user-select: none;
}

.category-bar a:hover {
	text-decoration: none;
}

.tab-bar.active {
	height: 22px;
	color: #ffffff;
	border-bottom: solid 3px #51b5ea;
	text-decoration: none;
	user-select: none;
}

.tab-bar.disabled {
	color: #bdbdbd;
	cursor: not-allowed;
}

.tab-bar:hover,
.tab-bar.active:hover {
	color: #ffffff;
	background-color: #0073ae;
}

.tab-bar.disabled:hover {
	color: #bdbdbd;
	background-color: #00497e;
}

#categories .active {
	border-bottom: solid 3px #51bfea;
}

.bottom-border {
	display: none;
}

a .admin .tab-center {
	color: white;
	font-weight: bold;
	font-size: 12px;
}

/************** SUB TABS (old Tabs before Phoenix) *******************/

.ContextpaneSwitcher {
	vertical-align: baseline;
}

table.TabPanel {
	width: 100%;
	height: 22px;
	background-color: white;
}

div.TabPanelLabel,
div.TabPanelLabelActive {
	height: 20px;
	padding: 5px 12px 0 12px;
	border: 0;
	margin: 0 0 0 0;
	vertical-align: middle;
}

div.TabPanelLabelActive {
	background-color: #0073ae;
	color: white;
	font-weight: bold;
	cursor: pointer;
}

div.TabPanelLabel {
	cursor: pointer;
}

td.TabPanelItem,
td.TabPanelItemActive {
	border-bottom:1px solid #0073ae;
	border-top:1px solid #0da5e2;
	border-right:1px solid #0da5e2;
	height: 22px;
}

.TabPanelItem a:visited,
.TabPanelItem a:link,
.TabPanelItem a {
	color: #424242;
}

.TabPanelItem a:hover div {
	text-decoration: underline;
}

.TabPanelLabel:hover,
.TabPanelLabelActive:hover {
	background-color: #e0f4fb;
	color: #424242;
}

td.TabPanelLeftFill {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	border: 0;
	border-bottom: 1px solid #0073ae;
	border-top: 1px solid #0073ae;
}

td.TabPanelRightFill {
	border-bottom:1px solid #0073ae;
	border-top:1px solid #0073ae;
}

/************** CONTENT PANE *******************/

div.spacer {
	padding: 0 0 0 0;
}

div.tabContent {
	padding: 0 0 0 0;
	border: 0;
}

td.GridRight,
td.GridLeft {
	width: 100%;
	padding: 0 0 0 0;
	display: block;
}

td.miniViewWindowsLeft,
td.miniViewWindowsRight {
	padding: 0 0 0 0;
	width: 100%;
	display: block;
}

div.ActiveContextPane {
	padding: 0 0 0 0;
}

#miniViewWindowsGroups {
	padding: 0 0 0 0;
}

div.ContentFrame,
div.SummaryPaneContainer {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
}

/************** DIALOG PANE *******************/

div.dialog,
div.minimized {
	display: block;
	border: 0;
	padding: 0 0 0 0;
	margin: 1px 0 30px 0;
}

/* but not for dialog panes inside a sinlgle tab panel (confirmation pages) */
.SingleTabPanelContentBody div.dialog,
.SingleTabPanelContentBody div.minimized {
	margin: 0 0 0 0;
}

div.minimized {
	margin: 1px 0 0 0;
}

.dialog .dialog-hd,
.dialog .dialog-hd .dialog-c,
.minimized .dialog-hd,
.minimized .dialog-hd .dialog-c {
	background-color: #e0f4fb;
	display: block;
	height: 24px;
	margin: 0 0 0 0;
	border: 0;
	padding: 0 0 0 0;
	overflow: hidden;
}

.dialog .dialog-hd .dialog-c,
.minimized .dialog-hd .dialog-c {
	border-right: solid 1px #e0f4fb;
	border-left: solid 1px #e0f4fb;
}

.dialog .dialog-hd .dialog-c div.dialog-title,
.minimized .dialog-hd .dialog-c div.dialog-title {
	display: block;
	color: #092734;
	height: 23px;
	border: 0;
	padding: 0px 0 0 0;
	margin: 0 0 0 0;
	vertical-align: middle;
}

* + html .dialog .dialog-hd .dialog-c div.dialog-title,
* + html .minimized .dialog-hd .dialog-c div.dialog-title {
	height: 25px;
}

.dialog .dialog-bd,
.dialog .dialog-bd .dialog-c,
.dialog .dialog-bd .dialog-c .dialog-s {
	background: none;
}

.dialog .dialog-bd {
	border: 0;
}

div#informal {
	border:0;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.dialog .dialog-title .title-content,
.minimized .dialog-title .title-content {
	display: block;
	margin: 2px 0 0 0;
	padding: 0 15px 0 10px;
	vertical-align: middle;
	min-width: 150px; /* to prevent the columns from collapsing when the browser is not wide enough */
}

.dialog .dialog-title .title-content table.dialog-title,
.minimized .dialog-title .title-content table.dialog-title {
	display: inline-block;
	border-spacing: 0;
	height: 20px !important;
	width: 100%;
	border: 0;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
}

.dialog .dialog-title .title-content table.dialog-title td,
.minimized .dialog-title .title-content table.dialog-title td {
	vertical-align: middle;
}

.dialog .dialog-title .title-content .title-label .label,
.minimized .dialog-title .title-content .title-label .label {
	display: inline-block;
	font-size: 14px;
	white-space: nowrap;
	text-align: left;
}

div.dialog-title a:visited,
div.dialog-title a:link,
div.dialog-title a {
	text-decoration: underline;
	color: black;
	border: 0;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

/* Combo Button "settings"*/

div.dialog-title .combo-button .showing .title {
	border: 1px solid #092734;
}

* html div.dialog-title .combo-button .title {
	border-color: #e0f4fb;
}

* html div.dialog-title .combo-button .title .button {
	border-color: #e0f4fb;
}

* html div.dialog-title .combo-button .showing .title {
	border-color: black;

}

* html div.dialog-title .combo-button .showing .title .button {
	border-left-color: black;
}

/************** Accordion ******************/

.dialog .dialog-title .title-content .title-label tr td,
.dialog .dialog-title .title-content .title-label tr td a,
.minimized .dialog-title .title-content .title-label tr td,
.minimized .dialog-title .title-content .title-label tr td a {
	width: 16px;
	height: 16px;
	border: 0;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	background: transparent;
}

.dialog .dialog-title .title-content .title-label span.expend,
.minimized .dialog-title .title-content .title-label span.expend {
	display: block;
	width: 50px;
}

dialog .dialog-title .title-content .title-label tr td.expend,
.minimized .dialog-title .title-content .title-label tr td.expend {
	width: 100%;
}

.dialog .dialog-title .title-content .title-label a.expend,
.minimized .dialog-title .title-content .title-label a.expend {
	text-decoration: none;
}

.dialog .dialog-title .title-content .title-label span.button {
	display: inline-block;
	width: 16px;
	height: 16px !important;
	border: 0 none;
	margin: 2px 0 0 0;
	padding: 0 5px 0 0;
	cursor: pointer;
}

.minimized .dialog-title .title-content .title-label span.button {
	display: inline-block;
	width: 16px;
	height: 16px !important;
	border: 0 none;
	margin: 2px 0 0 0;
	padding: 0 5px 0 0;
	cursor: pointer;
}

/************** TOOL BAR *******************/

div.ToolBarItemSeparator {
	background-color: #fafafa;
	display: inline-block;
}


/******* COMBO BUTTON BAR *********/

.combo-button-bar td > div.separator {
	margin: 0 4px 0 4px;
	height: 14px;
	border-right: solid 1px #eeeeee;
	border-left: solid 1px #424242;
}

/******* COMBO BUTTON *********/

/* combo button in Group menu in page such as object types */

div.dialog-toolbar .combo-button {
	margin: 0 0 0 10px;
}

/* general combo button style */

.combo-button {
	display: inline;
	text-align: left;
}

.combo-button-title {
	margin: 0 8px 0 -8px;
	padding: 0 8px 0 8px;
}

.combo-button.showing .combo-button-title {
	border-radius: 3px;
	color: #00497e;
	background-color: #b1e4f6;
}

.combo-button .title {
	display: inline-block;
	cursor: pointer;
	font-weight: bold;
	margin-right: 4px;
}

.combo-button .fa-angle-down {
	font-size: 8pt;
}

.combo-button .title .title-center {
	display: inline-block;
}

.combo-button .title a .title-center {
	color: #092734;
	margin: 0 0 0 0;
}

.combo-button .button {
	display: inline-block;
	width: 16px;
	height: 14px;
	vertical-align: middle;
}

.combo-button .no-button {
	height: 14px;
	border: 1px solid transparent;
}

.combo-button .menu {
	position: absolute;
	z-index: 100000;
	text-align: left;
	color: black;
	font-size: 12px;
	font-weight: normal;
	box-shadow: 0px 4px 8px 1px rgba(0, 0, 0, 0.3);
}

.combo-button .menu a {
	text-decoration: none;
}

.combo-button .menu .menu-content {
	background: white;
	overflow: hidden;
	min-width: 160px;
	max-width: 315px;
}

.combo-button div.action-item {
	user-select: none;
}

.combo-button div.action-item-selection {
	padding: 6px 12px 6px 12px;
}

.combo-button div.action-item-separator {
	height: 1px;
	background-color: #eeeeee;
}

.combo-button .action-item a {
	color: black;
}

.combo-button .action-description {
	color: #757575;
	font-size: 10px;
}

.combo-button div.action-item-selection.selected .action-description {
	color: #000000; 
}

/*--- action disabled ---*/

.combo-button div.disabled {
	opacity: 0.2;
}

/*-- special case for script links ---*/

.combo-button .menu a.ToolBarItem,
.combo-button .menu a.ToolBarItem:hover {
	padding: 2px;
	border: 0;
	width: inherit;
	height: inherit;
}

/******** Label List *********/

.labelsListCell,
.directGroupContent,
table.valueEdit {
	padding: 1px 0 0 7px;
}

.directGroupContent .vo-label {
	display: block;
	padding: 4px 0;
}

/******** Empty Tables **********/

.value-table th.empty-table,
div.empty-list {
	background-color: #eeeeee;
	padding: 4px 0px 4px 0px;
	text-align: center;
	text-transform: none; 
	color: #424242;
}

div.empty-list {
 	color: #424242;
	font-weight: bold;
	width: 100%;
}

/**************** Admin Page *****************/

.GridColumn {
	vertical-align: top;
	padding: 6px 7px 0 7px;
	width: 20%;
}

td.GridColumn div.dialog-bd {
	height: 80%;
	min-height: 450px;
	background-color: white;
}

td.GridColumn div.dialog-c {
	height: 80%;
	overflow: hidden;
}

/*************** Icon List Pages ***************/


.iconList .dialog .dialog-ft {
 	height: 18px;
 	border: 0;
 	margin: 0 0 0 0;
 	padding: 0 0 0 0;
}

.iconList .dialog .dialog-ft .dialog-c {
 	height: 18px;
 	border: 0;
 	margin: 0 0 0 0;
 	padding: 0 0 0 0;
}

.iconList .dialog .dialog-bd {
	border: 0;
}

.iconList .dialog .dialog-bd .dialog-c {
 	border: 0;
}

/*************** Form page ******************/

div.SingleTabPanel {
	display: block;
	width: 100%;
	overflow: hidden;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	border: 0;
}

div.SingleTabPanelHeader {
	display: block;
	width: 100%;
	background-color: #e0f4fb;
	height: 23px;
	padding: 0 0 0 7px;
	margin: 1px 0 6px 0;
	font-size: 12px;
	cursor: pointer;
	vertical-align: middle;
	color: black;
}

div.SingleTabPanelHeader img.SingleTabPanelArrow {
	width: 16px;
	height: 16px;
	margin: 3px 0 0 4px;
}

div.SingleTabPanelHeader .SingleTabPanelTitle {
	display: inline-block;
	margin: 2px 0 0 7px;
	font-size: 14px;
}

div.SingleTabPanelContent {
	margin: 0px 0px 5px 0px;
	padding: 0 0 0 0;
}

span.dojoComboBoxOptions {
	height: auto;
}


/***************** Exception Page ********************/

div.RootCauseMessage,
div.stackElement,
div.ShowException {
	margin: 0 0 0 15px;
}

/***************** details Tab ********************/
.details {
	padding: 7px 0 0 0;
}

.details .dialog {
	margin: 0 0 0 0;
	border-bottom: 1px solid #fafafa;
}

.details .odd {
	background-color: transparent;
}

.details .even {
	background-color: transparent;
}

.details .dialog .dialog-hd .dialog-c .dialog-title .title-content {
	margin: 2px;
}

.details .dialog .dialog-hd .dialog-c .dialog-title .title-content .title-label .label,
.details .dialog .dialog-hd .dialog-c .dialog-title .title-content .title-label .label a {
	color: black;
}

.details .dialog .dialog-ft {
 	background: transparent;
 	height: 30px;
 	border: 0;
 	margin: 0 0 0 0;
 	padding: 0 0 0 0;
}

.details .dialog .dialog-ft .dialog-c {
 	background: transparent;
 	height: 30px;
 	border: 0;
 	margin: 0 0 0 0;
 	padding: 0 0 0 0;
}

.details .dialog .dialog-bd {
	background: transparent;
	border: 0;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.details .dialog .dialog-bd .dialog-c {
 	background: transparent;
 	border: 0;
 	margin: 0 0 0 0;
 	padding: 0 0 0 0;
}

/*combo button "settings"*/

div.details .dialog-action .combo-button .title {
	text-align: left;
}

div.details .dialog-action .combo-button .title .button {
	height: 14px;
	width: 16px;
}

div.details .dialog-action .combo-button .showing .title .button {
	border-left: solid 1px black;
}

div.details .dialog-action .combo-button .showing .title {
	border: solid 1px black;
}

div.details .dialog-action .combo-button .title {
	color: black;
}

.fieldError .fa-times-circle {
	margin: 0 4px 0 12px;
}

table.fieldError,
table.fieldErrorHandler {
	border-spacing: 0;
}

/* Customization of Tapestry's Palette component */

table.tapestry-palette td.controls {
	text-align: center;
	vertical-align: middle;
	width: 30px;
}

table.tapestry-palette th {
	font-weight: bold;
	font-size: 10px;
	color: #757575;
	text-transform: uppercase;
	text-align: left;
	padding-top: 0px !important;
}

td.available-cell select,
td.selected-cell select {
	background-color: #ffffff;
	background: none;
	min-width: 200px;
	height: auto;
	padding: 0;
}

table.tapestry-palette img {
	width: 24px;
	height: 24px;
}

.datePickerImg {
	height: 24px;
	width: 24px;
	vertical-align: middle;
}

/************* GLOBAL SETTINGS PAGE ***************/

#disclaimerSetting {
	height: 100px;
	overflow-y: auto;
	white-space: pre-wrap;
	width: 800px;
}

/* PagePanel.html */

#page-panel {
	display: flex;
	padding-bottom: 10px;
	color: #0073ae;
}

#page-panel-title {
	font-size: 24px;
	font-weight: bold;
}

#page-panel-title .fa-angle-down {
	font-size: 18px;
}

#page-panel-title .title {
	font-size: 24px;
	padding: 0;
}

#page-panel-sidebar {
	margin-left: auto;
}

#page-panel-add-to-favorite {
	margin-right: 15px;
}

#page-panel-datacheck {
	margin: auto;
}

div#page-panel-info-message {
	display: inline-flex;
}

#page-panel-info-message > span {
	margin-right: 5px;
}

#page-panel-info-message {
	color: #424242;
	font-size: 12px;
}

.page-panel-margin {
	min-width: 24px;
}

.page-panel-child {
	padding-left: 24px;
}

#page-spinner {
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	background-color: rgba(255,255,255,0.7);
}

.modal-dialog {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(178,178,178,0.8);
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 40ms ease-in;
	-moz-transition: opacity 40ms ease-in;
	transition: opacity 40ms ease-in;
	pointer-events: none;
	overflow: scroll;
}

.modal-dialog:target {
	opacity:1;
	pointer-events: auto;
}

.modal-dialog > div {
	width: 400px;
	position: relative;
	margin: 5% auto;
	border-radius: 4px;
	background-color: #ffffff;
}

.modal-dialog .buttons {
	display: flex;
	justify-content: flex-end;
	padding: 12px;
}

.modal-dialog .buttons button {
	margin: 0px 0px 0px 12px;
}

.modal-dialog-content {
	padding: 12px;
}

.modal-dialog-title {
	font-size: 18px;
	padding: 12px;
	border-bottom: 2px solid #eeeeee;
}

.modal-dialog-button {
	display: table-cell;
	vertical-align: middle;
	margin-right: 4px;
	height: 26px;
	padding: 0 16px 0 16px;
	background-color: #0073ae;
	color: #ffffff;
	border-radius: 3px;
	font-weight: bold;
	cursor: pointer;
	border: 2px solid #0073ae;
}

.modal-dialog-button:hover {
	background-color: transparent;
	border: 2px solid #00497e;
	background-color: #00497e;
}

#cancel .modal-dialog-button {
	background-color: transparent;
	border: 2px solid #0073ae;
	color: #0073ae;
}

#cancel .modal-dialog-button:hover {
	background-color: transparent;
	border: 2px solid #00497e;
	color: #00497e;
}

.imgBlock {
	display: block;
	border: 0;
	margin: 5px !important;
}


.imgBlock img {
	padding: 0px 6px 0px 4px;
	vertical-align: middle;
}

a.link-button,
a.link-button:hover,
a.link-button:active {
	margin-right: 4px;
	text-decoration: none;
	color:black;
	cursor:default;
}

.readonly {
	pointer-events: none;
	background-color: #eeeeee;
	color: #757575;
}

.CellContent img {
	margin-right: 4px;
	vertical-align: middle;
}

.CellExpandOpen {
	background-image: url('/images/fa/solid/angle-down_cobalt.svg');
}

.CellExpandClosed {
	background-image: url('/images/fa/solid/angle-right_cobalt.svg');
}

.CellExpandLeaf {
	background-image: url(/script/proteus/widget/templates/images/TreeV3/spacer.gif);
}

.CellExpand {
	width: 18px;
	height: 18px;
	float: left;
	display: inline;
	background-repeat: no-repeat;
}


.CellContent {
	min-height: 15px;
	min-width: 15px;
	margin-left: 18px;
	cursor: default;
	display: block;
	vertical-align:top;
}

label.quickExpand {
	cursor: pointer;
	display: block;
	padding-left: 10px;
	color: #0073ae;
	font-weight: bold;
	text-transform: none;
}

span.quickExpand {
	margin-left: 30px !important;
	display: none;
}

#configHolder {
	padding-top: 10px;
}

#configContent,
.FileContent {
	background-color: #eeeeee;
	padding: 10px;
}

.multiItemsEditorList_tr_selected {
	background-color: #b1e4f6;
}

.listTable {
	border: none;
	border-spacing: 2px;
	border-collapse: collapse;
}

#bcAddItem,
#bcRemoveItem,
#bcMoveUpItem,
#bcMoveDownItem {
	margin-right: 4px;
	padding-top: 2px;
	padding-bottom: 2px;
	width: 80px;
}

div.scroll {
	display: block;
	height: 130px;
	width: 180px;
	overflow-x: auto;
	overflow-y: auto;
	border: 1px solid #757575;
	background-color: #ffffff;
	padding: 0px;
}

/* Workaround to hide dojo's support for iframe history on Edge */
#djhistory {
	width: 0px !important;
	height: 0px !important;
}

#slot0 #page-panel, #slot0 {
	color: #00497e;
}

#slot0 .combo-button {
	position: relative;
}

#slot0 .combo-button .menu {
	left: 0;
}

#slot0 .combo-button-icon {
	background-color: #00497e;
	margin-right: 4px;
}

#slot0 .combo-button.showing .combo-button-icon {
	background-color: #092734;
}

#slot0 .detailsPane {
	color: #000000;
}

#slot0 .modal-dialog-content table.form-input {
	width: 100%;
}

#slot0 .form-input th {
	max-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#slot0 .buttons {
	display: flex;
	justify-content: flex-end;
	margin: 12px 0 0 0;
	padding: 0;
}

#slot0 .buttons *,
.widget-header-button {
	margin: 0 0 0 12px;
}

.widget-panel {
	width: 100%;
	table-layout: fixed;
	margin: 14px 10px 0 0;
}

.widget-panel td {
	vertical-align: top;
	padding: 0 10px 0 0;
}

.widget-frame {
	background-color: #ffffff;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
	color: #000000;
	padding: 12px;
	margin-bottom: 10px;
}

.widget-frame .detailsPane table {
	table-layout: fixed;
	width: 80%;
}

.widget-frame table.value-table {
	table-layout: fixed;
	width: 100%;
}

.widget-frame .value-table tr:hover:nth-child(even) {
	background-color: #ffffff;
}

.widget-frame .value-table tr:hover:nth-child(odd) {
	background-color: #eeeeee;
}

.widget-frame input[type="button"],
.widget-frame input[type="submit"] {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.widget-header {
	margin-bottom: 8px;
	font-size: 16px;
	color: #757575;
	cursor: move;
	cursor: grab;
}

.widget-header-button,
.widget-frame .value-table a {
	cursor: pointer;
	color: #0073ae;
}

.widget-title {
    width: calc(100% - 50px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
}

.widget-content {
	width: 100%;
}

.widget-content td {
	padding: 2px 1px 2px 0px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
