/*
Theme Name: WP Theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0
License: GNU General Public License
License URI: license.txt
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.

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/
*/


/* =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 centred 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/ */
}
body {
	background: #fff;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
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 { /* Improves readability when focused and also mouse hovered in all browsers people.opera.com/patrickl/experiments/keyboard/test */
	outline: 0;
}
a img {
	border: 0;
}


/* =Global
----------------------------------------------- */

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

/* Headings */
h1,h2,h3,h4,h5,h6 {
	clear: both;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

/* Text elements */
p {
	margin-bottom: 1.5em;
}
ul, ol {
	margin: 0 0 1.5em 3em;
}
ul {
	list-style: disc;
}
ol {
	list-style: decimal;
}
ul ul, ol ol, ul ol, ol ul {
	margin-bottom: 0;
	margin-left: 1.5em;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 1.5em 1.5em;
}
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;
	padding: 1.6em;
	overflow: auto;
	max-width: 100%;
}
code, kbd, tt, var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
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%;
}
figure {
	margin: 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
th {
	font-weight: bold;
}
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
	*vertical-align: middle; /* Improves appearance and consistency in all browsers */
}
button,
input {
	line-height: normal; /* Addresses FF3/4 setting line-height using !important in the UA stylesheet */
	*overflow: visible;  /* Corrects inner spacing displayed oddly in IE6/7 */
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid #ccc;
	border-color: #ccc #ccc #bbb #ccc;
	border-radius: 3px;
	background: #fafafa; /* Old browsers */
	background: -moz-linear-gradient(top,  #fafafa 60%, #e6e6e6 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%,#fafafa), color-stop(100%,#e6e6e6)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #fafafa 60%,#e6e6e6 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #fafafa 60%,#e6e6e6 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #fafafa 60%,#e6e6e6 100%); /* IE10+ */
	background: linear-gradient(top,  #fafafa 60%,#e6e6e6 100%); /* W3C */
	/* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#e6e6e6',GradientType=0 ); */ /* IE6-9 */
	box-shadow: inset 0 2px 1px #fff;
	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.4rem;
	padding: 1.12em 1.5em .88em;
	text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
button:hover,
html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: #f5f5f5; /* Old browsers */
	background: -moz-linear-gradient(top,  #f5f5f5 60%, #dcdcdc 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%,#f5f5f5), color-stop(100%,#dcdcdc)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f5f5f5 60%,#dcdcdc 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f5f5f5 60%,#dcdcdc 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f5f5f5 60%,#dcdcdc 100%); /* IE10+ */
	background: linear-gradient(top,  #f5f5f5 60%,#dcdcdc 100%); /* W3C */
	/*
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#dcdcdc',GradientType=0 ); */ /* IE6-9 */
	border-color: #bbb #bbb #aaa #bbb;
}
button:focus,
html input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
html input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb #bbb;
	box-shadow: inset 0 2px 3px rgba(0,0,0,.15);
	box-shadow: inset 0 2px 2px rgba(0,0,0,.15);
}
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box; /* Addresses box sizing set to content-box in IE8/9 */
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input[type=text],
input[type=email],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
	color: #111;
}
input[type=text],
input[type=email] {
	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 */
	width: 98%;
}

/* Links */
a {
	color: royalblue;
}
a:visited {
	color: purple;
}
a:hover,
a:focus,
a:active {
	color: midnightblue;
}

/* Alignment */
.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;
}

/* Text meant only for screen readers */
.assistive-text {
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}


/* =Menu
----------------------------------------------- */

.main-navigation {
	clear: both;
	display: block;
	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 {
	-moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	display: none;
	float: left;
	position: absolute;
		top: 1.5em;
		left: 0;
	z-index: 99999;
	
	background-color:#fff;
}
.main-navigation ul ul ul {
	left: 100%;
	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 {
	display: block;
}
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-item a {
}

/* Small menu */
.menu-toggle {
	cursor: pointer;
}
.main-small-navigation .menu {
	display: none;
}


/* =Content
----------------------------------------------- */

.sticky {
}
.hentry {
	margin: 0 0 1.5em;
}
.entry-meta {
	clear: both;
}
.byline {
	display: none;
}
.single .byline,
.group-blog .byline {
	display: inline;
}
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}


/* =Asides
----------------------------------------------- */

.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}


/* =Media
----------------------------------------------- */

.site-header img,
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
.site-header img,
.entry-content img,
img[class*="align"],
img[class*="wp-image-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
.site-header img,
.entry-content img,
img.size-full {
	max-width: 100%;
	width: auto; /* Prevent stretching of full-size images with height and width attributes in IE8 */
}
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.wp-caption {
	border: 1px solid #ccc;
	max-width: 100%;
}
.wp-caption.aligncenter,
.wp-caption.alignleft,
.wp-caption.alignright {
	margin-bottom: 1.5em;
}
.wp-caption img {
	display: block;
	margin: 1.2% auto 0;
	max-width: 98%;
}
.wp-caption-text {
	text-align: center;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
#content .gallery {
	margin-bottom: 1.5em;
}
.gallery-caption {
}
#content .gallery a img {
	border: none;
	height: auto;
	max-width: 90%;
}
#content .gallery dd {
	margin: 0;
}
#content .gallery-columns-4 .gallery-item {
}
#content .gallery-columns-4 .gallery-item img {
}

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


