/* 
  HTML5 ✰ Boilerplate 
  
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 

/* 
 * minimal base styles 
 */


body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #444; 
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #607890; }
a:hover { color: #036; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }






 /* Primary Styles
    Author: 
 */
body {
	font-family:Arial, Helvetica, sans-serif;
}

a, a:active, a:hover, a:focus { outline:none; }
a img { border:0; }
form { margin:0;padding:0; }

/* Crossfade */
.crossfade,
.crossfade-visible {
    overflow:hidden;
    position:absolute;
    width:100%;
	height:900px;
    margin:0;
}

.crossfade {
	position:fixed;
	top:0;
	left:0;
	display:none;
}

#gate {
	z-index:10;
	margin:200px auto 0;
	width:884px;
    position:relative;	
}

#gate img.logo {
	float:left;
	margin:0 11px;	
}

#gate .box {
	width:275px;
	height:233px;
	padding:9px;
	background:transparent url(/images/member_logos/gate_bg.png) 0 0 no-repeat;
	float:left;
}

#gate a {
	text-decoration:none;	
}

#gate .box img {
	float:left;	
}

#gate h1 {
	width:221px;
	float:left;
	height:29px;
	line-height:29px;
	padding:0 27px;
	color:white;
	text-transform:uppercase;
	font-size:16px;
	font-weight:100;
	background:transparent url(/images/member_logos/gate_nav_bg.png) 0 0 repeat-x;
}

#gate h2 {
	width:221px;
	float:left;
	background-color:#716b60;
	height:26px;
	line-height:26px;
	padding:0 27px;
	color:white;
	font-size:15px;
	font-weight:100;
}

/* Content */
#main {
	z-index:10;
    width:100%;
    margin:0 auto;

    position:relative;
}

.navigation-wrapper {
    width:256px;
	left:120px;
    position:fixed; /*--Fix the sidenav to stay in one spot--*/
    float:left; /*--Keeps sidenav into place when Fixed positioning fails--*/
	padding:7px 9px;
	background:transparent url(/images/bg_navigation.png) 0 bottom no-repeat;	
}

.navigation-inner-wrapper-de,
.navigation-inner-wrapper-fr,
.navigation-inner-wrapper-it {
	position:relative;
	height:1000px;
}

.btn-minimize,
.btn-maximize {
	width:180px;
	height:11px;
	margin:0 0 0 26px;
	cursor:pointer;
}

.navigation-inner-wrapper-de .btn-minimize { background:transparent url(/images/de/btn_navigation_minimize.png) 0 0 no-repeat; }
.navigation-inner-wrapper-de .btn-maximize { background:transparent url(/images/de/btn_navigation_maximize.png) 0 0 no-repeat; }
.navigation-inner-wrapper-fr .btn-minimize { background:transparent url(/images/fr/btn_navigation_minimize.png) 0 0 no-repeat; }
.navigation-inner-wrapper-fr .btn-maximize { background:transparent url(/images/fr/btn_navigation_maximize.png) 0 0 no-repeat; }
.navigation-inner-wrapper-it .btn-minimize { background:transparent url(/images/it/btn_navigation_minimize.png) 0 0 no-repeat; }
.navigation-inner-wrapper-it .btn-maximize { background:transparent url(/images/it/btn_navigation_maximize.png) 0 0 no-repeat; }

.logo { margin:3px 0 0 0 }

.logo1 {
	margin:52px 8px 0 16px;	
}

.language-wrapper {
	float:left;	
	margin:2px 0 7px 26px;
	padding:0;
	list-style:none;	
}

.language-wrapper li {
	float:left;	
	display:inline-block;
	margin-right:5px;
}

.language-wrapper li a {
	width:11px;
	height:11px;
	display:block;
	cursor:pointer;
}

.social-wrapper {
	float:right;	
	margin:2px 5px 7px 26px;
	padding:0;
	list-style:none;	
}

.social-wrapper li {
	float:left;	
	display:inline-block;
	margin-right:5px;
}

.social-wrapper li a {
	width:16px;
	height:16px;
	display:block;
	cursor:pointer;
}

.language-wrapper .btn-lang-de a { background:transparent url(/images/language_sprite.png) 0 0 no-repeat; }
.language-wrapper .btn-lang-fr a { background:transparent url(/images/language_sprite.png) -11px 0 no-repeat; }
.language-wrapper .btn-lang-it a { background:transparent url(/images/language_sprite.png) -22px 0 no-repeat; }
.language-wrapper .btn-lang-en a { background:transparent url(/images/language_sprite.png) -33px 0 no-repeat; }

