@charset "utf-8";
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	color: #2a2d2e;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Centers the page content container in IE 5 browsers. */
	background-repeat: repeat;
	background-color: #D5DBEB;
}
/* Commonly used to style page titles. */
h1 {
	color: #000;
	font-size: 24px;
	font-weight: bold;
	line-height: normal;
	font-family: "Adobe Garamond Pro";
	letter-spacing: 0.5em;
	text-align: center;
	vertical-align: middle;
}

/* Commonly used to style section titles. */
h2 {
  color: #6982b5;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #3b62a6;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #3b62a6;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #09F;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #ca0009;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #262499;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	text-align: left;
}
#outerWrapper #header {
	background-color: #D5DBEC;
	padding-top: 10px;
	padding-right: 1px;
	padding-bottom: 10px;
	padding-left: 1px;
	height: 150px;
	border-bottom-width: 0px;
	border-bottom-style: none;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#contentWrapper #content  {
	margin: 0;
	position: relative;
}
#header .redesignLeft
{
	font-family: "zapfino Extra LT One";
	font-size: 48px;
	font-style: oblique;
	line-height: 50px;
	font-weight: bold;
	color: #000;
	text-align: center;
	letter-spacing: 5px;
}
#header .quickAfford
{
	font-family: "zapfino Extra LT One";
	font-size: 36px;
	line-height: 20px;
	font-weight: bold;
	letter-spacing: 3px;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
}

#header .redesignRight
{
	font-family: "Zapfino Forte LT Pro";
	font-size: 48px;
	font-style: italic;
	font-weight: bold;
	color: #000;
	text-align: center;
	letter-spacing: 2px;
	text-decoration: underline;
	padding-bottom: 10px;
	line-height: 50px;
}
#header .mistral
{
	font-family: Mistral;
	font-size: 48px;
	font-style: italic;
	font-weight: bold;
	color: #000;
	letter-spacing: 2px;
	text-align: center;
	vertical-align: bottom;
	padding-top: 20px;
	padding-bottom: 20px;
}

#header .logo
{
	height: 100px;
	padding-top: 5px;
	width: auto;
	margin-right: auto;
	margin-left: auto;
	padding-left: 350px;
}

#header .logo .copyright
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
	font-weight: bold;
}
#content .brochureText
{
	font-family: "Adobe Garamond Pro";
	font-size: 18px;
	font-style: normal;
	line-height: normal;
	letter-spacing: 2px;
	text-align: left;
	float: left;
	margin-right: auto;
	margin-left: auto;
	margin-top: 55px;
	padding-left: 10px;
}

#header .contactInfo
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	float: left;
	height: auto;
	color: #000;
	line-height: normal;
	letter-spacing: 1pt;
	text-align: left;
	background-color: #FFFFEA;
	padding: 5px;
}


#header .contactInfo a
{
	color: #000;
}

#header .contactInfo a:hover
{
	color: #09F;
}


#outerWrapper #topNavigation {
	background-color: #eaeff5;
	border-bottom: solid 1px #8e9fd0; /* Sets the bottom border properties for an element using shorthand notation */
	height: 15px;
	letter-spacing: 1px;
	margin-right: 0px;
	padding: 1px 1px 5px 0px;
	width: 100%;
}


#content .groupPhoto
{
	float: left;
	margin-top: 0px;
	margin-left: 20px;
	margin-right: 10px;
	width: 296px;
	border: 0px solid white;
	border-radius:8px;
	-moz-border-radius: 8px;
	-webkit-border-radius:8px;
}
.zapfinoSmall
{
	font-family: "Zapfino Forte LT Pro";
	font-size: 28px;
	font-style: italic;
	letter-spacing: 4px;
	line-height: 3px;
}
.zapfinoLarge {
	font-family: "Zapfino Forte LT Pro";
	font-size: 40px;
	font-style: italic;
	line-height: normal;
	letter-spacing: 2pt;
	font-weight: bold;
	float: none;
	text-align: center;
}


#content .homepaqePhotos
{
	margin-top: 75px;
	height: auto;
	border:3px solid #666;
	border-radius:8px;
	-webkit-border-radius:8px;
	-moz-border-radius: 8px;
	background-color:#FFFFEC;
	width: 450px;
	float: left;
	margin-left: 125px;
}
#content .homepaqePhotos p
{
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 2px;
}
.teamText 
{
	font-size: 16px;
	font-style: normal;
	font-weight: bold;
	letter-spacing: 2px;
	vertical-align: middle;
	text-align: left;
	float: left;
	line-height: normal;
	margin-top: 125px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
#content .oregonian  {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 18px;
	text-align: center;
	float: left;
	width: 300px;
	margin-left: 50px;
	height: auto;
	border: 4px solid #06F;
	font-weight: bold;
	margin-top: 50px;
	line-height: normal;
	background-color: #FFFFEC;
}

