﻿/* ==========  General  ========== */

*{
	font-family: 'Ubuntu', serif;
    box-sizing: border-box;
}

body {
    background-color: #b4b4b6;
    background-image: url("../images/MainBG.png");
    /*background-repeat: no-repeat;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin: 0;
    padding: 0;
    background-attachment: fixed;
}

label {
    cursor: pointer;
    /*background: white;*/
    /*padding: 5px 10px;*/
    border-radius: 5px;
    border: none;
    background-color: transparent;
    padding: 5px;
    color: #004795;
    font-weight: bold;
    font-size: 1em;
}

/* ==========  Header  ========== */

#HeaderContainer, #header-container {
    width: 100%;
    min-height: 120px;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 1);
}  
#header-pic img { max-height:80px; margin-top:10px; }
#header-user {
	color: #004795;
	margin-top: 25px;
    margin-bottom: 15px;
	margin-right: 25px;
	text-align: right;
	font-size: 1em;
	padding:4px;
	border-radius:3px;
}
#header-user > div {
    display: inline-block;
    text-align: center;
    margin-left: auto;
}
#header-title-container {
    padding-top: 15px;
    flex-grow: 1;
}
#header-title{
	font-size:2em;
	color:#004795;
	text-align:center;
	text-shadow:2px 2px 2px gray;
	margin: 0px auto;		
}
@media (max-width: 960px) {
	#header-pic img { margin-top:60px; }
}
@media (max-width: 790px) {
    #header-pic img { display:none; }
    #header-user { font-size:.7em; }
}

/* ==========  Naviation Bar  ========== */

#nav-main-container, .nav-mobile {
	text-align:center;
	min-width:1000px;
	border-right: 1px solid #000000;
	z-index:1000;
	width:99.9%;
	margin: 0 auto; left:0px; right:0px;
}

#nav-main {
	position:relative;
	border: 1px solid #000000;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#004795+55,001e5b+100 */
    background: #004795; /* Old browsers */
    background: -moz-linear-gradient(top,  #004795 55%, #001e5b 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #004795 55%,#001e5b 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #004795 55%,#001e5b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#004795', endColorstr='#001e5b',GradientType=0 ); /* IE6-9 */
	height:42px;
	padding:0;
	font-size:12px;
}
#nav-main ul, #nav-main ul ul { list-style:none; padding:0; margin:0; }
#nav-main ul {
	clear:left;
	position:relative;
	right:50%;
	height: 100%;
	float:right;
	text-align:center;
	/*font-family: 'Cinzel', serif;*/
	text-transform: uppercase;
	font-weight: bold;
}

/* -----  Naviation Item  ----- */
#nav-main ul button { text-transform: uppercase; font-weight: bold; }
.firstMenu { height: 100%; }
#nav-main ul li {
	border-right: 2px solid #000000;
	position:relative;
	left:50%;
	float:left;
	height: 100%;
	padding:0;
	margin:0
}
#nav-main ul li:last-child { border:none; }	
#nav-main ul li a, #nav-main ul li button {
	display: flex;
    align-items: center;
	color: #fff;
	text-decoration: none;
	padding: 0px 8px;
    height: 100%;
}
#nav-main ul li a:hover, #nav-main ul li button:hover {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0d6825+0,77bb26+100 */
    background: #0d6825; /* Old browsers */
    background: -moz-linear-gradient(top,  #0d6825 0%, #77bb26 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #0d6825 0%,#77bb26 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #0d6825 0%,#77bb26 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0d6825', endColorstr='#77bb26',GradientType=0 ); /* IE6-9 */
	color: #fafafa;
}

/* -----  Sub Menus  ----- */
#nav-main ul li:hover > ul {
	opacity: 1;
	visibility: visible;
	margin: 0;
}
#nav-main ul li ul {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#004795+55,001e5b+100 */
    background: #004795; /* Old browsers */
    background: -moz-linear-gradient(top,  #004795 55%, #001e5b 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #004795 55%,#001e5b 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #004795 55%,#001e5b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#004795', endColorstr='#001e5b',GradientType=0 ); /* IE6-9 */
	border-radius: 3px;
	-moz-border-radius: 3px;
	-o-border-radius: 3px;
	-ms-border-radius: 3px;
	-webkit-border-radius: 3px;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;	
	text-transform:none;
	opacity: 0;
	visibility: hidden;
	position:absolute;
	left:0;
	top:40px;
	font-size:12px;
	height:auto;
	width:150px;
}
#nav-main ul li ul li {
	border:#454744;
	box-shadow: 0 1px 0 #111, 0 2px 0 #000000;
	-moz-box-shadow: 0 1px 0 #111, 0 2px 0 #000000;
	-o-box-shadow: 0 1px 0 #111, 0 2px 0 365;
	-webkit-box-shadow: 0 1px 0 #111, 0 2px 0 #737373;
	-ms-box-shadow: 0 1px 0 #111, 0 2px 0 #737373;
	position:relative;
	left:0;
	float:none;
	height:auto;
	margin:0;
	text-align:left !important;
}
#nav-main ul li ul li:last-child {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
#nav-main ul li ul li a, #nav-main ul li ul li button {
	padding:10px 8px;
	border:none
}

