/* ----------------------------------------------------------------------------
   Classes that together implement a Box Effect utilising graphical images
   Name:         RedRoundCorner
   Description:  Black box with red rounded border
   Class Prefix: RedRoundBox
   Note:         ONLY CHANGE CODE IN THE PROTECTED AREAS
   ----------------------------------------------------------------------------*/
/* The Bottom Right corner of the box                                          */
.RedRoundBox_rb
{
	background-image: url(../../Images/Boxes/RedBorderRound_RB.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
}
/* The Top Right corner of the box                                             */
.RedRoundBox_rt
{
	background-image: url(../../Images/Boxes/RedBorderRound_RT.gif);
	background-repeat: no-repeat;
	background-position: right top;
}
/* The Bottom Left corner of the box                                           */
.RedRoundBox_lb
{
	background-image: url(../../Images/Boxes/RedBorderRound_LB.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
}
/* The Top Left corner of the box                                              */
.RedRoundBox_lt
{
	background-image: url(../../Images/Boxes/RedBorderRound_LT.gif);
	background-repeat: no-repeat;
	background-position: left top;
	color: inherit;
}
/* Put whatever you want in the following protected area */
/* Protected Area Start [+337+525+524+4] It is safe to modify code in this region */
/* Protected Area End [+337+525+524+4] It is only safe to modify code in these protected areas */

