/* CSS Document */

/*margins and paddings of all the elements will be zeroed*/
* {
	margin: 0;
	padding: 0;
}

html {
	font-size: 100%;
	}
	
body {
	font-size: 62.5%; /* Resets 1em to 10px */
	font-family: Georgia, "Times New Roman", Times, serif;
	text-align: center;/*this aligns everything within the page body centrally-for browsers which dont understand margin: auto*/
	line-height: 1;
	background-color: #fbf3de;
	background-image: url(images/main-bkg.jpg);
	background-repeat: no-repeat;
	background-position: center top;	
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-weight: normal;
}
a img {
	border: none;
}

#container {
	margin: 0 auto;
	width: 450px;
	padding-top: 50px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-align: left;
}
#main {
	background-color: #e03030;
	width: 389px;
	height: 493px;
	background-image: url(images/bkg-pics.png);
	background-position: 50% 80%;
	margin-bottom: 20px;
	background-repeat: no-repeat;
	padding-left: 30px;
	padding-right: 30px;
}
#main h2 {
	font-size: 1.6em;
	font-weight: bold;
	color: #fdedd7;
	margin-top: 30px;
	margin-bottom: 20px;	
}
#main p {
	font-size: 1.4em;
	line-height: 1.1;
	color: #fde9d3;
	margin-bottom: 1.5em;
}
span.brown {
	color: #df9e6a;	
}
a, a:link, a:visited {
	color: #df9e6a;	
}
