/* originalul.crossfade {	padding: 0;	margin-left: auto;	margin-right: auto;	list-style: none;	position: relative;	text-align: center;	height: 330px;	overflow: hidden;	background: none;	margin-top: 0;}#fade-example-1 li {	text-align: center;	visibility: hidden;}li img {	display: block;	text-align: center;	margin-left: auto;	margin-right: auto;} *//* works cross-browser; only problem is invisible image stacking where 3rd is on top, so links are incorrect *//*ul.crossfade {	padding: 0;	margin-left: auto;	margin-right: auto;	list-style: none;	position: relative;             do not use absolute	text-align: center;	height: 330px;	overflow: hidden;	background: none;	margin-top: 0;}#fade-example-1 li {	text-align: center;	visibility: hidden;	position: absolute;	left: 0;	width: 330px;}li img {	display: block;	text-align: center;	margin-left: auto;	margin-right: auto;	z-index: 50;}*/ul.crossfade {	padding: 0;	margin-left: auto;	margin-right: auto;	list-style: none;	position: relative; /* do not use absolute */	text-align: center;	height: 330px;	overflow: hidden;	background: none;	margin-top: 0;}#fade-example-1 li {	text-align: center;	visibility: hidden;	position: absolute;	left: 6px;	width: 330px;}li img {	display: block;	text-align: center;	margin-left: auto;	margin-right: auto;	z-index: 50;}code {	font-family: monospace;	font-size: 1.2em;}#controls {	position: absolute;	top: 390px;	left: 153px;	z-index: 12;	cursor: pointer;	text-align: center;}#fade-example-1-next {	margin-left: 4px;	float: left;}#fade-example-1-previous {	float: left;}.ajax {	margin: 3em;	border: 1em solid #FF8C00;	padding: 1em;}