/*!
Theme Name: connect
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: connect
Domain Path: /languages/
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

connect is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
	10.2 - Asides
	10.3 - Comments
11.0 - Infinite scroll
12.0 - Media
	12.1 - Captions
	12.2 - Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/
/* line 59, scss/_reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

/* line 70, scss/_reset.scss */
html {
  font-size: 62.5%;
  /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  overflow-y: scroll;
  /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%;
  /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

/* line 78, scss/_reset.scss */
*,
*:before,
*:after {
  /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
  -webkit-box-sizing: border-box;
  /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
  -moz-box-sizing: border-box;
  /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
  box-sizing: border-box;
}

/* line 83, scss/_reset.scss */
body {
  background: #fff;
}

/* line 95, scss/_reset.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

/* line 98, scss/_reset.scss */
ol, ul {
  list-style: none;
}

/* line 101, scss/_reset.scss */
table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0;
}

/* line 105, scss/_reset.scss */
caption, th, td {
  font-weight: normal;
  text-align: left;
}

/* line 110, scss/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

/* line 113, scss/_reset.scss */
blockquote, q {
  quotes: "" "";
}

/* line 116, scss/_reset.scss */
a:focus {
  outline: thin dotted;
}

/* line 120, scss/_reset.scss */
a:hover,
a:active {
  outline: 0;
}

/* line 123, scss/_reset.scss */
a img {
  border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
/* line 134, scss/_reset.scss */
body,
button,
input,
select,
textarea {
  color: #404040;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

/* line 141, scss/_reset.scss */
h1, h2, h3, h4, h5, h6 {
  clear: both;
}

/* line 144, scss/_reset.scss */
p {
  margin-bottom: 1.5em;
}

/* line 147, scss/_reset.scss */
b, strong {
  font-weight: bold;
}

/* line 150, scss/_reset.scss */
dfn, cite, em, i {
  font-style: italic;
}

/* line 153, scss/_reset.scss */
blockquote {
  margin: 0 1.5em;
}

/* line 156, scss/_reset.scss */
address {
  margin: 0 0 1.5em;
}

/* line 159, scss/_reset.scss */
pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

/* line 170, scss/_reset.scss */
code, kbd, tt, var {
  font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

/* line 173, scss/_reset.scss */
abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

/* line 177, scss/_reset.scss */
mark, ins {
  background: #fff9c0;
  text-decoration: none;
}

/* line 182, scss/_reset.scss */
sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 189, scss/_reset.scss */
sup {
  bottom: 1ex;
}

/* line 192, scss/_reset.scss */
sub {
  top: .5ex;
}

/* line 195, scss/_reset.scss */
small {
  font-size: 75%;
}

/* line 198, scss/_reset.scss */
big {
  font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
/* line 205, scss/_reset.scss */
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

/* line 211, scss/_reset.scss */
ul, ol {
  margin: 0 0 1.5em 3em;
}

/* line 214, scss/_reset.scss */
ul {
  list-style: disc;
}

/* line 217, scss/_reset.scss */
ol {
  list-style: decimal;
}

/* line 221, scss/_reset.scss */
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

/* line 225, scss/_reset.scss */
dt {
  font-weight: bold;
}

/* line 228, scss/_reset.scss */
dd {
  margin: 0 1.5em 1.5em;
}

/* line 231, scss/_reset.scss */
img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

/* line 235, scss/_reset.scss */
figure {
  margin: 0;
}

/* line 238, scss/_reset.scss */
table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* line 242, scss/_reset.scss */
th {
  font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
/* line 252, scss/_reset.scss */
button,
input,
select,
textarea {
  font-size: 100%;
  /* Corrects font size not being inherited in all browsers */
  margin: 0;
  /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  vertical-align: baseline;
  /* Improves appearance and consistency in all browsers */
  *vertical-align: middle;
  /* Improves appearance and consistency in IE6/IE7 */
}

/* line 261, scss/_reset.scss */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid #ccc;
  border-color: #ccc #ccc #bbb #ccc;
  border-radius: 3px;
  background: #e6e6e6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  /* Improves usability and consistency of cursor style between image-type 'input' and others */
  -webkit-appearance: button;
  /* Corrects inability to style clickable 'input' types in iOS */
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  padding: .6em 1em .4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* line 279, scss/_reset.scss */
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa #bbb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

/* line 290, scss/_reset.scss */
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #aaa #bbb #bbb #bbb;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* line 295, scss/_reset.scss */
input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  /* Addresses excess padding in IE8/9 */
}

/* line 298, scss/_reset.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* Addresses appearance set to searchfield in S5, Chrome */
  -webkit-box-sizing: content-box;
  /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 304, scss/_reset.scss */
input[type="search"]::-webkit-search-decoration {
  /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
  -webkit-appearance: none;
}

/* line 308, scss/_reset.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
  border: 0;
  padding: 0;
}

/* line 317, scss/_reset.scss */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
}

/* line 327, scss/_reset.scss */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  color: #111;
}

/* line 334, scss/_reset.scss */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
  padding: 3px;
}

/* line 337, scss/_reset.scss */
textarea {
  overflow: auto;
  /* Removes default vertical scrollbar in IE6/7/8/9 */
  padding-left: 3px;
  vertical-align: top;
  /* Improves readability and alignment in all browsers */
  width: 98%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
/* line 350, scss/_reset.scss */
a {
  color: royalblue;
}

/* line 353, scss/_reset.scss */
a:visited {
  color: purple;
}

/* line 358, scss/_reset.scss */
a:hover,
a:focus,
a:active {
  color: midnightblue;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
/* line 365, scss/_reset.scss */
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}

/* line 371, scss/_reset.scss */
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* line 376, scss/_reset.scss */
.main-navigation li {
  float: left;
  position: relative;
}

/* line 380, scss/_reset.scss */
.main-navigation a {
  display: block;
  text-decoration: none;
}

/* line 384, scss/_reset.scss */
.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  display: none;
  float: left;
  left: 0;
  position: absolute;
  top: 1.5em;
  z-index: 99999;
}

/* line 393, scss/_reset.scss */
.main-navigation ul ul ul {
  left: 100%;
  top: 0;
}

/* line 397, scss/_reset.scss */
.main-navigation ul ul a {
  width: 200px;
}

/* line 408, scss/_reset.scss */
.main-navigation ul li:hover > ul {
  display: block;
}

/* Small menu */
/* line 415, scss/_reset.scss */
.menu-toggle {
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 600px) {
  /* line 421, scss/_reset.scss */
  /*.menu-toggle,
  .main-navigation.toggled .nav-menu {
    display: block;
  }*/

  /* line 425, scss/_reset.scss */
  /*.main-navigation ul {
    display: none;
  }*/
}
/* line 431, scss/_reset.scss */
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

/* line 437, scss/_reset.scss */
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

/* line 443, scss/_reset.scss */
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
/* line 453, scss/_reset.scss */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}

