/* Just some base styles not needed for example to function */
*, html
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
/* Makes the layout exapnd to 100% height without this css below won't work */
html,body { height: 100%; }

body, form, ul, li, p, h1, h2, h3, h4, h5
{
	margin: 0;
	padding: 0;
}
img
{
	border: none;
}
p
{
	font-size: 1em;
	margin: 0 0 1em 0;
}

/* Branding */
#cssninja
{
	position: absolute;
	top: 0;
	left: 0;
	background-color: #18191d;
	border-bottom: 1px solid #ffffff;
	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;
	}

/* Styles for example */
#maincontainer
{
	display: table;
	height: 100%;
	width: 100%;
}
	/*  Basic table layout */
	#maincontainer #header,
	#maincontainer #content,
	#maincontainer #footer
	{
		display: table-row;
	}
	#maincontainer #header
	{
		height: 150px;
		background-color: green;
	}
	#maincontainer #content
	{
		height: 100%;
		background-color: #000000;
		color: #ffffff;
	}
		#maincontainer #content .container
		{
			display: table-cell;
			padding: 10px;
		}
	#maincontainer #footer
	{
		height: 80px;
		background-color: purple;
	}
	
	/* Vertical centre */
	.table-cel
	{
		display: table-cell;
		vertical-align: middle;
		text-align: center;
		background-color: #000000;
	}
		.table-cel .box01
		{
			margin: 0 auto;
			text-align: left;
			width: 500px;
			height: 500px;
			background-color: orange;
		}
			.table-cel .box01 p
			{
				text-align: center;
				line-height: 500px;
			}
