/* Just some base styles not needed for example to function */
*, html { font-family: Verdana, Arial, Helvetica, sans-serif; }

body, form, ul, li, p, h1, h2, h3, h4, h5
{
	margin: 0;
	padding: 0;
}
body { background-color: #606061; color: #ffffff; margin: 60px 0 0; }
img { border: none; }
p
{
	font-size: 1em;
	margin: 0 0 1em 0;
}
a { color: #18191D; }

/* Branding */
#cssninja
{
	position: absolute;
	top: 0;
	left: 0;
	background-color: #18191d;
	width: 100%;
	height: 40px;
}
	#cssninja p
	{
		color: #ffffff;
		text-align: center;
		margin: 10px 0 0 0;
	}
	#cssninja a
	{
		color: #ffffff;
		text-decoration: none;
		background: url(../assets/ico_ninja.gif) 0 0 no-repeat;
		padding: 4px 0 9px 28px;
	}
	#cssninja a:hover
	{
		text-decoration: underline;
	}
	
dl
{
	margin: 10px;
}
dl dt
{
	padding: 10px;
	font-size: 20px;
	font-weight: bold;
}
dl dd
{
	margin: 0;
	padding: 10px;
	border-bottom: 1px solid #fff;
}
	#notification01 dl dd p { text-align: left; }

/* Notifcation styles */

#notification01
{
	margin: 60px 0 0 0;
}
#notification01 h1,
#notification01 p
{
	text-align: center;
	margin: 1em 0;
}

#notification02
{
	margin: 5px;
	background: #594F50;
	-webkit-transition-property: color, background, text-shadow;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: ease;
}
#notification02 p
{
	font-size: 12px;
	white-space: pre-wrap;
	word-wrap: break-word;
	text-shadow: 1px 1px 5px #000;
}
	#notification02 p:first-line { font-weight: bold; }
	#notification02:hover { color: #318DF2; background: #000; }
	#notification02:hover p { text-shadow: 1px 1px 5px #2364ab; }
