/**
 * colors
 */
.color-black
{
	color: #000;
}

.color-white
{
	color: #fff;
}

.color-red
{
	color: #f00;
}

.color-green
{
	color: #008000;
}

.color-blue
{
	color: #00f;
}

.color-yellow
{
	color: #ff0;
}

/**
 * cursors
 */
.cursor-wait
{
	cursor: wait;
}

.cursor-pointer
{
	cursor: pointer;
	cursor: hand;
}

/**
 * Directions
 */
.ltr
{
	direction: ltr;
}

.rtl
{
	direction: rtl;
}

/**
 * Text Alignments
 */
.align-right
{
	text-align: right;
}
 
.align-left
{
	text-align: left;
}

.align-center
{
	text-align: center;
}

/**
 * Box Display
 */
.display-block
{
	display: block;
}

/**
 * Box Floating
 */
.float-left
{
	float: left;
}

.float-right
{
	float: right;
}

/**
 * Cross-Browser ClearFix
 */
.clearfix:after
{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.clearfix:after
{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
* html .clearfix { zoom: 1;}
*:first-child + html .clearfix { zoom: 1;}