/*
 * @file
 * global.styles
 *
 * Styles you add here will load for all device sizes, they are "global", as
 * opposed to "responsive" styles, which only load for a given breakpoint (media
 * query) that you set in theme settings. See the README for more details.
 *
 *
 * How to use this file:
 * --------------------
 *
 * There are many empty selectors and some basic styles to act as a guide.
 * Nothing is set in stone and you can change anything - even delete all of it
 * and start with your own clean slate.
 *
 * See global.base also which includes normalize.css and some additional
 * helper classes and base styles.
 */

/* =============================================================================
 *   Base
 * ========================================================================== */

/*
 * To preserve theme settings never apply font properties to the HTML element.
 * This is critically important if you are using the Responsive JavaScript
 * feature as this relies on being able to set a pseudo font family on the HTML
 * element. If you need to set default font properties of any kind use the BODY
 * element as these can be overridden using font theme settings.
 */
*{
        padding:0;
        margin:0;
}

html {
  background: #fff;
}


body {
  font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 10.5pt;
  line-height:1.6em;
  text-rendering: optimizelegibility;
}

@font-face {
  font-family: 'icomoon';
  src:url('fonts/icomoon.eot?-jseeyc');
  src:url('fonts/icomoon.eot?#iefix-jseeyc') format('embedded-opentype'),
    url('fonts/icomoon.woff?-jseeyc') format('woff'),
    url('fonts/icomoon.ttf?-jseeyc') format('truetype'),
    url('fonts/icomoon.svg?-jseeyc#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* =============================================================================
 *   HTML Elements
 * ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    margin: 0px 0px 0.625rem;
    font-family: inherit;
    font-weight: bold;
    line-height: 1.25rem;
    color: inherit;
    text-rendering: optimizelegibility;
}
h1 {font-size: 22pt; font-weight: 400;}

h2 {font-size:16pt; font-weight: 400;}

h3 {}

h4 {}

h5 {}

h6 {}

p {}

b,
strong {}

i,
em {}

dfn {}

sup {}

sub {}

del {}

ins {}

blockquote {float:left; border-left: 5px solid #ccc; margin: 10px; padding-left: 10px;}

cite {}

q {}

address {}

ul {}

ol {}

li {}

dl {}

dd {}

dt {}

abbr {}

acronym {}

pre,
code,
tt,
samp,
kbd,
var {
  font-family: Consolas, Monaco, 'Courier New', Courier, monospace, sans-serif;
}


/* =============================================================================
 *   Wrappers
 * ========================================================================== */

/*
 * Outer wrappers:
 * - #page-wrapper: body > #page-wrapper
 * - #page: body > #page-wrapper > #page
 * - .container: body > #page-wrapper > #page.container
 *
 * The .container class holds the page width value from theme settings.
 */
#page-wrapper {}
#page {}
#page .container {}

/*
 * Wraps all header elements - branding and .region-header
 */
#header {
  max-width:1064px;
  margin:auto;
}

/*
 * Wraps the sidebars the content column
 */
#columns {}

/*
 * Main content column wrapper
 */
#content-column {

}


/*
 * Wraps the main-content-header, the content region and feed-icons. Use this
 * wrapper to style the entire main content column
 */
#main-content {
}


/*
 * Wraps the content region, avoid applying styles to this wrapper, its used
 * mainly for position and invisible gutters and can be problematic to style
 */
#content {

  
}

/*
 * Footer wrapper
 */
#footer {padding-top: 1rem;
padding-bottom: 1rem;
background-color: #1F2831;
box-shadow: 0px 2rem 2rem -2rem rgba(0, 0, 0, 0.7) inset, 0px -2rem 2rem -2rem rgba(0, 0, 0, 0.7) inset;
text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.25);
color: #FFF;}


/*
 * Panels may need additional margin wrangling when in the $content region
 */
#content .panel-display {}

/*
 * Full Width Wrappers
 * These are used in the optional page--full-width-wrappers.tpl.php template.
 * All have internal .container classes. In the full width wrapper template the
 * .container classes set the width or max-width - you can style this but never
 * add any width/margin/padding/borders etc to .container
 */

/*
 * Wraps the leaderboard
 */
#leaderboard-wrapper {}
#leaderboard-wrapper .container {}

/*
 * Wraps the header
 */
#header-wrapper {
  /* Debug styles, is this working */
  background: rgba(255, 192, 203, 0.5);
}
#header-wrapper .container {}

/*
 * Wraps the nav elements
 */
#nav-wrapper {}
#nav-wrapper .container {}

/*
 * Wraps breadcrumb
 */
#breadcrumb-wrapper {}
#breadcrumb-wrapper .container {}

/*
 * Wraps messages and help
 */
#messages-help-wrapper {}
#messages-help-wrapper .container {}

/*
 * Wraps the secondary content/preface region
 */
#secondary-content-wrapper {}
#secondary-content-wrapper .container {}

/*
 * Wraps the main content column
 */
#content-wrapper {}
#content-wrapper .container {}

/*
 * Wraps the tertiary content/postfix region
 */
#tertiary-content-wrapper {}
#tertiary-content-wrapper .container {}

/*
 * Footer wrapper
 */
#footer-wrapper {
  /* Debug styles, is this working? */
  background: rgba(255, 192, 203, 0.5);
}
#footer-wrapper .container {}


/* =============================================================================
 *   Branding
 * ========================================================================== */

/*
 * Wraps all the branding elements, logo, name and slogan
 */

#branding {
}

/*
 * Logo
 */
#logo { 

}



/*
 * Wrapper for the site name and slogan
 */
#name-and-slogan {}

/*
 * Site name (h1)
 */
#site-name {
  margin: 0;
}

#site-name a {}

#site-name a:link,
#site-name a:visited {
  text-decoration: none;
}

#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}

/*
 * Site slogan (h2)
 */
#site-slogan {
  margin: 0;
}


/* =============================================================================
 *   Page content header
 * ========================================================================== */

/*
 * Main content header wraps the page title, tabs and actions links
 */
#main-content-header {}

/*
 * The main page title (h1)
 */
#page-title {
}


/* =============================================================================
 *   Misc Global Styles
 * ========================================================================== */

/*
 * Feed icons
 */
.feed-icon {}

/*
 * Aggregator feed source
 */
#aggregator .feed-source .feed-icon {
  display: inline;
  float: none;
  margin-right: 10px;
}

.feed-details dt,
.feed-details dd {
  display: inline;
  margin: 0;
}

/*
 * Generic styles for the more link
 */
.more-link {}

/*
 * Generic styles for links. See the ul.links declaration in node and comment
 * stylesheets
 */
ul.links {
  margin: 0;
  padding: 0;
}

ul.links.inline {
  display: block;
}

