@charset "UTF-8";
/* CSS Document */


/* stacks the contents of a UL on top of itself, use for dynamic content switching */
ul.ulStack
{
	position:relative;
	list-style:none;
	margin:0px;
	padding:0px;
}
ul.ulStack li
{
	position:absolute;
	display:none;
	width:100%;
}
ul.ulStack li:nth-of-type( 0n+1 )
{
	display:block;
}