/* 

	NAME:		CSS STYLE SHEET - LAYOUT_JUSTIFICATION
	COMPANY:	E-fect LLC
	AUTHOR:		Eric Wolsing
	DATE:		03-07-2008
	PURPOSE:	Defines default layout for a website 

*/

/* Inner content justification */
.text_center 
{
	text-align:center;
}

.text_left 
{
	text-align:left;
}

.text_right 
{
	text-align:right;
}

/* Center justify a container */
.content_center
{
	margin-left:auto;
	margin-right:auto;
}

/* Floating containers */
.float_left 
{
	float:left;
	left:0px;
}

.float_right 
{
	float:right;
	right:0px;
}