
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}

table {
    border: 0px solid DimGray;
}

tr {
    border: 0px solid DimGray;
    padding: 5px;
}

th {
    border: 0px solid DimGray;
    padding: 5px;
}

td {
    border: 0px solid DimGray;
    padding: 5px;
}

hr {
    width: 50%;
    text-align: center;
    border-color: Red;
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
    color: unset;
}

.td_left_border {
    border: 2px solid Red;
    border-left: 2px solid Red;
}

.td_right_border {
    border-right: 2px solid Red;
}

.td_left_right_border {
    border-left: 2px solid Red;
    border-right: 2px solid Red;
}

.div_header_large {
    font-size: 65px;
    color: DimGray;
}

.div_header_mediumlarge {
    font-size: 45px;
    color: DimGray;
}

.div_header_medium {
    font-size: 25px;
    color: DimGray;
}

.div_header_small {
    font-size: 20px;
    color: DimGray;
}

.div_large {
    font-size: 65px;
    color: DimGray;
}

.div_medium {
    font-size: 25px;
    color: DimGray;
}

.div_small {
    font-size: 20px;
    color: DimGray;
}

.fade_class {
	background-color: White;
  	transition: background-color 0.6s;
    border: 1px solid White;
    border-radius: 8px;
}
.fade_class:hover {
	background-color: #ffddff;
  	transition: background-color 0.6s;
    border: 1px solid Red;
    border-radius: 8px;
}

