/* flex */
.my-container{
	display: flex;
	justify-content: space-between;
}

/* Standard classes */
.bold { font-weight: bold; }
.size10 { font-size: 10px; }
.size11 { font-size: 11px; }
.size12 { font-size: 12px; }
.size14 { font-size: 14px; }
.size16 { font-size: 16px; }
.size18 { font-size: 18px; }
.size20 { font-size: 20px; }
.size24 { font-size: 24px; }
.size28 { font-size: 28px; }
.link { text-decoration: underline; }
.nolink { text-decoration: none; }
.center { text-align: center;}
.left { text-align: left;}
.right { text-align: right;}
.just { text-align: justify;}
.img_btn {cursor: pointer; }
.float_right {float: right;}
/* --------------------------------------------------------------------- */

/* W3 Blue Theme */
.w3-theme-l5 {color:#000 !important; background-color:#f2f9fe !important}
.w3-theme-l4 {color:#000 !important; background-color:#d2eafd !important}
.w3-theme-l3 {color:#000 !important; background-color:#a6d4fa !important}
.w3-theme-l2 {color:#000 !important; background-color:#79bff8 !important}
.w3-theme-l1 {color:#fff !important; background-color:#4daaf6 !important}
.w3-theme-d1 {color:#fff !important; background-color:#0c87eb !important}
.w3-theme-d2 {color:#fff !important; background-color:#0b78d1 !important}
.w3-theme-d3 {color:#fff !important; background-color:#0a69b7 !important}
.w3-theme-d4 {color:#fff !important; background-color:#085a9d !important}
.w3-theme-d5 {color:#fff !important; background-color:#074b83 !important}

.w3-theme-light {color:#000 !important; background-color:#f2f9fe !important}
.w3-theme-dark {color:#fff !important; background-color:#074b83 !important}
.w3-theme-action {color:#fff !important; background-color:#074b83 !important}

.w3-theme {color:#fff !important; background-color:#2196f3 !important}
.w3-text-theme {color:#2196f3 !important}
.w3-border-theme {border-color:#2196f3 !important}

.w3-hover-theme:hover {color:#fff !important; background-color:#2196f3 !important}
.w3-hover-text-theme:hover {color:#2196f3 !important}
.w3-hover-border-theme:hover {border-color:#2196f3 !important}
/* --------------------------------------------------------------------- */

/* Special alignment and sizing classes  */
.table_row_small {
	height: 28px;
}

.inline_div {
    display: table-cell;
    vertical-align: middle;
    height: 36px;
}
.inline_select, .inline_input, .inline_image {
	padding: 3px;
}
/* --------------------------------------------------------------------- */

/* Go To Top button position control  */
#scroll-top-btn {
	display: none;
	position: fixed;
	bottom: 30px;
	left: 10px;
	z-index: 99;
  }

  #scroll-top-btn:hover {
	background-color: #fd7c57;
  }
  /* --------------------------------------------------------------------- */

  /* Tooltip CSS */

.tooltip_head {
	background-color: #fe5901;
	font-size:12px;
	text-align: center;
	line-height: 20px;
	color: #ffffff;
	padding:1px;
	border: 1px solid #fe5901;
	-moz-border-radius: 8px 8px 0px 0px;
	-webkit-border-radius: 8px 8px 0px 0px;
	border-radius: 8px 8px 0px 0px;
}

.tooltip_body {
	width: 350px;
	background-color: white;
	font-size: 12px;
	line-height: 14px;
	border-left: 1px solid #fe5901;
	border-right: 1px solid #fe5901;
	border-bottom: 1px solid #fe5901;
	text-align: left;
	-moz-border-radius: 0px 0px 8px 8px;
	-webkit-border-radius: 0px 0px 8px 8px;
	border-radius: 0px 0px 8px 8px;
}
/* --------------------------------------------------------------------- */

.small_btn {
	font-size: 12px;
	background-color: #2196f3;
	color: #ffffff;
	text-align: center;
    padding: 2px 8px 2px 8px;
    border: none;
	text-decoration: none;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
}

.small_btn:hover {
	background-color: #4a6ae8;
	color: #ffffff;
}


/* JQuery Alerts CSS */
#popup_container {
	font-size: 12px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #FFF;
	border: solid 1px #00C;
	color: #000;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #FFF;
	background-color: #fc601d;
	border: solid 1px #FFF;
	border-bottom: solid 1px #999;
	cursor: default;
	padding: 0em;
	margin: 0em;
	-moz-border-radius-topleft: 8px;
	-moz-border-radius-topright: 8px;
	-webkit-border-top-left-radius: 8px;
	-webkit-border-top-right-radius: 8px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

#popup_content {
	background: 16px 16px no-repeat url(images/info.gif);
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert {background-image: url(images/info.gif);}
#popup_content.confirm {background-image: url(images/important.gif);}
#popup_content.prompt {background-image: url(images/help.gif);}
#popup_message {padding-left: 48px;}
#popup_panel {text-align: center;	margin: 1em 0em 0em 1em;}
#popup_prompt {	margin: .5em 0em;}
/* --------------------------------------------------------------------- */

