﻿/* Block style that totally encloses its children */
.Block
{
	overflow: auto;
}

/* Styles for creating a border from pictures */
.bg_right
{
	background-position: right top;
	background-repeat: repeat-y;
}
.bg_bottom
{
	background-position: left bottom;
	background-repeat: repeat-x;
}
.bg_top_right
{
	background-repeat: no-repeat;
	background-position: right top;
}
.bg_bottom_right
{
	background-repeat: no-repeat;
	background-position: right bottom;
}
.bg_bottom_left
{
	background-repeat: no-repeat;
	background-position: left bottom;
}