/* line 460, scss/_reset.scss */
.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
/* line 482, scss/_reset.scss */
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

/* line 487, scss/_reset.scss */
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

/* line 492, scss/_reset.scss */
.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
/* line 512, scss/_reset.scss */
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: '';
  display: table;
}

/* line 522, scss/_reset.scss */
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
/* line 529, scss/_reset.scss */
.widget {
  margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
/* line 534, scss/_reset.scss */
.widget select {
  max-width: 100%;
}

/* Search widget */
/* line 539, scss/_reset.scss */
.widget_search .search-submit {
  display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
/* line 551, scss/_reset.scss */
.hentry {
  margin: 0 0 1.5em;
}

/* line 555, scss/_reset.scss */
.byline,
.updated {
  display: none;
}

/* line 559, scss/_reset.scss */
.single .byline,
.group-blog .byline {
  display: inline;
}

/* line 564, scss/_reset.scss */
.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

/* line 567, scss/_reset.scss */
.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
/* line 576, scss/_reset.scss */
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
/* line 583, scss/_reset.scss */
.comment-content a {
  word-wrap: break-word;
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
/* line 594, scss/_reset.scss */
.infinite-scroll .paging-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
/* line 598, scss/_reset.scss */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
/* line 607, scss/_reset.scss */
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers */
/* line 616, scss/_reset.scss */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
/* line 623, scss/_reset.scss */
.wp-caption {
  border: 1px solid #ccc;
  margin-bottom: 1.5em;
  max-width: 100%;
}

/* line 628, scss/_reset.scss */
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 1.2% auto 0;
  max-width: 98%;
}

/* line 633, scss/_reset.scss */
.wp-caption-text {
  text-align: center;
}

/* line 636, scss/_reset.scss */
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
/* line 643, scss/_reset.scss */
.gallery {
  margin-bottom: 1.5em;
}

/* line 646, scss/_reset.scss */
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

/* line 652, scss/_reset.scss */
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

/* line 655, scss/_reset.scss */
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

/* line 658, scss/_reset.scss */
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

/* line 661, scss/_reset.scss */
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

/* line 664, scss/_reset.scss */
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

/* line 667, scss/_reset.scss */
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

/* line 670, scss/_reset.scss */
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

/* line 673, scss/_reset.scss */
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

/* MEDIA QUERY VALUES */
/* MEDIA QUERY VALUES END */
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on April 19, 2014 */
@font-face {
  font-family: 'kokila';
  src: url("fonts/kokila-webfont.eot");
  src: url("fonts/kokila-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/kokila-webfont.woff") format("woff"), url("fonts/kokila-webfont.ttf") format("truetype"), url("fonts/kokila-webfont.svg#kokilaregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* line 1, scss/_base.scss */
* {
  box-sizing: border-box;
}

/* line 5, scss/_base.scss */
html, body {
  height: 100%;
}

header, nav, section, article, aside, footer {
	display: block;
}

/* line 9, scss/_base.scss */
a:link, a:visited {
  color: #5c9abf;
  text-decoration: none;
}

/* line 13, scss/_base.scss */
a:hover, a:active {
  color: #315e79;
  text-decoration: none;
}

/* line 17, scss/_base.scss */
body {
  background: url("images/background.jpg") repeat;
}

/* line 21, scss/_base.scss */
p {
  font-family: helvetica, arial, sans-serif;
  font-size: 14px;
  line-height: 25px;
}

li {
    font-family: helvetica, arial, sans-serif;
    font-size: 14px;
}

/* line 27, scss/_base.scss */
header#masthead {
  width: 100%;
  height: 146px;
  background: white;
  overflow: auto;
}

/* line 34, scss/_base.scss */
#page {
  height: 100%;
}

/* line 38, scss/_base.scss */
#content {
  margin: 0 auto -370px auto;
  padding: 0 10px 0 10px;
  width: 960px;
  min-height: 100%;
  background: white;
  overflow: auto;
}

/* line 47, scss/_base.scss */
#content:after {
  content: "";
  display: block;
  height: 370px;
}

