/* 
 ==========================================================================
   Helper Classes
 ========================================================================== 
*/


/*
*  Easily center a page's content
*/

.container {
	width: 1000px; /* Global width */
	height: auto;
	margin: 0 auto;
}

/*
*  Clearfix: contain floats
*/
 
.clearfix:before,
.clearfix:after {
    content: " "; 
    display: table; 
}

.clearfix:after {
    clear: both;
}

.clearfix {
	clear: both;
	overflow: hidden;
}

.clear{
	clear: both;
}

/*
* Float: left
*		 right
*		 none
*/

.float-left { float: left; }

.float-right { float: right; }

.float-none { float: none; }

/*
* Text Alignment: left
*				  right
*				  center
*				  justify
*/

.align-left { text-align: left; }

.align-right { text-align: right; }

.align-center { text-align: center; }

.align-justify { text-align: justify; }

/*
* Display: block
*		   inline
*		   inline-block
*		   table
*		   inline-table
*		   none
*/

.block { display: block !important; }

.inline { display: inline; }

.inline-block { display: inline-block; }

.table { display: table; }

.inline-table { display: inline-table; }

.none { display: none; }

/*
* Vertical Alignment: top
*					  middle
*					  bottom
*/

.align-top { vertical-align: top; }

.align-middle { vertical-align: middle; }

.align-bottom { vertical-align: bottom; }

/*
* Visibility : visible
*			   hidden
*/

.visible { visibility: visible; }

.hidden { visibility: hidden; }

/*
* Image Manipulation
*/

.thumb-left{
	float: left;
	margin-right: 20px;
}

.thumb-left2{
	float: left;
	margin-left: 18px;
	margin-right: 32px;
}

.thumb-right{
	float: right;
	margin-left: 20px;
}

.thumb-right2{
	float: right;
	margin-top: -25px;
	margin-left: 0px;
	margin-right: -10px;
}

.thumb-center{
	display: block;
	margin: auto;
	text-align: center;
}

