/* dropdown button: event-regates filtering */
.dropdown { position: relative; display: block; }
.dropbtn {
    background-color: #2fa4c4;
    color: white;
    padding: 6px 16px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    position:relative;
}
.dropdown ul { margin-left: 0; }
.dropdown-content {
    list-style: none;
    display: none;
    position: absolute;
    top:100%;
    background-color: #f7f7f7;
    min-width: 130px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-content a {
    color: black;
    white-space: nowrap;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content li:hover {background-color: #d1e8f1}
.dropbtn:hover ~ ul, .dropdown-content:hover { display: block; }
.dropbtn:hover { background-color: #1f94b4; }

/* event-regates page display */
table.regates-table { width: auto; }
table.regates-table thead { background-color: #e2e2e2; }
table.regates-table th, 
table.regates-table td { border-right: 0; border-left: 0; }
table.regates-table ul.event-categories-images,
table.regates-table ul.event-categories {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
table.regates-table ul.event-categories-images li {
  display: inline-block;
  float: left;
}
table.regates-table ul.event-categories-images li a {
	padding: 0px 4px 0px 0px;
}
table.regates-table ul.event-categories-images li a img { min-width: 32px; min-height: 32px;}
.center {text-align: center;}
.middle {vertical-align: middle;}
h2 {font-weight: 600; font-size: 16px; margin-bottom: 5px;}
h2~p {margin-bottom: 5px;}

