/* CSS Document */

html { min-height: 100%; margin-bottom: 1px; }

body {
	margin: 20px auto 0 auto;
	padding: 0;
	background: #f0f0f9;
	color: #333;
	width: 950px;
	font-family: "trebuchet ms", arial, verdana, sans-serif;
	text-align: center;
}

#wrap {
	margin: 0;
	width: 920px;
	padding: 0 30px;
	background: #fff;
	text-align: left;
}

img {
	border: none;
}

/* landing page rules */

body#splash {
	width: 920px;
}

body#splash #wrap {
	text-align: center;
	padding: 30px 0 0 0;
	margin-left: 0;
	margin-right: 0;
	height: 340px;
	width: 920px; /* full width of page */
}

body#splash #footer {
	border-top: none;
	text-align: center;
	padding: 0;
	margin: 5px 0 0 0;
}

.lang-wrap {
	margin: 0;
	padding: 0;
	width: 920px;
}

.english {float: left; text-align: right; width: 460px; margin: 0; padding: 0; background: transparent;}
.french {float: right; text-align: left; width: 460px; margin: 0; padding: 0; background: transparent;}

.english h1, .french h1 {
	float: none;
	padding: 30px 0 0 0;
	margin: 0 34px 30px 34px;
}

.english h1 {text-align: right;}
.french h1 {text-align: left;}

.english h1 a, .english h1 a:link, .english h1 a:visited, .english h1 a:active,
.french h1 a, .french h1 a:link, .french h1 a:visited, .french h1 a:active {
	text-decoration: none;
}

.english h1 a:hover, .french h1 a:hover {
	color: #837C62;
}

.english p, .french p {
	clear: both;
	font-size: 0.9em;
	margin: 0 34px 20px 34px;
}


/* top section rules */
#mast {
	width: 920px;
	height: 240px;
	margin: 0 0 15px 0;
	padding: 0;
}

body#home #mast {background: url(../images/bg_home.jpg);}
body#about #mast {background: url(../images/bg_about.jpg);}
body#services #mast {background: url(../images/bg_services.jpg);}
body#clients #mast {background: url(../images/bg_clients.jpg);}
body#contact #mast {background: url(../images/bg_contact.jpg);}
body#extras #mast {background: url(../images/bg_extras.jpg);}

#mast img.brand {
	margin: 65px 0 0 30px;
	padding: 0;
	border: none;
}

#top-nav {
	margin: 0;
	padding: 0;
	text-align: right;
}

#top-nav a, #top-nav a:link, #top-nav a:visited, #top-nav a:active {
	font-size: 0.75em;
	text-decoration: none;
	color: #413E30;
}

#top-nav a:hover {
	text-decoration: underline;
	color: #009;
}

/* suckerfish method with own styles used */

/* -----------------main navigation---------------- */
#nav-wrap {
	background-color: #fff;
	width: 920px;
	height: 30px;
	clear: both;
	padding: 0;
	margin: 0;
	border: 1px solid #ccc;
}

ul#nav { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	width: 860px;
	padding-left: 60px;
	line-height: 1.4em;
}

ul#nav ul {
	line-height: 1.4em;
	padding: 0;
	margin: 0;
}

ul#nav li { /* all list items */
	float: left;
	display: block;
}

ul#nav li ul { /* second-level lists */
	position: absolute;
	background: #fff;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	z-index: 1000;
}

ul#nav li:hover ul, ul#nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	width: 7.6em; /* Safari on MAC needed this - doesn't affect firefox or IE */
	margin-left: 40px;
}


/* link styles within main level topics */

ul#nav li a, ul#nav li a:link, ul#nav li a:visited, ul#nav li a:active {
	display: block;
	text-decoration: none;
	padding: 4px 52px 4px 52px;
	font-family: arial, "trebuchet-ms", sans-serif;
	font-weight: bold;
	color: #413E30;
	margin: 0;
}

ul#nav li a:hover {
	display: block;
	padding: 4px 52px 4px 52px;
	margin: 0;
	color: #009;
}

/* -------------- link styles within dropdowns --------------- */
ul#nav li ul li a, ul#nav li ul li a:link, ul#nav li ul li a:visited, ul#nav li ul li a:active {
	display: block;
	width: 9.5em;
	text-decoration: none;
	color: #333;
	background: #fff;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	font-weight: normal;
	font-family: verdana, arial, sans-serif;
	font-size: 11px;
	line-height: 1.4em;
	padding: 3px 5px 3px 10px;
	margin: 0;
	position: relative;
}

