
html {
  scrollbar-color: var(--background-muted) var(--background-extra-muted);
}

#viewsDD {
	width: auto;
}

#viewsDD ul {
	max-width: unset;
	min-width: unset;
	column-count: 2;
}

#topbit {
	box-shadow: var(--border-color) 0px 2px 5px;
    border-bottom: 1px solid var(--border-color);
}

.alert-info {
	color: var(--notice-text);
    background-color: var(--notice);
    border-color: var(--border-color);
}

.alert-info a {
	color: var(--notice-text) !important;
}

.dropdownJS .dropdown-menuJS .dropdown-dividerJS {
    border-top: solid 1px var(--text-muted);
}

.dropdownJS.dropdown-tipJS:after {
    border-bottom: 6px solid var(--background-muted);
}

.dropdown-menuJS {
	background: var(--background-muted) !important;
	color: var(--text) !important;
}

.dropdownJS .dropdown-menuJS LI {
	font-size: 1em;
	padding: 1px;
}

.dropdownJS .dropdown-menuJS LI > A:hover, .dropdownJS .dropdown-menuJS LABEL:hover {
    background-color: var(--highlight);
    color: var(--fore-highlight);
    cursor: pointer;
}

.dropdownJS .dropdown-menuJS LI > A, .dropdownJS .dropdown-menuJS LABEL {
    color: var(--text);
}

input:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px var(--accent);
    transition: box-shadow 0.25s;
}

input {
	background-color: var(--background-extra-muted);
}

input::placeholder {
  color: var(--text-muted);
}

textarea::placeholder {
  color: var(--text-muted);
}

textarea:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px var(--accent);
    transition: box-shadow 0.25s;
}

select:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px var(--accent);
    transition: box-shadow 0.25s;
}

.selContainer > input:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px var(--accent);
    transition: box-shadow 0.25s;
}

.subFormHead {
	background-color: var(--highlight);
	color: var(--fore-highlight);
}

hr {
	border-top: 1px solid var(--border-color) !important;
}

.rowIcon {
	padding: 3px;
	color: var(--text);
}

.faIcon {
	min-width: 1.3em;
    padding: 3px;
    border-radius: 5px;
    text-align: center;
}

.rtIcon .faIcon {
	min-width: 0px;
	padding: 8px;
	padding-left: 0px;
	/* text-shadow: -1px -1px 0 #ffffff1f, 1px -1px 0 #ffffff1f, -1px 1px 0 #ffffff1f, 1px 1px 0 #ffffff1f; */
}

.rtIcon {
	padding-right: 5px;
}

a:hover .faIcon, .navMenuItem:hover>td>.faIcon {
    /* filter: saturate(1.3) brightness(1.2); */
    /* color: var(--fore-highlight) !important; */
}

.actionButton .faIcon {
	min-width: 0px;
}

/* COLORS */
:root {
	--orange-text: #e69500;
	--blue-text: rgb(116, 157, 231);
	--red-text: #d75252;
	--green-text: #43720c;
	--black-text: #505050;
	--gray-text: #f0f0f0;
	--yellow-text: #efd72d;


	--orange: #fdae1c;
	--blue: #3d598b;
	--red: #d75252;
	--green: #43720c;
	--black: #505050;
	--gray: #f0f0f0;
	--yellow: #efd72d;

	--fore-orange: #fff7ec;
	--fore-blue: #e4e2ff;
	--fore-red: #ffd9d9;
	--fore-green: #acd3b2;
	--fore-black: white;
	--fore-yellow: #fde74b;
	
}

button.actionButton {
}

.linkDropdownItem {
    padding-top: 3px;
    padding-bottom: 3px;
}

.actionIcon {
	display: inline-block; 
	width: 16px; 
	line-height: 16px; 
	height:16px;
	opacity: 0.8;
	position: relative;
	top: 0px;
	overflow: hidden;
	padding: 0px !important;
	margin: 0px !important;
}

.logoReg {
	height: 65px;
	margin-top: 5px; 
	transition: height 0.25s;
}

