@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800&subset=latin,cyrillic);
@import url(http://fonts.googleapis.com/css?family=Exo+2:400,300,500,600,700&subset=latin,cyrillic);

body {
	background-color: #fff;
	margin: 0px;
	padding: 0px;
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	color: #232323;
	font-size: 16px;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
		 	box-sizing: border-box;
}


img {
	border: 0;
	max-width: 100%;
	height: auto;
}

a img {
	border: 0;
}

a {
	outline: 0 none;
}

*:focus {
	outline: 0 none;
}

a,
a:link,
a:visited {
	color: #448aff;
	text-decoration: none;

	transition: color .25s;
}

a:hover {
	color: #316bcd;
}

a:active {

} 

p {
	margin: 0;
}

p + p {
	margin-top: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: inherit;
	margin-top: 0;
	margin-bottom: 10px;
	font-family: "Exo 2", Arial, sans-serif;
}

button,
input[type=submit],
input[type=button] {
	cursor: pointer;
}

.columns:after {
  content: "";
  display: block;
  clear: both;
}

.left {
	float: left;
}

.right {
	float: right;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.text-justify {
	text-align: justify;
}

.container {
	max-width: 1024px;
	width: 100%;
	padding: 20px;
	margin: auto;
}


#top .container {
	padding-top: 10px;
	padding-bottom: 10px;
}

#top {
	font-size: 12px;
	color: #888888;
}

#top {
	background: #f6f6f6;
}

#top a {
	color: #888888;
}

#top-left {
	line-height: 30px;
	float: left;
	width: 50%;
}

#top-right {
	float: left;
	width: 50%;
	text-align: right;
}

#top-left .phone,
#top-left .email {
	display: inline-block;
}

#top-left .email {
	margin-left: 10px;
}

#top-left .phone:before,
#top-left .email:before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-right: 5px;
}

#top-left .phone:before {
	content: "\f095";
}

#top-left .email:before {
	content: "\f0e0";
}

#logo {
	float: left;
}

#logo img {
	height: 50px;
	width: auto;
}

#navigation {
	float: right;
	line-height: 50px;
}

#navigation ul {
	padding: 0;
	list-style: none;
	margin: 0;
	height: 50px;
	overflow: hidden;
}

#navigation ul li {
	display: inline-block;
}

#navigation ul li + li {
	margin-left: 10px;
}

#navigation a {
	color: #1a1c1d;
	text-transform: uppercase;
	font-size: 12px;
	display: block;
	padding: 0 10px;
	vertical-align: middle;
	display: inline-block;
}

#navigation a:hover {
	color: #448aff;
}

#header {
	height: 70px;
	vertical-align: middle;
	padding-top: 10px;
	padding-bottom: 10px;
}

#header .container {
	padding-top: 0;
	padding-bottom: 0;
	position: relative;
	z-index: 5;		
}

#header {
	position: relative;
}

#active-pointer {
    background: none;
    bottom: -10px;
    height: 0;
     left: 0;
    position: absolute;
    transform-origin: 0 0 0;
    transition: transform 0.25s ease 0s, width 0.25s ease 0s;
}

#active-pointer:after {
	width: 18px;
	height: 11px;
	background: url("../images/pointer.png") no-repeat center center;
	margin: auto;
	left: 0;
	right: 0;
	position: absolute;
	content: "";
	top: -12px;
}

.remove-transition {
	transition: none !important;
}

#footer {
	background: #181818;
	color: #FFF;	
}

#copyright {
	background: #313134;
	font-size: 12px;
	color: #b3b3b3;
}

#copyright .container {
	padding-top: 10px;
	padding-bottom: 10px;

}

#copyright-left {
	float: left;
	width: 50%;
}

#copyright-right {
	float: left;
	width: 50%;
	text-align: right;
}

#copyright a {
	color: #FFF;
}

#slider {
	background: url("../images/slide-1-bg.jpg") no-repeat center center;
	background-size: cover;
	height: 384px;
	position: relative;
}

#slider .moduletable {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	max-width: 1024px;
	width: 100%;
	margin: auto;
	padding-left: 20px;
	padding-right: 20px;
	overflow: hidden;
}

.cover-inner:after {
	clear: both;
	display: block;
	content: "";
}

.cover-object {
	float: left;
	margin-left: 120px;

	opacity: 0;
	-webkit-transform: translate3d(-30%, 0, 0);
	        transform: translate3d(-30%, 0, 0);
	-webkit-animation: reveal 0.6s 0.3s;
	        animation: reveal 0.6s 0.3s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
}

@-webkit-keyframes reveal {
    from {
    	opacity: 0;
    	-webkit-transform: translate3d(-30%, 0, 0);
    	        transform: translate3d(-30%, 0, 0);
    }
    to {
    	opacity: 1;
    	-webkit-transform: translate3d(0, 0, 0);
    	        transform: translate3d(0, 0, 0);
    }
}

@keyframes reveal {
    from {
    	opacity: 0;
    	-webkit-transform: translate3d(-30%, 0, 0);
    	        transform: translate3d(-30%, 0, 0);
    }
    to {
    	opacity: 1;
    	-webkit-transform: translate3d(0, 0, 0);
    	        transform: translate3d(0, 0, 0);
    }
}


@-webkit-keyframes revealContent {
    from {
    	opacity: 0;
    	-webkit-transform: translate3d(0, 50px, 0);
    	        transform: translate3d(0, 50px, 0);
    }
    to {
    	opacity: 1;
    	-webkit-transform: translate3d(0, 0, 0);
    	        transform: translate3d(0, 0, 0);
    }
}

@keyframes revealContent {
    from {
    	opacity: 0;
    	-webkit-transform: translate3d(0, 50px, 0);
    	        transform: translate3d(0, 50px, 0);
    }
    to {
    	opacity: 1;
    	-webkit-transform: translate3d(0, 0, 0);
    	        transform: translate3d(0, 0, 0);
    }
}


@-webkit-keyframes revealButton {
    from {
    	opacity: 0;
    	-webkit-transform: translate3d(0, 50px, 0);
    	        transform: translate3d(0, 50px, 0);
    }
    to {
    	opacity: 1;
    	-webkit-transform: translate3d(0, 0, 0);
    	        transform: translate3d(0, 0, 0);
    }
}

@keyframes revealButton {
    from {
    	opacity: 0;
    	-webkit-transform: translate3d(0, 50px, 0);
    	        transform: translate3d(0, 50px, 0);
    }
    to {
    	opacity: 1;
    	-webkit-transform: translate3d(0, 0, 0);
    	        transform: translate3d(0, 0, 0);
    }
}

.cover-object img {
	display: block;
}

