/* GENERAL SPECIFICATIONS */
* {
    box-sizing: border-box;
    /* margin:0; */
	font: 14px arial, helvetica, sans-serif;
	border-collapse:collapse;
}

*, ::before, ::after {
	box-sizing: inherit;
}

body {
	background-color:white;
}

/* HYPERLINK ANCHORS */
a {
	text-decoration: none; 
	color: #000;
}
a:hover {
	color: #1e619c;
	font-weight:bold; 
}

/* INPUT FIELDS */

* input[type=text], * select, * textarea, * input[type=tel], * input[type=number], * input[type=date], * input[type=password], * input[type=email] { 
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;  
}

* input[type=text]:focus, * select:focus, * textarea:focus, * input[type=tel]:focus, * input[type=number]:focus, * input[type=date]:focus, * input[type=password]:focus, * input[type=email]:focus {
  border: 1px solid #2e2e2e;
  box-shadow: 0 0 5px 1px #6e6e6e;
}

* input[type=submit] , input[type=button] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

* input[type=submit]:hover, input[type=button]:hover {
  background-color: #45a049;
}

* input[type=submit]:active, input[type=button]:active{
	background-color:#2e2e2e;
}

* input[type="file"] {
    display: none;
}
.file-upload {
	display: inline-block;
  margin-bottom:2em;
	padding:3px 9px; 
  background:#6e6e6e; 
  color:#fff;
	border:0 none;
  cursor:pointer;
  border: 1px solid #6e6e6e;
  border-radius: 3px;
	min-width:12.3em;
}
.file-upload:hover{
	background-color:#f38630;
	border: 1px solid #f38630;
}

/* MENU: Header */
#menu_header {
	line-height:90px; 
	margin-bottom:-1.75em;
}


.companyLogoText{
    font-family: "Cairo";
	color: #FFF;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	letter-spacing
}
.companyLogoTextSpan{
    display: inline-block;    
	color: #FFF;
	text-transform: uppercase;
	font-size: 30px;
	margin: 10px 0;
    }

/* MENU: Tabs */
#menu_tabs ul {
	list-style: none;
	padding: 0;
	margin: 0 0 0 1em;
}
#menu_tabs li {
	float: left;
	border-bottom-width: 0;
	margin: 0 2em 0 0;
}
#menu_tabs a {
	text-decoration: none;
	/*font-weight: bold;*/
	display: block;
	background-color: #6e6e6e;
	padding: .5em .5em;
	color:#fff;
	width: 8.4em;
	text-align: center;
}
#menu_tabs a:hover {
	background-color: #f38630;
	font-weight:normal;
}
#menu_tabs #tab_selected {
	background-color: #2e2e2e;
}
#menu_tabs #tab_selected a {
	color: #fa6900;
	font-weight: bold;
	background-color: #2e2e2e;
}

/* MENU: Logout Button */
#menu_logout {
	float:right;
	width:8em;
	margin:0;
	padding:.5em;
	background-color:#f38630;
	color:#fff;
}
#menu_logout a {
	color:#fff;
}
#menu_logout ul {
	margin:0;
	padding:0;
	list-style:none;
	text-align:center;
}
#menu_logout ul li ul {
	margin-top:1em;
	display:none;
}
#menu_logout ul li:hover ul {
	display:block;
}
#menu_logout ul li ul li {
	margin-top:.5em;
}

/* MENU: Main Part */
#menu_main {
	/*height:3em;*/ /*
	clear: both;
	padding: .2em 1em;
	line-height:2.75em;
	vertical-align:middle;
	background-color: #2e2e2e;
	margin-bottom: 2.5em;
   */
    clear: both;
    overflow: hidden;
    background-color: transparent;
    vertical-align:middle;
    margin-top: 0.5em;
    margin-bottom: 1em;
    
}

