/*
Theme Name: UME
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ume
Tags:

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

UME is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Infinite scroll
12.0 Media
	12.1 Captions
	12.2 Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
	box-sizing: border-box; /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
}
*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

a img {
	border: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

p.person {
	font-size: 14px;
	color: #000;
	margin-top: -40px;
	margin-bottom: 0;
}

p.job {
	font-size: 12px;
	color: #009f62;
	font-style: italic;
	margin-bottom: 0;
}

p.tabjob {
	font-size: 16px;
	color: #009f62;
	font-style: italic;
	margin-bottom: 0;
}

p.tabname {
	font-size: 18px;
	color: #000;
	font-weight: bold;
	margin-bottom: 0;
	margin-top: -100;
	border: 0px solid #000;
}


.personimgtab {
	margin-bottom: 10px;
	margin-top: 5px;
}



@media all and (max-width: 550px) {
	.personimgtab {
		margin-bottom: 10px;
		margin-top: 5px;
	}
  }


.btn_viewengineering {
	display: block;
	margin-left: 50px; 
	margin-right: 650px; 
	margin-top: 40px; 
	float: left;
}

b,
strong {
	font-weight: bold;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

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

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 1.5rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #12a063;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

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

figure {
	margin: 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

.formtable {
	width: 50%;
	
}

.contactlineimg {
	margin: 40px 0px 0px 0px;
	border: 0px solid #000;
	width: 45%;
	height: auto;
}

th {
	font-weight: bold;
}

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

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

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

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

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

input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	box-sizing: content-box;
}

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

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

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}

textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
  color: #009f62;
  text-decoration: none;
}

a:visited {
  color: #009f62;
}

a:hover,
a:focus,
a:active {
  color: #00AF6C;
  text-decoration: none;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	float: left;
	width: 100%;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a {
}

.main-navigation ul ul :hover > a {
}

.main-navigation ul ul a:hover {
}

.main-navigation ul li:hover > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
}


.main-navigation .sub-menu {
	color: #000;
}
 
ul.dropdown  li{
float:left; /* makes horiz list */
position:relative; /* hey Submenu ULs, appear below! */
}
 
ul.dropdown a {
text-decoration:none;
}
 
/* Style the link hover */
ul.dropdown li:hover a {
}
 
/* Displays the link as blocks. */
ul.dropdown li ul a {
display:block;
}
 
/* sub menus!!  */
 
ul.ume-nav ul {
list-style: none;
margin-top:280px; /* Appear just below the hovering list */
padding:0;
width:200px; /* specify the width. */
position:absolute; /* needed */
z-index:9999; /* specify the order */
}
 
ul.ume-nav li ul {
top:27px; /* Positioning:Calc with top level horz list height */
-moz-box-shadow:0 2px 10px #000; /* CSS 3 */
}
 
ul.ume-nav ul ul {
top:0;
left:100%; /* Position the sub menus to right. */
}
 
ul.ume-nav ul li {
float:none; /* umm.. Appear below the previous one. mmkay? */
}
 
/* Drop Down! */
 
/* Hide all the dropdowns (submenus) */
ul.ume-nav ul,
ul.ume-nav li:hover ul ul,
ul.ume-nav ul li:hover ul ul
{ display: none; }
 
/* Display the submenus only when li are hovered */
ul.ume-nav li:hover ul,
ul.ume-nav ul li:hover ul ,
ul.ume-nav ul li ul li:hover ul
{ display: block;}


ul.ume-nav li * a:hover {
/* Change color of links when hovered */
background: url('img/menu-grad-active.png');
border:0px solid #fff;
}



