@charset "UTF-8";
/* CSS Document */

/* Font Weights */

.bold {
	font-weight: bold;
}

.lighter {
	font-weight: lighter;
}

/* Font Styles */

.italic {
	font-style: italic;
}

.oblique {
	font-style: oblique;
}

/* Text Alignment Styles */

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
}

/* Text Decoration Styles */

.underline {
	text-decoration: underline;
}

.overline {
	text-decoration: overline;
}

.linethrough {
	text-decoration: line-through;
}









