.kwicks {
	/* recommended styles for kwicks ul container */
	list-style: none;
	position: relative;
	margin: 0;
	padding: 0;
	background-color:#fff;
}
.kwicks li{
	/* these are required, but the values are up to you (must be pixel) */
	width: 201px;
	height:290px;
	/*do not change these */
	display: block;
	overflow: hidden;
	padding: 0;  /* if you need padding, do so with an inner div (or implement your own box-model hack) */
	background-color:#1d1e21;
}
.kwicks #kwick_1, .kwicks #kwick_2, .kwicks #kwick_3, .kwicks #kwick_4 { 
/*no need for styles on these for now*/
}
/*note that these are positioned absolutely - they'll always be the same distance from the left and top,
so make the appropriate changes if the dimensions etc change on your menu*/
/*also note that the absolute nature of these may have to change if a footer is added... something we can monkey
around with when the time comes*/
#pushdown {
	height: 600px;
	position: relative;
}

#content1, #content2, #content3, #content4{ 
	position:absolute;
	background-color: #fff;
	margin:0;
	display:none;
}	
#content1{
	display:block;
}

