//= require <mootools-core-1.3-full-nocompat>
//= require <uiframework/Panel>
var BottomLeftColumn = function()
{
	this.Extends = Panel;

	this.initialize = function()
	{
		this.parent("bottomLeftColumn");
		this.borderData(
		{
			topRight : "img/top-right-lower-left-column.png",
			top : "img/border-height35px.png"
		});
		this.backgroundStyle(
		{
			"background" : '#A5B7C9'
		});
	};
};
BottomLeftColumn = new Class(new BottomLeftColumn());
