/*
Theme Name: Crabtree
Author: the Quantum Dynamix team
Text Domain: Crabtree
Version: 1.0
*/

/******************************************************************************/
/*  IMPORTS                                                                   */
/******************************************************************************/
@import url("fonts/aller/stylesheet.css");
/******************************************************************************/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */

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, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
body {
	line-height: 1;
	position: relative;
	background-color: #fff;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	outline: thin dotted;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
	margin-bottom: 1.714285714rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	text-transform: uppercase;
	color: #636363;
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
textarea {
	border: 1px solid #ccc;
	border-radius: 3px;
	font-family: inherit;
	padding: 6px;
	padding: 0.428571429rem;
}
button,
input {
    line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Buttons */
/*.menu-toggle,
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
li.bypostauthor cite span {
	padding: 6px 10px;
	padding: 0.428571429rem 0.714285714rem;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 1.428571429;
	font-weight: normal;
	color: #7c7c7c;
	background-color: #e6e6e6;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
	border: 1px solid #d2d2d2;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
}*/
.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
    cursor: default;
}
/*.menu-toggle:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #5e5e5e;
	background-color: #ebebeb;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: linear-gradient(top, #f9f9f9, #ebebeb);
}*/
/*.menu-toggle:active,
.menu-toggle.toggled-on,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #757575;
	background-color: #e1e1e1;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: linear-gradient(top, #ebebeb, #e1e1e1);
	box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
	border: none;
}*/
li.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	/*max-width: 100%;
	/*height: 181px; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
	max-width: 761px;
	max-height: 181px;
}
.tall-image img.wp-post-image {
	/*max-width: 100%;
	/*height: 181px; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
	max-width: 761px;
	max-height: none;
}
/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}
.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-single + .comments-area,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}

/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 87.5%;
}
body {
	font-size: 14px;
	font-size: 1rem;
	font-family: Helvetica, Arial, sans-serif;
	text-rendering: optimizeLegibility;
	color: #444;
}
body.custom-font-enabled {
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
a {
	outline: none;
	color: #21759b;
}
a:hover {
	color: #0f3647;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}


/* Page structure */
.site {
	padding: 0 24px;
	padding: 0 1.714285714rem;
	background-color: #fff;
}
.site-content {
	/*margin: 24px 0 0;
	margin: 1.714285714rem 0 0;*/
}
.widget-area {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}

/* Header */
.site-header {
	/*padding: 24px 0;
	padding: 1.714285714rem 0;*/
}
.site-header h1,
.site-header h2 {
	/*text-align: center;*/
}
.site-header h1 a,
.site-header h2 a {
	/*color: #515151;
	display: inline-block;
	text-decoration: none;*/
}
.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #21759b;
}
.site-header h1 {
	font-size: 24px;
	font-size: 1.714285714rem;
	line-height: 1.285714286;
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}

/* Navigation Menu */
.main-navigation {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	text-align: center;
}
.main-navigation #menu-main-navigation{
	padding-right: 2px !important;
}
.main-navigation li {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.42857143;
}
.main-navigation li a{
	line-height: 0 !important;
}
.main-navigation .sub-menu li a{
	line-height: 17px !important;
}
.main-navigation a {
	color: #5e5e5e;
}
.main-navigation a:hover {
	/*color: #21759b;*/
}
#sitenav .main-navigation li{
	margin: 24px 55px 0 0!important;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none;
}
.main-navigation ul.nav-menu.toggled-on,
.menu-toggle {
	display: inline-block;
}

/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}

/* Sidebar */
.widget-area .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	word-wrap: break-word;
}
.widget-area .widget h3 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget-area .widget p {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .textwidget ul {
	list-style: disc outside;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.widget-area .textwidget li {
	margin-left: 36px;
	margin-left: 2.571428571rem;
}
.widget-area .widget a {
	color: #757575;
}
.widget-area .widget a:hover {
	color: #21759b;
}
.widget-area #s {
	width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
}

/* Footer */
footer[role="contentinfo"] {
	border-top: 1px solid #ededed;
	clear: both;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	max-width: 960px;
	max-width: 68.571428571rem;
	margin-top: 24px;
	margin-top: 1.714285714rem;
	margin-left: auto;
	margin-right: auto;
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
footer[role="contentinfo"] a {
	color: #686868;
}
footer[role="contentinfo"] a:hover {
	color: #21759b;
}


/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-header {
	/*margin-bottom: 24px;
	margin-bottom: 1.714285714rem;*/
}
.entry-header img.wp-post-image {
	/*margin-bottom: 24px;
	margin-bottom: 1.714285714rem;*/
}
.pageTitle {
	color: #005796;
	margin-bottom: 24px !important;
	margin-top: 0 !important;
 	padding-top: 0px !important;
  	font-size: 16px !important;
	font-family: 'allerbold', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif;
	font-weight: normal;
}
.home .pageTitle {
	margin-bottom: 16px !important;
	margin-top: 5px !important;
}
.home p{
	/*color: #8c8c8b !important;*/
}
.entry-header .entry-title a {
	text-decoration: none;
}
.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.entry-header .comments-link {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.comments-link a,
.entry-meta a {
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #21759b;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}
.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	margin: 24px 0;
	margin: 1.714285714rem 0;
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1 {
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.5;
}
.entry-content h2,
.comment-content h2,
.mu_register h2,
.itemListContainer h2{
	font-size: 14px;
	line-height: 1.6;
	margin-top: -25px;
	margin-bottom: 19px;
	font-family: 'alleritalic', Arial, Helvetica, Verdana, sans-serif; 
	color: #2a2a2a; /*#8c8c8b;*/
	font-weight: normal;
}
.itemListContainer h2{
	margin-top: -21px;
}
.itemListContainer h1{
	margin-top: -5px!important;
}
.entry-content h3,
.comment-content h3 {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.846153846;
}
.entry-content h3, .listItemContent h3{
	font-weight:normal;
}
.entry-content h4,
.comment-content h4 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
}
.entry-content h5,
.comment-content h5 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.846153846;
}

.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}
.entry-content ul,
.comment-content ul,
.mu_register ul {
	list-style: disc outside;
}
.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}
.entry-content li,
.comment-content li,
.mu_register li {
	margin: 0 0 0 36px;
	margin: 0 0 0 2.571428571rem;
}
.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 24px;
	padding: 1.714285714rem;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft {
	margin: 12px 24px 12px 0;
	margin: 0 1.714285714rem 0.857142857rem 0;
}
img.alignright {
	margin: 12px 0 12px 24px;
	margin: 0 0 0.857142857rem 1.714285714rem;
}
img.aligncenter {
	margin-top: 12px;
	margin-top: 0;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}
.site-content article {
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	padding-bottom: 22px;
	padding-bottom: 1.571428571rem;
	border-bottom: 1px solid #ededed;
}
.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 22px;
	margin-top: 1.571428571rem;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts */
article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts */
article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #21759b;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #21759b;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.comments-area li.bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #757575;
}
.template-front-page .widget-area .widget li a:hover {
	color: #21759b;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}


/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}





/* =Print
----------------------------------------------- */

