@charset "UTF-8";
/* CSS Document */
body 
{
	margin: 0px;
	background-color: #222222;
}

a:link, a:visited {
	text-decoration: none;
	color: #EEEEEE;
}

#header
{
	padding: 5px 10px;
	background-color: #222222;
	color: #EEEEEE;
	font-family: 'Trebuchet MS','Lucida Grande', Verdana, Arial, sans-serif;
	font-size: 11px;
	text-align: center;
}

#logo
{
	font-family: 'Trebuchet MS','Lucida Grande', Verdana, Arial, sans-serif;
	font-size: 11px;
	text-align: left;
}

#home3
{
	font-size: 10px;
}

#header-title
{
	font-family: 'Trebuchet MS','Lucida Grande', Verdana, Arial, sans-serif;
	font-size: 20px;
	margin: 0;
}

#lefthandmenu
{
	position: absolute;
	top: 23px;
	left: 200px;
	right: 50px;
	height: 32px;
	text-align: left;
	font-family: 'Trebuchet MS','Lucida Grande', Verdana, Arial, sans-serif;
	font-size: 14px;
	overflow: hidden;
}

#lefthandmenu > span
{
	padding-right: 18px;	
}

#righthandmenu
{
	position: absolute;
	top: 23px;
	right: 0px;
	height: 32px;
	font-family: 'Trebuchet MS','Lucida Grande', Verdana, Arial, sans-serif;
	font-size: 14px;
	padding-right: 10px;	
}

#footer
{
	height: 20px;
	background-color: #222222;
	color: #EEEEEE;
	font-family: 'Trebuchet MS','Lucida Grande', Verdana, Arial, sans-serif;
	font-size: 11px;
	text-align: center;
	padding: 5px 20px 0px;
}

.fallback
{
	color: #EEEEEE;
	text-align: center;
}

.link-button{
	cursor: pointer;
}

#burger, #dropdownmenu {
	display: none;
}

@media only screen
and (max-width : 736px)
{
	#lefthandmenu
	{
		display: none;	
	}
	
	#righthandmenu
	{
		display: none;
	}
	
	#footer
	{
		bottom: 0px;
		padding: 5px 5px 0px;
		font-size: 9px;
	}

	#burger {
		display: block;
		width: 44px;
		height: 40px;
		position: absolute;
		-moz-border-radius: 4px;
		-webkit-border-radius: 4px;
		border-radius: 4px;
		background-color: black;
		background-image:url('../jbcore/classic/img/burger.svg');
		background-position:center;
		top: 10px;
		right: 15px;
	}
	
	#dropdownmenu {
		display: none;
		width: 160px;
		position: absolute;
		-moz-border-radius: 4px;
		-webkit-border-radius: 4px;
		border-radius: 4px;
		top: 54px;
		right: 15px;
		background-color: #222222;
		z-index:1000;
		border-style: solid;
		border-color: #FBFBFB;
	}
	
	#dropdownmenu .link-button {
		display: block;
		padding: 4px 4px;
		color: #EEEEEE;
		border-style: solid;
		border-color: #777;
		border-width: 1px;
		text-align: center;
		font-family: 'Trebuchet MS','Lucida Grande', Verdana, Arial, sans-serif;
		font-size: 22px;
	}
}

