/* CSS Document *//* ---------- BODY FORMAT ---------- */body {	margin: 0px;	background:		#766242;}/* ---------- LISTS AND BULLETED ITEMS ---------- */ul {	list-style-type: none;	padding: 0px 0px 0px 0px;	margin: 0px 0px 0px 0px;}li {	list-style-type: square;	padding: 0px 0px 0px 0px;	margin: 0px 0px 0px 0px;}/* ---------- PHOTOS AND OBJECTS ---------- */a img {	border: none;}	.wp-caption img {	margin: 0;	padding: 0;	border: 0 none;}p img {	padding: 0;	max-width: 100%;}/*	Using 'class="alignright"' on an image will (who would've	thought?!) align the image to the right. And using 'class="centered',	will of course center the image. This is much better than using	align="center", being much more futureproof (and valid) */img.centered {	display: block;	margin-left: auto;	margin-right: auto;}img.alignright {	padding: 4px;	margin: 0 0 2px 20px;	display: inline;}img.alignleft {	padding: 4px;	margin: 0 20px 2px 0;	display: inline;}.alignright {	float: right;}.alignleft {	float: left;}/* End Images */