@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 */
	}
	a {
		text-decoration: none;
	}
	.entry-content img,
	.comment-content img,
	.author-avatar img,
	img.wp-post-image {
		border-radius: 0;
		box-shadow: none;
	}
	.site {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	.site-header {
		margin-bottom: 72px;
		margin-bottom: 5.142857143rem;
		text-align: left;
	}
	.site-header h1 {
		font-size: 21pt;
		line-height: 1;
		text-align: left;
	}
	.site-header h2 {
		color: #000;
		font-size: 10pt;
		text-align: left;
	}
	.site-header h1 a,
	.site-header h2 a {
		color: #000;
	}
	.author-avatar,
	#colophon,
	#respond,
	.commentlist .comment-edit-link,
	.commentlist .reply,
	.entry-header .comments-link,
	.entry-meta .edit-link a,
	.page-link,
	.site-content nav,
	.widget-area,
	img.header-image,
	.main-navigation {
		display: none;
	}
	.wrapper {
		border-top: none;
		box-shadow: none;
	}
	.site-content {
		margin: 0;
		width: auto;
	}
	.singular .entry-header .entry-meta {
		position: static;
	}
	.singular .site-content,
	.singular .entry-header,
	.singular .entry-content,
	.singular footer.entry-meta,
	.singular .comments-title {
		margin: 0;
		width: 100%;
	}
	.entry-header .entry-title,
	.entry-title,
	.singular .entry-title {
		font-size: 21pt;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.author-description {
		float: none;
		width: auto;
	}

	/* Comments */
	.commentlist > li.comment {
		background: none;
		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.comments-area article header cite,
	.comments-area article header time {
		margin-left: 50px;
		margin-left: 3.57142857rem;
	}
}
/* Header */
#header {
	height: 68px;
	width: 963px;
}

#header_logo {
	float: left;
	height: 52px;
	width: 328px;
	margin-bottom: 24px;
}
.clientWebSite #header_logo {
	float: right;
	width: 329px;
}
.clientWebSite #masthead{
  overflow: hidden;
  position: relative;
  display:table-cell;
}
.clientWebSite #masthead #header_title_space h2{
  font-family: 'allerbold_italic', Arial, Helvetica, Verdana, sans-serif;
}
#header_logo h1{
	visibility:hidden;
	height: 1px;
	width: 1px;
}
.clientWebSite #masthead #header_container{
  position: absolute;
  right: 0;
  bottom: 0;
}
.clientWebSite #masthead #header_container #header_logo{
  margin-bottom:0; 
}
#header_logo a{
	display:block;
	width:100%;
	height:100%;
	text-decoration:none;	
}
.clientWebSite #fullWrapper{
	margin-top:18px;
}

/* Top Navigation */
#sitenav ul{
	float:right;
}
.submenu ul{
	display:none !important;
}
#masthead{
	height: 68px;
	width: 963px;
}
#sitenav{
	z-index:3000;
}
#sitenav li{
	float: left;
	list-style: none;
	/*width: 140px;*/
	margin-left: 55px;
}
#sitenav .menu-item a{
	border-bottom: 1px solid #949594;
	padding-bottom: 8px !important;
	padding-top: 27px;
	cursor: pointer;
}
.menu-item a{
	text-decoration: none;
	/*color: #737273;	*/
	color: #005596;
	font-family: 'allerbold', Arial, Helvetica, Verdana, sans-serif;
}
#sitenav #menu-main-navigation li:nth-child(1).current-menu-item a,
#sitenav #menu-main-navigation li:nth-child(1).current-menu-parent a,
#sitenav #menu-main-navigation li:nth-child(1).current-menu-ancestor a,
#sitenav #menu-main-navigation li:nth-child(5).current-menu-item a,
#sitenav #menu-main-navigation li:nth-child(5).current-menu-parent a,
#sitenav #menu-main-navigation li:nth-child(5).current-menu-ancestor a,
#sitenav #menu-main-navigation li:nth-child(1) a:hover,
#sitenav #menu-main-navigation li:nth-child(5) a:hover{
	padding-bottom: 6px;
	border-bottom: 3px solid #da2f41;	
}

#sitenav #menu-main-navigation .sub-menu a{
	padding-bottom: 0px!important;
	border-bottom: none!important;	
}
#sitenav #menu-main-navigation li:nth-child(2).current-menu-item a,
#sitenav #menu-main-navigation li:nth-child(2).current-menu-parent a,
#sitenav #menu-main-navigation li:nth-child(2).current-menu-ancestor a,
#sitenav #menu-main-navigation li:nth-child(2) a:hover{
	padding-bottom: 6px;
	border-bottom: 3px solid #55612b;	
}
#sitenav #menu-main-navigation li:nth-child(3).current-menu-item a,
#sitenav #menu-main-navigation li:nth-child(3).current-menu-parent a,
#sitenav #menu-main-navigation li:nth-child(3).current-menu-ancestor a,
#sitenav #menu-main-navigation li:nth-child(3) a:hover{
	padding-bottom: 6px;
	border-bottom: 3px solid #cc5c27;	
}
#sitenav #menu-main-navigation li:nth-child(4).current-menu-item a,
#sitenav #menu-main-navigation li:nth-child(4).current-menu-parent a,
#sitenav #menu-main-navigation li:nth-child(4).current-menu-ancestor a,
#sitenav #menu-main-navigation li:nth-child(4) a:hover{
	padding-bottom: 6px;
	border-bottom: 3px solid #6c297d;	
}
#sitenav .sub-menu{
	background-color: #cc5c27;
	background-image: url('images/dropdownArrow.jpg');
	background-position: center top;
	background-repeat: no-repeat;
	color: #fff;
	min-width: 108px;
	top:52px;
	padding-left: 16px;
	padding-right: 16px;
	/*margin-top: 20px;*/
	/*margin-left: 19px;*/
	padding-bottom: 0;
	padding-top: 22px;
	display:none; /*initially menu item is hidden*/
        position: absolute; /*absolute positioning is important for menu to float*/
	z-index: 4000;	
	overflow: hidden;
}
.ie.ie7 #sitenav .sub-menu{
	top: 40px !important;
}
.ie.ie7 .site-header{
	margin-bottom:20px;
}
.ie.ie8 #sitenav .sub-menu{
	top:43px !important;
}
#menu-main-navigation{
	position:relative;
}
/* Hover effect for menu*/
.menu-main-navigation-container #menu-main-navigation li:hover > ul{ 
	display:block !important;
}
#menu-main-navigation .sub-menu li:hover >ul{
	display: none !important;
}
#sitenav .menu-item .sub-menu .menu-item a{
	color: #fff;
	border-bottom: 0;
	margin-left: 0 !important;
	font-size: 12px;
	font-family: 'allerregular', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif;
	float:left;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	display:block;
	width: 100%;
	text-align: left;
}
#sitenav .menu-item .sub-menu .menu-item a:hover{
	border-bottom: 0 !important;
	padding-bottom: 0 !important;
	text-decoration: underline;
}
#sitenav .sub-menu .sub-menu{
	display:none !important;
}
#sitenav li {
	margin-right: 0 !important;
}
#sitenav li a{
	text-transform: capitalize !important;
}
#sitenav .sub-menu li{
	border-top: 1px solid #bb5629;
	clear:both !important;
	padding-top: 9px;
	padding-bottom: 9px;
	width: 100%;
	margin-top: 0 !important;
	margin-left: 0 !important;
	background-color: #cc5c27;
}
#sitenav .sub-menu li a{
	background-color: #cc5c27;
}
#sitenav .sub-menu li:first-child{
	border-top: 0 !important;
}

