﻿
/* ---=== 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
*/

#tlc_m, #trc_m, #blc_m, #brc_m
	{
	background-color: transparent;		/*set background color to transparent for our 4 corner so that it will not go overlapped*/
	background-repeat: no-repeat;		/*set background to only display once for our 4 corner*/
 
	}

#tlc_m
	{
	background-image:url(../images/Box_msg/TLC.jpg); 	/*set top left hand corner image*/
	/*background-position: 0px 0px;				/*set the position to start at 0,0, top left*/
	width:14px;
	height:14px;
	}

#trc_m
	{
	background-image:url(../images/Box_msg/TRC.jpg);	/*set top right hand corner image*/
	/*background-position: 100% 0px;			/*set the position to start at max width,0, top right*/
	width:11px;
	height:14px;
	}

#blc_m
	{
	background-image:url(../images/Box_msg/BLC.jpg);	/*set bottom left hand corner image*/
	/*background-position: 0px 100%;			/*set the position to start at 0,max height, bottom left*/
	width:14px;
	height:15px;
	}

#brc_m
	{
	background-image:url(../images/Box_msg/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:11px;
	height:15px;
	}

#t_m
	{
	background-image:url(../images/Box_msg/T.jpg); /*set the top border image*/
	/*background-position: 0px 0px;			/*set the position to start at 0,0, top left*/
	background-repeat: repeat-x;		/*repeat the top border image in x-axis*/
	height:14px;
	}

#b_m
	{
	background-image:url(../images/Box_msg/B.jpg); /*set the bottom border image*/
	/*background-position: 0px 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:15px;
	}

#r_m
	{
	background-image:url(../images/Box_msg/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:11px;
	}

#l_m
	{

	background-image:url(../images/Box_msg/L.jpg); /*set the left border image*/
	/*background-position: 0px 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;
	}