@charset "utf-8";
		
/* 
		
##############################################################
###                                                        ###
###  CSS FILE : Modularware Universal Consolidation CSS    ###
###                                                        ###
##############################################################
		
(C)opyright 2023 - Modularware
www.modularware.com

*/

/* 
		
########################################
###  Modularware - Universal Styles  ###
########################################
		
(C)opyright 2014 - Modularware
www.modularware.com

File: modularware/universal-styles.css

*/	


/************************************
***  TEXT  ALIGNMENT & EMPHASIS   ***
************************************/

.Bold {
    font-weight: bold;
}
		
.Italic {
    font-style: italic;
}
		
.AlignCenter {
    text-align: center;
}
		
.AlignCentre {
    text-align: center;
}
		
.AlignLeft {
    text-align: left;
}

.AlignRight {
    text-align: right;
}

		
.PositionCenter {
    margin: auto;
}
		
.AlignMiddle {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


.ImageCenter, .ImageCentre {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

		
		
.SizeToFit {
    height: 100%;
    width: 100%;
    object-fit: contain;
}


.SizeToChildren {
	width: max-content;
	margin: auto;
}



.Absolute {
	position: absolute;
}


.FloatLeft {
    float: left;
}


.FloatRight {
    float: right;
}


.Flex {
    display: flex;
    flex-wrap: wrap;
}

.NoWrap {
	white-space: nowrap;
}


.NoStack {
	white-space: nowrap;
	display: flex;
}


.Bulletless {
	list-style:none;
}

/**************
***  TABS   ***
**************/

html-tab {
	display: inline-block;
	width: 2em;
}



.HalfTab, .Half_Tab {
    text-indent: 1em;
}


.Tab {
    text-indent: 2em;
}

.Tab_x2 {
    text-indent: 4em;
}

.Tab_x3 {
    text-indent: 6em;
}

.Tab_x4 {
    text-indent: 8em;
}

.Tab_x5 {
    text-indent: 10em;
}

.Tab_x6 {
    text-indent: 12em;
}

.Tab_x7 {
    text-indent: 14em;
}

.Tab_x8 {
    text-indent: 16em;
}

.Tab_x9 {
    text-indent: 18em;
}

.Tab_x10 {
    text-indent: 20em;
}



/*************************
***  CONTENT  LAYOUT   ***
*************************/

.Spacer {
	clear: both;
	display: block;
	height: 1.5em;
}


.SizeToFit {
    height: 100%;
    width: 100%;
    object-fit: contain;
}


.VPad {
	padding: 1em 0;
}


.VPad_x2 {
	padding: 2em 0;
}


.VPad_x2 {
	padding: 3em 0;
}


.TPad {
	padding-top: 1em;
}


.TPad_x2 {
	padding-top: 2em;
}


.TPad_x2 {
	padding-top: 3em;
}


.BPad {
	padding-bottom: 1em;
}


.BPad_x2 {
	padding-bottom: 2em;
}


.BPad_x2 {
	padding-bottom: 3em;
}




.PadTop_1 {
	padding-top: 1px;
}

.PadTop_2 {
	padding-top: 2px;
}


.PadTop_3 {
	padding-top: 3px;
}

.PadTop_4 {
	padding-top: 4px;
}


.PadTop_5 {
	padding-top: 5px;
}


.HPad_2 {
	padding-left: 2px;
	padding-right: 2px;
}




/********************
***  VISIBILITY   ***
********************/

.Hide {
 /*   visibility: hidden;*/
    display: none;
}


.Hidden {
	visibility: hidden;
 /*   display: none;*/
}


.Visible {
    visibility: visible;
}


/*		
.Show {
    visibility: visible;
}
*/


/***************
***  FONTS   ***
***************/


.FontArial {
	font-family: Arial, Helvetica, sans-serif;
}

.FontArialBlack {
	font-family: "Arial Black", Gadget, sans-serif;
}
	

.FontComic {
	font-family: "Comic Sans MS", cursive, sans-serif;
}


.FontBookman {
	font-family: "Bookman Old Style", serif;
}


.FontTimes {
	font-family: "Times New Roman", Times, serif;
}


.FontCourier {
	font-family: "Courier New", Courier, monospace;
}

.FontStuditious {
	font-family: "American Typewriter", Didot, Georgia, serif; 
}

.FontHand {
	font-family: "Lucida Handwriting", "Script MT", "Segoe script", serif; 
}



/**********************
***  TEXT  COLORS   ***
**********************/

.TextBlack, .Black {
    color: #000;
}

.TextWhite, .White {
    color: #FFF;
}


.TextGreen, .Green {
    color:#008000;
}

.TextDarkGreen, .DarkGreen {
    color:#006400;
}

.TextLightGreen, .LightGreen {
    color:#90EE90;
}

.TextLime, .Lime {
    color:#00FF00;
}



.TextBlue, .Blue {
    color:#0D6EFD
}

.TextDarkBlue, .DarkBlue {
    color:#00008B;
}

.TextLightBlue, .LightBlue {
    color:#ADD8E6;
}


.TextRed, .Red {
    color: #FF0000;
}
		

.TextOrange, .Orange {
    color: #FFA500;
}


.TextYellow, .Yellow  {
    color: #FFFF00;
}		

.TextGrey, .Grey, .TextGray, .Gray {
    color: #999999;
}

.TextLightGrey, .LightGrey, .TextLightGray, .LightGray {
    color: #CCCCCC;
}

.TextDarkGrey, .DarkGrey, .TextDarkGray, .DarkGray {
    color: #666666;
}



/**********************
***  FILL COLORS   ***
**********************/

.FillLightGrey, .BgLightGrey {
    background-color: #E9E9E9;
}

.FillBlack, .BgBlack {
    background-color: #000;
}

.FillWhite, .BgWhite {
    background-color: #FFF;
}

.FillGreen, .BgGreen {
    background-color:#008000;
}

.FillDarkGreen, .BgDarkGreen {
    background-color:#006400;
}

.FillLightGreen, .BgLightGreen {
    background-color:#90EE90;
}

.FillLime, .BgLime {
    background-color:#00FF00;
}



.FillBlue, .BgBlue {
    background-color:#0D6EFD
}

.FillDarkBlue, .BgDarkBlue {
    background-color:#00008B;
}

.FillLightBlue, .BgLightBlue {
    background-color:#ADD8E6;
}


.FillRed, .BgRed {
    background-color: #FF0000;
}
		

.FillOrange, .BgOrange {
    background-color: #FFA500;
}


.FillYellow, .BgYellow  {
    background-color: #FFFF00;
}		

.FillGrey, .BgGrey, .FillGray, .BgGray {
    background-color: #999999;
}

.FillLightGrey, .BgLightGrey, .FillLightGray, .BgLightGray {
    background-color: #CCCCCC;
}

.FillDarkGrey, .BgDarkGrey, .FillDarkGray, .BgDarkGray {
    background-color: #666666;
}


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



/* 
		
#######################################
###  Modularware -  Default Layout  ###
#######################################
		
(C)opyright 2014 - Modularware
www.modularware.com

File: modularware/default-layout.css

*/

body {
    height: 100%;
    margin: 0;
}
		
html {
    height: 100%;
    box-sizing: border-box;
}
		
*,*:before {
    box-sizing: inherit;
}
		
*:after {
    box-sizing: inherit;
}


#PageWrapper {
	height: 100%;
    margin: auto;
/*    max-width: 1600px;*/
}


#StickyFooter {
    height: 100%;
    display: flex;
    flex-direction: column;
}
		
