@charset "UTF-8";

/* -------------------------------------------------------------- 
   
   BLUEPRINT CSS
    * Filename:        grid.css
    * Version:         0.7.1 (2008-02-25) YYYY-MM-DD
    * Website:         http://code.google.com/p/blueprintcss/

   Based on work by:
    * Olav Bjorkoy      [bjorkoy.com]
    * Nathan Borror     [playgroundblues.com]
    * Jeff Croft        [jeffcroft.com]
    * Christian Metts   [mintchaos.com]
    * Khoi Vinh         [subtraction.com]

   == STRUCTURE: ========================
    * Page width:            1015 px
    * Number of columns:     8
    * Column width:          105 px
    * Margin width:          25 px
   ====================================== */
   

/* Reset
-------------------------------------------------------------- */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin:0; padding:0; border:0; font-weight:inherit; font-style:inherit; font-size:100%; font-family: Arial, Helvetica, sans-serif; vertical-align:baseline;}
/*body {line-height:1.5;}*/
table {border-collapse:separate; border-spacing:0;}
caption, th, td {text-align:left;font-weight:normal;}
table, td, th {vertical-align:middle;}
blockquote:before, blockquote:after, q:before, q:after {content:"";}
blockquote, q {quotes:"" "";}
a img {border:none;}

