/*
Theme Name: Technotone
Theme URI: http://wordpress.org/extend/themes/twentytwelve
Author: the WordPress team
Author URI: http://wordpress.org/
Description: The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, gray, white, one-column, two-columns, right-sidebar, flexible-width, custom-menu, featured-images, full-width-template, theme-options
Text Domain: twentytwelve

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

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

.font {
	font-family: 'Cabin', sans-serif;
	font-weight:400;
}

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 {
	border: 0;
	font-size: 14px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0;
}
body {
	line-height: 20px;
	overflow-x:hidden;
}
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;
	font-weight: bold;
	text-transform: uppercase;
	color: #636363;
}

/* Form fields, general styles first */
button,
input,
textarea {
	border: 1px solid #d9d9d9;
	border-radius: 0;
	height:20px;
	line-height:20px;
	font-family: inherit;
	padding: 4px 10px 5px 10px;
	display:block;
	margin:4px 0 0 0;
	color:#979797;
	outline:none;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
	resize:none;
	height:120px;
}

/* 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: 11px 15px;
	font-size: 19px;
	line-height: 20px;
	color: #fff;
	background-color: #3f3f3f;
	border-radius: 0;
	font-family: 'Cabin', sans-serif;
	font-weight:400;
}
.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: #fff;
	background-color: #3f3f3f;
}
.menu-toggle:active,
.menu-toggle.toggled-on,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #fff;
	background-color: #ff7800;
	border: none;
}
li.bypostauthor cite span {
	color: #fff;
	background-color: #ff7800;
	background-image: none;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {

}
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: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* 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;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
	border-radius: 0;
	box-shadow: none;
}
.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;
	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;
	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;
}
.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 {
	padding:0;
	margin:0;
	font-family:Arial;
	font-size: 13px;
	color: #666666;
	line-height:20px;
	background:url(images/bg.jpg) repeat left top #f2f2f2;
	font-weight: 400;
	z-index: 0;
}

a {
	outline: none !important;
	font-family: 'Cabin', sans-serif;
	color: #ff7800;
	text-decoration:none;
}
a:hover {
	color: #b9b9b9;
	text-decoration:none;
}

/* Assistive text */
.assistive-text, .site .screen-reader-text {display:none;
}
/* Page structure */
.site {
	padding: 0 24px;
	background: url(images/site_bg.jpg) repeat left top;
	padding-top: 0;
	padding-right: 1.714285714;
	padding-left: 1.714285714;
}
.site-content {
	margin: 20px 0 0;
	margin: 1.428571428571429rem 0 0;
}
.widget-area {margin: 0;
}
/* Header */
.site-header {
	background:url(images/header_bg.jpg) repeat-x left top;
	position:relative;
	margin-bottom:30px;
	padding-top:7px;
}
.site-header .site {
	padding-top:35px;
	padding-bottom:32px;
}
.fleft {float:left;
}
.fright {float:right;
}
.clear_c {
	clear:both;
	height:0;
	font-size:0;
}
img {
	outline:none;
	vertical-align:top;
	border:0;
	max-width:100%;
}
.logo {
	float:left;
	margin-right:14px;
	margin-top:-35px;
	margin-bottom:-32px;
	margin-left:-20px;
}
.site-description {
	float:left;
	margin:4px 0 5px 0;
	border-left:1px #303030 solid;
	padding:13px 15px 13px 16px;
	color:#515050;
}
.social_icons {
	float:right;
	padding:9px 0 0 0;
}
.social_icons ul {
	padding:0;
	margin:0;
	list-style:none;
}
.social_icons li {
	position:relative;
	top:0;
	padding:0;
	display:inline-block;
	height: 45px;
	width: 400px;
	margin-top: 2px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 0;
}
.soc_icon,
.soc_icon_h {
	position:absolute;
	top:0;
	left:0;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	width: 400px;
	height: 45px;
}
.social_icons li .soc_icon,
.social_icons li:hover .soc_icon_h {
	opacity: 1;
	filter: alpha(opacity=100);
}
.social_icons li:hover .soc_icon,
.social_icons li .soc_icon_h {
	opacity: 0;
	filter: alpha(opacity=0);
}

.social_icons li a {
	width:26px;
	height:27px;
	display:block;
	background:none;
	text-align:center;
}


.ls-defaultskin {
	padding:0 !important;
	border-radius:0 !important;
	box-shadow:none !important;
}
.ls-defaultskin .ls-nav-prev, .ls-defaultskin .ls-nav-next {
    height: 69px !important;
    margin-top:-35px !important;
    top: 50% !important;
    width: 46px !important;	
	background-color:transparent;	
	background-repeat:no-repeat;
	background-color:#303030;
	background-position:0 0 !important;
	transition: background-color 200ms ease 0s;
	-webkit-transition: background-color 200ms ease 0s;
}
.ls-defaultskin .ls-nav-prev {
    left: 10px !important;
	background-image:url(images/slider_prev.png) !important;
}
.ls-defaultskin .ls-nav-next {
    right: 10px !important;
	background-image:url(images/slider_next.png) !important;
}
.ls-defaultskin .ls-nav-prev:hover {
	background-image:url(images/slider_prev_h.png) !important;
	background-position:0 0 !important;
	background-color:#ff7800;
}
.ls-defaultskin .ls-nav-next:hover {
	background-image:url(images/slider_next_h.png) !important;
	background-position:0 0 !important;
	background-color:#ff7800;
}
.ls-bottom-nav-wrapper {
	margin-top:-29px !important;
	vertical-align:top;
}
.ls-bottom-slidebuttons {
	background:none;
	margin-top:29px;
	padding:0 !important;
	height:5px !important;
}
.ls-bottom-slidebuttons a {
	width:126px !important;
	height:5px !important;
	display:inline-block !important;
	margin:0 1px !important;
	vertical-align:top;
	background-image: none !important;
	background-color:#7c7c7c;
}
.ls-bottom-slidebuttons a.ls-nav-active {
	background-color:#ff7800;
}
.ls-defaultskin .ls-bottom-nav-wrapper a.ls-nav-stop,
.ls-defaultskin .ls-bottom-nav-wrapper a.ls-nav-start {
	height: 27px !important;
    width: 28px !important;	
	background-color:transparent;	
	background-repeat:no-repeat;
	background-position:0 0 !important;
	vertical-align:top;
	margin:0 !important;
}
.ls-defaultskin .ls-bottom-nav-wrapper a.ls-nav-stop:hover,
.ls-defaultskin .ls-bottom-nav-wrapper a.ls-nav-start:hover {background-position:0 -27px !important;
}
.ls-defaultskin .ls-bottom-nav-wrapper a.ls-nav-stop {
	background-image:url(images/slider_stop.png) !important;
}
.ls-defaultskin .ls-bottom-nav-wrapper a.ls-nav-start {	background-image:url(images/slider_start.png) !important;
}
.ls-defaultskin .ls-nav-sides {display:none !important;
}

.slide1_title {
	width:100% !important;
	text-transform:uppercase;
	font-size:58px !important;
	font-family: 'Cabin', sans-serif;
	font-weight:700;
	text-align:center;
	color:#353535;
	line-height:102px !important;
}
.slide1_title2 {
	width:100% !important;
	font-size:35px;
	text-transform:uppercase;
	font-family: 'Arial', sans-serif;
	font-weight:400;
	text-align:center;
	color:#535252;
	line-height:40px !important;
}
.slide1_separator {
	margin-left:-292px !important;
	left:50% !important;
	width:585px !important;
	background:url(images/slide_separator.png) no-repeat center top;
	height:1px;
}
.slide1_caption {
	width:100% !important;
	text-transform:none;
	font-size:23px !important;
	font-family: 'Arial', sans-serif;
	font-weight:400;
	text-align:center;
	color:#575656;
	line-height:28px !important;
}

.slide2_title {
	text-transform:uppercase;
	font-size:50px !important;
	font-family: 'Cabin', sans-serif;
	font-weight:700;
	text-align:left;
	color:#FFFFFF;
	line-height:60px !important;
}
.slide2_title2 {
	text-transform:uppercase;
	font-size:42px !important;
	font-family: 'Cabin', sans-serif;
	font-weight:700;
	text-align:left;
	color:#7b7a7a;
	line-height:43px !important;
}
.slide2_title3 {
	text-transform:none;
	font-size:18px !important;
	font-family: 'Cabin', sans-serif;
	font-weight:400;
	text-align:left;
	color:#FFFFFF;
	line-height:22px !important;
}
.slide2_title4 {
	display:block !important;
	text-transform:none;
	background:#353535;
	padding:0 25px !important;
	font-size:16px !important;
	font-family: 'Cabin', sans-serif;
	font-weight:400;
	text-align:left;
	color:#fff;
	line-height:35px !important;
	-webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}
.slide2_title4:hover {background:#ff7800;color:#303030;
}