/* =Navigation
----------------------------------------------- */

#content .site-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}
#content .nav-previous {
	float: left;
	width: 50%;
}
#content .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

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

.bypostauthor {
}

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

.widget {
    margin: 0 0 1.5em;
}

/* Search widget */
#searchsubmit {
    display: none;
}

/* Edits */
/* -------------------------------------------- */

body {
    font-size:14px;
    font-family:arial, tahoma, verdana, sans-serif;
    color:#474747;
    margin:0;
    padding:0;
    /*background-image:url(images/body-background.png);*/
}

body.home,
.site-description {
    color:#878787;
}

.edit-link {
    display:none;
}

a, a:active, a:visited {
    text-decoration:none;
    color:#08a8d1;
}

a:hover {
    text-decoration:underline;
}

p {
    margin-bottom:14px;
}

/* common */

#page {
/*
    width:940px;
    margin:0 auto;
*/
	min-width:1000px;
    float:left;
    width:100%;
    background-color:#fff;
    background-image:url(images/main-background.png);
    background-position:50% 240px;
    background-repeat:no-repeat;
}

.wrapper {
    width:940px;
    margin:0 auto;
}

/* head */

hgroup {
    float:left;
    width:100%;
    height:105px;
    margin-top:15px;
    position:relative;
}

.site-title {
    width:255px;
    float:left;
    /*
    background-image:url();
    background-position:center;
    background-repeat:no-repeat;
    */
    clear:none;
    height:105px;
}

.site-title a {
    display:block;
    float:left;
    width:210px;
    margin-top:5px;
    color:#7a7a7a;
    text-align:center;
    font-size:14px;
    text-decoration: none;
    line-height: 14px;
}

.site-description {
    width:250px;
    float:left;
    text-align:center;
    margin-top:30px;
    clear:none;
    font-size:18px;
    line-height: 16px;
    font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
}

.banner {
    width:382px;
    float:right;
    clear:none;
    text-align: right;
    margin-top:5px;
	height:85px;
	background-image:url(images/top-banner-background.png);
	background-position:center;
	background-repeat:no-repeat;
}

.banner .text {
	font-size:16px;
	color:#2485b3; /* design */
	color:#4eaad6; /* lighter */
	display:block;
	float:left;
	height:45px;
	padding-top:20px;
	width:240px;
	text-align:center;
}

.banner .phone {
	float:right;
	width:130px;
	margin-right:10px;
	height:38px;
	padding-top:7px;
	display:block;
	color:#fff;
	font-size:16px;
	line-height:18px;
	font-weight:bold;
	text-align:center;
}

