.sidebarMenuWrapper {
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	float: none;
	text-decoration: none;
}
/* General menu styling */
.sidebarnav {
	margin: 0;
	padding: 0;
	line-height: 22px;
	font-family: Tahoma;
	letter-spacing: 0px;
	text-transform: none;
	text-decoration: none;
}
	
	/* The main navigation link containers */
	.sidebarnav>li {
	display: block;
	float: none; /* Displaying them on the same line */
	margin: 0;
	padding: 0;
	width: 90%;
	}

		/* The main navigation links */
		.sidebarnav>li>a {
	/* Layout */
	display: block;
	position: relative;
	padding: 0px;
	/* Text */
	font-family: Tahoma;
	color: #832207;
	font-size: 12px; /* Transparent background for modern browsers */
	/* Making the color to change on hover with a transition */
	-webkit-transition: color .3s ease-in;
	-moz-transition: color .3s ease-in;
	-o-transition: color .3s ease-in;
	-ms-transition: color .3s ease-in;
	background-image: none;
	text-align: left;
	text-decoration: none;
		}

		/* Changing the color on hover */
		.sidebarnav>li>a:hover, .sidebarnav>li:hover>a {
	color: #C57636;
		}

		/* The links which contain dropdowns menu are wider, because they have a little arrow */
		.sidebarnav>.sidebardropdown>a {
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 20px;
		}

		/* The arrow indicating the dropdown */
		.sidebardropdown>a::after {
	content: "";
	position: absolute;
	top: 13px;
	right: 0px;
	width: 0px;
	height: 12px;
	border-right-width: 0px;
	border-right-style: solid;
			}

		/* Changing the color of the arrow on hover */	
		.sidebardropdown>a:hover::after, .sidebardropdown:hover>a::after {
		}

		/* The submenus */
		.sidebarnav ul {
	position: absolute;
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
	z-index: 1000;
		}

		/* General layout settings for the link containers of the submenus */
		.sidebarnav ul li {
			position: absolute;
			top: -9999px; /* Hiding them */
			height: 0px; 
			display: block;
			margin: 0;
			padding: 0;

			/* Making them to expand their height with a transition, for a slide effect */
			-webkit-transition: height .2s ease-in;
			-moz-transition: height .2s ease-in;
			-o-transition: height .2s ease-in;
			-ms-transition: height .2s ease-in;
		}

		/* Displays the submenu links, by expading their containers (with a transition, previously defined) and by repositioning them */
		.sidebardropdown:hover>ul>li {
	height: 30px;
	position: relative;
	top: auto;
		}

			/* The submenu links */
			.sidebarnav ul li a {
	width: 100%;
	display: block;
	position: relative;
	/* Text */
	font-family: Tahoma, Geneva, sans-serif;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 11px;
	/* Background & effects */
	background: black;
	background: #003E5D;
	-webkit-transition: color .3s ease-in, background .3s ease-in;
	-moz-transition: color .3s ease-in, background .3s ease-in;
	-o-transition: color .3s ease-in, background .3s ease-in;
	-ms-transition: color .3s ease-in, background .3s ease-in;
	padding-top: 4px;
	padding-right: 5px;
	padding-bottom: 4px;
	padding-left: 15px;
	z-index: 1000000;
			}

			/* Changing the link's color and background on hover */
			.sidebarnav ul li:hover>a, .sidebarnav ul li a:hover {
	color: #FFFFFF;
	background-color: rgba(102,153,153,1);
			}

			/* Making the level 2 (or higher) submenus to appear at the right of their parent */
			.sidebarnav ul .sidebardropdown:hover ul {
				left: 160px;
				top: 0px;
			}

			/* The submenu links have a different arrow which indicates another dropdown submenu */
			.sidebarnav ul .sidebardropdown a::after{
				width: 6px;
				height: 6px;
				border-bottom: 0;
				border-right: 1px solid #fff;
				border-top: 1px solid #fff;
				top: 12px;
			}

			/* Changing the color of the arrow on hover */
			.sidebarnav ul .sidebardropdown:hover>a::after, .sidebarnav ul .sidebardropdown>a:hover::after {
				border-right: 1px solid #0fd0f9;
				border-top: 1px solid #0fd0f9;
			}
#menuborder {
				border-top: 1px solid #C93;
}
