/*

       TOMM (Timed Out Multi Menu) 0.1

       by Viala
       http://viala.hu
       info@viala.hu

       28/01/2007


       Licence: Creative Commons Attribution-ShareAlike 2.5 (http://creativecommons.org/licenses/by-sa/2.5/)

       You are free:
         * to Share -- to copy, distribute, display, and perform the work
         * to Remix -- to make derivative works

       Under the following conditions:
         * Attribution. You must attribute the work in the manner specified by the author or licensor.
         * Share Alike. If you alter, transform, or build upon this work, you may distribute the resulting work only under a license identical to this one.

       * For any reuse or distribution, you must make clear to others the license terms of this work.
       * Any of these conditions can be waived if you get permission from the copyright holder.

 */

#menu {
	padding-top:170px;
	padding-left:4px;
	position: relative;
	color: #333;
	width: 789px;
  height:30px;
	float: left; 
}

#menu ul {
	list-style: none;
	height: 1.5em;
	padding: 0;
	margin: 0;
}
#menu li a {
	font-family:Arial, Helvetica, sans-serif;
	color:#FFFFFF;
  display:block;
  line-height:21px;
  font-size:11px;
}

#menu li:hover a {
	color:#313131;
}

#menu li:hover li a {
	color:#FFFFFF;
}
#menu li li:hover a {
	color:#313131;
}

#menu li {
	float: left;
	width: 83px;
  padding-left:4px;
  padding-right:8px;
	line-height:21px;
	border-left:#3B474E solid 2px;
	position: relative;
	cursor: pointer;
}
#menu li li{
    background:#434343;
    text-align:left;
    width: 125px;
}

#menu li:hover, #menu li.over {
	background:url(/images/design/menu_hover.png) repeat-x;
	color:#313131;
}

#menu li ul {
	display: none;
	z-index: 999;
	position: absolute;
	width: 100px;
	top: 21px;
	left: 0;
}

#menu li.over ul {
	display: block;
	border: 0;
}

#menu li.over ul ul, #menu li.over ul ul ul {
	display: none;
}

#menu li li.over ul {
	display: block;
	left: 117px;
	top: 0;
}

#menu li li li.over ul {
	display: block;
}