.banner .button {
	display:block;
	float:right;
	clear:right;
	width:130px;
	height:40px;
	background-color:none;
	text-align:center;
}

.banner .button a {
	text-decoration:none;
	font-size:11px;
}

/* top menu */

.main-navigation {
    width:100%;
    float:left;
    background-color:#f1f1f1;
    margin-bottom:20px;
}

.main-navigation ul {
    margin:0;
    padding:0;
}

.main-navigation ul ul {
	top:35px;
	/*display:none !important;*/
}

.main-navigation .menu ul ul {
	display:none !important;
}

.menu li {
    height:35px;
    list-style-type:none;
    float:left;
}

.menu ul ul {
	display:none;
}

.menu a {
    display:inline-block;
    padding:0 15px;
    text-transform:uppercase;
    background-image:url(images/menu-border.png);
    background-repeat:no-repeat;
    background-position:left center;
}

.menu li:first-child a {
background-image:none;
}

.menu a,
.lang a {
    display:inline-block;
    height:35px;
    line-height:35px;
    color:#5e5e5e;
    font-size:13px;
    font-weight:bold;
    overflow:hidden;
}

.menu a:hover,
.menu .active a,
.menu .current_page_item a,
.menu .current_page_ancestor > a {
    background-color:#202020;
    color:#ffffff;
    text-decoration:none;
    background-image:none;
}

/* =Menu
----------------------------------------------- */

.lang {
    float: right;
    width:135px;
}
.lang ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}
.lang li {
    float: left;
    position: relative;
    width:100%;
}
.lang a {
    display: block;
    text-decoration: none;
    padding-left:30px;
}
.lang ul ul {
    display: none;
    float: left;
    position: absolute;
    top: 35px;
    left: 0;
    z-index: 99999;
    background-color:#f1f1f1;
    border-top:1px solid #d8d8d8;
}
.lang ul ul ul {
    left: 100%;
    top: 0;
}
.lang ul ul a {
    width: 105px;
}
.lang ul ul li {
}
.lang li:hover > a {
}
.lang ul ul :hover > a {
}
.lang ul ul a:hover {
}
.lang ul li:hover > ul {
    display: block;
}

.lang a {
    background-repeat:no-repeat;
    background-position:5px 50%;
}

.lang a.flag-nb {
    background-image:url(images/flag-no.png);
}

.lang a.flag-en {
    background-image:url(images/flag-uk.png);
}

.lang a.flag-ru {
    background-image:url(images/flag-ru.png);
}

.lang a.flag-lt {
    background-image:url(images/flag-lt.png);
}

.lang a.flag-es {
    background-image:url(images/flag-es.png);
}

.lang a.flag-de {
    background-image:url(images/flag-de.png);
}

.lang a.flag-fr {
    background-image:url(images/flag-fr.png);
}

.lang a.flag-pl {
    background-image:url(images/flag-pl.png);
}


.lang span {
    display:inline-block;
    width:105px;
    background-image:url(images/lang-arrow-down.png);
    background-repeat:no-repeat;
    background-position:90px 50%;
}

.lang ul ul li span {
    background:none;
}

/* content */

.home #main {
    background-image: none;
    background-color:#fff;
    position:relative;
}

.anythingSlider {
    top:-6px;
    left:-30px;
}

#main {
    float:left;
    width:940px;
    padding-bottom:20px;

    background-image:url(images/inner-background.png);
    background-position:top left;
    background-repeat:no-repeat;
    background-color:#fff;
}

/*
#sidebar {
	width:240px;
	float:left;
}

#content {
	float:right;
	width:680px;
	margin-right:10px;
}
*/

#secondary aside {
    margin-top:15px;
}

#secondary ul {
    margin:0;
    padding:0;
}

#secondary ul ul {
	display:none;
}

#menu-block li {
    list-style-type:none;
    width:238px;
    margin:7px 0;
	float:left;
    background-image:url(images/sidebar-arrow-right.png);
    background-position:20px center;
    background-repeat:no-repeat;
}

#menu-block li li {
	width:218px;
	margin-left:20px;
}