/* line 53, scss/_base.scss */
.metaslider {
  margin: 0 0 30px 0;
}

.profile-container {
  float: left;
  margin-bottom: 50px;
  width: 100%;
}

.left-side-profile {
  float: left;
  margin-right: 30px;
  width: 280px;
}

.right-side-profile {
  float: left;
  width: calc(100% - 310px);
}

.right-side-profile h2 {
  font-size: 30px;
  font-weight: bold;
}

.page-template-people-landing-php header.entry-header {
  margin-bottom: 40px;
}

.page-template-people-landing-php h1 {
    padding-bottom: 10px;
    color: #5c9abf;
    background: url("images/blue-underline.jpg") no-repeat 0 100%;
    font-family: helvetica, arial, sans-serif;
    font-size: 44px;
    font-weight: bold;
    line-height: 44px;
}

/* line 57, scss/_base.scss */
nav {
  width: 100%;
  height: 60px;
  background: #5c9abf;
}

/* line 63, scss/_base.scss */
footer#colophon {
  width: 100%;
  height: 640px;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #5c9abf), color-stop(100%, #315e79));
  background-image: -webkit-linear-gradient(#5c9abf, #315e79);
  background-image: -moz-linear-gradient(#5c9abf, #315e79);
  background-image: -o-linear-gradient(#5c9abf, #315e79);
  background-image: linear-gradient(#5c9abf, #315e79);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#5c9abf', EndColorStr='#315e79'); /* IE8 */
  overflow: auto;
}

/* line 2, scss/_menus.scss */
nav #nav-inside {
  margin: 0 auto 0 auto;
  width: 960px;
  height: 60px;
}
/* line 7, scss/_menus.scss */
nav #nav-inside ul {
  margin: 0 auto 0 auto;
  padding: 0;
  height: 60px;
  list-style: none;
  text-align: center;
}

nav #nav-inside ul ul {
  margin: 25px 0 0 0;
  padding: 15px 0 0 0;
  height: auto;
  background: #5c9abf;
  list-style: none;
  text-align: center;
}
/* line 15, scss/_menus.scss */
nav #nav-inside li {
  display: inline-block;
  width: 240px;
  height: 60px;
  font-size: 20px;
  line-height: 20px;
  vertical-align: middle;
}
/* line 23, scss/_menus.scss */
nav #nav-inside a:link, nav #nav-inside a:visited {
  display: inline-block;
  padding: 20px;
  color: white;
  font-family: helvetica, arial, sans-serif;
  font-size:16px;
  line-height: 16px;
  vertical-align: middle;
}
/* line 33, scss/_menus.scss */
nav #nav-inside a:hover, nav #nav-inside a:active {
  display: inline-block;
  padding: 20px;
  color: #dedede;
  font-family: helvetica, arial, sans-serif;
  font-size: 18px;
  line-height: 18px;
  vertical-align: middle;
}

