/* Setup defaults since variable in browsers */
/* ----------------------------------------- */

* {
	box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

h1 {
	font-weight: bold;
}
label {
	font-weight: normal;
	color: #000000;
}

img {
	border: 0px;
	margin: 0px;
	padding: 0px;
}

a, a:visited {
	color: #0033FF;
	text-decoration: none;
}

a:hover {
	color: #0033FF;
	text-decoration: underline;
}

a.boldItem {
	font-weight: bold;
}

a.blueItem {
	color: #000099;
}

a.pinkItem {
	color: #FF0066;
}

a.button:hover {
	text-decoration: none;
}

input[type="checkbox"], input[type="radio"]{
	background: transparent;
	border: 0px;
}

input.radio {
	width: 13px;
	height: 13px;
}

input.checkbox {
	width: 15px;
	margin: 0px 3px 0px 0px;
	margin-top:1px; /* so the top of checkbox is visible on FF */
	vertical-align: top;
}
/* Template
----------------------------------------------- */

div#errors ul {
	width: 400px;
	text-align: left;
	color: red;
	margin: 0px;
	padding: 0px;
}
div#errors ul li {
	border: 0px;
	padding: 0px;
	list-style-type: none;
}

span.error {
	color: red;
}

.clearFloat {
	clear: both;
}

.noWrap {
	white-space: nowrap;
}

/* Spacer */

div.redSpacer {
	clear: both;
	margin: 15px 0px 15px 0px;
	padding: 0px 0px 2px 10px;
	border-bottom: 1px solid #CC3824;
}

div.greySpacer {
	clear: both;
	margin: 15px 0px 15px 0px;
	padding: 0px 0px 2px 10px;
	border-bottom: 1px solid #BDB9A2;
}

div.horizontalLine {
	margin: 10px 0px 10px 0px;
	padding: 0px 10px 1px 10px;
	border-bottom: 1px solid #BDB9A2;
}

/* Layout
----------------------------------------------- */
ol.listLink {
	border: 0px;
	margin: 0px;
	padding: 0px;
}

ol.listLink li {
	padding: 2px 0px 2px 0px;
	list-style-type: none;
}

/* table used for form */
table.form {
	margin-top: 10px;
	border-collapse: separate;
	border-spacing: 0px 10px; /* not supported by IE: use cellspacing in HTML! */
}

table.form td {
	vertical-align: top;
	white-space: nowrap;
}

table.form td.label {
	text-align: right;
	padding-right: 5px;
}

table.form td.label label.error {
	color: #FF0000;
}

table.form td.field {
	width: 100%;
}

table.form span.note {
	display: block;
	margin-top: 3px;
}

table.form a.note {
	display: block;
	margin-top: 3px;
}

td.button {
	text-align: right;
	padding-top: 5px;
	padding-bottom: 10px;
}

.separator {
	height: 10px;
	display: block;
	overflow: hidden;
	background-color: transparent;
	border: 0px;
}

.hidden {
	display: none;
}

.note {
	font-size: 8pt;
	color: #666666;
}

a.note {
	font-size: 8pt;
	color: #0033FF;
}

td.note {
	font-size: 8pt;
	text-align: right;
}

.textField {
	width: 180px;
}

.close {
	font-size: 12pt;
	font-weight: bold;
}

a.close {
	font-size: 9pt;
	font-weight: bold;
	text-decoration: none;
	color: white;
	background: #7A0202;
	padding-left: 2px;
	padding-right: 2px;
	padding-top: 0px;
	padding-bottom: 0px;
	border: 1px solid black;
	cursor: pointer;
}

.noPadding {
	padding: 0px;
}

.mouseOver {
    cursor: pointer;
    cursor: hand; /* IE 5.x */
}

div.yellowBoxMessage {
	width: 720px;
	margin: 10px 0px 10px 0px;
	padding: 10px;
	background-color: #FFFEEE;
	border: 1px solid #FFD700;
}