#menu-block li a {
    padding-left:35px;
    display:inline-block;
    color:#142e3d;
    font-size:13px;
    font-weight:bold;
}

#menu-block li a:hover,
#menu-block li.current_page_ancestor li li.current_page_item > a {
    text-decoration:underline;
    color:#07598b;
}

#menu-block li.current_page_item > a,
#menu-block li.current_page_ancestor > a,
#menu-block li.current_page_ancestor li.current_page_item > a {
	color:#07598b;
	text-decoration:none;
}

#menu-block li.current_page_item,
#menu-block li.current_page_ancestor {
	background-position:20px 7px;
	background-image:url(images/sidebar-arrow-down.png);
}

#menu-block li.current_page_ancestor li li {
	margin:0px 0 0px 20px;
	width:198px;
	background-image:url(images/sidebar-arrow-dash.png);
	background-position:20px center;
}

#menu-block li.current_page_ancestor li li a {
	font-size:12px;
}

#menu-block li.current_page_ancestor li li.current_page_item > a {
	text-decoration:underline;
}

#menu-block .current_page_item > ul,
#menu-block .current_page_ancestor > ul {
	display:block;
	float:left;
	background-color:#addce8;
}

.widget_pages h1 {
    display:none;
}

.breadcrumbs {
    line-height:30px;
    height:30px;
    font-size:11px;
    margin-left:20px;
    margin-top:10px;
    color:#08a8d1;
}

.breadcrumbs a {
    color:#08a8d1;
}

/* home slider */

#slider-content {
    width:940px;
    height:400px;
    padding-bottom:12px;
    margin-bottom:20px;
    float:left;
    background-image:url(images/slider-shadow.png);
    background-position:center bottom;
    background-repeat:no-repeat;
}

#slider-content ul {
	overflow:hidden;
}

.slider {
    margin:0;
    padding:0;
}

.slider li {
    list-style-type:none;
}

#slider-content .anythingWindow {
    border:0px solid white;
}

#slider-content .anythingControls {
    bottom:-35px;
    right:40%;
    width:20%;
    margin:0px;
}

#slider-content .anythingControls ul {
	margin:0 auto;
	float:none;
	width:auto;
}

#slider-content .anythingControls ul a {
    border:1px solid #c6c3c3;
}

#slider-content .anythingSlider .anythingControls ul a {
    background-color:#fff;
}

#slider-content .anythingSlider .anythingControls ul a:hover,
#slider-content .anythingSlider .anythingControls ul a.cur {
    background-color:#cac7c7;
}

#slider-content .arrow a {
    background-image:url(images/slider-right.png);
    background-position:right center;
}

#slider-content .arrow a:hover {
    background-image:url(images/slider-right-active.png);
}

#slider-content .back a {
    background-image:url(images/slider-left.png);
    background-position:left center;
}

#slider-content .back a:hover {
    background-image:url(images/slider-left-active.png);
}

/* home sidebar */

body #secondary {
	width:26%;
}

body .site-content {
    float: right;
    margin: 0 0 0 -26%;
    width: 100%;
}

body #content {
    margin: 0 0 0 26%;
}

.home #secondary {
    width:38%;
}

.home .site-content {
    margin: 0 0 0 -38%;
}

.home #content {
    margin: 0 0 0 38%;
}

.home #testimonials {
    margin-top:35px;
}

#testimonials {
    float:left;
    width:100%;
}

#primary .testimonials {
	width:600px;
	height:auto;
	margin:0;
	padding:0;
}

#primary .testimonials li {
	float:left;
	width:100%;
	list-style-type:none;
}

/*
#testimonials .testimonials {
    height:200px;
    width:320px;
    float:left;
}
*/

#testimonials .testimonials li {
    width:100%;
    float:left;
    height:200px;
	overflow:hidden;
}

/*
#secondary #testimonials li {
    width:100%;
    float:left;
    margin:0;
    background:none;
}
*/

#testimonials .anythingSlider {
    top:0;
    left:0;
    padding:0;
	overflow:hidden;
}