.logoSmall {
	height: 40px;
	margin-top: 3px;
	transition: height 0.25s;
}

.logoMob {
	height: 40px;
	margin-top: 3px;
	transition: height 0.25s;
}

.axMoreMenu ul {
	column-count: 2;
}

.actpopupclose {
  animation: popupclose 0.2s forwards;
}

@keyframes popupclose {
  0%{
    transform: scale(1);
    opacity: 1;
  }
  50%{
    transform: scale(0.9);
    opacity: 0.3;
  }
  100%{
    transform: scale(0.8);
    opacity: 0;
    display: none;
  }
}

.actpopup {
  animation: popup 0.2s forwards;
}

@keyframes popup {
  0%{
    opacity: 0;
    transform: scale(0.8);
  }
  50%{
    opacity: 1;
    transform: scale(0.95);
  }
  100%{
    transform: scale(1);
  }
}

.actpopupcloseleft {
  animation: popupcloseleft 0.15s forwards;
}

@keyframes popupcloseleft {
  0%{
    margin-left: 0px;
    margin-right: 0px;
    transform: scale(1);
    opacity: 1;
  }
  50%{
    transform: scale(0.9);
    opacity: 0.3;
  }
  100%{
    margin-left: -50px;
	margin-right: 50px;
    transform: scale(0.8);
    opacity: 0;
    display: none;
  }
}

.actpopupleft {
  animation: popupleft 0.15s forwards;
}

@keyframes popupleft {
  0%{
    margin-left: -50px;
    margin-right: 50px;
    opacity: 0;
    transform: scale(0.8);
  }
  50%{
    opacity: 1;
    transform: scale(0.95);
  }
  100%{
    margin-left: 0px;
    margin-right: 0px;
    transform: scale(1);
  }
}


#pendulumCont {
width: 200px;
    position: relative;
    display: inline-flex;
    height: 2.5em;
    align-items: center;
    margin-right: 10px;
    margin-left: 0px;
}

#pendPerc {
	width: 0px;
	position: relative;
	height: 10px;
	left: 0px;
	background-color: var(--background-muted);
	opacity: 0.8;
	transition: width 2s;
}

#waitBar 
{
 	padding-top: 20px; 
}

#waitBar #userStatus {
	opacity: 0.8; font-size: 0.8em; color: var(--text-muted); font-weight: normal; display: inline;
}

#pendulum {
    width: 20px;
    height: 5px;
    background-color: var(--primary);
	animation: pendBackForth 1s infinite linear;
    position: absolute;
    border-radius: 2px;
    transform-origin: center center;
}

@keyframes pendBackForth {
    0% {
        left: calc(100% - 20px);
        transform: scaleY(0.7) scaleX(0.7);
        opacity: 0.5;
        filter: blur(1px);
    }
    25% {
        left: calc(50% - 20px);
        transform: scaleY(0.2) scaleX(0.2);
        opacity: 0.3;
        filter: blur(1px);
    }
    50% {
        left: 0px;
        transform: scaleY(0.7) scaleX(0.7);
        opacity: 0.5;
        filter: blur(0px);
    }
    75% {
        left: calc(50% - 20px);
        transform: scaleY(1) scaleX(1);
        opacity: 1;
        filter: blur(0px);
    }
    100% {
        left: calc(100% - 20px);
        transform: scaleY(0.7) scaleX(0.7);
        opacity: 0.5;
        filter: blur(1px);
    }
}

.cover {
	animation: fadein 0.1s forwards;
}

.coverOut {
	animation: fadeout 0.3s forwards;
}

@keyframes fadein {
  0% {
  	opacity: 0;
  }
  100% { opacity: 1; }
}

@keyframes fadeout {
  0% {
  	opacity: 1;
  }
  100% { opacity: 0; }
}


.trialText {
    background-color: orange;
    padding: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-left: 1px solid black;
    border-bottom: 1px solid black;
    border-right: 1px solid black;
    width: auto;
    position: relative;
    display: inline-block;
    padding-left: 15px;
    padding-right: 15px;
    box-shadow: 4px 4px 4px silver;
    opacity: 0.5;
}

