.box
	{
	position: relative;
	margin-left: auto;
	margin-right: auto;	
	/* margin-top: 3em; */
	padding: 0;
	text-align: left;
	/* width:80%;				/* <-- use this to tie width to viewport size */
	/* width: 700px;				/* <-- use this for a set width */
	background-color: #d9e5c6;
	}
 	
.content
	{
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	}
		
/* ---=== border code follows ===--- */
/*
	tlc = top left corner
	trc = top right corner
	blc = bottom left corner
	brc = bottom right corner
	lb = left border
	rb = right border
	tb = top border
	bb = bottom border 
*/

.tlc, .trc, .blc, .brc
	{
	background-color: transparent;
	background-repeat: no-repeat;
	}

.tlc
	{
	background-image:url(images/corners/tlc.gif);
	background-position: 0% 0%;
	}

.trc
	{
	background-image:url(images/corners/trc.gif);
	background-position: 100% 0%;
	}
	
.blc
	{
	background-image:url(images/corners/blc.gif);
	background-position: 0% 100%;
	}

.brc
	{
	background-image:url(images/corners/brc.gif);
	background-position: 100% 100%;
	}

.tb, .bb
	{
	background-color: transparent;
	background-repeat: repeat-x;
	}
			
.tb
	{
	background-image:url(images/corners/tb.gif);
	background-position: 0% 0%;
	}

.bb
	{
	background-image:url(images/corners/bb.gif);
	background-position: 50% 100%;
	}
	
.rb
	{
	background-image:url(images/corners/r.gif);
	background-position: 100% 0%;
	background-repeat: repeat-y;
	}

.lb
	{
	background-image:url(images/corners/l.gif);
	background-position: 0% 100%;
	background-repeat: repeat-y;
	}
			