.language-wrapper .btn-lang-de-active a { background:transparent url(/images/language_sprite.png) 0 -11px no-repeat; }
.language-wrapper .btn-lang-fr-active a { background:transparent url(/images/language_sprite.png) -11px -11px no-repeat; }
.language-wrapper .btn-lang-it-active a { background:transparent url(/images/language_sprite.png) -22px -11px no-repeat; }
.language-wrapper .btn-lang-en-active a { background:transparent url(/images/language_sprite.png) -33px -11px no-repeat; }

/* Navigation */
.main-navigation-wrapper {
	padding:0;
	margin:0;
	list-style:none;
	clear:both;
}

.main-navigation-wrapper li a {
	font-family:Arial, Helvetica, sans-serif;
	display:block;
	width:230px;
	height:29px;
	padding:0 0 0 26px;
	margin:2px 0 0 0;
	background-color:#8c867b;
	color:#e0ddd8;
	font-size:15px;
	line-height:29px;
	text-decoration:none;
	text-transform:uppercase;
}

.kuelling-switch a {
	display:block;
	padding:0 0 6px 26px;
	color:#8c867b;
	font-size:11px;
	text-decoration:none;
}

.main-navigation-wrapper li a:hover,
.main-navigation-wrapper li a.active {
	color:white;
	background:white url(/images/bg_main_navigation_hover.png) 0 0 repeat-x;
}

.sub-navigation-wrapper {
	padding:0;
	margin:0;
	list-style:none;
}

.sub-navigation-wrapper li a {
	font-size:14px;
	height:22px;
	line-height:22px;
	margin:1px 0 0 0;
	color:white;
	background:transparent url(/images/bg_sub_navigation.png) 0 0 repeat-x;
}

.sub-navigation-wrapper li a:hover,
.sub-navigation-wrapper li a.active {
	background:transparent url(/images/bg_sub_navigation_hover.png) 0 0 no-repeat;
}

.btn-navigation-wrapper {
	padding:0 0 0 26px;
	list-style:none;
	margin:20px 0 0 0;
}

.btn-navigation-wrapper li {
	float:left;	
	display:inline-block;
	margin-right:20px;
	position:relative;
}

.btn-navigation-wrapper li div {
	display:none;
	position:absolute;
	top:25px;
	left:7px;
	font-size:12px;
	padding:10px;
	background:transparent url(/images/bg_white.png) 0 0 repeat;
	z-index:999;
	white-space:nowrap;
}

.bottom-wrapper {
	position:absolute;
	bottom:36px;
	left:0;
}

.addthis_toolbox {
	margin-top:15px;	
}

.social-navigation-wrapper {
	padding:0;
	list-style:none;
	margin:0 0 24px 0;	
}

.social-navigation-wrapper li {
	float:left;
	margin-right:3px;
}

.social-navigation-wrapper li.title-de {
	display:block;
	width:125px;
	height:14px;
	background:transparent url(/images/de/share_title.png) 0 0 no-repeat;
}

.social-navigation-wrapper li.title-fr {
	display:block;
	width:135px;
	height:14px;	
	background:transparent url(/images/fr/share_title.png) 0 0 no-repeat;
}

.social-navigation-wrapper li.title-it {
	display:block;
	width:173px;
	height:14px;	
	background:transparent url(/images/it/share_title.png) 0 0 no-repeat;
}


.social-navigation-wrapper li span {
	display:block;
	width:14px;
	height:14px;	
}

.social-navigation-wrapper .gplus span {
	background:transparent url(/images/share_googleplus.png) 0 0 no-repeat;
}

.social-navigation-wrapper .xing span {
	background:transparent url(/images/share_xing.png) 0 0 no-repeat;
}

.social-navigation-wrapper .facebook span {
	background:transparent url(/images/share_facebook.png) 0 0 no-repeat;
}

.social-navigation-wrapper .twitter span {
	background:transparent url(/images/share_twitter.png) 0 0 no-repeat;
}

.social-navigation-wrapper .email span {
	background:transparent url(/images/share_email.png) 0 0 no-repeat;
}


.bottom-navigation-wrapper {
	padding:0;
	list-style:none;
	margin:0 0 24px 0;
}

.bottom-navigation-wrapper li a {
	text-decoration:none;
	text-transform:uppercase;
	font-size:12px;
	font-weight:700;
	color:#70695f;
	padding:0 0 0 26px;
}

.bottom-navigation-wrapper li a.active {
	color:#92680d;	
}

/* Member page overwrite for bottom navigation */
.content-wrapper .bottom-navigation-wrapper {
	border-top:1px solid #c0bcbb;
	margin-top:45px;
	padding:5px 0 0 0;
}

.content-wrapper .bottom-navigation-wrapper li {
	float:left;
	margin-right:10px;
}

.content-wrapper .bottom-navigation-wrapper li a {
	font-weight:normal;
	padding:0;
	color:#99958d;
	font-size:11px;
}