/* A container should group all your columns. */
.container {width: 1015px; margin: 0 auto; background: #090B2A url(../images/bgtile_container.jpg) repeat-x; padding: 0 20px 20px 20px;}
.container_showcase {width: 640px; margin: 0 auto; background: #090B2A url(../images/bgtile_container.jpg) repeat-x; padding: 0 20px 20px 20px;}

/* Use this class on any div.span / container to see the grid. */
.showgrid {background: url(../images/grid.png);}

html {}

/* Body margin for a sensible default look. */
body {background: #27325F url(../images/bgtile_body.jpg) repeat-x; font-family: Arial, Helvetica, sans-serif;}


/* Columns
-------------------------------------------------------------- */

/* Sets up basic grid floating and margin. */
div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, div.span-6, div.span-7, div.span-8 {float:left; margin-right: 25px;}

/* The last column in a row needs this class. */
div.last { margin-right: 0; }

/* Use these classes to set the width of a column. */
.span-1  { width: 105px;}
.span-2  { width: 235px;}
.span-3  { width: 365px;}
.span-4  { width: 495px;}
.span-5  { width: 625px;}
.span-6  { width: 755px;}
.span-7  { width: 885px;}
.span-8, div.span-8 { width: 1015px; margin: 0; }


/* Add these to a column to append empty cols. */
.append-1  { padding-right: 130px;}
.append-2  { padding-right: 260px;}
.append-3  { padding-right: 390px;}
.append-4  { padding-right: 520px;}
.append-5  { padding-right: 650px;}
.append-6  { padding-right: 780px;}
.append-7  { padding-right: 910px;}


/* Add these to a column to prepend empty cols. */
.prepend-1  { padding-left: 130px;}
.prepend-2  { padding-left: 260px;}
.prepend-3  { padding-left: 390px;}
.prepend-4  { padding-left: 520px;}
.prepend-5  { padding-left: 650px;}
.prepend-6  { padding-left: 780px;}
.prepend-7  { padding-left: 910px;}


/* Border on right hand side of a column. */
div.border {
  padding-right:11.5px;
  margin-right:12.5px;
  border-right: 1px solid #eee;
}

/* Border with more whitespace, spans one column. */
div.colborder {
  padding-right:95.5px;
  margin-right:92.5px;
  border-right: 1px solid #eee;
}

/* Use these classes on an element to push it into the 
   next column, or to pull it into the previous column.  */

.pull-1 { margin-left: -130px;}
.pull-2 { margin-left: -260px;}
.pull-3 { margin-left: -390px;}
.pull-4 { margin-left: -520px;}
.pull-5 { margin-left: -650px;}
.pull-6 { margin-left: -780px;}
.pull-7 { margin-left: -910px;}
.pull-8 { margin-left: -1040px;}

.pull-1, .pull-2, .pull-3, .pull-4, .pull-5, .pull-6, .pull-7, .pull-8 {float:left;position:relative;}


.push-1 { margin: 0 -130px 1.5em 130px;}
.push-2 { margin: 0 -260px 1.5em 260px;}
.push-3 { margin: 0 -390px 1.5em 390px;}
.push-4 { margin: 0 -520px 1.5em 520px;}
.push-5 { margin: 0 -650px 1.5em 650px;}
.push-6 { margin: 0 -780px 1.5em 780px;}
.push-7 { margin: 0 -910px 1.5em 910px;}
.push-8 { margin: 0 -1040px 1.5em 1040px;}

.push-1, .push-2, .push-3, .push-4, .push-5, .push-6, .push-7, .push-8 {float:right; position:relative;}


/* Misc classes and elements
-------------------------------------------------------------- */

/* Use a .box to create a padded box inside a column.  */ 
.box { 
  padding: 1.5em; 
  margin-bottom: 1.5em; 
  background: #E5ECF9; 
}

/* Use this to create a horizontal ruler across a column. */
hr {
  background: #ddd; 
  color: #ddd;
  clear: both; 
  float: none; 
  width: 100%; 
  height: .1em;
  margin: 0 0 1.45em;
  border: none; 
}
hr.space {
  background: #fff;
  color: #fff;
}

/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clearfix:after, .container:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix, .container {display: inline-block;}
* html .clearfix,
* html .container {height: 1%;}
.clearfix, .container {display: block;}

/* Regular clearing
   apply to column that should drop below previous ones. */

.clear { clear:both; }

/* =========================================================== */

#header {position: relative; height: 505px;}
#footer {position: relative; margin: 0 auto; background: #06081F; width: 1055px; height: 130px; border-top: 1px #27325F solid;}
#header_showcase {position: relative; height: 75px;}
#footer_showcase {position: relative; margin: 1px auto 0 auto; background: #06081F; width: 680px; height: 50px;}

table#slots {width: 300px; margin-left: 30px;/*border: 1px white solid;*/}
table#slots td {width: 50%; text-align: center;}
table#slots td img {padding: 5px 0 0 0;}
table#slots td p {font-size: 11px; color: #5766AA;} 

div.project_box {background: url(../images/bg_h2_collapsed.png) no-repeat; margin: 2px 0 0 0;}  /* Main project container*/
div.project_content {position: relative; width: 574px; height: 190px; background: url(../images/bg_project_box.png) no-repeat top right; margin: 2px 0 0 51px; text-align: center; padding-top: 10px;}
#flashbox_1, #flashbox_2, #flashbox_3, #flashbox_4 {width: 493px; height: 63px;}

ul#mast {position: absolute; right: 0; top: 80px;}
ul#mast li {display: inline; font-size: 14px; font-weight: bold; padding-left: 22px; margin-right: 25px; float: left; background: url(../images/btn_arrow.gif) no-repeat 0 50%; color: #A3AECF;}

.container_showcase h1 {font-size: 24px; color: #738BC6; margin: 15px 0 5px 0;}
#column2 h2 {color: #5766AA; background: url(../images/bg_h2_narrow.png) no-repeat 0 50%; padding: 5px 0 5px 30px; text-transform:uppercase; font-size:12px; font-weight:bold; margin: 20px 0 10px 0;}

h2#mountain a, h2#olympic a, h2#civil a, h2#environment a {display: block; height: 50px; width: 625px; text-indent: -9000px;}
h2#mountain a {background: url(../images/bg_title_mountain.png) no-repeat 50px 0;}
h2#mountain a:hover {background: url(../images/bg_title_mountain_f2.png) no-repeat 50px 0;}
h2#olympic a {background: url(../images/bg_title_olympic.png) no-repeat 50px 0;}
h2#olympic a:hover {background: url(../images/bg_title_olympic_f2.png) no-repeat 50px 0;}
h2#civil a {background: url(../images/bg_title_civil.png) no-repeat 50px 0;}
h2#civil a:hover {background: url(../images/bg_title_civil_f2.png) no-repeat 50px 0;}
h2#environment a {background: url(../images/bg_title_environment.png) no-repeat 50px 0;}
h2#environment a:hover {background: url(../images/bg_title_environment_f2.png) no-repeat 50px 0;}

#column2 p {font-size: 14px; line-height: 1.4; padding:0 20px; margin:15px 0 20px 0;}
#footer p {margin: 20px 0 0 670px; font-size: 12px; color: #27325F;}
#footer_showcase p {padding: 10px 20px 0 0; font-size: 11px; color: #27325F; text-align: right;}

p#introcopy {height:120px; text-transform:uppercase; margin:20px 0 5px 0; padding:15px 20px 0 20px; font-size:16px; line-height:1.4; background: url(../images/bg_intro_border.png) no-repeat;}
p#introcopy strong {color:#A3AECF; font-weight:normal;}
p#expandncollapse {font-size: 11px; color:#990000; padding: 0 0 5px 0;}

p {color: #5766AA; font-size: 14px;}
p.thumbslabel {text-align: left; font-size: 11px; padding: 3px 0 0 40px; color: #680800;}
p.label {font-size: 11px; padding: 8px 0 0 0; color: #990000;}
p.project_copy {text-align: left; font-size: 14px; padding: 10px 20px 0 20px; color: #5766AA; line-height: 1.4;}

img.supershim {clear: both; width: 500px;}
img.interceptor {position: absolute; width: 490px; height: 50px; left: 0px; top: 11px; border: 1px red dotted;}

img#logo {position: absolute; left: 20px; top: 25px;}
img#logo_showcase {position: absolute; left: 5px; top: 18px;}
#splash {position: absolute; left: 0px; bottom: 0px;}
img#partners {position: absolute; left: 15px; top: 10px;}

.hidden {display: none;}

a:link {color: #444F71; text-decoration: none;}
a:visited {color: #444F71; text-decoration: none;}
a:hover {color: #ffffff; text-decoration: none;}
a:active {color: #444F71; text-decoration: none;}

a.link_hyperlink:link {color: #990000; text-decoration: none;}
a.link_hyperlink:visited {color: #990000; text-decoration: none;}
a.link_hyperlink:hover {color: #990000; text-decoration: underline;}
a.link_hyperlink:active {color: #990000; text-decoration: none;}

a.link_email:link {color: #680800; text-decoration: none; border-bottom: #680800 1px dotted;}
a.link_email:visited {color: #680800; text-decoration: none; border-bottom: #680800 1px dotted;}
a.link_email:hover {color: #680800; text-decoration: none; border-bottom: #680800 1px dotted;}
a.link_email:active {color: #680800; text-decoration: none; border-bottom: #680800 1px dotted;}

a.link_email_pale:link {color: #A3AECF; text-decoration: none;}
a.link_email_pale:visited {color: #A3AECF; text-decoration: none;}
a.link_email_pale:hover {color: #A3AECF; text-decoration: none; border-bottom: #A3AECF 1px dotted;}
a.link_email_pale:active {color: #A3AECF; text-decoration: none;}

.canvas {color: #27325F;}
.container_bg {color: #06081F;}

.ltblue {color: #A3AECF;}
.ltblue2 {color: #738BC6;}
.midblue {color: #5766AA;}
.dkblue {color: #27325F;}
.vdkblue {color: #06081F;}

.red {color: #680800;}