* {
font-family: "Lucida Sans Unicode", "Tahoma", "Helvetica Neue";
}


.topbtn { border-width: 1px; border-radius: 10px; background-color: rgb(230,230,230); vertical-align: middle; }
.topbtn:hover { background-color: lightgrey !important;  border-color: grey !important;  }
.topbtn:active { background-color: rgb(230,230,230) !important;  }

/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 30px; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #111; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 10px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

.sidenav:hover {
	width: 250px; /* 0 width - change this with JavaScript */
}

.sidenav ul, .sidenav li {
	color: #f1f1f1;
	white-space: nowrap;
}
	
/* The navigation menu links */
.sidenav button {
    padding: 5px 8px 5px 8px;
    border: none;
	text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
	background-color: transparent;  /* formerly #111 */
	color: #818181;
    display: inline-block;
    transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav button:hover {
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-width: 600px) {
	/* .sidenav {width: 15px;} */
	/* .sidenav ul {margin-left: -8px;} */
	.sidenav {width: 25px; background: linear-gradient(to right, #111, transparent) ;}
	.sidenav ul {margin-left: -8px;}
	.sidenav button {margin-left: 3px; padding-left: 0px; display: none;}
	.sidenav:hover {background: linear-gradient(to right, #111 75%, transparent );}
	.sidenav:hover button {display: block;}
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 5%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 15px ; 
	max-width: 800px;
	max-height: 80%; /* 80% of Full height */
    overflow: auto; /* Enable scroll if needed */
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    /* transition: margin-left .5s; */
    padding: 10px 20px 0px 20px ; 
    	
} 

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 10px;}
    .sidenav a {font-size: 18px;}
}

/* Definition Class noprint */
@media print {
	.noprint { display: none; }
}