#testimonials .anythingWindow {
    border:0px solid #fff;
}

.slider-navigation { 
    font-size:18px;
    font-weight:bold;
    line-height:23px;
    display:inline-block;
}

.slider-navigation a {
    color:#08a8d1;
    text-decoration: none;
}

h2.title,
#content h2 {
    color:#08a8d1;
    font-size:13px;
    text-transform:uppercase;
    line-height:23px;
    font-weight:bold;
    margin-bottom:15px;
    text-shadow: 2px 2px 2px #aaa;
}

h2.title a {
    text-decoration: none;
    color:#08a8d1;
}

.page h2.title,
.single h2.title {
    margin-left:15px;
}

.home h2.title {
    margin-left:10px;
}

.page .quote {
    margin-left:10px;
}

.entry-title {
    color:#08a8d1;
    font-size:22px;
    line-height:23px;
    font-weight:bold;
    text-shadow: 1px 1px 1px #ccc;
}

.home .entry-title {
    font-size:13px;
    text-transform:uppercase;
    clear:none;
}

.item .photo {
    float:left;
    margin-left:15px;
    padding-top:5px;
}

.home .item .photo {
    margin-left:10px;
}

.item .photo img {
    width:44px;
    height:56px;
    float:left;
    border:1px solid #e3e3e3;    
}

.home .item .photo img,
#primary .item .photo img {
    width:90px;
    height:110px;
}

#primary .item .photo {
	float:left;
	margin-left:0px;
}

#primary .item .info {
	width:480px;
	float:right;
}

.item .info {
    width:160px;
    float:right;
}

.home .item .info {
    width:240px;
    padding-top:10px;
}

.item .name {
    color:#383838;
    font-weight:bold;
    display:inline-block;
    width:100%;
    line-height:18px;
    /*height:18px;*/
    float:left;
}

.home .item .name {
    font-size:13px;
    line-height:18px;
    height:18px;
}

#primary .item .name {
	color:#08A8D1;
	line-height:30px;
	height:30px;
	font-size:20px;
}

.item .position {
    font-size:11px;
    line-height:16px;
    /*height:16px;*/
    color:#3a5e91;
    font-weight:bold;
    display:inline-block;
    width:100%;
    float:left;
    overflow:hidden;
}

.home .item .position {
    font-size:12px;
    line-height:18px;
    height:18px;
}

.item .web {
    color:#08a8d1;
    display:inline-block;
    width:100%;
    line-height:20px;
    font-size:11px;
    float:left;
}

.home .item .web {
    font-size:12px;
	color:#08a8d1;
}

.item .web a {
    text-decoration:underline;
	color:#08a8d1;
}

.item .web a:hover {
    text-decoration:none;
}

#primary .item .position,
#primary .item .web {
	display:none;
}

.item .quote {
    background-image:url(images/quote-small.png);
    background-position:5px 10px;
    background-repeat:no-repeat;
    display:inline-block;
    padding:25px 0 0 30px;
    font-size:12px;
}

#testimonials .quote {
	width:180px;
}

.home .item .quote {
    background-image:url(images/quote.png);
    background-position:0 8px;
    font-size:14px;
    line-height:16px;
    margin-left:0px;
}

#primary .item .quote {
	background:none;
	padding:0;
	margin:0;
}

/* clients */

#clients {
    float:left;
    width:940px;
    border-top:1px solid #cccccc;
    padding-top:15px;
    margin-top:20px;
	overflow:hidden;
}

ul.clients {
    margin:0;
    padding:0;
    width:940px;
    float:left;
    height:50px;
}

.page-template-template-clients-php ul.clients {
	width:100%;
}

.page .clients {
    margin-top:10px;
	height:auto;
}

.home .clients {
	height:50px !important;
}

.clients li {
    float:left;
    list-style-type:none;
    width:185px;
    text-align:center;
    float:left;
    height:50px;
    overflow:hidden;
}

/*
.home .clients li {
	width: 185px !important;
}
*/