.slide3_title {
	width:100% !important;
	text-transform:uppercase;
	font-size:68px !important;
	font-family: 'Cabin', sans-serif;
	font-weight:700;
	text-align:center;
	color:#fff;
	line-height:74px !important;
}
.slide3_title span,
.slide3_title2 span {
	background:url(images/slide3_bg.png) repeat left top;
	padding:0 15px !important;
}
.slide3_title b {color:#ff7800;
}
.slide3_title2 {
	width:100% !important;
	text-transform:uppercase;
	font-size:51px !important;
	font-family: 'Cabin', sans-serif;
	font-weight:700;
	text-align:center;
	color:#cdcccc;
	line-height:63px !important;
}

/* Navigation Menu */
.main-navigation {
	margin-top: 20px;
	margin-top: 1.428571428571429rem;
	text-align: center;
}
.main-navigation li {
	margin-top: 10px;
	margin-top: 0.7145rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.42857143;
}
.main-navigation a {
	color: #bebebe;
	text-decoration:none;
	font-size:13px;
}
.main-navigation a:hover,
.main-navigation li.current-menu-item a {color: #ff7800;
}
.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;
}

.welcome_block {
	display:block !important;
	float:none;
	text-align:left;
	padding:21px 37px 16px 45px;
	border-bottom:none;
	margin:46px 0 60px 0;
	background:url(images/block_bg.jpg) repeat left top;
	border-left:8px solid #ff7800;
	font-family: 'Cabin', sans-serif;
	font-weight:400;
	color:#a5a5a5;
}
.welcome_block p {
	margin:0 !important;
	padding:0 0 5px !important;
	text-transform:uppercase;
	line-height:20px !important;
	font-size:18px !important;
	font-style:normal;
	color:#f4f4f4;
}
.welcome_block p span {color:#ff7800;
}
.welcome_btn {
	background:#575757; 
	padding:0 18px 0 23px;
	font-family: 'Cabin', sans-serif;
	font-weight:400;
	font-size:16px;
	line-height:37px;
	color:#fff;
	border:0;
	float:right;
	margin:0 0 2px 50px;	
	transition: all 200ms ease 0s;
	-webkit-transition: all 200ms ease 0s;
}
.welcome_btn:hover {
	background:#ff7800;
	color:#303030;
}

.welcome_block .wpb_content_element {margin-bottom:0 !important;
}

.wpb_button_a {display:inline-block;
}
.wpb_button {
	font-family: 'Arimo', sans-serif !important;
	font-weight:400 !important;	
	transition: all 200ms ease 0s;
	-webkit-transition: all 200ms ease 0s;
}
.wpb_button:hover, .wpb_button:active, .wpb_button.active, .wpb_button.disabled, .wpb_button[disabled],
.wpb_button.wpb_btn-inverse:hover {background: #ff7800 !important;
}
.wpb_button.wpb_btn-success {background: #82b500 !important;
}
.wpb_button.wpb_btn-primary {background: #0074CC !important;
}
.wpb_button.wpb_btn-info {background:#3451ff !important;
}
.wpb_button.wpb_btn-warning {background:#FAA732 !important;
}
.wpb_button.wpb_btn-danger {background:#C30 !important;
}
.wpb_button.wpb_btn-inverse {background:#555 !important;
}
.wpb_button.wpb_btn-success:hover,
.wpb_button.wpb_btn-primary:hover,
.wpb_button.wpb_btn-info:hover,
.wpb_button.wpb_btn-warning:hover,
.wpb_button.wpb_btn-danger:hover {background: #3f3f3f !important;
}
.wpb_raw_code  {
	margin-bottom:20px !important;
}

.plan {
	position:relative;
	z-index:5;
	min-height:196px;
	padding:0 40px 25px;
	text-align:center;
	background:url(images/block_bg.jpg) repeat left top;
	display:block;
	color:#8f8f8f;
	text-decoration:none;
	font-family:Arial;
}

.plan .icon1,
.plan .icon2,
.plan .icon3 {
	position:absolute;
	top:-5px;
	left:50%;
	z-index:20;
	margin-left:-103px;
	width:206px;
	height:72px;
	background-position:0 0;
	background-repeat:no-repeat;
}

.plan .icon_block {
	position:relative;
	top:0;
	height:80px;
	margin-bottom:11px;
}
.plan:hover .icon_block {
	top:5px;
}
.icon1_topbord,
.icon2_topbord,
.icon3_topbord {
	position:absolute;
	z-index:1;
	top:-10px;
	left:50%;
	display:block;
	width:222px;
	height:10px;
	margin-left:-111px;
}
.icon1_topbord {background:url(images/icon1_topbord.png) no-repeat;
}
.icon2_topbord {background:url(images/icon2_topbord.png) no-repeat;
}
.icon3_topbord {background:url(images/icon3_topbord.png) no-repeat;
}
.plan:hover .icon1_topbord,
.plan:hover .icon2_topbord,
.plan:hover .icon3_topbord {
	height:5px;
}
.icon_shadow {
	position:absolute;
	top:0;
	left:50%;
	z-index:10;
	display:block;
	width:222px;
	height:75px;
	margin-left:-111px;
	background:url(images/icon_shadow.png) no-repeat;
}
.plan:hover .icon_shadow {
	background:none;
}