#StickyFooter_Top {
    flex: 1 0 auto;
}
		
#StickyFooter_Foot {
    flex-shrink: 0;
}





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



/* 
		
#######################################
###  Modularware -  Default Styles  ###
#######################################
		
(C)opyright 2014 - Modularware
www.modularware.com

File: modularware/default-styles.css

*/


/****************
***  GENERAL  ***
****************/

body {
    color: #000000;
    background-color:#CCFFFF;
    font-family: "Times New Roman", Times, serif;
    font-size: 14px;
    line-height: 1.5;
}



#DevModeBar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color:#FF0000;
	z-index: 127;
}





/**********************
***  HTML ELEMENTS  ***
**********************/

h1 {
    color: #000000;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 32px;
	text-align:center;
}
		
h2 {
    color: #000000;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 22px;
	text-align:center;	
}



a {
	text-decoration: none;
	color:#0055FF;
}


/**********************
***  NAMED STYLES   ***
**********************/

.Critical {
	font-size:large;
	font-weight:bold;
	color:#FF0033;
}

.Fail {
	font-weight:bold;
	color:#FF0033;
}


.Pass {
	font-weight:bold;	
	color:#339933;
}



.Invalid {
	color:#FF0033;
}

.Warning {
	color:#FF6700;
	color:#F05E23;	
}

.Caution {
	color:#FFFF00;
}

.Success {
	color:#339933;
}

.Valid {
	color:#339933;
}



.Ok {
	font-size:large;
	font-weight:bold;	
	color:#339933;  /* Green */
}