ul.links li {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

/*
 * Search results are an ordered list so reset the margin
 */
.search-results {
  margin: 0;
  padding: 0;
}

/*
 * Attribution message and link
 */
.attribution {
  display: block;
  opacity: 0.65;
  padding: 1em 0;
  text-align: center;
}

.attribution a {
  text-decoration: none;
  color: inherit;
}

.attribution a:hover,
.attribution a:focus {
  text-decoration: underline;
}


/* =============================================================================
 *   Regions
 * ========================================================================== */

/*
 * Standard region wrapper, don't add width to any regions, you will bork the
 * layout - no margin, padding or borders etc
 */
.region {}

/*
 * Regions have an inner div - perfect for adding margin, padding or borders
 */
.region-inner {}

/*
 * Regions can be nested, such as when using Panels
 */
.region-inner .region-inner {}

/*
 * Header region, embedded in the #header
 */
.region-header {}

/*
 * Generally used to output Drupals help block, if the help module is enabled
 */
.region-help {}

/*
 * Secondary content
 */
.region-secondary-content {}

/*
 * Sits above the main content header, like a content-top region
 */
.region-highlighted {
  background-color: #1f2831;
  color:#fff;
 
}
.region-highlighted h1, .region-highlighted h2, .region-highlighted a{color:#fff;}
#block-block-1{
  max-width: 1064px;
  margin:auto;
  text-align:center;
  padding: 20px 0;
}

/*
 * Sits below the main content, like a content-bottom region
 */
.region-content-aside {}

/*
 * Sidebars - targets both
 */
.sidebar {}

/*
 * First sidebar
 */
.region-sidebar-first {}

/*
 * Second sidebar
 */


/*
 * Tertiary content
 */
.region-tertiary-content { background-color:#fff; max-width: 1064px; margin: auto; padding: 0 20px;}

.region-tertiary-content .block {width: 49%; float:left; padding: 15px 0 0 0; font-size: 90%; font-weight: 600;}
#block-block-7 {text-align: right;}
#block-block-7 a {color: #3c92b3;}
#block-block-7 a:hover {color: #ea492b;}

/*
 * Footer region
 */
.region-footer {
  max-width:1064px;
  margin:auto;
  font-size: 10pt;
   text-rendering: optimizelegibility;
}
.region-footer .block{
  display: inline;
  float:left;
  padding : 0 20px;
}
.region-footer h2.block-title{font-size: 9pt; 
text-transform: uppercase;}

.region-footer a {color: #3c92b3;}
.region-footer a:hover {color: #ea492b;
text-decoration: none;}

/*------------Contacts----------------*/
.view-id-contact .view-content { 
  margin-left: 25px;
  margin-top: 10px;}

.view-contact:before {
    content: '\e609';
font-family: "icomoon";
font-size: 16pt;
color: #3C92B3;
width: 20px;
margin-top: 5px;
float: left;
  }
.view-id-contact .group-left {width: 1%;
font-size: 22px;
color: #3c92b3;
padding: 0 10px 0 0;
float:left;
}
.view-id-contact .field-label{color:#808080;}
.view-id-contact .group-right {width: 90%;
  margin-left: 3%;
  float:right;
}
.view-contact .field-name-field-location {margin-bottom: 20px;}

.view-quick-links a{ 
  display: block;
  font-size: 12pt;
  padding: 10px 0;
  border-bottom: 1px dotted #808080;
}
/* Navigation Footer */
#block-menu-menu-navigation-footer {margin: 15px 0 30px 0;}
#block-menu-menu-navigation-footer ul {margin:0; padding:0;}
#block-menu-menu-navigation-footer li{
  display:inline-block;
  list-style: none;
}
#block-menu-menu-navigation-footer li {padding: 0 5px;}
#block-menu-menu-navigation-footer li.first{padding: 0 5px 0 0;}
#block-menu-menu-navigation-footer a{color:#3C92B3; }
#block-menu-menu-navigation-footer a:hover{color:#EA492B;}

/* =============================================================================
 *   Links
 * ========================================================================== */

a {
  text-decoration: none;
  color: #3C92B3;
}

a:link,
a:visited {}

a:active,
a.active {}

a:hover,
a:focus {
  text-decoration: underline;
  color:#EA492B;
}


/* =============================================================================
 *   Primary, Secondary and Menu Bar region menus
 * ========================================================================== */

#primary-menu-bar {

}
.nav {
  clear: both;
  margin: 10px 0;
}

.nav ul,
.nav ul.menu {
  margin: 0;
  padding: 0;
}

.nav li,
.nav ul.menu li {
  display: inline;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav li a,
.nav ul.menu li a {
  display: block;
  white-space: nowrap;
  padding: 0 10px;
}

.nav li a:visited,
.nav ul.menu li a:visited {}

.nav li a:hover,
.nav li a:focus,
.nav ul.menu li a:hover,
.nav ul.menu li a:focus {}

.nav .block {
  margin-bottom: 0;
}


/* =============================================================================
 *   Superfish
 * ========================================================================== */

ul.sf-menu {
  margin-bottom: 0;
}

ul.sf-menu a {
  border-left: 0;
  border-top: 0;
  padding: 0 10px;
  text-decoration: none;
  height: 2.5em;
  line-height: 2.5em;
}

ul.sf-menu a:link,
ul.sf-menu a:visited {}

ul.sf-menu li {}

ul.sf-menu li:hover,
ul.sf-menu li.sfHover {
  outline: 0;
}

ul.sf-menu a {}

ul.sf-menu a:focus,
ul.sf-menu a:hover,
ul.sf-menu a:active {
  outline: 0;
}

/*
 * Superfish blocks
 */
.block-superfish {}

.block-superfish .block-inner .content {}

.block-superfish ul {
  margin: 0 !important;
  padding: 0 !important;
}

.block-superfish ul ul {}

.block-superfish ul ul ul {}

.block-superfish ul ul ul ul {}

.block-superfish li {
  margin: 0 !important;
  padding: 0 !important;
}

/*
 * Vertical style
 */
.sf-vertical {
  width: 100%;
}

.sf-vertical li {
  width: 100%;
}

.sf-vertical li.last {}

.sf-vertical li:hover ul,
.sf-vertical li.sfHover ul {
  left: 100%;
  top: 0;
  margin: 0;
  padding: 0;
}

.sf-vertical li a {
  padding: 0 10px;
}

/*
 * Navbar style
 */
.sf-navbar {
  padding-bottom: 0 !important;
}

/*
 * Sensible padding for the default style
 */
.sf-menu.sf-style-default a {
  padding: 0 10px;
}




/* =============================================================================
 *   Menu Toggles
 * ========================================================================== */

.at-mt .at-menu-toggle,
.at-mt .at-menu-toggle ul,
.at-mt .at-menu-toggle ul.menu {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.at-mt .at-menu-toggle-button {
  margin: 0;
}

.at-mt .at-menu-toggle ul a {
  padding: 0 10px;
  white-space: nowrap;
}




/* =============================================================================
 *   Menus, usually blocks
 * ========================================================================== */

ul.menu {
  padding-left: 15px;
}

ul.menu ul {
  padding-left: 15px;
}

ul.menu ul ul {}

ul.menu ul ul ul {}

ul.menu li {
  margin: 0;
}

ul.menu li.collapsed,
ul.menu li.expanded,
ul.menu li.leaf {}

ul.menu li a {}

ul.menu li a:link,
ul.menu li a:visited {}

ul.menu li a:active,
ul.menu li a.active {}

ul.menu li a:hover,
ul.menu li a:focus {}

ul.menu li.active a,
ul.menu li.active-trail a {}

ul.menu li.first,
ul.menu li.last {}

/* If li.content exists it's a problem, so reset the padding */
.block .menu li.content {
  padding: 0;
}


/* =============================================================================
 *   Book navigation menu
 * ========================================================================== */

.book-navigation {}

.book-navigation .page-links {}

.book-navigation .page-previous {}

.book-navigation .page-next {}

.book-navigation .page-up {
  /* Prevent text wrapping to a new line, assumes the string is two chars */
  min-width: 2em;
  white-space: nowrap;
}

.book-navigation .menu {
  margin-left: 0;
}


/* =============================================================================
 *   Breadcrumbs
 * ========================================================================== */

#breadcrumb {
  display:none;
  margin: 10px 0;
}

/* If the label is set to show in theme settings the label class is added */
#breadcrumb .breadcrumb-label {
  font-size: 1em;
  display: inline;
  padding-right: 10px;
}

#breadcrumb .breadcrumb-label:after {
  content: ":";
}

#breadcrumb ol {
  margin: 0;
  padding: 0;
}

#breadcrumb .with-breadcrumb-label ol {
  display: inline;
}

#breadcrumb li {
  list-style: none;
  display: inline;
}

#breadcrumb li.crumb-first {}

#breadcrumb li.crumb-last {}

#breadcrumb a {}

#breadcrumb a:link,
#breadcrumb a:visited {}

#breadcrumb a:active,
#breadcrumb a.active {}

#breadcrumb a:hover,
#breadcrumb a:focus {}

#breadcrumb .crumb-separator {}


/* =============================================================================
 *   Pagers
 * ========================================================================== */

ul.pager {
  clear: both;
  margin: 0;
  text-align: center;
  padding: 20px;
}

.item-list ul.pager li {
  margin: 0;
}

ul.pager li {
  background-image: none;
  display: inline;
  list-style-type: none;
  padding: .5em;
}

ul.pager li.pager-current {
  font-weight: 700;
}

.block ul.pager li {
  margin: 0;
}

