.wizard-step .primary-content{
	height: 100%;
}
.wizard-step .categories{
	max-height: 26em;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
		/*Enables "momentum" on iOS devices*/
}
.ios-momentum-scroll .wizard-step .categories{
	overflow-y: scroll;
		/*Required for -webkit-overflow-scrolling: touch to work*/
}
/*In case of a vertically narrow display, ensure we don't have unreachable content*/
.page .body .body-inner{
	overflow: auto;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overflow-x: hidden;
}
.ios-momentum-scroll .page .body .body-inner{
	overflow-y: scroll;
}