#page{
	position: relative;
	width: 963px;
	margin: 45px auto;
	/*overflow: hidden;*/
}
.page-image{
	max-height: 181px;
	max-width: 761px;
	float: right;
	overflow: hidden;
	margin-bottom: 20px;
	height: 181px;
}
.tall-image .page-image{
	max-height: none;
	max-width: 761px;
	float: left;
	overflow: hidden;
	margin-bottom: 20px;
	height: auto;
}
/* Footer */
/*Page footer*/
#footer {
	background-color: #e0dfde;
	height: 24px;
	width: 751px;
	line-height:24px;
	padding-left: 10px;
	font-size: 0.75em;
	margin-left: auto ;
	margin-right: auto ;
	float:right;
	text-transform:uppercase;
	margin-bottom: 10px;
}
#footer .employeeLogin{
	float:right;
	margin-right:16px;
}
.home #footer {
	width: 953px;
	float: left;
	display: block;
	clear: both;
}

#footer p{
	margin: 0px;
	padding: 0px;
	color: #5a5a5b;
	font-family: 'allerbold', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif;
	font-size: 9px;
	line-height: 24px;
}

#footer a{
	color: #e47227;
	font-family: 'allerbold', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif;
}

#footer a:hover{
	color: #005696;
}
#main{
	width: 761px;
	float: right;
}

#comments{
	display:none;
}
#secondary{
	float:right;
	width:190px;
}
p {
	color: #2a2a2a; /*#8c8c8b;*/
	font-size: 13px;
	font-family: 'allerregular', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif;
	line-height: 15px;
}

/* Left Nav */
.home #leftNav{
	display: none;
}
#leftNav h2{
	display: inline;
	font-weight: normal;
}
#leftNav .leftnavParent{
	border-bottom: 1px solid #005796;
	padding-bottom: 5px;
	margin-bottom: 10px;
	display:inline-block;
}
#leftNav h2 a, #leftNav h2{
	text-decoration: none;
	font-weight: normal;
	font-size: 16px;
	font-family: 'allerbold', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif;
	
	color: #005796;	
}
#leftNav h2 a:hover{
	color:#5c5d5d;
}
#leftNav{
	width: 159px;
	background-color: #eeedec;
	float: left;
	/*margin-top: 26px;*/
	padding: 14px 13px;
	/*line-height: 19px;*/
}
#leftNav ul a{
	text-decoration: none;
	color: #5c5d5d;
	font-family: 'allerbold', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif;
	font-size: 13px;
}
#leftNav ul a:hover{
	color:#e47025;
}
#leftNav ul ul{
	text-indent: 12px;
}
#leftNav ul ul ul a{
	margin-left: 10px !important;
}
#leftNav ul ul ul ul a{
	margin-left: 20px !important;
}
#leftNav ul a{
	padding-bottom: 8px !important;
	margin-bottom: 4px !important;
}
.entry-content{
	width: 550px;
	float:left;
	border-right: 1px solid #e0dfde;
	margin-bottom: 20px;
	padding-right: 12px;
}
/* Widget Settings */
.widgetSpace{
	margin-left: 15px;
	float: right;
	width: 180px;
	position: relative;
	margin-bottom: 10px;
}
.widgetSpace ul{
	list-style-type: none;
}
.qdWidgets{

}
.qdWidgets li{

}
.widgetSpace .qdWidgets li:last-child .widget{
	margin-bottom: 0;
}
.widget{
	margin-bottom: 20px;
	padding: 10px;
	display: block;
}
.greyWidget{
	background-color: #e0dfde;
	padding-top: 11px;
	padding-left: 12px;
	padding-right: 7px;
	background-image: url('images/sidebarBG.gif');
	background-repeat: no-repeat;
	background-position: right bottom;
	padding-bottom: 50px;
}
.greyWidget h3{
    font-size: 15px;
    color: #005796;
    margin: 0;
    padding-left: 24px;
    background-image: url('images/sidebarHeaderBG.gif');
    background-repeat: no-repeat;
    background-position: 2px 3px;
    line-height: 1.25;
}
.greyWidget p{
	color: #2a2a2a; /*#8c8c8b;*/
	font-size: 12px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.blueWidget{
	color: #fff;
	background-color: #005596;
	padding-left: 8px;
	padding-bottom: 45px;
}
.blueWidget h3{
	font-size: 14px;
	font-family: 'allerbold', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif;
	margin-bottom: 3px;
	font-weight: normal;
}
.blueWidget p{
	color: #FFF !important;
	padding: 0px;
	margin-top: 0px;
    	margin-bottom: 23px;
	font-size: 12px;
	font-family: 'allerregular', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif;
}
.page .tagsWidget{
	display: none;
}
.project .tagsWidget{
	display: inline;
}

.tagsWidget a{
	font-family: 'allerregular', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif;
	font-size: 13px;
	color: #005a99;
}
.tagsWidget a:hover{
	color: #e47025;
}
.tagsWidget li:after{
	content:",  ";
}
.tagsWidget ul li:last-child:after{
	content:"";
}
.tagsWidget ul{
	margin-top: 12px;
}
.tagsWidget li{
	float:left;
	margin-right: 3px;
	margin-bottom: 5px;
}

.button, .wpcf7-submit {
	display: block;
	float: left;
	line-height: 25px;
	background-color: #e47227 !important;
	/*height: 25px;*/
	box-shadow: 2px 2px 5px #888888;
	padding-left: 10px;
	padding-right: 10px;
	color: #FFF;
	font-size: 12px;
	font-family: 'allerbold', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif;
	text-decoration:none;
	margin-top: 10px;
	margin-bottom: 10px;
	border: 0 !important;
	border-radius: 0;
}

.button:hover, .wpcf7-submit:hover{
	background-color: #a4a2a2 !important;
	color: #fff;	
}
.homeColumn .button{
	position:absolute;
	bottom: 0;
}
#fullWrapper{
	width: 963px;
	display:block;
	float:left;
	overflow: visible;
}
/* Contact Form Styles*/
input, select, textarea { 
  	margin:0; 
 	padding:0; 
 	outline:none; 
	font-family:inherit;
	box-sizing:border-box /* make sure you use the other vendor prefixes */; 
}
.wpcf7 input[type="text"], .wpcf7 textarea{
	/*background-color: #c3c3c3;*/
	color: #5c5d5d;
	border: 1px solid #c3c3c3;
	border-radius: 0;
	/*border: 0 !important;*/
	/*box-shadow: 2px 2px 5px #888888;*/
	max-width: 540px;
	padding: 6px;
	min-width: 350px;
}

.wpcf7-form p, .wpcf7-form label{
	font-size: 14px;
	color:#737273;
}

/*Home Page Styles*/
.home #main{
	width: 100%;
}
.home #homeRoyalSliderContainer{
	width:100%;
	float:left;
	margin-bottom: 15px;
}
.home .homeColumn{
	float:left;
	padding-left: 11px;
	padding-right: 21px;
	margin-right: 15px;
	border-right: 1px solid #e0dfde;
	width: 340px;
	min-height: 200px;
	position: relative;
}
#homeColumnRight{
	margin-right: 0;
	border-right: 0;
}
#homeColumnLeft{
	float:left;
    	position:relative;
    	/*left:72%;*/
    	overflow:hidden;
}
#homeColumnRight{
	float:left;
    	position:relative;
    	/*left:72%;*/
    	overflow:hidden;
}
.home .widgetSpace{
	float:right;
    	position:relative;
    	/*left:72%;*/
    	overflow:hidden;
}



