@charset "UTF-8";
/* CSS Document */

#menu {
	float: left;
}

#menu ul { 
	float: left;
	list-style: none;
	margin: 0;
	background-color: rgba(255, 255, 255, 0.9); 
	border-radius: 5px; 
	padding: 5px; 
	border-style: solid; 
	border-width: thin; 
	border-color: lightgray; 
	width: 163px;
}

#menu ul li { 
	float: left; 
	width: 100%; 
	position: relative;
	text-align: right;
}

#menu ul li a {
	display: block;
	float: left;
	font: bold 13px/21px Helvetica, Arial, sans-serif;
	width: 100%;
	color: #666666;
}

#menu ul li a:hover, #menu ul li.current-menu-item a { 
	text-decoration: none;
	color: #000;
}

#menu ul li ul {
	display: none;
	position: absolute;
	top: -5px; 
	left: 150px;
	background-color: rgba(255, 255, 255, 0.9); 
	border-radius: 5px; 
	padding: 5px; 
	border-style: solid; 
	border-width: thin; 
	border-color: lightgray;
}

#menu ul li ul li {
	text-align: left;
}
			
/* slider */

#slider-wrapper { 
	position: relative; 
}




	/*------------------------
	---------------- CONTENT
	------------------------*/
	
	/* You might want to change these options for the main container */
	#slider, #slider li {
		
		width: 100%;
		
	}
	
	/* images container - This is the most important container - Don't change important properties */
	#slider {
		
		list-style: none !important;
		float: left;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
		position: relative !important;
		
	}

		/* each slider item - Nothing to change here */
		#slider li {
			
			display: none;
			float: left;
			margin: 0;
			position: absolute;
			width: 100%;
			
		}
		
		/* Don't edit this part */
		#slider li.current {
			
			display: block;
			z-index: 2 !important;
			
		}
		
		/* Don't edit this part */
		#slider li.next {
			
			display: block;
			z-index: 1 !important;
			
		}
		
		/* Don't edit this part - prevents inline lists from being hidden */
		#slider li ul li {
			
			display: block !important;
			position: relative !important;
			
		}
