body {
	margin:0;
	padding:0;
	color:#000;
	background-color: #8A8A8A;
	font-family: sans-serif;
}
#header {
	background: url('header.jpg');
    background-repeat:no-repeat;
    background-position: top center;
    background-size: 100%;
	height: 250px;
	border-radius: 25px;
    border: 5px solid #FFFFFF;
}
#wrapper {
	width:80%;
	margin:0 auto;
	background:#FFFFFF;
	border-radius: 25px;
    border: 10px solid #FFFFFF;
}

p {
	line-height: 20px; /* 4px +12px + 4px */
	
}

article {
	display: block;
}

h2 {
	font-style: italic;
}

#stories {
	float:right;
	width:100%;
}
#videos {
	float:right;
	width:100%;
	margin-left: auto;
    margin-right: auto;
    display: block
}
#footer 
{
	text-align: center;
	clear:both;
	padding:5px;
	width:100%;
}
/*Dropdown nav menu CSS adapted from http://www.ourtuts.com/create-a-drop-down-navigation-menu-with-html5-and-css3/ */
#nav {
	width: 65%;
	margin-left: auto ;
    margin-right: auto ;
	position: relative;	

}

ul#navigation {
	width: 100%;
	margin: 0 auto;
	position:relative;
}

ul#navigation li {
	display:inline;
	font-size:12px;
	font-weight:bold;
	margin:0;
	padding:0;
	float:left;
	position:relative;
	border-top:1px solid #000000;
	border-bottom:1px solid #000000;
	width: auto;
}

ul#navigation li a {
	padding:10px 15px;
	color:#000000;
	text-shadow:1px 1px 0px #fff;
	text-decoration:none;
	display:inline-block;
	border-right:1px solid #000000;
	border-left:1px solid #000000;
	border-top:1px solid #000000;
	background: #FFFFFF;
	
	-webkit-transition:color 0.2s linear, background 0.2s linear;	
	-moz-transition:color 0.2s linear, background 0.2s linear;	
	-o-transition:color 0.2s linear, background 0.2s linear;	
	transition:color 0.2s linear, background 0.2s linear;	
}
ul#navigation li:hover > ul
{
	visibility:visible;
	opacity:1;
}
ul#navigation ul, ul#navigation ul li ul {
	list-style: none;
    margin: 0;
    padding: 0;    
	visibility:hidden;
    position: absolute;
    z-index: 99999;
	width:180px;
	background:#FFFFFF;
	box-shadow:1px 1px 1px #000000;
	opacity:0;
	-webkit-transition:opacity 0.2s linear, visibility 0.2s linear; 
	-moz-transition:opacity 0.2s linear, visibility 0.2s linear; 
	-o-transition:opacity 0.2s linear, visibility 0.2s linear; 
	transition:opacity 0.2s linear, visibility 0.2s linear; 	
}
ul#navigation ul {
    top: 45px;
    left: 1px;
}
ul#navigation ul li ul {
    top: 0;
    left: 0px;
}
ul#navigation ul li {
	clear:both;
	width:100%;
	border:0 none;
	border-bottom:1px solid #999999;
}
ul#navigation ul li a {
	background:none;
	padding:7px 7px;
	color:#616161;
	text-shadow:1px 1px 0px #fff;
	text-decoration:none;
	display:inline-block;
	border:0 none;
	float:left;
	clear:both;
	width:200px;
}

