/*
Theme Name: Lucidica
Description: Custom theme for Lucidica Website.
Version: 1.0
Text Domain: lucidica
*/

/* ----------------------------------------------------------------------------------------------

TABLE OF CONTENTS:

1.0 - Reset

2.0 - Repeatable Patterns

3.0 - Basic Structure

4.0 - Header
  4.1 - Site Header
  4.2 - Navigation
  4.3 - Quick Contact Links
  4.4 - Social Media Links

5.0 - Content
  5.1 - Entry Header
  5.2 - Entry Meta
  5.3 - Entry Content
  5.4 - Post Formats
  5.5 - Post/Paging Navigation
  5.6 - Author Bio
  5.7 - Archives
  5.8 - Search Results/No posts
  5.9 - 404 Not Found
  5.10 - Home Page Slideshow
  5.11 - Home Page Content Widgets
  5.12 - Partner Section
  5.13 - Team Values Section
  5.14 - Blog

6.0 - Sidebar
  6.1 - Widgets

7.0 - Footer

8.0 - Media Queries

9.0 - Print

------------------------------------------------------------------------------------------------- */


/* 1.0 Reset - Modified from Normalize.css to provide cross-browser consistency and a smart default styling of HTML elements. */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
video {
	display: inline-block;
}

html {
	font-size: 100%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
	font-family: "Open Sans", Helvetica, sans-serif;
}

body {
	color: #141412;
	line-height: 1.5;
	margin: 0;
	font-weight: 300;
}

a {
	color: #FF4000;
	text-decoration: none;
}

a:visited {
	color: #777777;
}

a:focus {
	outline: thin dotted;
}

a:active,
a:hover {
	color: #FF4000;
	outline: 0;
}

a:hover {
	text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-weight: 300;
	line-height: 1.3;
}

h1 {
	font-size: 32px;
	margin: 28px 0;
}

h2 {
	font-size: 30px;
	margin: 25px 0;
}

h3 {
	font-size: 26px;
	margin: 22px 0;
	color: #003865;
}

h4 {
	font-size: 20px;
	margin: 25px 0;
}

h5 {
	font-size: 18px;
	margin: 30px 0;
}

h6 {
	font-size: 16px;
	margin: 36px 0;
}