.trialText:hover {
	opacity: 1;
}

.trialText a {
	text-decoration: none;
	border-bottom: none !important;
	cursor: pointer;
}

.trialText a:hover {
	text-decoration: none;
	border-bottom: none !important;
}

.trialText a:visited {
	text-decoration: none;
	border-bottom: none !important;
}

.trialNotify {
    position: absolute;
    z-index: 9999999;
    top: 0px;
    width: 100%;
    height: 0px;
    text-align: center;	
    font-size: 0.8em;
}

.formCloseButton {
	cursor: pointer; 
	font-size: 1.2em; 
	padding: 4px; 
	z-index: 9999; 
	background-color: #e0dddd; 
	color: #a09b9b; 
	position: absolute; 
	right: 10px; 
	top: 10px; 
	opacity: 0.9;
}

.rowTitlePrefix {
    float: left; 
    display: flex; 
    align-items: center;
    font-size: 1.7em; 
    font-weight: normal;
}

.rowTitlePrefix > a {
	color: var(--list-header-fore) !important;
    font-size: 0.5em;
    background-color: var(--list-header-background);
    margin-right: 0.5em;
    padding: 0.5em;
    border-radius: 0.4em;
    vertical-align: middle;
    line-height: 2em;
}

.rowTitlePrefix > span {
    line-height: 2em;
    /* opacity: 0.8; */
}

.formFooterButton {
	float: right;
}

#mainbit {
    /* padding-top: calc(1.6em + 120px); */
}

.switchRec {
    opacity: 0.2;
    margin-left: 10px;
    margin-right: 5px;
    display: inline-block;
    cursor: pointer;
    font-size: 0.6em;
    vertical-align: middle;
}

.formSubmitButton {
	position: sticky;
	bottom: 10px;
	/* background-color: #ffffff87; */
	/* box-shadow: 10px 10px 20px 1px white; */
	z-index: 99999;
}

.stickyTableNav {
    position: sticky;
    bottom: 0px;
    /* background-color: #ffffff87;
	box-shadow: 10px 10px 20px 1px white;    */
}

#smbutton {
	width: 5.5em; 
	font-size: 1.3em; 
	margin-right: 0px; 
	font-weight: normal;
    padding-top: 11px;
    padding-bottom: 10px;
    cursor: pointer;
}

.grayOut {
	pointer-events: none;
    opacity: 0.3;
    background-color: var(--background-muted);
}

input[disabled=disabled] {
	opacity: 0.15;
}	

.labelDisabled {
	opacity: 0.15;
}	

.dropdownButton[disabled=disabled] {
	opacity: 0.15;
}	


.inlineActions {
	padding-left: 5px;
}

.inlineActions:hover {
	background-color: #d0d0d0;
}

