body {
    /* Set the background image */
    background-image: url('bkgd.jpg');

    /* Make sure the image covers the entire area */
    background-size: cover;

    /* Center the image */
    background-position: center;

    /* Prevent the image from repeating */
    background-repeat: no-repeat;

    /* Optional: Keep the background fixed when scrolling */
    background-attachment: fixed;


    font-family: calibri, Verdana, Arial, Helvetica, sans-serif;
    font-size: 10px;
    color:#4e4e4e;
    letter-spacing:1px;
}

p {
    padding: 10px;
}

#wrapper {
    margin: 0 auto;
    width: 700px;
}

#headerwrap {
    width: 700px;
    float: left;
    margin: 0 auto;
}

#header {
    height: 270px;
    margin: 5px;
}

#banner {
    width: 690px;
    margin-top: -80px;
    border-radius: 10px;
    border: 10px solid #3f3f3f
}

#navigationwrap {
    width: 700px;
    float: left;
    margin: 0 auto;
}

#rightcolumnwrap {
    display: flex;
    align-items: flex-start; /* vertical */
    width: 200px;
    margin: 0 auto;
}

#rightcolumn {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin: 5px;padding:5px;

}

#navigationwrap {
    width: 700px;
    float: left;
    margin: 0 auto;
}
#navigation {
    height: 18px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin: 5px;
    line-height:20px;
    text-align:center;
    font:11px arial;
    padding-top:5px;
    display: flex;
    justify-content: space-evenly;
}


#contentwrap {
    width: 500px;
    float: left;
    margin: 0 auto;
}

#content {
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #ebebeb;
    margin: 5px;
    padding:5px;
}



#footerwrap {
    width: 700px;
    float: left;
    margin: 0 auto;
    clear: both;
}

#footer {
    height: 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin: 5px;
    line-height:20px;
    text-align:center;
}


.title {
  background:#f9f9f9;
  color:#616161;
  text-transform:uppercase;
  font-size:14px;
  font-family:arial, calibri;
  letter-spacing:2px;
  padding-left:5px;
  border-bottom:1px solid #585858;
  border-left:0px solid #bf4465;
  margin-bottom:5px;}
  
  h1 {text-align:center;font:26px georgia;font-style:italic;color:#777;}
  
  
  
    ::-webkit-scrollbar-thumb {
background-color: transparent;  
border-radius: 0px;
border:1px solid #999;
}
::-webkit-scrollbar {
width: 7px; height: 4px; 
background: transparent;
}



a:link, a:visited, a:active {
color:#898989;text-decoration:none;}
a:hover {
color:#000000;}