/* line 2, scss/modules/_header.scss */
header .site-branding {
  margin: 0 auto 0 auto;
  width: 960px;
  height: 146px;
}
/* line 8, scss/modules/_header.scss */
header h1.site-title {
  margin: 0 0 0 40px;
  float: left;
}
/* line 13, scss/modules/_header.scss */
header #header-globe {
  float: right;
}
/* line 17, scss/modules/_header.scss */
header img {
  display: block;
}

/* line 2, scss/modules/_page.scss */
article h1.entry-title {
  padding-bottom: 10px;
  color: #5c9abf;
  background: url("images/blue-underline.jpg") no-repeat 0 100%;
  font-family: helvetica, arial, sans-serif;
  font-size: 44px;
  font-weight: bold;
  line-height: 44px;
}
/* line 10, scss/modules/_page.scss */
article h2 {
  padding-bottom: 10px;
  color: #5c9abf;
  background: url("images/blue-underline.jpg") no-repeat 0 100%;
  font-family: helvetica, arial, sans-serif;
  font-size: 44px;
  font-weight: bold;
  line-height: 44px;
}

article .widget h2 {
  padding-bottom: 10px;
  color: #ffffff;
}

/* line 17, scss/modules/_page.scss */
article h2 + ul {
  margin-top: 20px;
}

article h3 {
  padding-bottom: 10px;
  color: #5c9abf;
  font-family: helvetica, arial, sans-serif;
  font-size: 20px;
  line-height: 24px;
}


/* line 21, scss/modules/_page.scss */
article p {
  width: 70%;
}

article .entry-content.with-sidebar p {
  width: 100%;
}

/* line 25, scss/modules/_page.scss */
article a.contact-us {
  font-size: 30px;
  text-decoration: none;
  vertical-align: middle;
}

footer.entry-footer {
	float: left;
}

/* line 30, scss/modules/_page.scss */
article a.contact-us img {
  vertical-align: middle;
}
/* line 35, scss/modules/_page.scss */
article input, article textarea {
  font-family: helvetica, arial, sans-serif;
}
/* line 39, scss/modules/_page.scss */
article input[type="submit"] {
  font-size: 14px;
}

.page-template-people-landing-php #content {
  padding-top: 20px;
}

#secondary {
	float: left;
	margin-left: 30px;
	padding: 20px;
  left: 0;
	width: 310px;
	background: #5c9abf;
}

#secondary h1 {
	margin-left: 15px;
	color: #ffffff;
	font-size: 30px;
	font-weight: bold;
}

#secondary ul {
	margin: 15px 0 0 15px;
}

#secondary li {
	margin-bottom: 20px;
	list-style-type: none;
}

#secondary li a:link, #secondary li a:visited{
	color: #ffffff;
}

