@import "compass/css3";


 .topbar {
    background-image: url("bookpic.png");
    overflow: hidden;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 33%;
    border: 1px solid transparent;
  }

  .bottombar {
    background-image: url("bookpic.png");
    overflow: hidden;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 21%;
  }



#links a {
    color: black;
}

#mainbody {
    background-image: url("bookpic.png");
    width: 100%;
    height: 21%;
    background-position:top;
    background-color: wheat;

}

#body{
    background-color: white;
}
#subpage {
    background-color: wheat;
}

.cmenu {
    background-color: black;
    color: white;
}

#bookpic img{
    width: 100%;
    height: 21%;
    image-rendering: pixelated;
    position: fixed;
    top: 0;
    left: 0;
}


h3{
    color: white;
    text-align: center;
    background-color: black;
}



h1, h2, p{
    text-align: center;
}
.push{
    padding-top: 20%;
}
.a {
    width: 100%;
    vertical-align: middle;
    text-align: center;
    table-layout: fixed;
    
    border-spacing: 30px;
    border-color: black;
}

#pad{
    padding: 20px;
    background-color: wheat;
    font-style: white;
    border-width: 10px;

}

#pad1{
    color: white;
}

.blank{
    border-bottom: hidden;
    border-top: hidden;
    border-right: hidden;
    border-left: hidden;
}

.t{
    width: 100%;
    vertical-align: middle;
    text-align: center;
    margin-top:150px;
    background-color: white;
    table-layout: fixed;
    height: 100%;  
}

th, td{
    border: 5px solid black;
    padding: 15;
    border-collapse: separate;
    
}

img{
    object-fit: fill;
}

nav{
    text-align: center;   
}


ul#outer, #outer ul{
    margin:0;
    padding:0;
    list-style-type:none;
    height: 32px;
    }
    
#outer li{
    float:left;
    width:200px;
    position:relative;
    }
    
#outer li a{
    display:block;
    width:100%;
    line-height:30px;
    text-align:center;
    color:white;
    text-decoration:none;
    background-color:black;
    border:1px solid white;
    }
    
#outer li a:hover{
    background-color:white;
    color:black;
    }
    
#outer li ul{
    display:none;
    position:absolute;
    left:0;
    top:32px
    }
    
#outer li:hover ul {
    display:block
    }
    
#outer li ul a{
    background-color:black;
    }

td{
    text-align:center; vertical-align: middle;

    }

#bookimage {
    width: 300px;
    height: 265px;
}


.dropbtn {
    background-color: dark gray;
    color: black;
    padding: 16px;
    font-size: 16px;
    border: 2px solid black;
    cursor: pointer;
  }
  
  /* Dropdown button on hover & focus */
  .dropbtn:hover, .dropbtn:focus {
    background-color:white;
    color: black;
    
  }
  
  /* The search field */
  #myInput {
    box-sizing: border-box;
    background-image: url('searchicon.png');
    background-position: 14px 12px;
    background-repeat: no-repeat;
    font-size: 16px;
    padding: 14px 20px 12px 45px;
    border: none;
    border-bottom: 1px solid #ddd;
  }
  
  /* The search field when it gets focus/clicked on */
  #myInput:focus {outline: 3px solid #ddd;}
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
    float: left;
   
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f6f6f6;
    min-width: 230px;
    border: 1px solid #ddd;
    z-index: 1;
    height: 250px;
    overflow-x: hidden;
    overflow-y: auto;
  }
  

  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #f1f1f1}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {display:block;}