﻿
/* Alignments
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.alignTop
{
	vertical-align: top;
}
.alignMiddle
{
	vertical-align: middle;
}
.alignBottom
{
	vertical-align: bottom;
}

.floatLeft
{
	float: left;
}
.floatRight
{
	float: right;
}

.alignCenter
{
	text-align: -moz-center;
	text-align: center;
}
.alignLeft
{
	text-align: -moz-left;
	text-align: left;
}
.alignRight
{
	text-align: -moz-right;
	text-align: right;
}
.alignJustify
{
	text-align: justify;
}

/* Display
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.clear
{
	clear: both;
}
.hide
{
	display: none;
}
.show, .block
{
	display: block;
}
.showInline, .inline
{
	display: inline !important;
}
.showInlineBlock, .inlineBlock
{
	display: -moz-inline-block;
	display: inline-block;
}

/* Fonts
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/

.bold
{
	font-weight: bold;
}
.italic
{
	font-style: italic;
}
.underline
{
	text-decoration: underline !important;
}