address {
	font-style: italic;
	margin: 0 0 24px;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

mark {
	background: #ff0;
	color: #000;
}

p {
	margin: 0 0 24px;
}

code,
pre,
samp {
	font-family: monospace, serif;
	font-size: 14px;
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
}

pre {
	background: #f5f5f5;
	color: #666;
	font-family: monospace;
	font-size: 14px;
	margin: 20px 0;
	overflow: auto;
	padding: 20px;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

blockquote,
q {
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

blockquote {
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
	margin: 24px 40px;
}

blockquote blockquote {
	margin-right: 0;
}

blockquote cite,
blockquote small {
	font-size: 14px;
	font-weight: normal;
	text-transform: uppercase;
}

blockquote em,
blockquote i {
	font-style: normal;
	font-weight: 300;
}

blockquote strong,
blockquote b {
	font-weight: 400;
}

small {
	font-size: smaller;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

dl {
	margin: 0 20px;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 0 10px;
}

menu,
ol,
ul {
	margin: 16px 0;
	padding: 0 0 0 40px;
}

ul {
	list-style-type: square;
}

nav ul {
	list-style: none;
	list-style-image: none;
}

li > ul {
	margin: 0;
}

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	vertical-align: middle;
}

figure {
	margin: 0;
}

form {
	margin: 0;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
	white-space: normal;
}

button,
input,
select,
textarea {
	font-size: 100%;
	margin: 0;
	max-width: 100%;
	vertical-align: baseline;
}

button,
input {
	line-height: normal;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
input[disabled] {
	cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0;
}

input[type="search"] {
	-webkit-appearance: textfield;
	padding-right: 2px; /* Don't cut off the webkit search cancel button */
	width: 95%;
}

input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

table {
	border-bottom: 1px solid #ededed;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 14px;
	line-height: 2;
	margin: 0 0 20px;
	width: 100%;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

caption {
	font-size: 16px;
	margin: 20px 0;
}

th {
	font-weight: bold;
	text-transform: uppercase;
}

td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}

del {
	color: #333;
}

ins {
	background: #fff9c0;
	text-decoration: none;
}

hr {
	background: url(images/dotted-line.png) repeat center top;
	background-size: 4px 4px;
	border: 0;
	height: 1px;
	margin: 0 0 24px;
}


/* 2.0 Repeatable Patterns ---------------------------------------------------------------------- */

.genericon:before,
.menu-toggle:after,
.featured-post:before,
.date a:before,
.entry-meta .author a:before,
.format-audio .entry-content:before,
.tags-links a:first-child:before,
.categories-links a:first-child:before,
.edit-link a:before,
.attachment .entry-title:before,
.attachment-meta:before,
.attachment-meta a:before,
.error404 .page-title:before {
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font: normal 16px/1 Genericons;
	vertical-align: text-bottom;
}

/* Clearing floats */
.clear:after,
.attachment .entry-header:after,
.site-footer .widget-area:after,
.entry-content:after,
.page-content:after,
.navigation:after,
.nav-links:after {
	clear: both;
}

.clear:before,
.clear:after,
.attachment .entry-header:before,
.attachment .entry-header:after,
.site-footer .widget-area:before,
.site-footer .widget-area:after,
.entry-content:before,
.entry-content:after,
.page-content:before,
.page-content:after,
.navigation:before,
.navigation:after,
.nav-links:before,
.nav-links:after {
	content: "";
	display: table;
}

/* Assistive text */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}

.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;
	line-height: normal;
	padding: 15px 23px 14px;
	position: absolute;
	left: 5px;
	top: 5px;
	text-decoration: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/* Form fields, general styles first. */
button,
input,
textarea {
	border: 2px solid #61a4d7;
	font-family: inherit;
	padding: 5px;
}

input,
textarea {
	color: #141412;
}

input:focus,
textarea:focus {
	border: 2px solid #c3c0ab;
	outline: 0;
}

/* Buttons */
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	background: #e05d22; /* Old browsers */
	background: -webkit-linear-gradient(top, #e05d22 0%, #d94412 100%); /* Chrome 10+, Safari 5.1+ */
	background:   linear-gradient(to bottom, #e05d22 0%, #d94412 100%); /* W3C */
	border: none;
	border-bottom: 3px solid #b93207;
	border-radius: 2px;
	color: #ffffff;
	display: inline-block;
	padding: 11px 24px 10px;
	text-decoration: none;
}

button:hover,
button:focus,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus {
	background: #ed6a31; /* Old browsers */
	background: -webkit-linear-gradient(top, #ed6a31 0%, #e55627 100%); /* Chrome 10+, Safari 5.1+ */
	background:   linear-gradient(to bottom, #ed6a31 0%, #e55627 100%); /* W3C */
	outline: none;
}

button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	background: #d94412; /* Old browsers */
	background: -webkit-linear-gradient(top, #d94412 0%, #e05d22 100%); /* Chrome 10+, Safari 5.1+ */
	background:   linear-gradient(to bottom, #d94412 0%, #e05d22 100%); /* W3C */
	border: none;
	border-top: 3px solid #b93207;
	padding: 10px 24px 11px;
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
	color: #7d7b6d;
}
:-moz-placeholder {
	color: #7d7b6d;
}
::-moz-placeholder {
	color: #7d7b6d;
}
:-ms-input-placeholder {
	color: #7d7b6d;
}

/*
 * Responsive images
 *
 * Fluid images for posts, comments, and widgets
 */
.entry-content img,
.entry-summary img,
.widget img,
.wp-caption {
	max-width: 100%;
}

/* Make sure images with WordPress-added height and width attributes are scaled correctly. */
.entry-content img,
.entry-summary img,
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto;
}

img.size-full,
img.size-large,
img.wp-post-image {
	height: auto;
	max-width: 100%;
}

/* Make sure videos and embeds fit their containers. */
embed,
iframe,
object,
video {
	max-width: 100%;
}

/* Images */
.alignleft {
	float: left;
}

.alignright {
	float: right;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

img.alignleft {
	margin: 5px 20px 5px 0;
}

.wp-caption.alignleft {
	margin: 5px 10px 5px 0;
}

img.alignright {
	margin: 5px 0 5px 20px;
}

.wp-caption.alignright {
	margin: 5px 0 5px 10px;
}

img.aligncenter {
	margin: 5px auto;
}

img.alignnone {
	margin: 5px 0;
}

.wp-caption .wp-caption-text,
.entry-caption,
.gallery-caption {
	color: #220e10;
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
}

img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

.wp-caption.alignleft + ul,
.wp-caption.alignleft + ol  {
	list-style-position: inside;
}
.img-replace {
	text-indent: -999em;
	display: inline;
}
.img-replace a {
	border-bottom: none !important;
	background-image: url('images/lucidica-sprite-main.png');
	background-repeat: no-repeat;
}
.two-column {
	width: 50%;
	float: left;
}
.three-column {
	width: 33.333%;
	float: left;
}
.content.visible {
	display: block;
}



/* 3.0 Basic Structure -------------------------------------------------------------------------- */

.site {
	position:relative;
	margin: 0 auto;
	max-width: 1120px;
	padding: 0 40px;
	width: 100%;
	min-width: 500px;
}
.site-main {
	position: relative;
}
.page .site-main {
	background: #F5F5F5;
}
.home .site-main {
	background: transparent !important;
}
.single-post .site-main {
	background: url('images/bg-single-post.png') top repeat-x;
}
.site-main .sidebar-container {
	height: 0;
	position: absolute;
	top: 40px;
	width: 100%;
	z-index: 1;
}

.site-main .sidebar-inner {
	margin: 0 auto;
	max-width: 1120px;
}
.page-summary {
	background: #f5f5f5;
}


/* 4.0 Header ----------------------------------------------------------------------------------- */


/* ---- 4.1 Site Header ------------------------------------------------------------------------- */

.site-header {
	margin: 0 auto;
	max-width: 1120px;
}
.site-header .home-link {
	color: #141412;
	display: block;
	min-height: 120px;
	padding: 50px 0 0 0;
	text-decoration: none;
	width: 293px;
}
.site-header .site-title:hover {
	text-decoration: underline;
}
.site-title {
	font-size: 48px;
	width: 293px;
	height: 40px;
	line-height: 1;
	margin: 0;
	padding: 0;
	background: url('images/lucidica-sprite-main.png') 0 0 no-repeat;
	text-indent: -999em;
	direction: ltr;
}
.site-description {
	padding: 0;
	margin: 0;
	height: 1px;
	text-indent:-999em;
	direction: ltr;
}


/* ---- 4.2 Navigation -------------------------------------------------------------------------- */

.main-navigation {
	clear: both;
	margin: 0 auto;
	max-width: 1120px;
	min-height: 70px;
	position: relative;
}
.home .main-navigation {
	min-height: 45px;
}
.navbar {
	margin: 0 auto;
	max-width: 1600px;
	width: 100%;
	z-index: 200;
}
ul.nav-menu,
div.nav-menu > ul {
	margin: 0;
	padding: 0;
	font-family: "Permanent Marker";
}

.nav-menu li {
	display: inline-block;
}

.nav-menu li a {
	color: #61A4D7;
	display: block;
	font-size: 26px;
	line-height: 1;
	padding: 0 30px 0 0;
	text-decoration: none;
}
.nav-menu li:hover > a,
.nav-menu li a:hover {
	color: #5386A5;
}
.nav-menu .sub-menu,
.nav-menu .children {
	position: absolute;
	bottom: 0;
	left: 0;
	font-family: "Open Sans";
	font-weight: 300;
	display: none;
	padding: 0;
}
.current-menu-parent ul.sub-menu,
.current_menu_item ul.sub-menu,
.current_page_item ul.sub-menu,
.current_page_parent ul.sub-menu
{
	display: block;
}
ul.nav-menu ul a {
	padding: 6px 15px;
	background: #ebebeb;
	color: #777777;
	font-size:15px;
	font-weight: 300;
	border-bottom: none;
	margin:0;
	word-wrap:normal;
}
ul.nav-menu ul a:hover,
.nav-menu ul ul a:hover {
	color: #333333;
}
.nav-menu .current_page_item > a,
.nav-menu .current-page-ancestor > a,
.nav-menu .current_page_parent > a,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
	color: #FF4000;
}
.nav-menu ul .current-page-ancestor > a {
	color: #777777;
}
.nav-menu ul .current_page_item > a,
.nav-menu ul .current-menu-item > a {
	background: #F5F5F5;
}
.menu-item a:hover,
.menu-item a:active {
	text-decoration: none;
}
.menu-toggle {
	display: none;
}


/* ---- 4.3 Quick Contact Links ----------------------------------------------------------------- */

.quick-contact {
	display: block;
	position: absolute;
	top: 45px;
	right: 120px;
	width: 40%;
	height: 50px;
}
.quick-contact:hover {
	text-decoration: none;
}
.quick-contact h6,
.quick-contact h5 {
	text-align: right;
	margin: 0;
	padding: 0;
}
.quick-contact h6 {
	color: #61A4D7;
	font-size: 16px;
}
.quick-contact h5 {
	color: #003865;
	font-size: 24px;
}


/* ---- 4.4 Social Media Links ------------------------------------------------------------------ */
.img-replace {
	text-indent: -999em;
	direction: ltr;
}
.social-media-links {
	position: absolute;
	top: 52px;
	right: 40px;
	width: 71px;
	height: 39px;
	background-color: #D3E1F2;
}
.social-media-links a.icon {
	display: block;
	float: left;
	width: 25px;
	height: 25px;
	margin: 7px;
}
.social-media-links h6 {
	margin: 0;
	padding: 0;
}
a#facebook-25 {
	background-position: -498px -47px;
	margin-right: 0;
}
a#twitter-25 {
	background-position: -523px -47px;
}

/* 5.0 Content ---------------------------------------------------------------------------------- */

.hentry {
	padding: 15px 0 0 0;
}
.entry-header,
.entry-content,
.entry-summary,
.entry-meta,
.content-top {
	margin: 0 auto;
	padding:30px;
	max-width: 1120px;
	width: 100%;
}
article.page {
	padding-top:0;
}
.single-post .entry-meta,
.single-post .entry-thumbnail,
.single-post .entry-content {
	max-width: 1120px;
	padding: 0 26% 30px 30px;
}


/* ---- 5.1 Entry Header ------------------------------------------------------------------------ */

.sidebar .entry-header .entry-meta {
	padding: 0 26% 0 30px;
}
.entry-thumbnail img {
	display: block;
	margin: 0 auto 10px;
}
.entry-header {
	margin-bottom: 30px;
	padding: 0;
}
.content-header {
}
.entry-title,
.archive-title {
	margin: 0 0 15px;
	/* font-size: 24px; */
}
.entry-title a {
	color:#003865;
}
.entry-title a:hover {
	color:#003865;
}
h1.entry-title,
h1.archive-title {
	position: relative;
	left: -50px;
	margin-bottom: 30px;
}
h1.archive-title {
	margin-bottom: 10px;
}
.single-post h1.entry-title {
	left: -20px;
	margin-top: 15px;
}
.entry-title span.flag,
.archive-title span.flag {
	background: url('images/flag-title-orange.png') bottom left no-repeat;
	color: #ffffff;	
	padding: 5px 30px 30px 50px;
	display: inline-block;
}
span.flag a,
span.flag a:active,
span.flag a:hover,
span.flag a:visited { 
	color: #ffffff;
}
span.flag a:active,
span.flag a:hover { 
	border-bottom: 1px dotted #ffffff;
}


/* ---- 5.2 Entry Meta -------------------------------------------------------------------------- */
.entry-meta {
	clear: both;
	font-size: 14px;
}
.entry-meta a {
	color: #FF4000;
}
.entry-meta a:hover {
	color: #FF4000;
}
.entry-meta > span {
	margin-right: 20px;
}
.entry-meta > span:last-child {
	margin-right: 0;
}
.entry-meta .date a:before {
	content: "\f303";
}
.entry-meta .author a:before {
	content: "\f304";
	position: relative;
	top: -1px;
}
.categories-links a:first-child:before {
	content: "\f301";
}
.tags-links a:first-child:before {
	content: "\f302";
	position: relative;
	top: -1px;
}
.edit-link a:before {
	content: "\f411";
	position: relative;
	top: -1px;
}
.single-author .entry-meta .author,
.sticky.format-standard .entry-meta .date,
.sticky.format-image .entry-meta .date {
	display: none;
}


/* ---- 5.3 Entry Content ----------------------------------------------------------------------- */

.entry-content {
	-webkit-hyphens: auto;
	-moz-hyphens:    auto;
	-ms-hyphens:     auto;
	hyphens:         auto;
	word-wrap: break-word;
}
.page .entry-content h3 {
	font-weight:600;
}
.entry-content p {
	color: #666666;
	font-size: 20px;
	font-weight: 300;
}
.entry-content b,
.entry-content strong {
	color: #555555;
}
.entry-content ul b,
.entry-content ol b,
.entry-content ul strong,
.entry-content ol strong {
	color: #666666;
}
.entry-content ul,
.entry-content ol {
	color: #777777;
	font-size: 18px;
	font-weight: 300;
	margin: 20px;
	padding: 20px;
}
.entry-content ul li {
	margin: 0 0 10px 0;
}
.entry-content blockquote {
	font-size: 24px;
}
.entry-content blockquote cite,
.entry-content blockquote small {
	font-size: 16px;
}
footer.entry-meta {
	margin-top: 0;
}
.split { /* Split content area for Nutshell/Details split on section overview pages */
	position: relative;
	border-left: 3px solid #818181;
	margin-left: 25%;
	padding-left: 5%;
}
.split h3 {
	position: absolute;
	top: 0;
	left: -33%;
	margin: 0;
	padding: 0;
	width: 25%;
	font-family: "Permanent Marker";
	font-weight: 400;
	font-size: 28px;
	color: #818181;
	word-wrap: normal;
}
.split p {
	color: #666666;
	font-size: 20px;
	font-weight: 300;
}
.split.intro {
	border-left-color: #003865;
}
.split.intro h3 {
	color: #003865;
}
.split.intro p {
	color: #003865;
	font-size: 28px;
	font-weight: 300;
}


/* ---- 5.4 Post Formats ------------------------------------------------------------------------ */

/* Aside */
.format-aside {
	background-color: #f7f5e7;
}
.blog .format-aside:first-of-type,
.single .format-aside:first-of-type,
.format-aside + .format-aside,
.format-aside + .format-link,
.format-link + .format-aside {
	box-shadow: inset 0 2px 2px rgba(173, 165, 105, 0.2);
}
.format-aside .entry-meta {
	margin-top: 0;
}
.format-aside blockquote {
	font-size: 100%;
	font-weight: normal;
}
.format-aside cite {
	font-size: 100%;
	text-transform: none;
}
.format-aside cite:before {
	content: "\2014";
	margin-right: 5px;
}


/* ---- 5.5 Post/Paging Navigation -------------------------------------------------------------- */

.navigation .nav-previous {
	float: left;
}
.navigation .nav-next {
	float: right;
}
.navigation a {
	color: #FF4000;
}
.navigation a:hover {
	color: #333333;
	text-decoration: none;
}
.paging-navigation {
	padding: 40px 0;
}
.paging-navigation .nav-links {
	margin: 0 auto;
	max-width: 1120px;
	width: 100%;
}
.paging-navigation .nav-next {
	padding: 13px 0;
}
.paging-navigation a {
	font-size: 22px;
	font-style: italic;
	font-weight: 300;
}
.paging-navigation .meta-nav {
	background-color: #FF4000;
	border-radius: 50%;
	color: #ffffff;
	display: inline-block;
	font-size: 26px;
	padding: 3px 0 8px;
	text-align: center;
	width: 50px;
}

.paging-navigation .nav-previous .meta-nav {
	margin-right: 10px;
	padding: 17px 0 23px;
	width: 80px;
}
.paging-navigation .nav-next .meta-nav {
	margin-left: 10px;
}
.paging-navigation a:hover .meta-nav {
	background-color: #333333;
	text-decoration: none;
}
.post-navigation {
	background-color: #ffffff;
	color: #ca3c08;
	font-size: 20px;
	font-style: italic;
	font-weight: 300;
	padding: 20px 0;
}
.post-navigation .nav-links {
	margin: 0 auto;
	max-width: 1120px;
	padding: 0 60px;
}
.post-navigation a[rel="next"] {
	float: right;
	text-align: right;
}


/* ---- 5.6 Author Bio -------------------------------------------------------------------------- */

.author-info {
	margin: 0 auto;
	max-width: 604px;
	padding: 30px 0 10px;
	text-align: left; /* gallery & video post formats */
	width: 100%;
}
.author.sidebar .author-info {
	max-width: 1120px;
	padding: 30px 376px 10px 60px;
}
.single .author-info {
	padding: 50px 0 0;
}
.author-avatar .avatar {
	float: left;
	margin: 0 30px 30px 0;
}
.author-description .author-title {
	clear: none;
	font: 300 italic 20px "Open Sans", Helvetica, sans-serif;
	margin: 0 0 8px;
}
.author-link {
	color: #ca3c08;
	margin-left: 2px;
}
.author.archive .author-link {
	display: none;
}


/* ---- 5.7 Archives ---------------------------------------------------------------------------- */

.archive-meta {
	font: 100 30px "Open Sans", Helvetica, sans-serif;
	color: #61A4D7;
	margin: 0 auto;
	max-width: 1120px;
	padding: 30px 0;
	width: 100%;
	padding: 0 5px 11px 5px;
}


/* ---- 5.8 Search Results/No posts ------------------------------------------------------------- */

.page-header {
	background-color: #e3edf0;
}
.page-title {
	font: 300 italic 30px "Open Sans", Helvetica, sans-serif;
	margin: 0 auto;
	max-width: 1120px;
	padding: 30px 0;
	width: 100%;
}
.page-content {
	margin: 0 auto;
	max-width: 604px;
	padding: 40px 0;
	width: 100%;
}
.sidebar .page-content {
	margin: 0 auto;
	max-width: 1120px;
	padding: 40px 376px 40px 60px;
}

/* ---- 5.9 404 Not Found ----------------------------------------------------------------------- */

.error404 .page-header {
	background-color: #ffffff;
}
.error404 .page-title {
	line-height: 0.6;
	margin: 0;
	position: relative;
	text-align: center;
	width: auto;
}
.error404 .page-title:before {
	color: #e3edf0;
	line-height: 0.6;
}
.error404 .page-wrapper {
	background-color: #e3edf0;
}
.error404 .page-header,
.error404 .page-content {
	margin: 0 auto;
	max-width: 1120px;
	padding-bottom: 40px;
	width: 100%;
}


/* ---- 5.10 Home Page Slideshow ---------------------------------------------------------------- */

#slideshow {
	max-width: 1120px;
	height: 409px;
	overflow: hidden;
}
.slide {
	position: relative; 
	width: 100%;
	height: 409px;
	max-width: 1120px;
	background-repeat: no-repeat;
	background-position: center top;
}
.speech {
	position: absolute;
	bottom: 10px;
}
.speech p {
	margin-bottom: 0;
}
.question {
	left: 3.125%;
	width: 32.6785%;
	background: url('images/flag-orange.png') bottom right no-repeat;
	padding: 15px 20px 55px 20px;
}
.question h5 {
	font-family: "Permanent Marker";
	font-weight: 400;
	color: #ffffff;
	font-size: 28px;
	margin: 0;
	padding: 0;
}
.answer {
	right: 3.125%;
	width: 50%;
	padding: 15px 20px 55px 20px;
	background: url('images/flag-blue.png') bottom right no-repeat;
	color: #ffffff;
	font-weight: 300;
	font-size: 18px;
}
.cycle-pager {
	position: absolute;
	bottom: 5px;
	width: 100%;
	z-index: 101;
	text-align: center;
}
.cycle-pager span {
	font-family: arial;
	font-size: 50px;
	line-height: 20px;
	width: 16px;
	height: 16px;
	display: inline-block;
	margin: 0 10px;
	color: #ddd;
	cursor: pointer;
	z-index: 200;
}
.cycle-pager-active {
	color: #FF4000 !important;
}


/* ---- 5.11 Home Page Content Widgets ---------------------------------------------------------- */

.content-middle {
	background: #003865;
	color: #61A4D7;
	margin-top: 30px;
}
.content-middle .widget {
	width: 50%;
	min-height: 165px;
	float: left;
	padding: 15px 20px;
	font-weight: 300;
	margin-bottom: 0;
}
.content-middle h2,
.content-middle a {
	color: #ffffff;
	margin: 0;
}
.content-bottom {
	color: #003865;
	min-height: 165px;
	margin-bottom: 20px;
}
.content-bottom .widget {
	position: relative;
	float: left;
	width: 30%;
	min-height: 140px;
	margin: 0 1%;
	padding: 20px 0 0 0;
}
.content-bottom .widget h2 {
	margin: 0 60px 15px 0;
}
.content-bottom #text-11 {
	margin: 0 3%;
}
#text-8 .icon-wrapper {
	clear: both;
}
#text-8 h3.img-replace a {
	width: 45px;
	height: 45px;
	float: left;
}
#text-8 h3.img-replace a {
	width: 45px;
	height: 45px;
	display: block;
	float: left;
	margin: 15px 6.96%;
	padding: 0;
}
.widget-icon {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 62px;
	height: 52px;
	background-image: url('images/lucidica-sprite-main.png');
	background-repeat: no-repeat;
}
#text-9 .widget-icon { /* Our Team Icon */
	background-position: 0px -40px; 
}
#text-11 .widget-icon { /* Seminars Icon */
	background-position: -62px -40px;
}
#text-10 .widget-icon { /* Blog Icon */
	background-position: -124px -40px;
}
#text-10 p {
	margin-bottom:0;
}
#text-13 li.img-replace {
	float: left;
	width: 120px;
	height: 70px;
	margin: 0;
	padding: 0;
	background-image: url('images/lucidica-sprite-main.png');
	background-repeat: no-repeat;
}
#icon-microsoft		{ background-position: 0px -92px; }
#icon-apple			{ background-position: -120px -92px; }
#icon-accelerator	{ background-position: -240px -92px; }
#icon-bl			{ background-position: -360px -92px; }