/*
 * Theme the various states of pager links
 */
ul.pager li {}

ul.pager li a {color:#3C92B3}

ul.pager li a:link,
ul.pager li a:visited {}

ul.pager li a:active,
ul.pager li a.active {}

ul.pager li a:hover,
ul.pager li a:focus {color: #EA492B}

ul.pager li.pager-item {}
ul.pager li.first {}
ul.pager li.last {}
ul.pager li.pager-current {}
ul.pager li.pager-first {}
ul.pager li.pager-previous {}
ul.pager li.pager-next {}
ul.pager li.pager-last {}


/* =============================================================================
 *   Skip Navigation
 * ========================================================================== */

#skip-link {
  left: 50%;
  margin-left: -6.5em;
  margin-top: 0;
  padding: 0 0.5em;
  position: absolute;
  width: 12em;
  z-index: 50;
}

#skip-link a {
  background: #444;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

#skip-link a:link,
#skip-link a:visited {
  background: #444;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

#skip-link a:hover,
#skip-link a:focus,
#skip-link a:active {
  outline: 0;
}


/* =============================================================================
 *   Tabs (local tasks)
 * ========================================================================== */

#tasks {
	max-width: 1064px;
	margin:auto;
  margin-bottom: 15px;
}

ul.primary {
  border-bottom-color: #ccc;
  margin: 20px 0;
  padding: 0 0 0 5px;
}

ul.primary li {
  display: block;
  float: left;
  margin: 0 1px -1px;
}

ul.primary li a {
  background-color: #f5f5f5;
  border-color: #ccc;
  margin-right: 1px;
  padding: 0 10px;
  display: block;
  float: left;
  height: 1.5em;
  line-height: 1.5em;
}

ul.primary li a:hover,
ul.primary li a:focus {
  background-color: #eee;
  border-color: #ccc;
}

ul.primary li.active a,
ul.primary li.active a:hover,
ul.primary li.active a:focus {
  background-color: #fff;
  border-bottom-color: #fff;
}

ul.secondary {
  border-bottom: 1px solid #ccc;
  margin: 1em 0 0;
  padding: 0 .3em 1em;
}

ul.secondary li {
  border-right: 0;
  list-style: none;
  padding: 0 10px 0 0;
}

ul.secondary li a {}

ul.secondary li a:hover,
ul.secondary li a.active {
  border-bottom: none;
  text-decoration: underline;
}


/* =============================================================================
 *   Action links
 * ========================================================================== */

ul.action-links {
  margin: 20px 0 0;
  list-style: none;
}

ul.action-links li {}


/* =============================================================================
 *  Field Styling
 * ========================================================================== */

/*
 * Wrapper for any field
 */
.field {}

/*
 * Above and inline classes are on the field wrapper
 */
.field-label-above {}

/*
 * When labels are set to inline in field display settings the clearfix class is
 * automatically added
 */
.field-label-inline {}

.field-label-inline .field-label {
  margin: 0;
}

/*
 * Labels are h2 in Adaptivetheme. Use a strong selector to mitigate unwanted
 * ineritance issues
 */
.field-label {
  font-size: 1em;
  font-weight: 700;
  font-family: inherit;
  line-height: inherit;
  margin-bottom: 0;
}




/*
 * Field types (Core)
 */

/*
 * Image fields use the <figure> and <figcaption> elements from HTML5
 */
.field-type-image {}

.field-type-image .caption {}

.field-type-image .full-caption {}

.field-type-image .teaser-caption {}

/*
 * Taxonomy
 */

 .page-taxonomy-term #main-content-header{background-color: #1f2831;}
.page-taxonomy-term #main-content-header h1#page-title, .page-taxonomy-term #content {max-width: 1064px; margin:auto;}
.page-taxonomy-term #main-content-header h1#page-title {padding: 20px 0; color:#fff;}
.page-taxonomy-term #main-content-header { margin-bottom: 30px;}

.field-type-taxonomy-term-reference {
  /* The same bottom margin as p, blockquote, ul, ol and dl */
  margin-bottom: 1.5em; 
}

.field-type-taxonomy-term-reference.field-label-inline .field-items {
  margin: 0;
  padding: 0;
}

.field-type-taxonomy-term-reference.field-label-inline .field-item {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

/*
 * Text
 */
.field-type-text {}

/*
 * Long text
 */
.field-type-text-long {}

/*
 * Text with summary
 */
.field-type-text-with-summary {}

/*
 * File
 */
.field-type-file {}

/*
 * Number/Integer
 */
.field-type-number-integer {}

/*
 * Decimal
 */
.field-type-number-decimal {}

/*
 * Number float
 */
.field-type-number-float {}

/*
 * List
 */
.field-type-list-text {}

/*
 * List boolean
 */
.field-type-list-boolean {}

/*
 * List integer
 */
.field-type-list-integer {}

/*
 * List float
 */
.field-type-list-float {}

/*
 * Field types (Contrib)
 */
.field-type-datetime {}

.field-type-node-reference {}

.field-type-user-reference {}

/*
 * Named fields
 */
.field-name-body {}

.field-name-field-image {}

.field-name-field-tags {}

/*
 * Underscores in field name are replaced with dashes
 */
.field-name-field-FIELDNAME {}

/*
 * Image Alignment Theme Settings - included here so you can easily override
 */
/*
 * Float none setting
 */
.ia-n .field-type-image,
.iat-n .field-type-image {}

/*
 * Float left setting
 */
.ia-l .field-type-image figure,
.iat-l .field-type-image figure {
  margin: 5px 20px 15px 0;
}

/*
 * Centered setting
 */
.ia-c .field-type-image figure,
.iat-c .field-type-image figure {
  margin: 5px auto 15px;
}

/*
 * Float right setting
 */
.ia-r .field-type-image figure,
.iat-r .field-type-image figure {
  margin: 5px 0 15px 20px;
}


/* =============================================================================
 *   Block Styling
 * ========================================================================== */

/*
 * Main wrapper for most blocks, block_system_main does not have it
 */
.block {
  
}
.region-highlighted .region-inner{max-width: 1064px;
margin:auto;}
#block-block-2 h2, #block-block-3 h2, #block-block-4 h2, #block-block-5 h2, #block-block-6 h2, #block-block-10 h2{padding: 20px;}


.page-our-work #content-column-wrapper, .page-team #content-column-wrapper, .page-toolchain #content-column-wrapper, .page-lsts-team #content-column-wrapper{
  max-width: 1064px;
  margin:auto;
  margin-top: 30px;
}



#block-menu-menu-our-work, #block-menu-menu-the-team, #block-menu-menu-our-systems, #block-menu-menu-our-toolchain{width:62%;
  float:right;
  text-align: right;
}
#block-menu-menu-our-work ul, #block-menu-menu-the-team ul, #block-menu-menu-our-toolchain ul, #block-menu-menu-our-systems ul{ 
  text-align: right;
  margin: 20px 0;
}
#block-menu-menu-our-work li, #block-menu-menu-the-team li, #block-menu-menu-our-toolchain li, #block-menu-menu-our-systems li{
  list-style: none;
  display:inline-block;
    border-left: 1px dotted #ccc;
}
#block-menu-menu-our-work li.first, #block-menu-menu-the-team li.first, #block-menu-menu-our-toolchain li.first, #block-menu-menu-our-systems li.first{border:0;}
#block-menu-menu-our-work li.last, #block-menu-menu-the-team li.last, #block-menu-menu-our-toolchain li.last, #block-menu-menu-our-systems li.last{padding-right: 20px;}
#block-menu-menu-our-work li a, #block-menu-menu-the-team li a, #block-menu-menu-our-toolchain li a, #block-menu-menu-our-systems li a{
  display:block;
  padding: 3px 10px;
  margin: 0 2px;
  color:#fff;
  font-size: 10pt;
  font-weight: 500;
}
#block-menu-menu-our-work li a:hover, #block-menu-menu-the-team li a:hover, #block-menu-menu-our-toolchain li a:hover, #block-menu-menu-our-systems li a:hover{background-color: #3C92B3;
  text-decoration:none;
}
#block-menu-menu-our-work li a.active, #block-menu-menu-the-team li a.active, #block-menu-menu-our-toolchain li a.active, #block-menu-menu-our-systems li a.active{background-color: #3C92B3;
}
/*
 * Inner wrapper for most blocks, good for margin, padding and borders,
 * block_system_main does not have it
 */