.cover-content {
	position: absolute;
	top: 34px;
	bottom: 0;
	right: 20px;
	text-align: right;
	color: #FFF;
	height: 350px;
	margin: auto;
	display: inline-block;
	line-height: 350px;
	vertical-align: middle;
	font-size: 1.2em;
	opacity: 0;

		-webkit-transform: translate3d(0, 50px, 0);
	        transform: translate3d(0, 50px, 0);
	-webkit-animation: revealContent 0.6s 0.3s;
	        animation: revealContent 0.6s 0.3s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
}

.cover-content-inner {
	vertical-align: middle;
	line-height: 1;
	display: inline-block;
}

#logo a {
	display: inline-block;
}

#logo img {
	display: block;
}

.cover-title h3 {
	font-weight: 100;
	font-size: 28px;
}

.cover-action {
	margin-top: 20px;
}

.cover-action a {
	border: 3px solid #ffe400;
	color: #ffe400;
	display: inline-block;
	padding: 15px 40px;
	text-transform: uppercase;
	font-family: "Exo 2", Arial, sans-serif;
	font-weight: bold;
	border-radius: 8px;
	font-size: 14px;
	opacity: 0;

	-webkit-transform: translate3d(0, 50px, 0);
	        transform: translate3d(0, 50px, 0);
	-webkit-animation: revealButton 0.4s 0.5s;
	        animation: revealButton 0.4s 0.5s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;

	transition: background .25s,
				color .25s
}

.cover-action a:hover {
	background: #ffe400;
	color: #000;
}

#categories {
	padding-bottom: 20px;
	background: url("../images/pipes-1.jpg") no-repeat left bottom;
}

#categories ul {
	padding: 0;
	list-style: none;
	margin: 0;
	white-space: nowrap;
/*	display: -webkit-flex;*/
/*	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;*/
}

#categories ul li {
/*	flex-grow: 1;
	flex-shrink: 0;
	*/

	display: inline-block;
	white-space: normal;
	width: 25%;
	vertical-align: top;
}

#categories {
	position: relative;
}

#categories .prod-prev-wrapper {
	position: absolute;
	top: 100px;
	left: -60px;
	bottom: 0;
	margin: auto;
	width: 40px;
}

#categories .prod-next-wrapper {
	position: absolute;
	top: 100px;
	bottom: 0;
	right: -60px;
	margin: auto;
	width: 40px;
}

.slider-nav-wrapper {
	position: relative;
	max-width: 1024px;
}

#categories .prod-prev-wrapper a,
#categories .prod-next-wrapper a {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 40px;
	height: 40px;
	margin: auto;

	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #000;
	line-height: 40px;
	text-align: center;


	font-size: 2em;
	border: 1px solid #000;
	border-radius: 100%;

	transition: background .25s;
}

#categories .prod-prev-wrapper a:hover,
#categories .prod-next-wrapper a:hover {
	background: #ffe400;
}

#categories .prod-prev-wrapper a:before {
	content: "\f104";
	margin-left: -1px;
	margin-top: -1px;
}

#categories .prod-next-wrapper a:before {
	content: "\f105";
	margin-top: -1px;
	margin-right: -2px;
}

#categories ul li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px;
}

#categories .category-image img {
	display: block;
	width: 100%;
	height: auto;
}

#categories .category-image {
	position: relative;


	/* Debug */
	/*max-height: 111px;*/
	overflow: hidden;
}

#categories .category-image:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 5;
	
	width: 32px;
	height: 32px;
	border-radius: 100%;
	margin: auto;
	background: url("../images/eye-icon.png") no-repeat center center #FFF;

	transform: translate3d(0, 20px, 0);
	visibility: hidden;
	opacity: 0;
	transition: opacity .25s,
				transform .25s,
				visibility .25s;
}

#categories li a:hover .category-image:after {
	
	transform: translate3d(0, 0, 0);
	visibility: visible;
	opacity: 1;
	transition: opacity .25s,
				transform .25s,
				visibility 0;
}

#categories .category-image:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 3;

	background: rgba(0, 24, 91, 0.7);

	opacity: 0;
	visibility: hidden;
	transition: opacity .25s,
				visibility .25s;
}

#categories li a:hover .category-image:before {
	opacity: 1;
	visibility: visible;
	transition: opacity .25s,
				visibility 0;
}

#categories .category-title {
	background: #f8f8f8;
	color: #000;
	text-align: center;
	font-weight: 100;
	padding: 15px;
	border-bottom: 1px solid #dcdcdc;
}

#categories .category-action {
	text-align: center;
	background-color: #efefef;
	padding-top: 7px;
	padding-bottom: 7px;
}

#categories .category-button {
	display: inline-block;
	background: #FFF;
	color: #000;
	border: 1px solid #CCC;
	padding: 7px 5px;
	border-radius: 5px;
	font-size: 12px;

	transition: background .25s;
}

#categories li a:hover .category-button {
	background: #DDD;
}

.products-slider-wrapper {
	overflow: hidden;
}

.products-slider-inner {
	transform: translate3d(0, 0, 0);
	transition: transform .25s;
}


#main-container {
	background: #FFF !important;
}

#categories + #main-container {
	background: url("../images/pipes-2.png") no-repeat right top #EFEFEF !important ;
}

#main-container {
}

#main-container .container {
	padding-top: 40px;
	padding-bottom: 40px;
}

#categories .k2CustomCodeBlock {
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
}

#categories .k2CustomCodeBlock a {
	color: #000;
	font-family: "Exo 2", Arial, sans-serif;
	display: inline-block;
	border: 2px solid #ffe400;
	padding: 15px;
	border-radius: 4px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
	background: #FFF;

	transition: background .25s;
}

#categories .k2CustomCodeBlock a:hover {
	background: #ffe400;
}

#categories .module-header {
	text-align: center;
	margin-top: -35px;
}

#categories .module-header .page-header:before {
	content: "";
	display: block;
	width: 64px;
	height: 64px;
	background: url("../images/categories-icon@2x.png") no-repeat center center;
	background-size: 32px 32px;
	margin: auto;
	background-color: #231f1f;
	border: 7px solid #FFF;
	border-radius: 100%;
}


#categories .module-header .page-header {
	text-transform: uppercase;
	font-size: 18px;
	font-weight: bold;
}

#categories .category-title {
	vertical-align: middle;
	display: inline-block;
	width: 100%;
}

#categories .category-title-inner {
	width: 100%;
	vertical-align: middle;
	line-height: 1;
	display: inline-block;
}

h2.item-title {
	color: #000;
	padding-left: 5px;
	border-left: 3px solid #448aff;
	margin-bottom: 20px;
}

#footer ul {
	padding: 0;
	list-style: none;
	margin: 0;
}