.plan .icon1 {background-image:url(images/icon1.png);
}
.plan .icon2 {background-image:url(images/icon2.png);
}
.plan .icon3 {background-image:url(images/icon3.png);
}
.plan .plan_title {
	position:absolute;
	top:10px;
	left:0;
	width:100%;
	z-index:30;
	text-transform:uppercase;
	line-height:20px;
	text-align:center;
	font-size:17px;
	color:#fffefe;
	font-weight:600;
	font-family: 'Cabin', sans-serif;
	text-shadow:0 2px 0 rgba(0,0,0,0.3);
}
.servc_btn {
	position:absolute;
	bottom:25px;
	left:50%;
	display:block;
	margin-left:-45px;
	text-align:center;
	width:90px;
	font-family: 'Cabin', sans-serif;
	color:#fff !important;
	font-size:14px;
	line-height:27px;
}
.icon1_color,
.icon2_color,
.icon3_color {
	background:#575757;
	-webkit-transition: background-color 0.2s ease 0s;
    -moz-transition: background-color 0.2s ease 0s;
    -o-transition: background-color 0.2s ease 0s;
    -ms-transition: background-color 0.2s ease 0s;
    transition: background-color 0.2s ease 0s;
}
.icon1_color:hover {background:#d72323;}
.icon2_color:hover {background:#fc7700;}
.icon3_color:hover {background:#27ab11;}

.plan:hover .servc_btn {
	box-shadow:0 3px 2px rgba(0,0,0,0.5);
	margin-left:-50px;
	width:100px;
	font-size:16px;
	line-height:30px;
}

.service_options .wpb_content_element:after {
}
h2 {
	text-align:left;
	text-transform:none;
	padding:0 0 4px 21px;
	border-bottom:none;
	margin:0 0 21px 0;
	background:url(images/points.png) no-repeat left top;
	border:0;
}

.heading_block .wpb_content_element {margin-bottom:21px !important;
}

/* ____________________________________ work_descr ________________________________ */
.works_block .vc_span3 {
	float:none !important;
	display:inline-block !important;
	width:220px !important;
	margin:0 0 0 16px !important;
}
.works_block .vc_span3:first-child {margin-left:0 !important;}

.proj_item {
	width:220px;
}
.hover_img img {
	position:absolute;
	z-index:100;
	bottom:0;
	width:100%;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.hover_img:hover img {
	bottom:-185px;
}
.hover_img {
	position:relative;
	overflow:hidden;
}
.works_descr {
	height:174px;
	padding:0;
	background:none;
	text-align:center;
	font-family: 'Cabin', sans-serif;
	font-weight:400;
	font-size:14px;
	line-height:20px;
	color:#666666;
	border-bottom:5px solid #ff7800;
}
.works_descr p {
	padding:16px 0 11px !important;
	margin:0 !important;
	text-transform:uppercase;
	font-weight:700;
	font-size:16px;
	color:#dedede;
}

.zoom, .link {
	position:absolute;
	top:100px;
	width:29px;
	height:29px;
	z-index:10;
	display:block;
	text-indent:-9999px;
	cursor:pointer;
}
.zoom a, .link a {
	position:absolute;
	display:block;
	width:29px;
	height:29px;
}
.zoom {right:80px;
}
.link {left:81px;
}
.zoom a {background-image:url(images/zoom.png);
}
.link a {background-image:url(images/link.png);
}


img {
	outline:none;
	vertical-align:top;
}

/* ____________________________________ //work_descr ________________________________ */
.wpb_accordion_heading,
.wpb_tabs_heading {margin-bottom:21px;
}
.ui-accordion-content {
	padding:18px 15px 15px 21px !important;
	margin: -13px 0 0 0 !important;
	border:none !important;
	color:#666666;
}
.ui-accordion-header {
	padding:2px 15px 2px 54px !important;
	margin:0 0 8px 0 !important;
	line-height:30px !important;
	border:none !important;
	background:url(images/block_bg.jpg) repeat left top !important;
}
.wpb_accordion_wrapper {
}
.ui-accordion-header a {
	padding:0px !important;
	margin:0 !important;
	line-height:30px !important;
	font-size:16px;
	color:#6f6f6f;
	font-family: 'Cabin', sans-serif;
	font-weight:400;
}
.ui-accordion-header.ui-accordion-header-active {background:url(images/block_bg.jpg) repeat left top !important;
}
.ui-accordion-header.ui-accordion-header-active:hover {
}
.ui-accordion-header:hover {
}
.ui-accordion-header.ui-accordion-header-active:after {
	content:'';
	position:absolute;
	left:0;
	bottom:0;
	height:1px;
	width:100%;	
}
.ui-accordion-header.ui-accordion-header-active a,
.ui-accordion-header.ui-accordion-header-active:hover a {color:#fff !important;
}
.ui-accordion-header:hover a {color:#ff7800 !important;
}
.ui-accordion-header-icon {
	width:35px !important;
	height:34px !important;
	background-image:url(images/plus.png) !important;
	background-position:0 0;
	background-repeat:no-repeat;
	background-color:none;
	margin:0 !important;
	left:0 !important;
	top:0 !important;
}
.wpb_content_element .ui-state-active .ui-icon {
	background-image:url(images/minus.png) !important;
}

.flex-prev,
.flex-next {
	width:46px !important;
	height:69px !important;
	margin:-35px 0 0 0 !important;
	background-position:0 0 !important;
	background-repeat:no-repeat !important;	
	background-color:#343434 !important;
	-webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.flex-next {background-image:url(images/slider_next.png) !important;	
}
.flex-prev {background-image:url(images/slider_prev.png) !important;	
}
.flex-prev:hover,
.flex-next:hover {
	background-position:0 0 !important;
	background-color:#ff7800 !important;
}
.wpb_gallery .wpb_gallery_slides .nivo-controlNav a, .wpb_gallery .wpb_gallery_slides .flex-control-nav a {
	background-color:#7c7c7c !important;
}
.wpb_gallery .wpb_gallery_slides .nivo-controlNav a.active, .wpb_gallery .wpb_gallery_slides .flex-control-nav a.active, .wpb_gallery .wpb_gallery_slides .nivo-controlNav a:hover, .wpb_gallery .wpb_gallery_slides .flex-control-nav a:hover, .wpb_gallery .wpb_gallery_slides .nivo-controlNav a.flex-active, .wpb_gallery .wpb_gallery_slides .flex-control-nav a.flex-active {
	background-color:#ff7800 !important;
}

button {height:44px;
}
.wpb_posts_slider .flex-direction-nav {display: none !important;
}
.wpb_tour .ui-tabs .ui-tabs-nav {background:none !important;
}
.wpb_tour .ui-tabs .ui-tabs-nav li {
	border:0 !important;
	margin-bottom:0 !important;
	padding:0 !important;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-tabs-loading a {border-right:none !important;
}
.wpb_tour .ui-tabs .ui-tabs-nav li a {
	border-top:1px #4a4a4a solid !important;
	border-bottom:1px #4a4a4a solid !important;
	border-left:1px #4a4a4a solid !important;
	margin-right:-1px !important;
}
.wpb_tour .wpb_tab, .wpb_tour .wpb_tab.ui-tabs-panel {
}
.wpb_tour .wpb_tab {border:0 !important;
}

.wpb_toggle {
	padding:2px 15px 2px 52px !important;
	margin:0 0 8px !important;
	line-height:30px !important;
	border:none !important;
	background:url(images/block_bg.jpg) repeat left top !important;
	font-size:16px !important;
	color:#646363;
	font-family: 'Cabin', sans-serif;
	font-weight:400;
	position:relative;
}
.wpb_toggle:hover {
	color:#ff7800 !important;
}
.wpb_toggle.wpb_toggle_title_active {
	color:#fff !important;
}
.wpb_toggle_content {
	margin:0 !important;
	padding:12px 0 19px 23px !important;
}
.wpb_toggle:after {
	width:35px !important;
	height:34px !important;
	background-image:url(images/plus.png) !important;
	background-position:0 0;
	background-repeat:no-repeat;
	margin:0 !important;
	left:0 !important;
	top:0 !important;
	position:absolute;
	content:'';
}

.wpb_toggle.wpb_toggle_title_active:after {
	background-image:url(images/minus.png) !important;
}

.ui-tabs-panel {
	padding:16px 10px 12px 13px !important;
	border:none !important;
	border-bottom:5px solid #ff7800 !important;
	background:url(images/block_bg.jpg) repeat left top !important;
	color:#747474 !important;
}
.ui-tabs-panel .wpb_raw_code {margin:0 !important;
}
.ui-tabs-panel img.fleft {
	float:left;
	margin:0 19px 5px 0; 
}

ul.tab_list {margin:15px 0 0 0 !important;
}
ul.tab_list li {
	display:inline-block;
	width:193px;
	margin:0 0 6px !important;
	background:url(images/tab_list_bg.png) no-repeat left top;
	padding:0 0 0 23px !important;
}

.ui-tabs-panel .title {
	margin:0; 
	padding:0 0 11px 0;
	font-size:14px;
	font-family: 'Cabin', sans-serif;
	color:#ff7800;
	font-weight:400;
}
.ui-tabs-panel ul {
	padding:0;
	list-style:none !important;
}

.ui-tabs-nav {
	background:none;
	padding:0 !important;
	margin:0 0 -2px 0 !important;
	border:0 !important;
}
.ui-tabs-nav li {
	display:inline-block;
	margin:0 !important;
	padding:2px 0 0 0 !important;
	border:none !important;
	border-bottom:0 !important;
	height:35px;
	background:none !important;
	transition: none !important;
	-webkit-transition: none !important;
	background:none !important;
}
.ui-tabs-nav li a {
	display:inline-block;
	margin:0 !important;
	padding:0 15px !important;
	border:0 !important;
	height:33px;
	line-height:33px;
	font-size:16px !important;
	color:#959595 !important;
	font-family: 'Cabin', sans-serif;
	vertical-align:top;
	font-weight:400;
	border-bottom:none !important;
}
.ui-tabs-nav li:hover a {
}
.ui-tabs-nav li.ui-tabs-active {
	background:url(images/block_bg.jpg) repeat left top !important;
	border:none !important;
	color:#fffefe !important;
	padding-top:0 !important;
}
.ui-tabs-nav li.ui-tabs-active a {
	border-bottom-color:#2a2a2a !important;
	color:#fffefe !important;
}

/* Footer */
footer[role="contentinfo"] {
	clear: both;
	font-size: 14px;
	margin-top: 23px;
	padding: 0;
	background:#232323;
	color:#666666;
	line-height:21px;
}
footer[role="contentinfo"] a {color: #a9a6a6;
}
footer[role="contentinfo"] a:hover {color: #fff;
}
footer[role="contentinfo"] .site-info {box-shadow:none;
}
#footer-widget-area {
	background:#000;
	padding:17px 0 14px 0;
}
#footer-widget-area .site {
	box-shadow:none;
	background:none;
	padding:0;
}
.site-info {
	padding:12px 0 !important;
	color:#6a6a6a;
	text-transform:none;
	background:none;
	line-height:20px;	
}
.site-info span {padding:0 5px;
}
footer[role="contentinfo"] .site-info a {
	text-transform:none;
	color:#ff7800;
	line-height:21px;
	text-decoration:underline;
	font-family:Arial;
}
footer[role="contentinfo"] .site-info a:hover {	text-decoration:none;
}
p#twigetfollow,
.tweet-rel-time,
#tweet-wrap-twiget-widget-2 img {display:none !important;
}
#tweet-wrap-twiget-widget-2 li {
	padding:0 0 20px 31px;
	margin:0;
	font-style:italic;
	background:url(images/tweet.png) no-repeat left top;
}

/* __________________ Tweets __________________ */
.tp_recent_tweets a.twitter_time {display:none;
}
.tp_recent_tweets li {
	color:#828282;
	font-style:italic;
	background-image:url(images/tweet.png);
}
.tp_recent_tweets li a {
	font-weight:400;
}

/* _________________ //Tweets _________________ */

.foot_logo {
	padding:1px 0 18px 0;
}
#footer-widget-area .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding: 0;
	margin:0;
	color:#525252 !important;
	border:0;
}
#footer-widget-area .widget-area p {
	padding:0 0 20px 0;
	margin:0;
}
#footer-widget-area .widget-area .widget-title {
	line-height:25px;
	padding:5px 0 20px 0;
	font-size:20px;
	color:#cfcfcf;
	text-transform:none;
	font-family: 'Cabin', sans-serif;
	font-weight:400;
	border:0 !important;
	background:none !important;
	margin-bottom:0;
}
.tagcloud a {
	display:inline-block;
	background:#353535;
	margin:4px 6px 6px 0;
	line-height:28px;
	height:28px;
	padding:0 9px;
	font-size:14px !important;
	color:#a9a6a6 !important;
	font-family:Arial;
	transition: all 200ms ease 0s;
	-webkit-transition: all 200ms ease 0s;
}
.tagcloud a:hover {
	background:#ff7800;
	color:#3d3c3d !important;
}