#primary .clients li {
    height:80px;
    width:160px;
    color:#9a9a9a;
    font-size:12px;
    font-weight:bold;
    margin-bottom:50px;
}

.clients li {
    text-align:center;
}

.clients li img {
	max-width:100%;
}

.page .clients li img {
}

#primary .clients li a {
    color:#9a9a9a;
}

.page .clients li span {
    display:block;
    text-align:center;
}

.clients li a {
    display:inline-block;
}

/* footer */

#colophon {
    width:100%;
    min-width:1000px;
    float:left;
    height:183px;
    padding-top:15px;
    background-image:url(images/footer-background.png);
    background-position:top left;
    background-repeat:repeat-x;
    color:#b7bfcb;
    line-height:21px;
    font-size:12px;
}

#colophon a {
    color:#b5bdca;
    text-decoration:underline;
}

#colophon a:hover {
    text-decoration:none;
}

#colophon .copy {
    float:left;
    width:200px;
}

#colophon .seo-menu {
    float:left;
    width:260px;
    margin-left:40px;
}

.seo-menu ul {
    width:260px;
    margin:0;
    padding:0;
}

.seo-menu li {
    float:left;
    width:130px;
    list-style-type:none;
}

#colophon .info {
    float:left;
    width:440px;
    text-align:right;
}

#content .page,
#content .post {
    margin:10px 30px 20px 20px;
}

.home #content .page {
    margin-top:35px;
}

div.wpcf7 {
	float:right;
	width:320px;
}

.page-template-template-large-form-php div.wpcf7 {
	float:left;
	width:100%;
}

.wpcf7 .wpcf7-text,
.wpcf7 .wpcf7-captchar,
.wpcf7 .wpcf7-textarea,
.wpcf7 .wpcf7-select {
    width:254px;
    height:27px;
    padding:3px;
    line-height:27px;
    background-image:url(images/text-field-background.png);
    background-repeat:no-repeat;
    background-position: center;
    border:0px solid white;
}

.wpcf7 .wpcf7-captchac {
	vertical-align:bottom;
}

/*
.wpcf7 .wpcf7-file {
	height:27px;
	width:200px;
	position:relative;
}
*/

/* button styling */

/*
.file-634 {
    width: 124px;
    height: 30px;
text-decoration: none;
}

.file-634:hover {
text-decoration: none;
}


*/
/* end button styling */

.file-634 {
	width:262px;
	display:inline-block;
}

.wpcf7 .wpcf7-textarea {
    height:166px;
    background-image:url(images/text-area-background.png);
    resize:none;
}

.wpcf7 .menu-76,
.wpcf7 .menu-77 {
	display:block;
	width:260px;
	height:34px;
	background-image:url(images/select-field-background.png);
	background-position: center center;
	background-repeat:no-repeat;
}

.wpcf7 .wpcf7-select {
    height:24px;
    width:250px;
	margin:5px;
	
	border:0px dotted transparent;
}


.wpcf7 .wpcf7-submit,
.button a,
.content-button {
    padding:0;
    background:none;
    border:0px solid #fff;
    background-image:url(images/_button2.png);
    background-repeat:no-repeat;
    background-position: center;
    width:112px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color:#fff;
    font-weight:bold;
    text-shadow: 1px 1px #333;
}

.button a {
    display:block;
}

.content-button {
	display:inline-block;
	color:#fff !important;
	text-decoration:none !important;
}

button:hover, 
html input[type="button"]:hover, 
input[type="reset"]:hover, 
input[type="submit"]:hover,
.button a:hover,
.content-button:hover {
    padding:0;
    background:none;
    border:0px solid #fff;
    background-repeat:no-repeat;
    background-image:url(images/_button-hover.png);
    background-position: center;
    width:112px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color:#fff;
    font-weight:bold;
    text-shadow: 1px 1px #333;
}

.form-left {
    width:50%;
    float:left;
}

.form-right {
    float:right;
    width:50%;
}