.block-inner {}

/*
 * The first block in the region
 */
.block.first {}

/*
 * The last block in the region
 */
.block.last {}

/*
 * Zebra striping for each block in the region
 */
.block.odd {}

/*
 * Zebra striping for each block in the region
 */
.block.even {}

/*
 * Block title
 */
.block-title {
  margin: 0;
}
#content-column-wrapper .block-title, #block-views-blog-archive-block .block-title, #block-views-follow-us-block .block-title{
  color:#808080; 
  font-size: 12pt;
  border-bottom: 1pt solid #ccc;
  padding:10px;
  color:#666;
}
/*
 * Block content wrapper
 */
.region-sidebar-second .block-content {padding: 10px;}

/*
 * Match item list and block menu margin and padding
 */
.block-content {}

/*.block-content ul,
.block-content ol {
  padding: 0 0 0 15px;
}*/

.block-content li {
  margin: 0;
  padding: 0;
}


/*
 * Block for the latest news items in the first category
 */
#block-aggregator-category-1 {}

/*
 * Block for the latest news items in the first feed
 */
#block-aggregator-feed-1 {}

/*
 * First block created with "Add block" link
 */
#block-block-1 {}

/*
 * "Recent blog posts" block
 */
#block-blog-recent {}

/*
 * "Book navigation" block for the current book's table of contents
 */
#block-book-navigation {}

/*
 * "Recent comments" block
 */
#block-comment-recent {}

/*
 * "Active forum topics" block
 */
#block-forum-active {}

/*
 * "New forum topics" block
 */
#block-forum-new {}

/*
 * Language switcher block
 */
#block-locale-language {}

/*
 * Custom menu block
 */
#block-menu-menu-NAME {}

/*
 * "Recent content" block
 */
#block-node-recent {}

/*
 * "Syndicate" block for primary RSS feed; see also page.css's .feed-icon
 */
#block-node-syndicate {}

/*
 * "Most recent poll" block
 */
#block-poll-recent {}

/*
 * "Author information" block for the profile of the page's author
 */
#block-profile-author-information {}

/*
 * "Search form" block
 */
#block-search-form {}

/*
 * "Shortcuts" block
 */
#block-shortcut-shortcuts {}

/*
 * "Popular content" block
 */
#block-statistics-popular {}

/*
 * "Main menu" block
 */
#nav-wrapper {
width:80%;
float: right;
}
#block-system-main-menu {
  text-align:right;
  margin-top: 25px;
}
#block-system-main-menu ul{
text-align:right;
  
}
#block-system-main-menu li{
  list-style:none;
  display:inline-block;
  
}

#block-system-main-menu li a{
display: block;
color: #555;
line-height: 1rem;
padding: 0rem 0.85rem;
font-weight: 600;
font-size: 105%;
}
/*
 * "Management" block for Drupal management menu
 */
#block-system-management {}

/*
 * "Navigation" block for Drupal navigation menu
 */
#block-system-navigation {}

/*
 * "User menu" block for Drupal user menu
 */

.page-user {}
.page-user #main-content-header {background-color: #1F2831; padding: 20px 0;}
.page-user #content, .page-user #main-content-header h1#page-title{max-width: 1064px; margin:auto;}
.page-user #main-content-header h1#page-title{color: #fff;}
.page-user #content{max-width: 1064px; margin:auto;}

#block-system-user-menu {}

/*
 * "System help" block
 */
#block-system-help {}

/*
 * "Main page content" block
 */
#block-system-main {}

/*
 * "Powered by Drupal" block
 */
#block-system-powered-by {}

/*
 * "User login form" block
 */
#block-user-login {}

/*
 * "Who's new" block for a list of the newest users
 */
#block-user-new {}

/*
 * "Who's online" block for a list of the online users
 */
#block-user-online {}


/* =============================================================================
 *   Node Styling
 * ========================================================================== */

.node {
  margin-bottom: 20px;
}

.node.node-promoted {}

.node.node-sticky {}

.node.node-by-viewer {}

.node.node-teaser {}

.node.node-full {}

.node.odd {}

.node.even {}

.node .node-title {
  margin: 0;
}

.node .user-picture {}

.node .submitted {}

.node .submitted .username {}

.node .submitted time {}

.node .node-content {}

.node ul.links {}

.node ul.links li {}

.node ul.links li a {}

.node ul.links li.node-read-more a {}

.node ul.links li.comment-add a {}

.node ul.links li.comment-comments a {}

.node ul.links li.comment-new-comments a {}

.node ul.links li.blog-sernames-blog a {}

.node ul.links li.print-html a {}

.node ul.links li.print-email a {}

.node ul.links li.print-pdf a {}

.preview .node {}


/*
 * All nodes are given a node-FOO class that describes the type of content that
 * it is. If you create a new content type called "my-custom-type", it will
 * receive a "node-my-custom-type" class.
 */
.node-page {}

.node-article {}
.node-article .field-name-body a{color:#ea492b}

.node-book {}

.node-forum {}

.node-poll {}




/* =============================================================================
 *   Comment Styling - Comments, comment wrapper, comment form
 * ========================================================================== */

/*
 * Wrapper for the list of comments and its titles
 */
#comments {
  margin: 1.5em 0;
}

#comments h2 {}

#comments h2.comment-title {
  margin: 0;
}

#comments h2.comment-form {
  margin: 0;
}

/*
 * Wrapper for a single comment
 */
.comment {
  margin-bottom: 20px;
}

.comment.first {}

.comment.last {}

.comment.odd {}

.comment.even {}

.comment .user-picture {}

.comment .submitted {}

.comment .submitted p {}

.comment .submitted .username {}

.comment .submitted time {}

.comment .user-signature {}

.comment ul.links {}

/*
 * Comment title
 */
.comment-title {
  margin: 0;
}

/*
 * Comment states
 */
.comment-new {}

.comment-by-anonymous {}

.comment-by-node-author {}

.comment-by-viewer {}

.comment-title-hidden {}

.comment-with-picture {}

.comment-with-signature {}

/*
 * Preview of the comment before submitting new or updated comment
 */
.comment-preview {}

/*
 * "New" marker for comments that are new for the current user
 */
.new {
  color: #c00;
}

/*
 * Nested comments are indented
 */
.indented {
  margin-left: 40px;
}


/* =============================================================================
 *   Forms
 * ========================================================================== */

/*
 * Wrapper for a form element (or group of form elements) and its label
 */
.form-item {}

.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}

.form-item label {
  font-weight: 700;
}

.form-item label.option {}

/*
 * Highlight marks and form required mark
 */
.marker,
.form-required {
  color: #c00;
}

.form-item .description {
  font-size: 0.85em;
}

.form-checkboxes .form-item,
.form-radios .form-item {}

/*
 * The submit button
 */
.form-submit {}

.container-inline div,
.container-inline label {
  display: inline;
}

/*
 * Define consistent borders
 */
fieldset {
  border: 1px solid #ccc;
}

/*
 * Tips for Drupal's input formats
 */
.tips {}

/*
 * Buttons used by contrib modules like Media
 */
a.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

/*
 * Password confirmation
 */
.password-parent,
.confirm-parent {
  margin: 0;
}


/* =============================================================================
 *   Tables
 * ========================================================================== */

table {
  margin: 10px 0;
  padding: 0;
  width: 100%;
}

table.sticky-header {
  z-index: 10;
}

table,
thead,
tbody,
tr,
th,
td {
  border-color: #ccc;
}

table,
td,
th {
  vertical-align: middle;
}

caption,
th,
td {
  text-align: left;
}

thead tr {
  font-weight: 700;
  background-color: #fff;


}

td,
th {
  border-bottom: 0;
  margin: 0;
  padding: 5px 7px;
}

tbody {}

tbody tr {
  border-top: 1px solid #ccc;
}

tr.odd {
  background: #fff;
}