.homeColumnAlign{
	float:left;
    	width:964px;
    	overflow:hidden;
    	/*position:relative;*/
	margin-bottom: 12px;
}
.homeColumnAlignSecond{
	float:left;
    	width:100%;
    	/*position:relative;*/
    	right:32%;
}
.homeColumnAlignThird{
	float:left;
    	width:100%;
    	/*position:relative;*/
    	right:40%;
}
.home .widget{
	margin-bottom: 0;
}

.home .widgetSpace{
	margin-left: 0;
}
/* Home Slide Styles */
#home_side_buttons_container a {
	display: block;
	line-height: 24px;
/*	background-color: #a4a2a2; */
	background-color: #6f6e6e;
	width: 165px;
/*	box-shadow: 2px 2px 2px #80858b;*/
	box-shadow: 2px 2px 2px #4a4949;
	padding-left: 12px;
	color: #FFF;
	font-size: 12px;
	font-family: 'allerbold', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif;
	text-decoration:none;
	margin-bottom: 6px;
	position: relative;
	height: 23px;
}

#home_side_buttons_container a:hover{
	background-color: #e47227;
}

#home_side_buttons_container {
	z-index: 9000;
	float: left;
	margin-left: 1px;
	position: absolute;
	top: 96px;
}

#slideshow {
	z-index: 10;
	display: block;
	height: 411px;
	width: 963px;
	margin-bottom: 12px;
	overflow:hidden;
}
.homecolumns{
	margin-top: 12px;
}
#imageHome{
	border-left: 1px solid #fff;
}
/* Projects Pages */
.sliderContainer{
	width: 761px;
	height: 370px;
	margin-bottom: 20px;
}
.projectCopy{
	float:left;
}
.projectSubtitle{
	font-family: 'allerbold', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif !important;
	color: #2a2a2a; /*#8c8c8b;*/
	margin-top: -20px !important;
	margin-bottom: 12px !important;
	font-size: 15px !important;
}
/* project slider */
.mask{
	float:left;
	width:761px;
	height:370px;
	overflow:hidden;
}
.single-project .mask{
	height: 370px;
}
.rsDefault, .rsDefault .rsOverflow, 
.rsDefault .rsSlide, 
.rsDefault .rsVideoFrameHolder, 
.rsDefault .rsThumbs {
	background: #eeedec !Important;
}
ul.imgHolder{
	position:relative;
	top:0px;
	left:0px;
	width:20000px;/* this width must be total of the images */
}
ul.imgHolder li{
	float:left;
	position:relative;
	top:0px;
	left:0px;
	display:block;
}
ul.imgHolder li img{
	width: 761px;
	height: 296px;
}
ul.thumbHolder{
	position:absolute;
	top:310px;
	left:100px;
}
ul.thumbHolder li { 
	float:left;
	margin:0 5px;
	font: bold 16px arial;
	cursor:pointer;
        background-color:#ccc;
	color:#000;
	padding:10px;
}
ul.thumbHolder li.selected{
	background-color:#f00;
	color:#000;
}
.sliderControl{
	position:absolute;
	top: 400px;
	cursor:pointer;
}
.Bleft{
	left:150px;
	width: 26px;
	height: 38px;
	background-image: url('images/left_arrow.png');
	position:absolute;
	z-index: 10;
	top: 206px;
	left:230px;
}
.Bleft:hover{
	background-image: url('images/left_arrow_hover.png');
}
.Bright{
	left:200px;
	width: 26px;
	height: 38px;
	background-image: url('images/right_arrow.png');
	position:absolute;
	z-index:10;
	top: 206px;
	left: 956px;
}
.ie8 .Bright{
	left: 930px;
}
.ie8 .Bleft{
	left: 215px;
}
.Bright:hover{
	background-image: url('images/right_arrow_hover.png');
}
.thumbHolder {
	display:none;
}

/* Project Category Landing Page */
.projectColumn{
	float: left;
}
#projectLeftColumn{
	width: 341px;
	padding-right: 12px;
	border-right: 1px solid #e0dfde;
}
#projectRightColumn{
	width: 172px;
	padding-right: 12px;
	margin-left: 12px;
}
.projectTaxonomy .entry-content{
	border-right: 0;
}
.projectCatTopStuff{
	width: 100%;
}
.projectTaxonomy .page-image{
	width: 558px;
	height: 297px;
	float:left;
	max-height: none;
	max-width: none;
}
.featuredProjects{
	float:right;
	width: 185px;
	padding-left: 18px;
}
.projectTaxonomy .featuredProjects .button{
	width: 67px;
	margin-top: 0px;
	font-family: 'allerregular', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif;
	font-size: 10px;
	padding-top: 0;
	padding-bottom: 0;
	text-align: center;

}
.projectTaxonomy .featuredProjects .buttonFirst{
	margin-right: 11px;
}
#projectPortfolio>li{
	padding-right: 9px;
	padding-bottom: 8px;
}
#projectPortfolio {
	width: 198px;
}
#projectPortfolio li {
	float: left;
}
.featuredProjects .pageTitle{
	margin-bottom: 10px !important;
}
/*Employee Page*/
#employee_thumbnail_images{
    /*visibility: hidden;*/
    z-index: 2;
    margin-left:0;
    margin-top: -100;
    position: relative;
    overflow:hidden;
    width: 731px;
    float:left;
    height: 243px;
    
}

.employee_thumbnail_page{
    width: 731px;
    height: 243px;
    float: left;
}

#employee_thumbnail_pages{
    width: 10000px;
    position: relative;
    height: 249px;
}

/*  Employee Page Specific Styles */
.active_employee_name {
    width: 146px;
    height: 79px;
    background-color: #e47025;
    color: #ffffff;
    float: left;
    margin-top: 1px;
    padding-left: 14px;
    margin-left: 1px;
    margin-right: 1px;
}

#employee_list_names{
    z-index: 9;
    height: 240px;
  /*  margin-top: -240px; */
    float: left;
    position: relative;
    width: 10000px;
}

.active_employee_name p {
    margin-top: 12px;
    color: #ffffff;
    line-height: 100%;
    font-size: 1.222em;
}

.employee_thumbnail {
    width: 79px;
    height: 79px;
    float: left;
    display: block;
    border: 1px solid #ffffff;
}
.employee_thumbnail img{
	height: 79px;
	width: 79px;
}
.employee_thumbnail:hover {
    border: 1px solid #e47025;
}

#employee_thumbnail_container{
    width: 778px;
    float: left;
    overflow: hidden;
}

#list_container{
    position:relative;
    overflow: hidden;
    height: 230px;
    width: 700px;
    float: left;
    padding-top: 4px;
    padding-left: 20px;
    padding-bottom: 10px;
    padding-right: 0px;
    margin-left: 30px;
    margin-right: 29px;
    background-color: #e47025;
    color: #FFF;
    z-index: 2;
    margin-top: -240px;
    visibility: hidden;
    }



#list_container p{
    margin-top: 0;
    margin-bottom: 0;
    line-height: 170%;
}

#list_container a{
   color: #FFF;
    text-decoration: none;
	font-size: 12px;
}

#list_container a:hover{
    color: #005696;
    text-decoration: none;
}

.employeeLetter {
     font-size: 20px;
     margin-top: 0px;
     margin-bottom: 0;
    }

.employeeLetterDivider{
    color: #FFF;
    background-color: #FFF;
    width: 208px;
    height: 1px;
    border: none;
    margin-top: 2px;
    margin-bottom: 6px;
    margin-left: 0;
    margin-right: 0;
}

