@charset "utf-8";
 
/**********
** Menu
**********/

/*General*/
#menu {
	margin: 10px 0px;
}

#menu li {
	list-style-type: none;
	display: block;
}

/*Top Menu*/
#menu>li {
/* 	float: left; */
	width: 100%;
/* 	background: #000; */
}

/*#menu:after { /*Clear after/
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}*/

/*Top Menu Items*/
/* #menu li {	border-left: #ccc 2px solid;	} */
/* #menu>li:first-child {	border-left: none;	} */

/* #menu li>a {	padding: 0 10px;	} */
/* #menu>li:first-child>a {	padding-left: 0px;} */

/*Text*/
#menu a {
	display: block;
/* 	text-align: left; */
	
	font-size: 1.2em;
	
 	padding: 4px 0.5em;
	
	border-top:		1px solid #246bad;
	border-bottom:	1px solid #051630;
	
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	
/* 	padding: 0.5em 0; */
}

#menu>li:last-child  a { border-bottom:0px !important;}
#menu>li:first-child a { border-top:   0px !important;}

#menu a:hover {
	color: #9cf;
}
#menu a:hover::after {
	content: url("/layout/images/lightning.png");
	/*content: "⇨";*/
	float:right;
	
	opacity: 0.6;
}

#menu a.selected {
	color: #0AE;
}
#menu a.selected:hover {
	color: #07B;
}

/* Submenu */
#menu ul li {
}
#menu ul {
	position: absolute;
	margin-left: -2px;
	
	background: #FFF;
	border-right: 5px #f3f3f3 solid;
	border-bottom: 5px #f3f3f3 solid; 
}

/*Submenu Hover*/
#menu ul {
	display: none;
}
/*#menu>li:hover>ul {
	display: block;
}*/