/*.left{*/
	/*float:left;*/
/*}*/

.top_bar{
	line-height: normal;
	padding: 0;
	outline: 0 none;
	font-family: Verdana, Arial, Helvetica;
	width:100%;
	margin:0 auto 10px;
	background:#333;
	border-bottom: 1px solid #222;
	box-shadow: 0px 0px 9px 1px #000;
	z-index: 1000;
	top: 0;
}

.top_menu{
	min-width:300px;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding: 3px 5px;
	text-align: right;
	display: flex;
}

.pages{
	display: flex;
	flex-shrink: 1;
	flex-wrap: wrap;
	position: relative;
}

.log_menu{
	align-content: flex-start;
	flex-grow: 1;
	min-width: 160px;
}

/* Navigation Links */
.top_menu a{
	font-size: 10pt;
	color: #ccc;
	padding: 3px 5px;
	border: 1px solid #757575;
	margin: 1px 3px 2px;
	border-radius: 3px;
	display: inline-block;
	text-decoration: none;
	font-weight:bold;
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0, #292827),
		color-stop(1, #8A8A8A)
	);
	background-image:-o-linear-gradient(bottom, #292827 0%, #8A8A8A 100%);
	background-image:-moz-linear-gradient(bottom, #292827 0%, #8A8A8A 100%);
	background-image:-webkit-linear-gradient(bottom, #292827 0%, #8A8A8A 100%);
	background-image:-ms-linear-gradient(bottom, #292827 0%, #8A8A8A 100%);
	background-image:linear-gradient(to bottom, #292827 0%, #8A8A8A 100%);
}

.top_menu a:hover{
	color:#fff;
}

/* Dropdown Styles */
.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #444;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1001;
	border-radius: 3px;
	top: 100%;
	left: 0;
}

.dropdown-content a {
	color: #ccc;
	padding: 8px 12px;
	text-decoration: none;
	display: block;
	text-align: left;
	border: none;
	margin: 0;
	border-radius: 0;
	background: #444;
	font-size: 10pt;
	border-bottom: 1px solid #555;
}

.dropdown-content a:last-child {
	border-bottom: none;
}

.dropdown-content a:hover {
	background-color: #555;
	color: white;
}

.dropdown:hover .dropdown-content {
	display: block;
}

/* Add a small arrow to dropdown items */
.dropdown > a::after {
	content: " ▼";
	font-size: 0.7em;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
	.dropdown-content {
		position: static;
		display: none;
		width: 100%;
		box-shadow: none;
	}
	
	.dropdown:hover .dropdown-content {
		display: none;
	}
	
	.dropdown.active .dropdown-content {
		display: block;
	}
	
	.dropdown > a::after {
		content: " ▼";
	}
	
	.dropdown.active > a::after {
		content: " ▲";
	}
}