blockquote{border-left: 7px solid #fb8d3f !important;text-align: justify;background: #fff;
display:block;margin: 0 0 20px;padding: 15px 20px 15px 45px;position: relative; color: #667;
border-right: 2px solid #c76c0c;box-shadow: 2px 2px 15px #ccc;-webkit-box-shadow: 2px 2px 15px #ccc;-moz-box-shadow: 2px 2px 15px #ccc;}
blockquote a{cursor: pointer;color: #c76c0c;text-decoration: none;background: #eee;padding: 0 3px;}
blockquote a:hover{color: #555;}

.advHide {
	font-weight: normal;
	color: black;
	opacity: 0.3;
	cursor: pointer;
}


.axMore:hover i {
	color: black;
	border-radius: 10px;
}

.axMore:hover {
	color: black;
	border-radius: 10px;
}

.axMore {
	width: 1.2em;
	height: 1.2em;
	border: 1px solid white;
	border-radius: 10px;
	background-color: #f0f0f0;
}
.axMore i {
	color: #a0a0a0;
	font-size: 0.9em;
}

.axMoreMenu ul li a {
	font-weight: normal;
}

form .editCommand {
	display: none;
}

.editCommand {
    display: flex;
    align-items: center;
    font-size: 0.8em;
    margin-right: 15px;
    color: var(--list-header-background);
}

.editCommand > a {
	color: inherit;
}

.editCommand > a:hover {
	color: var(--text);
}

.editCommands {
    font-size: 1.1em;
    opacity: 0.8;
    width: 1%;
}

.editCommands a div i {
	opacity: 0.5;
	font-size: 1.2em;
}

.recDetDropdown {
	font-size: 1.2em;
}

.editCommands a div i:hover {
	opacity: 1;
}

.recDetDropdown:hover {
	color: var(--text) !important;
}

.inlineExpand:focus {
	border: none !important;
	outline: none !important;
}

.inlineExpand {
	color: var(--text) important!;
	font-size: 1.1em;
	
}

.inlineExpand:hover {
	color: var(--link);
}

.qaButton {
    display: inline-block;
    padding: 0.3em;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-top: 0.2em;
    top: -0.1em;
    height: 1em;
    position: relative;
    vertical-align: middle;
    border-radius: 0.3em;
	cursor: pointer;
 }
 
 .qaButton i {
	padding: 5px;
    border: 1px solid var(--border-color);
    border-radius: 5px; 
  	padding-right: 10px;
    padding-left: 10px;
    color: var(--text) !important;
	background-color: var(--background-muted);
 }


.layoutTableLink {
	opacity: 0.8;
}

.qaButton i:hover {
	border: 1px solid var(--border-color);
	background-color: var(--highlight);
	color: var(--fore-highlight) !important;
	text-decoration: none;
}

.expandEmbed {
	letter-spacing: 1px;
	color: #404040 important!;
}

.qeAdd {
	background-color: #12444f;
	opacity: 0.85;
	display: none;
}

.digSigInfo {
	display: block;
	padding: 10px;
	background-color: green;
	color: white;
	font-weight: bold;
	border-radius: 5px;	
}

.digSigVerify {
	display: inline-block;
	padding: 5px;
	background-color: #77AD76;
	border-radius: 5px;
	margin-left: 10px;
}

.screenList {
	margin-left:5px; 
	margin-top:20px; 
	border-radius: 5px; 
	padding: 2px; 
	text-align:left; 
	font-weight:normal;
	border-collapse: separate;
	border-spacing: 10px;
	overflow: hidden;
	white-space: nowrap;
	width: 1000px;
}

.screenOption {
	color: var(--text);
	margin-right: 20px;
	opacity: 0.5;
	height: 1.3em;
}

.screenOption a {
	color: var(--text);
	text-decoration: none;
}

.screenOption a:hover {
	color: var(--text);
	text-decoration: none;
	border-bottom: 1px solid var(--text-muted);
}

.screenOption:hover {
	border-bottom: dotted var(--border-color) 1px;
}

.screenOptionSelected {
	border-bottom: solid var(--accent) 1px;
}

.screenOptionSelected:hover {
	background-color: var(--background-muted);
}

.helpIcon:hover {
	color: var(--text-muted);
	cursor: pointer;
}

.helpIcon {
	color: var(--background-muted);
	padding-left: 15px;
	font-size: 0.8em;
}

.globalHelpIcon:hover {
	color: var(--text);
	cursor: pointer;
}

.globalHelpIcon {
	color: var(--text-muted);
	display:  inline-block;  
	font-size: 1.9em; 
	margin-right: 5px; 
	vertical-align:  middle;
}

.helpText {
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: normal;
	font-size: 1.1em;
	background-color: #f0f0f0;
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 8px;
	margin-bottom: 8px;
	letter-spacing: 1px;
	line-height: 1.3em;
	width: 100%;
	display: inline-block;
	border: 1px solid silver;
	border-radius: 5px;
	color: #031052;
}

#helpClose {
	display: inline-block;
	text-align: right;
	float: right;
	margin-right: 7px;
	font-size: 1.2em;
	cursor: pointer;
}
#helpNext {
	display: inline-block;
	text-align: right;
	float: right;
	margin-right: 7px;
	font-size: 1.2em;
	cursor: pointer;
}
#helpPrev {
	display: inline-block;
	text-align: right;
	float: right;
	font-size: 1.2em;
	margin-right: 7px;
	cursor: pointer;
}
#helpPrev:hover {
	cursor: pointer;
}
#helpNext:hover {
	cursor: pointer;
}