#menu_main a { /*
	display:inline;
	margin: 0;
	padding: .2em 1em;
	border-right: 1px dashed white;
	font-size:1.1em;
	font-weight:bold;
	text-decoration:none;
	color: #fff; */
    
    float: left;
    color: #0D3D56;
    text-align: center;
    padding: 7px 10px;
    text-decoration: none;
    font-size: 12px;
    font-weight:bold;
    
    border: 1px solid #0D3D56;
    border-radius: 5px;
    margin: 5px;
    width: 150px;
    max-width: 150px;
    
}
#menu_main a:last-child {
	/* border:0; */
}
#menu_main a:hover {
	color:#fff;
	background-color:#a7dbd8;
    border: 1px solid white;
    border-radius: 5px;
}
#menu_main #item_selected {
	color: #69d2e7;
}
#menu_main #item_selected:hover {
	color: #fff;
}
@media only screen and (max-width: 600px) {
 
    #menu_main a {
        font-size: 8px;
        width: 90px;
    max-width: 90px;
    }
}
/* MENU: Selection Bar */
#menu_selection{
	width:100%;
	height:3em;
	margin-top: -2.5em;
	margin-bottom: 2em;
	padding: 0.5em;
	text-align:center;
	/*background-color:#a7dbd8;*/
}

/* CONTENT DIVs */
.content_center {
	width:90%; 
	margin:auto; 
	text-align:center;
}
.content_left {
	width:40%;
	margin: auto;
	float:left; 
	text-align:center;
}
.content_right {
	width:60%; 
	margin:auto;
	float:right; 
	text-align:center;
	border-left: 1px white dashed;
}
.content_settings {
	width:40%;
	margin:auto;
}
.content_settings p {
	text-align:left;
	margin-bottom:0.1em;
}
.content_settings input[type=submit]{
	margin-top:.8em;
}
#content_hidden {
	background:#a7dbd8; 
	padding:3%;
	margin-top:1em;
	margin-bottom:2em;
	display:none;
}

/* STANDARD TABLE */
#tb_table {
	width:90%;
	margin:auto;
	margin-bottom:3em;
}
#tb_table td, #tb_table th  {
	padding:3px;
	text-align:center;
	border:1px solid #2e2e2e;
	background-color: #e0e4cc;
}
#tb_table th {
	padding-top:1px;
	padding-bottom:1px;
	line-height:20px;
	font-weight:bold;
	background-color:#f38630;
	color:#fff;
}

#tb_table th.title, #tb_table th.title a {
	font-size:15px;
	font-weight:bold;
	line-height:30px;
	background-color:#2e2e2e; 
	color:#fff;
}

#tb_table tr:nth-child(even) td {
	background-color:#fff;
}
#tb_table  tr.balance td {
	background-color:#a7dbd8;
	font-weight:bold;
}

/* TABLE FOR INPUT FIELDS */
#tb_fields{
	width:95%;
	margin:auto;
	margin-bottom:1em;
	border-collapse:separate;
	border-spacing: 1em 1.25em;
}
#tb_fields td, #tb_fields th {
	text-align:left;
}
#tb_fields td.center {
	text-align:center;
	padding-top:3%;
}

/* TABLE FOR SETTINGS */
#tb_set{
	width:90%;
	border-collapse:separate;
	border-spacing: 2em .75em;
	color:#2e2e2e;
	/* background:#a7dbd8; */
}
#tb_set span{
	/* font-weight:bold; */
}

/* TEXT-FORMATTING */
.heading, .heading_narrow {
	margin-left:auto;
	margin-right:auto;
	margin-bottom:1.5em;
	text-align:center;
	font-weight:bold;
	font-size:1.5em;
	color:#fa6900;	
}
.heading_narrow {
	margin-bottom: .5em;
}
.warn {
	font-weight:bold;
	color:red;
}
.export {
	margin-bottom:2em;
	text-align:center;
}
.alert{
	padding: 8px 35px 8px 14px;
	width:50%;
	margin: 3em auto;
	/*text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);*/
	text-shadow: 1px 1px 0 #fff;
	color: #000;
  background-color: #e0e4cc;
  border: 2px solid #fa6900;
	border-radius: 4px;
}

.content_center h1 {
	margin-top:1.5em;
	font-size:1.1em;
}
.content_center p, .content_center a {
	margin-top:.25em;
	font-weight:bold;
	color:#fa6900;
}