ul#nav li ul li a:hover {
	display: block;
	width: 9.5em;
	color: #cd5806;
	border-left: 1px solid #009;
	border-right: 1px solid #009;
	color: #009;
	font-size: 11px;
	line-height: 1.4em;
	padding: 3px 5px 3px 10px;
	margin: 0;
}

ul#nav li ul li.nolink {
	padding: 5px 5px 5px 7px;
	width: 9.8em;
	background: #f7f7f7;
	color: #9e948d;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	font-family: verdana, arial, sans-serif;
	font-size: 11px;
	font-weight: bold;
	line-height: 1.2em;
	margin: 0;
}

/* mf - add this test to check sticky menu fix - June 3, 2008 */
ul#nav li:hover, ul#nav li.hover {
    position: static;
}

#content-wrap {
	clear: both;
	margin: 30px 0 0 0;
	padding: 0;
	width: 860px;
	min-height: 300px;
}

#feature  {	
	float: left;
	width: 317px;
	height: 307px;
	margin: 0;
	padding: 10px 0 0 35px;
}

/* content starting from sub-heading and body text */
.meat {
	margin: 0;
	padding: 0 50px 0 259px;
}

.bio-wrap {
	width: 920px;
	margin: 30px 0 0 0;
	padding: 0;
	clear: both;
}

img.staff-pic {
	float: left;
	padding: 4px 0 0 0;
	margin: 0 0 0 30px;
}

.bio-text {
	margin: 0;
	padding: 0 50px 0 259px;
}

#centered-content {
	margin: 0;
	padding: 0 0 0 430px;
}

.right {
	float: right;
}

a.tooltip, a.tooltip:link, a.tooltip:visited, a.tooltip:active {
	color: #930;
	font-weight: bold;
	font-size: 0.9em;
	text-decoration: none;
}

a.tooltip:hover {background:#fff; color: #009; text-decoration:none;} /*BG color is a must for IE6*/
a.tooltip span {display:none; padding:12px; margin-top: 60px; margin-left:-601px; width:630px;}
a.tooltip:hover span{display:inline; position:absolute; background:#ADA482; border:1px solid #cccccc; color:#333;}

/* #edebde */

a.tooltip span h3 {
	color: #000; /* #930 */
	font-weight: bold;
}

a.tooltip span p {
	font-weight: normal;
	color: #000; /* #333*/
}

h1, h2, h3 {
	font-family: arial, "trebuchet-ms", sans-serif;
	margin: 0;
	padding: 0;
}

h1 {
	float: left;
	margin-top: -4px;
	padding-left: 112px;
	color: #000;
	font-size: 1.6em;
	font-weight: normal;
}

h2 {
	color: #009;
	font-size: 1.4em;
	font-weight: normal;
}

h3 {
	color: #009;
	font-size: 1.2em;
	font-weight: normal;
}

h3.expand {
	font-size: 0.9em;
	color: #000;
	font-weight: bold;
	padding-top: 3px;
}

p, .meat ul {
	font-size: 90%;
	line-height: 1.6em;
}

#meat ul {
	list-style-type: circle;
}


.pop {
	font-size: 110%;
	color: #009;
	font-weight: bold;
}

strong {
	color: #009;
}

address {
	margin-top: 20px;
	font-style: normal;
	font-size: 90%;
}

table.milestones {	
	border-collapse: collapse;
	background-color: #f0f0f9;
	font-size: 0.9em;
}

table.milestones th {
	background-color: #fff;
	padding: 6px;
	color: #009;
	border: 1px solid #ccc;
}

th.year {
	width: 35%;
}

table.milestones td {
	vertical-align: top;
	padding: 6px;
	border: 1px solid #ccc;
}

a, a:link, a:visited, a:active {
	color: #009;
	text-decoration: underline;
}

a:hover {
	color: #900;
}

#footer {
	clear: both;
	text-align: right;
	border-top: 1px solid #f7f7f7;
	margin-top: 20px;
	padding: 6px 3px 6px 0;
	font-size: 0.8em;
}