.thumb_arrow_left {
    display: table;
    float: left;
    width: 20px;
    margin-left: 7px;
    height: 243px; 
    overflow: hidden;
}

.thumb_arrow_right {
    display: table;
    width: 20px;
    height: 243px;
    overflow: hidden;
 }
.thumb_arrow_left.off,
.thumb_arrow_right.off {
  opacity:0.2; 
}
.thumb_arrow_left.off a,
.thumb_arrow_right.off a {
  cursor:default;
}

.thumb_arrow_left a, .thumb_arrow_right a{
    display: table-cell;
    vertical-align: middle;
}

#employee_thumb_views {
    float:right;
}

.change_view {
    margin-right: 19px;
    margin-top: 9px;
    margin-bottom: 0px;
}

.change_view:hover{
    opacity:0.6;
}

#employee_bio_container {
  float: left;
	display:none;
	min-height: 400px;
	position:relative;
}
#employee_bio_container .empBioCover,
#defaultContent .empBioCover {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #fff url('images/loading.gif') no-repeat center center;
  opacity: 0.7;
  display: none;
}
#empPhoto{
    margin-right: 18px;
    margin-left: 28px;
    width: 241px;
    height: 258px;
    float:left;
}

#employee_bio{
    float: left;
    width: 465px;
    margin-top: 7px;
}

#employee_bio h1 {
    margin-top: 0;
    color: #005796;
    font-size: 1.313em;
    margin-bottom: 4px;
}

#employee_bio p {
    margin-top: 0px;
    margin-bottom: 12px;
    line-height: 140%;
    font-size: 1.063em;
}

#employee_bio hr {
    background: #e0dfde;
    margin-top: 17px;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    height: 1px;
    width: 100%;
    border: 0;
    display: none;
}

#employee_bio h5 {
    margin-top:0;
    margin-bottom:6px;
    font-size: 1.063em;
    font-family: 'allerregular', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif;
    color: #7a7a7a;
    font-weight: normal;
}

.employeeListColumn{
    float:left;
    padding-top:10px;
    margin-right: 26px;
    padding-bottom:10px;
    width: 208px;
}
.peoplePage .entry-content{
	border-right: 0;
	float: right;
	width: 465px;
	margin-top: 20px;
	position:relative;
}
/*Item List Pages*/
.itemListContainer{
	margin-bottom: 20px;
	float: left;
	width: 550px;
}
.listItem{
	float:left;
	border-bottom: 1px solid #297eb3;
	padding:21px;
}
.listItem img{
	width: 79px;
	height: 79px;
	float: left;
	margin-right: 19px;
}
.listItem h2{
	margin-bottom: 5px;
}
.listItem p{
	margin-bottom: 5px;
	margin-top: -4px;
}
.listItem h1 a{
	color: #005696;
	text-decoration: none;
}
.listItem h1 a:hover{
	color: #2a2a2a; /*#8c8c8b;*/
}
.listItemContent{
	float: left;
	width: 410px;
}
.client-list .listItem, .careers .listItem {
	width:508px;
}
.client-list .listItemContent, .careers .listItemContent{
	width: auto !important;
}
.listPage .entry-content{
	border-right: 0;
}
.itemListContainer .paginationNav + .listItem,
.itemListContainer .listItem:first-child{
	border-top: 1px solid #297eb3;
}
.page-template-projectListTemplate-php .itemListContainer .listItem:nth-child(1){
	border-top: 1px solid #297eb3;
	margin-top: 10px;
}
.page-template-projectListTemplate-php .itemListContainer .listItem:nth-child(2){
	border-top: none;
}
.itemListContainer>.listItem:nth-child(even){
	background-color: #f3f1f0;
}
.careers .itemListContainer h3{
	font-family: 'alleritalic', Arial, Helvetica, Verdana, sans-serif;
	color: #005796;
	font-size: 10px;
	margin-top: -7px;
	margin-bottom: 9px;
}
.job-listing .resumeInfo {
	font-family: 'alleritalic', Arial, Helvetica, Verdana, sans-serif;
	color: #005796;
	font-size: 12px;
	margin-top: -7px;
	margin-bottom: 9px;
}
.entry-content ul {
	font-family: 'allerregular', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif;
	color: #2a2a2a; /*#8c8c8b;*/
	font-size: 13px;
	list-style: none;
}
.entry-content li {
	margin-left: 14px;
	list-style-image:url('images/hyphenbullet.gif');
}

.entry-content ul ul{

}
.entry-content ul ul li{
	margin-left: 18px;
}

.paginationNav{
	float: left;
	width: 550px;
	margin-top: 12px;
	margin-bottom: 12px;
}
.paginationNav a{
	display:block;
	width: 15px;
	height: 20px;
	text-indent:-9999px;
}
.navNext {
	float: right;
	margin-right: 5px;
}
.navNext a {
	background-image:url('images/paginationArrows.png');
	background-position-x: 30px;
}
.navNext a:hover {
	background-position-x:15px;
}
.navPrevious {
	float: left;
	margin-left:5px;
}
.navPrevious a{
	background-image:url('images/paginationArrows.png');
	background-position-x:-15px;
}
.navPrevious a:hover{
	background-position-x:-60px;

}
.entry-content h5{
	margin-top: 5px;
	margin-bottom: 5px;
	color: #2a2a2a; /*#8c8c8b;*/
}


#leftNav li a{
	display: none;
}

#leftNav #menu-main-navigation-1 .current-menu-ancestor .sub-menu .current-menu-parent .sub-menu .menu-item .sub-menu a,
#leftNav #menu-main-navigation-1 .current-menu-ancestor .sub-menu .menu-item .sub-menu a,
#leftNav #menu-main-navigation-1 .current-menu-ancestor .sub-menu .menu-item a,
#leftNav li.current-menu-ancestor a,
#leftNav li.current-menu-item a{
	display: none;
}

#leftNav .leftSideNav #menu-main-navigation-1 .current-menu-parent .sub-menu .menu-item .sub-menu .menu-item .sub-menu .menu-item a{
	display: none;
}

#leftNav #menu-main-navigation-1 .current-menu-ancestor .sub-menu .current-menu-parent .sub-menu .current-menu-item .sub-menu a,
#leftNav #menu-main-navigation-1 .current-menu-ancestor .sub-menu .current-menu-parent .sub-menu a,
#leftNav #menu-main-navigation-1 .current-menu-ancestor .sub-menu .current-menu-item .sub-menu a,
#leftNav #menu-main-navigation-1 .current-menu-ancestor .sub-menu .current-menu-item .sub-menu a,
#leftNav #menu-main-navigation-1 .current-menu-ancestor .sub-menu a,
#leftNav #menu-main-navigation-1 .current-menu-ancestor .sub-menu .menu-item a,
#leftNav #menu-main-navigation-1 .current-menu-ancestor .sub-menu .current-page-ancestor a,
#leftNav #menu-main-navigation-1 .current-menu-ancestor .sub-menu .current-page-parent a,
#leftNav li.current-menu-parent .sub-menu a,
#leftNav li.current-menu-ancestor .sub-menu a,
#leftNav li.current-menu-item .sub-menu a{
	display: block;
	text-indent: 0;
}
#leftNav #menu-main-navigation-1{
	/*margin-top: -12px;*/
}
#leftNav li.current-menu-item .sub-menu li,
#leftNav li.current-menu-item .sub-menu a{
	display: block;
}