/* Small menu */
.menu-toggle {
	display: none;
}

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

	.main-navigation ul {
		display: none;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

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

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

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

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

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

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

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

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

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

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*UME specific styles*/


/* style for green boxes with bullets */

.btmsystemline {
	position: relative;
  display: inline-block;
	background-color: #d0ece0;
    background-size: 100%;
	border:1px solid #12a063;
	height: 100%;
	width: 100%;
	  padding: 2px;
	margin: 0px 0px 70px 0px;
	overflow: hidden;
}

.btmsystemline img {
	padding: 5px 10px 0px 0px;
}


.btmsystemline ul {
	font-weight: bold;
	font-style: italic;
	color: #009f62;
	font-size: 16px;
}

.btmsystemline h6 {
	font-weight: bold;
	font-style: italic;
	color: #000000;
	font-size: 18px;
	margin: 10px 0px 0px 10px;
}




/*fallback helvetica fonts*/

@font-face {
    font-family: 'xhelvetica';
    src: url('styles/fonts/helvetica-webfont.eot');
    src: url('styles/fonts/helvetica-webfont.eot?#iefix') format('embedded-opentype'),
         url('styles/fonts/helvetica-webfont.woff2') format('woff2'),
         url('styles/fonts/helvetica-webfont.woff') format('woff'),
         url('styles/fonts/helvetica-webfont.ttf') format('truetype'),
         url('styles/fonts/helvetica-webfont.svg#helveticaregular') format('svg');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'xhelveticab';
    src: url('styles/fonts/helvetica_bold-webfont.eot');
    src: url('styles/fonts/helvetica_bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('styles/fonts/helvetica_bold-webfont.woff2') format('woff2'),
         url('styles/fonts/helvetica_bold-webfont.woff') format('woff'),
         url('styles/fonts/helvetica_bold-webfont.ttf') format('truetype'),
         url('styles/fonts/helvetica_bold-webfont.svg#helveticabold') format('svg');
    font-weight: bold;
    font-style: normal;

}




@font-face {
    font-family: 'xhelvetica_condensed';
    src: url('styles/fonts/helvetica-condensed-webfont.eot');
    src: url('styles/fonts/helvetica-condensed-webfont.eot?#iefix') format('embedded-opentype'),
         url('styles/fonts/helvetica-condensed-webfont.woff2') format('woff2'),
         url('styles/fonts/helvetica-condensed-webfont.woff') format('woff'),
         url('styles/fonts/helvetica-condensed-webfont.ttf') format('truetype'),
         url('styles/fonts/helvetica-condensed-webfont.svg#helvetica_condensedmedium') format('svg');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'xhelvetica_condensed';
    src: url('styles/fonts/helvetica-condensed-bold-webfont.eot');
    src: url('styles/fonts/helvetica-condensed-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('styles/fonts/helvetica-condensed-bold-webfont.woff2') format('woff2'),
         url('styles/fonts/helvetica-condensed-bold-webfont.woff') format('woff'),
         url('styles/fonts/helvetica-condensed-bold-webfont.ttf') format('truetype'),
         url('styles/fonts/helvetica-condensed-bold-webfont.svg#helvetica_condensedbold') format('svg');
    font-weight: bold;
    font-style: normal;

}


.top-container {
/*
  background: url('img/top-background.jpg');
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: cover;
*/
  padding-bottom: 255px;
}

body {
  font-family: 'xhelvetica';
  font-size: 16px;
  background: url('img/top-background.jpg');
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-attachment: fixed;
}

/*header*/
.top-header {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 198px;
}

.ume-logo {
  float: left;
  margin-right: -100%;
  margin-left: -3%;
  width: 60%;
border: 1px solid #000
  padding-top: 5px;

}
.ume-subtitle{
  float: left;
  margin-right: -100%;
  margin-left: 40%;
  width: 30%;
  line-height: 198px;
}
.header-top-right{
  float: right;
  width: 30%;
  max-width: 290px;
  margin-top: 25px;
}

.ume-subtitle img{
  margin-left: 20px;
}

.header-top-right h1 {
  font-family: 'xhelvetica';
  font-weight: bold;
  font-size: 29px;
  color: #009f62;
  text-align: right;
  whitespace: nowrap;
}

.news-widget {
  min-height: 60px;
}

.news-widget h2 {
  font-family: 'xhelvetica';
  font-weight: bold;
  font-size: 17px;
  color: #58595b;
}

.news-widget >div  {
  position: relative;
  max-width: 267px;
}

.news-widget input[type='text'] {
  height: 37px;
  line-height: 37px;
  border: 1px solid #12a063;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  padding-right: 40px;
  box-sizing: border-box;
}

.news-widget input[type='submit'] {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 39px;
  background: url('img/email-submit.png');
  background-repeat: no-repeat;
  width: 37px;
  height: 37px;
  box-shadow: none;
  border: 0;
}

.news-widget input[type='submit']:before {
  content: url('img/email-submit.png');
  position: absolute;
  top:1px;
  right: 1px;
}

.ume-social {
  margin-top: 11px;
float: right;
}


.newslettersignup {
border: px solid #000;
margin-right: -25px;
margin-top: 25px;
position: relative;
padding-left: 20px;
}

/*main body*/
.ume-container {
  max-width: 1170px;
  margin: 0 auto;
}

.ume-nav {
  width: 100%;
  height: 70px;
  background: url('img/menu-grad.png');
  border-bottom: 1px solid #c2bebc;
overflow: hidden;
}

.ume-nav ul {
  list-style: none;
  margin: 0;
  padding-left: 10px;
}

.ume-nav li {
  display: block;
  float: left;
  padding: 0px 8px 0px 8px;
margin: 0px;
  line-height: 70px;
  border-right: 2px solid #71c6a1;
  background: url('img/menu-grad.png');
  -webkit-transition: background-image 0.2s ease-in-out;
  transition: background-image 0.2s ease-in-out;
}

.ume-nav li:hover {
  background: url('img/menu-grad-active.png');
}

.menu-item menu-item-type-post_type menu-item-object-page menu-item-13 {
  padding: 0 20px;
  position: relative;
}
li#menu-item-13.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-13 a {
  color: transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  display: block;
  width: 100%;
z-index: 77;
}
li#menu-item-13.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-13 a:hover {
  color: transparent;
}
li#menu-item-13.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-13:before {
  content: url('img/home-icon.png');
  position: relative;
  top: 5px;
}

