  #content { width: 500px; margin: 20px auto; }
		p, fieldset { max-width: 500px; }
		form.hform p label { width: 150px; }
		
		.ui-slider { position: relative; text-align: left; display: block; margin: 0px 0 0px 0px; width: 265px; }
		.ui-slider-handle { position: absolute; z-index: 2; width: 16px; height: 16px; cursor: pointer; background: #333; top: -4px; margin-left: -8px; }
		.ui-slider-horizontal { height: 10px; background: #ddd; border: 1px solid #ccc; }
		.ui-slider-handle:hover, .ui-state-hover, .ui-state-focus, .ui-state-active { background: #aaa; }
		
		/* CSS3 ---------------------------------------------------- */
		.ui-slider-handle { 
			border-radius: 4px;
			-moz-border-radius: 4px;
			-webkit-border-radius: 4px;
			
		}
		.ui-slider-horizontal { 
			border-radius: 4px;
			-moz-border-radius: 4px;
			-webkit-border-radius: 4px;
			background: -moz-linear-gradient(left, #fff, #ddd);
			background: -webkit-gradient(linear, left top, right top, from(#fff), to(#ddd));
		}
		a.ui-state-hover, a.ui-state-focus { 
			background: -moz-linear-gradient(top, #666, #333);
			background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#333));
			
			
			
		}
		a.ui-state-active { 
			background: -moz-linear-gradient(top, #ddd, #aaa);
			background: -webkit-gradient(linear, left top, left bottom, from(#ddd), to(#aaa));
		}