/* CSS Document */
#container {
   position: relative;
	margin: 0 auto;
	max-width: 100%;
   z-index:9999;
}

#relatedContent {
  max-width: 100%;
}

#relatedContent .item {
  float: left;
  text-align: center;
}

#relatedContent .item a img {
  max-width: 100%;
}	

nav { 
	background-color: #EEE;
	border-bottom: 2px solid #5fae27;
	color: #FFF;
	font-weight: bold;
	text-decoration: none;	
}

nav ul {
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	}
	
nav ul li {
	display:inline-block;
	background-color: #EEE;
	}

nav a {
	display:block;
	padding:0 8px;	
	color:#FFF;
	line-height: 30px;
	text-decoration:none;
}

nav a:hover { 
	background-color: #FBFBFB; 
}

/* Hide Dropdowns by Default */
nav ul ul {
	display: none;
	position: absolute; 
	top: 30px;
	border-bottom:1px solid #EEE;
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:170px;
	float:none;
	display:list-item;
	position: relative;
	background-color:#FBFBFB;
	border-left:1px dotted #999;
}

/* Second, Third and more Tiers	*/
nav ul ul ul li {
	position: relative;
	top:-30px; 
	left:170px;
	background-color:#E8E8E8;
}
	
/* Change this in order to change the Dropdown symbol */
li > a:after { content:  ' +'; }
li > a:only-child:after { content: ''; }