﻿.content {
	padding: 0px;
	width: 910px;
	margin: 0px auto 0px Auto;
	background-repeat: repeat;
	background-color: #FFFFFF;
}
.content h6 {
	box-shadow: 1px 1px 10px 1px #C0C0C0;
	border-width: 5px;
	border-color: #3875D6;
	background-position: center center;
	color: #000000;
	display: block;
	margin: 0px 0 0 0;
	text-align: center;
	font-size: 12px;
	padding-bottom: 5px;
	background-repeat: repeat;
	text-shadow: 1px 1px 0px #ffffff;
	background-color: #FFFFFF;
	padding-top: 2px;
	border-top-style: solid;
		transition-duration:1s;
}
.content h6.active {
	border-width: 1px;
	border-color: transparent #256885 #256885 #256885;
	background: center center no-repeat;
	background-image: url('../img/h3_bg.png');
	border-bottom-style: solid;
	border-top-style: solid;
	background-color: #3875D6;
	color: #FFFFFF;
			text-shadow: 1px 1px 0px #000000;

}
.content h6:hover {
	color: #FFFFFF;
	cursor: pointer;
	background-color: #3875D6;
		transition-duration:1s;
		text-shadow: 1px 1px 0px #000000;
}
.content div {
	margin: 0px;
	padding: 0px;
}

.language-dropdown {
	position: relative;
	display: inline-block;
	left: 39%;
  }
  
  .dropdown-btn {
	background-color: #f8f8f8;
	color: #333;
	padding: 8px 12px;
	font-size: 14px;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 5px;
  }
  
  .dropdown-arrow {
	font-size: 10px;
	margin-left: 3px;
  }
  
  .dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	max-height: 300px;
	overflow-y: auto;
	border-radius: 4px;
  }
  
  .dropdown-content a {
	color: black;
	padding: 8px 12px;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
  }
  
  .dropdown-content a:hover {
	background-color: #f1f1f1;
  }
  
  .dropdown-content a.active {
	background-color: #e6e6e6;
	font-weight: bold;
  }
  
  /* Show the dropdown menu on hover */
  .language-dropdown:hover .dropdown-content {
	display: block;
  }
  
  /* Add some responsiveness */
  @media screen and (max-width: 600px) {
	.dropdown-content {
	  width: 100%;
	  left: 0;
	}
  }