.wpcf7-not-valid-tip,
.ajax-loader,
footer .your-subject {display:none !important;
}

.wpcf7-form p {
	padding:0 !important;
	margin:0;
}
footer .wpcf7-form input[type="text"], footer .wpcf7-form textarea {
	background:#353535 !important;
	border-color:#353535;
	color:#a9a6a6 !important;
	font-size:14px; 
}
footer .wpcf7-form input[type="text"]:focus, footer .wpcf7-form textarea:focus {
	color:#ff7800 !important;
	border-color:#ff7800;
}
footer .wpcf7-form textarea {height:62px;
}
input[type="submit"] {
	height:32px !important;
	padding-top:0;
	padding-bottom:0;
	font-size:14px;
	color:#202020;
	border:0 !important;
	background:#ff7800;	
	transition: all 200ms ease 0s;
	-webkit-transition: all 200ms ease 0s;
	display:inline-block;
}
input[type="submit"]:hover {background:#525252;color:#eaeaea;	
}
.wpcf7-validation-errors {
	margin:15px 0 10px 0 !important;
	border-color:#DC3A36 !important;
	line-height:18px !important;
	font-size:12px !important;
	background:#353535;
	color:#a9a6a6;
}
.wpcf7-mail-sent-ok {
	margin:15px 0 10px 0 !important;
	border-color:#5CAB00 !important;
	line-height:18px !important;
	font-size:12px !important;
	background:#585858;
	color:#b0b0b0;
}

.page_title {
	line-height:28px;
	border-bottom:1px #4a4a4a solid;
	margin-bottom:25px;
	font-size:25px;
	color:#cfcfcf;
	font-family: 'Cabin', sans-serif;
	font-weight:400;
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 20px;
	padding-left: 0;
}

.post {
	padding: 0 0 19px 0;
	margin:0 0 39px 0;
	border-bottom:1px #4a4a4a solid;
}
.post p {
	padding: 0 0 15px 0;
	margin:0;
}
.post_img {
	margin-bottom:16px;
	background:#3f3f3f;
}
.post_title {
	padding: 5px 0;
	font-size:20px;
	color:#3f3f3f;
	line-height:25px;
	font-family: 'Cabin', sans-serif;
	font-weight:400;
}
.post_title a {
	font-size:20px;
	color:#ff7800;
	line-height:25px;
	font-family: 'Cabin', sans-serif;
	font-weight:400;
}
.post_title a:hover {color:#fff;
}

.post-entry-meta {
	padding-bottom:10px;
	line-height:18px !important;
	font-size:12px;
	color:#979797;
}
.post-entry-meta ul {
	padding:0;
	margin:0;
	list-style:none;
}
.post-entry-meta li {
	padding:0;
	margin:0 0 6px 0;
	display:inline-block;
}
.post-entry-meta li.separator {
	padding:0 9px;
	color:#c9c9c9;
}
.post-entry-meta a {
	color:#979797;
	font-family:Arial;
}
.post-entry-meta a:hover {color:#565656;
}
.post-entry-meta li.post_date {
	padding-left:16px;
	background:url(images/post_date.png) no-repeat left top;
}
.post-entry-meta li.post_category {
	padding-left:20px;
	background:url(images/post_category.png) no-repeat left top;
}
.post-entry-meta li.post_comment {
	padding-left:24px;
	background:url(images/post_comment.png) no-repeat left top;
}
.post-entry-meta li.post_author {
	padding-left:20px;
	background:url(images/post_author.png) no-repeat left top;
}
.oldernewer {padding:1px 0 45px 0;
}
.oldernewer a {
	padding:7px 11px;
	border:none;
	background:#4a4a4a;
	color:#a9a6a6;
	border-radius:2px;
	font-size:12px;
	font-family:Arial;
	vertical-align:top;
	-webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
} 
.oldernewer a:hover {color:#3d3c3d;background:#ff7800;
}
/* Wp-Pagenavi */
.wp-pagenavi {
	padding-top:1px;
	padding-bottom:45px;
	clear: both;
    margin: 0 !important;
}
.wp-pagenavi span.pages {display:none;
}
.wp-pagenavi span.current {
	background:#e6e6e6 !important;
	color:#676667 !important;
	font-weight:normal !important;
}
.wp-pagenavi a, .wp-pagenavi span {
    background: #fff !important;
    color: #86ad00 !important;
    margin: 0 -1px 5px 0 !important;
    padding: 7px 11px !important;
    text-decoration: none;
	border:1px #dadada solid !important;
	border-radius: 0 !important;
	font-family: Arial;
	font-size:12px;
}
.wp-pagenavi a.previouspostslink {border-radius: 2px 0 0 2px !important;
}
.wp-pagenavi a.nextpostslink {border-radius: 0 2px 2px 0 !important;
}

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

/* Sidebar */
.widget-area .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	margin:0 0 39px 0;
	padding:0 0 28px 0;
	border-bottom:1px #4a4a4a solid;
	word-wrap: break-word;
}
.widget-area .widget:last-child {border-bottom:0;
}
.widget-area .widget h3 {
	margin-bottom: 13px;
	line-height:18px;
	text-transform:none;
	font-size:20px;
	color:#CFCFCF;
	font-weight:400;
	font-family: 'Cabin', sans-serif;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	font-size: 14px;
	font-family:Arial;
	line-height:20px;
}
.widget-area .widget p {
	margin:0;
	padding:0 0 10px 0;
}
.sidebar ul {
	list-style: none;
	margin: 0;
	padding:0;
}
.sidebar li {
	margin:0;
	padding:5px 10px 6px 22px;
	position:relative;
	border-bottom:1px #4a4a4a solid;	
}
.sidebar li:last-child {border-bottom:none;
}
.sidebar li:before {
	width:13px;
	height:20px;
	background-image:url(images/tab_list_bg.png);
	background-position:0 0;
	background-repeat:no-repeat;
	background-color:none;
	position:absolute;
	content:'';
	left:3px;
	top:5px;
}
.sidebar li:hover:before, .sidebar li.current-cat:before {
}
.sidebar li.current-cat a {color:#ff7800;
}
.sidebar {padding-top:40px;
}

.sidebar li a {color: #979797;
}
.sidebar .widget a:hover {color: #ff7800;
}
.sidebar .tagcloud a:hover {color:#fff;
}

.sidebar .widget_search #searchsubmit {
	width:70px;
	text-align:center;
	padding-left:0;
	padding-right:0;
	margin:0 0 4px 0;
}
.sidebar #s {
	width: 121px;
	margin:0 0 4px 0;
	display:inline-block;
	vertical-align:top;
	padding-top:5px;
	font-size:13px;
	color:#a9a6a6;
	background:#373737;
	border:1px solid #4a4a4a !important;
}

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

.widget-area .widget ul ul {
	margin-left: -22px;
	border-top:1px #e7e7e7 solid;
	margin-top:5px;
}
.widget-area .widget ul ul li:last-child {padding-bottom:0;
}
.widget-area .widget ul ul li {padding-left:42px;
}
.widget-area .widget ul ul li:before {left:23px;
}


.span9 .wpb_content_element, .span12 .wpb_content_element {margin-bottom:25px;
}
.span9 .wpcf7-form, .span12 .wpcf7-form {margin-top:-9px;
}  
p a {font-family:Arial;
}
.wpb_gmaps_widget .wpb_map_wraper {padding:0 !important;
}
::-webkit-input-placeholder { opacity:0.8 !important;
}
:-moz-placeholder {opacity:0.8 !important; 
}
::-moz-placeholder { opacity:0.8 !important;  
}
:-ms-input-placeholder { opacity:0.8 !important; 
}
.wpb_separator, .vc_text_separator {border-bottom-color:#4a4a4a !important;
}