#component ul.check-list {
	padding: 0;
	margin: 0;
	list-style: none;
	margin-top: 20px;
	margin-bottom: 20px;
}

#component ul.check-list li + li {
	margin-top: 5px;
}

#component ul.check-list li:before {
	background: url("../images/bullet.png") no-repeat center center;
	vertical-align: middle;
	width: 20px;
	height: 17px;
	margin-right: 7px;
	content: "";
	display: inline-block;
}

#footer a {
	color: #FFF;
}

#footer .container {
	padding-left: 10px;
	padding-right: 10px;
}

#footer-1 {
	width: 18%;
	float: left;
	padding: 10px;
}

#footer-2 {
	width: 25%;
	float: left;
	padding: 10px;
}

#footer-3 {
	width: 24%;
	float: left;
	padding: 10px;
}

#footer-3 p + p {
	margin-top: 5px;
}

#footer-4 {
	width: 33%;
	float: left;
	padding: 10px;
}

#footer .moduletable_menu > h3,
#footer .moduletable > h3 {
	text-transform: uppercase;
	font-size: 14px;
	position: relative;
	padding-bottom: 5px;
}

#footer .moduletable_menu > h3:after,
#footer .moduletable > h3:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 20px;
	border-bottom: 2px solid #ffe400;
}

#footer {
	font-size: 12px;
	line-height: 1.5;
}

#footer-2 .k2CategoriesListBlock ul > li:nth-child(n+12) {
	display: none;
}

#footer-2 .k2CategoriesListBlock ul:after {
	clear: both;
	display: block;
	content: "";
}

#footer-2 .k2CategoriesListBlock ul > li {
/*	float: left;
	width: 50%;
	padding-right: 5px;*/

	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#footer li {
	line-height: 2;
}

#footer a:hover {
	color: #ffe400;
}

#footer-2 .k2CustomCodeBlock {
	margin-left: 50%;
	margin-top: -27px;
	
}

#footer-2 .k2CustomCodeBlock a {
	color: #ffd044;
	text-decoration: underline;
}

#footer-2 .k2CustomCodeBlock a:after {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-left: 5px;
	content: "\f105";
	font-size: 8px;
	margin-top: -2px;
}

#footer-2 .k2CustomCodeBlock a:hover {
	text-decoration: none;
}

#footer .legend_top {
	background: rgba(255, 255, 255, 0.05);
	padding: 10px;
	margin-bottom: 15px;
	max-width: 310px;
}

#footer .legend_top:after {
	clear: both;
	content: "";
	display: block;
}

#footer .legend_img {
	float: left;
	width: 80px;
}

#footer .legend_img img {
	vertical-align: middle;
}

#footer .legend_text {
	color: #FFF;
	border-left: 1px dashed rgba(255, 255, 255, 0.1);
	text-align: center;
	padding-left: 20px;
	float: left;
	width: calc(100% - 80px);
	font-size: 16px;
	line-height: 1;
	font-weight: 100;
	font-family: "Exo 2", Arial, sans-serif;
}

#search h3 {
	display: none;
}

#search .k2filter-table {
	float: left;
}

#search input.button {
	/*float: left;*/
	margin-top: 0 !important;
	display: inline-block;
	font-size: 11px;
}

#search .k2filter-cell {
	padding: 0;
}

#search {
	float: right;
	/*line-height: 50px;*/
	/*margin-top: 9px;*/
	/*margin-right: 40px;*/
}

#search input {
	background: #FFF;
	border: 1px solid #DDD;
	-webkit-appearance: none;
	border-radius: 4px;
	padding: 5px;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 12px;
	height: 32px;
}

#search input[type=text] {
	border-radius: 4px 0 0 4px;
	border-right: 0;
	color: #333;

	transition: border .25s,
				background .25s,
				color .25s
}

#search input[type=text]:focus,
#search input[type=text]:hover {
	background: #EFEFEF;
	color: #333;
}

#search input.button {
	border-radius: 0 4px 4px 0;
	height: 32px;
	background: #FFF;
	color: #666;
	text-transform: uppercase;

	transition: background .25s,
				color .25s;
}

#search input.button:hover,
#search input.button:focus {
	background: #EFEFEF;
}

#cover {
	min-height: 150px;
	background: url("../images/lexa-cover.jpg") no-repeat center center;
	background-size: cover;
	color: #FFF;
	font-size: 12px;
	text-align: center;
}

#cover a {
	color: #FFF;
}

#cover ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#cover .vertical-align {
	padding-top: 0;
	padding-bottom: 0;
	line-height: 150px;
	vertical-align: middle;
	display: inline-block;
	width: 100%;
	max-width: 1024px;
}

#cover .vertical-align-inner {
	line-height: 1;
	vertical-align: middle;
	display: inline-block;
	width: 100%;
}

#cover ul li {
	display: inline-block;
	text-transform: uppercase;
}

#cover ul li span,
#cover ul li a {
	display: inline-block;
	padding: 4px;
	white-space: nowrap;
}

#cover .divider img {
	display: none;
}

#cover .divider:before {
	content: "/";
	/*margin-left: 5px;*/
	/*margin-right: 5px;*/
}

#cover h1 {
	text-transform: uppercase;
	font-size: 26px;
}

#cover ul > li:first-child {
	display: none;
}

#cover ul > li:first-child + li a {
	position: relative;
	text-indent: -999px;
	overflow: hidden;
	width: 16px;
	height: 16px;
	line-height: 16px;
}


#cover ul > li:first-child + li a:before {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	text-indent: 0;
	text-align: center;

	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f015";

	line-height: inherit;
}

#component .itemListSubCategories:after {
	clear: both;
	display: block;
	content: "";
}

#component .subCategoryContainer {
	float: left;
	width: 33% !important;
	padding: 10px;
}

#component > .subCategoryContainer:nth-child(3n) {
	margin-left: 0.5% !important;
	margin-right: 0.5% !important;
}

.subCategoryImage {
	position: relative;


	/* Debug */
	/*max-height: 111px;*/
	overflow: hidden;
}

div.subCategory a.subCategoryImage img, div.subCategory a.subCategoryImage:hover img {
	background: none;
	border: 0;
	margin: 0;
	padding: 0;
	display: block;
	width: 100% !important;
	height: auto !important;
}

div.subCategory {

	background: none;
	border: 0;
	margin: 0;
	padding: 0;
}

#component .subCategoryImage + h2 {
	background: #f8f8f8;
	color: #000;
	text-align: center;
	font-weight: 100;
	padding: 10px 15px;
	border-bottom: 1px solid #dcdcdc;
	font-size: 16px;
	color: #000;
	line-height: 48px;
	margin-bottom: 0;
}

