.VU_TableBorder
{
 border-collapse: collapse;
 border-style: none;
 border-color: inherit;
 border-width: 0px;
}

/* Style the tab */
div.tab 
{
 overflow: hidden;
 border: 1px solid #0078C1;
 background-color: #0078C1;
 forground-color: #FFFFFF;
}
/* Style the buttons inside the tab */
div.tab button 
{
 background-color: #0078C1;
 color: #FFFFFF;
 float: left;
 border: none;
 outline: none;
 cursor: pointer;
 padding: 7px 8x;
 transition: 0.3s;
 font-size: 12px;
}
/* Change background color of buttons on hover */
div.tab button:hover 
{
 background-color: #0088FF;
 color: #FFFFFF;
}
/* Create an active/current tablink class */
div.tab button.active 
{
 background-color: #FFFFFF;
 color: #0078C1;
 style: bold;
}
/* Style the tab content */
.tabcontent
{
 display: none;
 padding: 2px 3px;
 border: 0px solid #ccc;
 border-top: none;
}
/* Accordion Button*/
button.accordion 
{
 background-color: #0078C1;
 color: #FFFFFF;
 cursor: pointer;
 padding: 5px;
 width: 100%;
 border: 1px;
 text-align: left;
 outline: none;
 font-size: 15px;
 transition: 0.4s;
}
/* Accordion Button Actvie */
button.accordion.active, button.accordion:hover 
{
 background-color: #0078EE;
 font-weight: bold;
}
/* Accordion Button After */
button.accordion:after 
{
 content: '\002B';
 color: #FFFFFF;
 font-weight: bold;
 float: right;
 margin-left: 5px;
}
/* Accordion Button Actvie After */
button.accordion.active:after
{
 content: "\2212";
 font-weight: bold;
}
/* Accordion DIV Section */
div.panel 
{
 padding: 0 18px;
 background-color: white;
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.2s ease-out;
}
