body {
    max-width: 960px;
    margin: 0 auto;
}

.name {
    color: darkblue;
    border-top: 25px solid rgb(140, 140, 140);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 1px;
    padding: 1px 0; /* Shorthand for padding-top and padding-bottom */
    border-radius: 7px 7px 0 0;
}

.name h1 {
    font-size: 2.5em;
    float: left;
    width: 65%;
}

.name p {
    font-size: .9em;
    font-weight: 600;
}

.sidebar {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.2em;
}

.sidebar ul {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
    background-color: rgb(175, 175, 175);
    /* For better compatibility, list both prefixed and unprefixed */
    background-image: -webkit-linear-gradient(rgb(175, 175, 175), rgb(95, 95, 95));
    background-image: linear-gradient(rgb(175, 175, 175), rgb(95, 95, 95));
    border-top: 3px solid rgb(204, 204, 204);
    border-bottom: 3px solid rgb(204, 204, 204); /* Corrected syntax: removed comma */
    border-radius: 5px;
    margin-bottom: 1px;
}

.sidebar li {
    display: inline;
}

.sidebar a {
    display: inline-block;
    text-align: center;
    width: 200px;
    border-right: 3px solid rgb(204, 204, 204);
    padding: 4px;
    text-decoration: none;
    color: white;
    margin-left: 20px;
}

.bottom {
    clear: both;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: .8em;
    background-color: rgba(0, 0, 0, .75);
    color: whitesmoke;
    overflow: hidden;
    /* Added margin-top based on your previous HTML, if this is the footer */
    margin-top: 25px;
}

.map {
    float: left;
    margin: 10px;
}

.repeat {
    float: left;
    width: 50%;
    margin-left: 20px;
}

.mapDetail ul {
    margin: 0;
    padding: 0;
}

.mapDetail li {
    list-style-type: none;
    margin-top: 5px;
}

.mapDetail a {
    display: inline-block;
    text-decoration: none;
    color: whitesmoke;
    background-color: #0066cc;
    font-size: 1em;
    padding: 5px;
    width: 15em;
    text-align: center;
    border-radius: 5px;
}

form {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: dimgray;
}

.required {
    border: 3px solid purple;
    margin: 10px;
}

.required legend {
    color: dimgray;
    margin-bottom: 15px;
}

.required label {
    display: inline-block;
    width: 125px;
    text-align: right;
    margin-right: 5px;
    vertical-align: top;
}

.lfloat {
    float: left;
    width: 500px;
}

input[type="text"],
input[type="number"],
input[type="email"] {
    width: 250px;
    border: 2px solid purple;
    border-radius: 3px;
}

.rfloat {
    /* If this .rfloat is intended to clear the previous floats and sit on its own line, consider clear: both or ensuring it's in a new block formatting context.
       If it's meant to float alongside .lfloat, ensure total width doesn't exceed parent. */
    float: left; /* Keeping as per original */
    margin-bottom: 15px;
    border: 2px solid purple;
    border-radius: 3px;
}

.send {
    width: 175px;
    color: whitesmoke;
    background-color: #0073e6;
    font-weight: 700;
}

.slideshow {
    float: left;
    width: 410px;
    margin: 0 5px; /* Shorthand: 0 for top/bottom, 5px for left/right */
}

.slideshow-1 {
    float: right;
    width: 410px;
    margin: 0 5px; /* Shorthand: 0 for top/bottom, 5px for left/right */
}