.boxTop {
	background: url(/img/box);
}
span.spacer {
	padding: 0 3px;
}

.left {
	float: left;
}
.right {
	float: right;
}
.clr {
	clear: both;
}
.clrLeft {
	clear: left;
}
.clrRight {
	clear: right;
}

.hide {
	display: none;
}

.block {
	display: block;
}
.inline {
	display: inline;
}

.pointer {
	cursor: pointer;
}

a {
	color: #61a5d2;
	text-decoration: underline;
}
a.noStyle {
	color: inherit;
	text-decoration: none;
}

/* Margin */
.marginRight5 {
	margin-right: 5px;
}
.marginRight10 {
	margin-right: 10px;
}
.marginRight20 {
	margin-right: 20px;
}
.marginRight50 {
	margin-right: 50px;
}
.marginBottom5 {
	margin-bottom: 5px;
}
.marginBottom10 {
	margin-bottom: 10px;
}
.marginBottom20 {
	margin-bottom: 20px;
}
.marginLeft10 {
	margin-left: 10px;
}
.marginTop10 {
	margin-top: 10px;
}
.marginTop30 {
	margin-top: 30px;
}
.margin10 {
	margin: 10px;
}
.noMargin {
	margin: 0;
}

/* Padding */
.padding2 {
	padding: 2px;
}
.padding5 {
	padding: 5px;
}
.padding10 {
	padding: 10px;
}
.padding30 {
	padding: 30px;
}
.paddingTop10 {
	padding-top: 10px;
}
.paddingTop15 {
	padding-top: 15px;
}
.paddingTop20 {
	padding-top: 20px;
}
.paddingRight10 {
	padding-right: 10px;
}
.paddingBottom10 {
	padding-bottom: 10px;
}

/* Border */
.borderGrey {
	border: 1px solid #d7dae3;
}
.borderFatGrey {
	border: 3px solid #d7dae3;
}
.borderYellow {
	border: 1px solid #eae6cd;
}
.borderBlue {
	border: 1px solid #d9e8ef;
}
.delimiterGreyRight {
	border-right: 1px solid #d7dae3;
}
.delimiterGreyBottom {
	border-bottom: 1px solid #d7dae3;
}

/* Headings */
h1 { font-size: 18px;}
h2 { font-size: 16px;}
h3 { font-size: 14px;}

/* Input */
input, select, textarea {
	border: 1px solid #d7dae3;
	font-size: 14px;
}
label {
	font-weight: bold;
	margin-right: 10px;
}

p {
	margin-bottom: 10px;
	line-height: 1.5em;
}

/* Lists */
ul.noStyle {
	list-style: none;
}
li.bottomBorder {
	border-bottom: 1px solid #e3e3e3;
}
li.topBorder {
	border-top: 1px solid #e3e3e3;
}
ul.blueArrows li {
	padding: 5px 5px 6px 20px;
	background: transparent url(/img/blue_arrow.jpg) no-repeat 0 6px;
}
ul.blueArrowsRight li {
	padding: 5px 20px 6px 5px;
	background: transparent url(/img/blue_arrow.jpg) no-repeat 100% 5px;
}
.yellowBg ul.blueArrows li {
	background-image: url(/img/blue_arrow_yellow_bg.jpg);
}
ul.smallPadding li {
	padding: 2px 0;
}

/* Links */
a.blueArrow {
	padding: 2px 20px 2px 0;
	background: transparent url(/img/blue_arrow.jpg) no-repeat 100% 2px;
}

/* Buttons */
.blueButton span {
	height: 23px;
	float: left;
	color: #ffffff;
}
.blueButton .buttonLeft {
	background: transparent url(/img/button_bg_left.jpg) no-repeat top left;
}
.blueButton .buttonMiddle {
	padding: 4px 5px 0;
	background: transparent url(/img/button_bg_middle.jpg) repeat-x top left;
}
.blueButton .buttonRight {
	background: transparent url(/img/button_bg_right.jpg) no-repeat top right;
}

/* Tables */
td, th {
	padding: 2px 5px;
}
tr.grey {
	background-color: #F8F6F7;
}

/* Boxes */
.whiteBoxTop {
	height: 3px;
	border-top: 1px solid #dadae2;
	background-color: #ffffff;
}
.whiteBoxTop .rightCorner {
	height: 4px;
	width: 4px;
	margin-top: -1px;
	float: right;
	background: #ffffff url(/img/box_top_right_bg.png) no-repeat top right;
}
.whiteBoxTop .leftCorner {
	height: 4px;
	width: 4px;
	margin-top: -1px;
	float: left;
	background: #ffffff url(/img/box_top_left_bg.png) no-repeat top left;
}
.whiteBoxContent {
	padding: 6px 10px;
	background-color: #ffffff;
	border-right: 1px solid #dadae2;
	border-left: 1px solid #dadae2;
}
.whiteBoxBottom {
	height: 3px;
	margin-bottom: 3px;
	border-bottom: 1px solid #dadae2;
	background-color: #ffffff;
}
.whiteBoxBottom .rightCorner {
	height: 4px;
	width: 4px;
	margin-bottom: -1px;
	float: right;
	background: #ffffff url(/img/box_bottom_right_bg.png) no-repeat bottom right;
}
.whiteBoxBottom .leftCorner {
	height: 4px;
	width: 4px;
	margin-bottom: -1px;
	float: left;
	background: #ffffff url(/img/box_bottom_left_bg.png) no-repeat bottom left;
}
.whiteBoxBottom .shadowHolder {
	height: 11px;
	width: 320px;
	display: block;
	margin: 0 auto;
	padding-top: 4px;
}
.whiteBoxBottom .shadow {
	height: 11px;
	display: block;
	background: transparent url(/img/bottom_shadow.jpg) no-repeat top center;
}

/* Backgrounds */
.blackBg {
	background-color: #000000;
}
.whiteBg {
	background-color: #ffffff;
}
.yellowBg {
	background-color: #fffbf0;
}
.blueGradBg {
	background: #edf8fc url(/img/blue_grad.jpg) repeat-x top left;
}

/* Texts */
.textCenter {
	text-align: center;
}
.textLeft {
	text-align: left;
}
.textRight {
	text-align: right;
}
.whiteText {
	color: #ffffff;
}
.blackText {
	color: #000000;
}
.greyText {
	color: #b2b4bc;
}
.mediumText {
	font-size: 16px;
}
.bigText {
	font-size: 18px;
}
.biggerText {
	font-size: 22px;
}
.bold {
	font-weight: bold;
}
.underline {
	text-decoration: underline !important;
}

/* Specials */
.widthWide {
	width: 600px;
}
