
/* CSS Document */

#nav {
	height: 55px;
	background: url("../kepek/menu.jpg") top left no-repeat;
	border-top: 1px rgb(224,209,195) solid;
	border-bottom: 5px rgb(201,122,40) solid;
}

#nav #aktualis a {
	left: 0px;
	width: 132px;
}

#nav #aktualis.current,
#nav #aktualis a:hover,
#nav #aktualis a.mainMenuParentBtnFocused {
	background: url("../kepek/menu.jpg") 0px -55px no-repeat;
}

#nav #programok a {
	left: 132px;
	width: 153px;
	background-position: -132px 0;
}

#nav #programok.current,
#nav #programok a:hover,
#nav #programok a.mainMenuParentBtnFocused {
	background: url("../kepek/menu.jpg") -132px -55px no-repeat;
}

#nav #fotok_videok a {
	left: 285px;
	width: 186px;
	background-position: -285px 0;
}

#nav #fotok_videok.current,
#nav #fotok_videok a:hover,
#nav #fotok_videok a.mainMenuParentBtnFocused {
	background: url("../kepek/menu.jpg") -285px -55px no-repeat;
}

#nav #elerhetoseg a {
	left: 471px;
	width: 164px;
	background-position: -471px 0;
}

#nav #elerhetoseg.current,
#nav #elerhetoseg a:hover,
#nav #elerhetoseg a.mainMenuParentBtnFocused {
	background: url("../kepek/menu.jpg") -471px -55px no-repeat;
}

#nav #gyic a {
	left: 635px;
	width: 275px;
	background-position: -635px 0;
}

#nav #gyic.current,
#nav #gyic a:hover,
#nav #gyic a.mainMenuParentBtnFocused {
	background: url("../kepek/menu.jpg") -635px -55px no-repeat;
}


/* all menu links */
#nav a,
#subMenusContainer a {
	text-decoration: none;
	display: block;
}

/* Just main menu links --[for non-javascript users this applies to submenu links as well]*/
#nav a {
	float: left;
	height: 55px;
	text-indent: -9999px;
}

/* Just sub menu links */
#subMenusContainer a,
#nav li li a {
	padding: 6px 30px 6px 13px;
	background-color: rgb(145,90,29);
	color: rgb(237,229,221);
	border-bottom: 1px rgb(167,107,42) solid;
	font-size: 15px;
	line-height: 1.3;
}

/* Last item, if use last class in li tag */
#subMenusContainer .last a,
#nav li li .last a {
	border-bottom: none;
}

/* All menu links on hover or focus */
#nav a:hover,
#nav a:focus,
#subMenusContainer a:hover,
#subMenusContainer a:focus,
#nav a.mainMenuParentBtnFocused,
#subMenusContainer a.subMenuParentBtnFocused {
}

/* sub menu links on hover or focus */
#subMenusContainer a:hover,
#subMenusContainer a:focus,
#nav a.mainMenuParentBtnFocused,
#subMenusContainer a.subMenuParentBtnFocused,
#nav li a:hover {
	background-color: rgb(201,122,40);
	color: rgb(255,255,255);
}

/* Parent Sub Menu Links ---[javascript users only]*/
.subMenuParentBtn {
	background: url("../kepek/menu_arrow_right.gif") right center no-repeat;
}

/* Parent Sub Menu Links on hover or focus ---[javascript users only]*/
.subMenuParentBtnFocused {
	background: url("../kepek/menu_arrow_right_over.gif") right center no-repeat;
}

/* Parent Main Menu Links ---[javascript users only]*/
.mainMenuParentBtn {
}

/* Parent Main Menu Links on hover or focus ---[javascript users only]*/
.mainMenuParentBtnFocused {
}

/* ----[ OLs ULs, LIs, and DIVs ]----*/

/* Submenu Outer Wrapper - each submenu is inside a div with this class - javascript users only */
.smOW {
	display: none;
	position: absolute;
	overflow: hidden;
	/*the 2px left & right padding lets you have a 1px border 
	  on the ul or ol inside since overflow is set to hidden*/
	padding: 0 2px 0 2px;
	margin: 0 0 0 -2px;
}

/* All ULs and OLs */
#nav,
#nav ul,
#nav ol,
#subMenusContainer ul,
#subMenusContainer ol {
	list-style: none;
	line-height: 1;
}

/* All submenu OLs and ULs */
#nav ol,
#nav ul,
#subMenusContainer ul,
#subMenusContainer ol {
	left: 0;
	background-color: rgb(145,90,29);
	border-top: 5px rgb(145,90,29) solid;
	border-right: 1px rgb(145,90,29) solid;
	border-bottom: 5px rgb(145,90,29) solid;
	border-left: 1px rgb(212,138,59) solid;
}

/* List items in main menu --[for non-javascript users this applies to submenus as well]  */
#nav li {
	/*great place to use a background image as a divider*/
	float: left;
	position: relative;
	display: block;
	list-style: none;
}

#subMenusContainer li {
	list-style: none;
	padding: 0 5px;
}

/* main menu ul or ol elment */
#nav {
	display: block;
	position: absolute;
	top: 339px;
	left: 0;
}

#subMenusContainer {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	overflow: visible;
	z-index: 3;
}

/* --------------------------[ The below is just for non-javscript users ]--------------------------*/
#nav li li {
	float: none;
}

#nav li li a { /* Just submenu links*/
	position: relative;
	float: none;
}

#nav li ul { /* second-level lists */
	position: absolute;
	margin-left: -1000em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	margin-top: 2.2em;
}

/* third-and-above-level lists */
#nav li ul ul {
	margin: -1em 0 0 -1000em;
}

#nav li:hover ul ul {
	margin-left: -1000em;
}

/* lists nested under hovered list items */
#nav li:hover ul {
	margin-left: 0;
}

#nav li li:hover ul {
	margin-left: 10em;
	margin-top: -2.5em;
}

/* extra positioning rules for limited noscript keyboard accessibility */
#nav li a:focus + ul {
	margin-left: 0;
	margin-top: 2.2em;
}

#nav li li a:focus + ul {
	left: 0;
	margin-left: 1010em;
	margin-top: -2.2em;
}

#nav li li a:focus {
	left: 0;
	margin-left: 1000em;
	width: 10em;
	margin-top: 0;
}

#nav li li li a:focus {
	left:0;
	margin-left: 2010em;
	width: 10em;
	margin-top: -1em;
}

#nav li:hover a:focus {
	margin-left: 0;
}

#nav li li:hover a:focus + ul {
	margin-left: 10em;
}

