

/***************************************************************
Vertical menu on right hand side. Dot images replaced with css.
\***************************************************************/


/* Some stylesheet reset */
.navigation  > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	line-height: 1;
}

/* The container */
.navigation  > ul {
	display: block;
	position: relative;
	width: 175px;
}

/* The list elements which contain the links */
.navigation  > ul li {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
    list-style: none;
}

/* General link styling */
.navigation  > ul li a {
	/* Layout */
	display: block;
	position: relative;
	margin: 0;

	padding: 11px 0px 11px 40px;
	width: 13em;

	/* Typography */
	font-family: Helvetica, Arial, sans-serif;
	color: #;
	text-decoration: none;
	font-size: 13px;
	font-weight: 800;
}

/* Rounded corners for the first link of the menu/submenus */
.navigation  > ul li:first-child>a {	
	border-top: 0;		
}

/* last link of the menu/submenus */
.navigation  > ul li:last-child>a {
	border-bottom: 0;		
}

/* The hover state of the menu/submenu links */
.navigation  > ul li>a:hover, 
.navigation  > ul li:hover>a {
	text-shadow: 0 1px 0 rgba(0, 0, 0, .3);
	background: #;
	background: -webkit-linear-gradient(bottom, #;, #404040);
	background: -ms-linear-gradient(bottom, #;, #404040); 
	background: -moz-linear-gradient(bottom, #;, #404040);
	background: -o-linear-gradient(bottom, #;, #404040);
	border-color: transparent;
	filter:alpha(opacity=80);
	opacity:0.8;
	-moz-opacity:0.8;
}

/* The circles indicating a submenu */
.navigation  > ul .has-sub>a::after {
	content: '';
	position: absolute;
	top: 16px;
	right: 10px;
	width: 0px;
	height: 0px;
}

/* The same arrow, but with a darker color, to create the shadow effect */
.navigation  > ul li >a::before {
	content: '';
	position: absolute;
	top: 11px;
	right: 155px;
	width: 0px;
	height: 0px;
	/* Creating the circle using content type */
	content: "●";
	margin-right: -3px;
}

/* THE SUBMENUS */
.navigation  > ul ul {
	position: absolute;
	right: 165px;
	top: -9999px;
	padding-left: 5px;
	opacity: 0;
	/* The fade effect, created using an opacity transition */
	-webkit-transition: opacity .3s ease-in;
	-moz-transition: opacity .3s ease-in;
	-o-transition: opacity .3s ease-in;
	-ms-transition: opacity .3s ease-in;
	background: #;
}

/* Showing the submenu when the user is hovering the parent link */
.navigation  > ul li:hover>ul {
	top: 0px;
	opacity: 1;
}