﻿/**** CSS LAYOUT FOR PANEL BASED LAYOUT *******/

/************ CONTENT ***************/

div#content
{
	position: relative; 
	margin: 0px 6px 0px 6px;
	padding: 1px 18px 12px 18px; 
	background-color: White;
	min-height: 450px;
}

div#content div#left_column
{
	float: left;
}

div#content div#right_column
{
	float: right;
}

div#content div.leftcap
{
	position: absolute;
	top: 0px;
	left: -6px;
	background-image: url(../images/common/content_left.gif);
	background-repeat: repeat-y;
	width: 6px;
	height: 100%;
}
 
div#content div.rightcap
{
	position: absolute;
	top: 0px;
	right: -6px;
	background-image: url(../images/common/content_right.gif);
	background-repeat: repeat-y;
	width: 6px;
	height: 100%;
}

