@charset "UTF-8";

/**************************************************************

	WebGraphic 2008 - General Styles for all media

**************************************************************/


body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
/* *************************************************************************************************************************************** */
/* Styles for GENERAL STYLE EFFECTS *************************************************************************************************************************************** */
/* *************************************************************************************************************************************** */

/* Styles to set an image to float to the left or right */
.imgLeft {
	float: left;
}
.imgRight {
	float: right;
}
/* Set a general padding or margin */
.padding {
	padding: 10px;
}
.paddingSides {
	padding-right: 10px;
	padding-left: 10px;
}
/* Set column widths */
.columnHalf {
	float: left;
	width: 50%;
}
/* Containers to set a border */
.borderRight {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #E3DEC3;
}
.borderLeft {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #E3DEC3;
}
.borderBottom {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E3DEC3;
}
/* Align Styles to set the text alignment */
.alignRight {
	text-align: right;
}
.alignLeft {
	text-align: left;
}

