/*
	$Id: lib.css, v 1.0 2010-02-04 9:02:52 AM rgerber Exp $
	Copyright (c) 2010 Raphael Gerber, raphael.gerber@gmail.com
	All rights reserved.

	File:          lib.css
	Author:        Raphael Gerber (rgerber)
	Description:   Style Library

	History:
		v 1.0 2010-02-04 rgerber Created


	Table of Contents:
		- Align & Float
		- Border
		- Display
		- Margins & Paddings
		- Rounded Corners
		- Shadow
		- Visibility
		- Width & Height
*/


/* --------------------------------------------------------------------- */
/* Align & Float */
/* --------------------------------------------------------------------- */
.align-center {text-align: center;}
.align-left {text-align: left;}
.align-right {text-align: right !important;}

.valign-base {vertical-align: baseline !important;}
.valign-middle {vertical-align: middle !important;}
.valign-top {vertical-align: top !important;}

.clear {
	clear: both;
	margin: 0;
	padding: 0;
}

.float-left {float: left;}
.float-right {float: right;}

.nowrap {white-space: nowrap;}
.wrap-break-word {word-wrap: break-word;}


/* --------------------------------------------------------------------- */
/* Border */
/* --------------------------------------------------------------------- */
.border-t {border-top: 1px solid #cecfd0;}
.border-r {border-right: 1px solid #cecfd0;}
.border-b {border-bottom: 1px solid #cecfd0 !important;}
.border-l {border-left: 1px solid #cecfd0;}
.border-l-r {border: solid #bcbdbe; border-width: 0 1px;}

.no-border {border: 0 !important;}
.no-border-t {border-top: 0 !important;}
.no-border-b {border-bottom: 0 !important;}
.no-border-l {border-left: 0 !important;}


/* --------------------------------------------------------------------- */
/* Display */
/* --------------------------------------------------------------------- */
.hide {display: none;}
.show {display: block;}
.display-block {display: block !important;}
.display-table {display: table;}
.display-inline-block {display: inline-block !important;}


/* --------------------------------------------------------------------- */
/* Margins & Paddings */
/* --------------------------------------------------------------------- */
.margin {margin: 1.333em !important; /* 16px */}
.margin-6 {margin: 0.5em !important; /* 6px */}
.margin-8 {margin: 0.667em !important; /* 8px */}

.margin-t {margin-top: 1.333em !important; /* 16px */}
.margin-t-2 {margin-top: 0.167em !important; /* 2px */}
.margin-t-3 {margin-top: 0.25em !important; /* 3px */}
.margin-t-4 {margin-top: 0.333em !important; /* 4px */}
.margin-t-5 {margin-top: 0.417em !important; /* 5px */}
.margin-t-8 {margin-top: 0.667em !important; /* 8px */}
.margin-t-12 {margin-top: 1em !important; /* 12px */}
.margin-t-18 {margin-top: 1.5em !important; /* 18px */}
.margin-t-24 {margin-top: 2em !important; /* 24px */}
.margin-t-28 {margin-top: 2.333em !important; /* 28px */}

.margin-r {margin-right: 1.333em !important; /* 16px */}
.margin-r-4 {margin-right: 0.333em !important; /* 4px */}
.margin-r-8 {margin-right: 0.667em !important; /* 8px */}
.margin-r-30 {margin-right: 2.5em !important; /* 30px */}

.margin-b {margin-bottom: 1.333em !important; /* 16px */}
.margin-b-0 {margin-bottom: 0 !important;}
.margin-b-2 {margin-bottom: 0.167em !important; /* 2px */}
.margin-b-4 {margin-bottom: 0.333em !important; /* 4px */}
.margin-b-6 {margin-bottom: 0.5em !important; /* 6px */}
.margin-b-8 {margin-bottom: 0.667em !important; /* 8px */}
.margin-b-12 {margin-bottom: 1em !important; /* 12px */}
.margin-b-24 {margin-bottom: 2em !important; /* 24px */}
.margin-b-26 {margin-bottom: 2.167em !important; /* 26px */}
.margin-b-30 {margin-bottom: 2.5em !important; /* 30px */}
.margin-b-53 {margin-bottom: 4.417em !important; /* 53px */}

.margin-l {margin-left: 1.333em !important; /* 16px */}
.margin-l-4 {margin-left: 0.333em !important; /* 4px */}
.margin-l-8 {margin-left: 0.667em !important; /* 8px */}
.margin-l-50 {margin-left: 4.167em !important; /* 50px */}

.no-margin {margin: 0 !important;}

.padding {padding: 0.667em !important; /* 8px */}
.padding-2 {padding: 0.167em !important; /* 2px */}
.padding-4 {padding: 0.333em !important; /* 4px */}
.padding-6 {padding: 0.5em !important; /* 6px */}
.padding-8 {padding: 0.667em !important; /* 8px */}
.padding-12 {padding: 1em !important; /* 12px */}

.padding-3-8 {padding: 0.250em 0.667em !important; /* 3px 8px */}
.padding-3-8-0-8 {padding: 0.250em 0.667em 0 0.667em !important; /* 3px 8px 0px 8px */}

.padding-t-3 {padding-top: 0.250em !important; /* 3px */}

.padding-r-0 {padding-right: 0.0em !important; /* 0px */}
.padding-r-2 {padding-right: 0.167em !important; /* 2px */}
.padding-r-6 {padding-right: 0.5em !important; /* 6px */}
.padding-r-8 {padding-right: 0.667em !important; /* 8px */}
.padding-r-60 {padding-right: 4em !important; /* 60px */}

.padding-b-0 {padding-bottom: 0 !important;}
.padding-b-3 {padding-bottom: 0.250em !important; /* 3px */}
.padding-b-8 {padding-bottom: 0.667em !important; /* 8px */}

.padding-l-8 {padding-left: 0.667em !important; /* 8px */}

.no-padding {padding: 0 !important;}


/* --------------------------------------------------------------------- */
/* Rounded Corners */
/* --------------------------------------------------------------------- */
.round {
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;
}

.round-2 {
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

.round-5 {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.round-t {
	-moz-border-radius-topleft: 7px;
	-moz-border-radius-topright: 7px;
	-webkit-border-top-left-radius: 7px;
	-webkit-border-top-right-radius: 7px;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
}

.round-tl {
	-moz-border-radius-topleft: 7px;
	-webkit-border-top-left-radius: 7px;
	border-top-left-radius: 7px;
}

.round-tr {
	-moz-border-radius-topright: 7px;
	-webkit-border-top-right-radius: 7px;
	border-top-right-radius: 7px;
}

.round-tre {
	-moz-border-radius-topright: 30px;
	-webkit-border-top-right-radius: 30px 22px;
	border-top-right-radius: 30px;
}

.round-b {
	-moz-border-radius-bottomleft: 7px;
	-moz-border-radius-bottomright: 7px;
	-webkit-border-bottom-left-radius: 7px;
	-webkit-border-bottom-right-radius: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
}

.round-bl {
	-moz-border-radius-bottomleft: 7px;
	-webkit-border-bottom-left-radius: 7px;
	border-bottom-left-radius: 7px;
}

.round-br {
	-moz-border-radius-bottomright: 7px;
	-webkit-border-bottom-right-radius: 7px;
	border-bottom-right-radius: 7px;
}

.round-l {
	-moz-border-radius-topleft: 7px;
	-moz-border-radius-bottomleft: 7px;
	-webkit-border-top-left-radius: 7px;
	-webkit-border-bottom-left-radius: 7px;
	border-top-left-radius: 7px;
	border-bottom-left-radius: 7px;
}

.round-r {
	-moz-border-radius-topright: 7px;
	-moz-border-radius-bottomright: 7px;
	-webkit-border-top-right-radius: 7px;
	-webkit-border-bottom-right-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom-right-radius: 7px;
}


/* --------------------------------------------------------------------- */
/* Shadow */
/* --------------------------------------------------------------------- */
.shadow-b {
	box-shadow: 0px 1px 0px #c1c2c3;
	-moz-box-shadow: 0px 1px 0px #c1c2c3;
	-webkit-box-shadow: 0px 1px 0px #c1c2c3;
}


/* --------------------------------------------------------------------- */
/* Width & Height */
/* --------------------------------------------------------------------- */
.width-10p {width: 10% !important;}
.width-15p {width: 15% !important;}
.width-20p {width: 20% !important;}
.width-22 {width: 1.833em !important;}
.width-25p {width: 25% !important;}
.width-30p {width: 30% !important;}
.width-33p {width: 33% !important;}
.width-35p {width: 35% !important;}
.width-36p {width: 36% !important;}
.width-40p {width: 40% !important;}
.width-45p {width: 45% !important;}
.width-49p {width: 49.5% !important;}
.width-50p {width: 50% !important;}
.width-55p {width: 55% !important;}
.width-60p {width: 60% !important;}
.width-67p {width: 67% !important;}
.width-70p {width: 70% !important;}
.width-75p {width: 75% !important;}
.width-80p {width: 80% !important;}
.width-85p {width: 85% !important;}
.width-90p {width: 90% !important;}
.width-95p {width: 95% !important;}
.width-99p {width: 99.5% !important;}
.width-100p {width: 100% !important;}

.width-22 {width: 1.571em !important;}
.width-100 {width: 8.333em !important;}

.height-24 {height: 2em !important;}
.height-80 {height: 6.667em !important;}
.height-100p {height: 100% !important;}
.height-155 {height: 12.917em; /* 155px */}