#leftNav #menu-main-navigation-1 .current-menu-ancestor .sub-menu .current-menu-parent .sub-menu a,
#leftNav #menu-main-navigation-1 .current-menu-ancestor .sub-menu .current-menu-item .sub-menu a{
	margin-left: 10px;
}

#leftNav #menu-main-navigation-1 .current-menu-ancestor .sub-menu .current-menu-parent .sub-menu .current-menu-parent .sub-menu a,
#leftNav #menu-main-navigation-1 .current-menu-ancestor .sub-menu .current-menu-parent .sub-menu .current-menu-item .sub-menu a,
#leftNav #menu-main-navigation-1 .current-menu-ancestor .sub-menu .current-menu-item .sub-menu .current-menu-item .sub-menu a,
#leftNav #menu-main-navigation-1 .current-menu-ancestor .sub-menu .current-menu-item .sub-menu .menu-item .sub-menu a{
	margin-left: 20px;
}

.page-template-projectListTemplate-php #leftNav .leftSideNav #menu-main-navigation-1 .menu-item-object-custom .sub-menu .menu-item .sub-menu a{
	display:none!important;
}

.tag-archive #leftNav #menu-main-navigation-1 li.menu-item-type-custom .sub-menu .menu-item a{
	text-indent: 0;
	display: block;
}
.tag-archive #leftNav #menu-main-navigation-1 li.menu-item-type-custom .sub-menu .menu-item .sub-menu a{
margin-left: 10px;
}

.tag-archive #leftNav #menu-main-navigation-1 li.menu-item-type-custom .sub-menu .menu-item .sub-menu .menu-item .sub-menu a{
	display:none;
}

.tag-archive #leftNav #menu-main-navigation-1 li.menu-item-type-custom a{
	display:none;
}


.tag-archive #leftNav #menu-main-navigation-1 .menu-item-370 .sub-menu a{
	display:block!important;
}

.tag-archive #leftNav #menu-main-navigation-1 .menu-item-370 .sub-menu .sub-menu a{
	display:none!important;
}




.page-template-projectListTemplate-php #leftNav #menu-main-navigation-1 li.menu-item-type-custom .sub-menu .menu-item a{
	text-indent: 0;
	display: block;
}
.page-template-projectListTemplate-php #leftNav #menu-main-navigation-1 li.menu-item-type-custom .sub-menu .menu-item .sub-menu a{
margin-left: 10px;
}

.page-template-projectListTemplate-php #leftNav #menu-main-navigation-1 li.menu-item-type-custom .sub-menu .menu-item .sub-menu .menu-item .sub-menu a{
	display:none;
}

.page-template-projectListTemplate-php #leftNav #menu-main-navigation-1 li.menu-item-type-custom a{
	display:none;
}











.aboutSinglePost #leftNav .leftSideNav #menu-main-navigation-1 .menu-item-object-page a{
	display:none;
}

.aboutSinglePost #leftNav .leftSideNav #menu-main-navigation-1 .menu-item-82 .sub-menu a{
	display:block;
	text-indent: 0;
}

.aboutSinglePost #leftNav .leftSideNav #menu-main-navigation-1 .menu-item-82 .sub-menu .sub-menu a{
	display:none;
}

.aboutSinglePost #leftNav .leftSideNav #menu-main-navigation-1 .menu-item-82 .sub-menu .menu-item-232 .sub-menu a{
	display:block;
	margin-left: 10px;
}



.employmentNavContainer .aboutSinglePost #leftNav .leftSideNav #menu-main-navigation-1 .menu-item-object-page a{
	display:none;
}

.employmentNavContainer .aboutSinglePost #leftNav .leftSideNav #menu-main-navigation-1 .menu-item-82 .sub-menu a{
	display:block;
	text-indent: 0;
}


.employmentNavContainer .aboutSinglePost #leftNav .leftSideNav #menu-main-navigation-1 .menu-item-82 .sub-menu .sub-menu a{
	display:none;
}

.employmentNavContainer .aboutSinglePost #leftNav .leftSideNav #menu-main-navigation-1 .menu-item-82 .sub-menu .menu-item-233 .sub-menu a{
	display:block;
	margin-left: 10px;
}

.tax-project_tag .entry-content .pageTitle {
	margin-bottom: 0!important;
}
.tax-project_tag .entry-content{
	margin-bottom: 0!important;
	padding-bottom: 0!important;
}

.tagArchive .widgetSpace .widget{
	display:block;
}

#header_title_space{
	float:left;
}
.site-header #header_title_space h2{
	font-family: 'alleritalic', Arial, Helvetica, Verdana, sans-serif;
	font-size: 14px;
	float:left;
}
.site-header #header_title_space .pageTitle{
	margin-bottom:0!important;
	margin-top: 55px !important;
}
/* Client Websites Styles */


.entry-content .flexGallery li{
	float:left;
	padding: 10px;
	list-style-type: none;
	list-style-image: none;
	margin:0;
	text-indent:0;
}
.entry-content .flexGallery {
	min-height: 115px;
	float:left;
}
.entry-content .flexGallery ul li:first-child{
	/*padding-left: 0;*/
}
.entry-content .flexFile{
	min-height: 75px;
}
.entry-content .flexFile .button{
	padding-left: 25px;
	background-image:url('images/downloadArrow.gif');
	background-repeat:no-repeat;
	background-position: 7px 50%;
}
.entry-content .flexFile .button:hover{
	background-image:url('images/downloadArrowHover.gif');
}
.entry-content .flexibleContainer div{
	clear:both;
}

#header_client_logo {
	padding-right: 12px;
	display: inline-block;
  vertical-align: bottom;
}
.clientWebSite #header_title_space{
	float:none;
	display:inline-block;
	vertical-align:bottom;
}
.clientWebSite #header_title_space .pageTitle{
  margin-bottom: 4px !Important;
  margin-top:0 !Important; 
}
.clientWebSite #header_title_space h2{
  line-height:1 !Important;
}

.clientWebSite #leftNav li a{
	display: block;
}
.notFound #leftNav li a{
	display: block !important;
}
.notFound #leftNav .sub-menu li a{
	display:none!important;
}
.tagFilters h2,
.single-project .entry-content h2,
.widgetSpace .projectSpecs h2{
	font-family: 'allerbold', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif;
	font-size: 14px;
	margin-top: 0px;
	margin-bottom: 0;
}
.tagFilters{
	float:right;
	width: 180px;
}
.tagFilters h2,
.widgetSpace .projectSpecs h2{
	color: #005796;
	margin-bottom: 10px;
	margin-top: 10px;
	font-size: 16px;
}
.widgetSpace .projectSpecs h2:first-child{
	margin-top: 0;
}
.ie #sitenav .sub-menu{
	top: 43px;
}

.ie a:active, .ie a:selected, .ie a:visited, .ie a:focus { 
    border: none;
    outline: none;
}
a {
   outline: 0;
}
#leftNav .leftSideNav .menu li a{
	margin-bottom: 4px;
}
#leftNav .leftSideNav .menu li .sub-menu li .sub-menu li a{
	font-family: 'allerregular', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif !important;
}

.tax-project_category #leftNav .leftSideNav .menu .menu-item-370 .sub-menu .menu-item-object-project_category a{
	display:none!important;
}