.team {
	padding:0 4px;
	text-align:center;
}
.team_avatar {padding:0 4px;
}
.team p {padding-top:8px !important;
}
.team ul {
	padding:0 !important;
	margin:0 !important;
	list-style:none !important;
}
.team li {
	padding:0 !important;
	margin:3px 3px 0 0 !important;
	display:inline-block;
	vertical-align:top;
}
.team a span {
	width:28px;
	height:28px;
	background-position:0 0;
	background-repeat:no-repeat;
	display:block;
	background-color:#4a4a4a;
}
.team h2 {
	text-align:center;
	border:0;
	background:none;
	margin-bottom: 0;
	padding-left:0;
}
.team a span.team_mail {background-image:url(images/team_mail.png);
}
.team a:hover span.team_mail {background-color:#f48222;
}
.team a span.team_skype {background-image:url(images/team_skype.png);
}
.team a:hover span.team_skype {background-color:#00aff0;
}
.team a span.team_fb {background-image:url(images/team_fb.png);
}
.team a:hover span.team_fb {background-color:#405890;
}
.team a span.team_tweet {background-image:url(images/team_tweet.png);
}
.team a:hover span.team_tweet {background-color:#00abf0;
}

.span9 .wpcf7-form input[type="text"],
.span12 .wpcf7-form input[type="text"],
.span9 .wpcf7-form textarea, .span12 .wpcf7-form textarea {
	width:320px;
	background:#373737 !important;
	border:1px solid #4a4a4a !important;
	color:#a9a6a6 !important;
}
.span9 .wpcf7-form input[type="text"]:focus,
.span12 .wpcf7-form input[type="text"]:focus,
.span9 .wpcf7-form textarea:focus,
.span12 .wpcf7-form textarea:focus {
	color:#fff !important;
	border:1px solid #656565 !important;
}

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

#primary {
	padding-bottom:6px;
}

b {color:#ff7800;
}


/* =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;
}
.entry-header .entry-title {
	font-size: 20px;
	font-size: 1.428571429rem;
	line-height: 1.2;
	font-weight: normal;
}
.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 h1,
.comment-content h1 {font-size: 21px;
}
.entry-content h2,
.comment-content h2,
.mu_register h2 {
	font-size: 20px;
	line-height:25px;
	color:#f0efef;
	font-weight:400;
	font-family: 'Cabin', sans-serif;
	text-align: left;
}

.teaser_grid_container h2 {
	background:none;
	margin:0;
	padding:10px 0;
	border-bottom:none;
	font-size:16px;
	line-height:20px;
	text-transform:none;
}
.teaser_grid_container h2 a {
	color:#cfcfcf !important;
	-moz-hyphens: auto;
    word-wrap: break-word;
}
.teaser_grid_container h2 a:hover {color:#ff7800 !important;
}
.wpb_carousel .wpb_wrapper {
    margin-top: -30px !important;
    padding-top: 30px !important;
}

.entry-content h3,
.comment-content h3 {
	font-size: 16px;
	line-height:25px;
	color:#cfcfcf;
	font-weight:400;
	font-family: 'Cabin', sans-serif;
}
.mrgn_btn_minus {margin-bottom:-45px !important;
}
.entry-content h4,
.comment-content h4 {
	font-size: 14px;
	color:#cfcfcf;
	font-weight:400;
	font-family: 'Cabin', sans-serif;
}
.entry-content h5,
.comment-content h5 {font-size: 13px;
}
.entry-content h6,
.comment-content h6 {font-size: 12px;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 8px 0;
	padding:0;
	text-align: justify;
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.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;
	text-align: justify;
}
.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;
	text-align: justify;
}
.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;
}
.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;
	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;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft {
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
img.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter {
	margin-top: 12px;
	margin-top: 0.857142857rem;
	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;
}
.entry-content dd,
.comment-content dd {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
	border-bottom: 0px solid #ededed;
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	margin: 0 0 24px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 1.714285714;
	margin-left: rem;
}
.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: 0px solid #ededed;
	padding-top: 6px;
	padding-right: 0px;
	padding-bottom: 6px;
	padding-left: 0;
}
.site-content article {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}
.page-links {
	clear: both;
}
footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	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: #979797;
	font-size: 14px;
	margin-bottom: 40px;
	font-family:Arial;
}

.error404, .no-results {border-bottom:0 !important;
}
.error404 input,
.no-results input {
	display:inline-block;
	vertical-align:top;
}
.search_page .type-page {
	padding: 0 0 19px 0;
	margin:0 0 39px 0;
	border-bottom:1px #e7e7e7 solid;
}


/* =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;
	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;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
}
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;
	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;
	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;
	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;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	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: 25px;
	font-size: 20px;
	color:#cfcfcf;
	font-weight:400;
	font-family: 'Cabin', sans-serif;
	line-height:25px !important;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 20px 0;
	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: 12px;
}
.comments-area article header time {
	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;
	padding: 0 5px;
	font-size: 12px;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #979797;
	font-size: 14px;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #ff7800;
}
.commentlist .pingback {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {margin-top: 40px;
}
#respond h3#reply-title {
	font-size: 20px;
	color:#cfcfcf;
	font-family: 'Cabin', sans-serif;
	font-weight:400;
	text-align:left;
	padding:0 0 4px 24px;
	border-bottom:none;
	margin:0 0 21px 0;
	background:url(images/points.png) no-repeat left top;
	border:0;
	line-height:25px;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	font-weight: normal;
	font-size: 12px;
}
#respond form {margin: 24px 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;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing:inherit;
	-webkit-box-sizing:inherit;
	font-size: 13px;
	padding: 5px 10px;
	width: 80%;
	background:#373737;
	border:1px solid #4a4a4a;
	color:#A9A6A6;
}
#respond form input[type="text"]:focus,
#respond form textarea:focus {
	border:1px solid #656565;
	color:#fff;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	color: #979797;
}
.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;
}

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

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

/* =Pagebilder
----------------------------------------------- */
.slide_img {
	float:left;
	margin-right:15px;
}
.wpb_btn-mini {
	font-size: 11px !important;
    line-height: 14px !important;
    padding: 2px 6px !important;
}
button.wpb_btn-small, span.wpb_btn-small {
	font-size: 11px !important;
    line-height: 16px !important;
    padding: 5px 9px !important;
}
button.wpb_btn-large, span.wpb_btn-large {
	border-radius: 5px;
    font-size: 15px !important;
    line-height: normal !important;
    padding: 9px 14px !important;
}


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

@media (min-width: 768px) and (max-width: 979px) {
	
	.slide2_title, .slide2_title2, .slide2_title3, a.ls-s2 {left:265px !important;}
	.slide2_title {font-size:40px !important;}
	.slide2_title2 {font-size:34px !important;}
	.slide2_title3 {line-height:20px !important;}
	
	.plan {min-height:260px;}
	
	.works_block {width:485px !important;margin:0 auto !important;}
	.works_block .vc_span3:first-child {margin-left:16px !important;}
	
	.span9 .wpcf7-form input[type="text"],
	.span12 .wpcf7-form input[type="text"],
	.span9 .wpcf7-form textarea, .span12 .wpcf7-form textarea {	width:242px;
	}	
	.ls-bottom-slidebuttons {display:none !important;
	}
	.service_options .wpb_content_element:after {background:none !important;
	}
	
	.ui-tabs-nav li {
		display:block !important;
		margin:0 !important;
		padding:0 !important;
		border-left:0 !important;
		border-right:0 !important;
		height:43px;
		background:none !important;
	}
	.ui-tabs-nav li a {
		display:block !important;
		text-align:center;
		padding:0 !important;
		margin-left:0px !important;
		background:none !important;
		font-size:14px !important;
		padding:0 5px !important;
	}
	.ui-tabs-nav {background:none !important;
	}
	
}

@media (max-width: 767px) {
	.span9 .wpcf7-form input[type="text"],
	.span12 .wpcf7-form input[type="text"],
	.span9 .wpcf7-form textarea, .span12 .wpcf7-form textarea {	width:233px;
	}
	
	.ls-defaultskin .ls-nav-prev {left:0px !important;}
	.ls-defaultskin .ls-nav-next {right:0px !important;}
	
	.slide1_title {font-size:44px !important;line-height:40px !important;}
	.slide1_title2 {font-size:20px !important;line-height:24px !important;}
	.slide1_caption {font-size:14px !important;line-height:20px !important;}
	
	.slide2_title {font-size:26px !important;line-height:26px !important;}
	.slide2_title2 {font-size:20px !important;line-height:22px !important;}
	.slide2_title3 {display:none !important;}
	
	.slide3_title {font-size:34px !important;line-height:38px !important;}
	.slide3_title2 {font-size:30px !important;line-height:30px !important;}
	
	.service_options {width:320px !important;margin:0 auto !important;}
	.service_options .vc_span4 {
		float:none !important;
		width:300px !important;
		display:inline-block !important;
		margin:0 10px !important;
	}
	.service_options .plan {min-height:230px;}
	
	.works_block {width:95% !important;margin:0 auto !important;}
	.works_block .vc_span3:first-child {margin-left:16px !important;}
	
	.social_icons {text-align:center;}
	
	.ui-tabs-nav li {
		width:99%;
	}
	ul.tab_list li {width:168px;}
	
	.welcome_btn {
		margin:0 auto 10px auto;
		float:none;
		display:block;
	}
	.service_options .wpb_content_element:after {background:none !important;
	}
}