/* new navbar*/

#atcMFnavbar{
    background: #FF1A68;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  
.mainLogoNav a img {
    filter: invert(1);
    max-width: 60px;
    max-height: auto;
}

.mainNav{
    display: none;
}

.mainNav.active{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FF1A68;
}

.mainNav.active a{
    padding: 20px;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.toggleMenuIcon a img {
    filter: invert(1);
}

img.openTBicon.hide{
    display: none;
}

img.closeTBicon {
    display: none;
}

img.closeTBicon.show {
    display: flex;
}

@media only screen and (min-width:991px){
    .mainNav{
        display: flex;
    }
    .mainNav a {
        font-size: 16px;
        padding: 10px;
        color: var(--clr-three);
        font-weight: bold;
        text-decoration: none;
    }
    .toggleMenuIcon{
        display: none;
    }
}
/* end new naw bar*/


/* New CSS 2023 07 19 */

/* Headar bar */
#topbarATCmf{
 background-color:#333;   
 padding: 5px 0px 5px 0px; /* top right bottom left */
}
#topbarATCmfCname{
    margin: 5px 0px 5px 10px; /* top right bottom left */
}
#topbarATCmf span{
   float: right!important;
    color: darkturquoise;
}
#topbarATCmf span a{
    color: darkturquoise;
    margin: 5px 15px 5px 0px; /* top right bottom left */
    text-decoration: none!important;
}
/* new navbar*/

#sectionMainNav{
    background: #0D3D56;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

#mainLogoNav a{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 2em;
    color: azure;
    text-decoration: none!important;
}

.mainLogoNav a img {
    filter: invert(1);
    max-width: 60px;
    max-height: auto;
}

nav.mainNav{
    display: none;
}

nav.mainNav.active{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FF1A68;
}

nav.mainNav.active a{
    padding: 20px;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.toggleMenuIcon a img {
    filter: invert(1);
}

img.openTBicon.hide{
    display: none;
}

img.closeTBicon {
    display: none;
}

img.closeTBicon.show {
    display: flex;
}

@media only screen and (min-width:991px){
    nav.mainNav{
        display: flex;
    }
    nav.mainNav a {
        font-size: 16px;
        padding: 10px;
        color: #FFFFFF;
        font-weight: bold;
        text-decoration: none;
    }
    div.toggleMenuIcon{
        display: none;
    }
}

/* end new naw bar*/
        
/* Customer Search */
   

/* , select, textarea */





.containerCustSearch {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

/* End Customer Search */


/* Form Style */
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}



.ATCMFformcontainer {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  margin: 10px;
}

.ATCMFformcol-20 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.ATCMFformcol-25 {
  width: 35%; 
  display: inline-block;
}

.ATCMFformcol-80 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

.ATCMFformcol-100{
  margin-top: 6px;
}

/* Clear floats after the columns */
.ATCMFformrow:after {
  content: "";
  display: table;
  clear: both;
}

.formError {
    color: #FF0000;
    margin: 0px 0px 0px 0px; /* T R B L*/
    padding: 0px;
    font-size: 12px;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .ATCMFformcol-20, .ATCMFformcol-80, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
  .ATCMFformcol-25 {
    width: 100%; 
}
} 
/* End Form Style */

/* Search Result tables for Report */
/* income expense loans capital monthly annual */

.divForSimpleTable{overflow-x: auto; margin: 5px;}     
.SimpleTable{
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%; }
.thead_SimpleTable{ }
    .title_SimpleTable th{text-align:center; background-color:#fff !important; color:#4682B4 !important; font-size: 20px !important;}
.export_SimpleTable{}
.thead_SimpleTable_Clo{}
    .thead_SimpleTable_Clo th{background-color: #4682B4;  color: white; 
        font-size: 15px; padding: 6px; border: 1px solid #fff; }    
.tbody_ForSimpleTable{}
    .tbody_ForSimpleTable td {border-bottom: 1px solid #000 !important; padding: 6px !important;}        
.tbody_SimpleTable_Raw_Total{ text-align: center; background-color:#fff; color:#4682B4; }