tr.info,
tr.even,
tr:nth-child(2n+2) {
  border-bottom: 0;
  background-color: #f5f5f5;
}

tr.drag {}

tr.drag-previous {}

tr.odd td.active {
  background-color: #eee;
}

tr.even td.active {
  background-color: #ebebeb;
}

.lt-ie8 tr {}

.lt-ie8 tr.even,
.lt-ie8 tr.odd {}

.lt-ie8 tr.even th,
.lt-ie8 tr.even td,
.lt-ie8 tr.odd th,
.lt-ie8 tr.odd td {
}

/*
 * Forum tables
 * Core sets white-space to nowrap, which makes no sense
 */
#forum td {}

#forum td.created,
#forum td.posts,
#forum td.topics,
#forum td.last-reply,
#forum td.replies,
#forum td.pager {
  white-space: normal;
}



/* =============================================================================
 *   Messages
 * ========================================================================== */

/* Left and right margin are set by the global gutter width */
div.messages {
  margin-bottom: 10px;
  margin-top: 10px;
}

div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

div.status {}

div.warning {}

tr.warning {}

div.error,
tr.error {}

.error {}

.warning {}

/*
 * Unpublished nodes
 */
.node-unpublished,
.comment-unpublished {}

.node-unpublished,
.comment-unpublished {}

.node-unpublished p.unpublished,
.comment-unpublished p.unpublished {
  color: pink;
  color: rgba(239, 170, 170, 0.4);
  font-family: Impact,"Arial Narrow",Helvetica,sans-serif;
  font-size: 75px;
  font-weight: bold;
  height: 0;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  overflow: visible;
  text-align: center;
  text-transform: uppercase;
  word-wrap: break-word;
}

/*
 * Otherwise these elements will appear below the "Unpublished" text
 */
.lt-ie8 {}

.lt-ie8 .node-unpublished > *,
.lt-ie8 .comment-unpublished > * {
  position: relative;
}


/* =============================================================================
 *    Maintenance pages
 * ========================================================================== */

.maintenance-page {}
.maintenance-page .container {
  padding: 40px 0;
}

.maintenance-page #site-name,
.maintenance-page #page-title {
  margin: 0;
}

.db-offline {}

.db-offline .container {
  margin: 0 auto;
  padding: 40px 0;
  width: 100%;
  max-width: 960px;
}

.db-offline div.messages {
  margin: 20px 0 0;
}

.db-offline #content {
  padding: 20px 0;
}


/* =============================================================================
 *   Misc overrides for contrib modules
 * ========================================================================== */

/*
 * Admin menu overrides
 */
#admin-menu {
  margin: 0;
  padding: 0;
}

/*
 * Devel Module
 */
.dev-query {
  background: #eee;
  padding: 30px;
}

/*
 * Styleguide module tweaks
 */
#styleguide-header {
  padding: 0 10px;
}

#styleguide-header .item-list {
  font-family: inherit;
  margin: 0 20px 20px 0;
  min-height: 260px;
  width: auto;
}
/*--------------------------Views-----------------------*/

/*----------Follow us-----------*/
.social-links ul li {
  float: left;
  margin: 3px !important;
  padding: 0 !important;
}
#content .view-follow-us .view-content{
  padding: 0 10px;
}
.view-follow-us .views-row{
  display:inline-block;
  margin-right:1px;
}
.view-follow-us .views-row i {
  margin-top: 10px;
  font-size: 18px;
  text-rendering: optimizelegibility;
 display:inline-block;
 width: 22px;
text-align: center;
padding: 5px;
}

#content .view-follow-us .icon-twitter, .region-sidebar-second .view-follow-us .icon-twitter, #footer .view-follow-us .icon-twitter:hover {background: #3dc7f4;   color: white;}
#content .view-follow-us .icon-facebook, .region-sidebar-second  .view-follow-us .icon-facebook, #footer .view-follow-us .icon-facebook:hover {background: #3B5998;color: white;}
#content .view-follow-us .icon-googleplus, .region-sidebar-second  .view-follow-us .icon-gplus, #footer .view-follow-us .icon-gplus:hover {background: #D34836; color: white;}
#content .view-follow-us .icon-linkedin, .region-sidebar-second  .view-follow-us .icon-linkedin, #footer .view-follow-us .icon-linkedin:hover {background: #007db3; color: white;}
#content .view-follow-us .icon-youtube, .region-sidebar-second  .view-follow-us .icon-youtube, #footer .view-follow-us .icon-youtube:hover {background: #c4342f; color: white;}
#content .view-follow-us .icon-github, .region-sidebar-second  .view-follow-us .icon-github, #footer .view-follow-us .icon-github:hover {background: #4183c4; color: white;}
#content .view-follow-us .icon-instagramm, .region-sidebar-second  .view-follow-us .icon-instagramm, #footer .view-follow-us .icon-instagramm:hover {background: #4A6EA9; color: white;}

#footer .view-follow-us .icon-twitter, #footer .view-follow-us .icon-facebook,#footer .view-follow-us .icon-gplus, #footer .view-follow-us .icon-linkedin, #footer .view-follow-us .icon-youtube, #footer .view-follow-us .icon-github, #footer .view-follow-us .icon-instagramm { color: #5a748f; background: #334150;}

.view-follow-us .icon {
   opacity: 0.5;
  color: white;
}
.view-follow-us .icon:hover {
   opacity: 1;
}
.view-follow-us a[title]{
  position:relative;

}
.view-follow-us a[title]:after{
  content:attr(title);
  color:#fff;
  background:#333;
  background:rgba(51,51,51,0.75);
  padding:5px;
  position:absolute;
  left:-9999px;
top:24px;
  opacity:0;
  white-space:nowrap;
  -webkit-transition:0.25s linear opacity;
}
.view-follow-us a[title]:hover:after{
  left:0px;
  opacity:1;
}