#content .homeTitle
{
	font-family: "DejaVu Sans", TeXGyreAdventor, Arial, sans-serif;
	font-size: 24px;
	line-height: 20px;
	font-style: italic;
	font-weight: normal;
	letter-spacing: 3pt;
}


#outerWrapper #footer {
	background-color: #eaeff5;
	border-top: solid 1px #8e9fd0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	font-size: 12px;
	width: 100%;
	padding-top: 5px;
	padding-bottom: 3px;
	float: left;
	margin-right: auto;
	margin-left: auto;
}
.clearFloat
{
	clear: both;
}

.mistral  
{
	font-family: Mistral;
	font-size: 24px;
	font-style: italic;
	line-height: 14px;
}
.mistral2 
{
	font-family: Mistral;
	font-size: 36px;
	line-height: normal;
	font-weight: bold;
	text-align: center;
}

#content .ziegText
{
	font-family: "Adobe Garamond Pro";
	font-size: 18px;
	line-height: normal;
	text-align: left;
	float: left;
	height: auto;
	width: 300px;
	margin-top: 100px;
	padding-left: 10px;
}

#footer a
{
	text-decoration: underline;
}

.adobeGramond
{
	font-family: Adobe Garamond Pro;
	padding: 5px;
}

#content .ziegPhoto
{
	width: 250px;
	height: auto;
	margin: 10px 10px 10px 50px;
	border: 2px solid #CCC;
	float: left;
}

#content .emeryPhoto
{
	float: right;
	height: auto;
	width: 250px;
	border: 2px solid #999;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
}
.clearLeft
{
	clear: left;
}

.clearRight
{
	clear: right;
}
#content .kravetLogo
{
	float: left;
	height: auto;
	width: 274px;
	height:98px;
	margin: 10px 15px 10px 10px;
	padding:0px;
	border:3px solid #76B6D1;
color:
	border-radius:8px; 
	-moz-border-radius: 8px;
	-webkit-border-radius:8px;
}

#content .kravetText
{
	font-family: "Adobe Garamond Pro";
	font-size: 18px;
	float: left;
	height: auto;
	width: 300px;
	margin-top: 50px;
	font-weight: bold;
	line-height: normal;
}

#content .landfairLogo
{
	float: left;
	width: 214px;
	height:135px;
	border:5px solid #666;
	margin: 10px 15px;
	-moz-border-radius: 8px;
}

#content .landfairText
{
	font-family: "Adobe Garamond Pro";
	font-size: 18px;
	font-weight: bold;
	float: left;
	height: auto;
	width: 350px;
	margin-top: 70px;
	line-height: normal;
}
#content .roggenPhoto
{
	height: auto;
	width: 250px;
	border: 3px none #666;
	float: left;
	margin-top: 50px;
	margin-bottom: 10px;
	margin-left: 115px;
}
#content .roggenText
{
	font-family: "Adobe Garamond Pro";
	font-size: 18px;
	line-height: normal;
	float: left;
	width: 450px;
	margin-top: 85px;
	padding-left: 10px;
	height: auto;
	margin-left: 20px;
}
#content .rivlinPhoto
{
	float: left;
	margin-top: 50px;
	width: 310px;
	height: auto;
	border: 3px solid #666;
	margin-bottom: 10px;
}
#content .rivlinText
{
	float: left;
	width: 450px;
	height: auto;
	font-family: "Adobe Garamond Pro";
	font-size: 18px;
	line-height: normal;
	padding-left: 10px;
	margin-bottom: 10px;
	margin-top: 5px;
	padding-right: 10px;
	margin-left: 10px;
}

#content .emeryText
{
	font-family: "Adobe Garamond Pro";
	font-size: 18px;
	line-height: normal;
	float: right;
	width: 500px;
	margin-left: 185px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
}

