/* RES SEARCH */
#res_search {	
	display:block;
	position:fixed;
	top: 0;
	right: 0px;
	z-index: 99;
	width: 100%;	
}
#res_search a {
	position: absolute;
	right: 60px;
	display: block;
	width:  60px;
	height: 60px;
	background:url(../images/res_search.png) no-repeat left top;
}
#res_search a span {
	
	/*display:none;	*/
}

/* MENU */
#menu_obal {	
	display:block;
	position:fixed;
	top: 0;
	right: 0px;
	z-index: 99;
	width: 100%;	
}
#menu_obal ul#menu {
	margin-top: 60px;
}

/*Strip the ul of padding and list styling*/
#menu_obal ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
}

/*Create a horizontal list with spacing*/
#menu_obal ul li {
	display:inline-block;
	float: left;
	margin: 0;
	border-bottom: 1px solid #fff;
}

/*Style for menu links*/
#menu_obal li a {
	display:block;
	width:100%;
	height: 40px;
	text-align: center;
	line-height: 40px;
	/*font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;*/
	text-transform:uppercase;
	/*color: #fff;
	background: #2f3036;*/
	color: #fff;
	background-color:#f68220;
	text-decoration: none;
}

/*Hover state for top level links*/
#menu_obal li:hover a {
	color:#fff;
	background: #2e3337;
}

/*Style for dropdown links*/
#menu_obal li:hover ul a {
	background: #2e3337;
	color: #2f3036;
	height: 40px;
	line-height: 40px;
}

/*Hover state for dropdown links*/
#menu_obal li:hover ul a:hover {
	color: #fff;
	background: #2e3337;
}

/*Hide dropdown links until they are needed*/
#menu_obal li ul {
	display: none;
}

/*Make dropdown links vertical*/
#menu_obal li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
#menu_obal li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
#menu_obal ul li a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
#menu_obal .show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	text-align: center;
	padding: 0 0;
	display: none;
}

/*Hide checkbox*/
#menu_obal input[type=checkbox]{
	display: none;
	-webkit-appearance: none;
}

/*Show menu when invisible checkbox is checked*/
#menu_obal input[type=checkbox]:checked ~ #menu{
	display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 1220px){
	/*Make dropdown links appear inline*/
	#menu_obal ul {
		position: static;
		display: none;
		margin: 0;
		padding: 0;
	}
	/*Create vertical spacing*/
	#menu_obal ul li {
		margin: 0;
		padding: 0;
	}
	/*Make all menu links full width*/
	#menu_obal ul li, li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	#menu_obal .show-menu {
		display:block;
		width: 60px;
		position:absolute;
		top: 0;
		right: 0;
	}
}
/* MENU */