#component .subCategoryImage + h2 a {
	color: #000;
	width: 100%;
	vertical-align: middle;
	line-height: 1;
	display: inline-block;
}

#component .category-more {
	text-align: center;
	background-color: #efefef;
	padding-top: 7px;
	padding-bottom: 7px;
}

#component .category-more a {
		display: inline-block;
	background: #FFF;
	color: #000;
	border: 1px solid #CCC;
	padding: 7px 5px;
	border-radius: 5px;
	font-size: 12px;
}

#component .subCategory:hover .category-more a {
	background: #DDD;
}


#component .subCategory:hover .subCategoryImage:after {
	
	transform: translate3d(0, 0, 0);
	visibility: visible;
	opacity: 1;
	transition: opacity .25s,
				transform .25s,
				visibility 0;
}

#component .subCategoryImage:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 3;

	background: rgba(0, 24, 91, 0.7);

	opacity: 0;
	visibility: hidden;
	transition: opacity .25s,
				visibility .25s;
}

#component .subCategory:hover .subCategoryImage:before {
	opacity: 1;
	visibility: visible;
	transition: opacity .25s,
				visibility 0;
}


#component .subCategoryImage:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 5;
	
	width: 32px;
	height: 32px;
	border-radius: 100%;
	margin: auto;
	background: url("../images/eye-icon.png") no-repeat center center #FFF;

	transform: translate3d(0, 20px, 0);
	visibility: hidden;
	opacity: 0;
	transition: opacity .25s,
				transform .25s,
				visibility .25s;
}


.contact h3 {
	display: none;
}

.contact .contact-miscinfo {
	float: left;
	width: 50%;
}

.contact .contact-form {
	float: left;
	width: 50%;
}

.contact:after {
	clear: both;
	display: block;
	content: "";
}

.contact legend {
	display: none;
}

.contact fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

.tooltip {
	display: none !important;
}

.ot_row .tooltip {
	display: block !important;
	position: absolute;
	background: #000;
	color: #FFF;
	font-size: 0.8em;
	padding: 10px;
	border-radius: 5px;
	
	opacity: 0;
	/*transform: translate3d(0, 20px, 0);*/
	transition: opacity .25s,
				transform .25s;
}

.ot_row .tooltip.in {
	opacity: 1;
	/*transform: translate3d(0, 0, 0);*/
}

.ot_row .tooltip:after {
	width: 0; 
	height: 0; 
	border-left: 5px solid transparent; 
	border-right: 5px solid transparent; 
	border-top: 5px solid #000;
	content: "";
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -5px;

}

.ot_row a {
	display: block;
	text-align: center;
	background: #F6F6F6;
	padding: 10px;
	text-align: center;

	transition: background .25s;
}

.ot_row a:hover {
	background: #E0E0E0;
}

.ot_row img {
	opacity: 0.7;
	transition: opacity .25s;
}

.ot_row a:hover img {
	opacity: 1;
}



.contact dl,
.contact dt,
.contact dd {
	margin: 0;
	padding: 0;
}

.contact dt {
	display: none;
}


#footer .c_city,
#footer .c_addr,
#footer .tel,
#footer .fax,
.contact .c_city,
.contact .c_addr,
.contact .tel,
.contact .fax {
	position: relative;
	padding-left: 28px;
}

#footer .c_city:before,
#footer .c_addr:before,
#footer .tel:before,
#footer .fax:before,
.contact .c_city:before,
.contact .c_addr:before,
.contact .tel:before,
.contact .fax:before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	top: 4px;
	left: 0;
	width: 18px;
}

#footer .c_addr,
.contact .c_addr {
	margin-top: 0;
}

#footer .c_city:before,
.contact .c_city:before {
	content: "\f041";
}

#footer .c_addr:before,
.contact .c_addr:before {
	content: "";
}

#footer .tel:before,
.contact .tel:before {
	content: "\f095";
}

#footer .fax:before,
.contact .fax:before {
	content: "\f1ac";
}

.contact label {
	width: 100%;
}

.contact .control-group + .control-group {
	margin-top: 10px;
}

.contact input[type=text],
.contact textarea,
.contact input[type=email] {
	width: 100%;
	border: 1px solid #CCC;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 1em;
	padding: 10px;
	border-radius: 4px;
	background: #FFF;

	transition: background .25s,
				border .25s;
}

.contact input[type=text]:hover,
.contact textarea:hover,
.contact input[type=email]:hover,
.contact input[type=text]:focus,
.contact textarea:focus,
.contact input[type=email]:focus {
	border: 1px solid #AAA;
	background: #FEFEFE;
}

.contact button {
	color: #000;
	font-family: "Exo 2", Arial, sans-serif;
	display: inline-block;
	border: 2px solid #ffe400;
	padding: 15px;
	border-radius: 4px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
	background: #FFF;

	transition: background .25s;
}

.contact button:hover,
.contact button:focus {
	background: #ffe400;
}

#map-close {
	display: none;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: #CCC;
	color: #000;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
}

#close-sidebar {
	display: none;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: #CCC;
	color: #000;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9991;
}

#toggle-sidebar {
	display: block;
	background: none repeat scroll 0 0 #448aff;
	color: #ffffff;
	font-family: "Exo 2",Arial,sans-serif;
	font-size: 18px;
	font-weight: 100;
	margin-bottom: 0;
	padding: 15px 10px;
	position: relative;
	text-transform: uppercase;
	margin-bottom: 20px;

	display: none;
}

#toggle-sidebar:after {
	width: 18px;
	height: 18px;
	background: #FFF;
	line-height: 18px;
	text-align: center;
	border-radius: 100%;
	color: #448aff;

	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f105";
	font-size: 12px;

	line-height: 18px;

	position: absolute;
	right: 10px;
	top: 10px;
	bottom: 10px;
	margin: auto;
}

#map-toggle {

	display: none;

	position: fixed;

	width: 48px;
	height: 48px;
	background: #448aff;
	line-height: 48px;
	text-align: center;
	border-radius: 100%;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
}

#map-toggle .fa {
	width: 48px;
	line-height: 48px;
	text-align: center;	
	font-size: 20px;
	color: #FFF;
}

#sidebar {
	float: left;
	width: 30%;
}

#sidebar ~ #component,
#sidebar + #component {
	float: left;
	width: 70%;
	padding-left: 20px;
}

#main-container:after {
	clear: both;	
	display: block;
	content: "";
}

#sidebar ul {
	padding: 0;
	list-style: none;
	margin: 0;
}

#sidebar ul ul {
	margin-top: 1px;
}



#sidebar .moduletable > h3 {
	background: #448aff;
	color: #FFF;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 100;
	padding: 15px 10px;

	position: relative;
	font-family: "Exo 2", Arial, sans-serif;
	margin-bottom: 0;
}

