/* Some stylesheet reset */
#leftcssmenu_bar{
	background: #DBDBDB;
	border-right: 1px inset #575757;
}
#leftcssmenu > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	line-height: 1;
	z-index: 1;
}

/* The container */
#leftcssmenu > ul {
	display: block;
	position: relative;
	width: 200px;

}

	/* The list elements which contain the links */
	#leftcssmenu > ul li {
		display: block;
		position: relative;
		margin: 0;
	}
		#leftcssmenu .main{
			/* Layout */

			display: block;
			position: relative;
			margin: 0;
			padding: 11px 20px;
			width: 160px;

			/* Typography */
			font-family:  Helvetica, Arial, sans-serif;
			color: #ffffff;
			text-decoration: none;

			font-size: 13px;
			font-weight: 700;

			/* Background & effects */
			background: #575757;
		}
		/* General link styling */
		#leftcssmenu > ul li a {
			/* Layout */
			display: block;
			position: relative;
			margin: 0;
			border-bottom: 1px inset #FFFFFF;
			padding: 11px 20px;
			width: 160px;

			/* Typography */
			font-family:  Helvetica, Arial, sans-serif;
			color: #000000;
			text-decoration: none;
			font-size: 13px;
			font-weight: 500;

			/* Background & effects */
		}

		/* The hover state of the menu/submenu links */
		#leftcssmenu > ul li>a:hover, #leftcssmenu > ul li:hover>a {
			color: #ffffff;
			background: #530000;
			border-bottom: 1px inset #530000;
		}

		/* The arrow indicating a submenu */
		#leftcssmenu > ul .has-sub>a::after {
			content: '';
			position: absolute;
			top: 16px;
			right: 10px;
			width: 0px;
			height: 0px;

			/* Creating the arrow using borders */
			border: 4px solid transparent;
			border-left: 4px solid #FFFFFF; 
		}

		/* The same arrow, but with a darker color, to create the shadow effect */
		#leftcssmenu > ul .has-sub>a::before {
			content: '';
			position: absolute;
			top: 17px;
			right: 10px;
			width: 0px;
			height: 0px;
			/* Creating the arrow using borders */
			border: 4px solid transparent;
			border-left: 4px solid #000;
		}

		/* Changing the color of the arrow on hover */
		#leftcssmenu > ul li>a:hover::after, #leftcssmenu > ul li:hover>a::after {
			border-left: 4px solid #FF4D00;
		}

		#leftcssmenu > ul li>a:hover::before, #leftcssmenu > ul li:hover>a::before {
			border-left: 4px solid #fff;
		}

	
		/* THE SUBMENUS */
		#leftcssmenu > ul ul {
			position: absolute;
			left: 200px;
			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;
		}

		/* Showing the submenu when the user is hovering the parent link */
		#leftcssmenu > ul li:hover>ul {
			top: 0px;
			opacity: 1;
		}