/* common stuff */

a {
	color: rgb(156, 168, 206);
}

body {
	margin: 0;
	padding: 0;
	height: 100%; /* this is the key! */
	background-color: rgb(255, 207, 221);
}

#contact {
	position: absolute;
	right: 0;
	top: 0px;
	padding: 0;
	width: 40%;
	border: 1px solid red;
}

#left {
	position:absolute;
	left:0;
	top: 123px;
	padding: 0;
	width: 200px;
	height: 100%; /* works only if parent container is assigned a height value */
} 

#menu	{
	margin-top: 10px;
	text-align: center;
}

#newsflash {
	position: absolute;
	right: 10px;
	top: 10px;
	padding: 0;
	width: 400px;
	background-color: rgb(255, 191, 210);
}

#newsflash p	{
	padding-left: 10px;
	padding-right: 10px;
	color: #333;
}

#right {
	position: absolute;
	right: 0;
	top: 123px;
	padding: 0;
	width: 200px;
	height: 100%; /* works only if parent container is assigned a height value */
	color: #333333;
}

img	{
	border: none;
}

img.fr	{
	float: right;
	position: relative;
	left: 100px;
}

img.ribbon	{
	float: right;
	vertical-align: bottom;
	position: relative;
	top: 10px;
}


p.top {
	margin-top:20px;
}

#left p {
	padding:0 10px;
} 


/* end of common stuff */
.content {
	margin-left: 210px;
	margin-right: 210px;
	margin-bottom: 20px;
	margin-top: 21px;
	color: #333;
	padding:0 10px;
	background: rgb(252, 251, 255);
	border: 1px solid rgb(156, 168, 206);
}

td	{
	vertical-align: top;
}