.helpText h1 {
	font-size: 1.1em;
	margin-top: 0px;
}

.cover {
	background-color: rgba(0,0,0,0.2); 
}

.switchBox {
	background-image: none;
	background-color: var(--highlight-light);
	cursor: pointer;
	border-radius: 5px;
	filter: none;
	/* top: -2px; */
	transition: width 0.25s;
	
    border: none;
	padding: 0.2em;
    margin-bottom: 0.4em;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    color: var(--text) !important;
}

.switch_1 {
	transition: width 0.2s;
}
.switch_2 {
	transition: width 0.2s;
}

.linkDropdown {

	display:inline; 
	margin-left: 2px; 
	top:0px; 
	left:0px; 
	box-shadow:  rgb(163 161 161) 1px 1px 4px 1px;
	padding-top: -2px; 
	z-index: 99999; 
	color:white; 
	background-color:white; 
	position: absolute; 

	border: none !important;
    margin-top: -2px !important;
    
	max-height: unset !important;
    overflow: hidden;    
    animation: linkSlidedown 0.5s forwards;
}

@keyframes linkSlidedown {
	0% {
	    opacity: 0;
		max-height: 0px;
	}
	50% {
		opacity: 1;
	}
	100% {
		max-height: 50em;
	}
}

.switchBox:hover {
	background-image: none;
	cursor: pointer;
	background-color: var(--background-muted);
}

.isOn {
	background-image: none;
	background-color: var(--highlight-light);
}

.switchBox .switch_1 {
	background-color: var(--highlight);
}

.switchBox .switch_2 {
	background-color: var(--background);
}

.fieldGroup
{
}

.fieldGroup .title
{
	
	color: var(--text-muted);
	
	display: inline-block; 
	margin-top:8px; 
	margin-left: 1px; 
	font-size:1.1em; 
	font-weight: normal;
	letter-spacing: 1px;
}

.formHeader {
	padding-left: 5px;
}


.editIcon 
{
	font-size: 1.2em;
	font-weight: normal;
}

.fieldGroup .title:hover
{
	color: var(--text);
}

.editLink:hover
{
	color: var(--text);
	text-decoration: none;
}

.editLink 
{
	font-size: 1.2em;
	color: gray;
}

.gotoMore :hover
{
	background-color: Silver;
	color: Black;
}

#apptitle {
	color: var(--banner-text);
	font-weight: bold;
}

.actionButton 
{
    padding: 0.7em;
    margin-top: 0.4em;
    font-weight: normal;
    background-color: var(--background) !important;
    background-image: none;
	border: 2px solid var(--primary);
	border-radius: 40px;
    font-size: 1.04em;
    outline: none;
    transition: background-color 0.2s;
    color: var(--text) !important;
    transition: border-color 0.2s;
    margin-right: 10px;
    /* box-shadow: 0px 0px 2px #dd9d29; */
}

.actionButton:hover
{
cursor: pointer;
    border: 2px solid var(--primary);
    border-radius: 40px;
    font-weight: normal;
    background-color: var(--important-background) !important;
    background-image: none;
    text-shadow: none;
    box-shadow: 0 0 8px var(--primary);
    color: var(--important-background-text) !important;
    transition: box-shadow 500ms, color 50ms, background-color 50ms;
}

.createFindLinks a {
	color: var(--text);
}

.qeFields input {
	margin-left: 10px;	
}

.qeFields select {
	margin-left: 10px;	
}

.appTab {
	font-size: 1.0em;
	font-weight: normal;
	margin-left: 4px;
	margin-right: 2px;
	padding-top: 10px;
	padding-bottom: 10px;
	cursor: pointer;
	letter-spacing: -0.05em;
	text-decoration: none;
	color: inherit !important;
}

.appTab:hover {
	text-decoration: none;
}

.workflowToolbar
{
	background-color: #eeeef1;
	color: #21212a;
}

.workflowToolbar a
{
	color: black;
}

