﻿/**********************************************************************
 * Styles.css                                                         *
 *                                                                    *
 * This file is initially empty and you can add any additional styles *
 * or modify any of the styles defined in BaseStyles.css              *
 * This file will never be overwritten.                               *
 *                                                                    *
 * For example, if you want to override just the top padding for a    *
 * menu, you can simply add the following lines:                      *
 *                                                                    *
 * .menus {                                                           *
 * 	padding-top: 20px;                                            *
 * 	}                                                             *
 *                                                                    *
 * This will keep all the other styles of the "menus" style as-is,    *
 * but modify the top padding to be 20px.                             *
 *                                                                    *
 * You can also, add a new style by just specifying it.               *
 *                                                                    *
 * .menus {                                                           *
 * 	padding-top: 20px;                                            *
 * 	text-align: center;                                           *
 * 	}                                                             *
 * 	                                                              *
 * In the above case, we added the text-align style.  This style was  *
 * not specified in the original declaration of the menus style.      *
 *                                                                    *
 **********************************************************************/
.pcC { /* page container center (contents of page container) */
	background-color: #ffffff;
	height: 100%;
	padding: 10px;
	text-align: center;
	vertical-align: top;
	width: 100%;
	}
	
	.updatePanelContent2 { /* panel container */
	width: 100%;
	vertical-align: top;
	
	}



	
	div.tableContainer { /* scrolling table container */
	clear: both;
	height: 100%;  /* defines scrolling region height */
	overflow: auto; /* enables scroll bar */
	width: 100%;
	}
	
	.QPageSizeFull  { /* dimensions of quick page */
	height:  100%;
width: 100%;
	}
	 
	.QPageSizeHalf { /* dimensions of quick page */
	height: 50%;
width: 50%;
	}
	 
 
/**********************************************************************
 * Table Rows Styles                                                  *
 **********************************************************************/ 
 
.thc2  { /* column header container (above select checkbox) */
	background-color: #e6e5e3;	
	border-bottom: 1px solid #f0f2ea;
	color:  #777777; 
	font-family: Trebuchet MS, Arial, Verdana, Geneva, ms sans serif;
	font-size: 14px;
	font-weight: normal;
	padding-bottom: 5px;
	padding-left: 6px;
	padding-right: 6px;
	padding-top: 5px;
	text-align: left;
	vertical-align: top;
	}
	
	
	.thc3  { /* column header container (above select checkbox) */
	background-color: #f5f3f0;	
	border-bottom: 1px solid #f0f2ea;
	color:  #777777; 
	font-family: Trebuchet MS, Arial, Verdana, Geneva, ms sans serif;
	font-size: 14px;
	font-weight: normal;
	padding-bottom: 5px;
	padding-left: 6px;
	padding-right: 6px;
	padding-top: 5px;
	text-align: left;
	vertical-align: top;
	}
	
	
	
.tableCellSelectCheckbox {
	padding-left: 0px;
	padding-top: 0px;
	vertical-align: top;
	width: 16px;
	}
	
	
	#overlay {
  position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
}


.mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity (last value) as needed */
    z-index: 1000; /* Make sure it's on top of other content */
}


.dhb1 {
 width: 100vw; /* Full width (cover the whole page) */
 margin: 0 auto;
 padding-left: 5vw;
 padding-right: 5vw;
 box-sizing: border-box;
 text-align: center;
  font-size: 18px;
	font-weight: bold;

}

.pcT1 { /* page container top center edge (header container) */
	background-color: #1f3541;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	height: 30px;
	padding-bottom: 8px;
	padding-left: 8px;
	padding-right: 4px;
	padding-top: 4px;
	width: 100vw;
	}