

/* Misc classes
========================= */
.hide {
	display: none;
}
.invisible {
	visibility: hidden;
}
.bold {
	font-weight: 900;
}
.nowrap {
	white-space: nowrap;
}
.dinline {
	display: inline;
}
.col {
	float: left;
	margin: 0 2% 20px 0;
}
input.number {
	text-align: right;
	width: 50px;
}
a.icontext {
	text-decoration: none;
	white-space: nowrap;
}
a.icontext img {
	vertical-align: middle;
}
a.icontext span {
	text-decoration: underline;
}

/* Padding & Margins
========================= */
.nopadding {
	padding: 0;
}
.nomargin {
	margin: 0;
}
.pushdown {
	margin-bottom: 20px;
}
.pushup {
	margin-top: 20px;
}
.pushleft {
	margin-left: 20px;
}
.pushright {
	margin-right: 20px;
}
.pushdownmore {
	margin-bottom: 40px;
}
.pushupmore {
	margin-top: 40px;
}
.pushleftmore {
	margin-left: 40px;
}
.pushrightmore {
	margin-right: 40px;
}
.pad {
	margin-left: 10px;
	margin-right: 10px;
}

/* Float & Clear
========================= */
.floatleft {
	float: left;
}
.floatright {
	float: right;
}
.clear {
	clear: both;
}
.clearleft {
	clear: left;
}
.clearright {
	clear: right;
}

/* Sizes
========================= */
.w25 {
	width: 25px;
}
.w30 {
	width: 30px;
}
.w40 {
	width: 40px;
}
.w50 {
	width: 50px;
}
.w75 {
	width: 75px;
}
.w100 {
	width: 100px;
}
.w110 {
	width: 110px;
}
.w150 {
	width: 150px;
}
.w200 {
	width: 200px;
}
.w225 {
	width: 225px;
}
.w250 {
	width: 250px;
}
.w265 {
	width: 265px;
}
.w300 {
	width: 300px;
}
.w350 {
	width: 350px;
}
.w400 {
	width: 400px;
}
.w500 {
	width: 500px;
}
.w600 {
	width: 600px;
}
.h150 {
	height: 150px;
}
.w10p {
	width: 10%;
}
.w80p {
	width: 80%;
}
.w90p {
	width: 90%;
}
.w100p {
	width: 100%;
}
.cw20 { /* fifth */
	width: 18%;
}
.cw25 { /* quarter */
	width: 23%;
}
.cw30 { /* three-tenths */
	width: 27%;
}
.cw33 { /* third */
	width: 31%;
}
.cw50 { /* half */
	width: 47%;
}
.cw66 { /* two-thirds */
	width: 61%;
}
.cw75 { /* three-quarters */
	width: 73%;
}
.cw80 { /* three-quarters */
	width: 75%;
}

/* Align
========================= */
.aright {
	text-align: right;
}
.acenter {
	text-align: center;
}
.aleft {
	text-align: left;
}
.atop {
	vertical-align: top;
}
.abottom {
	vertical-align: bottom;
}
.amiddle,
.inline {
	vertical-align: middle;
}

/* Apply pile_items to lists and blocks containing other blocks
========================= */
.pile_items > div,
.pile_items > a img,
.pile_items > p {
	padding: 0 20px 20px 0;
}
* html .pile_items p,
* html .pile_items img {
	padding: 0 20px 20px 0;
}
ul.pile_items,
ol.pile_items {
	list-style: none;
}
.pile_items li {
	margin-left: 0;
	padding-left: 0;
}

/* Opacity changes for image links
=========================*/
a.fadeout img { /* Default: 50% opacity; Hover: 100% opacity */
	opacity: 0.5;
}
a.fadeout:hover img {
	opacity: 1;
}
a.fadeover img { /* Default: 100% opacity; Hover: 50% opacity */
	opacity: 1;
}
a.fadeover:hover img {
	opacity: 0.5;
}

/* Clearfix hack
=========================*/
.clearfix {
	display: inline-block;
}
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

/* Page messages
====================================*/
.page_message:before {
	content: url("/images/bullet_message.png");
}
.page_alert:before {
	content: url("/images/bullet_alert.png");
}
.page_error:before {
	content: url("/images/bullet_error.png");
}
.page_message {
	background-color: #6DC462;
	color: #fff;
}
.page_message a {
	color: #fff;
}
.page_alert {
	background-color: #F2D658;
	border: 2px solid #C16803;
	color: #C16803;
}
.page_alert a {
	color: #C16803;
}
.page_error {
	background-color: #E25F53;
	border: 2px solid #fff;
	color: #fff;
}
.page_error a {
	color: #fff;
}
.page_message,
.page_alert,
.page_error {
	padding: 10px;
	margin: 0 20px 15px 20px;
}

/* Misc definitions
====================================*/
h1 a {
	text-decoration: none;
}
ol,
ul,
table,
p,
dt,
dd,
form {
	margin-bottom: 20px;
}

/* PNG transparency for IE
====================================*/
img {
	behavior: url(/lib/iepngfix/iepngfix.htc);
}