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

/* Floating */
.clear
{
	clear: both;
}
.fr
{
	float: right;
}
.fl
{
	float: left;
}

/* Display */
.hidden
{
	display: none;
}
.show
{
    display: block;
}
.unseen
{
	visibility: hidden;
}

/* Spacer */
.height-10
{
	height: 10px;
}
.height-20
{
	height: 20px;
}
.height-30
{
	height: 30px;
}
.height-40
{
	height: 40px;
}
.height-50
{
	height: 50px;
}
.height-60
{
	height: 60px;
}

/* Margin/Padding */
.padding-off
{
    padding: 0px !important;
}
.margin-off
{
    margin: 0px !important;
}

/* Styles */
.pointer
{
    cursor: pointer;
}