#text-12 .column {
	float: left;
	width: 50%;
	margin-bottom: 20px;
}
.low-contrast {
	color: #aaaaaa;
}
#icon-facebook a	{ background-position: -293px -47px; }
#icon-twitter a		{ background-position: -383px -47px; }
#icon-instagram a	{ background-position: -248px -47px; }
#icon-wp a			{ background-position: -338px -47px; }

#text-7 form {
	margin-top: 8px;
}
#text-7 input,
#mc4wp-form-1 input {
	display: inline;
	margin: 5px 0.5%;
	padding: 2px 1%;
	background: #C4D8F0;
	color: #666666;	
	font-size: 13px;	
	border-radius: 2px;
	border: none;
}
#person_first_name {
	width: 26%;
}
#person_last_name {
	width: 26%;
}
#person_company {
	width: 50%;
}
#person_email_address,
#mc4wp_email {
	width: 38%;	
}
#person_postal_code {
	width: 14%;
}
#text-7 input.submit,
#mc4wp-form-1 input.submit {
	background: #FF4000;
	color: #FFFFFF;
	width: 20%;
	margin-top: 0;
	display: inline;
	border: none;
	text-transform: uppercase;
	font-size: 12px;
}
#mc4wp-form-1 label {
	display: none;
}

/* ---- 5.12 Partner Section -------------------------------------------------------------------- */

