/* Menü ------------------------------------------------- */


/* Reset */
.nav,
.nav a,
.nav ul,
.nav li,
.nav div,
.nav form,
.nav input {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

.nav {
-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
}

.nav a { text-decoration: none; }

.nav li { list-style: none; }

/* Menu Container */
.nav {
	display: inline-block;
	position: relative;
/*	position:absolute;*/
/*	top:30px;*/
	cursor: default;
	z-index: 500;
/*  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);	*/
}

/* Menu List */
.nav > li {
	display: block;
	float: left;	
}

/* Menu Links */
.nav > li > a {
	position: relative;
	display: block;
	z-index: 510;
	height: 90px;
	padding: 0 20px;
	line-height: 90px;
	
	font-weight: bold;
	font-size: 20px;
	color: #ffffff;
	text-shadow: 0 0 1px rgba(0,0,0,.35);

/*	background: #372f2b;*/
	background-image:url(images/menback.png);
	background-repeat:repeat;
/*	border-left: 1px solid #4b4441;*/
	border-left: 1px solid #7fd4f4;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease;
}

.nav > li:hover > a { 
/*	background: #4b4441; */
	background-image:url(images/menback-hover.png);
	background-repeat:repeat-x;
}

.nav > li:first-child > a {
	border-radius: 3px 0 0 3px;
	border-left: none;
}


/* Menu Dropdown */
.nav > li > div {
	position: absolute;
	display: block;
	width: 100%;
	top: 90px;
	left: 0;

	opacity: 0;
	visibility: hidden;
	overflow: hidden;

/*	background: #ffffff;*/
	background: rgba(255,255,255,0.95);
	border-radius: 0 0 5px 5px;

	-webkit-transition: all .3s ease .15s;
	-moz-transition: all .3s ease .15s;
	-o-transition: all .3s ease .15s;
	-ms-transition: all .3s ease .15s;
	transition: all .3s ease .15s;
}

.nav > li:hover > div {
	opacity: 1;
	visibility: visible;
	overflow: visible;
}

/* Menu Content Styles */
.nav .nav-column {
	float: left;
/*	width: 20%;*/
	padding: 2.5%;
}

.nav .nav-column h3 {
	margin: 20px 0 10px 0;
	line-height: 18px;
	
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 14px;
	color: #372f2b;
	text-transform: uppercase;
}

.nav .nav-column h3.orange { color: #f16457; }

.nav .nav-column li a {
	display: block;
	line-height: 26px;
	
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 13px;
	color: #888888;
}

.nav .nav-column li a:hover { color: #0d87bb; }

.tamogat {
	background-color:#ce4132;
}

.tamogat:hover {
		background-color:#e1584b;
}

.menukep {
	float:right;
	margin-top:40px;
	margin-right:10px;
}

/* Menü ------------------------------------------------- VÉGE */