/* --------------------------------------------------------------

   reset.css
   * Resets default browser CSS.

-------------------------------------------------------------- */
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,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
body {
  line-height: 1.5;
}
/* Tables still need 'cellspacing="0"' in the markup. */
table {
  border-collapse: separate;
  border-spacing: 0;
}
caption, th, td {
  text-align: left;
  font-weight: normal;
}
table, td, th {
  vertical-align: middle;
}
/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote, q {
  quotes: "" "";
}
/* Remove annoying border on linked images. */
a img {
  border: none;
}
/* --------------------------------------------------------------

   typography.css
   * Sets up some sensible default typography.

-------------------------------------------------------------- */
/* Default font settings.

   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
html {
  font-size: 100.01%;
}
body {
  font-size: 75%;
  color: #333333;
  background: #fff;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}
/* Headings
-------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  color: #333333;
}
h1 {
  font-size: 3em;
  line-height: 1;
  margin-bottom: 0.5em;
}
h2 {
  font-size: 2em;
  margin-bottom: 0.75em;
}
h3 {
  font-size: 1.5em;
  line-height: 1;
  margin-bottom: 1em;
}
h4 {
  font-size: 1.2em;
  line-height: 1.25;
  margin-bottom: 1.25em;
}
h5 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 1.5em;
}
h6 {
  font-size: 1em;
  font-weight: bold;
}
h1 img,
h2 img,
h3 img,
h4 img,
h5 img,
h6 img {
  margin: 0;
}
/* Text elements
-------------------------------------------------------------- */
p {
  margin: 0 0 1.5em;
}
/* 
	These can be used to pull an image at the start of a paragraph, so 
	that the text flows around it (usage: <p><img class="left">Text</p>) 
*/
.left {
  float: left;
  margin: 1.5em 1.5em 1.5em 0;
  padding: 0;
}
.right {
  float: right;
  margin: 1.5em 0 1.5em 1.5em;
}
a, a:focus {
  color: blue;
  text-decoration: underline;
}
a:hover {
  color: blue;
}
blockquote {
  margin: 1.5em;
  color: #777777;
  font-style: italic;
}
strong, dfn {
  font-weight: bold;
}
em, dfn {
  font-style: italic;
}
dfn {
  font-weight: bold;
}
sup, sub {
  line-height: 0;
}
abbr, acronym {
  border-bottom: 1px dotted #777777;
}
address {
  margin: 0 0 1.5em;
  font-style: italic;
}
del {
  color: #777777;
}
pre {
  margin: 1.5em 0;
  white-space: pre;
}
pre, code, tt {
  font: 1em 'andale mono', 'lucida console', monospace;
  line-height: 1.5;
}
/* Lists
-------------------------------------------------------------- */
li ul, li ol {
  margin: 0;
}
ul, ol {
  margin: 0 1.5em 1.5em 0;
  padding-left: 3.333em;
}
ul {
  list-style-type: disc;
}
ol {
  list-style-type: decimal;
}
dl {
  margin: 0 0 1.5em 0;
}
dl dt {
  font-weight: bold;
}
dd {
  margin-left: 1.5em;
}
/* Tables
-------------------------------------------------------------- */
table {
  margin-bottom: 1.4em;
  width: 100%;
}
th {
  font-weight: bold;
}
thead th {
  background: #c3d9ff;
}
th, td, caption {
  padding: 4px 10px 4px 5px;
}
tbody tr:nth-child(even) td, tbody tr.even td {
  background: #e5ecf9;
}
tfoot {
  font-style: italic;
}
caption {
  background: #eee;
}
/* Misc classes
-------------------------------------------------------------- */
.small {
  font-size: .8em;
  margin-bottom: 1.875em;
  line-height: 1.875em;
}
.large {
  font-size: 1.2em;
  line-height: 2.5em;
  margin-bottom: 1.25em;
}
.hide {
  display: none;
}
.quiet {
  color: #777777;
}
.loud {
  color: #000000;
}
.highlight {
  background: #ff0;
}
.added {
  background: #060;
  color: #fff;
}
.removed {
  background: #900;
  color: #fff;
}
.first {
  margin-left: 0;
  padding-left: 0;
}
.last {
  margin-right: 0;
  padding-right: 0;
}
.top {
  margin-top: 0;
  padding-top: 0;
}
.bottom {
  margin-bottom: 0;
  padding-bottom: 0;
}
/* --------------------------------------------------------------

   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms

   Usage:
   * For text fields, use class .title or .text
   * For inline forms, use .inline (even when using columns)

-------------------------------------------------------------- */
label {
  font-weight: bold;
}
fieldset {
  padding: 1.4em;
  margin: 0 0 1.5em 0;
  border: 1px solid #ccc;
}
legend {
  font-weight: bold;
  font-size: 1.2em;
}
/* Form fields
-------------------------------------------------------------- */
input[type=text],
input[type=password],
input.text,
input.title,
textarea,
select {
  background-color: #fff;
  border: 1px solid #bbb;
}
input[type=text]:focus,
input[type=password]:focus,
input.text:focus,
input.title:focus,
textarea:focus,
select:focus {
  border-color: #666;
}
input[type=text],
input[type=password],
input.text,
input.title,
textarea,
select {
  margin: 0.5em 0;
}
input.text, input.title {
  width: 300px;
  padding: 5px;
}
input.title {
  font-size: 1.5em;
}
textarea {
  width: 390px;
  height: 250px;
  padding: 5px;
}
input[type=checkbox],
input[type=radio],
input.checkbox,
input.radio {
  position: relative;
  top: .25em;
}
form.inline {
  line-height: 3;
}
form.inline p {
  margin-bottom: 0;
}
/* Success, notice and error boxes
-------------------------------------------------------------- */
.error, .notice, .success {
  padding: .8em;
  margin-bottom: 1em;
  border: 2px solid #ddd;
}
.error {
  background: #FBE3E4;
  color: #8a1f11;
  border-color: #FBC2C4;
}
.notice {
  background: #FFF6BF;
  color: #514721;
  border-color: #FFD324;
}
.success {
  background: #E6EFC2;
  color: #264409;
  border-color: #C6D880;
}
.error a {
  color: #8a1f11;
}
.notice a {
  color: #514721;
}
.success a {
  color: #264409;
}
/* Defaults for form lists 
--------------------------------------------------------------- */
form {
  padding-right: 10px;
}
form ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
form ol li {
  padding: .5em 0;
}
form ol li label, form ol li input, form ol li select {
  display: block;
  margin: .1em 0 !important;
}
form ol li input, form ol li select, form ol li textarea {
  padding: .5em;
  font-size: 1em;
}
form ol li ol {
  display: block;
  clear: both;
  overflow: auto;
  margin: -0.5em 0;
}
form ol li ol li {
  float: left;
  margin: 0 1em 0 0;
}
form ol li ol li label, form ol li ol li input {
  display: block;
}
/* --------------------------------------------------------------

   grid.css
   * Sets up an easy-to-use grid of x columns.

   By default, the grid is 950px wide, with 24 columns
   spanning 30px, and a 10px margin between columns.

   If you need fewer or more columns, namespaces or semantic
   element names, the following

-------------------------------------------------------------- */
/* A container should group all your columns. */
.container {
  width: 960px;
  margin: 0 auto;
}
/* Use this class on any .span / container to see the grid. */
/* Columns
-------------------------------------------------------------- */
/* Sets up basic grid floating and margin. */
/* Use this mixin to set the width of a column. you should avoid @levels wider then @width */
/* The last column in a row needs this class. */
.last {
  margin-right: 0;
}
/* Use these classes to set the width of an input. */
/* Add these to a column to append empty cols. */
/* Add these to a column to prepend empty cols. */
/* Border on right hand side of a column. */
/* Border with more whitespace, spans one column. */
/* Use these classes on an element to push it into the
next column, or to pull it into the previous column.  */
/* Misc classes and elements
-------------------------------------------------------------- */
/* In case you need to add a gutter above/below an element */
.prepend-top {
  margin-top: 1.5em;
}
.append-bottom {
  margin-bottom: 1.5em;
}
/* 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;
  visibility: hidden;
}
/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */
.clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
}
.container:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
}
.clearfix, .container {
  display: block;
}
/* Regular clearing
   apply to column that should drop below previous ones. */
