/***********************************************/
/* INSTEP.CO.NZ 2008		                   */
/* Style Sheet 		                           */
/***********************************************/

/***********************************************/
/* HTML tag styles                             */
/***********************************************/ 

html {
	height: 100%;
	margin: 0;
	padding: 0;
	
}

body { 
	height: 100%; 
	width: 100%; 
	margin: 0;
	padding: 0;
	background: #fff;
	font-family: Arial, Helvetica, sans-serif;
}

p{
	color: #666666;
	font-size: 12px;
	line-height:18px;
}

img{
	border:none;
}

a{
	text-decoration:none;
	color:#999
}

a:hover{
	color:#97BF0D;
}

span.green{
	color:#97BF0D;
}


/***********************************************/
/* Layout Divs                                 */
/***********************************************/

#pageContainer {
	min-width: 950px;
	min-height: 500px;
	width: 100%;
	height: 100%;
	
	/* IE6 width  */
	width: expression(Math.max((document.documentElement ? document.documentElement.clientWidth : document.body.clientWidth) - 0, 950)+'px');
	height: expression(Math.max((document.documentElement ? document.documentElement.clientHeight : document.body.clientHeight) - 0, 500)+'px');
}

#altContent {
	position:absolute;
	top:30%;
	left:50%;
	margin-left:-450px;
	width: 990px;
}

#logo {
	float:left;
	width:400px;
}

#content {
	float:left;
	width:460px;
	margin:35px 0 0 60px;
}

/***********************************************/
/* Classes              			           */
/***********************************************/

.floatleft{
	float:left;
	position:relative;
	display:inline;
	
}

