/* @group --- GENERAL --- */

html {
  overflow-y: scroll;
}

html, body {
	margin: 0px;
	padding: 0px;
	color: #fff;
	text-align: center;
}

body {
	font-size: 62.5%; 	/* sets default font size to 10px @ 'medium' setting' */
	font-family: Verdana, Helvica, Arial, sans-serif;
	background-color: #006eac;
}

.image {
	border: 0px;
}

/* @end */

/* @group --- HEADER --- */

.headerBlock {
	position: relative;
	background-image: url('../images/header_gen_bg.jpg');
	background-repeat: repeat-x;
	width: 100%;
	height: 184px;
	text-align: center; /* need this, because IE doesnt center with 'auto' margins */
}

.headerTop {
	height: 28px;
	width: 100%;
	margin: 0px auto 0px auto;
	text-align: right;
}

.headerTop a.login {
	position: relative;
	top: 7px;
	left: -12px;
	font-size: 1em;
	color: #a8cbdf;
	text-decoration: none;
	display: block;
	outline: none;
}

.headerTitle {
	height: 125px;
	width: 770px;
	background-image: url('../images/header_title.jpg');
	margin: 0px auto 0px auto;
}

.headerTopLine {
	font-size: 1px; /* IE has min height of div equal to font/line height */
	height: 2px;
	width: 100%;
	background-image: url('../images/header_line_menu_top.jpg');
	background-position: center;
	margin: 0px auto 0px auto;	
}

.headerMenu {
	height: 27px;
	width: 770px;
	margin: 0px auto 0px auto;
	overflow: hidden;
	font-size: 14px; /* fixed size because if increased by user, might cause overflow */
	padding: 0px;
}

.headerMenu a {
	display: inline; 		/* fixes IE6-Win 'double margin' bug */
	float: left;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	height: 27px;
	padding: 5px 10px 0px 10px;
}

.headerMenu a.first {
	margin-left: 140px;
}

.headerMenu a:hover,
.headerMenu a.active {
	background: url('../images/top_menu_bg.jpg'); /* not a 'background-image' to avoid IE6-Win hover bug */
}

.headerBottomLine {
	font-size: 1px; /* IE has min height of div equal to font/line height */
	height: 1px;
	width: 100%;
	background-image: url('../images/header_line_menu_bottom.jpg');
	background-position: center;
	margin: 0px auto 0px auto;	
}

/* @end */

/* @group --- MAIN BODY --- */

.mainBody {
	width: 100%;
	background-image: url('../images/body_bg.jpg');
	background-repeat: repeat-x;
	text-align: center; /* need this because IE doesnt center children with 'auto' margins */
	}

.mainArea {
	width: 770px;
	background-image: url('../images/content_bg.jpg');
	background-repeat: repeat-x;
	margin: 0px auto 0px auto;
	overflow: hidden; /* FF fix: makes div expand to fit floated children */
}

/* @group --- SIDEMENU --- */

.sideMenu {
	float: left;
	width: 210px;
	text-align: left;
	margin: 0px;
	padding: 0 0 120px 0;
}

.sideMenu h1 {
	font-size: 1.7em;
	border-bottom: 2px solid #056aaf;
	padding: 15px 0px 3px 0px;
	margin: 0 0 12px 10px;
/*	margin-top: 0px;
	margin-left: 10px;
*/
	font-style: italic;
	color: #fff;
}

.sideMenu p {
	font-size: 1.3em;
	text-align: center;
	padding: 0 0 10px 0;
}
	
/* --- first level menu items --- */
.sideMenu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* only first level UL */
.sideMenu > ul {
	padding: 0 0 17px 0;
}


.sideMenu li {
	margin: 2px 0px 5px 18px;
	padding: 3px 0;
	border-bottom: 1px dotted #6ea5c5;
}

.sideMenu a {
	font-size: 1.4em;
	text-decoration: none;
	color: #e8eff5;
	outline: none;
}

.sideMenu a:hover,
.sideMenu a.active {
	color: #6ea5c5;
}

/* --- second level menu items --- */

.sideMenu li li {
	margin: 5px 0px 4px 19px;
	padding-bottom: 3px;
	border: none;
}

.sideMenu li li a {
	font-size: 1.2em;
	text-decoration: none;
	color: #e8eff5;
}

/* --- third level menu items (unused) --- */

.sideMenu li li li {
	margin: 5px 0px 0px 15px;
	padding-bottom: 2px;
	border: none;
}

.sideMenu li li li a {
	font-size: 1.1em;
	text-decoration: none;
	color: #e8eff5;
}

.sideMenu img.kpmg {
	display: block;
	margin: 0 auto;
	padding: 3px;
	border: 1px solid #cecece;
	width: 75%;
}

/* @end */

/* @group --- CONTENTBOX --- */
/* Note: main content box. rules generic. override with content-dependent divs --- */

.contentBox {
	float: right;
	width: 540px;
	text-align: left;
	margin-right: 5px;
	padding: 10px 0 15px 0;
	font-size: 1.2em;
	line-height: 1.3em;
	letter-spacing: 0.01em;
}

.contentBox p {
	margin-top: 10px;
}

.contentBox p.message {
	background-color: #0064A7;
	border: 1px solid #6EA5C5;
	padding: 7px;
	text-align: center;
}

.contentBox span.center {
	padding-top: 15px;
	display: block;
	text-align: center;
}

.contentBox a {
  text-decoration: none;
  color: #8db0c5;
}

.contentBox a:hover {
	border: 0;
	color: #c4c4c4;
}

.contentBox a img {
	border: 0;
}

.contentBox ul {
  list-style: disc;
}

.contentBox h3 {
	padding: 13px 0;
	font-size:  1.1em;
	text-align:  center;
}

.contentBox ul {
	margin-left: 25px;
}

.contentBox li {
	margin: 5px 0;
}
/* @end */

/* @end */

/* @group --- FOOTER --- */

.footerBlock {
	font-size: 9px;
	background-image: url('../images/footer_bg.jpg');
	background-repeat: repeat-x;
	width: 770px;
	height: 18px;
	margin: 0px auto 0px auto;
	padding-top: 2px;
}

.footerBlock a,
.footerBlock a:hover {
	text-decoration: none;
	color: #fff;
}

.footerBlock span {
	display: none;
}

/* @end */