.partner {
	float: left;
	width: 23%;
	margin: 0 1% 30px 1%;
	padding: 0;
	background: #ffffff;
}
.partner .profile-meta {
	padding: 10px 5% 4px;
}
.partner h5,
.bio h5 {
	font-weight: bold;
	font-size: 15px;
	color: #003865;
	margin: 0 0 5px 0;
}
.partner .job-title {
	font-size: 15px;
	margin-bottom: 4px;
	font-style: italic;
}
p.reveal {
	font-size: 13px;
	text-transform: uppercase;
	color: #FF4000;
	cursor: pointer;
	margin: 4px 0;
}
.partner h6,
.bio h6 {
	font-size: 14px;
	font-weight: 300;
	font-style: italic;
	color: #61A4D7;
	margin: 0;	
}
.bio {
	padding: 0;
	max-width: 840px;
	min-width: 400px;
}
.partner .bio {
	display: none;
}
.bio .content {
	margin: 0 auto;
	padding: 30px 4%;
	background: #ffffff;
}
.bio-header {
	margin: 0;
	padding: 20px 0;
	position: relative;
}
.bio-header .logo {
	position: absolute;
	top: 3px;
	left: 0;
	width: 144px;
	height: 20px;
	background: url('images/lucidica-sprite-main.png') -293px 0; 
	text-indent: -999em;
	direction: rtl;
}
.bio-header .title {
	position: absolute;
	top: 0;
	right: 30px;
	text-align: right;
	color: #003865;
}
.bio .content .column {
	float: left;
	margin: 20px 0;
}
.bio .content .col-one {
	width: 22%;
}
.bio .content .col-two {
	margin: 20px 4%;
}
.bio .content .col-two,
.bio .content .col-three {
	width: 35%;
}
.page-id-3388 .bio .content .col-two { /* Make Partner Profile popup two columns only */
	width: 74%;
	margin: 20px 0 20px 4%;
}
.bio .content p {
	font-size: 16px;
	margin-bottom: 10px;
	color: #555555;
}
.bio img.flip {
	width: 100%;
}

