/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Set styles for buttons */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.myButtonGray {
  border-radius: 4px;
  border: 1px solid #526b81;
  background-color: #5c7891;
  background: -webkit-linear-gradient(#68859f, #5c7891, #526b81);
  background: -o-linear-gradient(#68859f, #5c7891, #526b81);
  background: linear-gradient(#68859f, #5c7891, #526b81);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 120%;
  font-weight: bold;
  padding: 8px 15px;
  margin: 5px;
  cursor: pointer;
}
.myButtonBlue {
  border-radius: 4px;
  border: 1px solid #0062b9;
  background-color: #0070d2;
  background: linear-gradient(#007eec, #0070d2, #0062b9);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 120%;
  font-weight: bold;
  padding: 8px 15px;
  margin: 5px;
  cursor: pointer;
}
.myButtonRed {
  border-radius: 4px;
  border: 1px solid #be393f;
  background-color: #c8494e;
  background: linear-gradient(#ce5d61, #c8494e, #be393f);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 120%;
  font-weight: bold;
  padding: 8px 15px;
  margin: 5px;
  cursor: pointer;
}
.myButtonGreen {
  border-radius: 4px;
  border: 1px solid #0b8c85;
  background-color: #0b888c;
  background: linear-gradient(#0da49b, #0b888c, #0b8c85);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 120%;
  font-weight: bold;
  padding: 8px 15px;
  margin: 5px;
  cursor: pointer;
}
.myButtonClose {
  border-radius: 50%;
  border: 1px solid #aa3438;
  background-color: #c8494e;
  background: linear-gradient(#ce5d61, #c8494e, #be393f);
  color: #ffffff;
  text-align: center;
  display: inline-block;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 8px;
  font-weight: bold;
  padding: 0 5px;
}
.myButtonGray:hover {
  background-color: #526b81;
  background: linear-gradient(#526b81, #5c7891, #68859f);
  color: #f7f7f7;
  box-shadow: 0 0 10px #485e72;
}
.myButtonBlue:hover {
  background-color: #0062b9;
  background: linear-gradient(#0062b9, #0070d2, #007eec);
  color: #f7f7f7;
  box-shadow: 0 0 10px #00559f;
}
.myButtonRed:hover {
  background-color: #be393f;
  background: linear-gradient(#be393f, #c8494e, #ce5d61);
  color: #f7f7f7;
  box-shadow: 0 0 10px #aa3438;
}
.myButtonGreen:hover {
  background-color: #0b8c85;
  background: linear-gradient(#0b8c85, #0b888c, #0da49b);
  color: #f7f7f7;
  box-shadow: 0 0 10px #278352;
}
.myButtonClose:hover {
  box-shadow: 0 0 8px #404040;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Set styles for modal window */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#modalWin {
	background-color: rgba(0,0,0,0.5);
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	display: none;
	justify-content: center;
	align-items: center;
}
.modalContent {
	background-color: #f4f4f4;
	border: 3px solid #2e2e2e;
	box-shadow: 0px 0px 20px #212121;
	animation-name: open;
	animation-duration: 1s;
	width: 60%;
}
@keyframes open {
	from { opacity: 0; }
	to { opacity: 1; }
}
.modalHeader {
	padding: 8px 20px;
	color: #fcfcfc;
	background-color: #247ba0;
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.modalBody {
	height: 100%;
	width: 100%;
}
.modalTitle {
	font: bold 140% "Open Sans", Helvetica, Arial, sans-serif;
	text-shadow: 0px 1px 0px rgba(255,255,255,0.75);
	margin: 0;
}
.btnCloseModal {
	float: right;
	font-size: 20px;
	font-weight: bold;
	padding: 0px 5px 10px 5px;
}
.btnCloseModal:hover {
	color: #212121;
	cursor: pointer;
}
#myIFrame {
	height: 100%;
	width: 100%;
	border: none;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Set styles for loader window and spinning */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#loaderWin {
  background-color: rgba(0,0,0,0.6);
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  animation-name: open;
  animation-duration: 0.5s;
}
.loaderSpinner {
  display: flex;
  position: fixed;
  top: 40%;
  left: 48.5%;
}
.loaderSpinner div {
  transform-origin: 15px 15px;
  animation: spinner 0.8s linear infinite;
}
.loaderSpinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 1px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 360%;
  background: #fdfffc;
}
.loaderSpinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -0.7s;
}
.loaderSpinner div:nth-child(2) {
  transform: rotate(45deg);
  animation-delay: -0.6s;
}
.loaderSpinner div:nth-child(3) {
  transform: rotate(90deg);
  animation-delay: -0.5s;
}
.loaderSpinner div:nth-child(4) {
  transform: rotate(135deg);
  animation-delay: -0.4s;
}
.loaderSpinner div:nth-child(5) {
  transform: rotate(180deg);
  animation-delay: -0.3s;
}
.loaderSpinner div:nth-child(6) {
  transform: rotate(225deg);
  animation-delay: -0.2s;
}
.loaderSpinner div:nth-child(7) {
  transform: rotate(270deg);
  animation-delay: -0.1s;
}
.loaderSpinner div:nth-child(8) {
  transform: rotate(315deg);
  animation-delay: -0s;
}
@keyframes spinner {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Set styles for confirmation dialog window */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#dialogWin {
  background-color: rgba(0,0,0,0.5);
  position: fixed;
  z-index: 3;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}
.dialogContent {
  background-color: #f4f4f4;
  border: 2px solid #2e2e2e;
  box-shadow: 0px 0px 15px #212121;
  animation-name: open;
  animation-duration: 1s;
  width: 350px;
  text-align: center;
}
.dialogHeader {
  padding-top: 10px;
  color: #ff9f1c;
}
.dialogBody {
  padding: 10px 0 15px 0;
  font: bold 120% "Open Sans", Helvetica, Arial, sans-serif;
  color: #424949;
}
.dialogFooter {
  padding-bottom: 10px;
}
.dialogFooter button {
  padding: 6px 15px !important;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Set style for Success and Error Messages */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#uSuccessMessage {
  border-color: #55a955 !important;
  background-color: #e6f0e6 !important;
}
#uNotificationMessage {
  border-color: #f08888 !important;
  background-color: #fbdfdf !important;
}
.uMessageText {
  color: #414141 !important;
  font-weight: bold !important;
}
.closeMsgIcon {
  color: #414141;
}
.msgIcon {
  float: left;
  color: #238865;
}
.notifIcon {
  float: left;
  color: #d11a0c;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Set styles for header banner and user menu information */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.myBanner {
  margin: 0 30px !important;
  width: 85%;
}
.myBannerTitle {
  display: inline-flex;
  position: relative;
  top: -4px;
  margin-left: 10px;
}
.myBannerTitle .myBannerP1, .myBannerTitle .myBannerP2 {
  color: #fafafa !important;
  font-size: 150%;
  text-shadow: 0px 0px 1px #1867a5;
}
/* .myBannerTitle .myBannerP2 {
  margin-left: 80px;
} */
.uAPEXNavBar {
  display: none;
}
.user-menu {
  position: absolute;
  right: 0;
  top: 18px;
  padding: 10px 20px 20px 10px;
}
.user-menu:hover {
  cursor: pointer;
}
.user-menu:hover .user-name {
  color: #ffffff;
  text-shadow: 0px 0px 2px #ebebeb;
}
.user-menu:hover .user-submenu {
  display: block !important;
}
.user-menu div {
  color: #fafafa;
  display: inline-block;
}
.icouser-menu {
  font-size: 20px;
}
.user-name {
  color: #fafafa;
  font-size: 120%;
  text-shadow: 0px 0px 1px #d1d1d1;
  padding: 0 4px;
}
.user-submenu {
  display: none !important;
  position: absolute;
  min-width: 180px;
  right: 0;
  top: 50px;
  background-color: #1b75bb;
  border: 1px solid #626262;
  border-top: 2px solid #1b75bb;
  border-radius: 0 0 5px 5px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  opacity: 0.9;
  animation-name: openMsg;
  animation-duration: 1.0s;
}
@keyframes openMsg {
  from { opacity: 0; }
  to { opacity: 0.9; }
}
.user-submenu a {
  text-decoration: none;
}
.user-submenu a div {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
}
.user-submenu a div:hover {
  background-color: #1b40bb;
  color: #ffffff;
  text-shadow: 0px 0px 2px #ebebeb;
}
.user-submenu a div p {
  font-size: 120%;
  padding: 0 8px;
  text-shadow: 0px 0px 1px #d1d1d1;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Set styles for header banner and user menu information */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#uOneCol {
  margin: 0 !important;
}
#uHeader {
  background: #1b75bb !important;
  margin-bottom: 0 !important;
}
#uHeader hgroup {
  height: 70px !important;
}
.pageMenuRegion {
  border: none !important;
  margin: 0 !important;
}
.pageMenuRegion .uRegionContent {
  padding: 0 !important;
  border-radius: 0 !important;
}
.pageMenuRegion .uRegionContent ul {
  list-style-type: none;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  background-color: #247ba0;
  display: flex;
  justify-content: flex-end;
}
.pageMenuRegion .uRegionContent ul li {
  float: left;
  border-left: 1px solid #dfdfdf !important;
}
/* .pageMenuRegion .uRegionContent ul li:last-child {
  border-right: none;
} */
.pageMenuRegion .uRegionContent ul li a {
  display: block;
  color: #fafafa;
  font-size: 145%;
  font-weight: bold;
  text-align: center;
  padding: 12px 20px;
  text-decoration: none;
}
.pageMenuRegion .uRegionContent ul li a:hover:not(.active) {
  background-color: #1b5b76;
}
.menuActive {
  background-color: #1b5b76;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Set styles for footer information and keeps footer at the bootom */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#uBodyContainer {
  min-height: 100vh;
  position: relative;
}
#uOneCol {
  padding-bottom: 90px;        /* Footer height */
}
#uFooter {
  background-color: #efefef;
  height: 70px;                /* Footer height */
  width: 100%;
  bottom: 0;
  margin: 0px !important;
  position: absolute !important;
}
.uFooterBG, .uLeft, .uRight {
  background: none !important;
}
.uRight {
  width: 100% !important;
  height: 100% !important;
  background: none !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.uRight img {
  width: 44px;
  height: 42px;
  padding: 0 5px !important;
}
.uRight p {
  font-size: 110%;
  text-shadow: 0px 0px 1px #b7b7b7;
  color: #555;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Set styles for menu and report month label */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.myMonthRegion {
  margin: 20px 0 !important;
}
.myMonthRegion .uRegionContent {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}
.lblRepID {
  background-color: #ebe6ad !important;
  color: #402060 !important;
  font-size: 160% !important;
  font-weight: bold !important;
  text-shadow: 1px 1px 2px #b7b7b7;
  margin: 0 !important;
}
.labelRMonth {
  margin: 0 0 4px 0;
}
.labelRMonth p {
  font-size: 130%;
  font-weight: bold;
  color: #004e4e;
  text-shadow: 0px 0px 1px #b7b7b7;
  margin: 0 !important;
}
.menuReports {
  box-shadow: none !important;
  border: none !important;
  background-color: #fafafa !important;
  margin: 0 10px 20px 10px !important;
}
.menuReports .uRegionHeading {
  background-color: #f5f5f5 !important;
  margin-bottom: 4px;
  border: 1px solid #f5f5f5 !important;
  border-radius: 0 !important;
  display: flex !important;
  justify-content: center;
}
.menuReports .uRegionHeading h1 {
  font-size: 130% !important;
  font-weight: bold !important;
  color: #004e4e !important;
  text-shadow: 0px 0px 1px #b7b7b7 !important;
  padding: 0 10px !important;
}
.menuReports .uRegionContent ul li {
  background-color: #f5f5f5 !important;
}
.menuReports .uRegionContent ul li a {
  padding: 10px;
  font-size: 120%;
  border-bottom: 1px solid #7ac0d5 !important;
  color: #673399 !important;
  text-shadow: 0px 0px 1px #b7b7b7;
}
.menuReports .uRegionContent ul li.active a {
  background-color: #008181 !important;
  color: #fafafa !important;
  text-shadow: 0px 0px 1px #b7b7b7;
}
.menuReports .uRegionContent ul li a:hover {
  background-color: #008181 !important;
  color: #fafafa !important;
  text-shadow: 0px 0px 1px #b7b7b7;
  border-top: 1px solid #fafafa !important;
  border-bottom: 1px solid #fafafa !important;
}
