* {
    box-sizing:border-box;
    margin: 0;
    padding: 0;
}

/* Header Boxes */

    /* Header Box No Radius */
.bxhdnr {
    background-color: #088FE2;
    border: 1px solid black;
    text-align: center;
    width: 100%;
}

    /* Header Box W/ Radius */
.bxhdr {
    background-color: #088FE2;
    border: 1px solid black;
    border-radius: 5px;
    text-align: center;
    width: 100%;
}
        
/* Header Boxes Font White */
.bxhdrftwh {
    color: white;
    font-size: 1.6vw;
}
        
/* Header Boxes Font Black */
.bxhdrftbk {
    color: black;
    font-size: 1.6vw;
}

/* Main Body Columns */
.column {
    float: left;
    padding: 0.3vw;
}

.left, .right {
    font-size: 1.3vw;
    width: 20%;
}

.lefth, .righth {
    font-size: 1.3vw;
    width: 50%;
}

.middle {
    width: 60%;
}

.middlelg {
    width: 80%;
    padding: 13px 0;
}

.row:after {
    clear: both;
    content: "";
    display: table;
}

/* Announcements */
.ancmt {
    color: black;
    font-size: 1.3vw;
}     

.bbc_table {
    font-size: 1.3vw;
    padding: 1.5vw;
    width: 75%;
}

#carsart {
    
    height: auto;
    padding: 0px;
    width: 100%;
}

a {
    color: blue;
    text-decoration: underline;
}
        
.responsive {
    width: 50%;
    height: auto;
}

.tmp {
    font-size: 1.5vw;
}

.topnav {
    background-color: #ddd;
    color: black;
    font-size:1.3vw;
    margin-top:-7px;
    padding: 1px;
    padding-left: 40%;
    overflow: hidden;
    
}

.topnav a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 0.5vw 1vw;
    text-decoration: none;
}

.topnav a:hover {
    background-color: white;
    color: black;
}

/* TEST AREA */

/* Style The Dropdown Button */
.dropbtn {
  background-color: #088FE2;
  color: white;
  padding: 5px;
  margin:5px;
  font-size: 1vw;
  border: solid;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 1vw;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #097abf;
}