/* ---- 5.13 Team Values Section ---------------------------------------------------------------- */

.block.value {
	float: left;
	width: 33.3333%;
	padding: 20px;
	min-height: 330px;
}
.block.value h4 {
	font-weight: 600;
	color: #003865;
	margin: 5px 0 15px 0;
	font-size: 18px;
}
.block.value p.icon {
	text-align: center;
}
.block.value p {
	font-size: 16px;
	margin: 0;
}
.block.value#trust {
	clear: left;
}
.block.value#growing {
	clear: right;
}


/* ---- 5.14 Blog ------------------------------------------------------------------------------- */

.tile {
	float:left;
	margin-bottom:50px;
	position: relative;
    width:44%;
    margin-right:5%;
    min-height:340px;
}
.feature h4.section-title,
.tile h4.category-title {
	font-size:12px;
	font-weight:600;
	text-transform: uppercase;
	color: #FF4000;
	margin:0;
}
.tile article {
	padding-top:0;
}
.tile .categories-links a:hover {
	text-decoration: none;
}
.tile .entry-header {
	margin:10px auto;
}
.tile .entry-title {
	font-size:22px;
	margin-bottom:10px;
    margin-top:70px;
}
.blog .entry-header .entry-meta,
.blog .feature .entry-meta,
.feature .entry-content,
.tile .entry-meta,
.tile .entry-content,
.tile footer {
	padding:0;
}
.tile .entry-content p {
	font-size:15px;
}
.blog .entry-header {
	margin-bottom: 10px;
}
.blog .page-summary {
	margin-bottom: 40px;
}
.blog .entry-meta span {
	display: block;
}
.blog .feature {
	position: relative;
	margin-bottom: 40px;
	clear: both;
	background-color: #61A4D7;
}
.blog .feature article {
	padding-top: 0;
	position: relative;
	height:auto;
}
.blog .feature span.date,
.blog .feature span.author {
	display: inline;
}
.blog .feature .entry-meta span a {
	color:#D4E2F4;
}
.blog .feature .image {
	float: left;
	width: 40%;
	height: 100%;
	background: #97c3e5;
}
.blog .feature .article-content {
	float: left;
	width: 60%;
	padding: 50px 4.5%;
}
.blog .feature h2.entry-title a {
	color: #ffffff;
}
.blog .feature p {
	color: #D4E2F4;
	font-size: 18px;
}
.col-2, .col-5, .col-8, .col-11, .col-14 {
	clear: right;
}
.col-3, .col-6, .col-9, .col-12, .col-15 {
	clear: left;
}
.col-1, .col-4, .col-7, .col-10, .col-13 {
  /*
	margin-left: 5%;
	margin-right: 5%;
*/
}