@media (max-width: 480px) {
	.slide1_title, .slide1_title2, .slide1_separator, .slide1_caption, .slide2_title, .slide2_title2, .slide2_title3, .slide2_title4, .slide3_title, .slide3_title2
	{display:none !important;}
	
	.service_options {width:255px !important;margin:0 auto !important;}
	.service_options .vc_span4 {
		float:none !important;
		width:255px !important;
		display:inline-block !important;
		margin:0 !important;
	}
	
	.works_block {width:240px !important;margin:0 auto !important;}
	
	.team_avatar {text-align:center;}
	
}

@media (max-width: 900px) {
	
	.ui-tabs-panel {border-top:1px #4a4a4a solid !important;
	}
	
}



/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {	
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	.site {
		margin: 0 auto;
		    max-width: 100%;
		overflow: hidden;
	}
	.site-content {
		float: left;
		width: 65.104166667%;
	}
	body.template-front-page .site-content,
	body.single-attachment .site-content,
	body.full-width .site-content {
		width: 100%;
	}
	.widget-area {
	}
	
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		background:#353535;
		display: inline-block !important;
		text-align: left;
		width: 100%;
		border-bottom:4px #7c7c7c solid;
	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
	}
	.main-navigation li {
		display: inline-block;
		text-decoration: none;
		position:relative;
		margin:0 -4px 0 0;
		padding-right:2px;
		background:url(images/menu_li.png) repeat-y right top;
	}
	.main-navigation li a {
		color: #fff;
		font-size:15px;
		font-family: 'Cabin', sans-serif;
		line-height: 47px;
		white-space: nowrap;
		position:relative;
		padding: 0 24px;
		display:inline-block;
		transition: background-color 200ms ease 0s;
		-webkit-transition: background-color 200ms ease 0s;
	}
	.main-navigation li a:hover,
	.main-navigation li:hover a,
	.main-navigation li.current-menu-item a  {
		font-weight:400;
		color:#303030;
		background:#ff7800;
		border-bottom: 4px #bebebe solid;
		margin-bottom:-4px;
	}
	.main-navigation li ul {
		display: none;
		margin: 0;
		margin-top:4px;
		padding: 0;
		position: absolute;
		top: 100%;
		z-index: 1;
		border-bottom:0;
	}
	.main-navigation li ul li {
		padding: 0 0 2px 0;
		background:url(images/menu_li2.png) repeat-x left bottom;
	}
	.main-navigation li ul li:last-child {
		padding: 0;
		background:none;
	}
	.main-navigation li ul ul {
		top: 0;
		left: 100%;
		margin-top:0;
		padding-left:2px;
		background:url(images/menu_li.png) repeat-y left top;
	}
	.main-navigation ul li:hover > ul {
		border-left: 0;
		display: block;
	}
	.main-navigation li li a,
	.main-navigation li:hover li a {
		background: #353535;
		color:#fff;
		display: block;
		font-size: 13px;
		line-height: 20px;
		padding: 8px 14px 9px 24px;
		width: 125px;
		white-space: normal;
		border-bottom:0;
		margin-bottom:0;
	}
	.main-navigation li li a:hover,
	.main-navigation li li:hover a,
	.main-navigation li li.current-menu-item a {
		background: #ff7800;
		color: #303030;
		border-bottom:0;
		margin-bottom:0;
	}
	.main-navigation .current-menu-item > a,
	.main-navigation .current-menu-ancestor > a,
	.main-navigation .current_page_item > a,
	.main-navigation .current_page_ancestor > a {
	}
	.main-navigation li li li a {
		background: #353535 !important;
		color:#fff !important;
	}
	.main-navigation li li li a:hover,
	.main-navigation li li li.current-menu-item a {
		background: #ff7800 !important;
		color:#303030 !important;
	}
	
	.menu-toggle {	display: none;
	}
	.entry-header .entry-title {
		font-size: 22px;
		font-size: 1.571428571rem;
	}
	#respond form input[type="text"] {
		width: 46.333333333%;
	}
	#respond form textarea.blog-textarea {
		width: 79.666666667%;
	}
	.template-front-page .site-content,
	.template-front-page article {
		overflow: hidden;
	}
	.template-front-page.has-post-thumbnail article {
		float: left;
		width: 47.916666667%;
	}
	.entry-page-image {
		float: right;
		margin-bottom: 0;
		width: 47.916666667%;
	}
	.template-front-page .widget-area .widget,
	.template-front-page.two-sidebars .widget-area .front-widgets {
		float: left;
		width: 51.875%;
		margin-bottom: 24px;
		margin-bottom: 1.714285714rem;
	}
	.template-front-page .widget-area .widget:nth-child(odd) {
		clear: right;
	}
	.template-front-page .widget-area .widget:nth-child(even),
	.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
		float: right;
		width: 39.0625%;
		margin: 0 0 24px;
		margin: 0 0 1.714285714rem;
	}
	.template-front-page.two-sidebars .widget,
	.template-front-page.two-sidebars .widget:nth-child(even) {
		float: none;
		width: auto;
	}
	.commentlist .children {margin-left: 48px;
	}
}

/* Minimum width of 960 pixels. */
@media screen and (min-width: 960px) {
	body .site {
		padding: 0 20px;
		margin: 0 auto;
		box-shadow: 0 0 7px rgba(0,0,0, 1);
	}
	body.custom-background-empty .site,
	body.custom-background-white .site {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: none;
	}
	
}


/* ====================  PRETTY PHOTO  =========================== */

