﻿

/*---=== border code follows ===--- */
/*
	tlc = top left corner
	trc = top right corner
	blc = bottom left corner
	brc = bottom right corner
	l = left border
	r = right border
	t = top border
	b = bottom border
*/

#tlc1, #trc1, #blc1, #brc1
	{
	background-color: transparent;		
	background-repeat: no-repeat;	
 
	}


#tlc1
	{
	background-image:url('../images/BOX_1/TLC.jpg'); 	/*set top left hand corner image*/
	/*background-position: 0% 0%;				/*set the position to start at 0,0, top left*/
   
    width:14px;
    height:12px;
    
}

#trc1
	{
	background-image:url(../images/BOX_1/TRC.jpg);	/*set top right hand corner image*/
	/*background-position: 100% 0%;			/*set the position to start at max width,0, top right*/
	width:17px;
	 height:12px;
	}

#blc1
	{
	background-image:url('../images/BOX_1/BLC.jpg');	/*set bottom left hand corner image*/
	/*background-position: 0% 100%;			/*set the position to start at 0,max height, bottom left*/
	width:14px;
	 height:11px;
    
}

#brc1
	{
	background-image:url(../images/BOX_1/BRC.jpg);	/*set bottom right hand corner image*/
	/*background-position: 100% 100%;			set the position to start at max width,max height, bottom right*/
	width:17px;
	 height:11px;
	}

#t1
	{
	background-image:url(../images/BOX_1/T.jpg); /*set the top border image*/
	/*background-position: 0% 0%;			/*set the position to start at 0,0, top left*/
	background-repeat: repeat-x;		/*repeat the top border image in x-axis*/
	height:12px;
	}

#b1
	{
	background-image:url(../images/BOX_1/B.jpg); /*set the bottom border image*/
	/*background-position: 0% 100%;		/*set the position to start at 0,max height, bottom left*/
	background-repeat: repeat-x;		/*repeat the bottom border image in x-axis*/
	height:11px;
	}

#r1
	{
	background-image:url(../images/BOX_1/R.jpg); /*set the right border image*/
	/*background-position: 100% 0%;		/*set the position to start at max width,0, top right*/
	background-repeat: repeat-y;		/*repeat the right border image in y-axis*/
	width:17px;
	}

#l1
	{

	background-image:url('../images/BOX_1/L.jpg'); /*set the left border image*/
	/*background-position: 0% 100%;		/*set the position to start at 0,max height, top left*/
	background-repeat: repeat-y;		/*repeat the left border image in y-axis*/
	width:14px;
   
}