.ume-nav li.current-menu-item {
  background: url('img/menu-grad-active.png');
}

.ume-nav li a {
  font-family: 'xhelvetica';
  font-weight: bold;
  font-size: 17px;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}

.ume-nav li a:hover {
  color: white;
  text-decoration: none;
}

li#menu-item-245.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-245 {
	height: 67px;
}

li#menu-item-510.menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-has-children.menu-item-510 {
	height: 67px;
}

menu-item-62 {
	color: #FFF;
}

#owl-slideshow .owl-prev {
  background: url('img/slideshow-left.png');
  width: 56px;
  height: 53px;
  border-radius: 0;
  opacity: 1;
}

#owl-slideshow .owl-next {
  background: url('img/slideshow-right.png');
  width: 56px;
  height: 53px;
  border-radius: 0;
  opacity: 1;
}

#owl-slideshow .owl-buttons {
  position: absolute;
  left: 165px;
  bottom: 25px;
}

.featured-solutions {
  background: white;
  margin-top: 8px;
}

.featured-solutions h1 {
  color: #231f20;
  font-size: 26px;
  font-family: 'xhelvetica';
  font-weight: normal;
  line-height: 70px;
  padding-left: 22px;
  text-transform: uppercase;
}

.featured-slider {
  background: #293137;
  text-align: center;
}

#owl-featured {
  padding: 25px 50px 36px;
}

#owl-featured .owl-prev {
  background: url('img/slider-left.png');
  width: 54px;
  height: 71px;
  border-radius: 0;
  opacity: 1;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  left: -24px;
}