.clear {
  clear: both;
}
/* #b4d5fa; */
body {
  color: #666666;
  background-color: white;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 170%;
}
#header, header {
  width: 960px;
  margin: 0 auto;
  display: block;
  position: relative;
  height: 90px;
  margin-top: 10px;
}
#header #accessibility, header #accessibility {
  position: absolute;
  top: -1000em;
}
#header #vcard_mini, header #vcard_mini {
  font-size: 0.9em;
  line-height: 140%;
  color: #777777;
  color: #999999;
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 13em;
  text-align: left;
}
#header #vcard_mini a, header #vcard_mini a {
  text-decoration: none;
  color: #587eac;
}
#header #vcard_mini a:hover, header #vcard_mini a:hover {
  text-decoration: underline;
  color: #3366cc;
}
#header #vcard_mini strong, header #vcard_mini strong {
  color: #666666;
}
#header h1, header h1 {
  margin-left: -10px;
  margin-bottom: 0.1em;
  font-size: 400%;
  font-weight: 300;
}
#header h1 a,
header h1 a,
#header h1 span,
header h1 span {
  display: inline;
  float: left;
  height: 60px;
  width: 320px;
  text-indent: -999px;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-color: white !important;
  background-color: transparent;
  background-image: url('images/sections.png');
  background-repeat: no-repeat;
}
#header h1 a.path_root, header h1 a.path_root {
  width: 118px;
  background-image: url('images/2hd.png');
  background-position: left top;
  color: #333333;
}
#header h1 span.path_separator, header h1 span.path_separator {
  width: 32px;
  background-image: url('images/path_separator.png');
  background-position: 0 0;
  color: #999999;
}
#header h1 a.path_portfolio,
header h1 a.path_portfolio,
#header h1 a.path_portfolio-archive,
header h1 a.path_portfolio-archive {
  width: 226px;
  background-position: 0 0;
}
#header h1 a.path_services, header h1 a.path_services {
  width: 214px;
  background-position: 0 -80px;
}
#header h1 a.path_about, header h1 a.path_about {
  width: 242px;
  background-position: 0 -160px;
}
#header h1 a.path_hello, header h1 a.path_hello {
  width: 146px;
  background-position: 0 -240px;
}
#header h1 a.path_workshop, header h1 a.path_workshop {
  width: 265px;
  background-position: 0 -320px;
}
#header h1 a.path_press, header h1 a.path_press {
  width: 140px;
  background-position: 0 -400px;
}
#header h1 a.path_clients, header h1 a.path_clients {
  width: 280px;
  background-position: 0 -480px;
}
#header h1 a.path_norge, header h1 a.path_norge {
  width: 215px;
  background-position: 0 -560px;
}
#header h1 a.path_france, header h1 a.path_france {
  width: 180px;
  background-position: 0 -640px;
}
#header h1 a:hover, header h1 a:hover {
  border-width: 1px;
  border-style: solid;
  border-color: #ddd !important;
}
#header #subtitle, header #subtitle {
  clear: left;
  width: 246px;
  height: 20px;
  margin-left: -10px;
  text-indent: -999px;
  font-style: italic;
  background: transparent url('images/tagline.png') no-repeat left top;
}
#navigation, nav {
  width: 960px;
  margin: 0 auto;
  display: block;
}
#navigation ul, nav ul {
  margin: 0 !important;
  padding: 0 !important;
  margin-top: 10px !important;
  margin-right: 10px !important;
  height: 41px;
  background: #333333 url(images/navigation.png) no-repeat top left;
}
#navigation ul li, nav ul li {
  list-style-type: none;
}
#navigation ul li, nav ul li {
  display: inline;
  float: left;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  width: auto;
  width: 13em;
  height: 41px;
  border-right: 1px #666 solid;
}
#navigation ul li a, nav ul li a {
  display: block;
  text-decoration: none;
}
#navigation ul li.active a, nav ul li.active a {
  background: #7272cf url('images/navigation-hover.png') no-repeat center top;
  color: #ccf;
}
#navigation ul li a, nav ul li a {
  height: 31px;
  line-height: 120%;
  font-size: 0.9em;
  color: #999999;
  padding: 5px 30px 5px 10px;
}
#navigation ul li a strong, nav ul li a strong {
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
}
#navigation ul li a:hover, nav ul li a:hover {
  background: #7272cf url('images/navigation-hover.png') no-repeat center top;
  color: #ccf;
  text-decoration: none;
}
#navigation ul li#menu_hello, nav ul li#menu_hello {
  float: right;
  border-right-width: 0;
  border-left: 1px #666 solid;
}
#navigation ul li#menu_home a, nav ul li#menu_home a {
  background-position: left top;
}
#navigation ul li#menu_hello a, nav ul li#menu_hello a {
  background-position: right top;
}
/* Allow  automatic width for browsers that support it properly... */
#navigation > ul li, nav > ul li {
  width: auto;
}
.filter {
  clear: both;
  height: 5em;
}
.filter div.filter_label {
  display: inline;
  float: left;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  width: auto;
  padding-right: 10px;
  width: 7em;
  line-height: 1.4em;
}
.filter div.filter_label a {
  display: block;
  text-decoration: none;
}
.filter ul {
  margin: 0 !important;
  padding: 0 !important;
}
.filter ul li {
  list-style-type: none;
}
.filter ul li {
  display: inline;
  float: left;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  width: auto;
}
.filter ul li a {
  display: block;
  text-decoration: none;
}
.filter ul li a {
  color: #000000;
  font-size: 2.5em;
  line-height: 140%;
  font-family: Georgia, Times, serif;
  color: #333333;
  color: #666666;
  font-size: 1.5em;
  line-height: 120%;
  padding: 5px 10px;
  border-style: solid;
  border-color: #ddd;
  border-width: 1px 1px 1px 0;
}
.filter ul li a a {
  color: #3366cc;
}
.filter ul li a:hover {
  color: #333333;
  background-color: #eee;
}
.filter ul li.all a {
  background-color: #666;
  color: white;
  border-color: #666;
}
.filter ul li.active a {
  background-color: #3366cc;
  color: white;
  border-color: #3366cc;
}
.filter ul li:first-child a {
  border-width: 1px 1px 1px 1px;
  border-radius: 5px 0 0 5px;
}
.filter ul li:last-child a {
  border-radius: 0 5px 5px 0;
}
#content, #main {
  width: 960px;
  margin: 0 auto;
  display: block;
  padding-top: 20px;
}
#content strong, #main strong {
  font-style: normal;
  color: #333333;
}
#content p, #main p {
  margin-bottom: 1em;
}
#content .extras, #main .extras {
  padding: 1em;
  margin-left: 0;
  margin-right: 0;
  background-color: #f3f3f3;
  line-height: 170%;
}
#content blockquote, #main blockquote {
  font-family: Georgia, Times, serif;
  font-style: italic;
  font-size: 1em;
  line-height: 170%;
  background: transparent url(images/quote-open-mini.png) no-repeat left 1.25em;
  border-width: 1px 0 1px 0 !important;
  border-style: solid;
  border-color: #eeeeee;
  padding: 0;
  padding-left: 24px !important;
  padding-top: 1em !important;
  margin: 0;
  margin-bottom: 1em !important;
}
#content blockquote p.source, #main blockquote p.source {
  font-family: Helvetica, Arial, sans-serif;
  text-align: right;
  margin-top: 0;
  font-style: normal;
  font-size: 12px;
}
#content blockquote.extended, #main blockquote.extended {
  font-size: 1.2em;
  padding-left: 40px !important;
  border-width: 1px 0 0 0 !important;
  background: transparent url(images/quote-open.png) no-repeat left 1em;
}
#content h2, #main h2 {
  color: #000000;
  font-size: 2.5em;
  line-height: 140%;
  font-family: Georgia, Times, serif;
  color: #333333;
  line-height: 140%;
}
#content h2 a, #main h2 a {
  color: #3366cc;
}
#content h3, #main h3 {
  line-height: 140%;
  margin-bottom: 0.5em;
}
#content h4, #main h4 {
  line-height: inherit;
  font-size: 1em;
  font-weight: bold;
  margin-top: 2em;
  margin-bottom: 0.25em;
}
#content table, #main table {
  border-top: 1px solid #eeeeee;
}
#content table td, #main table td {
  border-bottom: 1px solid #eeeeee;
  background-color: white !important;
  vertical-align: top;
}
#content .introduction .catchline, #main .introduction .catchline {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 390px;
  color: #000000;
  font-size: 2.5em;
  line-height: 140%;
  font-family: Georgia, Times, serif;
  color: #333333;
  font-style: italic;
}
#content .introduction .catchline a, #main .introduction .catchline a {
  color: #3366cc;
}
#content .introduction .explanation, #main .introduction .explanation {
  float: left;
  margin-right: 10px;
  padding-left: 40px;
  float: left;
  margin-right: 10px;
  width: 510px;
  margin-right: 0;
  padding-right: 0;
  margin-right: 0;
}
#content .read_more, #main .read_more {
  display: block;
  padding-left: 20px;
  background: transparent url(images/icon-next.png) no-repeat left center;
  margin-bottom: 1em;
}
#content .announcement .announcement-image, #main .announcement .announcement-image {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 390px;
}
#content .announcement .announcement-text, #main .announcement .announcement-text {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 510px;
  padding-left: 40px;
  margin-right: 0;
  padding-right: 0;
  margin-right: 0;
}
#content ul, #main ul {
  padding-left: 1.5em;
}
.left {
  float: left;
  margin-top: 0 !important;
  margin-bottom: 0.5em !important;
  margin-right: 2em !important;
}
.right {
  float: right;
  margin-top: 0 !important;
  margin-bottom: 0.5em !important;
  margin-left: 2em !important;
}
#footer, footer {
  clear: both;
  width: 960px;
  margin: 0 auto;
  display: block;
  color: #777777;
  color: #999999;
  font-size: 0.9em;
  line-height: 140%;
  padding-top: 1em;
  padding-bottom: 10em;
}
#footer a, footer a {
  text-decoration: none;
  color: #587eac;
}
#footer a:hover, footer a:hover {
  text-decoration: underline;
  color: #3366cc;
}
#footer strong, footer strong {
  color: #666666;
}
#footer #copyright, footer #copyright {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 470px;
  padding-right: 160px;
}
#footer #badges, footer #badges {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 310px;
  margin-right: 0;
  padding-right: 0;
  margin-right: 0;
}
a {
  text-decoration: none;
  color: #3366cc;
}
a:hover {
  text-decoration: underline;
  color: #3366cc;
}
acronym, abbr {
  border-color: #dddddd;
  cursor: help;
}
hr {
  background: #dddddd;
  color: #dddddd;
  margin-right: 10px !important;
  width: auto;
}
div.vcard {
  margin-left: 2em;
}
div.vcard p {
  margin-top: -0.5em;
}
div.vcard p.download a {
  display: block;
  padding-left: 24px;
  background: transparent url('images/icon-vcard.png') no-repeat left 1px;
}
#slideshow_container {
  position: relative;
  height: 320px;
  background: white url(images/loading.gif) no-repeat center center;
}
#slideshow {
  position: absolute;
  height: 310px;
  width: 950px;
  margin-bottom: 20px;
  margin-right: 10px;
}
#slideshow img {
  border-width: 0;
}
#slideshow #slideshowInfo {
  display: block;
  z-index: 30;
  position: absolute;
  top: -1.6em;
  right: 0;
  width: 950px;
  color: #777777;
  color: #999999;
  font-size: 0.8em;
  line-height: 130%;
  font-style: italic;
  text-align: right;
}
#slideshow #slideshowInfo a {
  text-decoration: none;
  color: #587eac;
}
#slideshow #slideshowInfo a:hover {
  text-decoration: underline;
  color: #3366cc;
}
#slideshow #slideshowInfo strong {
  color: #666666;
}
#slideshow #slideshowNavigation {
  display: inline;
  float: right;
}
#slideshow #slideshowCaption {
  padding-left: 5px;
}
#slideshow a:hover {
  text-decoration: none;
}
#slideshow_portfolio {
  position: relative;
  height: 315px;
  margin-top: -15px;
  margin-bottom: 20px;
  margin-right: 10px;
  cursor: pointer;
}
#slideshow_portfolio .slideshow_slides div {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 300px;
}
#slideshow_portfolio .slideshow_slides div img {
  background: white url(images/loading.gif) no-repeat center center;
  margin-top: 15px;
  border-width: 0;
}
#slideshow_portfolio .slideshow_slides div p.caption {
  position: absolute;
  top: 0;
  right: 0;
  margin-bottom: 0;
  color: #777777;
  color: #999999;
  font-size: 0.8em;
  line-height: 130%;
  font-style: italic;
  text-align: right;
}
#slideshow_portfolio .slideshow_slides div p.caption a {
  text-decoration: none;
  color: #587eac;
}
#slideshow_portfolio .slideshow_slides div p.caption a:hover {
  text-decoration: underline;
  color: #3366cc;
}
#slideshow_portfolio .slideshow_slides div p.caption strong {
  color: #666666;
}
#slideshow_portfolio .slideshow_navigation {
  position: absolute;
  top: 0px;
  left: 0;
}
#slideshow_portfolio .slideshow_navigation a {
  width: 8px;
  height: 8px;
  float: left;
  margin: 3px;
  background: url(images/navigator.png) 0 0 no-repeat;
  display: block;
  text-indent: -999em;
}
#slideshow_portfolio .slideshow_navigation a:hover {
  background-position: 0 -8px;
}
#slideshow_portfolio .slideshow_navigation a.current {
  background-position: 0 -16px;
}
#snippets {
  position: relative;
}
#snippets h2 {
  font-size: 1.2em;
  font-style: normal;
  font-weight: bold;
  font-family: Helvetica, Arial, sans-serif !important;
}
#snippets div {
  margin: 0;
}
#snippets #news {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 230px;
  font-size: 0.9em;
  line-height: 140%;
}
#snippets #services {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 190px;
  font-size: 0.9em;
  line-height: 140%;
}
#snippets #services ul {
  padding-left: 1.5em;
}
#snippets #featured {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 310px;
  padding-left: 200px;
  margin-right: 0;
  padding-right: 0;
  margin-right: 0;
  font-size: 0.9em;
  line-height: 140%;
}
#snippets #featured #featured-text {
  z-index: 1000;
}
#snippets #featured #featured-image {
  position: absolute;
  top: -45px;
  left: 430px;
  width: 204px;
}
.twitter {
  padding-left: 40px;
  background: transparent url(images/icon-twitter.png) no-repeat left top;
}
.twitter a.twitterInvite {
  display: block;
  margin-top: -0.75em;
}
.twitter ul.tweets {
  margin-top: 1em;
  margin-left: -50px;
  list-style: none;
}
.twitter ul.tweets .tweetStamp {
  display: block;
  color: #777777;
  color: #999999;
  font-style: italic;
  margin-top: 1em;
  padding-bottom: 2em;
}
.twitter ul.tweets .tweetStamp a {
  text-decoration: none;
  color: #587eac;
}
.twitter ul.tweets .tweetStamp a:hover {
  text-decoration: underline;
  color: #3366cc;
}
.twitter ul.tweets .tweetStamp strong {
  color: #666666;
}
.rss {
  padding-left: 40px;
  background: transparent url(images/icon-rss.png) no-repeat left center;
}
.newsletter {
  padding-left: 40px;
  background: transparent url(images/icon-newsletter.png) no-repeat left center;
}
.team {
  float: left;
  margin-right: 10px;
  position: relative;
  width: 300px;
  margin-right: 25px;
  background-color: #f3f3f3;
  border-radius: 7px;
  margin-top: 15px;
  margin-bottom: 2em;
}
.team img.mugshot {
  background: white url(images/loading.gif) no-repeat center center;
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 1em;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.team p,
.team ul,
.team h2,
.team h3 {
  padding: 0 20px;
}
.team ul {
  margin-left: 0;
}
.team ul li {
  list-style: none;
  margin-left: 0;
}
.team ul a {
  padding-left: 24px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: left center;
}
.team ul a.linkedin {
  background-image: url(images/icon-linkedin.png);
}
.team ul a.facebook {
  background-image: url(images/icon-facebook.png);
}
.team ul a.vcard {
  background-image: url('images/icon-vcard.png');
}
.team ul a.link {
  background-image: url('images/icon-next.png');
}
.team h2 {
  margin-bottom: 0.5em;
  margin-top: 190px;
}
.team h3 {
  margin-bottom: 0.5em;
  font-size: 100%;
}
.team ul.contacts {
  margin-left: 0;
}
.team ul.contacts li {
  list-style: none;
  margin-left: 0;
}
.team ul.contacts a {
  padding-left: 24px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: left center;
}
.team ul.contacts a.linkedin {
  background-image: url(images/icon-linkedin.png);
}
.team ul.contacts a.facebook {
  background-image: url(images/icon-facebook.png);
}
.team ul.contacts a.vcard {
  background-image: url('images/icon-vcard.png');
}
.team ul.contacts a.link {
  background-image: url('images/icon-next.png');
}
#thibaut {
  margin-right: 0;
  padding-right: 0;
  margin-right: 0;
}
#clients {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 390px;
  padding-right: 40px;
}
#testimonial {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 510px;
  margin-right: 0;
  padding-right: 0;
  margin-right: 0;
}
#legal {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 470px;
  margin-right: 0;
  padding-right: 0;
  margin-right: 0;
}
#awards {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 430px;
  padding-right: 40px;
}
#publications {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 470px;
  margin-right: 0;
  padding-right: 0;
  margin-right: 0;
}
ul.publications {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 510px;
  padding-left: 40px;
  margin-right: 0;
  padding-right: 0;
  margin-right: 0;
  float: right;
}
ul.publications li {
  margin-bottom: 1em;
}
ul.publications li em {
  color: #333333;
}
p.cashboard {
  background: transparent url(images/logo-cashboard.png) no-repeat left top;
  min-height: 65px;
  padding-left: 80px;
}
.static_long {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 390px;
  padding-left: 440px;
}
.article-navigation {
  clear: both;
  padding: 0;
}
.article-navigation .previous,
.article-navigation .up,
.article-navigation .next,
.article-navigation .category {
  float: left;
  margin-right: 10px;
  color: #999;
  font-style: italic;
  padding: 0.5em 0;
}
.article-navigation .previous a,
.article-navigation .up a,
.article-navigation .next a,
.article-navigation .category a {
  padding: 0 20px;
  font-style: normal;
}
.article-navigation .category {
  float: left;
  margin-right: 10px;
  width: 430px;
  margin-top: -2em;
  color: #666666;
  text-align: left;
  font-style: normal;
}
.article-navigation .category strong {
  display: block;
  font-weight: normal;
  color: #000000;
  font-size: 2.5em;
  line-height: 140%;
  font-family: Georgia, Times, serif;
  color: #333333;
}
.article-navigation .category strong a {
  color: #3366cc;
}
.article-navigation .nocategory {
  margin-top: 1em;
}
.article-navigation .previous {
  float: left;
  margin-right: 10px;
  width: 430px;
  text-align: left;
}
.article-navigation .previous a {
  background: transparent url('images/icon-previous.png') no-repeat left center;
}
.article-navigation .next {
  float: left;
  margin-right: 10px;
  width: 310px;
  text-align: right;
}
.article-navigation .next a {
  background: transparent url('images/icon-next.png') no-repeat right center;
}
.article-navigation .up {
  float: left;
  margin-right: 10px;
  width: 190px;
  margin-right: 0;
  padding-right: 0;
  margin-right: 0;
}
.article-navigation .up a {
  background: transparent url('images/icon-up.png') no-repeat left center;
}
.article-navigation hr {
  background-color: #dddddd;
  color: #dddddd;
}
#projects .section hr,
#services .section hr,
#projects article hr,
#services article hr {
  margin-bottom: 3em;
}
#projects .section h2,
#services .section h2,
#projects article h2,
#services article h2 {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 510px;
  padding-left: 440px;
  margin-right: 0;
  padding-right: 0;
  margin-right: 0;
}
#projects .section .slideshow,
#services .section .slideshow,
#projects article .slideshow,
#services article .slideshow,
#projects .section .description,
#services .section .description,
#projects article .description,
#services article .description,
#projects .section .details,
#services .section .details,
#projects article .details,
#services article .details {
  padding-bottom: 3em;
}
#projects .section .slideshow,
#services .section .slideshow,
#projects article .slideshow,
#services article .slideshow {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 390px;
  padding-right: 40px;
  margin-top: -4.5em;
}
#projects .section .slideshow .slide,
#services .section .slideshow .slide,
#projects article .slideshow .slide,
#services article .slideshow .slide {
  margin-bottom: 1.5em;
  background: white url(images/loading.gif) no-repeat center center;
}
#projects .section .slideshow .slide .caption,
#services .section .slideshow .slide .caption,
#projects article .slideshow .slide .caption,
#services article .slideshow .slide .caption {
  font-size: 0.9em;
  line-height: 140%;
  color: #777777;
  color: #999999;
  font-style: italic;
  margin: 0;
  padding: 0 2em 0 0.5em;
  border-left: #eeeeee 8px solid;
}
#projects .section .slideshow .slide .caption a,
#services .section .slideshow .slide .caption a,
#projects article .slideshow .slide .caption a,
#services article .slideshow .slide .caption a {
  text-decoration: none;
  color: #587eac;
}
#projects .section .slideshow .slide .caption a:hover,
#services .section .slideshow .slide .caption a:hover,
#projects article .slideshow .slide .caption a:hover,
#services article .slideshow .slide .caption a:hover {
  text-decoration: underline;
  color: #3366cc;
}
#projects .section .slideshow .slide .caption strong,
#services .section .slideshow .slide .caption strong,
#projects article .slideshow .slide .caption strong,
#services article .slideshow .slide .caption strong {
  color: #666666;
}
#projects .section .description,
#services .section .description,
#projects article .description,
#services article .description {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 350px;
  padding-right: 40px;
}
#projects .section .description .excerpt,
#services .section .description .excerpt,
#projects article .description .excerpt,
#services article .description .excerpt {
  color: #000000;
}
#projects .section .details,
#services .section .details,
#projects article .details,
#services article .details {
  font-size: 0.8em;
  line-height: 130%;
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 110px;
  margin-right: 0;
  padding-right: 0;
  margin-right: 0;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  padding-bottom: 0;
}
#projects .section .details h3,
#services .section .details h3,
#projects article .details h3,
#services article .details h3 {
  margin-bottom: 1em !important;
}
#projects .section .details dl,
#services .section .details dl,
#projects article .details dl,
#services article .details dl {
  border-bottom: 1px #eeeeee solid;
}
#projects .section .details dt,
#services .section .details dt,
#projects article .details dt,
#services article .details dt {
  padding-top: 0.5em;
  padding-bottom: 0.25em;
  font-weight: bold;
  border-top: 1px #eeeeee solid;
}
#projects .section .details dd,
#services .section .details dd,
#projects article .details dd,
#services article .details dd {
  padding-bottom: 0.5em;
  margin-left: 0;
}
#projects .section .details ul,
#services .section .details ul,
#projects article .details ul,
#services article .details ul {
  margin: 0 !important;
  padding: 0 !important;
  border-top: 1px #eeeeee solid;
  padding-top: 0.5em !important;
}
#projects .section .details ul li,
#services .section .details ul li,
#projects article .details ul li,
#services article .details ul li {
  list-style-type: none;
}
#projects .section .details ul li,
#services .section .details ul li,
#projects article .details ul li,
#services article .details ul li {
  border-bottom: 1px #eeeeee solid;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
