body{
    background-color: #99ccff;
    font-family: sans-serif;
}
nav{
    background-color: #3399ff;
    padding: 10px;
    width: 100%;
    margin: none;
    position: fixed;
}
main{
    padding: 10px;
}
a{
    text-decoration: none;
}
a:visited{
    color: white;
}
a:link{
    color: white;
}
a:hover{
    color: white;
}
nav ul li{
    list-style-type: none;
    display: inline;
    padding: 5px;
    text-decoration: none;
    color: white;
}
nav ul li a:hover{
    background-color: #0073e6;
    padding-top: 25px;
    padding-bottom: 25px;
}
main img{
    width: 100%;
    height: auto;
    display: inline;
}
div img{
    width: 300px;
    height: 200px;
}
footer{
    background-color: #3399ff;
    width: 100%;
    padding: 30px 0px;
    text-align: center;
    color: white;
}
/*drop down menu*/
.dropbtn {
    background-color: #3399ff;
    color: white;
    font-size: 16px;
    border: none;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
    z-index: 1;
}
.dropdown-content a {
    padding: 25px 16px;
    text-decoration: none;
    display: block;
}
.dropdown:hover .dropdown-content {
    display: block;
    background-color: #3399ff;
}
/*end drop down*/
table{
    padding: 50px;
}
form{
    padding: 50px;
}
/*columns*/
/* .leftside{
    float: left;
}
.rightside{
    float: right;
}
.row:after{
    content: "";
    display: table;
    clear: both;
} */
.column {
    float: left;
    padding: 10px;
    clear: both;
}
.left {
  width: 35%;
  float: left;
}
.right {
  width: 65%;
  float: right;
}
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
.clear{
    clear: both;
}
/* lightbox */
/* Lightbox background */
#lightbox {
    display:none;
    background:#000000;
    opacity:0.9;
    filter:alpha(opacity=90);
    position:absolute;
    top:0px;
    left:0px;
    min-width:100%;
    min-height:100%;
    z-index:1000;
}
/* Lightbox panel with some content */
#lightbox-panel {
    display:none;
    position:fixed;
    top:100px;
    left:50%;
    margin-left:-200px;
    width:400px;
    background:#FFFFFF;
    padding:10px 15px 10px 15px;
    border:2px solid #CCCCCC;
    z-index:1001;
}

/* #lightbox_modal{
    position: fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    display:none;
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
}
  
#lightbox_area{
    color:black;
    width: 60%;
    height:400px;
    margin:80px auto;
    overflow: auto;
    z-index: 15;
    border:1px solid gray;
    border-radius: 3px;
    padding: 10px;
    display: none;
    background: #fff;
    box-shadow: 0px 0px 8px rgba(0,0,0,0.5), 0px 0px 8px rgba(0,0,0,0.2);
} */