/* --------------- BASIC STYLES ------------------------ */
body {background-color: linen;}
h1 {color: maroon;
    margin-left: 0px;
    font-family: Arial;}
h2 {color: black;
    font-family: Arial;
    font-size: large;}
p {color: darkblue;
    font-family:arial;}

/* ------------------Style for TABS control ONLY the list ------------------------ */
ul.tab {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}


/* Float the list items side by side */
ul.tab li {float: left;}

/* Style the links inside the list items */
ul.tab li a {
    display: inline-block;
    color: black;
    text-align: center;
    padding: 14px 36px; /* this padding changes the padding around the tabs the first is top bottom - the second left-right*/
    text-decoration: none;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of links on hover */
ul.tab li a:hover {background-color: #ddd;}

/* Create an active/current tablink class */
ul.tab li a:focus, .active {background-color: #ccc;}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 16px;       /* this padding changes the pad content around the actual tab */
    border: 1px solid #ccc; /* this places a nice light border around the tab section */
    border-top: none;
}
/* -------------- END of the TABS Styles ----------------------------- */