.tax-project_category #leftNav .leftSideNav .menu .menu-item-370 .sub-menu .current-menu-parent .sub-menu li a{
	display:block!important;
}
.tax-project_category #leftNav .leftSideNav .menu .menu-item-370 .sub-menu .current-project_category-ancestor a{
	display:block!important
}
.tax-project_category #leftNav .leftSideNav .menu .menu-item-370 .sub-menu .current-menu-parent .sub-menu .menu-item .sub-menu a{
	display:none!important;
}
.tax-project_category #leftNav .leftSideNav .menu .menu-item-370 .sub-menu .current-menu-parent .sub-menu .current-menu-item .sub-menu a{
	display:block!important;
}
.tax-project_category #leftNav .leftSideNav .menu .menu-item-370 .sub-menu .current-menu-item a{
	display:block!important;
}
.tax-project_category #leftNav .leftSideNav .menu .menu-item-370 .sub-menu .current-menu-item .sub-menu .sub-menu li a{
	display:none!important;
}


.single-project #leftNav .leftSideNav .menu .menu-item-370 .sub-menu li a{
	display:none!important;
}



.single-project #leftNav .leftSideNav .menu .menu-item-370 .sub-menu .current-project-ancestor .sub-menu .current-project-ancestor a{
	display:block!important;
}
.single-project #leftNav .leftSideNav .menu .menu-item-370 .sub-menu .current-project-ancestor a{
	display:block!important;
}
.single-project #leftNav .leftSideNav .menu .menu-item-370 .sub-menu .current-project-ancestor .sub-menu .menu-item .sub-menu a{
	display:none!important;
}
.single-project #leftNav .leftSideNav .menu .menu-item-370 .sub-menu .current-project-ancestor .sub-menu .current-menu-parent .sub-menu a{
	display:block!important;
}
.single-project #leftNav .leftSideNav .menu .menu-item-370 .sub-menu .current-project-ancestor .sub-menu a{
	margin-left:10px;
}
.single-project #leftNav .leftSideNav .menu .menu-item-370 .sub-menu .current-project-ancestor .sub-menu .current-menu-parent .sub-menu .menu-item a{
	margin-left: 20px!important;
}
#leftNav .leftSideNav .current-menu-item a{
	color: #e47227;
}
#leftNav .leftSideNav .current-menu-item .sub-menu a{
	color: #5c5d5d;
}
#leftNav .leftSideNav .current-menu-item .sub-menu a:hover{
	color: #e47227;
}

.awardsList .awardTitle h1{
	color: #005796;
	font-family: allerbold, Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif;
	font-size: 18px;
	margin-top: 60px!important;
	margin-bottom: 5px!important;
	font-weight: normal;
	line-height: 1.3em;
}
.awardsList .awardTitle:nth-child(1) h1{
	margin-top:0!important;
}
.awardTitle{
	float:left;
}
.awardsList .awardCategoryList .listItem:nth-child(1){
	border-top: 1px solid #297eb3;
}
.awardsList .awardCategoryList .listItem:nth-child(odd){
	background-color: #f3f1f0;
}
.itemListContainer{
	margin-top: -44px;
}
.sliderOverlay{
	z-index: 1000;
	width: 970px;
	height: 411px;
	position: absolute;
	left: 21px;
}
.homecolumns p{
	font-size: 12px;
	line-height: 14px;
}
#projectPortfolio a img{
	border: 1px solid #ffffff;
}

#projectPortfolio a img:hover{
	border: 1px solid #e47025;
}
#leftNav .leftSideNav #menu-main-navigation-1 a{
	line-height: 15px !important;
	padding-bottom: 8px !important;
}
.listPage .widgetSpace {
	margin-top: 47px;
}
.page-template-employment_list_template-php .listPage .widgetSpace{
	margin-top: 0;
}

#footer li {
	float:left;
	padding-right: 5px;
	padding-left: 5px;
}
#footer li a{
	padding-left: 9px;
	text-decoration: underline;
}
#footer li:first-child a{
	padding-left: 0;
}

#footer li:before {
	content: '|';
	
}
#footer li:first-child:before {
	content: '';
}

#lowerFooter{

	margin-bottom: 15px;

	width: 761px;
	float:right;
}
.home #lowerFooter{
	float: left;
	width: 100%;
}
#lowerFooter p{
	color: #acacac !important;
	font-size: 11px;
	float:left;
}
#lowerFooter #socialMedia{
	float: right;
	
}
#lowerFooter #socialMedia a{
	text-decoration: none;
}

.blueWidget h3 a{
	color: white;
	text-decoration: none;
}
.blueWidget h3 a:hover{
	color: white;
	text-decoration: underline;
}

#lowerFooter a{
	height: 25px;
	display: block;
	float: left;
}
#lowerFooter .facebookButton{
	width: 27px;
/*	background-image: url('images/facebookFooterIcon.png');*/
	background-image: url('images/facebookIconBlue.png');
	background-repeat: no-repeat;
	background-position-y: 0;
}
#lowerFooter a:hover{
	background-position-y: -25px;
}
#lowerFooter .twitterButton{
	width: 38px;
/*	background-image: url('images/twitterFooterIcon.png');*/
	background-image: url('images/twitterIconBlue.png');
	background-repeat: no-repeat;
	background-position-y: 0;
}
#lowerFooter .youtubeButton{
	width: 25px;
	background-image: url('images/youtubeIcon.png');
	background-repeat: no-repeat;
	background-position-y: 0;
}
#lowerFooter .linkedinButton{
	width: 25px;
	background-image: url('images/linkedInIcon.png');
	background-repeat: no-repeat;
	background-position-y: 0;
	margin: 0 3px 0 1px;
}
.projectSpecs h3{
	color: #2a2a2a; /*#8c8c8b;*/
}
.widgetHolder{
	width: 180px;
	float:right;
}

.widgetSpace .projectSpecs p{
	line-height: 18px;
	margin-bottom: 14px;
}
.rightSidebar{
	width: 180px;
	float: right;
	margin-top: 20px;
}
.tagFilters a{
	font-size: 13px;
}

.page-template-projectListTemplate-php .leftSideNav .sub-menu .sub-menu a{
	margin-left: 10px;
}

.longButton{
	width: 167px !important;
	font-size: 12px !important;
}
#clientSiteNav li a{
	margin-bottom: 10px;
}
.royalSlider {
  width: 100% !Important;
}
.rsDefault .rsArrowIcn {
  background:none !Important;
  width:26px !Important;
  height:38px !Important;
  opacity:0.5;
}
.rsDefault .rsArrowIcn:hover{
  opacity:1;
}
.rsDefault .rsArrowLeft .rsArrowIcn {
  background-image:url('images/left_arrow_hover.png') !Important;
}
.rsDefault .rsArrowRight .rsArrowIcn {
  background-image:url('images/right_arrow_hover.png') !Important;
}
.projectRightContainer{
	width: 198px;
	float: left;
	overflow:hidden;
}