div.wpcf7-validation-errors {
    border: 2px solid #F7E700;
    
    /*border:0px solid #fff;*/
	border-radius:5px;
}

div.wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    
    margin:0;
    padding:0;
	
	float:right;
	margin-top:10px;
	padding:5px;
}

#related,
.contact-form {
    clear:right;
    float:right;
    width:300px;
    border:1px solid #08a8d1;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.hentry #related.no-consult {
	float:left;
}

.contact-form {
    width:320px;
}

#related ul {
    margin:0;
    padding:0;
}

#related li,
.contact-form p {
    float:left;
    list-style-type: square;
    width:270px;
    margin-left:30px;
    font-size:13px;
    line-height: 18px;
    padding:5px 0;
}

.contact-form p {
    margin-left:15px;
}

#related li:first-child,
.contact-form p:first-child {
    background-color:#08a8d1;
    list-style-type: none;
    width:285px;
    padding-left:15px;
    margin-left:0px;
    color:#fff;
    font-size:16px;
    font-weight: bold;
    padding-top:0px;
    line-height: 30px;
}

.contact-form p:first-child {
    width:305px;
}

#related li a {
    text-decoration: none;
    color:#474747;
}

#related li a:hover {
    text-decoration: underline;
}

.entry-meta {
    display:none;
}

#social-block,
.MR_Social_Sharing_Toolkit_Widget {
    width:94%;
	margin-bottom:0;
	margin-left:6%;
    float:left;
    text-align:left;
}

#social-block .mr_social_sharing,
.MR_Social_Sharing_Toolkit_Widget .mr_social_sharing {
	vertical-align:middle !important;
	display:inline-block;
}

#social-block .mr_social_sharing .IN-widget,
.MR_Social_Sharing_Toolkit_Widget .mr_social_sharing .IN-widget {
	line-height:0;
}

#banner-block {
    width:100%;
    float:left;
    text-align:center;
}

.consultant {
    float:left;
    width:300px;
}

.consultant .image {
    float:left;
    width: 130px;
}

.consultant .info {
    float:right;
    width:170px;
    padding-top:20px;
}

.consultant .info span {
    display:block;
    width:100%;
    color:#08a8d1;
}

.consultant .heading {
    line-height: 14px;
}

.consultant .title,
#content h3 {
    font-size:18px;
    font-weight:bold;
    line-height: 16px;
    padding-bottom: 5px;
}

.consultant .phone {
    font-size:14px;
    font-weight: bold;
}

.consultant .button a {
    color:#000;
    text-shadow: 1px 1px 1px #aaa;
	font-size:12px;
	width:124px;
    text-decoration: none;
	background-image:url(images/_button-silver.png);
}

.consultant .button a:hover {
	background-image:url(images/_button-silver-hover.png);
}

.entry-content .mr_social_sharing_wrapper {
    display:none;
}

.home #content .page {
    width:400px;
}

.focsd-block-128 {
    float:right;
    width:150px;
    clear:right;
    margin-top:45px;
}

.home .mr_social_sharing_wrapper {
    width:100px;
    float:right;
}

.home .mr_social_sharing {
    clear:left;
    float:left;
    margin-bottom:5px;
}

.more-link {
	font-weight:bold;
	color:#08a8d1;
}

.more-link a {
	color:#08a8d1;
	text-decoration:underline;
}

.more-link a:hover {
	text-decoration:none;
}

.consultant {
	width:300px;
	margin-bottom:15px;
}

.consultant .leftside {
	display:inline-block;
	width:125px;
	text-align:left;
	float:left;
}

.consultant .leftside img {
	width:110px;
	height:130px;
}

.consultant .rightside {
	display:inline-block;
	width:175px;
	float:right;
}

.consultant strong {
	color:#08a8d1;
	font-size:18px;
}

iframe[name="google_conversion_frame"] {
	display:none;
}

#masthead {
	width:940px;
	height:175px;
	float:left;
}

.main-navigation {
	width:940px;
	height:35px;
}

.main-navigation .menu {
	width:800px;
	height:35px;
	float:left;
}