/* 6.0 Sidebar ---------------------------------------------------------------------------------- */

.site-main .widget-area {
	float: right;
	width: 25%;
}
.single-post .sidebar-container {
	top: 170px;
}


/* 6.1 Widgets ---------------------------------------------------------------------------------- */

.widget {
	font-size: 14px;
	-webkit-hyphens: auto;
	-moz-hyphens:    auto;
	-ms-hyphens:     auto;
	hyphens:         auto;
	margin: 0 0 24px;
	padding: 20px;
	word-wrap: break-word;
}
.widget .widget-title {
	font: 300 italic 20px "Open Sans", Helvetica, sans-serif;
	margin: 0 0 10px;
}
.widget ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.widget li {
	padding: 5px 0;
}
.widget .children li:last-child {
	padding-bottom: 0;
}
.widget li > ul {
	margin-left: 20px;
}
.widget a {
	color: #FF4000;
	text-decoration: none;
	border-bottom: 1px dotted #FF4000;
}
.widget a:hover {
	color: #111111;
	text-decoration: none;
	border-bottom: 1px dotted #111111;
}
/* Search widget */
.search-form .search-submit {
	display: none;
}


/* 7.0 Footer ----------------------------------------------------------------------------------- */

.site-footer {
	color: #818181;
	font-size: 14px;
	text-align: center;
	background: url('images/lucidica-sprite-main.png') 50% -162px no-repeat;
}
.site-footer .widget-area,
.sidebar .site-footer {
	text-align: left;
}
.site-footer a {
	color: #686758;
}
.site-footer .sidebar-container {
	padding: 20px 0;
}
.site-footer .widget-area {
	margin: 0 auto;
	max-width: 1120px;
	width: 100%;
}
.site-footer .widget {
	float: left;
	width: 48%;
	margin: 0 1%;
	padding: 20px 0;
}
.site-footer .widget a {
	color: #ff4000;
}
.site-info {
	margin: 0 auto;
	max-width: 1120px;
	padding: 0;
	width: 100%;
}




/* TEMP STYLES - TO BE MOVED ------------------------------------------------------------------------- */


.entry-meta a {
	color: #61A4D7;
}
.image {
	position: relative;
}
.section-title,
.category-title {
	position: absolute;
	top: 15px;
	left: -20px;
	z-index: 100;
}
.section-title span.flag,
.category-title span.flag {
	padding: 5px 15px 30px 15px;
	background: url('images/flag-title-orange.png') bottom left no-repeat;
	color: #ffffff;	
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}
#text-14,
.archive header .archive-meta ,
.archive .author-info {
	float: left;
	width: 57.75%;
	margin-right: 4.5%;
	margin-bottom: 0;
	padding: 0;
}
#text-14 h3,
.archive header .archive-meta p,
.archive .author-info p {
	margin: 5px 0;
}
#search-2 {
	float: left;
	width: 37.75%;
	padding: 0;
}
#search-2 h2 {
	margin-top: 5px;	
	font-size: 18px;
	font-weight: 600;
	color: #FF4000;
}
#subscribe2_widget-2 {
	float: left;
	width: 37.75%;	
	padding: 0;
}
#subscribe2_widget-2 form label {
	display: none;
}
#s2email {
	width: 100%;
}
#s2email br {
	display: none;
}
#s2email input[name=subscribe],
#s2email input[name=unsubscribe] {
	width: 50%;
}
.wufoo {
	font-family: "Open Sans", Helvetica, arial, sans-serif !important;
}
.case-studies,
.testimonials {
	border-top: 1px dotted #999999;
}
.case-study {
	border-bottom: 1px dotted #999999;
}
.case-study dl {
	margin:0;
}
.case-study dt {
	color:#FF4000;
	font-weight: 300;
	text-transform: uppercase;
	font-size:13px;
}
.case-study dd {
	font-size: 14px;
	color: #888888;
}
.case-study h2 {
	color:#003865;
	margin-bottom:0;	
}
.case-study h4 {
	font-weight: 300;
	color:#003865;	
	margin-bottom: 10px;
}
.case-study .column {
	float: left;
	margin: 20px 0;
}
.case-study .basic .col-one {
	width: 30%;
	padding-right:5%;
}
.case-study .basic .col-two {
	width: 70%;
}
.case-study p {
	font-size: 15px;
}
.case-study .image {
	margin-bottom: 15px;
}
.case-study .detail .column {
	width: 33%;
	padding: 0 3% 0 0;
	margin-top: 0;
}
.case-study .detail h4 {
	font-weight: 600;
	font-size: 15px;	
}
.case-study .detail .col-three {
}
.case-study .detail .column p {
	font-size: 14px;
}

.case-study .detail .feedback p {
	font-size: 18px;
	color:#61A4D7;
}
.case-study .detail .feedback h5 {
	font-size: 13px;
	color:#003865;
}
ul.checklist {
	list-style-type:none;
	padding:0;
}
ul.checklist li {
	font-size:14px;
	color: #666666;
	margin-bottom: 5px;
}
ul.checklist li::before {
	content: '\f418';
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font: normal 22px/1 Genericons;
	vertical-align: text-bottom;
	color: #FF4000;
	padding-right: 5px;
}
.testimonials blockquote {
	margin:0;
}
.testimonials blockquote p {
	font-size:20px;
	color:#888888;
}
.testimonials blockquote p::before {
	content: '\"';
}

.testimonials blockquote p::after {
	content: '\"';
}

/* 8.0 Fancybox --------------------------------------------------------------------------------- */