#owl-featured .owl-next {
  background: url('img/slider-right.png');
  width: 54px;
  height: 71px;
  border-radius: 0;
  opacity: 1;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  right: -24px;
}

#owl-featured img {
  display: block;
}

/*greenboxes*/

.green-box {
  min-height: 200px;
  width: 16.66666666%;
  display: block;
  float: left;
  margin-right: -100%;
  padding: 0 2px;
}
.green-box:nth-child(1) {
  margin-left: 0%;
}
.green-box:nth-child(2) {
  margin-left: 16.666666%;
}
.green-box:nth-child(3) {
  margin-left: 33.333333%;
}
.green-box:nth-child(4) {
  margin-left: 50%;
}
.green-box:nth-child(5) {
  margin-left: 66.666666%;
}
.green-box:nth-child(6) {
  margin-left: 83.333333%;
}

.green-box > div {
  min-height: 200px;
  border: 1px solid #12a063;
}

.green-box-title {
  background: url('img/green-grad.png');
  height: 84px;
  padding-left: 5px;
}

.green-box-title h1{
  font-size: 18px;
  font-family: 'xhelvetica';
  font-weight: bold;
  margin: 0;
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.33);
  text-transform: uppercase;
  padding-top: 13px;
}

.green-box-title h2{
  font-size: 26px;
  font-family: 'xhelvetica';
  font-weight: bold;
  margin: 0;
  color: #ffc425;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.33);
  text-transform: uppercase;
  margin-top: -9px;
}

.green-box-thumb {
  max-height: 140px;
}

.green-box-thumb img {
  display: block;
  width: 100%;
}

.green-box-text {
  min-height: 258px;
  background: #faf7a3;
  padding: 10px 10px 50px;
  box-sizing: border-box;
  position: relative;
  font-size: 15px;
}

.green-box-text p {
  font-size: 16px;
  color: #58595b;
  line-height: 18px;
  margin-bottom: 15px;
}

.section-two {
  margin-top: -226px;
}

.green-box-read:visited, 
.green-box-read {
  position: absolute;
  bottom: 15px;
  left: 10px;
  display: inline-block;
  height: 32px;
  line-height: 32px;
  color: white;
  background: url('img/readmore-grad.png');
  padding: 0 8px;
  font-size: 16px;
  text-decoration: none;
}

.green-box-read:hover {
  text-decoration: none;
  color: white;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.38);
}

/*news*/

.ume-news-testimonials {
  margin-top: 15px;
}
.ume-news {
  background: white;
  border: 1px solid black;
  width: 46.1538%;
  margin-right: -100%;
  margin-left: 0%;
  float: left;
  font-weight: bold;
  padding-left: 10px;
  box-sizing: border-box;
}
.ume-news h1 {
  font-size: 26px;
  color: #009f62;
  text-transform: uppercase;
  line-height: 45px;
}

.news-excerpt {
  margin-bottom: 30px;
}

.news-excerpt .news-img {
  float: left;
  width: 40%;
  max-width: 187px;
  max-height: 187px;
}

.news-excerpt-text {
  float: right;
  width: 60%;
  padding-right: 10px;
}

.news-excerpt-text h2 {
  font-size: 19px;
  color: #009f62;
  margin-top: -2px;
}

.news-excerpt-text {
  font-weight: normal;
  color: #58595b;
  font-size: 16px;
  line-height: 18px;
  position: relative;
  padding-bottom: 40px;
  min-height: 187px;
}

.news-read:visited, 
.news-read {
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: inline-block;
  height: 32px;
  line-height: 32px;
  color: white;
  background: url('img/readmore-grad.png');
  padding: 0 8px;
  font-size: 16px;
  text-decoration: none;
}

.news-read:hover {
  text-decoration: none;
  color: white;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.38);
}

.ume-testimonials {
  background: white;
  border: 1px solid black;
  margin-left: 48.8%;
  float: left;
  min-height: 200px;
  width: 23.93162%;
  padding-left: 10px;
  position: relative;
  padding-bottom: 8px;
  min-height: 187px;
}

