I have an offline offset
				
				Code used in this page
.outline-offset {
	width: 100px;
	height: 100px;
	margin: 30px;
	padding: 10px;
	border: 1px solid #000;
	outline: 1px dotted #00f;			
				
	outline-offset: 20px;
}
			Using CSS3 outline-offset to offset the outline rendition, effectively placing a second border on the element.
.outline-offset {
	width: 100px;
	height: 100px;
	margin: 30px;
	padding: 10px;
	border: 1px solid #000;
	outline: 1px dotted #00f;			
				
	outline-offset: 20px;
}