*{
	margin: 0;
	padding: 0;
	border: 0;
}
body{
	background: #DDDDDD;
	background: linear-gradient(to bottom, #373737 0%, #060606 100%) fixed;
	font: 13px calibri;
	color: #bbbbbb;
	margin: 40px;
}
a {
	text-decoration: none;
}
section#wrapper{
	min-width: 700px;
}
nav{
    margin: 0 0 0 0;
	font-size: 20px;
	font-weight: bold;
}
nav ul{
	list-style: none;
	width: 100%;
}
nav li{
	float: left;
	position: relative;
	min-width: 20%;
}
nav li:first-child a{
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}
nav li:last-child a{
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}
nav ul li ul li:first-child a {border-radius: 0}
nav ul li ul li:last-child a {
	 border-radius: 0;
	 border: 0;}
nav a{
	background: #ffa84c;
	background: linear-gradient(to bottom, #ffa84c 0%,#ff7b0d 100%);
	text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
	color: #444;
	display: block; /*???*/
	padding: 10px 20px;
	text-align: center;
	transition: all 0.25s ease;
	border-right: 2px solid #000;

}
nav li:hover a{
	background: #8fc400;
	background: linear-gradient(to bottom, #8fc400 0%, #80aa00 100%);
	color: #fff;
	text-shadow: 1px 1px 2px rgba(1,1,1,0.5);
}
nav li ul{
	float: left;
	position: absulote;
	left: 0;
	top: 30px;
	visibility: hidden; /*láthatóság - láthatatlan*/
	opacity: 0;
	transition: all 0.25s;
}
nav li:hover ul{
	opacity: 1;
	top: 45px;
	visibility: visible;/*láthatóság - látható*/
}
nav li ul li{
	float: none;
	width: 100%;
	background: #202020;
	font-weight: normal;
	font-size: 15px;
}
nav li ul li a{
	border: 0;
	background: #000 !important;
}
nav li ul li a:hover{
	background: #4f4f4f !important;
}
section#content{
	
	line-height: 18px;
}
section#content p{
	margin: 0 0 0 0;
	text-align: justify;
}

nav ul:first-child:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