.ume-testimonials h1 {
  font-size: 26px;
  color: #009f62;
  text-transform: uppercase;
  line-height: 45px;
  font-weight: bold;
}

.ume-testimonials p {
  font-weight: normal;
  color: #58595b;
  font-size: 16px;
  line-height: 18px;
  padding-right: 10px;
}

.ume-testimonial {
  position: relative;
}

.ume-testimonial:nth-child(3) {
  margin-top: 15px;
}

.ume-testimonials .news-read {
  position: static;
  margin-top: 8px;
}

.ume-testimonials pre {
  margin: 0 0 3px;
  padding: 0;
  background: inherit;
  font-size: 16px;
  font-family: inherit;
  color: #009f62;
  font-style: italic;
  line-height: normal;
}

.front-side-widget-area {
  background: #FFF;
border: 5px solid #d2eafa;
  padding: 6px;
  width: 23.93162%;
  float: right;
}

.testimonial-widget {
	background: #faf7a3;
 	padding: 10px 10px 50px;
 	box-sizing: border-box;
 	border: 1px solid #12a063;
}


.testimonial-widget pre {
  margin: 0 0 3px;
  padding: 0;
  background: inherit;
  font-size: 14px;
  font-family: inherit;
  color: #009f62;
  font-style: italic;
  line-height: normal;
}


.testimonial-widget h4 {
	color: #12a063;
	font-size: 17px;
	margin: 0px;
	font-weight: bold;
}

p.testimonial-copy {
	color: #000;
	font-size: 14px;
}


.btn_more {
  position: absolute;
  display: inline-block;
  height: 32px;
  line-height: 32px;
  color: white;
  background: url('img/readmore-grad.png');
  padding: 0 8px;
  font-size: 16px;
  text-decoration: none;
margin-top: 10px;
}

.btn_more:visited,
.btn_more:hover {
  position: absolute;
  display: inline-block;
  height: 32px;
  line-height: 32px;
  color: white;
  background: url('img/readmore-grad.png');
  padding: 0 8px;
  font-size: 16px;
  text-decoration: none;
margin-top: 10px;
}


.ume-footer {
  margin-top: 43px;
  background: #293137;
  min-height: 345px;
}

.footer-left {
  float: left;
  margin-right: -100%;
  margin-left: 0;
  width: 46%;
}

.footer-logo {
  float: left;
  width: 167px;
  margin-top: 18px;
  margin-left: 18px;
}

.footer-copyright {
  float: left;
  margin-left: 20px;
  margin-top: 60px;
  color: white;
  font-size: 16px;
  max-width: 200px;
  line-height: 18px;
}

.footer-menus {
  float: right;
  width: 54%;
  text-align: right;
  margin-top: 55px;
}

.footer-menu {
  vertical-align: top;
}

.footer-menu:nth-child(1) {
  display: inline-block;
  width: 180px;
}
.footer-menu:nth-child(2) {
  display: inline-block;
  width: 255px;
}
.footer-menu:nth-child(3) {
  display: inline-block;
  margin-right: 32px;
}

.footer-menus h1 {
  text-align: left;
  font-size: 19px;
  font-weight: bold;
  color: #f6eb14;
}

.footer-menus ul {
  margin: 0;
  text-align: left;
  list-style: none;
  padding-left: 16px;
}

.footer-menus li {
  color: white;
  text-decoration: none;
  position: relative;
  font-size: 16px;
}

.footer-menus li:before {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  left: -15px;
  top: 6px;
  background: #12a063;
}

.footer-menus li a {
  color: white;
  text-decoration: none;
  position: relative;
  font-size: 16px;
}

.footer-menus li a:hover {
  text-decoration: none;
  color: #f6eb14;
}