ul.related_projects {
  margin: 0 !important;
  padding: 0 !important;
}
ul.related_projects li {
  list-style-type: none;
}
ul.related_projects li {
  display: inline;
  float: left;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  width: auto;
  width: 120px;
  height: 120px;
  margin-right: 30px;
}
ul.related_projects li a {
  display: block;
  text-decoration: none;
}
ul.related_projects li a {
  font-size: 0.8em;
  line-height: 130%;
  color: #999999;
}
ul.related_projects li a img {
  display: block;
  border: 1px #eeeeee solid;
  margin-bottom: 0.5em;
}
.flickrset {
  line-height: 100%;
}
.flickrset a {
  float: left;
  display: inline;
}
.flickrset a img {
  display: block;
  margin: 0 1px 1px 0;
  padding: 0;
}
#blog {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 670px;
  margin-top: 1em;
}
#blog .postunit, #blog article {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 510px;
  padding-left: 160px;
  margin-right: 0;
  padding-right: 0;
  margin-right: 0;
  position: relative;
  padding-bottom: 5em;
}
#blog .postunit blockquote, #blog article blockquote {
  border-width: 0 !important;
}
#blog .postunit .date, #blog article .date {
  position: absolute;
  top: 0.8em;
  left: 0;
  float: left;
  margin-right: 10px;
  width: 110px;
  color: #777777;
  color: #999999;
  font-size: 140%;
}
#blog .postunit .date a, #blog article .date a {
  text-decoration: none;
  color: #587eac;
}
#blog .postunit .date a:hover, #blog article .date a:hover {
  text-decoration: underline;
  color: #3366cc;
}
#blog .postunit .date strong, #blog article .date strong {
  color: #666666;
}
#blog .postunit .posterous_quote_citation, #blog article .posterous_quote_citation {
  margin-top: 0.25em;
}
#blog .postunit .info, #blog article .info {
  position: absolute;
  text-transform: capitalize;
  top: 6em;
  left: 0;
  float: left;
  margin-right: 10px;
  width: 110px;
  color: #777777;
  color: #999999;
  font-size: 0.9em;
  line-height: 140%;
}
#blog .postunit .info a, #blog article .info a {
  text-decoration: none;
  color: #587eac;
}
#blog .postunit .info a:hover, #blog article .info a:hover {
  text-decoration: underline;
  color: #3366cc;
}
#blog .postunit .info strong, #blog article .info strong {
  color: #666666;
}
#blog .postunit .info ul, #blog article .info ul {
  margin: 0 !important;
  padding: 0 !important;
}
#blog .postunit .info ul li, #blog article .info ul li {
  list-style-type: none;
}
#blog .postunit .info ul a, #blog article .info ul a {
  color: #999999;
}
#blog .postunit .bodytext blockquote, #blog article .bodytext blockquote {
  padding: 0 1em;
  background-color: transparent;
}
#blog .postunit .bodytext blockquote em, #blog article .bodytext blockquote em {
  font-style: normal;
}
#blog .pagepagination {
  clear: both;
  padding: 1em 0;
  text-align: center;
  border-top: 1px #dddddd solid;
}
#blog .pagepagination .prev_page, #blog .pagepagination .next_page {
  display: block;
  width: 30%;
}
#blog .pagepagination .prev_page {
  float: left;
  text-align: left;
  padding-left: 16px;
  background: transparent url('images/icon-previous.png') no-repeat left center;
}
#blog .pagepagination .next_page {
  float: right;
  text-align: right;
  padding-right: 16px;
  background: transparent url('images/icon-next.png') no-repeat right center;
}
#sidebar {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 230px;
  padding-left: 40px;
  margin-right: 0;
  padding-right: 0;
  margin-right: 0;
  margin-top: 1em;
  line-height: 170%;
}
#sidebar .blogsearch {
  margin-bottom: 1em;
}
#sidebar .taglist ul {
  margin: 0 !important;
  padding: 0 !important;
  border-top: 1px #eeeeee solid;
}
#sidebar .taglist ul li {
  list-style-type: none;
}
#sidebar .taglist ul li {
  padding: 0.35em 0;
  border-bottom: 1px #eeeeee solid;
  text-transform: uppercase;
  color: #777777;
  color: #999999;
  color: #cccccc;
}
#sidebar .taglist ul li a {
  text-decoration: none;
  color: #587eac;
}
#sidebar .taglist ul li a:hover {
  text-decoration: underline;
  color: #3366cc;
}
#sidebar .taglist ul li strong {
  color: #666666;
}
#sidebar .taglist ul li strong {
  color: #333333;
}
.postunit div.editbox {
  font-size: 0.8em;
  line-height: 130%;
  visibility: hidden !important;
}
.postunit div.editbox ul.mini_commands {
  line-height: normal !important;
  visibility: hidden !important;
}
.postunit:hover div.editbox, .postunit:hover div.editbox ul.mini_commands {
  visibility: visible !important;
}
#posterous_bar {
  position: absolute;
  top: -7px;
  right: 0;
  text-align: right;
  color: #777777;
  color: #999999;
}
#posterous_bar a {
  text-decoration: none;
  color: #587eac;
}
#posterous_bar a:hover {
  text-decoration: underline;
  color: #3366cc;
}
#posterous_bar strong {
  color: #666666;
}
#posterous_bar .navbar_selected {
  font-weight: normal;
}
.photostream {
  background-color: transparent;
}
.photostream a img {
  margin: 0 1px 1px 0 !important;
}
.photostream_teaser {
  border: 1px #ccc solid;
  text-align: center;
  margin-bottom: 15px;
}
.photostream_teaser img {
  background-color: white;
  padding: 5px;
  border: 1px #eeeeee solid;
}
#hello-direct {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 390px;
}
#hello-form {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 510px;
  padding-left: 40px;
  margin-right: 0;
  padding-right: 0;
  margin-right: 0;
}
#hello-form form #contact-email {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 230px;
  padding-right: 40px;
}
#hello-form form #contact-phone {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 190px;
  margin-right: 0;
  padding-right: 0;
  margin-right: 0;
}
#hello-form form small {
  display: block;
  font-style: italic;
  color: #777777;
  color: #999999;
}
#hello-form form small a {
  text-decoration: none;
  color: #587eac;
}
#hello-form form small a:hover {
  text-decoration: underline;
  color: #3366cc;
}
#hello-form form small strong {
  color: #666666;
}
#hello-form form input[type=text], #hello-form form input[type=password], #hello-form form textarea {
  padding: 5px;
  margin: 0;
  background-color: #f9f9f9;
  line-height: 140%;
}
#hello-form form button {
  padding: 0;
  border-width: 0;
  background-color: transparent;
  cursor: pointer;
}
#hello-form form .field {
  padding-bottom: 1em;
  vertical-align: inherit;
}
#hello-form form .field textarea, #hello-form form .field input {
  width: 100%;
}
#hello-form form .button {
  clear: left;
}
.article div.intro, article div.intro {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 350px;
  padding-right: 40px;
}
.article div.main, article div.main {
  float: left;
  margin-right: 10px;
  float: left;
  margin-right: 10px;
  width: 550px;
  margin-right: 0;
  padding-right: 0;
  margin-right: 0;
}
.buttonlink {
  display: inline-block;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 14px/100% Arial, Helvetica, sans-serif;
  padding: .5em 2em .55em;
  -webkit-border-radius: .5em;
  -moz-border-radius: .5em;
  border-radius: .5em;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.buttonlink:hover {
  text-decoration: none;
}
.buttonlink:active {
  position: relative;
  top: 1px;
}
.blue {
  color: #D9EEF7;
  border: solid 0px #0076A3;
  background: #3366cc;
}
.blue:hover {
  background: #f47c20;
}
.blue:active {
  color: #fcd3a5;
}

