/*fieldset that wraps around each form "page" */
/*fieldset.sectionwrap{ 
border-width:0;
padding:5px;
}
*/

/*title shown at top of each form page */
legend{ 
font:bold 16px Arial;
color: darkred;
}


 /*div that contains all the "steps" text located at top of form */ 
/*width: 400px; width of "steps" container*/
div.stepsguide{
width: 860px; 
overflow:hidden;
margin-bottom:15px;
cursor:pointer;
}

div.stepsguide .step{ /*div that wraps around each "steps" text */
width:120px; /*width of each "steps" text*/
font: bold 24px Arial;
float:left;
}

div.stepsguide .disabledstep{ /*div that wraps around each "steps" text */
color:#C4C4C4;
}

/*small footer text inside "steps" text */
div.stepsguide .step .smalltext{ 
font-size: 13px;
font-weight: normal;
}

.stepsguide{
	overflow:scroll;
}

div.formpaginate{ 
	width: 350px;
	overflow:hidden;
	font-weight:bold;
	text-align:center;
	margin-top:1em;
}



/*CSS for "prev" and "next" SPAN elements within paginate container */
div.formpaginate .prev, div.formpaginate .next{ 
border-radius:5px;
-webkit-border-radius:5px;
-moz-border-radius:5px;
padding:2px 5px;
background:darkred;
color:white;
cursor:hand;
cursor:pointer;
}