﻿/**
 * GENERIC CLASSES
 */

p.Title
{
	margin-bottom: 10px;
}

p.Content
{
	margin-bottom: 10px !important;
	width: 100%;
	float: left;
	clear: both;
}

/* WIDTH */

.FullWidth
{
	width: 100%;
}

/* CLEAR */

.ClearLeft
{
	clear: left;
}

.ClearRight
{
	clear: right;
}

.ClearBoth
{
	clear: both;
}

/* DISPLAY */

.DisplayNone
{
	display: none;
}

.DisplayBlock
{
	display: block;
}

/* FLOAT */

.FloatRight
{
	float: right;
}

.FloatLeft
{
	float: left;
}

.FloatNone
{
	float: none;
}

/* VALIGN */

.VerticalMiddle
{
	vertical-align: middle;
}

.VerticalTop
{
	vertical-align: top;
}

.VerticalBottom
{
	vertical-align: bottom;
}

/* TEXT ALIGN */

.AlignCenter
{
	text-align: center;
}

.AlignLeft
{
	text-align: left;
}

.AlignRight
{
	text-align: right;
}

.AlignJustify
{
	text-align: justify;
}

/* COLOURS */

.White
{
	color: #fff;
}

.Black
{
	color: #000;
}

.DarkGrey
{
	color: #333;
}

.Grey
{
	color: #ccc;
}

.DarkGrey
{
	color: #666;
}

.Red
{
	color: rgb(220, 50, 50);
}

/* BACKGROUND */

.WhiteBg
{
	background-color: #fff;
}

.BlackBg
{
	background-color: #000;
}

.RedBg
{
	background-color: rgb(220,50,50);
}

.GreyBg
{
	background-color: #ccc;
}