.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-wrap object,
.fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}
.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}
.fancybox-skin {
	position: relative;
	background: #ffffff;
}
.fancybox-opened {
	z-index: 8030;
}
.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.fancybox-outer, .fancybox-inner {
	position: relative;
}
.fancybox-inner {
	overflow: hidden !important;
}
.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}
.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}
.fancybox-close {
	position: absolute;
	top: 48px;
	right: 25px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}
.fancybox-close,
.fancybox-close:hover {
	color: #003865;
	text-decoration: none;
}
.fancybox-close::before {
	font:normal 22px/1 Genericons;
	content:'\f405';	
}
/* Overlay helper */
.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}
.fancybox-lock body {
    overflow: hidden !important;
}
.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background-color: rgba(0,56,101,0.6);
}
.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}
.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
		background-image: url('fancybox_sprite@2x.png');
		background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
		background-image: url('fancybox_loading@2x.gif');
		background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
	}
}

/* 9.0 Media Queries ---------------------------------------------------------------------------- */

@media (max-width: 1599px) {
	.site {
		border: 0;
	}
}
@media (max-width: 1069px) {
	.sidebar img.alignleft,
	.sidebar .wp-caption.alignleft {
		margin-left: 0;
	}
	.sidebar img.alignright,
	.sidebar .wp-caption.alignright {
		margin-right: 0;
	}
	.error404 .page-header {
		margin-left: auto;
		max-width: 604px;
		width: 100%;
	}
	.error404 .page-title {
		font-size: 24px;
	}
	.error404 .page-title:before {
		font-size: 554px;
	}
	.attachment .image-navigation {
		max-width: 724px;
	}
	.image-navigation .nav-previous,
	.image-navigation .nav-next {
		position: static;
	}
}

@media (max-width: 999px) {

	.nav-menu li a {
		font-size: 23px;
		padding: 0 25px 0 0;
	}
	.attachment .entry-meta {
		float: left;
		text-align: left;
		width: 100%;
	}
	.attachment .entry-content {
		max-width: 100%;
		padding: 40px 0;
	}
	.sidebar .paging-navigation .nav-links {
		padding: 0 60px;
	}
	.sidebar .site-footer .widget-area {
		max-width: 100%;
		left: 0;
	}
	#text-12 .column {
		width:100%;
		float:none;
	}
	#person_first_name {
		width: 48%;
	}
	#person_last_name {
		width: 48%;
	}
	#person_company {
		width: 48%;
	}
	#person_email_address,
	#mc4wp_email {
		width: 48%;	
	}
	#person_postal_code {
		width: 90px;
	}
	#text-7 input.submit,
	#mc4wp-form-1 input.submit {
		width: 90px;
	}
	#text-8 h3.img-replace a {
		margin: 15px 4%;
	}
}




@media (max-width: 899px) {
	.nav-menu li a {
		font-size: 21px;
		padding: 0 15px 0 0;
	}
	.nav-menu .sub-menu li a {
		font-size: 14px;
		padding: 6px 11px;
	}
	.tile {
		width: 46.25%;
	}
	.col-1, .col-3, .col-5, .col-7, .col-9, .col-11, .col-13, .col-15 {
		clear: right;
		margin-left: 2.75%;
		margin-right: 0;
	}
	.col-0, .col-2, .col-4, .col-6, .col-8, .col-10, .col-12, .col-14 {
		clear: left;
		margin-left: 0;
		margin-right: 2.75%;
	}
	.single-post .entry-meta,
	.single-post .entry-thumbnail,
	.single-post .entry-content {
		padding: 0 30px 30px;
	}
	.sidebar .entry-header .entry-meta {
		padding: 0 30px;
	}
	.site-main .sidebar-container {
		height: auto;
		margin: 0 auto;
		position: relative;
		top: 0;
	}
	.site-main .widget-area {
		float: none;
		margin: 0;
		width: 100%;
	}
}
/* Collapse oversized image and pulled images after iPad breakpoint. */
@media (max-width: 767px) {
	.site {
		padding: 0 30px;
	}
	.quick-contact {
		top: 49px;
		right: 110px;
	}
	.quick-contact h6 {
   		font-size: 14px;
	}
	.quick-contact h5 {
   		font-size: 21px;
	}
	.social-media-links{
		right: 30px;
	}
	.nav-menu li a {
		font-size: 19px;
		padding: 0 10px 0 0;
	}
	.nav-menu .sub-menu li a {
		font-size: 13px;
		padding: 6px 8px;
	}
	.entry-content img.alignleft,
	.entry-content .wp-caption.alignleft {
		margin-left: 0;
	}
	.entry-content img.alignright,
	.entry-content .wp-caption.alignright {
		margin-right: 0;
	}
	.attachment .image-navigation,
	.attachment .entry-attachment .attachment {
		max-width: 604px;
		padding: 0;
		width: 100%;
	}
	.block.value {
		width: 50%;
	}
	.block.value#trust {
		clear:none;
	}
	.block.value#change,
	.block.value#fun {
		clear:left;
	}
	.partner .bio .content .column {
		float: none;
		margin:20px 0;
	}
	.partner .bio .content .col-one,
	.partner .bio .content .col-two,
	.partner .bio .content .col-three {
		width: 100%;
	}
	#person_first_name {
		width: 48%;
	}
	#person_first_name {
		width: 48%;
	}
	#person_company {
		width: 48%;
	}
	#person_email_address,
	#mc4wp_email {
		width: 98%;	
	}
	#person_postal_code {
		width: 47%;
	}
	#text-7 input.submit,
	#mc4wp-form-1 input.submit {
		width: 48%;
	}
	#text-8 h3.img-replace a {
		margin: 15px 7%;
	}
	#text-8 h3#icon-instagram {
		clear: left;
	}

}