/*---------Latest Posts----------*/
.view-latest-posts .view-content {
}
.view-latest-posts .views-row{
  border-top: 1px solid #ccc;
  float:left;
  width:100%;
}
.view-latest-posts .views-row-first{border:0;}
.view-latest-posts .views-row-last{ border-bottom: 1px solid #ccc;}

.view-latest-posts .views-field-title{
  width: 75%;
  font-size: 11pt;
  font-weight: 400;
  padding:5px 10px;
  margin: 5px 0 0 0;
   float:left;
}
.view-latest-posts .LP_date{
  width:10%;
  background:#f2f2f2;
  padding: 3px;
  float:right;
  margin: 0;
}
.view-latest-posts .LP_date p{
  font-size: 10pt;
  text-align: center;
  color:#4d4d4d;
  margin:0;
  padding:0;
}

.view-latest-posts .field-content a{ color:#666;}
.view-latest-posts .field-content a:hover{ color:#1F2831;
 text-decoration: none;}

 /*-----------Home ------------*/
 .front #content-column-wrapper {width: 100%; padding:0;}
.front #content-column {margin-top: 30px;}
#content .panel-flexible {margin:0;}

.bottom-row {background:#eee; margin:0; padding:0;}
.bottom-row .inside {max-width:1064px; margin:auto; padding: 15px 0 20px;}
.top-row .inside {max-width:1064px; margin:auto;}
.panels-flexible-region-1-center .pane-node{padding: 0 20px;}

/*-------------Funding----------------*/
.pane-views-funding-block { padding: 0 15px;}
.view-funding .view-content{margin-top: 20px; padding: 0 10px;}
.view-funding .views-row {float:left; margin-right: 10px; }
.view-funding .views-field-field-funding-image img{height: 50px; width:auto;}


/*-------------------Blog Archive--------------*/
.view-blog-archive .view-content {/*padding: 10px;*/}
.view-blog-archive h3 {font-size: 12pt; padding:0; color:#EA492B; margin:0;}
.view-blog-archive .views-row{font-size: 9pt; line-height: 12pt; margin: 7px 0 ; }
.view-blog-archive .views-row a {display:inline-block; color:#666;}
.view-blog-archive .views-row a:hover {color:#3c92b3;}
.view-categories .view-content{ padding: 10px;}
.view-categories .views-row { float:left; width: 45%;}
.view-categories .views-row a{color:#3C92B3}
.view-categories .views-row a:hover{color:#EA492B}

/*------------Blog------------------------*/
.page-blog h1#page-title, .page-toolchain h1#page-title, .page-team h1#page-title{display:none;}

.page-blog #content-column-wrapper, .node-type-article #content-column-wrapper{ max-width: 1064px; margin:auto; margin-top: 30px;}
.node-type-article #main-content {padding: 0 20px;}

.view-blog .view-mode-teaser{}
.view-mode-teaser .group-header, .node-type-article .ds-left{ border-bottom: 1px solid #ccc; float:left; width:100%; margin: 0 0 20px 0;}
.view-mode-teaser .group-header .field-name-title, .node-type-article .ds-left .field-name-title{float:left;margin:0; padding:0;}
.view-mode-teaser .group-header .field-name-title a {color:#1F2831;}
.view-mode-teaser .group-header .field-name-title a:hover {color:#EA492B; text-decoration: none;}

.view-mode-teaser .group-header .field-name-post-date, .node-type-article .ds-left .field-name-post-date{
  background:#f2f2f2;
  padding: 7px;
  text-align:center;
  float:right;
  font-size: 10pt;
}
.view-mode-teaser .group-header .field-name-post-date p, .node-type-article .ds-left .field-name-post-date p{font-size: 12pt; margin:0;}
.view-mode-teaser .group-header .field-name-field-categories, .node-type-article .ds-left .field-name-field-categories{width:90%; margin:0 0 2px 0; padding:0;}

.view-mode-teaser .group-header .field-name-field-categories ul, .node-type-article .ds-left .field-name-field-categories ul {list-style: none; padding:0; margin:0;}
.view-mode-teaser .group-header .field-name-field-categories ul a, .node-type-article .ds-left .field-name-field-categories ul a{color:#EA492B; font-size: 9.5pt;}
.field-name-field-categories a::before{content:"in "; color:#777;}
.field-name-field-tags h2.field-label {color:#666; margin-right: 10px;}
.field-name-field-tags {font-size: 90%; margin-bottom: 10px;}
.field-name-field-tags a{color:#3C92B3}
.field-name-field-tags a:hover{color:#EA492B}

.view-mode-teaser .group-left{ width:30%;}

.view-mode-teaser .group-left img{padding: 4px;
background-color: #FFF;
border: 1px solid rgba(0, 0, 0, 0.2);
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);}

.view-mode-teaser .group-right a{color:#EA492B}
.view-mode-teaser .group-right .field-name-node-link a{color:#3C92B3;}

.view-blog .views-row {padding: 0 20px;}
.node-type-article #page-title{display:none; line-height: 1.2em;}
.view-blog .field-name-title a, .node-type-article .field-name-title h2{line-height: 1.3em;}


/*-----------Projects and Events------------*/

.page-node-27 #page-title{ display:none;}
.page-node-16 h1#page-title{display: none;}
.page-node-16 #content-column-wrapper{
  max-width: 1064px;
  margin:auto;
  margin-top: 30px;
}

#block-views-projects-block h2.block-title, #block-views-projects-block-1 h2.block-title, #block-views-vehicles-block h2.block-title, #block-views-support-systems-block h2.block-title {font-size: 16pt; font-weight: 400; color:#1F2831; border:0;}

#block-views-projects-block, #block-views-projects-block-1, #block-views-vehicles-block, #block-views-support-systems-block {margin-bottom: 20px}

.view-projects .views-row, .view-events .views-row, .view-vehicles .views-row, .view-events .views-row, .view-support-systems .views-row {-webkit-margin-after: 3em; border:0;}
.view-support-systems fieldset .collapsed legend, .view-events  fieldset .collapsed, .view-projects  fieldset .collapsed{margin-bottom: 30px;}
.view-support-systems, .view-events, .view-projects {margin-bottom: 40px;}


html.js fieldset.collapsible .fieldset-legend{background: none; padding:0;}
legend{
	background-color:#f2f2f2;
  margin: 15px 0;
  padding:10px;
  font-size: 13pt;
  color:#666;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
  legend a:after {
    content: '\e60b';
    font-family: 'icomoon';
    speak: none;
    font-size: 18pt;
    color:orange;
    float:right;
    color: #EA492B;
  } 
.view-events fieldset, .view-projects fieldset, .view-vehicles fieldset, .view-support-systems fieldset{ margin:0; padding:0;}
.view-projects a, .view-events a, .view-vehicles a,  .view-support-systems a{ color:#666;text-decoration: none;}
.fieldset-wrapper{ 
    padding:20px;
    border-bottom: 1px solid #ccc;
    float:left;
    max-width: 1024px;
}
.captcha .fieldset-wrapper {padding: 5px;}
.fieldset-wrapper a {color:#3C92B3;}
.views-field-field-project-logo, .views-field-field-event-logo, .view-vehicles .views-field-field-picture, .view-support-systems .views-field-field-picture {
  float:left;
  padding: 4px;
  background-color: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center
}

.views-field-field-project-url a, .views-field-field-event-url a { color:#EA492B; display: block;}
.views-field-field-project-end, .views-field-field-event-date { color:#666;}
.views-field-field-event-description p{margin: 0px 0px 1em;}

 .view-vehicles .views-field-field-fleet, .view-support-systems .views-field-field-fleet { color:#3C92B3; font-style: 700;}

 /*-----------------Publications-----------*/
  .page-publications #content { max-width: 1064px; margin: auto; padding: 30px 20px;}
  .page-publications h1#page-title {display:none;}

    #biblio-header {color:#999;}
  }
  #biblio-header a {color:#EA492B; padding: 0 5px;}
  #biblio-header a.active .active {background-color:#d4d4d4; }
  .biblio-separator-bar {background-color: #f2f2f2;
  padding: 5px 10px;
  font-size: 10pt;
  color: #666;
  border: 1px solid #ccc;}

.biblio-entry{padding: 0 10px;}
.biblio-title {color:#336599}
.biblio-title:hover {color:#EA492B;}
#block-menu-menu-publications {float:right;}
#block-menu-menu-publications li {list-style: none;}
.biblio-current-filters {padding: 5px 10px; margin: 10px 0; background-color: #D6EBFF; color: #777;}
.biblio-current-filters strong {color:#666; padding: 0 3px;}
#biblio-header .biblio-current-filters a {color:#336599}
.node-type-biblio h1#page-title {font-size: 16pt;}
}
 


/*-----------Team-----------------------------*/
.page-node-430 #content { max-width: 1064px; margin: auto; padding: 10px 20px;}
  .page-node-430 h1#page-title {display:none;}

 #block-views-lsts-team-block-1 h2.block-title, #block-views-lsts-team-block-2 h2.block-title,
 #block-views-lsts-team-block-3 h2.block-title,
 #block-views-lsts-team-block-4 h2.block-title,
 #block-views-lsts-team-block-5 h2.block-title,
 #block-views-lsts-team-block-6 h2.block-title
  {
  color: #808080;
  font-size: 14pt;
  border:0;
  padding:0;
  margin-bottom: 10px;
  color: #666;
 }

.page-team #main-content {padding: 0 20px;}
.view-team .views-row, .view-lsts-team .views-row{
  border-radius: 3px;
  border: 1px solid rgba(31, 40, 49, 0.2);
  text-align: center;
  display:inline-block;
  overflow:hidden;
  position:relative;
}

.view-team .group-left, .view-lsts-team .group-left{
  width:100%;
  height:290px;
  position:relative;
}
.view-lsts-team .view-mode-teaser .group-left img{
  padding: 0;
  background-color: #FFF;
  border: 0;
  box-shadow:0;
}
.view-team .group-right, .view-lsts-team .group-right{
  width:100%;
  position:absolute;
  bottom:-3px;
  background-color:rgba(255, 255, 255, 1);
   border-top: 1px solid rgba(31, 40, 49, 0.2);
}
.view-team .group-right:hover{background-color:rgba(255, 255, 255, 0.8)}
.view-lsts-team .group-right:hover{background-color:rgba(255, 255, 255, 1)}

  .view-team .group-right .field-name-field-member-social-networks { display:none;}

  .view-team .group-right:hover .field-name-field-member-social-networks {display:block;}

   .view-team .field-items, .view-lsts-team .field-items {margin:0; padding:0;}

  .view-team h2, .view-lsts-team h2 {font-size: 12pt;
    color:#3C92B3;
     padding:5px;
     line-height:9pt;
     margin: 5px 0 0 0;
  }

    .view-team .field-name-field-function, .view-lsts-team .field-name-field-function {
      font-size: 9pt;
    color:#333;
    padding: 0 5px;
     margin-bottom: 5px;
    }
    .view-team .field-name-field-member-social-networks{margin: 0 2px 5px;}

.view-team .field-name-field-member-social-networks .icon{font-size: 11.5pt;}
.view-team .group-right ul{text-align:center;}
.view-team .group-right i{
  text-rendering: optimizelegibility;
  display:inline-block;
  padding: 3px;
  opacity:0.7;
}
.view-team .group-right i:hover {opacity:1;}

.node-type-member #main-content-header {background-color: #1F2831; padding: 20px; color:#fff;}
.node-type-member #main-content-header h1#page-title,.node-type-member  #content {max-width: 1064px; margin:auto;}
.node-type-member #main-content-header { margin-bottom: 30px;}

/* ---------------- Join Us -------------------------*/

label {font-weight:300; color:#666;}
input, textarea{border:1px solid #ccc;}
.form-text, .form-file {padding:5px;}
.form-submit{padding: 5px 10px;}
.form-actions input.button-primary{padding: 5px 15px; background: #3C92B3; color:#fff;}
#edit-submitted-cv-upload{margin-right: 5px;}

.view-join-us fieldset { margin:0; padding:0; border:0; background-color: #f4f4f4; font-size: 90%}
.view-join-us .fieldset-description {font-size: 88%}
.view-join-us legend {margin:0; padding-right: 10px; font-size: 10pt; text-transform: lowercase; border-top:0; background-color: #fff;}

/*-----------Toolchain, Vehicles and Support Systems-----------*/

.region-highlighted .view-mode-lsts__highlighted { float: left;}
.region-highlighted .node {margin-bottom:0;  padding: 0 0 0 20px; width:35%;}
.region-highlighted .view-mode-lsts__highlighted .group-left { box-sizing: border-box; width: 15%; margin: 0.9em 0; float:left; }
.region-highlighted .view-mode-lsts__highlighted .group-left img { width: 99%; height: auto;}
.region-highlighted .view-mode-lsts__highlighted .group-right { box-sizing: border-box; float:left; margin: 1em 0;}

.node-type-toolchain-item .region-highlighted .view-mode-lsts__highlighted .group-right { width:74%;
   margin: 1em 0 1em 1.2em;
   -webkit-margin-before: 1em;
    -webkit-margin-after: 0.9em;
    -webkit-margin-start: 1em;
    -webkit-margin-end: 0.9em;
}

.region-highlighted .view-mode-lsts__highlighted .group-right .field-name-title {width:100%;}
.region-highlighted .view-mode-lsts__highlighted .field-name-field-extended-name {color:#3C92B3;font-weight: 600; margin-bottom:0;}
.region-highlighted .view-mode-lsts__highlighted .field-name-field-extended-name p{margin-bottom: 0;} 

.view-toolchain .views-row {margin: 7px 0 5px 0; border-bottom: 1px solid #ddd;}

.node-toolchain-item {margin-bottom: 2px;}
.node-type-toolchain-item #page-title, .node-type-vehicle #page-title, .node-type-support-system #page-title {display:none;}
.node-type-toolchain-item .item_topslider, .node-type-vehicle .item_topslider, .node-type-support-system .item_topslider  {background-color: #f2f2f2; width:100%; padding: 0; margin:0; box-shadow: inset 0 1rem 1rem -1rem rgba(0, 0, 0, 0.1), inset 0 -1rem 1rem -1rem rgba(0, 0, 0, 0.1);}
.node-type-toolchain-item .top-content, .node-type-vehicle .top-content, .node-type-support-system .top-content{max-width: 1064px; margin:auto; padding: 30px 20px;}
.node-type-toolchain-item .field-name-field-main-gallery, .node-type-vehicle .field-name-field-main-gallery, .node-type-support-system .field-name-field-main-gallery { float:left; }
.node-type-toolchain-item .field-name-field-main-gallery img, .node-type-vehicle .field-name-field-main-gallery img, .node-type-support-system .field-name-field-main-gallery img{background-color: #fff; border: 1px solid #ddd; padding: 5px;}
.node-type-vehicle .field-name-field-fleet h2::after, .node-type-support-system .field-name-field-fleet h2::after {content: " :";}
.node-type-vehicle .field-name-field-fleet, .node-type-support-system .field-name-field-fleet{color:#3C92B3;}
.node-type-vehicle .field-name-field-fleet .field-label, .node-type-support-system .field-name-field-fleet .field-label {margin-right: 5px;}
.view-vehicles .views-field-field-extended-name, .view-support-systems .views-field-field-extended-name, .view-toolchain .views-field-field-extended-name {color: #666;}
.view-vehicles .views-field-field-extended-name a, .view-support-systems .views-field-field-extended-name a, .view-toolchain .views-field-title a{font-size: 125%; font-weight: 600; color:#EA492B;}

.node-type-toolchain-item .bottom-content, .node-type-vehicle .bottom-content, .node-type-support-system  .bottom-content{max-width: 1064px; margin:auto; padding: 30px 20px;}
.node-type-toolchain-item .bottom-content .field-label, .node-type-vehicle .bottom-content .field-label, .node-type-support-system .bottom-content .field-label{
	font-size: 1.5em;
	width: 100%;
	border-bottom: 1px solid #ccc;
	padding-bottom: 15px;
	color: #333;}

.field-name-field-end-notes{
  color:#666;
  font-size: 0.95em;
}
.node-type-toolchain-item .field-name-field-feature-title div, .node-type-vehicle .field-name-field-feature-title div, .node-type-support-system .field-name-field-feature-title div {
	font-size: 1.1em;
	font-weight: bold;
	color:#EA492B;}

  .views-field-field-highlights ul {margin:0;}
.views-field-field-highlights ul li{ list-style: none; display: inline-block; background-color: rgba(60, 146, 179, 0.8);   color: #ffffff;
  border-radius: 2px; margin: 10px 5px 10px 0; padding:3px 10px;}

  /* Feature columns*/
.field-name-field-features .item-list, .field-name-field-features-gallery .item-list {margin: 15px 10px;}
.field-name-field-features list {/* margin: 0 auto;*/ }
.field-name-field-features li, .field-name-field-features-gallery li{ display: inline-block; vertical-align: top; text-align: left;}

.node-type-toolchain-item .field-collection-view, .node-type-vehicle .field-collection-view, .node-type-support-system .field-collection-view{border:0; padding:0; margin:0;}

.node-type-toolchain-item tr.even, .node-type-vehicle tr.even, .node-type-support-system  tr.even {background-color:#fff;}
.node-type-toolchain-item td, .node-type-vehicle td, .node-type-support-system td {vertical-align: top;}
.node-type-toolchain-item table, .node-type-toolchain-item tbody tr, .node-type-toolchain-item .field-collection-container, .node-type-vehicle table, .node-type-vehicle tbody tr, .node-type-vehicle .field-collection-container, .node-type-toolchain-item tbody, .node-type-vehicle tbody, .node-type-support-system table, .node-type-support-system tbody tr, .node-type-support-system .field-collection-container, .node-type-support-system tbody {border:0;}

.node-type-toolchain-item th, .node-type-vehicle th, .node-type-support-system th {vertical-align: top; color:#EA492B; font-size: 105%; border:0;}
.node-type-toolchain-item th p, .node-type-vehicle th p, .node-type-support-system th p {font-weight: 700;}

.tablefield-wrapper {margin-bottom: 30px}

.node-type-toolchain-item .field-collection-container, .node-type-vehicle .field-collection-container, .node-type-support-system .field-collection-container  {margin-top: 20px;}
.field-name-field-feature-image {text-align: center;}
.field-name-field-image-info {font-size: 95%; color:#666;}

.page-node-40 h1#page-title {display: none;}
#block-views-vehicles-block, #block-views-support-systems-block {max-width: 1064px; margin:auto; margin-top: 30px;}

.node-type-vehicle .field-name-field-specifications tr, .node-type-support-system .field-name-field-specifications tr {border: 1px solid #ddd; padding: 15px;}
.node-type-vehicle .field-name-field-specifications tr p, .node-type-support-system .field-name-field-specifications tr p{margin:0;}
.node-type-vehicle .field-name-field-specifications tr.odd, .node-type-support-system .field-name-field-specifications tr.odd  {background-color: #eee;}
.node-type-vehicle .field-name-field-specifications tr .even, .node-type-support-system .field-name-field-specifications tr .even  {background-color: #eaf;}
.node-type-vehicle .field-name-field-specifications td.col_0, .node-type-support-system .field-name-field-specifications td.col_0 {width: 25%; border-right: 1px solid #ddd;}
.node-type-vehicle .field-name-field-specifications td.col_0 p, .node-type-support-system .field-name-field-specifications td.col_0 p {font-weight: bold; color:#333;}
.node-type-vehicle .field-name-field-specifications .field-items, .node-type-support-system .field-name-field-specifications .field-items {margin-top: 20px; font-size: 102%}
.node-type-vehicle .field-name-field-extended-description, .node-type-support-system .field-name-field-extended-description {/*margin-top: 30px;*/}
.node-type-vehicle .field-name-field-extended-description .field-items, .node-type-support-system .field-name-field-extended-description .field-items, .node-type-toolchain-item .field-name-field-extended-description .field-items{margin-top: 15px;}

.node-type-vehicle .field-collection-view .field-name-field-feature-image .field-item, .node-type-support-system .field-collection-view .field-name-field-feature-image .field-item{margin:0;}
.node-type-vehicle .field-collection-view .field-name-field-image-info, .node-type-support-system .field-collection-view .field-name-field-image-info {padding: 0 20px;}

.field-name-field-videos .field-item{ 
  width:48%;
  margin: 1%; 
  float:left;
}
.field-name-field-videos iframe {
  width:100%;
}
/*----------Toolchain Documentation----------*/
.field-name-field-documentation { float:right; margin: 10px 10px 20px 0;}
.field-name-field-source {float: right; margin:10px 10px 20px 0;}
.field-name-field-releases{ float: right; margin:10px 0 20px 0;}
.field-name-field-documentation a, .field-name-field-source a, .field-name-field-releases a{
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #29637a #29637a #163540;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: center;
  cursor: pointer;
  border-radius: 3px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 5px 10px;
}
.field-name-field-documentation a { background-color: #347f9c;}
.field-name-field-source a {background-color: #b62c12;}
.field-name-field-releases a{background-color: #faa732;}
.field-name-field-documentation a:hover, .field-name-field-source a:hover, .field-name-field-releases a:hover {text-decoration: none;}
.field-name-field-documentation a:hover { background-color: #1F4C5E;}
.field-name-field-source a:hover {background-color: #7F1F0D;}
.field-name-field-releases a:hover{background-color: #AF7523;}

/*------------Location--------*/
.view-location .views-row  {margin-top: 30px;}

/*-------Admin_Sorting Pages-----*/
.page-sort-vehicles #main-content-header, .page-sort-support-systems #main-content-header, .page-sort-toolchain #main-content-header, .page-sort-funding #main-content-header {background-color: #1f2831;
color: #fff;}
.page-sort-vehicles h1#page-title, .page-sort-support-systems h1#page-title, .page-sort-toolchain h1#page-title, .page-sort-funding h1#page-title {max-width: 1064px; padding: 20px; margin:auto;}
.page-sort-vehicles #content, .page-sort-support-systems #content, .page-sort-toolchain #content, .page-sort-funding #content{max-width: 1064px; padding: 0 20px; margin:auto;}

/*-------Node Type Pages-------------*/

.node-type-project #main-content-header, .node-type-event  #main-content-header, .node-type-funding #main-content-header, .node-type-about #main-content-header, .node-type-contact #main-content-header, .node-type-home-slider #main-content-header, .node-type-join-us #main-content-header, .node-type-quick-link #main-content-header, .node-type-social-network-link #main-content-header, .node-type-biblio #main-content-header, .node-type-location-and-details #main-content-header, .page-location #main-content-header{ background-color: #1f2831; color: #fff;}
.node-type-join-us #main-content-header{ background-color: #fff; color: #1f2831;}

.node-type-project h1#page-title, .node-type-event  h1#page-title, .node-type-funding h1#page-title, .node-type-about h1#page-title, .node-type-contact h1#page-title, .node-type-home-slider h1#page-title, .node-type-join-us h1#page-title, .node-type-quick-link h1#page-title, .node-type-social-network-link h1#page-title, .node-type-biblio h1#page-title, .node-type-location-and-details h1#page-title, .page-location h1#page-title{max-width: 1064px; padding: 20px; margin:auto; line-height: 1.2em}

.node-type-project #content, .node-type-event  #content, .node-type-funding #content, .node-type-about  #content, .node-type-contact #content, .node-type-home-slider #content, .node-type-join-us #content, .node-type-quick-link #content, .node-type-social-network-link #content, .node-type-biblio #content, .page-node-done #content, .page-node-submissions #content, .node-type-location-and-details #content, .page-location #content{max-width: 1064px; padding: 0 20px; margin:auto;}
.page-node-done #block-system-main { margin: 30px 0; padding: 0 20px;}
.page-node-done h1#page-title {display: none;}

.page-node-submissions h1#page-title {max-width: 1064px; padding: 30px 20px; margin:auto; font-size: 16pt;}
.page-node-submissions #content {padding-bottom: 30px;}

.node-type-event .group-left, .node-type-project .group-left {float:left;
  padding: 4px;
  background-color: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center}
  
.node-type-event .field-name-field-event-date, .node-type-project .field-name-field-project-end{ color:#666; margin-bottom:10px;}
.node-type-project .field-name-field-project-start{color:#666;}
.node-type-project .field-name-field-project-start:after {content:" to "; color:#666}

.node-type-event .field-name-field-event-description a, .node-type-project .field-name-field-project-description a{color: #3C92B3;}
.node-type-event .field-name-field-event-url a, .node-type-project .field-name-field-project-url a{ color:#EA492B; display: block;}

.node-type-home-slider .field-name-field-hs-picture { text-align: center;}
.node-type-home-slider .field-name-field-hs-description { padding: 10px 20px 5px;
    text-align: center;
    font-size: 12pt;
    font-weight: 600;
    color: #666;
}
.node-type-member .group-right .field-type-social-links-field a{display:block;}
.node-type-member .social-links ul, .node-type-social-network-link .social-links ul{overflow: visible;}
.node-type-member  .social-links .icon, .node-type-social-network-link .social-links .icon {padding:4px; margin: 5px;}
.node-type-member h2 {
    font-size: 14pt;
    color: #3C92B3;
    padding: 5px;
    line-height: 9pt;
    margin-bottom: 10px;
  }

.node-type-member .field-name-field-function, .node-type-member .field-name-field-department {
    font-size: 12pt;
    color: #666;
    padding: 0px 5px;
    margin-bottom: 10px;
}

.node-type-member .field-name-field-function{
  font-size: 10pt;
}

.node-type-member .field-name-field-bio {
  padding: 0px 5px;
  margin-bottom: 30px;
}

/*---Maintainance Screen--------*/
.in-maintenance #page {max-width: 1064px; margin: auto;}
.in-maintenance #header {width: 40%;}
.in-maintenance #main-content {width: 98%; text-align: center; margin: 30px 0 0 0;}
.in-maintenance #content { margin-top: 20px;}


/*------Page not Found--------*/
.node-type-custom-page #main-content-header{background-color: #1f2831;color: #fff;}
.node-type-custom-page h1#page-title{max-width: 1064px; padding: 20px; margin:auto; line-height: 1.2em;}
.node-type-custom-page #content{max-width: 1064px; padding: 30px 20px; margin:auto; text-align: center;}
.node-type-custom-page .field-name-field-cp-info {font-size: 14pt; margin-top: 30px;}