#sidebar .moduletable > h3:after {
	width: 18px;
	height: 18px;
	background: #FFF;
	line-height: 18px;
	text-align: center;
	border-radius: 100%;
	color: #448aff;

	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f105";
	font-size: 12px;

	line-height: 18px;
	
	position: absolute;
	right: 10px;
	top: 10px;
	bottom: 10px;
	margin: auto;
}

#sidebar ul li {
	display: block;
}

#sidebar {
	margin-bottom: 20px;
}

#sidebar ul li a {
	display: block;
	padding: 10px;
	background: #f0f0f0;
	color: #000;
	font-weight: 100;
	font-family: "Exo 2", Arial, sans-serif;
	position: relative;
	background: #f0f0f0;
	position: relative;

	padding-right: 38px;

	transition: background .25s,
				color .25s;

}


#sidebar ul li a .catCounter {
	position: absolute;
	right: 10px;
	top: 10px;
	bottom: 10px;
	height: 18px;
	line-height: 12px;
	min-width: 18px;
	background: #448aff;
	color: #FFF;
	margin: auto;
	padding: 3px;

	border-radius: 100%;
	font-size: 11px;
	text-align: center;
	font-family: Arial, sans-serif;
}




#sidebar ul ul a:before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f105";
	margin-right: 5px;
}

#sidebar ul ul a {
	padding-left: 20px;
	background: #faf9f9;
}

#sidebar ul ul ul a {
	padding-left: 40px;
}


#sidebar ul ul ul ul a {
	padding-left: 60px;
}


#sidebar ul ul ul ul ul a {
	padding-left: 80px;
}


#sidebar ul ul ul ul a:before {
	content: "\f105\f105\f105";
}

#sidebar ul ul ul a:before {
	content: "\f105\f105";
}

#sidebar ul ul ul ul ul a:before {
	content: "\f105\f105\f105\f105";
}



#sidebar ul li + li {
	margin-top: 1px;
}

#sidebar ul li a:hover { 
	background-color: #e3e3e3;
}

#sidebar ul li.active > a {
	background: #231f1f;
	color: #FFF;
}

#sidebar ul ul li.active > a {
	background: #DDD;
	color: #000;
}

#itemListPrimary:after {
	clear: both;
	content: "";
	display: block;

}

#itemListPrimary > .itemContainer {
	float: left;
	width: 50% !important;
	padding: 10px;
}

.featured-items #itemListPrimary > .itemContainer {
	width: 33% !important;
}

.featured-items #itemListPrimary > .itemContainer:nth-child(3n-1) {
	margin-left: 0.5%;
	margin-right: 0.5%;
}

#itemListPrimary > .itemContainer:nth-child(2n+1) {
	clear: both;
}

#component .catItemCategory,
#component .catItemLinks,
#component .catItemImage,
#component .catItemTitle,
#component .catItemImageBlock,
#component .catItemBody,
#component .catItemView  {
	margin: 0;
	padding: 0;
	border: 0 none;
}

#component .catItemImage img {
	display: block;
	width: auto !important;
	height: auto !important;
	padding: 0;
	border: 0;
}

#component .catItemTitle {
	border-top: 1px solid #EFEFEF;
	font-size: 16px;
	padding-top: 15px;
	padding-bottom: 5px;
	margin-top: 10px;
}

#component .catItemTitle a {
	display: block;
}

#component .catItemReadMore {
	text-align: center;
	display: block;
}

#component .catItemReadMore a {
	font-family: "Exo 2", Arial, sans-serif;
	display: inline-block;
	border: 2px solid #448aff;
	padding: 10px;
	border-radius: 4px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 12px;
	background: #FFF;

	color: #000;
	transition: background .25s,
				color .25s;
}

#component .catItemReadMore a:hover {
	background: #448aff;
	color: #FFF;
}

#itemListPrimary {
	margin-top: -10px;
	margin-left: -10px;
	margin-right: -10px;
}

#component span.catItemImage img {
	border: 0;
	padding: 0;
}

#component .catItemBody {
	padding: 10px;
	border: 1px solid #EFEFEF;
}

#component .catItemCategory {
	border: 1px solid #EFEFEF;
	padding: 10px;
	border-top: 0;

	background: #EFEFEF;

	font-size: 12px;
}

#component .catItemCategory a {
	color: #666;
} 


#component .catItemCategory a:hover {
	color: #000;
}

#component .catItemCategory a:before {
		display: inline-block;
		font: normal normal normal 14px/1 FontAwesome;
		font-size: inherit;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f105";
		margin-right: 10px;
}

.itemListSubCategories > h3 {
	display: none !important;
}

#component .catItemImageBlock {
	position: relative;
	overflow: hidden;
}

#component .catItemImageBlock img {
	transform: scale3d(1, 1, 1);
	transition: transform .5s;
}

#component .catItemView:hover .catItemImageBlock img {
	transform: scale3d(1.1, 1.1, 1.1);
}

.k2Pagination ul li + li {
	margin-left: 5px;
}

.k2Pagination {
	margin: 0;
}

.k2Pagination .pagination-start,
.k2Pagination .pagination-end {
	display: none;
}

.k2Pagination li a,
.k2Pagination li span {
	background: #EFEFEF;
	min-width: 32px;
	height: 32px;
	line-height: 32px;
	display: inline-block;
	vertical-align: middle;

	transition: background .25s;
}

.k2Pagination .pagination-next span,
.k2Pagination .pagination-next a,
.k2Pagination .pagination-prev span,
.k2Pagination .pagination-prev a {
	text-indent: -9999px;
	overflow: hidden;
	width: 32px;
	height: 32px;
	line-height: 32px;	
	position: relative;
	text-align: center;
	display: inline-block;
	vertical-align: middle;

}

.k2Pagination li a:hover {
	background: #CCC;
}

.k2Pagination .pagination-next span:before,
.k2Pagination .pagination-next a:before,
.k2Pagination .pagination-prev span:before,
.k2Pagination .pagination-prev a:before {

	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f177";

	line-height: inherit;
	width: inherit;
	height: inherit;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	text-indent: 0;
}

.k2Pagination .pagination-next span:before,
.k2Pagination .pagination-next a:before {
	content: "\f178";
}

#component .pagination-start + li {
	margin-left: 0;
}

#component div.k2Pagination {
	margin: 0;
	padding-top: 20px;
}

#component div.k2Pagination .clr {
	margin-bottom: 10px;
}

div.k2Pagination ul {
	padding: 0;
	margin: 0;
	width: 100%;
}

#footer ul ul {
	display: none;
}

#component .itemBody:after {
	clear: both;
	content: "";
	display: block;
}