.Notice {
	font-size:large;
	font-weight:bold;
	color:#FFCC00;  /* Orange */
}


.Note {
	font-size:large;
	font-weight:bold;	
	color:#0066FF;  /* Blue */
}












/****************
***  PANELS   ***
****************/

#StickyFooter_Top {
    background-color:oldlace;
}


#HeaderPanel {
	margin: 1em 0 0 0 ;
}


#CenterPanel {
	padding: 2em;
}


/****************
***  HEADER   ***
****************/


header {
	overflow:hidden;
	width:100%;
}

.HeaderContainer {
	display:flex;
}


.Header_Logo {
	flex : 1;

  	margin-left: auto;
 	margin-right: auto;
	max-width:100%;
	
	display: block;	
	padding:10px;	
	
}


.Header_Image {
	display: block;
    margin: .2em;
/*	border: 1px solid black;
/*    text-align: center;*/
}



.Header_Image_Text_Container {



}


#Header_Image_Text_Container h1 {
	margin-top: 0;
}





/****************
***  FOOTER   ***
****************/



.Footer_Bar {
    margin: 1em;
}



/********************
***  NAVIGATION   ***
********************/

.Nav_Breadcrumb {
	padding: 0;
	border: 0;
	margin: 1em 0;
}



/**************
***  CARD   ***
**************/


.Card {
	box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
	padding: 1em;
	min-width: 260px;
}


.Card_Highlight {
	background-color:FloralWhite;
}



/***************
***  FORMS   ***
***************/


form {
	margin: 1em;
}


form section {
	padding-bottom: 2em;
}



form .AutoCaptcha {
	visibility: hidden;
	max-height: 0px;
	padding: 0px;
	margin: 0px;
}


form fieldset {
	border:none;
}


form ul {
	list-style: none;
/*	margin: 0 0 0 2em;*/
	padding: 0;
/*	width:100%;*/
	text-align:center;	
	
}


form li {
	text-align:left;
	display: flex;
	flex-wrap: wrap;
	margin: 1em 1em 1em 0;	
}


form li.Center {
	display: inline-block;
}


form label {
	text-align:left;
	font-weight:bold;
	flex: 1 0 125px;
	max-width: 125px;
} 


form .Match_Label {
	flex: 1 0 125px;
	max-width: 125px;
	text-align:left;
} 


form .Note {
	text-align:left;
	font-weight:normal;
	max-width: 95%;
	padding-left:30px;
}


form label.FullWidth {
	flex: 1 0 230px;
	max-width: 525px;
}


form label.Option {
	flex: 0 0 230px;
	max-width: 525px;
	font-weight:normal ;
}



form .Match_Input {
	flex: 1 0 230px;
	max-width: 400px;
	text-align:left;
}


form input {
	flex: 1 0 200px;
	max-width: 400px;
	padding: .3em;
	border-radius: 5px;
	height: 30px;
}



form textarea {
	flex: 1 0 200px;
/*	max-width: 400px;*/
	padding: .3em;
	border-radius: 5px;
}


form select {
	flex: 1 0 170px;
	max-width: 400px;
	padding: .3em;
	border-radius: 5px;
	margin: .3em;
}


form select.Small {
	flex: 1 0 80px;
	max-width: 150px;

}


form select.HalfWidth {
	max-width: 200px;
}


form select:invalid {
	Color:#999999;
}

form select option {
	Color:#000000;
}

form input[type=checkbox] {
	flex: 0;
	height: auto;
}

form input[type=radio] {
	flex: 0;
	height: auto;
	margin-right :.6em;
}



form .Blank-Label {
	text-align:left;
	flex: 1 0 125px;
	max-width: 125px;
} 


form .Blank-Line {
	text-align:left;
	flex: 1 0 230px;
	max-width: 525px;
	height:1em;
}



form .RadioField {
/*	padding: 0 .3em 0 .3em;*/
	flex: 1 0 230px;
	max-width: 100%;
	font-weight: normal;
	text-align: left;
	display: inline-block;
}
	


form .RadioField label {
/*	flex: 0;*/
	font-weight: normal;
	text-align: left;
	align-items: center;
}



.TextMiddle {
	flex: 0;
	display: flex;
	align-items: center;
}


.NoBreak {
	flex:0;
	white-space: nowrap;
}





form .RadioLabel_Short_Multi {
	flex: 0;
	display: flex;
	align-items: center;
	vertical-align: middle;
	margin-right: 1em;
	white-space: nowrap;
}


form .CheckboxField {
/*	padding: 0 .3em 0 .3em;*/
	flex: 1 0 230px;
	max-width: 100%;
	font-weight: normal;
	text-align: left;
}

