@charset "utf-8";
/* CSS Document
Styles specific to index.html
Author:	Bruce Arkell
Date:	10/10/2009
Files:	Bluebox1.gif; topleft.png; topright.png; bottomleft.png; bottomright.png; top.png; bottom.png; left.png; right.png
*/

.roundedBox
{ 
position: relative; 
padding: 5px;
}
				
.boxContent{
margin: 7px;
padding: 2px;
font-size: 130%;
font-style: italic;
font-weight: bold;
color: #03C;
}
				
.topLeft{
background: url(images/topleft.png) no-repeat top left;
}
			
.topRight{
background: url(images/topright.png)  no-repeat top right;
}
			
.bottomLeft{
background: url(images/bottomleft.png) no-repeat bottom left;
}
			
.bottomRight{
background: url(images/bottomright.png)  no-repeat bottom right;
}
				
.top{
background: url(images/top.png)  repeat-x top;
}
		
.bottom{
background: url(images/bottom.png)  repeat-x bottom;
}
		
.left{
background: url(images/left.png)  repeat-y left;
}
		
.right{
background: url(images/right.png)  repeat-y right;
}