/* -----  Sub Sub Menus  ----- */
#nav-main ul li ul li ul {
	top: 0;
	left: 150px;
	margin: 0 0 0 20px;
	_margin: 0; /*IE6 only*/
	box-shadow: -1px 0 0 rgba(255,255,255,.3);
	-moz-box-shadow: -1px 0 0 rgba(255,255,255,.3);
	-o-box-shadow: -1px 0 0 rgba(255,255,255,.3);
	-ms-box-shadow: -1px 0 0 rgba(255,255,255,.3);
	-webkit-box-shadow: -1px 0 0 rgba(255,255,255,.3);	
}
#nav-main ul ul li:first-child > a, #nav-main ul ul li:first-child > button {
	border-radius: 3px 3px 0 0;
	-moz-border-radius: 3px 3px 0 0;
	-o-border-radius: 3px 3px 0 0;
	-ms-border-radius: 3px 3px 0 0;
	-webkit-border-radius: 3px 3px 0 0;	
}
#nav-main ul ul li:first-child > a:after, #nav-main ul ul li:first-child > button:after {
	content: '';
	position: absolute;
	left: 40px;
	top: -6px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #444;
}
#nav-main ul ul ul li:first-child a:after, #nav-main ul ul ul li:first-child button:after {
	left: -6px;
	top: 50%;
	margin-top: -6px;
	border-left: 0;	
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
	border-right: 6px solid #3b3b3b;
}
#nav-main ul ul li:first-child a:hover:after, #nav-main ul ul li:first-child button:hover:after { border-bottom-color: #04acec; }
#nav-main ul ul ul li:first-child a:hover:after, #nav-main ul ul ul li:first-child button:hover:after {
	border-right-color: #0299d3; 
	border-bottom-color: transparent; 	
}
#nav-main ul ul li:last-child > a, #nav-main ul ul li:last-child > button {
	-moz-border-radius: 0 0 3px 3px;
	-webkit-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
}