div.pp_default .pp_top,div.pp_default .pp_top .pp_middle,div.pp_default .pp_top .pp_left,div.pp_default .pp_top .pp_right,div.pp_default .pp_bottom,div.pp_default .pp_bottom .pp_left,div.pp_default .pp_bottom .pp_middle,div.pp_default .pp_bottom .pp_right{height:13px}
div.pp_default .pp_top .pp_left{background:url(images/prettyPhoto/default/sprite.png) -78px -93px no-repeat}
div.pp_default .pp_top .pp_middle{background:url(images/prettyPhoto/default/sprite_x.png) top left repeat-x}
div.pp_default .pp_top .pp_right{background:url(images/prettyPhoto/default/sprite.png) -112px -93px no-repeat}
div.pp_default .pp_content .ppt{color:#f8f8f8}
div.pp_default .pp_content_container .pp_left{background:url(images/prettyPhoto/default/sprite_y.png) -7px 0 repeat-y;padding-left:13px}
div.pp_default .pp_content_container .pp_right{background:url(images/prettyPhoto/default/sprite_y.png) top right repeat-y;padding-right:13px}
div.pp_default .pp_next:hover{background:url(images/prettyPhoto/default/sprite_next.png) center right no-repeat;cursor:pointer}
div.pp_default .pp_previous:hover{background:url(images/prettyPhoto/default/sprite_prev.png) center left no-repeat;cursor:pointer}
div.pp_default .pp_expand{background:url(images/prettyPhoto/default/sprite.png) 0 -29px no-repeat;cursor:pointer;width:28px;height:28px}
div.pp_default .pp_expand:hover{background:url(images/prettyPhoto/default/sprite.png) 0 -56px no-repeat;cursor:pointer}
div.pp_default .pp_contract{background:url(images/prettyPhoto/default/sprite.png) 0 -84px no-repeat;cursor:pointer;width:28px;height:28px}
div.pp_default .pp_contract:hover{background:url(images/prettyPhoto/default/sprite.png) 0 -113px no-repeat;cursor:pointer}
div.pp_default .pp_close{width:30px;height:30px;background:url(images/prettyPhoto/default/sprite.png) 2px 1px no-repeat;cursor:pointer}
div.pp_default .pp_gallery ul li a{background:url(images/prettyPhoto/default/default_thumb.png) center center #f8f8f8;border:1px solid #aaa}
div.pp_default .pp_social{margin-top:7px}
div.pp_default .pp_gallery a.pp_arrow_previous,div.pp_default .pp_gallery a.pp_arrow_next{position:static;left:auto}
div.pp_default .pp_nav .pp_play,div.pp_default .pp_nav .pp_pause{background:url(images/prettyPhoto/default/sprite.png) -51px 1px no-repeat;height:30px;width:30px}
div.pp_default .pp_nav .pp_pause{background-position:-51px -29px}
div.pp_default a.pp_arrow_previous,div.pp_default a.pp_arrow_next{background:url(images/prettyPhoto/default/sprite.png) -31px -3px no-repeat;height:20px;width:20px;margin:4px 0 0}
div.pp_default a.pp_arrow_next{left:52px;background-position:-82px -3px}
div.pp_default .pp_content_container .pp_details{margin-top:5px}
div.pp_default .pp_nav{clear:none;height:30px;width:110px;position:relative}
div.pp_default .pp_nav .currentTextHolder{font-family:Georgia;font-style:italic;color:#999;font-size:11px;left:75px;line-height:25px;position:absolute;top:2px;margin:0;padding:0 0 0 10px}
div.pp_default .pp_close:hover,div.pp_default .pp_nav .pp_play:hover,div.pp_default .pp_nav .pp_pause:hover,div.pp_default .pp_arrow_next:hover,div.pp_default .pp_arrow_previous:hover{opacity:0.7}
div.pp_default .pp_description{font-size:11px;font-weight:700;line-height:14px;margin:5px 50px 5px 0}
div.pp_default .pp_bottom .pp_left{background:url(images/prettyPhoto/default/sprite.png) -78px -127px no-repeat}
div.pp_default .pp_bottom .pp_middle{background:url(images/prettyPhoto/default/sprite_x.png) bottom left repeat-x}
div.pp_default .pp_bottom .pp_right{background:url(images/prettyPhoto/default/sprite.png) -112px -127px no-repeat}
div.pp_default .pp_loaderIcon{background:url(images/prettyPhoto/default/loader.gif) center center no-repeat}
div.light_rounded .pp_top .pp_left{background:url(images/prettyPhoto/light_rounded/sprite.png) -88px -53px no-repeat}
div.light_rounded .pp_top .pp_right{background:url(images/prettyPhoto/light_rounded/sprite.png) -110px -53px no-repeat}
div.light_rounded .pp_next:hover{background:url(images/prettyPhoto/light_rounded/btnNext.png) center right no-repeat;cursor:pointer}
div.light_rounded .pp_previous:hover{background:url(images/prettyPhoto/light_rounded/btnPrevious.png) center left no-repeat;cursor:pointer}
div.light_rounded .pp_expand{background:url(images/prettyPhoto/light_rounded/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.light_rounded .pp_expand:hover{background:url(images/prettyPhoto/light_rounded/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.light_rounded .pp_contract{background:url(images/prettyPhoto/light_rounded/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.light_rounded .pp_contract:hover{background:url(images/prettyPhoto/light_rounded/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.light_rounded .pp_close{width:75px;height:22px;background:url(images/prettyPhoto/light_rounded/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.light_rounded .pp_nav .pp_play{background:url(images/prettyPhoto/light_rounded/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.light_rounded .pp_nav .pp_pause{background:url(images/prettyPhoto/light_rounded/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.light_rounded .pp_arrow_previous{background:url(images/prettyPhoto/light_rounded/sprite.png) 0 -71px no-repeat}
div.light_rounded .pp_arrow_next{background:url(images/prettyPhoto/light_rounded/sprite.png) -22px -71px no-repeat}
div.light_rounded .pp_bottom .pp_left{background:url(images/prettyPhoto/light_rounded/sprite.png) -88px -80px no-repeat}
div.light_rounded .pp_bottom .pp_right{background:url(images/prettyPhoto/light_rounded/sprite.png) -110px -80px no-repeat}
div.dark_rounded .pp_top .pp_left{background:url(images/prettyPhoto/dark_rounded/sprite.png) -88px -53px no-repeat}
div.dark_rounded .pp_top .pp_right{background:url(images/prettyPhoto/dark_rounded/sprite.png) -110px -53px no-repeat}
div.dark_rounded .pp_content_container .pp_left{background:url(images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat-y}
div.dark_rounded .pp_content_container .pp_right{background:url(images/prettyPhoto/dark_rounded/contentPattern.png) top right repeat-y}
div.dark_rounded .pp_next:hover{background:url(images/prettyPhoto/dark_rounded/btnNext.png) center right no-repeat;cursor:pointer}
div.dark_rounded .pp_previous:hover{background:url(images/prettyPhoto/dark_rounded/btnPrevious.png) center left no-repeat;cursor:pointer}
div.dark_rounded .pp_expand{background:url(images/prettyPhoto/dark_rounded/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.dark_rounded .pp_expand:hover{background:url(images/prettyPhoto/dark_rounded/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.dark_rounded .pp_contract{background:url(images/prettyPhoto/dark_rounded/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.dark_rounded .pp_contract:hover{background:url(images/prettyPhoto/dark_rounded/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.dark_rounded .pp_close{width:75px;height:22px;background:url(images/prettyPhoto/dark_rounded/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.dark_rounded .pp_description{margin-right:85px;color:#fff}
div.dark_rounded .pp_nav .pp_play{background:url(images/prettyPhoto/dark_rounded/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.dark_rounded .pp_nav .pp_pause{background:url(images/prettyPhoto/dark_rounded/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.dark_rounded .pp_arrow_previous{background:url(images/prettyPhoto/dark_rounded/sprite.png) 0 -71px no-repeat}
div.dark_rounded .pp_arrow_next{background:url(images/prettyPhoto/dark_rounded/sprite.png) -22px -71px no-repeat}
div.dark_rounded .pp_bottom .pp_left{background:url(images/prettyPhoto/dark_rounded/sprite.png) -88px -80px no-repeat}
div.dark_rounded .pp_bottom .pp_right{background:url(images/prettyPhoto/dark_rounded/sprite.png) -110px -80px no-repeat}
div.dark_rounded .pp_loaderIcon{background:url(images/prettyPhoto/dark_rounded/loader.gif) center center no-repeat}
div.dark_square .pp_left,div.dark_square .pp_middle,div.dark_square .pp_right,div.dark_square .pp_content{background:#000}
div.dark_square .pp_description{color:#fff;margin:0 85px 0 0}
div.dark_square .pp_loaderIcon{background:url(images/prettyPhoto/dark_square/loader.gif) center center no-repeat}
div.dark_square .pp_expand{background:url(images/prettyPhoto/dark_square/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.dark_square .pp_expand:hover{background:url(images/prettyPhoto/dark_square/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.dark_square .pp_contract{background:url(images/prettyPhoto/dark_square/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.dark_square .pp_contract:hover{background:url(images/prettyPhoto/dark_square/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.dark_square .pp_close{width:75px;height:22px;background:url(images/prettyPhoto/dark_square/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.dark_square .pp_nav{clear:none}
div.dark_square .pp_nav .pp_play{background:url(images/prettyPhoto/dark_square/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.dark_square .pp_nav .pp_pause{background:url(images/prettyPhoto/dark_square/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.dark_square .pp_arrow_previous{background:url(images/prettyPhoto/dark_square/sprite.png) 0 -71px no-repeat}
div.dark_square .pp_arrow_next{background:url(images/prettyPhoto/dark_square/sprite.png) -22px -71px no-repeat}
div.dark_square .pp_next:hover{background:url(images/prettyPhoto/dark_square/btnNext.png) center right no-repeat;cursor:pointer}
div.dark_square .pp_previous:hover{background:url(images/prettyPhoto/dark_square/btnPrevious.png) center left no-repeat;cursor:pointer}
div.light_square .pp_expand{background:url(images/prettyPhoto/light_square/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.light_square .pp_expand:hover{background:url(images/prettyPhoto/light_square/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.light_square .pp_contract{background:url(images/prettyPhoto/light_square/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.light_square .pp_contract:hover{background:url(images/prettyPhoto/light_square/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.light_square .pp_close{width:75px;height:22px;background:url(images/prettyPhoto/light_square/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.light_square .pp_nav .pp_play{background:url(images/prettyPhoto/light_square/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.light_square .pp_nav .pp_pause{background:url(images/prettyPhoto/light_square/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.light_square .pp_arrow_previous{background:url(images/prettyPhoto/light_square/sprite.png) 0 -71px no-repeat}
div.light_square .pp_arrow_next{background:url(images/prettyPhoto/light_square/sprite.png) -22px -71px no-repeat}
div.light_square .pp_next:hover{background:url(images/prettyPhoto/light_square/btnNext.png) center right no-repeat;cursor:pointer}
div.light_square .pp_previous:hover{background:url(images/prettyPhoto/light_square/btnPrevious.png) center left no-repeat;cursor:pointer}
div.facebook .pp_top .pp_left{background:url(images/prettyPhoto/facebook/sprite.png) -88px -53px no-repeat}
div.facebook .pp_top .pp_middle{background:url(images/prettyPhoto/facebook/contentPatternTop.png) top left repeat-x}
div.facebook .pp_top .pp_right{background:url(images/prettyPhoto/facebook/sprite.png) -110px -53px no-repeat}
div.facebook .pp_content_container .pp_left{background:url(images/prettyPhoto/facebook/contentPatternLeft.png) top left repeat-y}
div.facebook .pp_content_container .pp_right{background:url(images/prettyPhoto/facebook/contentPatternRight.png) top right repeat-y}
div.facebook .pp_expand{background:url(images/prettyPhoto/facebook/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.facebook .pp_expand:hover{background:url(images/prettyPhoto/facebook/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.facebook .pp_contract{background:url(images/prettyPhoto/facebook/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.facebook .pp_contract:hover{background:url(images/prettyPhoto/facebook/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.facebook .pp_close{width:22px;height:22px;background:url(images/prettyPhoto/facebook/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.facebook .pp_description{margin:0 37px 0 0}
div.facebook .pp_loaderIcon{background:url(images/prettyPhoto/facebook/loader.gif) center center no-repeat}
div.facebook .pp_arrow_previous{background:url(images/prettyPhoto/facebook/sprite.png) 0 -71px no-repeat;height:22px;margin-top:0;width:22px}
div.facebook .pp_arrow_previous.disabled{background-position:0 -96px;cursor:default}
div.facebook .pp_arrow_next{background:url(images/prettyPhoto/facebook/sprite.png) -32px -71px no-repeat;height:22px;margin-top:0;width:22px}
div.facebook .pp_arrow_next.disabled{background-position:-32px -96px;cursor:default}
div.facebook .pp_nav{margin-top:0}
div.facebook .pp_nav p{font-size:15px;padding:0 3px 0 4px}
div.facebook .pp_nav .pp_play{background:url(images/prettyPhoto/facebook/sprite.png) -1px -123px no-repeat;height:22px;width:22px}
div.facebook .pp_nav .pp_pause{background:url(images/prettyPhoto/facebook/sprite.png) -32px -123px no-repeat;height:22px;width:22px}
div.facebook .pp_next:hover{background:url(images/prettyPhoto/facebook/btnNext.png) center right no-repeat;cursor:pointer}
div.facebook .pp_previous:hover{background:url(images/prettyPhoto/facebook/btnPrevious.png) center left no-repeat;cursor:pointer}
div.facebook .pp_bottom .pp_left{background:url(images/prettyPhoto/facebook/sprite.png) -88px -80px no-repeat}
div.facebook .pp_bottom .pp_middle{background:url(images/prettyPhoto/facebook/contentPatternBottom.png) top left repeat-x}
div.facebook .pp_bottom .pp_right{background:url(images/prettyPhoto/facebook/sprite.png) -110px -80px no-repeat}
div.pp_pic_holder a:focus{outline:none}
div.pp_overlay{background:#000;display:none;left:0;position:absolute;top:0;width:100%;z-index:9500}
div.pp_pic_holder{display:none;position:absolute;width:100px;z-index:10000}
.pp_content{height:40px;min-width:40px}
* html .pp_content{width:40px}
.pp_content_container{position:relative;text-align:left;width:100%}
.pp_content_container .pp_left{padding-left:20px}
.pp_content_container .pp_right{padding-right:20px}
.pp_content_container .pp_details{float:left;margin:10px 0 2px}
.pp_description{display:none;margin:0}
.pp_social{float:left;margin:0}
.pp_social .facebook{float:left;margin-left:5px;width:55px;overflow:hidden}
.pp_social .twitter{float:left}
.pp_nav{clear:right;float:left;margin:3px 10px 0 0}
.pp_nav p{float:left;white-space:nowrap;margin:2px 4px}
.pp_nav .pp_play,.pp_nav .pp_pause{float:left;margin-right:4px;text-indent:-10000px}
a.pp_arrow_previous,a.pp_arrow_next{display:block;float:left;height:15px;margin-top:3px;overflow:hidden;text-indent:-10000px;width:14px}
.pp_hoverContainer{position:absolute;top:0;width:100%;z-index:2000}
.pp_gallery{display:none;left:50%;margin-top:-50px;position:absolute;z-index:10000}
.pp_gallery div{float:left;overflow:hidden;position:relative}
.pp_gallery ul{float:left;height:35px;position:relative;white-space:nowrap;margin:0 0 0 5px;padding:0}
.pp_gallery ul a{border:1px rgba(0,0,0,0.5) solid;display:block;float:left;height:33px;overflow:hidden}
.pp_gallery ul a img{border:0}
.pp_gallery li{display:block;float:left;margin:0 5px 0 0;padding:0}
.pp_gallery li.default a{background:url(images/prettyPhoto/facebook/default_thumbnail.gif) 0 0 no-repeat;display:block;height:33px;width:50px}
.pp_gallery .pp_arrow_previous,.pp_gallery .pp_arrow_next{margin-top:7px!important}
a.pp_next{background:url(images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;display:block;float:right;height:100%;text-indent:-10000px;width:49%}
a.pp_previous{background:url(images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;display:block;float:left;height:100%;text-indent:-10000px;width:49%}
a.pp_expand,a.pp_contract{cursor:pointer;display:none;height:20px;position:absolute;right:30px;text-indent:-10000px;top:10px;width:20px;z-index:20000}
a.pp_close{position:absolute;right:0;top:0;display:block;line-height:22px;text-indent:-10000px}
.pp_loaderIcon{display:block;height:24px;left:50%;position:absolute;top:50%;width:24px;margin:-12px 0 0 -12px}
#pp_full_res{line-height:1!important}
#pp_full_res .pp_inline{text-align:left}
#pp_full_res .pp_inline p{margin:0 0 15px}
div.ppt{color:#fff;display:none;font-size:17px;z-index:9999;margin:0 0 5px 15px}
div.pp_default .pp_content,div.light_rounded .pp_content{background-color:#fff}
div.pp_default #pp_full_res .pp_inline,div.light_rounded .pp_content .ppt,div.light_rounded #pp_full_res .pp_inline,div.light_square .pp_content .ppt,div.light_square #pp_full_res .pp_inline,div.facebook .pp_content .ppt,div.facebook #pp_full_res .pp_inline{color:#000}
div.pp_default .pp_gallery ul li a:hover,div.pp_default .pp_gallery ul li.selected a,.pp_gallery ul a:hover,.pp_gallery li.selected a{border-color:#fff}
div.pp_default .pp_details,div.light_rounded .pp_details,div.dark_rounded .pp_details,div.dark_square .pp_details,div.light_square .pp_details,div.facebook .pp_details{position:relative}
div.light_rounded .pp_top .pp_middle,div.light_rounded .pp_content_container .pp_left,div.light_rounded .pp_content_container .pp_right,div.light_rounded .pp_bottom .pp_middle,div.light_square .pp_left,div.light_square .pp_middle,div.light_square .pp_right,div.light_square .pp_content,div.facebook .pp_content{background:#fff}
div.light_rounded .pp_description,div.light_square .pp_description{margin-right:85px}
div.light_rounded .pp_gallery a.pp_arrow_previous,div.light_rounded .pp_gallery a.pp_arrow_next,div.dark_rounded .pp_gallery a.pp_arrow_previous,div.dark_rounded .pp_gallery a.pp_arrow_next,div.dark_square .pp_gallery a.pp_arrow_previous,div.dark_square .pp_gallery a.pp_arrow_next,div.light_square .pp_gallery a.pp_arrow_previous,div.light_square .pp_gallery a.pp_arrow_next{margin-top:12px!important}
div.light_rounded .pp_arrow_previous.disabled,div.dark_rounded .pp_arrow_previous.disabled,div.dark_square .pp_arrow_previous.disabled,div.light_square .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default}
div.light_rounded .pp_arrow_next.disabled,div.dark_rounded .pp_arrow_next.disabled,div.dark_square .pp_arrow_next.disabled,div.light_square .pp_arrow_next.disabled{background-position:-22px -87px;cursor:default}
div.light_rounded .pp_loaderIcon,div.light_square .pp_loaderIcon{background:url(images/prettyPhoto/light_rounded/loader.gif) center center no-repeat}
div.dark_rounded .pp_top .pp_middle,div.dark_rounded .pp_content,div.dark_rounded .pp_bottom .pp_middle{background:url(images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat}
div.dark_rounded .currentTextHolder,div.dark_square .currentTextHolder{color:#c4c4c4}
div.dark_rounded #pp_full_res .pp_inline,div.dark_square #pp_full_res .pp_inline{color:#fff}
.pp_top,.pp_bottom{height:20px;position:relative}
* html .pp_top,* html .pp_bottom{padding:0 20px}
.pp_top .pp_left,.pp_bottom .pp_left{height:20px;left:0;position:absolute;width:20px}
.pp_top .pp_middle,.pp_bottom .pp_middle{height:20px;left:20px;position:absolute;right:20px}
* html .pp_top .pp_middle,* html .pp_bottom .pp_middle{left:0;position:static}
.pp_top .pp_right,.pp_bottom .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}
.pp_fade,.pp_gallery li.default a img{display:none}

.pp_gallery ul a img{
	width:50px !important;
	height:25px !important;
	max-width:50px !important;
}