#component .itemLeft {
	float: left;
	width: 50%;
	padding-right: 10px;
}

#component .itemRight {
	float: left;
	width: 50%;
	padding-left: 10px;
}

#component .itemBody,
#component .itemImageBlock,
#component .itemTitle,
#component .itemLinks,
#component .itemExtraFields {
	margin: 0;
	padding: 0;
}

#component .itemTitle {
	font-family: "Exo 2", Arial, sans-serif;
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 20px;
	margin-top: 15px;
}

#component .itemExtraFields {
	border: 0;
}

#component .itemExtraFields ul {
	padding: 0;
	margin: 0;
	list-style: none;

	display: table;
	width: 100%;
}

#component .itemExtraFields ul li {
	background: 0;

	display: table-row;

}

#component .itemExtraFields ul li span {
	padding-bottom: 5px;
	padding-top: 5px;
	border-bottom: 1px solid #EFEFEF;
	display: table-cell;
	vertical-align: top;

	width: 60%;

	font-size: 14px;

	text-transform: uppercase;
	font-weight: normal;

	float: none;
	margin: 0;

}

#component .itemExtraFields ul li span + span {
	font-weight: bold;
	width: 40%;
}

#component .itemView .itemImage img {
	display: block;
	width: 100% !important;
	height: auto !important;
}

#component .itemSocialShare {
	margin-top: 20px;
}

#component .itemSocialShare a {
	background: #efefef;
	color: #545760;
	font-size: 12px;
	display: inline-block;
	width: 32%;
	padding: 10px;
	margin-right: -4px;
	text-align: center;

	transition: background .25s,
				color .25s;
}

#component .itemSocialShare a:hover {
	background: #CCC;
}

#component .itemSocialShare a.facebook-share:hover {
	background: #3b5998;
	color: #FFF;
}

#component .itemSocialShare a.twitter-share:hover {
	background: #55ACEE;
	color: #FFF;
}

#component .itemSocialShare a.google-share:hover {
	background: #dd4b39;
	color: #FFF;
}

#component .itemSocialShare > a:nth-child(2n) {
	margin-left: 2%;
	margin-right: 2%;
}

#component .itemSocialShare > a:nth-child(3n) {
	margin-left: -4px;
}

#component .itemSocialShare .fb:after,
#component .itemSocialShare .tw:after,
#component .itemSocialShare .gp:after {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f105";
	margin-left: 5px;
	width: 14px;
}

#component .itemSocialShare .fb:after {
	content: "\f09a";
}

#component .itemSocialShare .tw:after {
	content: "\f099";
}

#component .itemSocialShare .gp:after {
	content: "\f0d5";
}

#component .itemView .itemImage a {
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
}

.guarantee-img {
	width: 45px;
	height: 71px;
	background: url("../images/years-guarantee.png") no-repeat center center;


	position: absolute;
	left: 10px;
	top: 10px;
}

.guarantee-img.one-year {
	background-image: url("../images/year-guarantee.png");
}

.guarantee-img span {
	line-height: 45px;
	font-weight: bold;
}

.packages {
	margin-top: 20px;
	margin-bottom: 20px;
}

.packages-img {
	width: 71px;
	height: 71px;

	background: url("../images/packages.png") no-repeat center center;

	position: relative;

	margin: auto;
}

.packages-img.only-box {
	background: url("../images/packagesBox.png") no-repeat center center;
}

.packages-img.only-carton {
	background: url("../images/packagesCarton.png") no-repeat center center;
}

.package-box {
	position: absolute;
	color: #FFF;
	font-weight: bold;
	font-size: 10px;
	left: 14px;
	top: 32px;
}

.carton-box {
	position: absolute;
	color: #448aff;
	font-weight: bold;
	font-size: 10px;
	left: 35px;
	top: 32px;
}

.packages-img.only-carton .carton-box,
.packages-img.only-box .package-box {
	width: 18px;
	height: 18px;
	text-align: center;
	line-height: 18px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 3px;
	margin: auto;
}

.itemDescription {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #DDD;
}

#component .itemLinks {
	margin-top: 20px;
}

#component .itemRelated {
	/*margin-top: 20px;*/
	padding-top: 20px;
	margin-bottom: 0;
	/*border-top: 1px solid #EFEFEF;*/
}

#component .itemNavigation {
	margin: 0;
	border: 0;
	padding: 10px 0;
	margin-bottom: 20px;
	border-top: 1px solid #EFEFEF;
	border-bottom: 1px solid #EFEFEF;
}

#component #k2Container {
	border: 0 none;
	padding: 0;
	margin: 0;
}

#component .itemRelated ul {
	padding: 0;
	margin: 0;
	list-style: none;
	margin-left: -10px;
	margin-right: -10px;
	margin-top: -10px;
}

#component .itemRelated ul:after {
	clear: both;
	display: block;
	content: "";
}

#component .itemRelated ul li {
	float: left;
	width: 33%;
	padding: 10px;

	border: 0 none;
	background: none;
}

#component .itemRelatedInner {
	border: 1px solid #EFEFEF;
	padding: 10px;
}

#component .itemRelImg {
	overflow: hidden;
	position: relative;
}

#component .itemRelImg img {
	display: block;
	width: 100% !important;
	height: auto !important;
	
	transform: scale3d(1.0, 1.0, 1.0);
	transition: transform .5s;
}

#component .itemRelated a:hover img {
	transform: scale3d(1.1, 1.1, 1.1);
}

#component .itemRelated .itemRelTitle {
	border-top: 1px solid #EFEFEF;
	padding: 10px 0;
	padding-bottom: 0;
	display: block;

	font-size: 14px;
}

#component .itemRelated ul > li:nth-child(3n-1) {
	margin-left: 0.5%;
	margin-right: 0.5%;
}

#component .itemRelated ul > li:nth-child(3n+1) {
	clear: both;
}

#component .itemAttachments li,
#component .itemAttachmentsBlock,
#component div.itemCategory {
	padding: 0;
	margin: 0;
	border: 0 none;
}

#component .itemAttachments,
#component .itemCategory {
	border: 1px solid #EFEFEF;
	border-top: 0;

	background: #EFEFEF;

	font-size: 12px;
	display: block;
	text-align: left;
}

#component .itemAttachments a,
#component .itemCategory a {
	color: #666;
	display: block;
	padding: 10px;
	text-align: left;

	transition: background .25s,
				color .25s	;
} 

#component .itemAttachments a:hover,
#component .itemCategory a:hover {
	background: #448aff;
	color: #FFF;
}

#component .itemAttachments a:before,
#component .itemCategory a:before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f105";
	margin-right: 10px;
	width: 18px;
	text-align: center;
}