/* -----  Mobile Menu  ----- */
.nav-mobile {
    display: none;
    text-align: left;
    position: absolute;
    top: 0px;
    min-width: 0px;
    border: none;
}
.nav-mobile.float {
    position: fixed;
    border: 1px solid #000000;
    background: #004795;
    background: -moz-linear-gradient(top, #004795 55%, #001e5b 100%);
    background: -webkit-linear-gradient(top, #004795 55%,#001e5b 100%);
    background: linear-gradient(to bottom, #004795 55%,#001e5b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#004795', endColorstr='#001e5b',GradientType=0 );
}

.hamburger{
	background:none;
	line-height:45px;
	padding:0px 15px 0px 15px;
	color:#004795;
	border:0;
	font-size:1.4em;
	font-weight:bold;
	cursor:pointer;
	outline:none;
	z-index:99;
}
.float .hamburger { color: white; }

@media (max-width: 960px) {
    #nav-main-container { display:none;}
	#nav-main { display: none; }
	.nav-mobile { display: block; }
}

/* -----  Mobile Slide Out Menu  ----- */
.cross {
    background: none;
    border: 0;
    font-size: 3em;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    color: #004795;
}
.nav-mobile-menu {
    z-index: 1000;
    font-weight: bold;
    font-size: 0.8em;
    width: 50%;
    position: fixed;
    text-align: center;
    top: 0;
    left: 0;
}
.nav-mobile-menu .menu-overlay {
    width: 100vw;
    height: 100vh;
    position: absolute;
    background: rgba(0,0,0,.25);
    top: 0px;
    z-index: -1;
}
.nav-mobile-menu .menu-mobile { box-shadow: 5px 0px 5px rgba(0,0,0,.6); background: lightgray; overflow-y: auto; }
.nav-mobile-menu .menu-header { background: white; color: #004795; }
.nav-mobile-menu .menu-header-title { margin-top: .5em; margin-bottom: .5em; }
.nav-mobile-menu button { font-weight: bold; }
.nav-mobile-menu ul {
	margin: 0; 
	padding: 0; 
	list-style-type: none; 
	list-style-image: none;
}
.nav-mobile-menu li {
	display: block;   
	border-bottom:#1d1f20 1px solid;
}
.nav-mobile-menu li:hover {
    display: block;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#77bb26+0,0d6825+100 */
    background: #77bb26; /* Old browsers */
    background: -moz-linear-gradient(top, #77bb26 0%, #0d6825 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #77bb26 0%,#0d6825 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #77bb26 0%,#0d6825 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#77bb26', endColorstr='#0d6825',GradientType=0 ); /* IE6-9 */
    border-bottom: #1d1f20 1px solid;
}
.nav-mobile-menu ul li a, .nav-mobile-menu ul li button { 
	text-decoration:none;  
	margin: 0px; 
	color:#fff;
    padding: 15px 0px;
    display: block;
    width: 100%;
}
.nav-mobile-menu ul li a:hover, .nav-mobile-menu ul li button:hover { color: #fff; text-decoration:none; }
.nav-mobile-menu a { text-decoration:none; color:white; }
.nav-mobile-menu a:hover { text-decoration:none; color:white; }
.nav-mobile-menu .menu-header-close:hover, .menu .menu-header-close:focus { color: #77bb26; }
.nav-mobile-menu .menu-header-close:active { color: #0d6825; }

/* ==========  GateKeeper  ========== */

#gatekeeperDiv {
    z-index: 1000000;
    width: 500px;
    height: 300px;
    background: black;
    border: 10px solid white;
    border-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='50' height='50'><defs><linearGradient id='redgradient'><stop offset='0' stop-color='%23FFC14D'/><stop offset='0.362' stop-color='%23FF4834'/><stop offset='1' stop-color='%233B0300'/></linearGradient></defs><g id='Layer_1'><path d='M0,0 L50,0 L50,50 L0,50 L0,0 z' fill='url(%23redgradient)' width='100%' height='100%'/></g></svg>") 10% stretch;
}

#gateKey {
    width: 100px;
    padding: 15px;
}

#closeGateKeeper {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    cursor: pointer;
    color: white;
}

#gatekeeperIcon {
    z-index: 20;
    /*position: absolute;*/
    /*top: 10px;*/
    /*right: 200px;*/
    width: 100px;
    cursor: pointer;
}

#gatekeeperWrapper {
    z-index: 1000000;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    color: white;
}

#gatekeeperTitle {
    position: absolute;
    top: 25px;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    color: yellow;
    text-shadow: 2px 2px 2px brown, 1px 1px 1px gold;
    font-size: 2em;
}



.gatekeeper-swal.swal2-popup {
    background: white !important;
    color: black !important;
    border: 10px solid transparent !important;
    border-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='50' height='50'>\
<defs>\
<linearGradient id='gateGradient' x1='0%' y1='0%' x2='100%' y2='0%'>\
<stop offset='0%' stop-color='%2377bb26'/>\
<stop offset='100%' stop-color='%23004795'/>\
</linearGradient>\
</defs>\
<rect width='50' height='50' fill='url(%23gateGradient)'/>\
</svg>") 1 stretch !important;
    border-image-slice: 1 !important;
    border-radius: 8px !important;
    box-shadow: 0 0 15px rgba(0, 71, 149, 0.4), 0 0 30px rgba(119, 187, 38, 0.3) !important;
    background-clip: border-box !important;
}

.gatekeeper-confirm-btn {
    background-color: #004795 !important; /* BCSD Blue */
    color: white !important;
    font-weight: bold;
    border-radius: 6px !important;
    padding: 8px 20px !important;
    border: none !important;
}

.gatekeeper-confirm-btn:hover {
    background-color: #77bb26 !important; /* BCSD Green on hover */
}


/* ==========  Body  ========== */

.form, .card {
    /*position: relative;*/
    /*background-color: rgba(0, 71, 149, .2);*/
    background-color: #FAFAFA;
    text-align: center;
    margin: 20px auto;
    padding: 20px;
    box-shadow: 4px 4px 4px #000000;
    border: 1px solid #004795;
    border-radius: 7px;
    /*top: -6px;*/
    /*left: 4px;*/
}

:not(.locked-field) + .required::after {
    content: " *";
    color: red;
    font-weight: bold;
}

.width-100 { width: 100%; }
.width-100vw { width: 100vw; }
.height-100 { height: 100%; }
.height-100vh { height: 100vh; /*height: calc(var(--vh, 1vh) * 100);*/ }
.min-width-100 { min-width: 100%; }
.min-width-100vw { min-width: 100vw; }
.min-height-100 { min-height: 100%; }
.min-height-100vh { min-height: 100vh; /*min-height: calc(var(--vh, 1vh) * 100);*/ }
.max-width-100 { max-width: 100%; }
.max-width-100vw { max-width: 100vw; }
.max-height-100 { max-height: 100%; }
.max-height-100vh { max-height: 100vh; /*max-height: calc(var(--vh, 1vh) * 100);*/ }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-italics { font-style: italic; }
.text-bold { font-weight: bold; }

.elem-center { margin-left: auto; margin-right: auto; }
.transform-center {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.display-flex { display: flex; }
.display-block { display: block; }
.display-inline-block { display: inline-block; }
.display-none, .hidden { display: none; }

.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-relative { position: relative; }
.position-static { position: static; }

[class*="jqx-dropdownlist"].color-reverse {
    padding: 0px;
    color: black;
    background: white;
    text-shadow: none;
}

[class*="jqx-dropdownlist"].color-reverse .jqx-icon-arrow-down-berkeley {
    background-image: url(jqx/images/icon-down-black.png);
}

/* -----  Header Section  ----- */
.header-section {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid black;
    box-shadow: 2px 2px 2px black;
    background: rgba(255, 255, 255, .8);
    color: #004795;
}
.header-section .header-section-title {
    position: relative;
    border: 1px solid #004795;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.3em;
    background: rgba(255, 255, 255, 1);
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 15px;
}
.header-section .header-section-info { background: rgba(255, 255, 255, .4); padding: 15px; border-radius: 5px; }
.header-section .header-section-info h2 { margin-top: 10px; margin-bottom: 10px; }
.header-section .header-section-title .header-section-actions { position: absolute; right: 1em; }
.header-section .header-section-title .button-toggle { border-radius: 50%; }
	
/* =============================================  Body  ============================================== */


.mainSection{
    background-color: rgba(255, 255, 255, .5);
    width:70%;
    margin:auto;
    padding:15px;
    border-radius:5px;
    border:1px solid #004795;
    box-shadow:3px 3px 2px #000;
    position:relative;
}
.tblHdr{
    text-align:center;
    background: #004795; /* Old browsers */
    background: -moz-linear-gradient(top,  #004795 55%, #001e5b 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #004795 55%,#001e5b 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #004795 55%,#001e5b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#004795', endColorstr='#001e5b',GradientType=0 ); /* IE6-9 */
	color:white;
    font-size:1.1em;
    padding:7px;
    width:250px;
    border-radius:5px;
    margin-bottom:5px;
}
/*.tableCell1{
    width:300px;
    display:table-cell;
    position:relative;
}
@media only screen and (max-width: 1270px) {
    .tableCell1, .tableCell2{
        display:block;
    }
}*/
.info{
    display:inline;
    color:#fff;
    text-shadow:1px 1px 1px #000;
    line-height:20px;
}
.info span {
    z-index:100;
	font-weight:normal;
	font-size: .8em;
	display:none; 
	padding:14px 20px;
	max-width:400px;
    margin-top:-80px;
	margin-left:-150px; 
	line-height:1.25em;
	border-radius:5px;
    box-shadow: #000000 8px 8px 5px;
}
.info:hover span{
    display:inline; 
	position:absolute; 
	color:#004795; 
	border:2px solid #77bb26;
	background: #fff;
	text-align:left;
	text-shadow:none;
}
.info img{
	height:20px;
}
.gridHeader {
    /*height: 40px;*/
    /*width:90.2%;*/ /*Same as grid width (+.2 for overlap)*/
    border-radius: 5px 5px 0px 0px;
    /*text-align: left;*/
    box-sizing: border-box;
    padding: 5px;
    color: white;
    background: #004795; /* Old browsers */
    background: -moz-linear-gradient(top, #004795 55%, #001e5b 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #004795 55%,#001e5b 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #004795 55%,#001e5b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#004795', endColorstr='#001e5b',GradientType=0 ); /* IE6-9 */
    position: relative;
    border: 1px solid #004795;
    min-height: 44px;
}
.gridHeader + .jqx-grid {
    box-sizing: border-box;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.gridHeader .right-side {
    position: absolute;
    left: 5px;
    top: 10px;
}



.sectionHeader{
    width:90%;
    height:40px;
    line-height:40px;
    margin:auto;
    margin-top:20px;
    margin-bottom:10px;
    border:1px solid #004795;
    border-radius:5px;
    background-color: rgba(0, 71, 149, .2);
    color:white;
    text-shadow:1px 1px 1px black;
    font-size:1.2em;
    position:relative;
}
.sectionHeader img{
    width:30px;
    position:absolute;
    top:5px;
    cursor:pointer;
    display:none;
}
.actions{
    /*background-color:#004795;*/
    /*border:1px solid #77bb26;*/
    height:50px;
    /*padding-bottom:3px;*/
    position:absolute;
    top:27px;
    text-align:center;
    left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
}
/*.actions:hover{
    background-color:#77bb26;
    border:1px solid #004795;
}*/
.actions img{
    height:50px;
    cursor:pointer;
    border-radius:3px;
    border:1px solid white;
}
.actions span{
    z-index:100;
	font-weight:normal;
	font-size: .8em;
	display:none; 
	padding:14px 20px;
    min-width:200px;
	max-width:400px;
    margin-top:-120px;
	margin-left:-50px; 
	line-height:1em;
	border-radius:5px;
    box-shadow: #000000 8px 8px 5px;
}
.actions:hover span{
    display:inline; 
	position:absolute; 
	color:#004795; 
	border:2px solid #77bb26;
	background: #fff;
	text-align:center;
	text-shadow:none;
}
.msgPopup{
    /*display:none;*/
    z-index:1000;
    background-color:#fff;
    border:3px solid #004795;
    border-radius:5px;
    /*width:500px;*/
    height:400px;
    text-align:center;
    margin:auto;
    position:absolute;
    top:35%;
    left:37%;
    box-shadow:4px 4px 4px #000000;
}
.msgPopup img{
    display:block;
    height:30px;
    cursor:pointer;
}
.msgWrapper, .msgWrapper2, .msgWrapper3{
    position: fixed;
	top: 0;
    left: 0;
	width: 100%;
	height: 100%;
	background: rgba(41, 35, 33, .9);
	z-index: 999;
    display:none;
}
.numbers{
    width:5%;
    font-size:4em;
    color:gray;
    text-shadow:1px 1px 1px #000000;
    opacity:.7;
    padding-right:20px;
}
.light{
    color:white;
    text-shadow:1px 1px 1px black;
}
.bold{ font-weight:bold; }
.notBold{ font-weight:normal; }
.yellow {
	color: black;
	background-color: yellow;
}

.tooltip-underline {
    border-bottom: 1px dashed black;
}
/* =========================================  GateKeeper  =========================================== */

/* ============================================  Tables  ============================================== */

.returnColumn{
    padding-left:5px;
    padding-top:5px;
    height:100%;
    width:100%;
}
.default-table{
	width:100%;
    font-size:14px;
    border-spacing:0px;
}
.default-table th{
	padding:7px;
    background: #004795; /* Old browsers */
    background: -moz-linear-gradient(top,  #004795 55%, #001e5b 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #004795 55%,#001e5b 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #004795 55%,#001e5b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#004795', endColorstr='#001e5b',GradientType=0 ); /* IE6-9 */
	color:white;
	text-shadow: 2px 2px 3px #000000;
	font-weight:normal;
    text-align:left;
}
.default-table td{
	padding:7px;
}
.default-table tr:nth-child(even){
	background:#d9d9d9;
}
.gridVw tr:nth-child(even){
	background:none;
}
.default-table tr:nth-child(odd){
	background:#fff;
}
.default-table tr:hover{
	background:#33ff33;
}
.gridVw {
    background:white;
}
.gridVw th a{
    color:white;
}
.hiddencol {
    display: none;
}
/* ===========================================  Buttons  ============================================= */
.button, .button-inline {
	display: inline-block;
	vertical-align: top;
	position: relative;
	overflow: hidden;
	min-width: 80px;
	line-height: 30px;
	padding: 0 24px;
	font-size: 14px;
	color: white;
	text-align: center;
	text-decoration: none;
	text-shadow: 2px 2px 3px #000000;
	background-color: #0D6825;
	background-clip: padding-box;
	border: 1px solid;
	border-color: #147b0e #11640b #11640b;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2), 4px 4px 4px #000000;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#004795+55,001e5b+100 */
    background: #004795; /* Old browsers */
    background: -moz-linear-gradient(top,  #004795 55%, #001e5b 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #004795 55%,#001e5b 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #004795 55%,#001e5b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#004795', endColorstr='#001e5b',GradientType=0 ); /* IE6-9 */
}

.button:before {
	content: '';
	position: absolute;
	top: -25%;
	bottom: -25%;
	left: -20%;
	right: -20%;
	border-radius: 50%;
	/*background: transparent;*/
	-webkit-box-shadow: inset 0 0 38px rgba(255, 255, 255, 0.5);
	box-shadow: inset 0 0 38px rgba(255, 255, 255, 0.5), 5px 5px 5px #000000;
}
a.button:hover:not(:disabled):not(.disabled), a.button-inline:hover:not(:disabled):not(.disabled),
input.button:hover:not(:disabled):not(.disabled), input.button-inline:hover:not(:disabled):not(.disabled),
button.button:hover:not(:disabled):not(.disabled), button.button-inline:hover:not(:disabled):not(.disabled),
input:not(:disabled) + label.button:hover:not(:disabled):not(.disabled), input:not(:disabled) + label.button-inline:hover:not(:disabled):not(.disabled) {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0d6825+0,77bb26+100 */
    background: #0d6825; /* Old browsers */
    background: -moz-linear-gradient(top, #0d6825 0%, #77bb26 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #0d6825 0%,#77bb26 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #0d6825 0%,#77bb26 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0d6825', endColorstr='#77bb26',GradientType=0 ); /* IE6-9 */
}
a.button:active:not(:disabled):not(.disabled),
input.button:active:not(:disabled):not(.disabled),
button.button:active:not(:disabled):not(.disabled),
input:not(:disabled) + label.button:active:not(:disabled):not(.disabled) {
    color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
    top: 5px;
}
a.button:active:before:not(:disabled):not(.disabled),
input.button:active:before:not(:disabled):not(.disabled),
button.button:active:before:not(:disabled):not(.disabled),
input:not(:disabled) + label.button:active:before:not(:disabled):not(.disabled) {
    top: -50%;
    bottom: -125%;
    left: -15%;
    right: -15%;
    -webkit-box-shadow: inset 0 0 96px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 96px rgba(0, 0, 0, 0.2);
}
a.button.disabled, a.button:disabled, a.button-inline.disabled, a.button-inline:disabled,
input.button.disabled, input.button:disabled, input.button-inline.disabled, input.button-inline:disabled,
button.button.disabled, button.button:disabled, button.button-inline.disabled, button.button-inline:disabled,
input.disabled + label.button, input:disabled + label.button, input.disabled + label.button-inline, input:disabled + label.button-inline {
    opacity: 0.65; 
    /*cursor: not-allowed;*/
    cursor: default;
    background-color: #F0F0F0;
}
.gobutton {
	display: inline-block;
	vertical-align: top;
	position: relative;
	overflow: hidden;
	min-width: 80px;
	line-height: 30px;
	padding: 0 24px;
	font-size: 14px;
	color: white;
	text-align: center;
	text-decoration: none;
	text-shadow: 2px 2px 3px #000000;
	background-color: #0D6825;
	background-clip: padding-box;
	border: 1px solid;
	border-color: #147b0e #11640b #11640b;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2), 4px 4px 4px #000000;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#9dd53a+0,a1d54f+50,80c217+51,7cbc0a+100;Green+Gloss+%231 */
    background: #9dd53a; /* Old browsers */
    background: -moz-linear-gradient(top,  #9dd53a 0%, #a1d54f 50%, #80c217 51%, #7cbc0a 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #9dd53a 0%,#a1d54f 50%,#80c217 51%,#7cbc0a 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #9dd53a 0%,#a1d54f 50%,#80c217 51%,#7cbc0a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9dd53a', endColorstr='#7cbc0a',GradientType=0 ); /* IE6-9 */
}

.gobutton:before {
	content: '';
	position: absolute;
	top: -25%;
	bottom: -25%;
	left: -20%;
	right: -20%;
	border-radius: 50%;
	/*background: transparent;*/
	-webkit-box-shadow: inset 0 0 38px rgba(255, 255, 255, 0.5);
	box-shadow: inset 0 0 38px rgba(255, 255, 255, 0.5), 5px 5px 5px #000000;
}
.gobutton:hover {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0d6825+0,77bb26+100 */
    background: #0d6825; /* Old browsers */
    background: -moz-linear-gradient(top,  #0d6825 0%, #77bb26 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #0d6825 0%,#77bb26 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #0d6825 0%,#77bb26 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0d6825', endColorstr='#77bb26',GradientType=0 ); /* IE6-9 */
}
.gobutton:active {
	color: rgba(255, 255, 255, 0.9);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
	top:5px;
}
.gobutton:active:before {
	top: -50%;
	bottom: -125%;
	left: -15%;
	right: -15%;
	-webkit-box-shadow: inset 0 0 96px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 0 96px rgba(0, 0, 0, 0.2);
}
.gobutton.disabled{
    /*opacity: 0.65;*/ 
    cursor: not-allowed;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f85032+0,f16f5c+50,f6290c+51,f02f17+71,e73827+100;Red+Gloss+%231 */
    background: #f85032; /* Old browsers */
    background: -moz-linear-gradient(top,  #f85032 0%, #f16f5c 50%, #f6290c 51%, #f02f17 71%, #e73827 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #f85032 0%,#f16f5c 50%,#f6290c 51%,#f02f17 71%,#e73827 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #f85032 0%,#f16f5c 50%,#f6290c 51%,#f02f17 71%,#e73827 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f85032', endColorstr='#e73827',GradientType=0 ); /* IE6-9 */
}
.gobutton span {
    z-index:999;
	font-weight:normal;
	font-size: .8em;
	display:none; 
	padding:14px 20px;
	max-width:400px;
    margin-top:-80px;
	margin-left:-150px; 
	line-height:1em;
	border-radius:5px;
    box-shadow: #000000 8px 8px 5px;
}
.gobutton:hover span{
    display:inline; 
	position:absolute; 
	color:#004795; 
	border:2px solid #77bb26;
	background: #fff;
	text-align:center;
	text-shadow:none;
}

.button-print img {
    width: 25px;
    height: 25px;
}

.button-inline {
    vertical-align: inherit;
    min-width: inherit;
    padding: 5px 10px;
    line-height: inherit;
    -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 .5px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), 0 .1px 2px rgba(0, 0, 0, 0.2), 2px 2px 2px #000000;
}

a.button-inline:active:not(:disabled):not(.disabled),
input.button-inline:active:not(:disabled):not(.disabled),
button.button-inline:active:not(:disabled):not(.disabled),
input:not(:disabled) + label.button-inline:active:not(:disabled):not(.disabled) {
    top: unset;
    color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.4);
}

.button-flat {
    background: #004795;
    text-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
a.button-color-flat:hover:not(:disabled):not(.disabled),
input.button-color-flat:hover:not(:disabled):not(.disabled),
button.button-color-flat:hover:not(:disabled):not(.disabled),
input:not(:disabled) + label.button-color-flat:hover:not(:disabled):not(.disabled) {
    background: #77bb26;
}
a.button-color-flat:active:not(:disabled):not(.disabled),
input.button-color-flat:active:not(:disabled):not(.disabled),
button.button-color-flat:active:not(:disabled):not(.disabled),
input:not(:disabled) + label.button-color-flat:active:not(:disabled):not(.disabled) {
    background: #0d6825;
}

.button-color-reverse {
    background: white;
    color: #004795;
    text-shadow: none;
    font-weight: bold;
}

a.button-color-reverse:active:not(:disabled):not(.disabled),
input.button-color-reverse:active:not(:disabled):not(.disabled),
button.button-color-reverse:active:not(:disabled):not(.disabled),
input:not(:disabled) + label.button-color-reverse:active:not(:disabled):not(.disabled) {
    color: #004795;
}

a.button-color-reverse:hover:not(:disabled):not(.disabled),
input.button-color-reverse:hover:not(:disabled):not(.disabled),
button.button-color-reverse:hover:not(:disabled):not(.disabled),
input:not(:disabled) + label.button-color-reverse:hover:not(:disabled):not(.disabled) {
    color: white;
}

.button-refresh, .button-clear-filter {
    width: 25px;
    height: 25px;
    padding: 0px;
    margin: 0px;
}
.button-refresh img, .button-clear-filter img {
    width: 100%;
    height: 100%;
}
.button-refresh img.hover, .button-clear-filter img.hover { display: none;}
.button-refresh:hover img.hover, .button-clear-filter:hover img.hover { display: block; }
.button-refresh:hover img.normal, .button-clear-filter:hover img.normal { display: none; }

.button-clear {
    background: none;
    border: none;
    padding: 0px;
}

.button-image > img {
    width: 100%;
}

.button-more {
    min-width: 0px;
    padding: 0px 10px;
}
/*==============================================  .NET Dropdown  ==========================================*/
.netDropdown{
    background: #004795; /* Old browsers */
    background: -moz-linear-gradient(top,  #004795 55%, #001e5b 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #004795 55%,#001e5b 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #004795 55%,#001e5b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#004795', endColorstr='#001e5b',GradientType=0 ); /* IE6-9 */
    color:white;
    width:250px;
    height:27px;
    border-radius:3px;
    font-size:1.1em;
}
.netDropdown option{
    color:black;
}

/*==============================================  Loading Screen  ==========================================*/
body.loading {
    overflow:hidden;
}
#loadWrapper{
    height:250px;
    width:400px;
    border:1px solid white;
    border-radius:15px;
    box-shadow:5px 5px 3px black;
}
#loadScreen{
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background: #206dc7;
	z-index: 1001;
}
#loadScreen {
    transition: opacity ease-in-out .6s, visibility ease 0s;
    transition-delay: 0s, .5s;
    opacity: 0;
    visibility: hidden;
}
body.loading #loadScreen, #loadScreen.show {
    transition: opacity ease-in-out .4s, visibility ease 0s;
    transition-delay: 0s, 0s;
    opacity: 1;
    visibility: visible;
}
#loadScreen img{
	width:400px;
	position:fixed;
	top:50%;
	left:50%;
	margin:-200px 0px 0px -200px;
}
#loadScreen p{
	position:fixed;
	top:50%;
	left:48.7%;
	color:white;
}
#divLoading{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background: #206dc7;
	z-index: 1000;
    display:none;
    border-radius:15px;
}
#divLoading p{
	position: absolute;
    top: 45%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    color:white;
}
#divLoading img{
	width:150px;
	position:absolute;
	top:50%;
	left:50%;
	margin:-75px 0px 0px -75px;
}
#divLoading2{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background: #206dc7;
	z-index: 1000;
    display:none;
}
#divLoading2 img{
	width:150px;
	position:absolute;
	top:50%;
	left:50%;
	margin:-75px 0px 0px -75px;
}
/*==============================================  Custom Radio buttons  ==========================================*/
input[class="customRadio"] {
	display:none;
}
input[class="customRadio"] + label {
	color: #292321;
	font-family:Arial, sans-serif;
	font-size:14px;
    white-space:nowrap;
}
input[class="customRadio"]:disabled + label {
	color: gray;
	cursor:not-allowed;
    text-decoration: line-through;
}
input[class="customRadio"] + label span {
	display:inline-block;
	width:19px;
	height:19px;
	margin:-1px 4px 0 0;
	vertical-align:middle;
	cursor:pointer;
	-moz-border-radius:  50%;
	border-radius:  50%;
	background-color:#292321;
}

input[class="customRadio"]:checked + label span{
		background-color:#33ff33;
}

input[class="customRadio"]:disabled + label span {
		cursor:not-allowed;
}

input[class="customRadio"] + label span, input[class="customRadio"]:checked + label span {
	-webkit-transition:background-color 0.3s linear;
	-o-transition:background-color 0.3s linear;
	-moz-transition:background-color 0.3s linear;
	transition:background-color 0.3s linear;
}
input[class="customRadio"] + label:hover{
    /*background:rgba(0, 71, 149, .2);*/
}

input[type=radio].button-input, input[type=checkbox].button-input {
    /*visibility: hidden;*/
    position: absolute;
}
input[type=radio].button-input + label.button, input[type=checkbox].button-input + label.button {
    transition: background ease-in-out .25s, color ease-in-out .25s;
}
input[type=radio].button-input:checked + label.button, input[type=checkbox].button-input:checked + label.button {
    color: white;
    background: #0d6825; /* Old browsers */
}
input[type=radio].button-input:checked:disabled + label.button, input[type=checkbox].button-input:checked:disabled + label.button {
    background: #3A834E;
}
input[type=radio].button-input:focus + label.button, input[type=checkbox].button-input:focus + label.button {
    outline: auto #6495ed !important;
}

/*==============================================  Slider Checkboxes  ==========================================*/

.sliderCheckbox {
    position: relative;
}

    .sliderCheckbox > input[type="checkbox"] {
        position: absolute;
        width: 1px;
        height: 1px;
        top: 10px
    }


    .sliderCheckbox .toggle {
        position: relative;
        display: block;
        width: 40px;
        height: 20px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transform: translate3d(0, 0, 0);
    }

        .sliderCheckbox .toggle:before {
            content: "";
            position: relative;
            top: 3px;
            left: 3px;
            width: 34px;
            height: 14px;
            display: block;
            background: #9A9999;
            border-radius: 8px;
            transition: transform 0.2s ease;
        }

        .sliderCheckbox .toggle span {
            position: absolute;
            top: 5px;
            left: 0;
            width: 20px;
            height: 20px;
            display: block;
            background: white;
            border-radius: 10px;
            box-shadow: 0 3px 8px rgba(154, 153, 153, 0.5);
            transition: transform 0.2s ease;
        }

            .sliderCheckbox .toggle span:before {
                content: "";
                position: absolute;
                display: block;
                margin: -18px;
                width: 56px;
                height: 56px;
                background: rgba(79, 46, 220, 0.5);
                border-radius: 50%;
                transform: scale(0);
                opacity: 1;
                pointer-events: none;
            }

    .sliderCheckbox > input[type="checkbox"]:checked + .toggle:before {
        background: #947ADA;
    }

    .sliderCheckbox > input[type="checkbox"]:focus + .toggle span {
        outline: 2px solid black;
    }

    .sliderCheckbox > input[type="checkbox"]:checked + .toggle span {
        background: #4F2EDC;
        transform: translateX(30px);
        transition: transform 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
        /*transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;*/
        box-shadow: 0 3px 8px rgba(79, 46, 220, 0.2);
    }

        .sliderCheckbox > input[type="checkbox"]:checked + .toggle span:before {
            transform: scale(1);
            opacity: 0;
            transition: transform 0.4s ease;
        }

    .sliderCheckbox > input[type="checkbox"]:focus {
        outline: none;
    }

        .sliderCheckbox > input[type="checkbox"]:focus + .toggle:before {
            outline: 2px solid black;
        }

/*==============================================  Custom Checkboxes  ==========================================*/
input[class="customCheckbox"] {
    display:none;
}
 
input[class="customCheckbox"] + label
{
    background: url("../images/unchecked.png") no-repeat;
    background-size: 100%;
    height: 25px;
    width: 25px;
    display:inline-block;
    padding: 0 0 0 0px;
}
input[class="customCheckbox"]:checked + label
{
    background: url("../images/checked.png") no-repeat;
    background-size: 100%;
    height: 25px;
    width: 25px;
    display:inline-block;
    padding: 0 0 0 0px;
}

/* Based on custom checkboxes from https://css-tricks.com/the-checkbox-hack/ */
/* Base for label styling */
.checkbox-custom:not(:checked),
.checkbox-custom:checked {
    position: absolute;
    left: -9999px;
}

.checkbox-custom:not(:checked) + label,
.checkbox-custom:checked + label {
    position: relative;
    width: calc(1.25em + 4px);
    height: calc(1.25em + 4px);
    cursor: pointer;
    padding: 0px;
}

/* checkbox aspect */
.checkbox-custom:not(:checked) + label:before,
.checkbox-custom:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.25em;
    height: 1.25em;
    border: 2px solid #ccc;
    background: #fff;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}
/* checked mark aspect */
.checkbox-custom:not(:checked) + label:after,
.checkbox-custom:checked + label:after {
    content: '\2713\0020';
    position: absolute;
    top: .18em;
    left: .20em;
    font-size: 1.3em;
    line-height: 0.8;
    color: #09ad7e;
    transition: all .2s;
    font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial;
}
/* checked mark aspect changes */
.checkbox-custom:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}