#secondary li a:hover, #secondary li a:active {
	color: #cdcdcd;
}

footer a.link:link, footer a.link:visited {
	color: #cdcdcd;
}

footer a.link:hover, footer a.link:active {
	color: #a1a1a1;
}

/* line 2, scss/modules/_footer.scss */
footer#colophon #footer-inner {
  margin: 0 auto 0 auto;
  padding: 40px 20px 0 20px;
  width: 960px;
  color: white;
  font-family: helvetica, arial, sans-serif;
  font-size: 14px;
  overflow: auto;
}
/* line 12, scss/modules/_footer.scss */
footer#colophon .site-info {
  float: left;
}
/* line 16, scss/modules/_footer.scss */
footer#colophon nav {  margin-top: 12px;
  width: auto;
  background: transparent;
}
/* line 20, scss/modules/_footer.scss */
footer#colophon nav ul {
  margin: 0;
}
/* line 24, scss/modules/_footer.scss */
footer#colophon nav li {
  display: inline;
  font-size: 20px;
  line-height: 20px;
  vertical-align: middle;
}
/* line 31, scss/modules/_footer.scss */
footer#colophon nav a:link, footer#colophon nav a:visited {
  display: inline-block;
  padding: 0 6px 20px 6px;
  color: white;
  font-family: helvetica, arial, sans-serif;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
  vertical-align: middle;
}
/* line 41, scss/modules/_footer.scss */
footer#colophon nav a:link:first-child, footer#colophon nav a:visited:first-child {
  padding: 0 6px 20px 0;
}
/* line 46, scss/modules/_footer.scss */
footer#colophon nav a:hover, footer#colophon nav a:active {
  display: inline-block;
  padding: 0 6px 20px 6px;
  color: #dedede;
  font-family: helvetica, arial, sans-serif;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
  vertical-align: middle;
}
/* line 56, scss/modules/_footer.scss */
footer#colophon nav a:hover:first-child, footer#colophon nav a:active:first-child {
  padding: 0 6px 20px 0;
}
/* line 62, scss/modules/_footer.scss */
footer#colophon .social-links {
  float: right;
}
/* line 65, scss/modules/_footer.scss */
footer#colophon .social-links li {
  display: inline-block;
  padding: 0 6px 0 6px;
  list-style: none;
  vertical-align: middle;
}
/* line 71, scss/modules/_footer.scss */
footer#colophon .social-links li:first-child {
  padding: 0 0 0 6px;
}
/* line 75, scss/modules/_footer.scss */
footer#colophon .social-links li:last-child {
  padding: 0 6px 0 0;
}
/* line 79, scss/modules/_footer.scss */
footer#colophon .social-links li img {
  vertical-align: middle;
}

article .entry-content {
	margin-bottom: 25px;
}

article .entry-content.with-sidebar {
  float: left;
  width: 600px;
}

.home article .entry-content {
	margin-bottom: 50px;
}

article div.wpcf7-validation-errors {
	border: 0;
	border-left: 10px solid #ff0000;
	color: #333333;
}

div.wpcf7-mail-sent-ok {
	border: 0;
	border-left: 10px solid #348f3e;
	color: #333333;
}

article div.wpcf7-response-output {
	margin: 2em 0 1em 0;
	padding: 0.2em 1em;
	font-family: helvetica, arial, sans-serif;
	font-size: 14px;
}
article .wpcf7-form-control-wrap.message {
	display: block !important;
}.visibly-hidden {	visibility: hidden;}

.metaslider {
  height: 400px;
}

