/* 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: #606061; color: #fff; padding: 60px 0 0; }
img { border: none; }
p
{
	font-size: 1em;
	margin: 0 0 1em 0;
}

/* 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;
	}

.reference 
{
	width: 400px;
	background: purple;
	color: #ffffff;
	text-align: center;
}

/* Min width styles - sample 01 */
.min_width
{
	min-width: 500px; /* For good browsers */
	height: 200px;
}
	/* for ie6 only adds borders to give min-width effect */
	* html .min_width
	{
		border: 250px solid #606061;
		border-width: 0 250px; /* Set this to half of you min-width (250 * 2 = 500)  */
	}
		.min_width .ie_min-width
		{
			margin: 0 -250px; /* Pulls the content back over the borders */
			position: relative; /* Fixes negative margin bug */
			float: left;
		}
	
/* Min width styles - sample02 */
.min_width02
{
	min-width: 500px; /* For good browsers */
	height: 200px;
}
	* html .min_width02
	{
		padding: 0 250px;
		text-align: left;   
	}
	.min_width02 .min_width_inner
	{
		width: 100%; /*  gives the element hasLayout */
	}
		.min_width02 .min_width_container
		{
			margin: 0 -250px;
			position: relative; /* Fixes negative margin bug */
			float: left;
		}