@charset "UTF-8";

/* box is for top of navigation */
.box {
	position: relative;
	padding: 0;
	text-align: left;
	width:100%;				/* <-- use this to tie width to viewport size */
	
}

/* ---=== 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 
*/

.box #blc, #brc
	{
	background-color: transparent;
	background-repeat: no-repeat;
	}
		
.box #blc
	{
	background-image:url(../content/container/blc.gif);
	background-position: 0% 100%;
	}

.box #brc
	{
	background-image:url(../content/container/brc.gif);
	background-position: 100% 100%;
	}
.box #bb
	{
	background-color: transparent;
	background-repeat: repeat-x;
	background-image:url(../content/container/bb.gif);
	background-position: 50% 100%;
	}
.push {
	height: 10px;
	}
	
.boxContent {
	position: relative;
	text-align: left;
	width:100%;				/* <-- use this to tie width to viewport size */
	padding: 0px;
}

.boxContent #tlc, #trc, #blc, #brc
	{
	background-color: transparent;
	background-repeat: no-repeat;
	}

.boxContent #tlc
	{
	background-image:url(../content/content/tlc.gif);
	background-position: 0% 0%;
	}

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

.boxContent #brc
	{
	background-image:url(../content/content/brc.gif);
	background-position: 100% 100%;
	}
	
.boxContent #rb
	{
	background-image:url(../content/content/rb.gif);
	background-position: 100% 0%;
	background-repeat: repeat-y;
	}

.boxContent #lb
	{
	background-image:url(../content/content/lb.gif);
	background-position: 0% 100%;
	background-repeat: repeat-y;
	}
	
.boxContent #bb
	{
	background-color: transparent;
	background-repeat: repeat-x;
	background-image:url(../content/content/bb.gif);
	background-position: 50% 100%;
	}
	
.boxContent #tb
	{
	background-color: transparent;
	background-repeat: repeat-x;
	background-image:url(../content/content/tb.gif);
	background-position: 0% 0%;
	}