/*
	Filename: classes.css
	Author: Riccardo Degni AKA RD (http://www.riccardodegni.net/)
	Description: Contiene le classi CSS.
*/

/*
	--------------------------------
	Text Alignment Classes
	--------------------------------
*/
.center {
	text-align:center;
}

.left {
	text-align:left;
}

.right {
	text-align:right;
}

.justify {
	text-align:justify;
}

/*
	--------------------------------
	Text Decoration Classes
	--------------------------------
*/
.underline {
	text-decoration:underline;
}

.overline {
	text-decoration:overline;
}

.crossline {
	text-decoration:line-through;
}

.noline {
	text-decoration:none;
}

/*
	--------------------------------
	Text Weight Classes
	--------------------------------
*/
.strong {
	font-weight:bold;
}

.em {
	font-style:italic;
}

/*
	--------------------------------
	Text Transform Classes
	--------------------------------
*/
.uppercase {
	text-transform:uppercase;
}

.lowercase {
	text-transform:lowercase;
}

.nocase, .dfltcase {
	text-transform:none;
}

/*
	--------------------------------
	Display Classes
	--------------------------------
*/
.inline {
	display:inline;
}

.block {
	display:block;
}

.remove, .no_display {
	display:none;
}

.float_left {
	float:left;
}

.float_right {
	float:right;
}

.clear {
	clear:both;
}

/*
	--------------------------------
	Visibility Classes
	--------------------------------
*/
.visible {
	visibility:visible;
}

.hidden {
	visibility:hidden;
}

/*
	--------------------------------
	Border Classes
	--------------------------------
*/
.no_border {
	border:none;
}

.border {
	border:1px solid #000000;
}

/*
	--------------------------------
	Auto Classes
	--------------------------------
*/
.width_auto {
	width:auto;
}
