/************/ /*  GLOBAL  */ /************/ /* NON-HEADER */
* {
	padding: 0;
	margin: 0;
}

body {
	font-size: 62.5%;
	background-color: rgb(255, 255, 255);
	font-family: verdana, arial, sans-serif;
}  /*Font-size: 1.0em = 10px when browser default size is 16px*/
.page-container {
	background-color: rgb(255, 255, 255);
	width: 855px;
	margin: 0px auto;
	margin-top: 10px;
	margin-bottom: 0px;
	font-size: 1.0em;
}

.main {
	background-color: rgb(255, 255, 255);
	clear: both;
	width: 850px;
	padding-bottom: 30px;
	border-left: solid 3px rgb(175, 175, 175);
	border-right: solid 3px rgb(175, 175, 175);
}

.main-navigation {
	display: inline /*Fix IE floating margin bug*/;
	float: left;
	width: 200px;
	overflow: visible !important /*Firefox*/;
	overflow: hidden /*IE6*/;
	background: rgb(245, 245, 245);
}

.main-content {
	display: inline; /*Fix IE floating margin bug*/;
	float: left;
	width: 600px;
	margin: 0 0 0 30px;
	overflow: visible !important /*Firefox*/;
	overflow: hidden /*IE6*/;
}

.main-subcontent {
	display: inline /*Fix IE floating margin bug*/;
	float: right;
	width: 185px;
	margin: 0 15px 0 0;
	overflow: visible !important /*Firefox*/;
	overflow: hidden /*IE6*/;
}

.footer {
	clear: both;
	width: 850px;
	padding: 1.0em 0 1.0em 0;
	border-top: solid 3px rgb(175, 175, 175);
	border-left: solid 3px rgb(175, 175, 175);
	border-right: solid 3px rgb(175, 175, 175);
	border-bottom: solid 3px rgb(175, 175, 175);
	background: rgb(225, 225, 225);
	font-size: 1.0em;
	overflow: visible !important /*Firefox*/;
	overflow: hidden /*IE6*/;
}

/* HEADER */
.header {
	width: 860px;
}

.header-top {
	width: 850px;
	height: 90px;
	border-top: solid 3px rgb(175, 175, 175);
	border-left: solid 3px rgb(175, 175, 175);
	border-right: solid 3px rgb(175, 175, 175);
	margin-top: 10px;
	background: rgb(255, 255, 255);
	overflow: visible !important /*Firefox*/;
	overflow: hidden /*IE6*/;
}

.header-bottom {
	width: 850px;
	border-bottom: solid 3px rgb(175, 175, 175);
	border-left: solid 3px rgb(175, 175, 175);
	border-right: solid 3px rgb(175, 175, 175);
	border-top: solid 1px rgb(175, 175, 175);
}

.header-breadcrumbs {
	clear: both;
	width: 850px;
	padding: 1.0em 0 1.5em 0;
	border-left: solid 3px rgb(175, 175, 175);
	border-right: solid 3px rgb(175, 175, 175);
}

.header .round-border-topleft {
	width: 25px;
	height: 25px;
	position: absolute;
	z-index: 100;
	background: url(../img/bg_head_corner_topleft_25px.gif) no-repeat;
	margin-top: -3px;
	margin-left: -3px;
}

.header .round-border-topright {
	width: 25px;
	height: 25px;
	position: absolute;
	z-index: 100;
	background: url(../img/bg_head_corner_topright_25px.gif) no-repeat;
	margin-top: -3px;
	margin-left: 828px;
}

/*************/ /*  2. HEAD  */ /*************/
.logo {
	width: 440px;
	height: 71px;
	position: absolute;
	z-index: 1;
	margin: 10px 0 0 15px;
	background: url(../img/basic-header.jpg);
}

.nav1 {
	width: 350px;
	position: absolute;
	z-index: 3;
	margin: 55px 0 0 610px;
}

.nav1 ul {
	float: right;
	padding: 0 15px 0 0;
	font-weight: normal;
}

.nav1 li {
	display: inline;
	list-style: none;
}

.nav1 li a {
	display: block;
	float: left;
	padding: 2px 5px 2px 5px;
	color: rgb(125, 125, 125);
	text-decoration: none;
	font-size: 110%;
}

.nav1 a:hover {
	text-decoration: none;
	color: rgb(50, 50, 50);
}

/*Drop-down menu*/
.nav2 {
	white-space: nowrap /*IE hack*/;
	float: left;
	width: 850px;
	background: rgb(248, 224, 150);
	color: rgb(100, 100, 100);
	font-size: 110%;
}  /*Color navigation bar normal mode*/
.nav2 ul {
	list-style-type: none;
}

.nav2 ul li {
	float: left;
	z-index: auto !important /*Non-IE6*/;
	z-index: 1000 /*IE6*/;
	border-right: solid 1px rgb(239, 157, 14);
}

.nav2 ul li a {
	float: none !important /*Non-IE6*/;
	float: left /*IE-6*/;
	display: block;
	height: 2.1em;
	line-height: 2.1em;
	padding: 0 16px 0 16px;
	text-decoration: none;
	font-weight: normal;
	color: rgb(100, 100, 100);
}

.nav2 ul li ul {
	display: none;
	border: none;
}

