.top{
  background-color: #818284;
  text-transform: uppercase;
	overflow: visible;
}
.top::after{
	content: '';
	clear: both;
}
.top *{
	color: white;
  display: inline-block;
	margin: 0;
}
.top a{
	text-decoration: none;
}
.top a:hover{
	text-decoration: underline;
}
.top > .site-control{
	font-size: 0; /* removes whitespace between children */
	padding-top: 10px;
	padding-bottom: 10px;
}
.top > .site-control > a{
	border-right: dotted white 1px;
	font-size: 0.8rem;
	padding: 0 7px;
}

.site-control .dropdown {
	font-size: 0.8rem;
	margin: 0 10px;
	cursor: pointer;
	background-color: inherit;
	padding-right: 0 !important;
}
.site-control .indicate-dropdown::after{
	content: "";
	display: inline-block;
	vertical-align: super;
	margin-bottom: -3px;

	width: 0;
	height: 0;


	border-left: 5px solid transparent;
	border-right: 5px solid transparent;

	border-top: 5px solid white;
}

.site-control .dropdown .options{
	display: block;
	background-color: #818284;
	padding: 7px;
	margin-left: -7px;
	position: absolute;
	z-index: 2;
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.4s ease;
}
.site-control .dropdown .options a{
	display: block;
	color: #818284;
	transition: color 0.2s ease;
}

.site-control .dropdown:hover .options {
	transform: scaleY(1);
}
.site-control .dropdown:hover .options a{
	color: white;
}

@media screen and (max-width:400px){
  .top > div{
    font-size: 0.8em;
  }
}
@media screen and (max-width: 570px){
	.top{
		 display: none;
	 }
}