body { 
	background: #ff99cc;
	font-family: Tahoma, Arial, Helvetica, sans-serif; }

#header {
	width: 900px;
	background: #000;
	padding: 10px;
	border: 0;
	-webkit-border-top-left-radius: 25px;
-webkit-border-top-right-radius: 25px;
-moz-border-radius-topleft: 25px;
-moz-border-radius-topright: 25px;
border-top-left-radius: 25px;
border-top-right-radius: 25px;
	margin-left:auto;
	margin-right:auto; }
	
h1 {
	color: #ff99cc;
	font-weight: bold;
	font-size: 36px;
	margin-top: -10px;
	text-shadow: 5px 5px 10px #FF5CAD;
        filter: dropshadow(color=#FF5CAD, offx=5, offy=5); }
	
h2 {
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	margin-left: 36px;
	margin-top: -15px;
	}

#content {
	width: 900px;
	min-height: 500px;
	padding: 10px; 
	background: #fff; 
	color: #000;
	border: 0;
		-webkit-border-bottom-left-radius: 25px;
-webkit-border-bottom-right-radius: 25px;
-moz-border-radius-bottomleft: 25px;
-moz-border-radius-bottomright: 25px;
border-bottom-left-radius: 25px;
border-bottom-right-radius: 25px; 
	margin-left: auto; 
	margin-right: auto; }

#nav {
	list-style: none;
	float: left;

	 }
	
#nav li { margin-right: 30px;
	position: relative;
	float: left; }

#nav li.mobile-only { display:none; }
	
#nav a {
	display: block;
	color: #ff99cc;
	text-decoration: none;
	padding: 5px; }
	
#nav a:hover {
	color: #fff;
	text-decoration: none;
	background: #ff99cc;
	padding: 5px; }
	
/*--- DROPDOWN ---*/
#nav ul{
	background:#fff;
	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */

	}
#nav ul li{
	padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
}
#nav ul li a { color: #fff; }

#nav ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}

#nav li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */

}
#nav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background:#ff99cc;
	text-decoration:none;
	color: #fff;
}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background:#FF5CAD;
}


/* MOBILE STYLES */
@media screen and (device-width: 320px) {
#header, #content { width: 280px; }
#content {min-height: 550px; }
#nav {margin-left: -35px; }
#nav ul {margin-left: 0; }
#nav li:hover { margin-bottom: 90px;}
#nav li.mobile-only { display:inherit; margin-left: -25px; }
}

@media screen and (device-width:768px) {
#header, #content {width: 700px; }
#content {min-height: 550px; }
#nav li {margin-right: 10px; }
#nav li.mobile-only { display:inherit; margin-left: -15px; }
}