
/*
	remove any default padding, margin or border that browsers may apply
*/
table,
tr,
td,
div,
h1, h2, h3, h4, p,
img,
blockquote,
cite,
form{
	padding: 0;
	margin: 0;
	border: none;

}

/* set global attributes */

body {
	background-color: #C7C99D;
}

/* browser wrapper, centrally aligning website for IE*/
div.browser {

	width: 100%;
	height: 100%;
	text-align: center;


}

/* site container, centrally aligning with margin att. for firefox etc
	defines width of all site content
*/
div.site {
	width: 705px;
	text-align: left;
	margin: 20px auto 20px auto;
	/*background-color: blue;*/

}

/* create class for clearing floats */
div.__clear {
	clear: both;
}