﻿/* Dropdown Button */
.dropbtn {
	background-color: #000;
	color: #FFFFFF;
	padding: 10px;
	font-size: 16px;
	border: none;
	cursor: pointer;
	font-family: roboto;
	width: 100%;
	vertical-align: middle;
	text-align: left;
	text-transform: uppercase;
	font-weight: bold;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
	background-color: #3399FF;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    text-transform: uppercase;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 20px 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;}
.side-class {
	width: 300px;
	height: auto;
	float: left;
	font-size: 20px;
	font-family: roboto;
	color: #666666;
	cursor: pointer;
	position: relative;
	left: 10px;
	font-weight: bold;
}