form input[type=date] {
/*flex: 0;*/
	max-width: 8.5em;

}
	


form .CheckboxField label {
/*	flex: 0;*/
	font-weight: normal;
	text-align: left;	
}



form .Button {
	margin: 2px 5px;
	border: 2px solid #BBBBBB;
	padding: 3px 10px;	
	background-color:#FAFAFA;
    font-size: 14px;	
	cursor: pointer;
	width: auto;
	flex: 0;
}


form .Button:hover {
    background-color:#BBBBBB;
	color:#000000;
}


form .AjaxField {
	flex: 1 0 180px;
	max-width: 400px;
	text-align: left;
	display: Flex;
/*	padding: .3em;
	border-radius: 5px;*/
}

form .AjaxField select {
	width: 100%;
	
	
/*	padding: .3em;
	border-radius: 5px;*/
}


form .AjaxIcon {
	display: block;
	height: 30px;
	width: 30px;
	padding: 0 0 0 3px;
}

form .AjaxIcon span{
	display: block;
	height: 30px;
	width: 30px;	
	
}

form .AjaxIcon img{
	height: 30px;
	width: 30px;
	padding: 0;
}


form .Invalid {
	border: #FF0000 solid 2px ;
}


form hr {
	margin: 1.5em 0 1em 0;

}



.SelectionButton {
	display: inline-block;
	margin: 4px 4px;
	border: 2px solid #BBBBBB;
	border-radius: 5px;
	padding: 0 5px;	
	background-color:#FAFAFA;
    font-size: 14px;	
/*	cursor: pointer;*/
}

.RemoveSelectionButton {
	display: inline-block;
	max-height : 1em;
	margin: 0;
	padding: 0 5px 0 10px;
}


.ShortTextbox {
	max-width: 7em;
}


.TinyTextbox {
	max-width: 3rem;
}


.MiddleContent {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}


.InlineFlex {
  display: inline-flex;
}


/*** NEW  12/22  ***/
.TextboxTiny {
	max-width: 2em;
}

.Textbox2xSmall {
	max-width: 3em;
}

.TextboxExtraSmall {
	max-width: 4em;
}

.TextboxSmaller {
	max-width: 8em;
}

.TextboxSmall {
	max-width: 12em;
}

.TextboxMedium {
	max-width: 24em;
}

.TextboxLarge {
	max-width: 36em;
}

.TextboxLarger {
	max-width: 48em;
}

.TextboxExtraLarge {
	max-width: 64em;
}



/***************
***  TABLES  ***
***************/

table {
	table-layout: fixed;
	font-size: medium;
	padding: 0;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	vertical-align: text-top;
}


tr.ColumnHeading {
	font-weight: bold;
	background-color: #E9E9E9;
}


th.ColumnHeading {
	text-align:left;
	padding: .25em .5em;
}


td {
	padding: 0 .5em;
}


td.RowHeading {
	text-align: left;
}



table.Bordered {


}


table.Bordered th {
	text-align: left;
	white-space: nowrap;
	padding: .3em .5em;
	border: thin solid black;
	border-bottom: medium solid black;
}


table.Bordered td {
	padding: .1em .5em;
	border: thin  solid black;
}


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


.Width_Small {
	width: 25px;
	overflow: hidden;
}


/*********************
***  BOXED  MENUS  ***
*********************/

.MenuBar {
	
}


.MenuBar h3 {
	width:100%;
	background-color: #CCCCCC;
	border-radius: 10Px;
	padding: 10px;

}


.BoxedMenuItem {
	width:200px;
	height: 80px;
	box-sizing: border-box;
	min-width:110px;
	text-align:left;
	padding: 20px 10px;
	
/*	
	align-items: center;*/
}

.BoxedMenu_Container {

	display : flex;
	padding: 0 0 20px 0;
}




.BoxedMenuItem img {

	vertical-align:middle;
}


.BoxedMenuText {
	display:inline-block;
	padding:5% 10px;
	/*	padding: 10px; */
	color: #0055FF;
	height:100%;
	
}


.BoxedMenuItem a {
	text-decoration: none;
	color:#0055FF;
}

.BoxedMenuItem a:hover div{
	text-decoration: underline;
	color:#0055FF;
}


/***********************
***  PROGRESS  BAR   ***
***********************/

.ProgressBar {
	background-color:#CCCCCC;
	border: 1px solid black;
	border-radius: 6px;	
	width: 100%;
}


.Progress {
	border-radius: 5px 0 0 5px ;
	background-color:#0099FF;
	height: 16px;	
	width: 1%;
}





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


