@-webkit-keyframes pulse {
	0% {
		background:blue;
		opacity:0.0;
	}
	50% {
		background:green;
		opacity:0.5;
	}
	100% {
		background-color:#be0000;
		opacity:0.75;
	}
}

.pulsed {
	background:url('../images/menu.png') center top no-repeat;
	-webkit-animation-name:pulse;
	-webkit-animation-duration:0.5s;
	-webkit-animation-direction:forward;
	-webkit-animation-iteration-count:1;
	-webkit-animation-timing-function:ease-in-out;
}
.pulsed a:hover{
	background:none;
}

#menu {
	text-align:center;
	position:absolute;
	min-height:35px;
	z-index:100;
	background: #fff url('../images/menubar.png') left -5px no-repeat;
	float: left;
	width:1000px;
}

#menu ul {
list-style: none;
margin: 0;
padding: 0;
width: 125px;
float: left;
}

#menu a, #menu h2 {
font: 15px Arial,Helvetica,Garuda,sans-serif;
display: block;
border: none;
margin: 0 auto;
padding: 0px;
}

#menu h2 {
	color: #fff;
	background: none;
}

#menu a {
color: #fff;
background: transparent;
text-decoration: none;
}

#menu a:hover {
color: #fff;
background: #be0000;
}

#menu ul ul a {
	position:relative;
	color:#fff;
	background:url('../images/menu.png') center top no-repeat;
	border-bottom:solid 1px #9c9a9a;
	border-left-style:none;
	border-right-style:none;
	list-style:none;
}

#menu li {
	position: relative;
}

#menu ul ul {
position: absolute;
z-index: 500;
}

#menu ul ul ul {
position: absolute;
top: 0;
left: 100%;
}

div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul {
	display: block;
	color:#be0000;
	background:none;
}