.workflowToolbar td:hover
{
	color: black;
	background-color: #b8b8c7;
}

.workflowToolbar td
{
	color: #b8b8c7;
}

.orgChartItem .title
{
	cursor: pointer;
	color: black;
}

.orgChartItem td
{
	color: #21212a;
}

.orgChartItem 
{
	background-image: -webkit-gradient(linear,left 0,left 100%,from( #dcdce3),to(#eeeef1));
	background-image: -webkit-linear-gradient(top,#dcdce3 0,#eeeef1 100%);
	background-image: -moz-linear-gradient(top,#dcdce3 0,#eeeef1 100%);
	background-image: linear-gradient(to bottom,#dcdce3 0,#eeeef1 100%);
	background-repeat: repeat-x;	
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dcdce3',endColorstr='#eeeef1',GradientType=0);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	
	color: #21212a;
	border: solid 2px #b8b8c7;
	border-radius: 5px;
}

#quicklinksText a
{
	color: var(--banner-text);
}

#quicklinksText a:hover
{
	text-decoration:underline;
}

.infopop {
	display: inline-block;
	vertical-align: middle;
	padding: 10px;
	background-color: var(--notice);
	border: 1px solid var(--notice-text-muted);
	color: var(--notice-text);
	font-size: 1.1em;
	margin-top: 20px;
	margin-bottom: 7px;
	border-radius: 3px;
	width: 99%;
}

.infopop a {
	font-weight: bold;
	color: inherit !important;
}

.infopop a:hover {
	font-weight: bold;
	color: inherit !important;
	text-decoration: underline;
}

.infopoptext {
	display: block;
	float: left;
	margin-left: 0.6em;
	width: 90%;
	vertical-align: middle;
}

.infopopimage {
	display: block;
	float: left;
}

.errorMessage 
{
	background-color: var(--error);	
	border: none;
	color: var(--error-text);
	padding: 10px;
	font-weight: normal
}

.warnMessage 
{
	background-color: var(--warning);
	border: none;
	color: var(--warning-text);
	padding: 10px;
	font-weight: normal
}

.errorMessage a {
	color: var(--link);
}

.warnMessage a {
	color: var(--link);
}

#warnCheck 
{
	display: none;
}

.space {
	opacity: 0.8;
	font-size: 1.2em;
}

#warnButton
{
	font-size: 0.8em;
    border: solid 1px var(--border-color);
    background-color: var(--primary);
    color: var(--primary-text);
    margin-left: 10px;
    color: var(--primary-text) !important;
    cursor: pointer;
}

.buttonTabTD:hover div {
	color: var(--text);
}

.dropdownButton {
	height: 1.4em;
	vertical-align: middle;
	background-color: #eeeef1;
	display: inline-block;
	width: 8%;
	overflow: hidden;
	border: solid 1px gray;
	font-size: 1.1em;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	opacity: 0.5;
	box-sizing: unset; /* important because bootstrap messes up layout */

    top: 3px;
    height: 1.15em;
    padding: 7px;
    padding-left: 2px;
    padding-right: 2px;

}

.dropdownButton:after 
{
	content: "...";
}

.dropdownButton:hover {
	background-color: #b8b8c7;
}

.dropdownButton 
{
 }

input:disabled
{
	background-color:var(--background-muted);
}

/* .loginButton:hover
{
	background-color: #58728e;
}

.loginButton
{
	background-image: none;
	background-color: #2A5786;
	background-repeat: repeat-x;
	border: 2px solid #456596;
	color: white !important;
	-webkit-font-smoothing: antialiased;
	border-radius: 5px;
	
	padding-left: 18px;
	padding-right: 18px;
	padding-top: 7px;
	padding-bottom: 7px;

	font-weight: bold !important;
} 

.loginTable input:focus
{
	outline: none;
	box-shadow: 0 0 0 2px #38ab3840;
} */


input[type="submit"]:hover
{
	background-color: var(--form-submit-hover);
	background-repeat: repeat-x;
	border: 2px solid var(--form-submit);
	color: var(--form-submit-text) !important;
	-webkit-font-smoothing: antialiased;
	
	padding-left: 18px;
	padding-right: 18px;
	padding-top: 7px;
	padding-bottom: 7px;

	font-weight: bold !important;

}

input[type="submit"]
{
	background-color: var(--form-submit);
	background-repeat: repeat-x;
	border: 2px solid var(--form-submit-border);
	border-radius: 5px;
	color: var(--form-submit-text) !important;
	-webkit-font-smoothing: antialiased;
	
	padding-left: 18px;
	padding-right: 18px;
	padding-top: 7px;
	padding-bottom: 7px;

	font-weight: bold !important;

}

input[type="submit"]:disabled
{
	background-color: silver;
	background-repeat: repeat-x;
	border: 2px solid gray;
	color: white !important;
	-webkit-font-smoothing: antialiased;
	border-radius: 5px;

	font-weight: bold !important;
    opacity: 0.2;
}

.menuDropdown:hover {
	background-color: var(--background-muted);
	color: var(--text);
}

.menuDropdown {
	padding: 0.5em;
	background-color: var(--background-extra-muted);
	font-weight: normal;
	margin-left: 0.4em;
	display: inline-block;
	border: solid 1px var(--border-color);
	border-radius: 0.4em;
	cursor: pointer;
}



button {
	background-color: var(--highlight);
	
/*	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeeef1", endColorstr="#dcdce3");
	background-image: -khtml-gradient(linear, left top, left bottom, from(#eeeef1), to(#dcdce3));
	background-image: -moz-linear-gradient(top, #eeeef1, #dcdce3);
	background-image: -ms-linear-gradient(top, #eeeef1, #dcdce3);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeef1), color-stop(100%, #dcdce3));
	background-image: -webkit-linear-gradient(top, #eeeef1, #dcdce3);
	background-image: -o-linear-gradient(top, #eeeef1, #dcdce3);
	background-image: linear-gradient(#eeeef1, #dcdce3); */
	border-color: var(--border-color);
	color: var(--fore-highlight) !important;
	-webkit-font-smoothing: antialiased; 
	 /* text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.23); */
	-webkit-font-smoothing: antialiased; 
	border-radius: 5px;
	
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 5px;
	padding-bottom: 5px;

	font-weight: normal;
}

button:hover {
	background-color: var(--highlight-light);
	/* background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b8b8c7", endColorstr="#b8b8c7");
	background-image: -khtml-gradient(linear, left top, left bottom, from(#b8b8c7), to(#b8b8c7));
	background-image: -moz-linear-gradient(top, #b8b8c7, #b8b8c7);
	background-image: -ms-linear-gradient(top, #b8b8c7, #b8b8c7);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b8b8c7), color-stop(100%, #b8b8c7));
	background-image: -webkit-linear-gradient(top, #b8b8c7, #b8b8c7);
	background-image: -o-linear-gradient(top, #b8b8c7, #b8b8c7);
	background-image: linear-gradient(#b8b8c7, #b8b8c7); 
	border-color: #eeeef1 #eeeef1 #b8b8c7; */
	color: var(--text) !important;
	/* text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.33); */
	-webkit-font-smoothing: antialiased;
	border-radius: 5px;
	
	font-weight: normal;
}

.cancelButton:hover {
	border: 2px solid var(--border-color);
	background-color: var(--background-muted);
	color: var(--text) !important;
	opacity: 1;
}

.cancelButton
{
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 11px;
    padding-bottom: 10px;
    margin-top: 0px;
	margin-right: 10px;
	font-weight: normal;
	background-color: var(--background-muted);
	border: 2px solid var(--border-color);
	color: var(--text) !important;
	font-size: 1.3em;
	outline: none;
	opacity: 0.4;
	border-radius: 5px;
	cursor: pointer;
}



.tutorialTable {
	border-radius: 10px; border: 1px solid #FFE46D; box-shadow: 8px 8px 5px #f0f0f0; width: 80%; font-weight: normal; font-size:1.0em; background-color:#FFFBDE; padding: 10px; border-spacing: 5px 5px;
	letter-spacing: 1px;
	margin-left: 10px;
	margin-bottom: 20px;
	margin-top: 7px;
}

.tutorialTable .mainTitle {
	color: #337ab7;
}

.tutorialTable .tutorialTitle1 {
	padding: 2px; font-weight:normal; padding: 3px; border-bottom: 1px none black; font-weight:normal; font-size: 1.2em;
	color: #101010;
}

.tutorialTable .quitLink {
	font-size: 0.7em;
	color: gray;
	
}

.tutorialTable .description {
	font-weight: normal; 
}

.tutorialTable .step {
	padding-top: 10px;
}

.tutorialTable .stepTitle {
	color: #101010;
}

.tutorialTable .stepDescription {
	font-weight:normal;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 40px;
	line-height: 1.4em;
	letter-spacing: 0.05em;
}

.tutorialTable .fieldName {
	font-weight: bold; 
	text-decoration: none;
	margin-left: 10px;	
}

.tutorialTable .tasks {
	/* padding-top: 15px; */
	padding-left: 15px;
	font-size: 1.1em;
	font-weight: bold;
}

.tutorialTable .taskLink {
	list-style-type: none;
}

.tutorialTable .relatedTuts {
	font-size: 0.8em; font-weight: normal; padding-left: 0px;
}	

.tutorialTable .relatedLink {
	color:black; font-weight:bold;
}

.tutorialTable .formFill {
	margin-top: 5px;
	margin-bottom: 0px;
}

.tutorialTable .tutorialArrow {
	color: #135792;
	cursor: pointer;
}
.tutorialTable .tutorialArrow:hover {
	text-decoration: underline;
}

.homeTitle {
	border-bottom: 1px dotted gray;
}

.acCust h2 {
	font-size: 1.2em;
	width: 100%;
	/* background-color: #d0d0d0; */
	border-top: 1px dotted #d0d0d0;
	color: #303030;
	padding: 6px;
	font-weight: normal;
}

.acCust ul {
	margin: 0px;	
	padding: 0px;
}

.acCust li {
	padding: 8px;
	background-color: #efc79d;
	margin: 5px;
	font-weight: none;
	font-size: 0.9em;
	border-radius: 4px;
	list-style-type: none;
	display: inline-block;
	white-space: nowrap;
}

.acCust li:hover {
	padding: 8px;
	background-color: #FDB05F;
	margin: 5px;
	font-weight: none;
	font-size: 0.9em;
	border-radius: 4px;
	list-style-type: none;
	display: inline-block;
}

.acCust a:hover {
	text-decoration: none;
}

.acCust i {
	opacity: 0.6;
	padding-right: 5px;
	padding-left: 5px;
}

.ssoLogin:hover {
	background-color: var(--background-muted);
	cursor: pointer;
}

.ssoLogin {
    display: inline-flex;
    vertical-align: middle;
    align-items: center;	
    border: 1px solid var(--border-color);
	background-color: var(--background-extra-muted);
    padding: 6px;
}

.ssoIcon {
	display: inline-block;
    margin: 3px;
    margin-right: 10px;
    font-weight: bold;	
}

.ssoLogin img {
	width: 1.6em;
}

.ssoText {
    display: inline-block;
    font-weight: bold;
    padding-right: 3px;
}

/* New Header Styles */


.autoexpandTabs {
    padding-top: 1em;
}

.formHeader .switchRec {
	display: none;
}

.formHeader .rowTitlePrefix a {
	display: none;
}

#inlineact {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#inlineact .formHeader {
	color: var(--list-header-fore);
}

#inlineact .formHeaderColor {
    background-color: var(--list-header-background);
    visibility: visible !important;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#inlineact .formCloseButton {
   background-color: transparent;
   right:15px;
  color: var(--list-header-fore);
}

#inlineact .formCloseButton:hover {
   background-color: var(--highlight);
  color: var(--fore-highlight);
}

body {
	background-color: var(--background);
	color: var(--text);
}

.scwHead {
	color: black; /* calendar doesn't support dark mode, so force this */
    background-color: lightgray;
}