.content-wrapper .bottom-navigation-wrapper li a.active {
	color:#92680d;	
}

.slogan {
	font-size:12px;
	color:#58534b;
	padding:0 0 0 26px;
}

.visus-emblem {
	margin:0 0 0 26px;	
}

.loader-wrapper {
	width:400px;
	margin-top:400px;
}

.load {
	display:block;
	width:24px;
	height:24px;
	margin:0 auto;	
	
}

.content-wrapper {
	display:none;
	margin-left:400px;
	float:left;	
	width:417px;
	padding:0 41px 20px 66px;
	background:transparent url(/images/bg_content.png) 0 0 repeat-y;
	z-index:101;
	position:relative;	
}

.address-headline {
	font-family:Arial, Helvetica, sans-serif;
	font-weight:100;
	font-size:11px;
	line-height:16px;
	color:#58534b;
	margin-top:14px;
}

.btn-close-content{position:absolute;right:41px;top:60px;}

/* Textblock Style */
.text-first {
	margin-top:51px;
	border-top:1px solid #625857;
}

.text-follow {
	margin-top:23px;	
}

.text-pdf {
	margin-top:10px;	
}

.text h1 {
	font-family:Arial, Helvetica, sans-serif;
	font-weight:700;
	font-size:34px;
	line-height:34px;
	color:#625857;
	text-transform:uppercase;
	margin-top:19px;
}

.text h2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:16px;
	color:#625857;
	font-weight:100;
	text-transform:uppercase;
	padding-top:8px;
}

.text h3 {
	font-family:Arial, Helvetica, sans-serif;
	font-weight:700;
	font-size:14px;
	line-height:18px;
	color:#625857;
	margin-top:23px;
	text-transform:uppercase;	
}

.text .lead {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:18px;
	font-weight:100;
	line-height:22px;
	margin-top:14px;
	padding-right:7px;
}

.text p {
	font-family:Arial, Helvetica, sans-serif;
	font-weight:100;
	font-size:14px;
	line-height:18px;
	padding-right:7px;
	margin-bottom:10px;
}

.contact a,
.text p a {
	color:#92680d;
	text-decoration:none;
}

.text p a:hover {
	text-decoration:underline;	
}

.text p.space {
	margin-top:23px;
}

.text a.pdf {
	display:block;
	padding:13px 20px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:13px;
	font-weight:100;
	font-style:italic;
	background-color:#e4e0da;
	color:#625857;
	text-decoration:none;
}

/* Special textblock "downloads" & "contact" */
.text-downloads h1,
.text-contact h1,
.text-links h1 {
	margin-top:25px;	
}

.text-downloads p,
.text-contact p {
	margin:11px 0 28px;	
}

.text-downloads a.download {
	margin-top:2px;
	display:block;
	padding:13px 20px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:13px;
	font-weight:100;
	font-style:italic;
	background-color:#e4e0da;
	color:#625857;
	text-decoration:none;	
}

/* Special textblock "links" */
.text-links ul {
	list-style:none;
	margin:0;	
	margin:7px 0 28px;	
}

.text-links ul li a {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:100;
	font-style:italic;
	font-size:13px;
	line-height:25px;
	color:#625857;
	text-decoration:none;
}

/* Special textblock "job" */
.text-job p {
	margin:15px 0;
}

.text-job .contact {
	margin-top:27px;
	display:block;
	padding:13px 20px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:13px;
	font-weight:100;
	font-style:italic;
	background-color:#e4e0da;
	color:#625857;
	line-height:19px;
	text-decoration:none;	
}

.text-job a.pdf {
	margin-top:10px;	
}

/* Table Jobs */
.text table {
	margin-top:36px;
	border-collapse:collapse;
	border-spacing:0;
	width:100%;	
}

.text table thead th {
	font-size:10px;
	font-weight:100;
	text-align:left;
	padding-bottom:10px;
	border-bottom:1px solid #625857;
}

.text table tbody td {
	border-bottom:1px solid #625857;	
}

.text table tbody td a {
	display:block;
	padding:8px 0;
	color:#625857;
	text-decoration:none;
}

.text table tbody td.col1 {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:14px;
	vertical-align:top;
	width:90px;
}

.text table tbody td.col2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight:700;
	line-height:16px;
}

.text table tbody td.col2 {
	padding-right:30px;	
}

.text table tbody td.col3 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	vertical-align:top;
	width:72px;
}

.text-members-overhead table {
	margin-top:24px;	
}

.text-members-overhead table tbody td a {
	vertical-align:bottom;
	padding:3px 0;
	line-height:18px;
}

.text-members-overhead table tbody td.col1 {
	width:136px;	
	font-size:18px;
}

.text-members-overhead table tbody td.col2 {
	padding-right:0;	
}

