/**	Creates a pull out quote of text; a box with a heavy colored top and bottom border	and text in the middle, e.g.		------------		This is text		------------**//** basic setup **/span.pulloutquote {	font-weight: bold;	font-style: italic;	width: 200;	float: right;	padding: 5px;	margin: 2px;	border-top: 10px;	border-bottom: 10px;	border-left: 0px;	border-right: 0px;	border-style: solid;}/** Default Color setup **/span.pulloutquote {	background-color: #CCCCCC;	color: #000000;	border-color:#996600;	}