#sitenav{
	margin-bottom: 26px;
	margin-top: 0;
	float: right;
}
#sitenav .sub-menu{
	top: 80px;
}
#sitenav .standardNav > .menu-item{
	display: inline-block;
}
#sitenav .standardNav > .menu-item > a{
	line-height: normal !important;
	display: inline-block;
	margin-bottom: 1px;
}
#sitenav .standardNav > .menu-item > .sub-menu{
	top: 78px !important;
}
#sitenav .standardNav > .menu-item:hover > a{
	padding-bottom: 6px !important;
}
#home_side_buttons_container{
	top: 15px;
}
#home_images{
	position: relative;
}
/******************/
/* RESPONSIVE CSS */
/******************/  
.mobile{
  display:none; 
}
@media only screen and (max-width: 550px) {
  .mobile {
    display:block;
  }
  html, #page, #fullWrapper, #masthead, #footer, #lowerFooter {
   width:100% !important; 
  }
  body{
   width:auto;
   padding: 0 15px; 
  }
  #page{
   margin: 0;
   padding: 0;
  }
  .widgetSpace{
   display:none; 
  }
  #masthead{
   height:auto;
   margin-bottom:20px; 
  }
  .standardNav{
   display:none; 
  }
  .mobileNav select{
   width:100%; 
  }
  #footer{
   height:auto;
   padding-top:6px; 
   border-top:4px solid #e0dfde;
   padding-left:0;
   float:none;
   clear:both;
   background:none;
  }
  #footer li {
    float:none;
    padding-right:0;
    padding-left:0;
  }
  #footer li:before {
    content:''; 
  }
  #footer li a {
    padding:0;
  }
  #footer .employeeLogin {
   float:none;
   margin-right:0; 
  }
  #socialMedia{
    display: block;
    clear: both;
    padding-top: 10px;
    margin-left: -9px;
    float:none;
  }
  /*************/
  /* HOME PAGE */
  /*************/
  
  .home #slideshow{
    display:none;
  }
  .home #mainstage img{
    width:100%; 
  }
  .home #homeColumnLeft,
  .home #homeColumnRight,
  .home #homeColumn{
    float:none; 
  }
  .home .homeColumn{
    padding:0;
    margin-right:0;
    border-right:none;
    width:100%;
    min-height:auto;
  }
  .home .homeColumn:first-child{
    border-bottom:1px solid #e0dfde;
    margin-bottom:15px;  
  }
  .home .homeColumnAlign{
    width:100% 
  }
  .homeColumn .button{
    position:static;
    margin:15px 0; 
  }
  
  /******************/
  /* INTERIOR PAGES */
  /******************/
  #leftNavContainer{
   display:none; 
  }
  .entry-content{
    width:100%;
    border-right:none;
  }
  #main{
   width: 100%;
   float:none;
  }
  .page-image{
   width:100% !Important; 
   height:auto !Important;
  }
  .page-image img{
    max-width:100%
  }
  .entry-header img.wp-post-image{
   margin-bottom:0 !Important; 
  }
  
  /*****************/
  /* PROJECT PAGES */
  /*****************/
  .featuredProjects{
   display:none; 
  }
  .projectColumn{
   float:none;
   width:100%; 
  }
  #projectDropdown select{
   width:100%; 
  }
  .single-project .entry-content{
   margin-bottom:0; 
  }
  .single-project .sliderContainer,
  .single-project .sliderContainer.mask {
   width:100%; 
   height: auto;
  }
  .single-project .widgetHolder {
    width:100%;
    float:none;
    clear:both;
  }
  .widgetSpace.projectInfo{
   display:block;
   margin-left:0;
   float:none;
  } 
  .single-project #projectDropdown{
    margin-bottom:20px;
  }
  
  /***************/
  /* PEOPLE PAGE */
  /***************/
  .thumb_arrow_left,
  .thumb_arrow_right,
  #employee_thumb_views,
  #employee_thumbnail_pages,
  #employee_thumbnail_images
  {
    display:none;
  }
  #employee_thumbnail_container{
   width:100%; 
  } 
  #list_container{
    display:block;
    visibility:visible;
    margin-left:0;
    margin-right:0;
    padding:10px 20px 20px 20px;
    width:auto;
    position:inherit;
    overflow:auto;
    height:auto;
    float:none;
    z-index:auto;
    margin-top:0;
  }
  #employee_list_names{
   z-index:auto;
   height:auto;
   float:none;
   position:inherit;
   width:auto; 
  }
  .employeeListColumn{
   float:none;
   width:100%; 
   padding-top:0;
   padding-bottom:0;
  }
  .employeeLetterDivider{
    width:100%;
  }
  .employeeLetter{
    margin-top:10px;
  }
  .peoplePage .entry-content {
    float:none;
    width:auto;
    clear: both;
    padding-top: 20px;
  }
  #employee_bio_container {
   float:none;
   clear:both;
   padding-top:20px;
  }
  #empPhoto {
    margin-left:0;
    height:auto;
    width:100%;
  }
  #empPhoto img{
    max-width:100%; 
  }
  #employee_bio {
    width:auto;
    clear: both;
    padding-top:25px; 
  }
  #scrollLoc{
   clear:both; 
  }
  
  /**************/
  /* LIST PAGES */
  /**************/
  .itemListContainer {
    width:100%;
  }
  .itemListContainer .listItem img {
    display:none; 
  }
  .itemListContainer .listItem .listItemContent{
    width:auto;
    float:none; 
  }
  
  /***************/
  /* AWARDS PAGE */
  /***************/
  .awardCategoryList{
    width: 100%;
    clear: both;
    overflow: hidden;
  }
  .awardCategoryList .listItem{
    width:100%; 
    padding:0;
  }
  .awardCategoryList .listItem img{
    display:block; 
    padding: 15px 21px 0 21px;
  }
  .awardCategoryList .listItem .listItemContent{
    padding: 15px 21px;
    clear: both;
  }
  .awardCategoryList .listItem .listItemContent h1{
    margin-bottom: 13px !Important;
  }  
  
  /************************/
  /* CLIENT PROJECT SITES */
  /************************/
  .client-list .listItem{
    width:100%;
    padding:0;
  }
  .client-list .listItemContent{
    padding: 21px 21px 63px 21px;
  }
  .clientWebSite #header_client_logo img{
    max-width:100%; 
  }
  .clientWebSite #header_container{
    display:none; 
  }
  .clientWebSite #header_title_space{
    float: none;
    clear: both;
    overflow: hidden; 
  }
  .site-header #header_title_space .pageTitle {
    margin-top: 0 !Important; 
  }
  .clientWebSite #masthead {
    height:auto; 
    padding: 20px 0;
  }
}

/* Client Testimonials Styles */
#testimonialsContainer{
	width: 100%;
	overflow: hidden;
	float:left;
}
#testimonialsContainer .testimonialContainer{
	margin-bottom: 35px;
	overflow: hidden;
}
#testimonialsContainer .testimonialImage{
	height: 290px;
	width: 435px;
}
#testimonialsContainer .testimonialText{
	width: 286px;
	padding: 15px;
	background-color: #005796;
	color: #fff;
}
#testimonialsContainer .testimonialText p{
	color: #fff;
}
.leftPhoto,
.leftText{
	float:left;
}
.rightPhoto,
.rightText{
	float:right;
}
#testimonialsContainer a{
	color: #fff;
	text-decoration: none;
}
#testimonialsContainer a:hover{
	text-decoration: underline;
}
#testimonialsContainer .testimonialTitle{
	font-size: 18px;
	margin-bottom: 5px;
}
#testimonialsContainer .testimonialSubhead{
	font-size: 13px;
	font-style:italic;
	font-weight: normal;
	margin-bottom: 5px;
}
#testimonialsContainer  .projectName{
	padding-left: 47px ;
    	text-indent: -47px ;
	margin-bottom: 10px;
}
#testimonialsContainer p{
	font-size: 13px;
	line-height: 18px;
}
.single-news #menu-main-navigation-2 a,
.single-event #menu-main-navigation-2 a{
	display: block !important;
}
.single-event #menu-main-navigation-2 .sub-menu a,
.single-news #menu-main-navigation-2 .sub-menu a{
	font-family: 'allerregular', Arial, Helvetica, Verdana, 'Lucida Grande', sans-serif !important;
}