.text-members-overhead table tbody td.col3 {
	width:126px;
}

/* Lightbox Style */
.lightbox {
	margin-top:22px;
}

.lightbox a {
	display:inline-block;
	float:left;
	width:135px;
	height:135px;
	margin-right:3px;
	margin-bottom:3px;
	border:1px solid #ddd;
	background-color:#f3f3f3;
}

.lightbox a:nth-child(3n) {
	margin-right:0;
}

/* Gallery Style */
.gallery {
	margin-top:22px;
}

.gallery-slide-wrapper {
	position:relative;
	width:417px;
	height:279px;
	margin-bottom:9px;	
	overflow:hidden;
	border:1px solid #ddd;
}

.gallery-slide {
	position:absolute;
	top:0;
	left:0;
	width:10000px;
}

.gallery-slide,
.gallery-slide img {
	height:279px;	
}

.gallery-slide img {
	width:417px;
	float:left;	
}

.gallery-slideshow img {
    top: 0; 
    left:0;
	float:none;	
}

.gallery-control {
	position:relative;
	width:57px;
	height:23px;
	border-left:1px solid #a7a09d;
	border-right:1px solid #a7a09d;	
	float:left;
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	text-align:center;
	line-height:23px;
}

.gallery-control a {
	position:absolute;
	top:0;
	display:block;
	width:10px;
	height:23px;
}

.gallery-control a.btn-arrow-left {
	left:2px;
	background:transparent url(/images/btn_arrow_left.png) 0 0 no-repeat;
}

.gallery-control a.btn-arrow-right {
	right:2px;
	background:transparent url(/images/btn_arrow_right.png) 0 0 no-repeat;
}

.gallery-control a.btn-enabled {
	cursor:pointer;	
}

.gallery-control a.btn-enabled:hover {
	background-position:0 -23px;
}

.gallery-caption {
	width:350px;
	height:23px;
	float:right;
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	line-height:12px;
}

.gallery-caption .caption {
	display:none;	
}

/* 3. Level Navigation*/
.level3-toc-wrapper {
	margin-top:51px;
	border-top:1px solid #625857;
}

.level3-toc-wrapper h2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:16px;
	color:#625857;
	font-weight:100;
	text-transform:uppercase;
	padding:8px 0 9px;
}

.level3-toc {
	border-top:1px solid #625857;
	border-bottom:1px solid #625857;
	margin:0;
	list-style:none;
	padding:9px 0 8px;
}

.level3-toc li {
	float:left;
	width:208px;	
}

.level3-toc li a {
	font-size:12px;
	position:relative;
	left:-7px;
	padding-left:7px;
	text-decoration:none;
	color:#8e887c;	
	text-transform:uppercase;
	line-height:17px;
}

.level3-toc li a.active,
.level3-toc li a:hover {
	color:#92680d;	
}

.level3-toc li a.active {
	background:transparent url(/images/level3_arrow.png) 0 4px no-repeat;	
}

/* Team */
.person-wrapper {
	margin-top:35px;	
}

.person {
	margin-top:28px;
}

.person img {
	float:left;	
}

.person .desc-wrapper {
	position:relative;
	float:right;
	width:284px;
	height:120px;
}

.person .desc {
	position:absolute;
	bottom:-4px;	
}

.person .desc h3 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	color:#625857;
	text-transform:uppercase;
}

.person .desc .person-title {
	margin-top:5px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:13px;
	line-height:16px;
	color:#625857;
}

.person .desc .person-contact {
	margin-top:10px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:18px;
	color:#625857;	
}

.person .desc .person-contact a {
	color:#625857;	
}

/* Contact form */
.contact-form {
	margin-top:27px;
	display:block;
	padding:11px 8px 11px 9px;
	background-color:#e4e0da;
}

.contact-form input,
.contact-form textarea {
	padding:6px 11px;
	border:0;
	font-size:14px;
	font-family:Arial, Helvetica, sans-serif;
	color:#625857;
	float:left;
	margin:0 0 8px 0;
}
.contact-form .name { width:174px; margin-right:8px; }
.contact-form .firstname { width:174px; }
.contact-form .street { width:378px; }
.contact-form .phone { width:118px; margin-right:8px; }
.contact-form .email { width:230px; }
.contact-form .message { width:378px; height:104px; }

.address {
	margin-top:17px;
	margin-left:9px;
	margin-bottom:14px;
	position:relative;
	float:left;
	width:391px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:13px;
	line-height:19px;
	font-style:italic;
}

.contact-form input.submit {
	position:absolute;
	padding:5px 11px;
	bottom:-3px;
	right:0;
	color:#ffffff;
	background-color:#635958;
	width:147px;
	text-transform:uppercase;
}





/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}