@media only screen and (max-width: 959px) and (min-width: 768px) {
	header .site-branding {
		width: 728px;
	}
	
	nav #nav-inside {
		width: 728px;
	}
	nav #nav-inside li {
		width: 180px;
	}
	
	nav #nav-inside a:hover, nav #nav-inside a:active {
		font-size: 24px;
	}
	
	.main-navigation ul ul a {
		width: 180px;
	}
	
	#content {
		margin: 0 auto -370px auto;
		width: 728px;
	}
	
	footer#colophon #footer-inner {
		width: 728px;
	}
	
	/* line 23, scss/_menus.scss */
	nav #nav-inside a:link, nav #nav-inside a:visited  {
	  font-size: 14px;
	  line-height: 14px;
	}
	/* line 33, scss/_menus.scss */
	nav #nav-inside a:hover, nav #nav-inside a:active {
	  font-size: 14px;
	  line-height: 14px;
	}

  #secondary {
    margin-bottom: 40px;
  }

  .metaslider {
    height: 301px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 480px) {
	header .site-branding {
		width: 440px;
		height: 120px;
	}
	
	header#masthead {
		height: 120px;
	}
	
	header h1.site-title {
		width: 200px;
	}
	
	#header-globe {
		width: 120px;
	}
	
	nav #nav-inside {
		width: 440px;
	}
	
	nav #nav-inside li {
		width: 110px;
	}
	
	.main-navigation ul ul a {
		width: 110px;
	}
	
	#content {
		margin: 0 auto -370px auto;
		width: 440px;
	}
	
	footer#colophon #footer-inner {
		width: 440px;
		width: 440px;
	}
	
	article h1.entry-title {
		font-size: 30px;
		line-height: 30px;
	}
	
	article p {
		width: 100%;
	}
	
	nav #nav-inside a:link, nav #nav-inside a:visited  {
	  padding: 20px 5px;
	  font-size: 14px;
	  line-height: 14px;
	}
	
	nav #nav-inside a:hover, nav #nav-inside a:active {
	  padding: 20px 5px;
	  font-size: 14px;
	  line-height: 14px;
	}

  .metaslider {
    height: 179px;
  }
}

@media only screen and (max-width: 479px) and (min-width: 320px) {
	header .site-branding {
		width: 280px;
		height: 100px;
	}
	
	header#masthead {
		height: 100px;
	}
	
	header h1.site-title {
		margin: 0 auto 0 auto;
		float: none;
		width: 200px;
	}
	
	#header-globe {
		display: none;
	}
	
	nav #nav-inside {
		width: 280px;
	}
	
	#content {
		margin: 0 auto -370px auto;
		width: 280px;
	}
	
	footer#colophon #footer-inner {
		width: 280px;
	}
	
	article h1.entry-title {
		font-size: 30px;
		line-height: 30px;
	}
	
	article p {
		width: 100%;
	}
	
	nav #nav-inside a:link, nav #nav-inside a:visited  {
	  padding: 20px 5px;
	  font-size: 14px;
	  line-height: 14px;
	}
	
	nav #nav-inside a:hover, nav #nav-inside a:active {
	  padding: 20px 5px;
	  font-size: 14px;
	  line-height: 14px;
	}
	
	.main-navigation ul {
		display: block;
	}

  #secondary {
    float: left;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    padding: 20px 10px 20px 10px;
    left: -10px;
    width: 280px;
    background: #5c9abf;
  }

  article .entry-content.with-sidebar {
    width: 100%;
  }

  article .entry-content img {
    width: 100%;
  }

  .left-side-profile {
    margin: 0 auto 0 auto;
    width: 100%;
  }

  .right-side-profile {
    margin: 0 auto 0 auto;
    width: 100%;
  }

  footer#colophon {
    width: 100%;
    height: 470px;
  }

  #footer-inner ul {
    margin-left: 0;
  }

  footer#colophon .social-links {
    width: 100%;
  }

  footer#colophon .social-links li:first-child {
    padding: 0;
  }

  .metaslider {
    height: 111px;
  }

  nav#site-navigation {
    height: 240px;
  }
}

.footer-addresses {
	clear: both;
}

.footer-address {
	float: left;
}

.footer-accreditation {
	float: left;
	clear: both;
}

.footer-accreditation img {
	margin-bottom: 20px;
	width: 150px;
}

.footer-copyright {
	clear: both;
}

@media (min-width: 768px) {
	.footer-address + .footer-address {
		margin-left: 50px;
	}
}

@media (max-width: 767px) {
	footer#colophon .social-links {
		float: left !important;
	}

	.social-links ul {
		margin-left: 0;
	}

	.social-links ul li:first-child {
		padding-left: 0 !important;
	}

	.footer-address + .footer-address {
		clear: both;
	}
}