#component .itemAttachments a:before {
	content: "\f019";
}

#component .itemAttachments {
	margin-top: 1px;
}


#component .resultf {
	float: none;
	margin-top: 15px;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 10px;
}

#component .page-header > h2,
#component .itemView .itemTitle {
	padding-left: 8px;
	border-left: 3px solid #448aff;
}

.trademarks {
	vertical-align: middle;
}

.express-order {
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 20px;
	border: 1px solid #EFEFEF;
	background: #dfe7f5;
}


.express-order input[type=text],
.express-order textarea,
.express-order input[type=email] {
	width: 100%;
	border: 1px solid #CCC;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 1em;
	padding: 10px;
	border-radius: 4px;
	background: #FFF;
	max-width: 100%;

	transition: background .25s,
				border .25s;
}

.express-order input[type=text]:hover,
.express-order textarea:hover,
.express-order input[type=email]:hover,
.express-order input[type=text]:focus,
.express-order textarea:focus,
.express-order input[type=email]:focus {
	border: 1px solid #AAA;
	background: #FEFEFE;
}

#component .bfPage:after {
	clear: both;
	display: block;
	content: "";
}

#bfElemWrap1 {
	float: left;
	width: 50%;
	padding-right: 10px;
}

#bfElemWrap2 {
	float: left;
	width: 50%;
	padding-left: 10px;
}

#bfElemWrap3 {
	float: none;
	clear: both;
	padding-top: 20px;
}

#bfElemWrap3 label {
	width: 100%;
	max-width: 100%;
	display: block;
}

.bfSectionDescription {
	margin-top: 10px;
	margin-bottom: 10px;
}

.bfPage button {
	color: #000;
	font-family: "Exo 2", Arial, sans-serif;
	display: inline-block;
	border: 2px solid #448aff;
	padding: 10px;
	border-radius: 4px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
	background: #FFF;

	transition: background .25s,
				color .25s;
}

.bfPage button:hover,
.bfPage button:focus {
	background: #448aff;
	color: #FFF;
}

.bfErrorMessage.alert.alert-error {
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 10px;
	background: #f7a2a2;
	color: #650606;
}

.bfPage h4 {
	text-align: left !important;
	padding-left: 8px;
	border-left: 3px solid #448aff;
}
#component #phoca-dl-category-box .pd-category .pd-ctitle {
	background: none;
	border: 0;
	padding: 0;
	
	line-height: 33px;
	position: relative;
}

#component #phoca-dl-category-box .pd-category .pd-ctitle:before {
	content: "";
	border-left: 3px solid #448aff;
	display: inline-block;
	height: 33px;
	vertical-align: top;
	margin-left: 8px;
	margin-right: 8px;
	width: 3px;
}

#component #phoca-dl-category-box .pd-cdesc {
	color: #666;
}

#component #phoca-dl-category-box .pdtop img {
	display: none;
}


#component #phoca-dl-category-box .pdtop a {
	position: relative;
	z-index: 4;
}

#component #phoca-dl-category-box .pdtop {
	padding-top: 0;
}

#component #phoca-dl-category-box .pdtop a:after {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f060";
	/*background: #EFEFEF;*/
	padding: 10px;
	font-size: 14px;
}

#component .pd-button-download a.btn {
	display: block;
	padding: 10px;
	text-align: left;

	transition: background .25s,
				color .25s	;

	background: #448aff;
	color: #FFF;
}

#component .pd-button-download a.btn:hover {
	background: #3781cd;
}

#component .pd-filename [class^=pd-document] {
	background: none !important;
	padding: 0;
	margin-top: 5px;
}

#component .pd-filename [class^=pd-document] a:before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f15b";
	background: #EFEFEF;
	/*float: left;*/
	margin-right: 10px;
}

#component .pd-filename [class^=pd-document] > .pd-float {
	margin: 0;
}

#component .pd-fdesc {
	color: #666;
}

#component #phoca-dl-categories-box .pd-categoriesbox {
	padding: 20px;
	margin: 0;
	width: 33%;
}

#component #phoca-dl-categories-box > .pd-categoriesbox:nth-child(2) {
	margin-left: 0.5% !important;
	margin-right: 0.5% !important;
}

#component .pd-desc {
	color: #666;
}

#component .pd-hr {
	height: 3px;
	margin-bottom: 20px;
}

#component #phoca-dl-categories-box {
	margin-left: -20px;
	margin-right: -20px;
	margin-top: -20px;
}

#component .pd-filenamebox {
	padding: 0;
	margin-bottom: 20px;
}

#component .pd-filebox {
	background: #EFEFEF;
	padding: 10px;
}

#phoca-dl-category-box .pd-category div.pdtop, #phoca-dl-file-box .pd-file div.pdtop, #phoca-dl-download-box .pd-file div.pdtop {
	margin-top: 0;
	width: auto;
	margin-right: 0;
	float: left;
}

#navigation h3 {
	display: none;
}

#navigation .item-334 {
	display: none !important;
}

div.itemIsFeatured, 
div.catItemIsFeatured, 
div.userItemIsFeatured {
	background: none;
	position: relative;
}

div.itemIsFeatured:after, 
div.catItemIsFeatured:after, 
div.userItemIsFeatured:after {
	background: url("/components/com_k2/images/system/featuredItem.png");
	width: 52px;
	height: 52px;
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	
}

#component .pd-buttons {
	padding: 0;
	margin: 0;
}



@media screen and (max-width: 1120px) {

	.products-slider-wrapper {
		overflow: visible;

	}


	#categories .container {
		overflow: hidden;
	}

	#categories + #main-container {
		background-size: 200px 200px !important;
	}


}

@media screen and (max-width: 960px) {

	#categories + #main-container {
		background-image: none !important;
	}

	
	#slider {
		height: 250px;
	}

	.cover-content {
		height: 250px;
		line-height: 250px;
		top: 0;
		left: 20px;
	}

	#slider .cover-title h2 {
		font-size: 20px;
	}

	#slider .cover-title h3 {
		font-size: 18px;
	}

	#slider .cover-action a {
		font-size: 14px;
		padding: 10px 30px;
	}

	#slider .moduletable {
		height: 100%;
	}

	#slider .cover-object {
		margin-left: 20px;
		max-width: 30%;
		position: absolute;
		bottom: 0;
	}
}

