/* gourmetcru main style - by josh shenefelt - http://www.orangesarcasm.com/ */


/* ---------- global elements ---------- */
* {
	margin: 0;
}



html, body {
	height: 100%;
}

body {
	margin: 0px;
	padding: 0px;
	color: #2a7b1f;
	font-family: Arial;
	font-size: 0.9em;
}


.container {
  /* make this a containing block! */
  position: relative; 


}

.center {
	/* take element out of the normal page flow! */
  position: absolute;
	/* position the element vertically using top or bottom
     and define width as you like:                       */
  top: -60px;
	width: 50%;
	/* set left and right to the same value! */
  left: -60px;
	right: 0;
	/* adding auto-margins left and right will
     center the element horizontally!         */
  margin-left: 60px;
	margin-right: 50px;
	/* mark this element visually prominent */
  background:red;
}

a:link 

{
color: #ce0f6c;
text-decoration: none;
cursor: default;

}

/* ---------- header area ---------- */

.header
{
	position:absolute;
	left:244px;
	top:-10px
}

/* ---------- positions the menu ---------- */

.side
{
	position:absolute;
	left:-46px;
	top:-10px;
}

/* ---------- to put text and stuff on the side menu ---------- */

.side-content
{
position:absolute;
left:-10px;
top:70px;
width:200px;
padding: 10px 10px 10px 77px;
}

/* ---------- content area background position ---------- */

.main
{
	position:absolute;
	left:244px;
	top:239px
}

/* ---------- content style and positioning ---------- */

.main-content
{
	position:absolute;
	left:326px;
	top:252px;
	width: 600px;
	padding: 1.5cm;
}

/* ---------- now lets position the footer/copyright to the bottom of the page ---------- */

.footer
{
font-size: 9px;
position: absolute;
left:-200px;
top:490px;


}

