@charset "utf-8";
/* CSS Document */




/*
------------------------------------------------------------
CSS Reset
------------------------------------------------------------
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul, li, menu {
	list-style: none;
	padding: 0;
	margin: 0;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/*
------------------------------------------------------------
General Style
------------------------------------------------------------
*/

body {
	font-family: Verdana, Geneva, sans-serif;	
}

img {
	border: 0;	
	vertical-align: middle;
}

a {
	text-decoration: none;
	color: #0C478B;
}

a:hover {
	text-decoration: underline;
}

.message, .error-message, .ok-message, .info-message {
	position: relative;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 10px;
	padding-left: 40px;
	border: 1px dotted #FC0;
	margin: 0;
	background-position: 18px 9px;
	background-repeat: no-repeat;
	color: #000;
        line-height: 1.2em;
}


.message p, .error-message p, .ok-message p, .info-message p {
	margin: 0 0 10px 0 !important;
        padding: 0 !important;
}

.box .message, .box .error-message, .box .ok-message, .box .info-message {
	margin: 4px 0 4px 0;
}

.message {
	background-color: #FE8;
	background-image: url(../img/icons/alert.gif);
	border: 1px solid #FC0;
}

.error-message {
	background-color: #FCB;
	background-image: url(../img/icons/error.gif);
	border: 1px solid #F64;
}

.ok-message {
	background-color: #CFB;
	background-image: url(../img/icons/ok.gif);
	border: 1px solid #0C0;
}
.info-message {
	background-color: #CDF;
	background-image: url(../img/icons/info.gif);
	border: 1px solid #08D;
}

.formData .input .error-message {
	margin-left: 160px;	
}

.noResults {
	display: table-cell;
	vertical-align: middle;
	height: 240px;
	background-color: #ccc;
	background-image: url(../img/img_no_results.jpg);
	padding-left: 250px;
	background-repeat: no-repeat;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}


.ajaxLoader {
	vertical-align: middle;
	display:table-cell;
	text-align: center;
	color: #888;
}
.ajaxLoader img {
	vertical-align: middle;
}

.accessDenied {
	color: #ccc;
	padding-left: 16px;
	background-image: url(../img/icons/14_locked.gif);
	background-repeat: no-repeat;
	background-position: left center;
}

#progressBar {
	background-color: #567FAF;
	border-bottom: 2px solid #ccc;
	margin-bottom: 8px;
}

	#progressBar ul.wizard {
		position: relative;
		display: table;
		margin: auto;
		padding: 0;
		width: 986px;
		color: #0C478B;
		font-size: 12px;
		font-family: Verdana, Helvetica, sans-serif;
	}
		#progressBar ul.wizard li{
			position: relative;
			float: left;
			margin: 0;
			list-style: none;
			padding: 12px;
		}
		#progressBar ul.wizard li.title{
			color: #ccc;
			background-color: #888;
			font-weight: bold;
			margin-right: 12px;
		}
		#progressBar ul.wizard li.selected{
			color: #fff;
			font-weight: bold;
		}
		#progressBar ul.wizard li.past{
			font-weight: bold;
		}
		

	#progressBar a {
		color: #E0E8FF;
		font-size: 10px;
		font-weight: normal;
	}
		
#feedback {
	position: fixed;
	right: 0;
	top: 110px;
}


.break {
	font-size: 0;
	width: 0; height: 0;
	clear: both;
}