/* BEGIN USERS DIVISIONS CSS:
** THIS WOULD REALLY BE FOR THE USER TO INCLUDE IN A SEPERATE CSS FILE. IT WILL SPECIFY THE CSS FOR
** THE DIVISIONS WRITTEN BY THEM.
*/

/* END USERS DIVISIONS CSS */


body #frs_11 .page_background
{
	background-image: linear-gradient(#FFFFFF 30%, transparent), linear-gradient(rgba(0, 0, 0, 1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 1) 1px, transparent 1px);
	background-size: 100% 100%, 100px 100px, 100px 100px;
	background-position: 0px 0px, -1px -1px, -1px -1px;	
}

body #frs_11 .frsAnnouncement
{	
	background-size: 40px 40px;
	background-color: #FFFFFF;
	background-image: linear-gradient(#DDDDDD 50%, transparent 50%, transparent);
}

body #frs_11 .main[data-key='14']
{
	background-color: #FFFFFF;
	padding-left: 2em;
	padding-right: 2em;
	padding-bottom: 2em;
}


/* decided against this, because it only looks good with a division with a decent amount of height:
/* CUT OFF THE TOP, LEFT CORNER AND THE BOTTOM, RIGHT CORNER 
body #frs_11 .frsAnnouncement
{	
	position: relative;
}

body #frs_11 .frsAnnouncement:before
{	
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	border-top-width: 5em;
	border-top-style: solid;
	border-right-width: 5em;
	border-right-style: solid;
	width: 0;
	
	/* this has to be set to whatever color the containing division of .frsAnnouncement is set to 
	border-top-color: #FFFFFF;
	/*  because it's transparent, this will get the background of this same division 
	border-right-color: transparent;	
}
		
/* CUT OFF THE BOTTOM, RIGHT CORNER 
body #frs_11 .frsAnnouncement:after
{	
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	border-bottom-width: 5em;
	border-bottom-style: solid;
	border-left-width: 5em;
	border-left-style: solid;
	width: 0;
	
	/* this has to be set to whatever color the containing division of .frsAnnouncement is set to 
	border-bottom-color:#FFFFFF;
	/* because it's transparent, this will get the background of this same division 
	border-left-color: transparent;
*/

}