@media all and (max-width: 1230px) {
  .ume-container,
  .top-header {
    margin: 0 30px;
  }

  .ume-container.section-two {
    margin-top: -226px;
  }
  .footer-left {
    margin: 0 auto;
    float: none;
    width: 450px;
  }

  .footer-menus {
    float: none;
    margin: 0 auto;
    clear: both;
    width: 100%;
    text-align: center;
  }

}
@media all and (max-width: 1230px) and (min-width: 800px){
  .green-box-title h1 {
    font-size: 14px;
    white-space: nowrap;
    padding-top: 18px;
  }
  .green-box-title h2 {
    font-size: 22px;
    white-space: nowrap;
  }
}

@media all and (max-width: 1070px) and (min-width: 800px){
.green-box-title h1 {
font-size: 13px;
padding-top: 20px;
}
.green-box-title h2 {
font-size: 19px;
}
}

@media all and (max-width: 950px) and (min-width: 800px) {
.green-box-title h1 {
font-size: 11px;
}
.green-box-title h2 {
font-size: 15px;
margin-top: -5px;
}
}

@media all and (max-width: 800px) {

  .green-box {
    width: 33.3333%;
    display: block;
    float: left;
    margin-right: -100%;
    margin-bottom: 30px;
    padding: 0 6px;
  }

  .green-box:nth-child(1) {
    margin-left: 0;
  }
  .green-box:nth-child(2) {
    margin-left: 33.3333%;
  }
  .green-box:nth-child(3) {
    margin-left: 66.6666%;
  }
  .green-box:nth-child(4) {
    margin-left: 0;
    clear: left;
  }
  .green-box:nth-child(5) {
    margin-left: 33.3333%;
  }
  .green-box:nth-child(6) {
    margin-left: 0;
    margin-left: 66.6666%;
  }

}

@media all and (max-width: 1120px) {
  .top-header {
    position: relative;
  }

  .ume-subtitle {
    position: absolute;
    margin: 0;
    line-height: normal;
    bottom: 20px;
    width: 240px;
    left: 30px;
  }

  .ume-logo {
    width: 500px;
	border: 0px solid #000;
	margin-top: 20px;
  }

  .header-top-right {
    width: 290px;
  }

}


/*hide main menu*/
@media all and (max-width: 830px) {
  .ume-nav {
    height: 35px;
  }

  #owl-slideshow .owl-next,
  #owl-slideshow .owl-prev {
    width: 42px;
    height: 39.75px;
    background-size: contain;
  }
  .ume-nav ul {
    display: none;
  }
}

@media all and (max-width: 1150px) {
  .ume-testimonials,
  .ume-news {
    clear: both;
    float: none;
    margin: 0 auto;
    width: 100%;
  }

  .news-excerpt {
    width: 50%;
    float: left;
  }

  .news-excerpt .news-img {
    width: 37%;
    margin-right: 3%;
  }

  .ume-testimonials {
    margin-top: 30px;
  }

  .ume-testimonial {
    float: left;
    width: 50%;
  }

  .ume-testimonial:nth-child(3) {
    margin-top: 0px;
  }

  .front-side-widget-area {
    width: 100%;
    float: none;
    margin: 30px auto 0;
  }
}

@media all and (max-width: 800px) {
  .ume-footer .footer-menus .footer-menu {
    display: block;
    width: 250px;
    margin: 0 auto 20px;;
    padding-left: 40px;
  }
}

@media all and (max-width: 500px) {
  .footer-left {
    width: 100%;
  }
  .footer-logo {
    float: none;
    margin: 18px auto;
  }

  .footer-copyright {
    float: none;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
  }

  .ume-footer {
    padding-bottom: 50px;
  }
}