/*Non-IE6 hovering*/
.nav2 ul li:hover {
	position: relative;
}  /*Sylvain IE hack*/
.nav2 ul li:hover a {
	background-color: rgb(232, 177, 13);
	text-decoration: none;
}  /*Color main cells hovering mode*/
.nav2 ul li:hover ul {
	display: block;
	width: 10.0em;
	position: absolute;
	z-index: 999;
	top: 2.0em;
	margin-top: 0.1em;
	left: 0;
}

.nav2 ul li:hover ul li a {
	white-space: normal;
	display: block;
	width: 10.0em;
	height: auto;
	line-height: 1.3em;
	margin-left: -1px;
	padding: 4px 16px 4px 16px;
	border-left: solid 1px rgb(221, 124, 59);
	border-bottom: solid 1px rgb(244, 121, 33);
	background-color: rgb(248, 224, 150);
	font-weight: normal;
	color: rgb(100, 100, 100);
}  /*Color subcells normal mode*/
.nav2 ul li:hover ul li a:hover {
	background-color: #F4A721;
	text-decoration: none;
}  /*Color subcells hovering mode*/ /*IE6 hovering*/
.nav2 table {
	position: absolute;
	top: 0;
	left: -1px;
	border-collapse: collapse;
}

.nav2 ul li a:hover {
	position: relative /*Sylvain IE hack*/;
	z-index: 1000 /*Sylvain IE hack*/;
	background-color: #F4A721;
	text-decoration: none;
}  /*Color main cells hovering mode*/
.nav2 ul li a:hover ul {
	display: block;
	width: 10.0em;
	position: absolute;
	z-index: 999;
	top: 2.1em;
	t\op: 2.0em;
	left: 0;
	marg\in-top: 0.1em;
}

.nav2 ul li a:hover ul li a {
	white-space: normal;
	display: block;
	w\idth: 10.0em;
	height: 1px;
	line-height: 1.3em;
	padding: 4px 16px 4px 16px;
	border-left: solid 1px rgb(244, 121, 33);
	border-bottom: solid 1px rgb(244, 121, 33);
	background-color: rgb(240, 240, 240);
	font-weight: normal;
	color: rgb(50, 50, 50);
}  /*Color subcells normal mode*/
.nav2 ul li a:hover ul li a:hover {
	background-color: #F4A721;
	text-decoration: none;
}  /*Color subcells hovering mode*/
.header-breadcrumbs ul {
	float: left;
	width: 560px;
	list-style: none;
	padding: 0 0 0 15px;
	font-family: verdana, arial, sans-serif;
}

.header-breadcrumbs ul li {
	display: inline;
	padding: 0 0 0 10px;
	background: transparent url(../img/bg_bullet_arrow.gif) no-repeat 0 50%;
	font-weight: bold;
	color: rgb(125, 125, 125);
	font-size: 100%;
}

.header-breadcrumbs ul a {
	color: rgb(70, 122, 167);
	text-decoration: none;
}

.header-breadcrumbs ul a:hover {
	color: rgb(42, 90, 138);
	text-decoration: underline;
}

/* MAIN CONTENT */
.column1-unit {
	width: 100%;
	margin-bottom: 10px !important /*Non-IE6*/;
	margin-bottom: 5px /*IE6*/;
}

.column2-unit-left {
	float: left;
	width: 50%;
	margin-bottom: 10px !important /*Non-IE6*/;
	margin-bottom: 5px /*IE6*/;
}

.column2-unit-right {
	float: right;
	width: 50%;
	margin-bottom: 10px !important /*Non-IE6*/;
	margin-bottom: 5px /*IE6*/;
}

/* MAIN SUBCONTENT */
.subcontent-unit-border-orange {
	width: 183px;
	margin: 0 0 2.5em 0px;
	padding: 0 0 10px 0;
	border: solid 1px rgb(221, 124, 59);
	background-color: #F8E096;
}

.round-border-topleft {
	width: 10px;
	height: 10px;
	position: absolute;
	z-index: 100;
	margin-top: -1px;
	margin-left: -1px;
}

.round-border-topright {
	width: 10px;
	height: 10px;
	position: absolute;
	z-index: 100;
	margin-top: -1px;
	margin-left: 174px;
}

/********************/ /*  FOOTER SECTION  */ /********************/
.footer p {
	line-height: 1.3em;
	text-align: center;
	color: rgb(125, 125, 125);
	font-weight: bold;
	font-size: 100%;
}

.footer p.credits {
	font-weight: normal;
}

.footer a {
	text-decoration: underline;
	color: rgb(125, 125, 125);
}

.footer a:hover {
	text-decoration: none;
	color: rgb(0, 0, 0);
}

.footer a:visited {
	color: rgb(0, 0, 0);
}

/******************/ /*  CLEAR FLOATS  */ /******************/
.page-container:after,.header:after,.header-bottom:after,.header-breadcrumbs:after,.main:after,.main-navigation:after,.main-content:after,.main-content div:after,.main-subcontent:after
	{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.column1-unit:after,.column2-unit-left:after,.column2-unit-right:after,.column3-unit-left:after,.column3-unit-middle:after,.column3-unit-right:after
	{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.subcontent-unit-border:after,.subcontent-unit-noborder:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.subcontent-unit-border-orange:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

p:after {
	content: ".";
	display: block;
	height: 0; /*clear:both*/;
	visibility: hidden;
}

.footer:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clear-contentunit {
	clear: both;
	width: 100%;
	height: 0.1em;
	border: none;
	background: rgb(210, 210, 210);
	color: rgb(210, 210, 210);
}
