/* CSS Document */

/*this is all the stuff to create round corner boxes. (except for six required images) tr (top right) goes in tl (top left) which goes in br (bottom right) which should be in bl (bottom left)
that whole mess gets placed in r, which fits in l which is in b that's in t
that killed the cat that ate the mouse that stole the cheese in the house that jack built.
*/

.t { /*normal "t" for left and middle columns */
 	background-color:#FFFFFF;
	background: url(http://class.lancasteronline.com/images/css/hdot.gif) 0 0 repeat-x;
	width: 320px;
	}
	
.searchgroup .t { /*alternate "t" for right hand column*/
 	background-color:#FFFFFF;
	background: url(http://class.lancasteronline.com/images/css/hdot.gif) 0 0 repeat-x;
	width: 300px;
	}

.unsuedt2 { 
 	background-color:#FFFFFF;
	background: url(http://class.lancasteronline.com/images/css/hdot.gif) 0 0 repeat-x;
	width: 300px;
	}
.tabgroup .t { /*alternate "t" for tabber*/
 	background-color:#FFFFFF;
	background: url(http://class.lancasteronline.com/images/css/hdot.gif) 0 0 repeat-x;
	width:647px;
	}
#leftnav .t { /*alternate "t" for leftnav*/
 	background-color:#FFFFFF;
	background: url(http://class.lancasteronline.com/images/css/hdot.gif) 0 0 repeat-x;
	width:160px;
	}
	
#content .t { /*alternate "t" for ad display*/
	background-color:#FFFFFF;
	background: url(http://class.lancasteronline.com/images/css/hdot.gif) 0 0 repeat-x;
	width:482px;
	padding:0px;
}

.b {
	background-color:#FFFFFF;
	background: url(http://class.lancasteronline.com/images/css/hdot.gif) 0 100% repeat-x
}
.l {
	background-color:#FFFFFF;
	background: url(http://class.lancasteronline.com/images/css/vdot.gif) 0 0 repeat-y
}
.r {
	background-color:#FFFFFF;
	background: url(http://class.lancasteronline.com/images/css/vdot.gif) 100% 0 repeat-y
}
.bl {
	background-color:#FFFFFF;
	background: url(http://class.lancasteronline.com/images/css/bl.gif) 0 100% no-repeat
}
.br {
	background-color:#FFFFFF;
	background: url(http://class.lancasteronline.com/images/css/br.gif) 100% 100% no-repeat
}
.tl {
	background-color:#FFFFFF;
	background: url(http://class.lancasteronline.com/images/css/tl.gif) 0 0 no-repeat
}
.tr {
	background: url(http://class.lancasteronline.com/images/css/tr.gif) 100% 0 no-repeat;
	padding: 1px 0px 1px 0px; /*top right bottom left must have some padding otherwise inner elements margin doesn't work.*/
}