@media all and (max-width: 750px) {
  .ume-logo {
    float: none;
    margin: 10px 0px 0px -30px;
    text-align: center;
	border: 0px solid #000;
	width: 275px;
  }

  .ume-subtitle {
    float: none;
    margin: 0 auto;
    text-align: center;
    position: static;
    margin: 10px auto;
  }

  .ume-subtitle img {
    margin: 0;
  }

  .header-top-right {
    float: none;
    margin: 0 auto;
    text-align: center;
  }

  .ume-social {
    margin-bottom: 10px;
  }

  .header-top-right h1 {
    text-align: center;
  }

  #owl-slideshow .owl-next,
  #owl-slideshow .owl-prev {
    width: 28px;
    height: 26.5px;
  }

  .green-box {
    width: 50%;
    display: block;
    float: left;
    margin-right: -100%;
    margin-bottom: 30px;
    padding: 0 6px;
	font-size: 13px;
  }

  .green-box:nth-child(1) {
    margin-left: 0%;
  }
  .green-box:nth-child(2) {
    margin-left: 50%;
  }
  .green-box:nth-child(3){
    clear: left;
    margin-left: 0%;
  }
  .green-box:nth-child(4){
    clear: none;
    margin-left: 50%;
  }
  .green-box:nth-child(5){
    clear: left;
    margin-left: 0%;
  }
  .green-box:nth-child(6){
    margin-left: 50%;
  }
}

