/* table */
.menu-table-style {
   display: table;
   width: 100%;
   table-layout: fixed;
   padding-left:0;  
   border-collapse:collapse;
	box-sizing: border-box;
}


/* table-row */
.menu-table-row-style {
 	display: table-row;
}

.main-menu-table-row-style {
   background-color: #d3d3d3;   
}


/* table-cell */
.menu-table-cell-style {
	display: table-cell;
   text-align: center;
   padding: 0.5em;
}

.main-menu-table-cell-style {
   border-bottom: 5px solid #a7adb5;
	border-left: 1px solid #fff;
   border-right: 1px solid #fff;   
}

.main-menu-table-cell-style:hover {
 	background-color: #85BCE9; /* #8BDDE8; */  
}

.menu-activeTab {    
   background-color: #a7adb5;
   border-bottom: 5px solid #85BCE9 /* #31daff; */ /*  #01bbd4; */
}


.menu-activeTab:hover  {    
   background-color: #85BCE9; /* #8BDDE8; */  
   /* border-bottom: 5px solid #a7adb5; */
}


.footer-menu-table-cell-style {
	border-left: 1px solid #c0c0c0; 
   border-right: 1px solid #c0c0c0; 

}

.menu-table-cell-style:first-child {
   border-left: none;
   border-top-left-radius: 0.3em;	
}

.menu-table-cell-style:last-child {
   border-right: none;
   border-top-right-radius: 0.3em;
}









