@charset "utf-8";
/* CSS Document */

#box
	{
		text-align: left;
		width:80%;				/* <-- use this to tie width to viewport size */
		width: 168px;				/* <-- use this for a set width */
		background-color: #eeeeee;
		margin-left: 10px;
		padding-top: 0;
		padding-bottom: 0;
		position: relative;
		float: left;
		
	}
 	
#content
	{
	padding:1em;
	}

#content h1
	{
		color:#0354c2;
		font: bolder 1em helvetica, geneva, arial, sans-serif;
		padding-bottom: 5px;
	}
		
#content p
	{
		font-family: arial, helvetica, sans-serif;
		line-height: 1.3em;
		padding-bottom: 3px;
	}

		
/* ---=== 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/box_image/tlc.gif);
		background-position: 0% 0%;
	}

#trc
	{
		background-image:url(../Images/box_image/trc.gif);
		background-position: 100% 0%;
	}
	
#blc
	{
		background-image:url(../Images/box_image/blc.gif);
		background-position: 0% 100%;
	}

#brc
	{
		background-image:url(../Images/box_image/brc.gif);
		background-position: 100% 100%;
	}

#tb, #bb
	{
	background-color: transparent;
	background-repeat: repeat-x;
	}
			
#tb
	{
		background-image:url(../Images/box_image/tb.gif);
		background-position: 0% 0%;
	}

#bb
	{
		background-image:url(../Images/box_image/bb.gif);
		background-position: 50% 100%;
	}
	
#rb
	{
		background-image:url(../Images/box_image/r.gif);
		background-position: 100% 0%;
		background-repeat: repeat-y;
	}

#lb
	{
		background-color: #eeeeee;
		background-image:url(../Images/box_image/l.gif);
		background-position: 0% 100%;
		background-repeat: repeat-y;
	}