#content .kravetBox
{
	height: auto;
	width: 620px;
	border: 3px solid #ccc;
	border-radius:8px; 
	-moz-border-radius: 8px;
	-webkit-border-radius:8px;
	float: left;
	padding:5px;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	margin-right:10px;
	background-color:#FFFFEC;
}
#content .idsBox .idsLogo
{
	margin: 10px;
	float: left;
	height: auto;
	width: 160px;
	border: 5px solid #FFF;
	border-radius:8px;
	-moz-border-radius: 8px;
	-webkit-border-radius:8px;
}
#content .idsBox
{
	margin: 10px;
	padding: 5px;
	float: left;
	height: auto;
	width: 620px;
	border: 3px solid #ccc;
	border-radius:8px;
	-moz-border-radius: 8px;
	-webkit-border-radius:8px;
	background-color:#FFFFEC;
}
#content .goldmsithBox
{
	float: left;
	width: 825px;
	margin: 10px;
	padding: 5px;
	background-color: #FFFFEC;
	border: 5px solid #ccc;
	border-radius:8px;
	-moz-border-radius: 8px;
	-webkit-border-radius:8px
}
#content .goldmsithBox .goldsmithLogo
{
	float: left;
	width: 440px;
	margin: 10px;
	padding: 5px;
	border: 3px solid #ccc;
}
#content .goldmsithBox .goldsmithText
{
	font-family: "Adobe Garamond Pro";
	font-size: 18px;
	line-height: normal;
	font-weight: bold;
	margin-top: 35px;
	margin-left: 20px;
	margin-right: 10px;
	width: 300px;
	float: left;
}

#content .idsBox .idsText
{
	font-family: "Adobe Garamond Pro";
	font-size: 18px;
	line-height: normal;
	font-weight: bold;
	margin: 50px 5px 5px;
	padding: 5px;
	float: left;
	width: 280px;
}
#content .landfairBox
{
	margin: 10px;
	padding: 5px;
	float: left;
	height: auto;
	width: 620px;
	border: 3px solid #ccc;
	border-radius:8px; 
	-moz-border-radius: 8px;
	-webkit-border-radius:8px;
	background-color:#FFFFEC;
}
#content .nwsidLogo
{
	margin: 10px;
	float: left;
	height: 95px;
	width: 224px;
	border: 5px solid #FFF;
	border-radius:8px;
	-moz-border-radius: 8px;
	-webkit-border-radius:8px;
}
#content .nswidBox
{
	margin: 10px;
	float: left;
	width: 630px;
	border: 3px solid #ccc;
	border-radius:8px; 
	-moz-border-radius: 8px;
	-webkit-border-radius:8px;
	background-color:#FFFFEC;
}
#content .nwsidText
{
	font-family: "Adobe Garamond Pro";
	font-size: 18px;
	line-height: normal;
	font-weight: bold;
	margin: 30px 10px 10px;
	padding: 5px;
	float: left;
	height: auto;
	width: 320px;
}

#content .referenceBox
{
	float: left;
	width: 500px;
	height:auto;
	margin: 15px;
	border: 5px solid #ccc;
	border-radius:8px;
	-moz-border-radius: 8px;
	-webkit-border-radius:8px;
}

#content .quoteBox
{
	margin: 100px 15px 15px;
	float: left;
	border: 5px solid #ccc;
	font-family: "Adobe Garamond Pro";
	font-size: 18px;
	line-height: normal;
	font-weight: bold;
	background-color: #FFFFD9;
	padding: 5px;
	width: 440px;
	border-radius:8px;
	-moz-border-radius: 8px;
	-webkit-border-radius:8px;
}

#content .galleryBox1
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: normal;
	margin: 10px auto;
	height: auto;
	width: 75%;
	border: 3px solid #000;
	border-radius:8px;
	-moz-border-radius: 8px;
	-webkit-border-radius:8px;
	padding: 10px;
	background-color: #FFFEEC;
}

#content .galleryBox1 .galleryText
{
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: normal;
	text-align: left;
}
.blurbBox  
{
	margin: 10px auto;
	padding: 10px;
	width: 80%;
	position: relative;
	background-color: #FFFEDF;
	border: 3px solid #000;
	font-family: "Adobe Garamond Pro";
	font-size: 14px;
	line-height: normal;
	text-align: left;
	border-radius:8px;
	-moz-border-radius: 8px;
	-webkit-border-radius:8px;
	height: auto;
}
.blurbBox1 
{
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	margin: 10px auto;
	width: 70%;
	background-color: #FFFEDF;
	height: auto;
	border: 3px solid #000;
	padding: 10px;
	border-radius:8px;
	-moz-border-radius: 8px;
	-webkit-border-radius:8px;
}

.blurbBox1 .imageBoxSmall
{
	width: 350px;
	margin-left: 20px;
	padding: 10px;
	margin-top: 15px;
	height: auto;
	float: left;
}

.blurbBox1 .imageBoxLarge
{
	padding: 10px;
	height: auto;
	width: 400px;
	float: right;
	margin-top: 15px;
	margin-right: 15px;
	margin-bottom: 10px;
}
.joyPhoto
{
	font-family:Arial, Helvetica, sans-serif;
	font-size: 18;
	text-align: center;
	float: right;
}
.joy {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
}
.arial {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: italic;
	font-weight: bold;
}