@media all and (max-width: 550px) {
  .ume-container .green-box {
    float: none;
    clear: both;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  }

  @media all and (max-width: 800px) {
  .news-excerpt {
    width: 100%;
    margin: 0 auto 20px;
    clear: both;
  }

  .ume-testimonial {
    clear: both;
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }
}

/* Internal Pages */

.content-body {
  background: white;
  border: 1px solid rgb(170, 170, 170);
  border-top: 0;
}

.archive .top-container,
.error404 .top-container,
.blog .top-container,
.single .top-container,
.page-template-left-sidebar .top-container,
.page-template-right-sidebar .top-container,
.page-template-default .top-container {
  background-position: 50% 0;
  background-size: inherit;
  padding-bottom: 0px;
}

.entry-title {
  color: #009f62;
  line-height: 45px;
  font-size: 30px;
  margin: 15px 0px 0px 0px;
}

.page-featured-image img {
  width: 30%;
border: 1px solid #000;
float: left;
}

h1,
h2,
h3,
h4 {
  color: #009f62;
}

h1 {
  font-size: 36px;
}
h2 {
  font-size: 32px;
}
h3 {
 font-size: .95em;
text-align: left;
font-family: Sans-Serif
}
h4 {
  font-size: 18px;
}


.gallery-boxes {
	max-width: 40%; 
	margin: 10px;
	min-height: 250px!important;
	border: 0px solid #000; 
	display: inline-block; 
	float: left;
	font-family: san-serif;
}

.total-pages_1, .total-pages_3, .total-pages_4, .total-pages_5, .total-pages_6, .total-pages_7 {
	font-family: sans-serif;
}


.content-body article {
  padding: 0 18px 18px 0;
}

/* right sidebar */

.content-body.ume-right-sidebar {
  padding: 18px;
}

.ume-right-sidebar .ume-left {
  float: left;
  clear: left;
  margin-left: 0;
  margin-right: -100%;
  width: 75%;
  padding-right: 15px;
}

.ume-right-sidebar .ume-right {
  float: left;
  margin-left: 75%;
  margin-right: -100%;
  width: 25%;
}

.widget-title {
  font-size: 24px;
}


h1.widget-title {
  font-size: 24px;
background: url('img/menu-grad-active.png');
color: #FFF;
text-transform: uppercase;
padding: 0px 0px 0px 5px;
}

.widget {
	border: 1px solid #12a063;
}

.widget ul {
  margin-left: 18px;
  list-style: none;
padding: 8px 0px 0px 4px;
}

.widget li {
  position: relative;
	padding: 0px 0px 0px 8px;
	font-size: .9em;
}

.widget li:before {
  content: '';
  width: 17px;
  height: 17px;
  position: absolute;
  left: -15px;
  top: 3px;
background: url('img/bullets_widget.jpg');
}

.ume-left-sidebar {
  clear: both;
  padding: 18px;
}

.ume-left-sidebar .ume-left {
  float: left;
  margin-left: 0;
  width: 25%;
  margin-right: -100%;
}

.ume-left-sidebar .ume-right {
  float: left;
  margin-left: 25%;
  width: 75%;
  margin-right: -100%;
  padding-left: 15px;
}

@media all and (max-width: 900px) {
  .content-body .ume-right,
  .content-body .ume-left {
    clear: both;
    margin: 0 auto;
    float: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.entry-content pre {
  margin: 0 0 3px;
  padding: 0;
  background: inherit;
  font-size: 16px;
  font-family: inherit;
  color: #009f62;
  font-style: italic;
  line-height: normal;
}

.ume-below-content {
margin-top: 30px;
}

.ume-breadcrumb {
display: block;
margin-bottom: 10px;
margin-left: 10px;
padding-top: 5px;
font-size: 14px;
color: rgb(106, 106, 106);
text-transform: uppercase;
}


.callout {
	color: #009f62;
	font-weight: bold;
}

 hr.style-one {
	border: 0;
	    height: 1px;
	    background: #009f62;
}

.breadcrumb-trail breadcrumbs {
	text-transform: uppercase;
}

.trail-begin {
	text-transform: uppercase;
	
}

/* dropdownmenu */

.ume-nav > li {
height: 69px;
position: relative;
}

ul.ume-nav > li > ul {
position: absolute;
top: 70px;
margin-top: -3px;
left: -2px;
}

.ume-container {
padding-top: 10px;
}

.ume-nav {
overflow: visible;
}

ul.ume-nav li ul {
border: 2px solid #71c6a1;
border-top: none;
}

ul.ume-nav li ul li {
border: none;
}

ul.ume-nav li ul li a:hover {
background: transparent;
}

@media all and (max-width: 830px) {
.ume-nav {
overflow: hidden;
}


}

.ui-tabs {
	border: 0px solid #000;
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: 0;
	margin-top: -30px;
	margin-left: -50px;
	border: 1px solid #000;
	clear: both;
}
.ui-tabs .ui-tabs-nav {
	margin-right: 0;
	padding: 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin-right: 0;
	border-bottom-width: 0;
	padding: 0;
	border: 0px solid #000;
	height: 230px;
	width: 120px;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	margin-right: 0;
	float: left;
	padding: 0;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	height: 230px;
	border: 0px solid #000;
	width: 120px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: pointer;
	border: 0px solid #000;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
	margin-left: 32px;
	width: 80%;
	clear: left;
}
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
	-webkit-box-shadow: 0 0 5px #aaa;
	box-shadow: 0 0 5px #aaa;
}


#tabs {
border: 0px solid #000;
min-width: 806px;
margin-right: 40px;
}



@media all and (max-width: 550px) {
#tabs {
border: 0px solid #000;
min-width: 300px;
margin-right: 100px;
}
  }


.personimg {
	margin-right: 10px;
	border: 0px solid #000;
}

.icons {
	margin: 2px 5px 0px 0px;
	border: 0px solid #000;
}

.engineering-bullets {
	border: 0px solid #000;
	width: 50%;
	float: left;
}


@media all and (max-width: 550px) {
	.engineering-bullets {
		border: 0px solid #000;
		width: 100%;
		float: left;
  }

}

img.newsimage {
	float: left;
	width: 200px;
	margin-right: 10px;
}


#gal_front_form_7 {
	font-family: san-serif;
	color: red;
}


#bwg_container1_1 #bwg_container2_1 .paging-input_1 {
	font-family: xhelvetica;
}

#bwg_container1_5 #bwg_container2_5 .tablenav-pages_5 {
	font-family: xhelvetica
	color: red;
}

.entry-content {
	    margin-left: 40px;
}