.checkbox-custom:checked + label:after {
    opacity: 1;
    transform: scale(1);
}
/* disabled checkbox */
.checkbox-custom:disabled:not(:checked) + label:before,
.checkbox-custom:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

.checkbox-custom:disabled:checked + label:after {
    color: #999;
}

.checkbox-custom:disabled + label {
    color: #aaa;
}
/* accessibility */
.checkbox-custom:checked:focus + label:before,
.checkbox-custom:not(:checked):focus + label:before {
    border: 2px dotted blue;
}

/* hover style just for information */
.checkbox-custom + label:hover:before {
    border: 2px solid #4778d9 !important;
}

/* ----- IE Popup Styles ----- */

.ie-popup {
    /*display:none;*/
    background-color: #fff;
    border: 3px solid #004795;
    border-radius: 5px;
    text-align: center;
    margin: auto;
    box-shadow: 4px 4px 4px #000000;
    padding: 20px;
    padding-bottom: 40px;
    display: inline-block;
}

.ie-popup-vert {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.ie-popup-container {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: none;
    background: transparent;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#29232100,endColorstr=#29232100);
    zoom: 1;
    background: rgba(0,0,0,.5);
}

/* for IE7 and below */
.ie-popup-vert {
    *position: absolute;
    *top: 50%;
    *width: 100%;
    *text-align: center;
}

.ie-popup {
    *position: relative;
    *top: -50%;
    *max-width: 500px;
}

.ie-popup-close {
    display: block;
    height: 30px;
    cursor: pointer;
}

.ie-popup-container .overlay {
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
}

.icon {
    width: 25px;
    height: 25px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.ie-popup ul, .ie-popup ol {
    margin-left: 40px;
}

.text-left {
    text-align: left;
}

.ssrs-embed {
    display: inline-flex;
    border: 1px solid black;
    border-radius: 5px;
    width: auto !important;
    height: auto !important;
    background: white;
    padding: 10px;
    box-sizing: content-box;
}

.ssrs-embed * {
    font-family: inherit;
}

.ssrs-embed-container:not(.scale) {
    overflow: auto;
}

/*==============================================  Common Color  ==========================================*/

.grid-color-gray.grid-color-gray, .grid-color-gray.grid-color-grey {
    background-color: gray;
    color: white;
}

.grid-color-yellow.grid-color-yellow {
    background-color: yellow;
    color: black;
}

.grid-color-green.grid-color-green {
    background-color: green;
    color: white;
}

.grid-color-red.grid-color-red {
    background-color: red;
    color: white;
}

.color-green {
    color: green;
}

.color-red {
    color: red;
}