@media screen and (max-width: 840px) {

	#logo {
		float: none;
		text-align: center;
		width: 100%;
	}

	#logo img {
		margin: auto;
	}


	#navigation {
		float: none;
		text-align: center;
		/*width: 100%;*/
	}

	#active-pointer {
		display: none;
	}

	#navigation h3 {
		margin-top: 15px;
		display: block;
		background: #EFEFEF;
		font-size: 14px;
		text-transform: uppercase;
		text-align: left;
		padding-left: 15px;
		padding-right: 15px;
		position: relative;
	}

	#navigation h3:after {
		position: absolute;
		right: 15px;
		top: 0;
		bottom: 0;
		display: inline-block;
		font: normal normal normal 14px/1 FontAwesome;
		font-size: inherit;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f107";
		width: 14px;
		height: 14px;
		margin: auto;
	}

	#navigation h3.visible:after {
		content: "\f106";
	}

	#header #navigation li {
		display: block;
		line-height: 1;
		margin: 0;
	}


	#header #navigation li a {
		padding: 10px;
		display: block;
		text-align: left;
	}

	#header #navigation li + li {
		border-top: 1px solid #DDD;
	}

	#header #navigation li a:before {
		display: inline-block;
		font: normal normal normal 14px/1 FontAwesome;
		font-size: inherit;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f105";
		margin-right: 10px;
	}
	
	#header #navigation ul {
		overflow: visible;
		height: auto;
	}

	#header {
		height: auto;
	}

	#toggle-sidebar {
		display: block;
	}

	#header #navigation ul.menu {
		display: none;
	}

	#header #navigation h3.visible +  ul.menu {
		display: block;
	}

	body.sidebar-visible {
		overflow: hidden;
	}

	#sidebar {
		float: none;
		background: none repeat scroll 0 0 #ffffff;
		bottom: 50px;
		left: 0;
		overflow: auto;
		position: fixed;
		right: 0;
		top: 0;
		margin-bottom: 0;
		width: 100%;
		z-index: 1001;
		visibility: hidden;
		opacity: 0;
	}

	body.sidebar-visible #sidebar {
		visibility: visible;
		opacity: 1;
	}

	body.sidebar-visible #close-sidebar {
		display: block;
	}

	#sidebar ~ #component,
	#sidebar + #component {
		width: 100%;
		float: none;
		padding: 0;
	}


	
	#map-toggle {
		display: inline-block;
	}

	#map {
		position: fixed;
		top: 0;
		bottom: 50px;
		left: 0;
		right: 0;
		z-index: 10001;

		visibility: hidden;
		opacity: 0;

	}

	.show-map #map {
		/*display: block;*/
		visibility: visible;
		opacity: 1;
	}

	#map-close {
		display: block;
	}
	
	#map .moduletable,		
	#map .bt-googlemaps {
		width: 100% !important;
		height: 100% !important;	
	}

	.contact .contact-miscinfo {
		float: none;
		width: 100%;
		margin-bottom: 40px;
	}

	.contact .contact-form {
		width: 100%;
		float: none;
	}

	#component .subCategoryContainer {
		float: left;
		width: 50% !important;
		padding: 10px;
	}

	#footer #footer-2 .k2CustomCodeBlock {
		margin-left: 0;
		margin-top: 10px;
	}

	#footer #footer-1,
	#footer #footer-2,
	#footer #footer-3,
	#footer #footer-4 {
		width: 50%;
		float: left;
	}
	
	#footer #footer-3,
	#footer #footer-1 {
		padding-right: 10px;
		padding-left: 0;
	}
	
	#footer #footer-4,
	#footer #footer-2 {
		padding-left: 10px;
		padding-right: 0;
	}

	#categories ul li {
		width: 50%;
	}

	#search {
		/*display: none;*/
	}
	
	#categories .slider-nav-wrapper {
		display: none;
	}
}

@media screen and (max-width: 640px) {

	#component #phoca-dl-categories-box .pd-categoriesbox {
		padding: 20px;
		margin: 0;
		width: 50%;
	}

	#component #phoca-dl-categories-box > .pd-categoriesbox:nth-child(2) {
		margin-left: 0% !important;
		margin-right: 0% !important;
	}

	.featured-items #itemListPrimary > .itemContainer {
		width: 50% !important;
	}

	.featured-items #itemListPrimary > .itemContainer:nth-child(3n-1) {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	
/*
	#top-left {
		display: none;
	}

	#top-right {
		float: none;
		width: 100%;
		text-align: left;
		text-align: center;
	}

	#top-right .phone {
		float: left;
	}
	
	#top-right .email {
		float: right;
	}	*/

	#search {
		display: none;
	}


	#top-left {
		float: none;
		width: 100%;
		line-height: 1;
	}

}


@media screen and (max-width: 480px) {
	
	#component .pd-filenamebox {
		float: none;
	}

	#component .pd-buttons {
		padding: 0;
		width: 100%;
		float: none;
		margin: 0;
		margin-bottom: 20px;
	}

	#component .pd-buttons a {
		width: 100%;
	}

	#component #phoca-dl-categories-box .pd-categoriesbox {
		padding: 20px;
		margin: 0;
		width: 100%;
	}

	#component #phoca-dl-categories-box > .pd-categoriesbox:nth-child(2) {
		margin-left: 0% !important;
		margin-right: 0% !important;
	}

	.featured-items #itemListPrimary > .itemContainer {
		width: 100% !important;
	}


	#footer #footer-1,
	#footer #footer-2,
	#footer #footer-3,
	#footer #footer-4 {
		width: 100%;
		float: none;
		padding: 0;
	}

	#footer #footer-2,
	#footer #footer-3,
	#footer #footer-4 {
		padding-top: 20px;
	}

	#bfElemWrap1 {
		float: none;
		width: 100%;
		padding: 0;
		
	}

	#bfElemWrap2 {
		float: none;
		width: 100%;
		padding: 0;
		padding-top: 20px;
	}

	#component .itemRelated ul > li {
		float: none !important;
		margin: 0 !important;
		width: 100% !important;
	}


	#component .itemLeft {
		float: none;
		width: 100%;
		padding: 0;
	}

	#component .itemRight {
		float: none;
		width: 100%;
		padding: 0;
		margin-top: 20px;
	}


	#itemListPrimary > .itemContainer {
		float: none;
		width: 100% !important;
		padding: 10px;
	}


	#component .subCategoryContainer {
		float: left;
		width: 100% !important;
		padding: 10px;
	}

	#cover {
		min-height: 100px;
	}
	
	#cover .vertical-align {
		line-height: 100px;
	}

	#slider .cover-object {
		margin-left: 0;
	}

	.products-slider-wrapper {
		overflow: visible;

	}

	#categories,
	#main-container {
		background-image: none !important;
	}


	#categories ul li {
		width: 100%;
	}

	#categories .container {
		overflow: hidden;
	}


}

@media screen and (max-width: 360px) {
	#component .itemSocialShare a {
		width: 100%;
		margin: 0 !important;
	}

	#component .itemSocialShare a + a {
		margin-top: 5px !important;
	}
}