.dropbtn {}
.dropdown {}

.dropcontainer {
	display: block;
	width: 180px;
	height: 0px;
	
	position: absolute;
	top: 45px;
	right: 0;
	
	overflow: hidden;
	
	transition: height .3s;
	
	z-index: 2;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	display: block;
	position: relative;
	right: 0;

	/*background-color: #FFF;*/
	min-width: 180px;
	box-shadow: 4px 8px 10px -5px rgba(0,0,0,0.6);

	top: -120px;

	font-size: 14px;
	font-style: italic;
	text-shadow: 1px 2px 2px rgba(0,0,0,.7);
	
	background: linear-gradient(to bottom right, #3a3a3a, #111);
	
	border: 1px solid #AF0;
	border-top: 0px;
	border-right: 0px;
	
	transition: top .3s;
}

/* Links inside the dropdown */
.dropdown-content .ddr {
	color: black;
	padding: 10px 16px;
	text-decoration: none;
	display: block;

	font-style: none;
	color: #FFF;
	
	border-bottom: 1px solid rgba(32,32,32,.6);
	cursor: pointer;

	transition: padding .3s;
}

/* Change color of dropdown links on hover */
.dropdown-content .ddr:hover {
	background-color: #4A0;/*#267;*/
	color: #FFF;
	
	padding-left: 24px;
	
	text-shadow: 0px 0px 3px rgba(0,0,0,0.8);
}


.dropdown-show {
	display: block;
	top: 0px;
}

.dropcontainer-show {
	height: 200px;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}