@media (max-width: 643px) {
	.quick-contact,
	.social-media-links {
		display: none;
	}
	#navbar {
		width: 40%;
		position: absolute;
		height: 100%;
		top: 0;
		right: 0;
	} 
	#site-navigation.toggled-on {
		background: #282828;
		width: 100%;
		height: 100%;
		padding: 120px 5% 20px 5%;
		margin: 0;
		box-shadow: 0px 0px 20px #666666;
		-webkit-box-shadow: 0px 0px 20px #666666;
		-moz-box-shadow: 0px 0px 20px #666666;
	}
	/* Small menu */
	.nav-menu li {
		margin-bottom: 8px;
	}
	.nav-menu li a {
		font-size: 18px;
		color: #ffffff;
		padding: 0;
		margin-bottom: 8px;
	}
	.menu-toggle {
		cursor: pointer;
		display: inline-block;
		font: 300 16px/1.3 "Open Sans", Helvetica, sans-serif ;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 53px;
		right: 30px;
	}
	.menu-toggle:after {
		color: #61a4d7;
		content: "\f419";
		font-size: 36px;
		padding-left: 20px;
	}
	.toggled-on .menu-toggle {
		color: #cccccc;
	}
	.toggled-on .menu-toggle::after {
		color: #ffffff;		
	}
	ul.nav-menu,
	ul.nav-menu > ul {
		font-family: "Open Sans", Helvetica, sans-serif ;		
	}
	.toggled-on .nav-menu,
	.toggled-on .nav-menu > ul {
		display: block;
		margin-left: 0;
		padding: 0;
		width: 100%;
	}
	.toggled-on li,
	.toggled-on .children {
		display: block;
	}
	.toggled-on .nav-menu li > ul {
		display: block;
		float: none;
		position: relative;
		left: auto;
		top: auto;
	}
	.toggled-on .nav-menu li:hover > a,
	.toggled-on .nav-menu .children a {
		color:#eeeeee;
	}
	.nav-menu .sub-menu {
		margin-bottom: 15px;
	}
	.nav-menu .sub-menu li {
		font-size: 14px;
		margin-bottom: 8px;
	}
	.nav-menu .sub-menu li a,
	.nav-menu .sub-menu li ul a {
		width: auto;
		margin-bottom: 5px;
		padding: 3px 0;
		background: none;
		color:#999999;
	}
	.nav-menu .current_page_ancestor > a,
	.nav-menu .current_page_parent > a {
		color: #ffffff;
	}
	#menu-item-3545,
	#menu-item-3546,
	#menu-item-3550 {
		display:none !important;
	}
	ul.nav-menu,
	div.nav-menu > ul {
		display: none;
	}
	.nav-menu ul .current_page_item > a,
	.nav-menu ul .current-menu-item > a {
		background: none;
		color: #FF4000;
	}
	#slideshow {
		overflow: visible;
		height: 240px;
		padding-bottom:35px;
		background: #61a4d7;
	}
	.slide {
		height: auto;
		background-image: none !important;
		background: #61a4d7;
	}
	.speech {
		position: relative;
		top: auto;
	}
	.speech p {
		margin-bottom: 0;
	}
	.question {
		/*
		background: url('images/flag-title-orange.png') bottom left no-repeat;
		padding: 15px 15px 40px 15px;			
		*/
		background: #ff4000;
		left: 0;
		width: 100%;
		padding: 15px;
		
	}
	.question h5 {
		font-size: 20px;
	}
	.answer {
		background-image: none; 
		right: auto;
		width: 100%;
		padding: 15px;
		font-size: 16px;
	}
	.cycle-pager {
		bottom:0;
		padding-top:5px;
		background: #ffffff;
	}
	.entry-title span.flag {
		background: url('images/flag-title-orange.png') bottom left no-repeat;
		padding-bottom: 30px;
		font-size: 30px;
	}
	.split {
		border-left: none;
		margin-left: 0;
		padding-left: 0;
	}
	.split h3 {
		position: relative;
		left: auto;
		width: 100%;
	}
	.split p {
		font-size: 20px;
	}
	.split.intro p {
		font-size: 28px;
		font-weight: 300;
	}
	.partner {
		width: 48%;
		margin: 0 1% 30px 1%;
	}
	.partner h5 {
		font-size: 13px;
		margin: 0 0 3px 0;
	}
	.partner .job-title {
		font-size: 13px;
		margin-bottom: 3px;
	}
	p.reveal {
		font-size: 11px;
	}
	.partner .bio p {
		font-size: 12px;
	}
	.content-middle {
		margin-top: 15px;
	}
	.content-bottom .widget {
		width: 100%;
		margin: 0;
		float: none;
		min-height: 100px;
	}
	.content-bottom .widget p {
		margin-bottom:5px;
	}
	.content-bottom #text-11 {
		margin: 0;
	}
	.error404 .page-title {
		padding: 40px 0 0;
	}
	.error404 .page-title:before {
		content: normal;
	}
	.site-footer .widget {
		width: 100%;
		margin: 0;
	}
	.single-post .entry-meta,
	.single-post .entry-thumbnail,
	.single-post .entry-content {
		padding: 30px;
	}
	.sidebar .entry-header .entry-meta {
		padding: 0 30px;
	}
	.bio .content .column {
		float: none;
	}
	.bio .content .col-one,
	.bio .content .col-two,
	.bio .content .col-three {
		width: 100%;
	}
	.bio .content .col-two {
		margin: 20px 0;
		font-size:14px;
	}

}

/* Mobile devices */
@media (max-width: 359px) {

}


/* 9.0 Print ------------------------------------------------------------------------------------ */

/* Retina-specific styles. */
@media print,
	(-o-min-device-pixel-ratio: 5/4),
	(-webkit-min-device-pixel-ratio: 1.25),
	(min-resolution: 120dpi) {

	.site-header .search-field {
		background-image: url(images/search-icon-2x.png);
	}
}

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}
	footer a[rel="bookmark"]:link:after,
	footer a[rel="bookmark"]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}
	.site {
		max-width: 98%;
	}
	.site-header .home-link {
		max-width: none;
		min-height: 0;
	}
	.site-title {
		color: #000;
		font-size: 21pt;
	}
	.author-avatar,
	.site-footer,
	.entry-meta .edit-link,
	.page-links,
	.site-content nav,
	.widget-area,
	.main-navigation,
	.navbar,
	.more-link {
		display: none;
	}
	.entry-header,
	.entry-content,
	.entry-summary,
	.entry-meta {
		margin: 0;
		width: 100%;
	}
	.page-title,
	.entry-title {
		font-size: 21pt;
	}
	.entry-meta,
	.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.entry-content img.alignleft,
	.entry-content .wp-caption.alignleft {
		margin-left: 0;
	}
	.entry-content img.alignright,
	.entry-content .wp-caption.alignright {
		margin-right: 0;
	}
	.format-image .entry-content .size-full {
		margin: 0;
	}
	.hentry {
		background-color: #ffffff;
	}
}
.categoryHeader{
    width:350px;
}
.pageSidebar ul li{
  height:20px;
  font-size:14px;
  margin-bottom:4px;
}
.site-main .pageSidebar .sidebar-container{
  top:0!important;

}
.site-main .pageSidebar .sidebar-container .widget-area{
  width:40%;
}
