/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(/img/grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}


/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}
/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(/img/AjaxLoader.gif) no-repeat center center
}
/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	margin: 0 auto 60px;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
	-moz-box-shadow: 0 0 5px #ccc;
	-webkit-box-shadow: 0 0 5px #ccc;
	box-shadow: 0 0 5px #ccc;
	border:  5px solid #fff;
	left: -5px;
	background: #fff;
	
	/*fix other elements on the page moving (on Chrome)*/
	-webkit-transform: translatez(0);
	-moz-transform: translatez(0);
    	-ms-transform: translatez(0);
    	-o-transform: translatez(0);
    	transform: translatez(0);
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(/img/bx_loader.gif) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	background: url(/img/arrow-l.png) no-repeat;
}

.bx-wrapper .bx-next {
	right: 10px;
	background: url(/img/arrow-r.png) no-repeat;
}

.bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
	background-position: 0px 0;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(/img/controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(/img/controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}

/*!
 * Bootstrap-select v1.6.3 (http://silviomoreto.github.io/bootstrap-select/)
 *
 * Copyright 2013-2014 bootstrap-select
 * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
 */.bootstrap-select{width:220px \0}.bootstrap-select>.btn{width:100%;padding-right:25px}.error .bootstrap-select .btn{border:1px solid #b94a48}.control-group.error .bootstrap-select .dropdown-toggle{border-color:#b94a48}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .btn:focus{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none}.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.btn-group:not(.input-group-btn),.bootstrap-select.btn-group[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.btn-group.dropdown-menu-right,.bootstrap-select.btn-group[class*=col-].dropdown-menu-right,.row-fluid .bootstrap-select.btn-group[class*=col-].dropdown-menu-right{float:right}.form-search .bootstrap-select.btn-group,.form-inline .bootstrap-select.btn-group,.form-horizontal .bootstrap-select.btn-group,.form-group .bootstrap-select.btn-group{margin-bottom:0}.form-group-lg .bootstrap-select.btn-group.form-control,.form-group-sm .bootstrap-select.btn-group.form-control{padding:0}.form-inline .bootstrap-select.btn-group .form-control{width:100%}.input-append .bootstrap-select.btn-group{margin-left:-1px}.input-prepend .bootstrap-select.btn-group{margin-right:-1px}.bootstrap-select.btn-group>.disabled{cursor:not-allowed}.bootstrap-select.btn-group>.disabled:focus{outline:0!important}.bootstrap-select.btn-group .btn .filter-option{display:inline-block;overflow:hidden;width:100%;text-align:left}.bootstrap-select.btn-group .btn .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select.btn-group[class*=col-] .btn{width:100%}.bootstrap-select.btn-group .dropdown-menu{min-width:100%;z-index:1035;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .dropdown-menu.inner{position:static;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select.btn-group .dropdown-menu li{position:relative}.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:hover small,.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:focus small,.bootstrap-select.btn-group .dropdown-menu li.active:not(.disabled) a small{color:#64b1d8;color:rgba(100,177,216,.4)}.bootstrap-select.btn-group .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select.btn-group .dropdown-menu li a{cursor:pointer}.bootstrap-select.btn-group .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select.btn-group .dropdown-menu li a span.check-mark{display:none}.bootstrap-select.btn-group .dropdown-menu li a span.text{display:inline-block}.bootstrap-select.btn-group .dropdown-menu li small{padding-left:.5em}.bootstrap-select.btn-group .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select.btn-group .no-results{padding:3px;background:#f5f5f5;margin:0 5px}.bootstrap-select.btn-group.fit-width .btn .filter-option{position:static}.bootstrap-select.btn-group.fit-width .btn .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark{position:absolute;display:inline-block;right:15px;margin-top:5px}.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select.show-menu-arrow.open>.btn{z-index:1035+1}.bootstrap-select.show-menu-arrow .dropdown-toggle:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom-width:7px;border-bottom-style:solid;border-bottom-color:#ccc;border-bottom-color:rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before{bottom:auto;top:-3px;border-bottom:0;border-top-width:7px;border-top-style:solid;border-top-color:#ccc;border-top-color:rgba(204,204,204,.2)}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after{bottom:auto;top:-3px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:before,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:after{display:block}.bs-searchbox,.bs-actionsbox{padding:4px 8px}.bs-actionsbox{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group button{width:50%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox input.form-control{margin-bottom:0;width:100%}.mobile-device{position:absolute;top:0;left:0;display:block!important;width:100%;height:100%!important;opacity:0}
/* Preload images */
body:after {
  content: url(/img/close.png) url(/img/loading.gif) url(/img/prev.png) url(/img/next.png);
  display: none;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-container {
  padding: 4px;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(/img/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==);
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(/img/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(/img/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(/img/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/*-----------------------------------------------------------------------------

	-	Revolution Slider 1.5.3 -

		Screen Stylesheet

version:   	2.1
date:      	09/18/11
last update: 06.12.2012
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/


/*-----------------------------------------------------------------------------

	-	Revolution Slider 2.0 Captions -

		Screen Stylesheet

version:   	1.4.5
date:      	09/18/11
last update: 06.12.2012
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/



/*************************
	-	CAPTIONS	-
**************************/

.tp-hide-revslider,.tp-caption.tp-hidden-caption	{	visibility:hidden !important; display:none !important;}


.tp-caption { z-index:1;}

.tp-caption-demo .tp-caption	{	position:relative !important; display:inline-block; margin-bottom:10px; margin-right:20px !important;}

.tp-caption.medium_grey {
position:absolute;
color:#fff;
text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
font-weight:700;
font-size:20px;
line-height:20px;
font-family:Arial;
padding:2px 4px;
margin:0px;
border-width:0px;
border-style:none;
background-color:#888;
white-space:nowrap;
}

.tp-caption.small_text {
position:absolute;
color:#fff;
text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
font-weight:700;
font-size:14px;
line-height:20px;
font-family:Arial;
margin:0px;
border-width:0px;
border-style:none;
white-space:nowrap;
}

.tp-caption.medium_text {
position:absolute;
color:#fff;
text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
font-weight:700;
font-size:20px;
line-height:20px;
font-family:Arial;
margin:0px;
border-width:0px;
border-style:none;
white-space:nowrap;
}

.tp-caption.large_text {
position:absolute;
color:#fff;
text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
font-weight:700;
font-size:40px;
line-height:40px;
font-family:Arial;
margin:0px;
border-width:0px;
border-style:none;
white-space:nowrap;
}

.tp-caption.very_large_text {
position:absolute;
color:#fff;
text-shadow:0px 2px 5px rgba(0, 0, 0, 0.5);
font-weight:700;
font-size:60px;
line-height:60px;
font-family:Arial;
margin:0px;
border-width:0px;
border-style:none;
white-space:nowrap;
letter-spacing:-2px;
}

.tp-caption.very_big_white {
position:absolute;
color:#fff;
text-shadow:none;
font-weight:800;
font-size:60px;
line-height:60px;
font-family:Arial;
margin:0px;
border-width:0px;
border-style:none;
white-space:nowrap;
padding:0px 4px;
padding-top:1px;
background-color:#000;
}

.tp-caption.very_big_black {
position:absolute;
color:#000;
text-shadow:none;
font-weight:700;
font-size:60px;
line-height:60px;
font-family:Arial;
margin:0px;
border-width:0px;
border-style:none;
white-space:nowrap;
padding:0px 4px;
padding-top:1px;
background-color:#fff;
}

.tp-caption.modern_medium_fat {
position:absolute;
color:#000;
text-shadow:none;
font-weight:800;
font-size:24px;
line-height:20px;
font-family:"Open Sans", sans-serif;
margin:0px;
border-width:0px;
border-style:none;
white-space:nowrap;
}

.tp-caption.modern_medium_fat_white {
position:absolute;
color:#fff;
text-shadow:none;
font-weight:800;
font-size:24px;
line-height:20px;
font-family:"Open Sans", sans-serif;
margin:0px;
border-width:0px;
border-style:none;
white-space:nowrap;
}

.tp-caption.modern_medium_light {
position:absolute;
color:#000;
text-shadow:none;
font-weight:300;
font-size:24px;
line-height:20px;
font-family:"Open Sans", sans-serif;
margin:0px;
border-width:0px;
border-style:none;
white-space:nowrap;
}

.tp-caption.modern_big_bluebg {
position:absolute;
color:#fff;
text-shadow:none;
font-weight:800;
font-size:30px;
line-height:36px;
font-family:"Open Sans", sans-serif;
padding:3px 10px;
margin:0px;
border-width:0px;
border-style:none;
background-color:#4e5b6c;
letter-spacing:0;
}

.tp-caption.modern_big_redbg {
position:absolute;
color:#fff;
text-shadow:none;
font-weight:300;
font-size:30px;
line-height:36px;
font-family:"Open Sans", sans-serif;
padding:3px 10px;
padding-top:1px;
margin:0px;
border-width:0px;
border-style:none;
background-color:#de543e;
letter-spacing:0;
}

.tp-caption.modern_small_text_dark {
position:absolute;
color:#555;
text-shadow:none;
font-size:14px;
line-height:22px;
font-family:Arial;
margin:0px;
border-width:0px;
border-style:none;
white-space:nowrap;
}

.tp-caption.boxshadow {
-moz-box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5);
-webkit-box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5);
box-shadow:0px 0px 20px rgba(0, 0, 0, 0.5);
}

.tp-caption.black {
color:#000;
text-shadow:none;
}

.tp-caption.noshadow {
text-shadow:none;
}

.tp-caption a {
color:#ff7302;
text-shadow:none;
-webkit-transition:all 0.2s ease-out;
-moz-transition:all 0.2s ease-out;
-o-transition:all 0.2s ease-out;
-ms-transition:all 0.2s ease-out;
}

.tp-caption a:hover {
color:#ffa902;
}

.tp-caption.thinheadline_dark {
position:absolute;
color:rgba(0,0,0,0.85);
text-shadow:none;
font-weight:300;
font-size:30px;
line-height:30px;
font-family:"Open Sans";
background-color:transparent;
}

.tp-caption.thintext_dark {
position:absolute;
color:rgba(0,0,0,0.85);
text-shadow:none;
font-weight:300;
font-size:16px;
line-height:26px;
font-family:"Open Sans";
background-color:transparent;
}

.tp-caption.largeblackbg {
position:absolute;
color:#fff;
text-shadow:none;
font-weight:300;
font-size:50px;
line-height:70px;
font-family:"Open Sans";
background-color:#000;
padding:0px 20px;
-webkit-border-radius:0px;
-moz-border-radius:0px;
border-radius:0px;
}

.tp-caption.largepinkbg {
position:absolute;
color:#fff;
text-shadow:none;
font-weight:300;
font-size:50px;
line-height:70px;
font-family:"Open Sans";
background-color:#db4360;
padding:0px 20px;
-webkit-border-radius:0px;
-moz-border-radius:0px;
border-radius:0px;
}

.tp-caption.largewhitebg {
position:absolute;
color:#000;
text-shadow:none;
font-weight:300;
font-size:50px;
line-height:70px;
font-family:"Open Sans";
background-color:#fff;
padding:0px 20px;
-webkit-border-radius:0px;
-moz-border-radius:0px;
border-radius:0px;
}

.tp-caption.largegreenbg {
position:absolute;
color:#fff;
text-shadow:none;
font-weight:300;
font-size:50px;
line-height:70px;
font-family:"Open Sans";
background-color:#67ae73;
padding:0px 20px;
-webkit-border-radius:0px;
-moz-border-radius:0px;
border-radius:0px;
}

.tp-caption.excerpt {
font-size:36px;
line-height:36px;
font-weight:700;
font-family:Arial;
color:#ffffff;
text-decoration:none;
background-color:rgba(0, 0, 0, 1);
text-shadow:none;
margin:0px;
letter-spacing:-1.5px;
padding:1px 4px 0px 4px;
width:150px;
white-space:normal !important;
height:auto;
border-width:0px;
border-color:rgb(255, 255, 255);
border-style:none;
}

.tp-caption.large_bold_grey {
font-size:60px;
line-height:60px;
font-weight:800;
font-family:"Open Sans";
color:rgb(102, 102, 102);
text-decoration:none;
background-color:transparent;
text-shadow:none;
margin:0px;
padding:1px 4px 0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.medium_thin_grey {
font-size:34px;
line-height:30px;
font-weight:300;
font-family:"Open Sans";
color:rgb(102, 102, 102);
text-decoration:none;
background-color:transparent;
padding:1px 4px 0px;
text-shadow:none;
margin:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.small_thin_grey {
font-size:18px;
line-height:26px;
font-weight:300;
font-family:"Open Sans";
color:rgb(117, 117, 117);
text-decoration:none;
background-color:transparent;
padding:1px 4px 0px;
text-shadow:none;
margin:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.lightgrey_divider {
text-decoration:none;
background-color:rgba(235, 235, 235, 1);
width:370px;
height:3px;
background-position:initial initial;
background-repeat:initial initial;
border-width:0px;
border-color:rgb(34, 34, 34);
border-style:none;
}

.tp-caption.large_bold_darkblue {
font-size:58px;
line-height:60px;
font-weight:800;
font-family:"Open Sans";
color:rgb(52, 73, 94);
text-decoration:none;
background-color:transparent;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.medium_bg_darkblue {
font-size:20px;
line-height:20px;
font-weight:800;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:rgb(52, 73, 94);
padding:10px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.medium_bold_red {
font-size:24px;
line-height:30px;
font-weight:800;
font-family:"Open Sans";
color:rgb(227, 58, 12);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.medium_light_red {
font-size:21px;
line-height:26px;
font-weight:300;
font-family:"Open Sans";
color:rgb(227, 58, 12);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.medium_bg_red {
font-size:20px;
line-height:20px;
font-weight:800;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:rgb(227, 58, 12);
padding:10px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.medium_bold_orange {
font-size:24px;
line-height:30px;
font-weight:800;
font-family:"Open Sans";
color:rgb(243, 156, 18);
text-decoration:none;
background-color:transparent;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.medium_bg_orange {
font-size:20px;
line-height:20px;
font-weight:800;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:rgb(243, 156, 18);
padding:10px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.grassfloor {
text-decoration:none;
background-color:rgba(160, 179, 151, 1);
width:4000px;
height:150px;
border-width:0px;
border-color:rgb(34, 34, 34);
border-style:none;
}

.tp-caption.large_bold_white {
font-size:58px;
line-height:60px;
font-weight:800;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:transparent;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.medium_light_white {
font-size:30px;
line-height:36px;
font-weight:300;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.mediumlarge_light_white {
font-size:34px;
line-height:40px;
font-weight:300;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.mediumlarge_light_white_center {
font-size:34px;
line-height:40px;
font-weight:300;
font-family:"Open Sans";
color:#ffffff;
text-decoration:none;
background-color:transparent;
padding:0px 0px 0px 0px;
text-align:center;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.medium_bg_asbestos {
font-size:20px;
line-height:20px;
font-weight:800;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:rgb(127, 140, 141);
padding:10px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.medium_light_black {
font-size:30px;
line-height:36px;
font-weight:300;
font-family:"Open Sans";
color:rgb(0, 0, 0);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.large_bold_black {
font-size:58px;
line-height:60px;
font-weight:800;
font-family:"Open Sans";
color:rgb(0, 0, 0);
text-decoration:none;
background-color:transparent;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.mediumlarge_light_darkblue {
font-size:34px;
line-height:40px;
font-weight:300;
font-family:"Open Sans";
color:rgb(52, 73, 94);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.small_light_white {
font-size:17px;
line-height:28px;
font-weight:300;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:transparent;
padding:0px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.roundedimage {
border-width:0px;
border-color:rgb(34, 34, 34);
border-style:none;
}

.tp-caption.large_bg_black {
font-size:40px;
line-height:40px;
font-weight:800;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:rgb(0, 0, 0);
padding:10px 20px 15px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}

.tp-caption.mediumwhitebg {
font-size:30px;
line-height:30px;
font-weight:300;
font-family:"Open Sans";
color:rgb(0, 0, 0);
text-decoration:none;
background-color:rgb(255, 255, 255);
padding:5px 15px 10px;
text-shadow:none;
border-width:0px;
border-color:rgb(0, 0, 0);
border-style:none;
}

.tp-caption.medium_bg_orange_new1 {
font-size:20px;
line-height:20px;
font-weight:800;
font-family:"Open Sans";
color:rgb(255, 255, 255);
text-decoration:none;
background-color:rgb(243, 156, 18);
padding:10px;
border-width:0px;
border-color:rgb(255, 214, 88);
border-style:none;
}



.tp-caption.boxshadow{
		-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
		-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
		box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
	}

.tp-caption.black{
		color: #000;
		text-shadow: none;
		font-weight: 300;
		font-size: 19px;
		line-height: 19px;
		font-family: 'Open Sans', sans;
	}

.tp-caption.noshadow {
		text-shadow: none;
	}


.tp_inner_padding	{	box-sizing:border-box;
						-webkit-box-sizing:border-box;
						-moz-box-sizing:border-box;
						max-height:none !important;	}


.tp-caption .frontcorner		{
										width: 0;
										height: 0;
										border-left: 40px solid transparent;
										border-right: 0px solid transparent;
										border-top: 40px solid #00A8FF;
										position: absolute;left:-40px;top:0px;
									}

.tp-caption .backcorner		{
										width: 0;
										height: 0;
										border-left: 0px solid transparent;
										border-right: 40px solid transparent;
										border-bottom: 40px solid #00A8FF;
										position: absolute;right:0px;top:0px;
									}

.tp-caption .frontcornertop		{
										width: 0;
										height: 0;
										border-left: 40px solid transparent;
										border-right: 0px solid transparent;
										border-bottom: 40px solid #00A8FF;
										position: absolute;left:-40px;top:0px;
									}

.tp-caption .backcornertop		{
										width: 0;
										height: 0;
										border-left: 0px solid transparent;
										border-right: 40px solid transparent;
										border-top: 40px solid #00A8FF;
										position: absolute;right:0px;top:0px;
									}


/******************************
	-	BUTTONS	-
*******************************/

.tp-simpleresponsive .button				{	padding:6px 13px 5px; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; height:30px;
												cursor:pointer;
												color:#fff !important; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6) !important; font-size:15px; line-height:45px !important;
												background:url(/img/g30.png) repeat-x top; font-family: arial, sans-serif; font-weight: bold; letter-spacing: -1px;
											}

.tp-simpleresponsive  .button.big			{	color:#fff; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6); font-weight:bold; padding:9px 20px; font-size:19px;  line-height:57px !important; background:url(/img/g40.png) repeat-x top;}


.tp-simpleresponsive  .purchase:hover,
.tp-simpleresponsive  .button:hover,
.tp-simpleresponsive  .button.big:hover		{	background-position:bottom, 15px 11px;}



	@media only screen and (min-width: 768px) and (max-width: 959px) {

	 }



	@media only screen and (min-width: 480px) and (max-width: 767px) {
		.tp-simpleresponsive  .button	{	padding:4px 8px 3px; line-height:25px !important; font-size:11px !important;font-weight:normal;	}
		.tp-simpleresponsive  a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none;	 }


	}

    @media only screen and (min-width: 0px) and (max-width: 479px) {
		.tp-simpleresponsive  .button	{	padding:2px 5px 2px; line-height:20px !important; font-size:10px !important;}
		.tp-simpleresponsive  a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none;	 }
	}





/*	BUTTON COLORS	*/



.tp-simpleresponsive  .button.green, .tp-simpleresponsive  .button:hover.green,
.tp-simpleresponsive  .purchase.green, .tp-simpleresponsive  .purchase:hover.green			{ background-color:#21a117; -webkit-box-shadow:  0px 3px 0px 0px #104d0b;        -moz-box-shadow:   0px 3px 0px 0px #104d0b;        box-shadow:   0px 3px 0px 0px #104d0b;  }


.tp-simpleresponsive  .button.blue, .tp-simpleresponsive  .button:hover.blue,
.tp-simpleresponsive  .purchase.blue, .tp-simpleresponsive  .purchase:hover.blue			{ background-color:#1d78cb; -webkit-box-shadow:  0px 3px 0px 0px #0f3e68;        -moz-box-shadow:   0px 3px 0px 0px #0f3e68;        box-shadow:   0px 3px 0px 0px #0f3e68;}


.tp-simpleresponsive  .button.red, .tp-simpleresponsive  .button:hover.red,
.tp-simpleresponsive  .purchase.red, .tp-simpleresponsive  .purchase:hover.red				{ background-color:#cb1d1d; -webkit-box-shadow:  0px 3px 0px 0px #7c1212;        -moz-box-shadow:   0px 3px 0px 0px #7c1212;        box-shadow:   0px 3px 0px 0px #7c1212;}

.tp-simpleresponsive  .button.orange, .tp-simpleresponsive  .button:hover.orange,
.tp-simpleresponsive  .purchase.orange, .tp-simpleresponsive  .purchase:hover.orange		{ background-color:#ff7700; -webkit-box-shadow:  0px 3px 0px 0px #a34c00;        -moz-box-shadow:   0px 3px 0px 0px #a34c00;        box-shadow:   0px 3px 0px 0px #a34c00;}

.tp-simpleresponsive  .button.darkgrey, .tp-simpleresponsive  .button.grey,
.tp-simpleresponsive  .button:hover.darkgrey, .tp-simpleresponsive  .button:hover.grey,
.tp-simpleresponsive  .purchase.darkgrey, .tp-simpleresponsive  .purchase:hover.darkgrey	{ background-color:#555; -webkit-box-shadow:  0px 3px 0px 0px #222;        -moz-box-shadow:   0px 3px 0px 0px #222;        box-shadow:   0px 3px 0px 0px #222;}

.tp-simpleresponsive  .button.lightgrey, .tp-simpleresponsive  .button:hover.lightgrey,
.tp-simpleresponsive  .purchase.lightgrey, .tp-simpleresponsive  .purchase:hover.lightgrey	{ background-color:#888; -webkit-box-shadow:  0px 3px 0px 0px #555;        -moz-box-shadow:   0px 3px 0px 0px #555;        box-shadow:   0px 3px 0px 0px #555;}



/****************************************************************

	-	SET THE ANIMATION EVEN MORE SMOOTHER ON ANDROID   -

******************************************************************/

/*.tp-simpleresponsive				{	-webkit-perspective: 1500px;
										-moz-perspective: 1500px;
										-o-perspective: 1500px;
										-ms-perspective: 1500px;
										perspective: 1500px;
									}*/




/**********************************************
	-	FULLSCREEN AND FULLWIDHT CONTAINERS	-
**********************************************/

.fullscreen-container {
		width:100%;
		position:relative;
		padding:0;
}



.fullwidthbanner-container{
	width:100%;
	position:relative;
	padding:0;
	overflow:hidden;
}

.fullwidthbanner-container .fullwidthbanner{
	width:100%;
	position:relative;
}



.tp-simpleresponsive .caption,
.tp-simpleresponsive .tp-caption {
	position:absolute;
	visibility: hidden;
	-webkit-font-smoothing: antialiased !important;
}

.tp-simpleresponsive img	{	max-width:none;}



/******************************
	-	IE8 HACKS	-
*******************************/
.noFilterClass {
	filter:none !important;
}


/******************************
	-	SHADOWS		-
******************************/
.tp-bannershadow  {
		position:absolute;

		margin-left:auto;
		margin-right:auto;
		-moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
	}

.tp-bannershadow.tp-shadow1 {	background:url(/img/shadow1.png) no-repeat; background-size:100% 100%; width:890px; height:60px; bottom:-60px;}
.tp-bannershadow.tp-shadow2 {	background:url(/img/shadow2.png) no-repeat; background-size:100% 100%; width:890px; height:60px;bottom:-60px;}
.tp-bannershadow.tp-shadow3 {	background:url(/img/shadow3.png) no-repeat; background-size:100% 100%; width:890px; height:60px;bottom:-60px;}


/********************************
	-	FULLSCREEN VIDEO	-
*********************************/
.caption.fullscreenvideo {	left:0px; top:0px; position:absolute;width:100%;height:100%;}
.caption.fullscreenvideo iframe	{ width:100% !important; height:100% !important; display: none}

.tp-caption.fullscreenvideo {	left:0px; top:0px; position:absolute;width:100%;height:100%;}
.tp-caption.fullscreenvideo iframe	{ width:100% !important; height:100% !important; display: none;}

/************************
	-	NAVIGATION	-
*************************/

/** BULLETS **/

.tpclear		{	clear:both;}


.tp-bullets									{	


z-index: 1000;
position: absolute;
left: 0px !important;
right: 0px !important;
display: table;
margin: 0 auto !important;
float: none;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
												-moz-opacity: 1;
												-khtml-opacity: 1;
												opacity: 1;
												-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;-webkit-transform: translateZ(5px);
											}
.tp-bullets.hidebullets					{
											}


.tp-bullets.simplebullets.navbar						{ 	border:1px solid #666; border-bottom:1px solid #444; background:url(/img/boxed_bgtile.png); height:40px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px ;}

.tp-bullets.simplebullets.navbar-old					{ 	 background:url(/img/navigdots_bgtile.png); height:35px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px ;}


.tp-bullets.simplebullets.round .bullet					{	cursor:pointer; position:relative;	background:url(/img/bullet.png) no-Repeat top left;	width:20px;	height:20px;  margin-right:0px; float:left; margin-top:0px; margin-left:3px;}
.tp-bullets.simplebullets.round .bullet.last			{	margin-right:3px;}

.tp-bullets.simplebullets.round-old .bullet				{	cursor:pointer; position:relative;	background:url(/img/bullets.png) no-Repeat bottom left;	width:23px;	height:23px;  margin-right:0px; float:left; margin-top:0px;}
.tp-bullets.simplebullets.round-old .bullet.last		{	margin-right:0px;}


/**	SQUARE BULLETS **/
.tp-bullets.simplebullets.square .bullet				{	cursor:pointer; position:relative;	background:url(/img/bullets2.png) no-Repeat bottom left;	width:19px;	height:19px;  margin-right:0px; float:left; margin-top:0px;}
.tp-bullets.simplebullets.square .bullet.last			{	margin-right:0px;}


/**	SQUARE BULLETS **/
.tp-bullets.simplebullets.square-old .bullet			{	cursor:pointer; position:relative;	background:url(/img/bullets2.png) no-Repeat bottom left;	width:19px;	height:19px;  margin-right:0px; float:left; margin-top:0px;}
.tp-bullets.simplebullets.square-old .bullet.last		{	margin-right:0px;}


/** navbar NAVIGATION VERSION **/
.tp-bullets.simplebullets.navbar .bullet			{	cursor:pointer; position:relative;	background:url(/img/bullet_boxed.png) no-Repeat top left;	width:18px;	height:19px;   margin-right:5px; float:left; margin-top:0px;}

.tp-bullets.simplebullets.navbar .bullet.first		{	margin-left:0px !important;}
.tp-bullets.simplebullets.navbar .bullet.last		{	margin-right:0px !important;}



/** navbar NAVIGATION VERSION **/
.tp-bullets.simplebullets.navbar-old .bullet			{	cursor:pointer; position:relative;	background:url(/img/navigdots.png) no-Repeat bottom left;	width:15px;	height:15px;  margin-left:5px !important; margin-right:5px !important;float:left; margin-top:10px;}
.tp-bullets.simplebullets.navbar-old .bullet.first		{	margin-left:0px !important;}
.tp-bullets.simplebullets.navbar-old .bullet.last		{	margin-right:0px !important;}


.tp-bullets.simplebullets .bullet:hover,
.tp-bullets.simplebullets .bullet.selected				{	background-position:top left; }

.tp-bullets.simplebullets.round .bullet:hover,
.tp-bullets.simplebullets.round .bullet.selected,
.tp-bullets.simplebullets.navbar .bullet:hover,
.tp-bullets.simplebullets.navbar .bullet.selected		{	background-position:bottom left; }



/*************************************
	-	TP ARROWS 	-
**************************************/
.tparrows												{	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
															-moz-opacity: 1;
															-khtml-opacity: 1;
															opacity: 1;
															-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;			-webkit-transform: translateZ(5px);

														}
.tparrows.hidearrows									{

														}
.tp-leftarrow											{	z-index:100;cursor:pointer; position:relative;	background:url(/img/large_left.png) no-Repeat top left;	width:40px;	height:40px;   }
.tp-rightarrow											{	z-index:100;cursor:pointer; position:relative;	background:url(/img/large_right.png) no-Repeat top left;	width:40px;	height:40px;   }


.tp-leftarrow.round										{	z-index:100;cursor:pointer; position:relative;	background:url(/img/small_left.png) no-Repeat top left;	width:19px;	height:14px;  margin-right:0px; float:left; margin-top:0px;	}
.tp-rightarrow.round									{	z-index:100;cursor:pointer; position:relative;	background:url(/img/small_right.png) no-Repeat top left;	width:19px;	height:14px;  margin-right:0px; float:left;	margin-top:0px;}


.tp-leftarrow.round-old									{	z-index:100;cursor:pointer; position:relative;	background:url(/img/arrow_left.png) no-Repeat top left;	width:26px;	height:26px;  margin-right:0px; float:left; margin-top:0px;	}
.tp-rightarrow.round-old								{	z-index:100;cursor:pointer; position:relative;	background:url(/img/arrow_right.png) no-Repeat top left;	width:26px;	height:26px;  margin-right:0px; float:left;	margin-top:0px;}


.tp-leftarrow.navbar									{	

z-index:100;cursor:pointer; position:relative;	background:url(/img/small_left_boxed.png) no-Repeat top left;	width:20px;	height:15px;   float:left;	margin-right:6px; margin-top:12px;}
.tp-rightarrow.navbar									{	z-index:100;cursor:pointer; position:relative;	background:url(/img/small_right_boxed.png) no-Repeat top left;	width:20px;	height:15px;   float:left;	margin-left:6px; margin-top:12px;}


.tp-leftarrow.navbar-old								{	z-index:100;cursor:pointer; position:relative;	background:url(/img/arrowleft.png) no-Repeat top left;		width:9px;	height:16px;   float:left;	margin-right:6px; margin-top:10px;}
.tp-rightarrow.navbar-old								{	z-index:100;cursor:pointer; position:relative;	background:url(/img/arrowright.png) no-Repeat top left;	width:9px;	height:16px;   float:left;	margin-left:6px; margin-top:10px;}

.tp-leftarrow.navbar-old.thumbswitharrow				{	margin-right:10px; }
.tp-rightarrow.navbar-old.thumbswitharrow				{	margin-left:0px; }

.tp-leftarrow.square									{	z-index:100;cursor:pointer; position:relative;	background:url(/img/arrow_left2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-right:0px; margin-top:0px;}
.tp-rightarrow.square									{	z-index:100;cursor:pointer; position:relative;	background:url(/img/arrow_right2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-left:0px; margin-top:0px;}


.tp-leftarrow.square-old								{	z-index:100;cursor:pointer; position:relative;	background:url(/img/arrow_left2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-right:0px; margin-top:0px;}
.tp-rightarrow.square-old								{	z-index:100;cursor:pointer; position:relative;	background:url(/img/arrow_right2.png) no-Repeat top left;	width:12px;	height:17px;   float:left;	margin-left:0px; margin-top:0px;}



.tp-leftarrow.default {
width:48px;
height:48px;
background:url(/img/arrow_left3.png) no-repeat center center;
opacity:0.5;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.tp-rightarrow.default {
width:48px;
height:48px;
background:url(/img/arrow_right3.png) no-repeat center center;
opacity:0.5;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.tp-leftarrow.default:hover {
opacity:1;
background:url(/img/arrow_left3_hr.png) no-repeat center center;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.tp-rightarrow.default:hover {
opacity:1;
background:url(/img/arrow_right3_hr.png) no-repeat center center;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}








/****************************************************************************************************
	-	TP THUMBS 	-
*****************************************************************************************************

 - tp-thumbs & tp-mask Width is the width of the basic Thumb Container (500px basic settings)

 - .bullet width & height is the dimension of a simple Thumbnail (basic 100px x 50px)

 *****************************************************************************************************/


.tp-bullets.tp-thumbs						{	z-index:1000; position:absolute; padding:3px;background-color:#fff;
												width:500px;height:50px; 			/* THE DIMENSIONS OF THE THUMB CONTAINER */
												margin-top:-50px;
											}


.fullwidthbanner-container .tp-thumbs		{  padding:3px;}

.tp-bullets.tp-thumbs .tp-mask				{	width:500px; height:50px;  			/* THE DIMENSIONS OF THE THUMB CONTAINER */
												overflow:hidden; position:relative;}


.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer	{	width:5000px; position:absolute;}

.tp-bullets.tp-thumbs .bullet				{   width:100px; height:50px; 			/* THE DIMENSION OF A SINGLE THUMB */
												cursor:pointer; overflow:hidden;background:none;margin:0;float:left;
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
												/*filter: alpha(opacity=50);	*/
												-moz-opacity: 0.5;
												-khtml-opacity: 0.5;
												opacity: 0.5;

												-webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out;
											}


.tp-bullets.tp-thumbs .bullet:hover,
.tp-bullets.tp-thumbs .bullet.selected		{ 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";

												-moz-opacity: 1;
												-khtml-opacity: 1;
												opacity: 1;
											}
.tp-thumbs img								{	width:100%; }


/************************************
		-	TP BANNER TIMER		-
*************************************/
.tp-bannertimer								{	width:100%; height:10px; background:url(/img/timer.png);position:absolute; z-index:200;top:0px;}
.tp-bannertimer.tp-bottom					{	bottom:0px;height:5px; top:auto;}




/***************************************
	-	RESPONSIVE SETTINGS 	-
****************************************/




    @media only screen and (min-width: 0px) and (max-width: 479px) {
				.responsive .tp-bullets	{	display:none}
				.responsive .tparrows	{	display:none;}
	}





/*********************************************

	-	BASIC SETTINGS FOR THE BANNER	-

***********************************************/

 .tp-simpleresponsive img {
		-moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
}



.tp-simpleresponsive a{	text-decoration:none;}

.tp-simpleresponsive ul {
	list-style:none;
	padding:0;
	margin:0;
}

.tp-simpleresponsive >ul >li{
	list-stye:none;
	position:absolute;
	visibility:hidden;
}
/*  CAPTION SLIDELINK   **/
.caption.slidelink a div,
.tp-caption.slidelink a div {	width:3000px; height:1500px;  background:url(/img/coloredbg.png) repeat;}

.tp-loader 	{	background:url(/img/loader.gif) no-repeat 10px 10px; background-color:#fff;  margin:-22px -22px; top:50%; left:50%; z-index:10000; position:absolute;width:44px;height:44px;
				border-radius: 3px;
				-moz-border-radius: 3px;
				-webkit-border-radius: 3px;
			}


.tp-transparentimg {	content:"url(../assets/transparent.png)"}
.tp-3d				{	-webkit-transform-style: preserve-3d;
						 -webkit-transform-origin: 50% 50%;
					}






@font-face {
  font-family: 'revicons';
  src: url(/fonts/revicons.eot);
  src: url(/fonts/revicons.eot#iefix) format('embedded-opentype'),
       url(/fonts/revicons.woff) format('woff'),
       url(/fonts/revicons.ttf) format('truetype'),
       url(/img/revicons.svg#revicons) format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'revicons';
    src: url('../font/revicons.svg?5510888#revicons') format('svg');
  }
}
*/

 [class^="revicon-"]:before, [class*=" revicon-"]:before {
  font-family: "revicons";
  font-style: normal;
  font-weight: normal;
  speak: none;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.revicon-search-1:before { content: '\e802'; } /* '' */
.revicon-pencil-1:before { content: '\e831'; } /* '' */
.revicon-picture-1:before { content: '\e803'; } /* '' */
.revicon-cancel:before { content: '\e80a'; } /* '' */
.revicon-info-circled:before { content: '\e80f'; } /* '' */
.revicon-trash:before { content: '\e801'; } /* '' */
.revicon-left-dir:before { content: '\e817'; } /* '' */
.revicon-right-dir:before { content: '\e818'; } /* '' */
.revicon-down-open:before { content: '\e83b'; } /* '' */
.revicon-left-open:before { content: '\e819'; } /* '' */
.revicon-right-open:before { content: '\e81a'; } /* '' */
.revicon-angle-left:before { content: '\e820'; } /* '' */
.revicon-angle-right:before { content: '\e81d'; } /* '' */
.revicon-left-big:before { content: '\e81f'; } /* '' */
.revicon-right-big:before { content: '\e81e'; } /* '' */
.revicon-magic:before { content: '\e807'; } /* '' */
.revicon-picture:before { content: '\e800'; } /* '' */
.revicon-export:before { content: '\e80b'; } /* '' */
.revicon-cog:before { content: '\e832'; } /* '' */
.revicon-login:before { content: '\e833'; } /* '' */
.revicon-logout:before { content: '\e834'; } /* '' */
.revicon-video:before { content: '\e805'; } /* '' */
.revicon-arrow-combo:before { content: '\e827'; } /* '' */
.revicon-left-open-1:before { content: '\e82a'; } /* '' */
.revicon-right-open-1:before { content: '\e82b'; } /* '' */
.revicon-left-open-mini:before { content: '\e822'; } /* '' */
.revicon-right-open-mini:before { content: '\e823'; } /* '' */
.revicon-left-open-big:before { content: '\e824'; } /* '' */
.revicon-right-open-big:before { content: '\e825'; } /* '' */
.revicon-left:before { content: '\e836'; } /* '' */
.revicon-right:before { content: '\e826'; } /* '' */
.revicon-ccw:before { content: '\e808'; } /* '' */
.revicon-arrows-ccw:before { content: '\e806'; } /* '' */
.revicon-palette:before { content: '\e829'; } /* '' */
.revicon-list-add:before { content: '\e80c'; } /* '' */
.revicon-doc:before { content: '\e809'; } /* '' */
.revicon-left-open-outline:before { content: '\e82e'; } /* '' */
.revicon-left-open-2:before { content: '\e82c'; } /* '' */
.revicon-right-open-outline:before { content: '\e82f'; } /* '' */
.revicon-right-open-2:before { content: '\e82d'; } /* '' */
.revicon-equalizer:before { content: '\e83a'; } /* '' */
.revicon-layers-alt:before { content: '\e804'; } /* '' */
.revicon-popup:before { content: '\e828'; } /* '' */
/*!
 * Bootstrap v3.3.1 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  margin: .67em 0;
  font-size: 2em;
}
mark {
  color: #000;
  background: #ff0;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -.5em;
}
sub {
  bottom: -.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  height: 0;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}
legend {
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;

    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';

  src: url('/nimis/fonts/glyphicons-halflings-regular.eot');
  src: url('/nimis/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('/nimis/fonts/glyphicons-halflings-regular.woff') format('woff'), url('/nimis/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('/nimis/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\2a";
}
.glyphicon-plus:before {
  content: "\2b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  font-size: 10px;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
       -o-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  -webkit-box-shadow: none;
          box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}
table {
  background-color: transparent;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-child(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.table-responsive {
  min-height: .01%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eee;
  opacity: 1;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"] {
    line-height: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}
.input-sm,
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm,
select.form-group-sm .form-control {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
textarea.form-group-sm .form-control,
select[multiple].input-sm,
select[multiple].form-group-sm .form-control {
  height: auto;
}
.input-lg,
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
select.input-lg,
select.form-group-lg .form-control {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
textarea.form-group-lg .form-control,
select[multiple].input-lg,
select[multiple].form-group-lg .form-control {
  height: auto;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.3px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
  }
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  font-weight: normal;
  color: #337ab7;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
       -o-transition: opacity .15s linear;
          transition: opacity .15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
  visibility: hidden;
}
.collapse.in {
  display: block;
  visibility: visible;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: .35s;
       -o-transition-duration: .35s;
          transition-duration: .35s;
  -webkit-transition-property: height, visibility;
       -o-transition-property: height, visibility;
          transition-property: height, visibility;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px solid;
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.nav > li.disabled > a {
  color: #777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.tab-content > .tab-pane {
  display: none;
  visibility: hidden;
}
.tab-content > .active {
  display: block;
  visibility: visible;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
    visibility: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.navbar-form {
  padding: 10px 15px;
  margin-top: 8px;
  margin-right: -15px;
  margin-bottom: 8px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #080808;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}
.breadcrumb > .active {
  color: #777;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #286090;
}
.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: #777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding: 30px 15px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding: 48px 0;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-right: auto;
  margin-left: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}
.thumbnail .caption {
  padding: 9px;
  color: #333;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  -webkit-transition: width .6s ease;
       -o-transition: width .6s ease;
          transition: width .6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
          background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
       -o-animation: progress-bar-stripes 2s linear infinite;
          animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
a.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
a.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #eee;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
a.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
a.list-group-item-success.active:hover,
a.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
a.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
a.list-group-item-info.active:hover,
a.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
a.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
a.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #337ab7;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, .15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
       -o-transition:      -o-transform .3s ease-out;
          transition:         transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
      -ms-transform: translate(0, -25%);
       -o-transform: translate(0, -25%);
          transform: translate(0, -25%);
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
.modal-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}
.modal-header {
  min-height: 16.42857143px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.4;
  visibility: visible;
  filter: alpha(opacity=0);
  opacity: 0;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, .25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, .25);
  border-left-width: 0;
}
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, .25);
}
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, .25);
}
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: .6s ease-in-out left;
       -o-transition: .6s ease-in-out left;
          transition: .6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
         -o-transition:      -o-transform .6s ease-in-out;
            transition:         transform .6s ease-in-out;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000;
            perspective: 1000;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  filter: alpha(opacity=50);
  opacity: .5;
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: .9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  font-family: serif;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}

/*===========================================


Template Name: NIMIS
Author: Hastech
Author URI: http://hastech.company/
Version: 1.0
   
   
---------------------------------------------
 
 
CSS INDEX
=========

1. Base CSS
2. Home CSS
3. Home 2 CSS
4. Checkout page CSS
5. 404 page style
6. blog_page_style
7. single blog page_style
8. contact page css
9. Category Page CSS
10. Cart Page CSS
11. product detail page CSS
12. Mobile menu CSS
13. xTra CSS
14. IE CSS


-------------------------------------------------------------------
This Template Is Fully Coded By Shakhawat H. from codingcouples.com
-------------------------------------------------------------------


==============================================*/


/* ============================================
1. Base CSS
===============================================*/

.floatleft { float: left }
.floatright { float: right }
.alignleft {
    float: left;
    margin-right: 15px;
}
.alignright {
    float: right;
    margin-left: 15px;
}
.aligncenter {
    display: block;
    margin: 0 auto 15px;
}
a:focus { outline: 0px solid }
img {
    max-width: 100%;
    height: auto;
}
.fix { overflow: hidden }
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    font-weight: 700;
}
html,
body { height: 100% }
body { font-family: 'Cabin', sans-serif; }
.section-padding { padding: 60px 0 }
.section-gray { background-color: #F7F7F7 }
.section-dark {
    background-color: #110C09;
    color: #fff;
}
a { transition: .3s }
a:hover { color: #000 }


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

}
.section_heading {display:none;}
/* ============================================
2. Home CSS
===============================================*/

.header_top {
  background: none repeat scroll 0 0 #212121;
padding: 12px 0;
}
.header_top_left {
  margin-bottom: -8px;
}
.header_top_right {
  margin-bottom: -8px;
}
.header_top_left > img {
  float: left;
  margin-right: 10px;
}
.header_top_left > p {
  color: #e8e8e8;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}
.header_top_left span {
  color: #0F79AB;
  font-weight: 600;
  margin-left: 4px;
}
.header_top_right p {
  color: #e8e8e8;
font-size: 12px;
font-weight: 500;
text-transform: uppercase;
float: left;
 margin-right: 15px;
}
.header_top_right p a {
  color: #e8e8e8;
}
.header_top_right p a:hover {
  color: #0F79AB;
  text-decoration:none;
}
nav.currency {
  margin-top: -2px;
}
.top-flag {
  margin-top: -2px;
}
.currency ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
  top: 18px;
  transition:.25s;
}
.currency ul li {
 position:relative;
}
.currency-dropdown {
background: none repeat scroll 0 0 rgba(33, 33, 33, 0.8);
left: -15px;
margin-top: 39px;
position: absolute;
text-align: center;
top: 50px;
width: 58px;
transition:.25s;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-moz-opacity: 0;
-khtml-opacity: 0;
opacity:0;
}
.currency ul li:hover ul.currency-dropdown {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
filter: alpha(opacity=1);
-moz-opacity: 1;
-khtml-opacity: 1;
opacity: 1;
padding: 19px 0 3px;
z-index: 10;
}
.currency-dropdown li {

}
.currency-dropdown li a {
display: block;
font-size: 12px;
padding: 3px;
}
.currency-dropdown li a:hover {
display: block;
font-size: 12px;
padding: 3px;
}
.currency ul li a {
   color: #e8e8e8;
font-size: 12px;
font-weight: 500;
text-transform: uppercase;
}
.currency ul li a:hover {
   color: #0F79AB;
  text-decoration:none;
}

.header_center {
  margin: 43px 0 0;
  text-align: center;
}
.header_left {
  margin: 43px 0;
  position: relative;
}
.header_right {
  margin: 43px 0;
  position: relative;
}
.w_likes {
  background: url(/img/wishlist_bg.png) no-repeat scroll 0 0 rgba(0, 0, 0, 0);
  height: 22px;
  left: 56px;
  position: absolute;
  top: -23px;
  width: 26px;
}
.w_likes > span {
  color: #fff;
  font-size: 12px;
  padding-left: 9px;
}
.header_left a {
  color: #333333;
  font-size: 17px;
  left: 0px;
  position: absolute;
  top: 4px;
}
.header_left input[type="text"] {
border: medium none;
color: #000;
font-weight: 500;
margin-left: 13px;
padding-left: 10px;
padding-top: 3px;
text-transform: uppercase;
}
.header_right ul.checkout {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.header_right ul.checkout li {
  float:left;
}
.header_right ul.checkout li a {
  color: #212121;
display: block;
font-size: 12px;
font-weight: 500;
padding: 0 10px;
text-transform: uppercase;
}
.header_right ul.checkout li a:hover {
  text-decoration:none;
  color:#0F79AB;
}
.header_right i {
  font-size: 17px;
  margin-right: 7px;
}
.nav_area {
  background: none repeat scroll 0 0 #0F79AB;
}
.nav_left {
  background: none repeat scroll 0 0 #f06160;
padding: 22px 0;
position: relative;
width: 17%;
}
.nav_left a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding-left: 18px;
  text-transform: uppercase;
}
.nav_left a:hover {
  text-decoration:none;
}
.nav_left i {
  margin-left: 65px;
}
.nav_right {
  background: none repeat scroll 0 0 #f06160;
padding: 22px 0;
position: relative;
width: 17%;
}
.nav_right a {
  color: #fff;
font-size: 14px;
font-weight: 700;
padding-left: 35px;
text-transform: uppercase;
}
.c_totals_left a, .c_totals_right a {
  padding-left: 0;
}
.nav_right a:hover {
  text-decoration:none;
  color: #000;
}
.nav_right img {
  cursor: pointer;
margin-right: 10px;
margin-top: -7px;
}
.nav_center {
  float: left;
  width: 66%;
}
nav.mainmenu {
  position: relative;
}
nav.mainmenu::after {
  border-top: 4px solid #fff;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.mainmenu ul#nav {
  list-style: outside none none;
  margin: 0;
  padding: 0;
  text-align:center;
}
.mainmenu ul#nav li {
  display: inline-block;
padding: 0 32px;
position:relative;
}
.mainmenu ul#nav li ul#sub-menu {
background: none repeat scroll 0 0 #f7f8f9;
box-shadow: 0 10px 12px #666;
left: 33px;
margin: 0;
opacity: 0;
padding: 0;
position: absolute;
text-align: left;
top: 100px;
transition: all 0.5s ease 0s;
width: 285px;
z-index: -1;
}
.mainmenu ul#nav li ul#sub-menu4 {
background: none repeat scroll 0 0 #f7f8f9;
box-shadow: 0 10px 12px #666;
left: 33px;
margin: 0;
opacity: 0;
padding: 0;
position: absolute;
text-align: left;
top: 100px;
transition: all 0.5s ease 0s;
width: 285px;
z-index: -1;
}
.mainmenu ul#nav li ul#sub-menu7 {
background: none repeat scroll 0 0 #f7f8f9;
box-shadow: 0 10px 12px #666;
left: 33px;
margin: 0;
opacity: 0;
padding: 0;
position: absolute;
text-align: left;
top: 100px;
transition: all 0.5s ease 0s;
width: 285px;
z-index: -1;
}
.mainmenu ul#nav li ul#sub-menu5 {
background: none repeat scroll 0 0 #f7f8f9;
box-shadow: 0 10px 12px #666;
left: 33px;
margin: 0;
opacity: 0;
padding: 0;
position: absolute;
text-align: left;
top: 100px;
transition: all 0.5s ease 0s;
width: 285px;
z-index: -1;
}
.mainmenu ul#nav li:hover ul#sub-menu {
opacity:1;
transition:.5s;
top: 64px;
z-index:99;
}
.mainmenu ul#nav li:hover ul#sub-menu4 {
opacity:1;
transition:.5s;
top: 64px;
z-index:99;
}
.mainmenu ul#nav li:hover ul#sub-menu7 {
opacity:1;
transition:.5s;
top: 64px;
z-index:99;
}
.mainmenu ul#nav li:hover ul#sub-menu5 {
opacity:1;
transition:.5s;
top: 64px;
z-index:99;
}

.mainmenu ul#nav li ul#sub-menu li {

}
.mainmenu ul#nav li ul#sub-menu li a {
border-bottom: 1px solid #f1f1f1;
border-top: 0 solid;
color: #212121;
display: block;
font-size: 12px;
width: 220px;
}
.mainmenu ul#nav li ul#sub-menu4 li a {
border-top: 0 solid;
color: #212121;
display: block;
font-size: 12px;
width: 220px;
}
.mainmenu ul#nav li ul#sub-menu7 li a {
border-top: 0 solid;
color: #212121;
display: block;
font-size: 12px;
width: 220px;
}
.mainmenu ul#nav li ul#sub-menu5 li a {
border-top: 0 solid;
color: #212121;
display: block;
font-size: 12px;
width: 220px;
}
.mainmenu ul#nav li ul#sub-menu li.last-child a {
border-bottom: 0px solid #f1f1f1;
}
.mainmenu ul#nav li ul#sub-menu li:hover {
background:#fff;
}
.mainmenu ul#nav li ul#sub-menu4 li:hover {
background:#fff;
}
.mainmenu ul#nav li ul#sub-menu7 li:hover {
background:#fff;
}
.mainmenu ul#nav li ul#sub-menu5 li:hover {
background:#fff;
}
.mainmenu ul#nav li ul#sub-menu li a:hover {
color:#0F79AB;
}
.mainmenu ul#nav li ul#sub-menu4 li a:hover {
color:#0F79AB;
}
.mainmenu ul#nav li ul#sub-menu7 li a:hover {
color:#0F79AB;
}
.mainmenu ul#nav li ul#sub-menu5 li a:hover {
color:#0F79AB;
}
.mainmenu ul#nav li a {
  border-top: 4px solid #fff;
color: #fff;
display: block;
font-weight: 700;
padding: 20px 0;
position: relative;
text-transform: uppercase;
z-index: 1;
}
.mainmenu ul#nav li a:hover {
  border-top: 4px solid #212121;
  text-decoration:none;
}
.mainmenu ul#nav li.current-page-item a {
  border-top: 4px solid #212121;
  text-decoration:none;
}
.nav_left ul#sub-menu3 {
background: none repeat scroll 0 0 #f7f8f9;
box-shadow: 0 10px 12px #666;
left: 0;
list-style: outside none none;
margin: 0;
opacity: 0;
padding: 0;
position: absolute;
text-align: left;
top: 100px;
transition: all 0.5s ease 0s;
width: 285px;
z-index: -1;
}
.nav_left:hover ul#sub-menu3 {
  opacity: 1;
  top: 64px;
  transition: all 0.5s ease 0s;
  z-index: 99;
}
.nav_left ul#sub-menu3 li {
  display: inline-block;
  padding: 0 32px;
  position: relative;
}
.nav_left ul#sub-menu3 li a {
  border-bottom: 1px solid #f1f1f1;
  border-top: 0 solid;
  color: #212121;
  display: block;
  font-size: 12px;
  width: 220px;
  font-weight: 700;
  padding: 20px 0;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
.nav_left ul#sub-menu3 li a:hover {
  color: #0F79AB;
}
.nav_left ul#sub-menu3 li:hover {
  background: none repeat scroll 0 0 #fff;
}
.nav_left ul#sub-menu3 li ul#sub-menu2 {
background: none repeat scroll 0 0 #f7f8f9;
box-shadow: 0 10px 12px #666;
left: 370px;
list-style: outside none none;
margin: 0;
opacity: 0;
padding: 0;
position: absolute;
text-align: left;
top: 0;
transition: all 0.5s ease 0s;
width: 285px;
z-index: -1;
}
.nav_left ul#sub-menu3 li:hover ul#sub-menu2 {
  left: 286px;
opacity: 1;
transition: all 0.5s ease 0s;
z-index: 99;
}

.navbar-inverse {
  background-color: inherit;
  border-color: inherit;
}
.navbar {
  border: 0 solid transparent;
  margin-bottom: 0;
  min-height: 50px;
  position: relative;
}
.nav > li > a:hover, .nav > li > a:focus {
  background-color: inherit;
  text-decoration: none;
}
.nav-display {display:block;}
.cart_menu {
background: none repeat scroll 0 0 #fff;
box-shadow: 0 8px 15px #ddd;
opacity: 0;
overflow: hidden;
padding-top: 5px;
position: absolute;
right: 0;
top: 100px;
transition: all 0.5s ease 0s;
width: 333px;
z-index: -1;
}
.nav_right:hover .cart_menu{
top: 64px;
opacity:1;
transition: all 0.5s ease 0s;
z-index: 99;
}
.cart_menu .cart_items .c_item_img a {
  padding-left: 0;
}
.cart_menu .cart_items .c_item_img img {
  margin-top: 0;
}
.c_item_totals_detail.floatleft > a {
  padding-left: 0;
}
.cart_items:hover .c_item_totals_detail a h5 {
  color:#0F79AB;
}
.cart_items {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  padding: 14px;
}
.c_item_img {
  width: 37%;
}
.c_item_totals {
  width: 63%;
}
.c_item_totals h5 {
  color: #333333;
font-size: 12px;
line-height: 18px;
margin-bottom: 5px;
text-transform: uppercase;
}
.c_item_totals_detail {
  width: 66%;
}
.c_item_img > img {
  margin-top: 0;
}
.c_item_totals_detail > span {
  color: #0F79AB;
  font-size: 12px;
}
.close_icon_cart {
  float: right;
}
.cart_totals {
  overflow: hidden;
  padding: 20px 22px;
}
.c_totals_left {
  width: 50%;
}
.c_totals_right {
  float: right;
}
.c_totals_left > p, .c_totals_right > p {
  color: #333333;
font-size: 12px;
font-weight: 500;
margin-bottom: 0;
text-transform: uppercase;
}

.cart_view_bottom {
  overflow: hidden;
}
.cart_view_bottom .c_totals_left {
  background: none repeat scroll 0 0 #99B6CF;
  padding: 15px;
  text-align: center;
  width: 50%;
}
.cart_view_bottom .c_totals_right {
  background: none repeat scroll 0 0 #0F79AB;
  padding: 15px;
  text-align: center;
  width: 50%;
}
.cart_view_bottom .c_totals_left > p {
  color: #fff;
  cursor: pointer;
  margin-bottom: 0;
}
.cart_view_bottom .c_totals_right > p {
  color: #fff;
  cursor: pointer;
  margin-bottom: 0;
}
.cat_mega_menu {
background: none repeat scroll 0 0 #fff;
box-shadow: 0 10px 15px #ddd;
overflow: hidden;
padding: 0 30px;
position: absolute;
top: 100px;
width: 1139px;
opacity:0;
transition: all 0.5s ease 0s;
z-index: -1;
}
.nav_left:hover .cat_mega_menu {
opacity: 1;
top: 64px;
transition: all 0.5s ease 0s;
z-index: 99;
}
.cat_left {
float: left;
margin-right: 100px;
padding-top: 40px;
width: 15%;
}
.cat_middle {
  float: left;
  width: 15%;
  margin-right: 100px;
padding-top: 40px;
}
.cat_middle_right {
  float: left;
  width: 15%;
  margin-right: 50px;
padding-top: 40px;
}
.cat_img {
  float: right;
  margin-right: 46px;
  width: 27%;
}
.cat_left > h5, .cat_middle > h5, .cat_middle_right > h5{
  font-size: 13px;
margin-bottom: 10px;
text-align: left;
text-transform: uppercase;
}
.single_color .panel-body {
  padding-bottom: 0;
  padding-top: 0;
}
.cat_menu_line {
  border-top: 1px solid #ddd;
  position: relative;
}
.cat_menu_line::after {
  border-top: 1px solid #212121;
  content: "";
  left: 0;
  position: absolute;
  top: -1px;
  width: 57px;
}
 ul.cat_nav {
  list-style: outside none none;
margin: 12px 0 0;
padding: 0;
}
 ul.cat_nav li {
  
}
 ul.cat_nav li a {
  color: #212121;
display: block;
font-size: 12px;
padding: 10px 0;
}
 ul.cat_nav li a:hover {
  color: #0F79AB;
}

.slider_area > img {
  width: 100%;
}
.call_to_action_area {
  padding-top: 36px;
}
.call_to_action {
  border-bottom: 2px dotted #a4a4a4;
padding-bottom: 25px;
position: relative;
}
.call_to_action:after {
  position: absolute;
  content: "";
  bottom: 1px;
  left: 0;
  border-bottom: 2px dotted #999;
  width: 100%;
}
.single_call_action > img {
  background: none repeat scroll 0 0 #fff;
  border: 1px solid #c6c7c7;
  border-radius: 50%;
  float: left;
  height: 40px;
  margin-right: 15px;
  padding: 5px;
  width: 40px;
}
.single_call_action > p {
  color: #232323;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 4px;
  text-transform: uppercase;
}
.last_single_call > p {
  padding-top: 12px;
}

.promotion_area {
  padding: 60px 0 97px;
}
.promotion_top {
margin-bottom: 18px;
overflow: hidden;
position: relative;
transition: all 0.75s ease 0s;
z-index: 4;
}
.promo_text {
left: 40px;
position: absolute;
top: 38px;
z-index: 3;
}
.hover_images {
left: 0;
opacity: 0;
position: absolute;
top: 0;
transition: all 0.75s ease 0s;
}
.hover_images > img {
  width: 100%;
}
.promotion_top:hover .hover_images, .promotion_bottom:hover .hover_images {
opacity: 1;
transform: scale(1.05);
transition: all 0.75s ease 0s;
z-index: 1;
}
.promo_text > h5, .promo_text_bottom > h5 {
  color: #232323;
  font-size: 22px;
  font-weight: 400;
}
.p_line {
  border-top: 1px dotted #999;
  margin-bottom: 2px;
}
.promo_text > a, .promo_text_bottom > a {
  color: #666666;
  font-size: 13px;
}
.promotion_bottom {
overflow: hidden;
position: relative;
transition: all 0.75s ease 0s;
z-index: 4;
}
.promo_text_bottom {
right: 40px;
position: absolute;
top: 38px;
z-index: 3;
}
.promotion_bottom_t {
  margin-bottom: 18px;
}
.promotion_bottom_b {
  margin-bottom: 0;
}
.promo_text.promo_text_t {
  top: 114px;
}
.promo_text_bottom.promo_text_b {
  right: 63px;
  top: 50px;
}

.trending_area {
  background: none repeat scroll 0 0 #F4F5F6;
padding: 95px 0;
}
.trending_box h2, .fresh_blog h2, .textimonial_box h2, .featured_product_box h2 {
  color: #232323;
font-size: 26px;
font-weight: 700;
margin-bottom: 8px;
text-align: center;
text-transform: uppercase;
}
.trending_box .nav.nav-tabs {
border: medium none;
margin: 0 auto 42px;
width: 31%;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  border-image: none;
  border: 1px solid transparent;
}
.nav.nav-tabs span {
  color: #0F79AB;
padding-left: 18px;
}
.owl-carousel .item {
  margin: 0 25px 0 auto;
}
#owl-example.owl-carousel .owl-wrapper-outer {
  left: -101px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 109%;
}
.owl-carousel {
  display: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.item-new {
  border: 1px solid #0F79AB;
left: 15px;
position: absolute;
top: 15px;
}
.item-new > p {
  background: none repeat scroll 0 0 #0F79AB;
color: #fff;
font-size: 12px;
margin-bottom: 0;
padding: 1px 8px;
text-transform: uppercase;
}
.item-new > span {
  font-size: 11px;
  padding: 1px 8px;
}
.item-sub {
 background: none repeat scroll 0 0 #fff;
padding: 25px 0;
text-align: center;
}
.item-sub a h5 {
  color: #333333;
  font-size: 12px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.item-sub a:hover h5 {
  color: #0F79AB;
}
.item-sub a:hover {
  color: #0F79AB;
  text-decoration:none;
}
.item-sub > p {
  color: #0F79AB;
  margin-bottom: 0;
  margin-top: 4px;
}
.item-sub span {
  color: #999999;
  margin-left: 8px;
}
.trending_box .owl-carousel::after {
  background: none repeat scroll 0 0 #fff;
content: "";
height: 350px;
left: 0;
opacity: 0.8;
position: absolute;
top: 0;
width: 101px;
z-index: 1;
}
.trending_box .owl-carousel::before {
background: none repeat scroll 0 0 #fff;
content: "";
height: 350px;
opacity: 0.8;
position: absolute;
right: 0;
top: 0;
width: 101px;
z-index: 1;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  background-color: #f4f5f6;
  border-style: solid;
  border-width: 0px;
  color: #232323;
  cursor: pointer;
}
.nav > li > a {
color: #888;
display: block;
font-size: 12px;
padding: 10px 4px;
position: relative;
text-transform: uppercase;
}
.nav-tabs > li > a:hover {
  border-color: #F4F5F6;
}
.nav > li > a:hover, .nav > li > a:focus {
  background-color: #F4F5F6;
  text-decoration: none;
}
.owl-theme .owl-controls .owl-buttons div {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  color: #999;
  font-size: 42px;
  z-index: 2;
}
.owl-carousel .owl-next {
  position: absolute;
  right: 0;
  top: 36%;
}
.owl-carousel .owl-prev {
  position: absolute;
  left: 0;
  top: 36%;
}
.multi_line {
  border-bottom: 2px solid #0F79AB;
  border-top: 1px solid #0F79AB;
  height: 5px;
  margin: 0 auto 20px;
  width: 40px;
}
.item-img {
  position: relative;
}
.fa.fa-shopping-cart.tr_cart {
  left: -27px;
  position: relative;
  transition:.25s;
}
.tr_text {
  bottom: -89px;
  position: relative;
  transition:.25s;
}
.fa.fa-heart.tr_heart {
  position: relative;
  top: -161px;
  transition:.25s;
}
.fa.fa-search.tr_search {
  position: relative;
  right: -35px;
  transition:.25s;
}
.tr-add-cart {
  background: none repeat scroll 0 0 rgba(255, 255, 255, 0.5);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  opacity:0;
  transition:.25s;
}

.tr-add-cart > ul {
  background:none repeat scroll 0 0 rgba(255, 255, 255, 0.9);
list-style: outside none none;
margin: 125px 0 0;
padding: 0;
}
.tr-add-cart > ul li {
  display: inline-block;
}
.tr-add-cart > ul li a {
color: #232323;
display: block;
font-size: 15px;
padding: 12px 6px;
border-top:2px solid #fff;
border-bottom:2px solid #fff;
}
.tr-add-cart > ul li a:hover {
text-decoration:none;
border-top:2px solid #232323;
}
.item:hover .tr-add-cart {
opacity: 1;
text-align: center;
transition: all 0.25s ease 0s;
}
.item:hover .tr-add-cart .fa.fa-shopping-cart.tr_cart {
  left: 0px;
  transition:.25s;
}
.item:hover .tr-add-cart .tr_text {
  bottom: 0px;
  transition:.35s;
}
.item:hover .tr-add-cart .fa.fa-heart.tr_heart {
  top: 0px;
  transition:.25s;
}
.item:hover .tr-add-cart .fa.fa-search.tr_search {
  right: 0px;
  transition:.25s;
}

.footer_top_area {
  background: none repeat scroll 0 0 #2a2a2a;
  padding: 20px 0;
}
.footer_top_left a i {
  color: #fff;
  font-size: 17px;
  margin-right: 10px;
}
.footer_top_left > a {
  color: #fff;
  font-size: 13px;
  margin-right: 22px;
  text-transform: uppercase;
}
.footer_top_left > input[type="text"] {
 background: #232323 none repeat scroll 0 0;
border: medium none;
color: #fff;
margin-right: 8px;
padding: 5px 15px;
width: 43%;
}
.footer_top_left > input[type="submit"] {
  background: none repeat scroll 0 0 #232323;
border: 1px solid #fff;
color: #fff;
padding: 3px 8px;
text-transform: uppercase;
}
.footer_top_left > input[type="submit"]:hover {
  background: none repeat scroll 0 0 #0F79AB;
border: 1px solid #0F79AB;
color: #fff;
}
.footer_top_right > ul#payment {
  list-style: outside none none;
  margin: 0;
  padding: 0;
  text-align: right;
}
.footer_top_right > ul#payment li {
  display: inline;
  margin-left: 5px;
}
.footer_top_right > ul#payment li a {
  
}
.footer_area {
  background: none repeat scroll 0 0 #232323;
  padding: 70px 0;
}
.single_widget > h5 {
  color: #eeeeee;
  font-size: 15px;
  text-transform: uppercase;
}
.wid_line {
  border-top: 1px solid #1a1a1a;
  margin-bottom: 30px;
  margin-top: 18px;
  position: relative;
}
.wid_line::after {
  border-top: 1px solid #155B98;
  content: "";
  left: 0;
  position: absolute;
  top: -1px;
  width: 52px;
}
.single_widget ul.widget_nav {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.single_widget ul.widget_nav li {
  
}
.single_widget ul.widget_nav li a {
  color: #aaaaaa;
display: block;
font-size: 14px;
padding: 7px 0;
}
.single_widget ul.widget_nav li a:hover {
  color:#0F79AB;
  text-decoration:none;
}
.single_widget address {
color: #aaaaaa;
line-height: 33px;
}
ul.wid_social {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
ul.wid_social li {
  display:inline;
  margin-right: 8px;
}
ul.wid_social li a {
  background: none repeat scroll 0 0 #373737;
color: #aaa;
display: inline-block;
height: 40px;
padding: 14px 5px 5px 15px;
width: 40px;
  
}
ul.wid_social li a:hover {
background: none repeat scroll 0 0 #0F79AB;
color: #fff;
text-decoration: none;
}
.footer_bottom_area {
  background: none repeat scroll 0 0 #181818;
  padding: 18px 0;
}
.footer_bottom {
  text-align: center;
}
.footer_bottom > p {
  color: #aaaaaa;
  font-size: 12px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.footer_bottom a {
  color: #e8e8e8;
}
.footer_bottom a:hover {
  color: #ff5240;
  text-decoration:none;
}

/* ============================================
3. Home page 2 CSS
===============================================*/
.featured_product_box > p {
  color: #777777;
  font-size: 12px;
  margin: 0 auto 58px;
  text-align: center;
  text-transform: uppercase;
}
.featured_product_area {
  padding: 95px 0;
  background: #f7f8f9;
}
.ex_left {
height: 328px;
}
.ex_right {
}
.ex_left_text > h2 {
  color: #0F79AB;
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 700;
}
.ex_left_text > h5 {
color: #232323;
font-size: 19px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 30px;
}
.ex_left_text > p {
border-bottom: 2px dotted #ddd;
border-top: 2px dotted #ddd;
color: #212121;
font-weight: 700;
margin-bottom: 30px;
text-align: center;
width: 69%;
margin: 0 auto 32px;
}
.ex_left_text > a {
border: 2px solid #0F79AB;
color: #232323;
font-size: 13px;
font-weight: 500;
padding: 12px 23px;
text-align: center;
text-transform: uppercase;
}
.ex_left_text > a:hover {
  color: #fff;
  background:#0F79AB;
  text-decoration:none;
}
.exclusive_area {
  background: url(/img/x-m.jpg) no-repeat scroll center center / cover  rgba(0, 0, 0, 0);
  overflow: hidden;
  margin-top: 0;
}
.ex_left_img {
  position: relative;
}
.ex_left_text {
text-align: center;
width: 61%;
margin-top: 224px;
margin-left: -76px;
}
.ex_left_img > img {
  width: 100%;
}
.ex_left_text.ex_left_right {
margin-left: 318px;
margin-top: 213px;
}
.ex_left_right h6 {
  color: #232323;
  font-size: 15px;
  margin-bottom: 10px;
}
.ex_left_right h2 {
  font-size: 35px;
}
.ex_left_text.ex_left_right span {
  color: #0F79AB;
}
.ex_left_text.ex_left_right > p {
  width: 85%;
  margin: 0 auto 30px;
}
#owl-example.owl-example-i2 .owl-wrapper-outer {
  left: 0;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 109%;
}
.trending_box .owl-example-i2::before {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
z-index: -1;
}
.trending_box .owl-example-i2::after {
 background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
z-index: -1;
}
.owl-example-i2 .owl-next {
  right: 17px;
}

.fresh_blog_area {
  background: none repeat scroll 0 0 #f4f5f6;
  padding: 95px 0;
}
.fresh_blog .multi_line {
  margin-bottom: 120px;
}
.fresh_blog_text {
  float: left;
  margin-right: 15px;
  width: 50%;
}
.fresh_blog_img {
  float: left;
margin-top: 10px;
width: 47%;
}
.fresh_blog_img > img {
  width: 100%;
}
.fresh_blog_text span {
 color: #262626;
font-size: 31px;
font-weight: 300;
}
.month_right {
  border-bottom: 1px dotted #ddd;
margin-bottom: 20px;
overflow: hidden;
padding-bottom: 20px;
}
.fresh_blog_text h2 {
  font-size: 45px;
  text-align: left;
  font-weight: 300;
  color: #0F79AB;
}
.months p {
  color: #232323;
  float: left;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
  width: 50%;
}
.month_right > span {
  float: right;
  font-size: 12px;
  width: 50%;
}
.month_right span i {
  color: #0F79AB;
  font-size: 16px;
  margin-right: 8px;
}
.fresh_blog_bottom_text h4 {
  color: #232323;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.fresh_blog_bottom_text > p {
  color: #777777;
  display: block;
  font-size: 13px;
  text-transform: inherit;
}
.view_post {
  border: 2px solid #0F79AB;
margin-top: 60px;
padding: 10px 20px;
width: 121px;
}
.view_post > a {
  color: #232323;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.view_post:hover {
  background:#0F79AB;
}
.view_post:hover a {
  color: #fff;
  text-decoration:none;
}
.carousel-control.left {
background: none repeat scroll 0 0 #e4e5e5;
height: 30px;
left: 47%;
opacity: 1;
top: -37%;
width: 30px;
text-shadow: none;
}
.carousel-control.right {
background: none repeat scroll 0 0 #e4e5e5;
height: 30px;
opacity: 1;
right: 47%;
top: -37%;
width: 30px;
text-shadow: none;
}
.carousel-control:hover {
background: none repeat scroll 0 0 #FD907B;
color:#fff;
}
#blog-caro .carousel-control i {
  color: #232323;
  font-size: 23px;
}
#blog-caro .carousel-control:hover i {
  color: #fff;
}

.testimonial_area {
background: none repeat scroll 0 0 #f7f8f9;
padding: 80px 0 58px;
}
.textimonial_box {
  text-align: center;
}
.textimonial_box > img {
  margin-bottom: 25px;
}
.textimonial_box .multi_line {
  margin: 0 auto 37px;
}
#testi_carosel .item > p {
  color: #555555;
font-size: 17px;
font-style: italic;
margin: 0 auto 40px;
width: 64%;
}
.client_box > img {
  float: left;
  margin-right: 15px;
  width: 15%;
}
.client_box_text {
  float: left;
  text-align: left;
  width: 79%;
}
.client_box_text > h4 {
  color: #232323;
  font-size: 16px;
  margin-bottom: 6px;
}
.client_box_text > p {
  color: #777777;
  font-size: 12px;
}
.client_box {
  margin: 0 auto;
  overflow: hidden;
  width: 22%;
}
#testi_carosel .carousel-indicators {
  bottom: -63px;
}
 #testi_carosel .carousel-indicators li {
  background-color: #ddd;
  border: 1px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  display: inline-block;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  width: 10px;
}
 #testi_carosel .carousel-indicators .active {
  background-color: #0F79AB;
  border:1px solid #0F79AB;
  height: 12px;
  margin: 0;
  width: 12px;
}
#branding_caro {
 padding-top: 109px;
}
#branding_caro .owl-prev i {
  color: #000;
  font-size: 20px;
}
#branding_caro .owl-next i {
  color: #000;
  font-size: 20px;
  opacity:1;
}
#branding_caro .owl-prev i:hover {
  color: #0F79AB;
}
#branding_caro .owl-next i:hover {
  color: #0F79AB;
}
#branding_caro .owl-item img {
  display: block;
  margin: 0 auto;
}
#owl-example.owl-carousel .item {
  display: block;
  margin: 0 25px 0 auto;
  text-align: center;
}
.branding_area {
  background: none repeat scroll 0 0 #f7f8f9;
padding-bottom: 0;
}
.dotted_line {
  border-bottom: 2px dotted #999;
  border-top: 2px dotted #999;
  float: left;
  height: 5px;
}
.branding_box_heading {
  overflow: hidden;
position: relative;
top: 60px;
z-index:1;
}
.branding_box_heading > h2 {
  color: #232323;
  float: left;
  font-size: 18px;
  text-transform: uppercase;
  width: 9%;
}
.dotted_line {
  border-bottom: 2px dotted #a4a4a4;
  border-top: 2px dotted #999;
  float: left;
  height: 6px;
  margin-top: 9px;
  width: 86%;
}
#branding_caro.owl-carousel .owl-prev {
left: 48%;
position: relative;
top: -191px;
z-index: 4;
}
#branding_caro.owl-carousel .owl-next {
position: relative;
right: -46%;
top: -191px;
z-index: 4;
}



/* ============================================
4. Checkout page CSS
===============================================*/
.breadcumb_top_area {
background: url(/img/breadcumb_bg.jpg) no-repeat scroll center center / cover  rgba(0, 0, 0, 0);
padding: 92px 0;
position: relative;
z-index: -1;
}
.bread_top_box h2, .error_slider h2, .blog_slider_box h2, .contact_banner h2 {
  color: #f7f8f9;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.breadcumb_top_area::after, .error_slider_area:after, .blog_slider_area:after, .contact_banner_area:after {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.breadcumb_area {
  padding: 20px 0;
}
.bread_box ul.breadcumb {
  list-style: outside none none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.bread_box ul.breadcumb li {
  display:inline-block;
}
.bread_box ul.breadcumb li a {
  color: #999999;
  display: block;
  font-size: 12px;
  padding: 0 10px;
  text-transform: uppercase;
}
.bread_box ul.breadcumb li a:hover, .bread_box ul.breadcumb li.active a {
	color:#212121;
	text-decoration:none;
	font-weight:600;
}
.breadcumb span {
  margin-left: 10px;
}
.input-append .btn.dropdown-toggle {
    float: none;
}
.checkout_area {
  background: none repeat scroll 0 0 #f7f8f9;
border-top: 1px solid #eeeeee;
padding: 80px 0;
}
.checkout_right {
  background: none repeat scroll 0 0 #fff;
}
.checkout_right h4 {
  background: none repeat scroll 0 0 #0F79AB;
color: #fff;
font-size: 13px;
font-weight: 700;
margin-bottom: 4px;
padding: 15px 20px;
text-transform: uppercase;
}
.product_form_total {
  padding: 20px;
}
.c_main_item {
  border-bottom: 1px solid #f4f5f5;
  overflow: hidden;
}
.c_main_item > p, .c_single_item > p, .c_total_item > p, .c_payment > p {
  color: #232323;
  float: left;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
  width: 60%;
}
.c_main_item > span, .c_single_item > span, .c_total_item > span {
 color: #232323;
float: left;
font-size: 12px;
font-weight: 700;
margin-bottom: 5px;
text-align: right;
text-transform: uppercase;
width: 40%;
}
.c_single_item {
  overflow: hidden;
  padding-top: 15px;
}
.c_single_item > p {
  font-weight: 400;
}
.c_single_item > span {
  font-weight: 400;
}
.c_single_item.sp_single_item {
  border-bottom: 1px solid #f4f5f5;
padding-bottom: 8px;
}
.c_total_item.sp_single_item {
  border-bottom: 1px solid #f4f5f5;
  margin-bottom: 17px;
  overflow: hidden;
  padding: 12px 0 8px;
}
.c_payment {
  margin-bottom: 16px;
}
.filter-option.pull-left {
  color: #999;
}
.c_payment > p {
  margin-bottom: 8px;
  width: 100%;
}
.c_payment > input[type="text"] {
  border: 1px solid #ddd;
  color: #999;
  padding: 5px 10px;
  width: 100%;
}
.checkbox > label {
  font-size: 11px;
  text-transform: uppercase;
}
.checkbox span {
  color: #0F79AB;
}
.checkbox input {
  margin-top: 2px;
}
.product_form_total > input[type="submit"], .coupon_box > input[type=submit] {
  background: none repeat scroll 0 0 #fff;
  border: 2px solid #0F79AB;
  color: #232323;
  font-size: 13px;
  font-weight: 700;
  margin: 8px auto 15px;
  padding: 7px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
.product_form_total > input[type="submit"]:hover {
  background: none repeat scroll 0 0 #0F79AB;
  color: #fff;
}
.checkout_left > h2 {
  color: #212121;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: left;
  text-transform: uppercase;
}
.checkout_form {
  overflow: hidden;
  padding-top: 30px;
  width: 100%;
}
.country_select input[type="text"] {
  background: none repeat scroll 0 0 #f7f8f9;
border: 1px solid #e8e8e8;
padding: 9px;
width: 96.56%;
}
.company_name input[type="text"], .c_address input[type="text"], .s_town input[type="text"], .c_name_box input[type="text"], .c_state_box input[type="text"], .c_mail_box input[type="text"], .s_order textarea {
  background: none repeat scroll 0 0 #f7f8f9;
  border: 1px solid #E8E8E8;
  padding: 9px;
  width: 100%;
}
.btn.btn-primary.dropdown-toggle {
  background: none repeat scroll 0 0 #0F79AB;
  border: medium none;
  border-radius: 0;
  margin-left: -2px;
  margin-top: -3px;
  padding: 10px;
}
.c_name_box, .company_name, .c_address, .c_state_box, .c_mail_box, .checkbox {
  overflow: hidden;
padding-bottom: 15px;
}
.checkout_form label {
  color: #212121;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.c_name_box_left, .c_state_box_left, .c_mail_box_left {
  float: left;
  margin-right: 4%;
  width: 48%;
}
.c_name_box_right, .c_state_box_right, .c_mail_box_right {
  float: left;
  width: 48%;
}
.checkout_left .dotted_line {
  width: 100%;
  border-bottom: 2px dotted #C6C7C7;
border-top: 2px dotted #C6C7C7;
}
.checkout_form .checkbox {
  margin-bottom: 41px;
}
.country_select {
  margin-bottom: 20px;
}
.country_select .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
}
.country_select .btn-default {
  background: none repeat scroll 0 0 transparent;
  border-color: #e8e8e8;
  border-radius: 0;
  color: #999;
  font-size: 12px;
  padding: 12px 20px;
  text-transform: uppercase;
}
.country_select2 {
  margin-top: 62px;
}
.s_order textarea {
  height: 104px;
}
.s_order {
  margin-top: 15px;
}


/* ============================================
5. 404 page style
===============================================*/

.error_slider_area {
  background: url(/img/404_slider.jpg) no-repeat scroll center center / cover  rgba(0, 0, 0, 0);
padding: 90px 0;
position: relative;
z-index: -1;
}

.error_not_found_area {
background: none repeat scroll 0 0 #f7f8f9;
border-top: 1px solid #eeeeee;
padding: 90px 0;
text-align: center;
}
.error_not_found > h2 {
  color: #212121;
  font-size: 40px;
  margin-top: 60px;
}
.error_not_found > p {
color: #212121;
font-size: 15px;
margin-bottom: 50px;
}
.error_not_found input[type="text"] {
border: 1px solid #eee;
font-size: 12px;
height: 38px;
margin-bottom: 65px;
padding: 13px;
text-transform: uppercase;
width: 277px;
}
.error_not_found i {
  color: #555555;
  font-size: 17px;
  margin-left: -30px;
}


/* ============================================
6. blog_page_style
===============================================*/
.blog_slider_area {
  background: url(/img/blog_bg.jpg) no-repeat scroll 0 0 / cover  rgba(0, 0, 0, 0);
  padding: 92px 0;
  position: relative;
  z-index: -1;
}
.blog_page_area {
  padding: 90px 0;
  background:#F7F8F9;
}

.blog_date_in_page {
float: left;
margin-right: 40px;
overflow: hidden;
margin-bottom: 18px;
}
.blog_text_in_page {
  margin-bottom: 18px;
overflow: hidden;
}
.single_blog_in_page {
  border-bottom: 2px solid #e8e8e8;
  overflow: hidden;
}
.blog_text_in_page a:hover {
 text-decoration:none;
}
.single_blog_in_page:hover.single_blog_in_page img {
  transform:scale(1.1);
  transition:.25s;
}
.single_blog_in_page:hover .blog_text_in_page h3 {
  color: #0F79AB;
}
.single_blog_in_page.last_single_blog_in_page {
  border-bottom: 0 solid;
}
.blog_img_l {
margin-bottom: 30px;
margin-top: 56px;
overflow: hidden;}
.single_blog_in_page img {
 transition:.25s;
}
.blog_date_in_page h2 {
 color: #262626;
font-size: 35px;
margin-bottom: 7px;
}
.blog_date_in_page h2 span {
  color: #0F79AB;
}
.blog_date_in_page p {
  color: #232323;
  font-size: 12px;
  text-transform: uppercase;
  margin-top: -3px;
}
.blog_text_in_page h3 {
color: #212121;
font-size: 16px;
margin-top: 11px;
text-transform: uppercase;
}
.blog_text_in_page h4 {
  color: #777;
  font-size: 12px;
  text-transform:uppercase;
}
.blog_text_in_page h4 span {
  color: #0F79AB;
}
.blog_text_in_page > p {
  color: #777;
  font-size: 14px;
}

.read_more_blog {
 border: 2px solid #0F79AB;
color: #232323;
font-size: 12px;
padding: 10px 25px;
text-transform: uppercase;
}
.single_blog_in_page:hover .read_more_blog {
 border: 2px solid #0F79AB;
background: #0F79AB;
color: #fff;
}
.read_more_blog:hover {
text-decoration:none;
}
.read_more {
  margin-bottom: 63px;
margin-top: 38px;
}
.blog_search input[type="text"] {
  font-size: 12px;
  height: 38px;
  margin-bottom: 65px;
  padding: 13px;
  text-transform: uppercase;
  width: 300px;
}
.blog_search i {
  color: #555555;
  font-size: 17px;
  margin-left: -30px;
}
.blog_page_sidebar {
  margin-left: 42px;
  margin-top: 57px;
}
.blog_widget h2, .blog_categories h2, .blog_recent_post h2, .instrigram h2 {
 color: #111;
font-size: 15px;
text-transform: uppercase;
}
.blog_categories .multi_line, .blog_widget .multi_line, .blog_recent_post .multi_line, .comments .multi_line,.leave_a_reply .multi_line, .instrigram .multi_line {
  margin-left: 0;
}
.instrigram {
  margin-top: 50px;
}
.instrigram > ul {
  list-style: outside none none;
  margin: 40px 0 0 -15px;
  overflow: hidden;
  padding: 0;
}
#instrigram > li {
  float: left;
  margin-bottom: 15px;
  margin-left: 15px;
  width: 28.8%;
}
#instrigram img {
  width: 100%;
}
.log_li_img > img {
  margin-top: 10px;
}
.blog_widget p {
  color: #777777;
  line-height: 23px;
}
.blog_widget, .blog_categories {
  margin-bottom: 45px;
}
.blog_categories ul {
  list-style: outside none none;
margin: 0 0 0 14px;
padding: 0;
}
.blog_categories ul li {
border-bottom: 1px solid #ddd;
list-style-image: url(/img/blog_li.png);
padding-left: 6px;
}
.blog_categories ul li a{
color: #777777;
display: block;
font-size: 12px;
padding: 15px 0;
text-transform: uppercase;
}
.blog_categories ul li a:hover{
text-decoration:none;
color:#0F79AB;
}
.recent_post_text a h3 {
 color: #232323;
font-size: 14px;
line-height: 24px;
}
.recent_post_text a:hover {
 color: #0F79AB;
text-decoration:none;
}
.recent_post_text a h3:hover {
 color: #0F79AB;
}
.recent_post_text > p {
  color: #777;
  font-size: 13px;
  text-transform: inherit;
}
.recent_post_text {
 float: left;
margin-right: 25px;
overflow: hidden;
width: 48%;
}
.single_recent_post {
  border-bottom: 1px solid #ddd;
margin-top: 20px;
overflow: hidden;
padding-bottom: 20px;
}
.recent_post_text > img {
  float: left;
  margin-right: 5px;
  overflow: hidden;
}
.log_li_img {
  float: left;
margin-top: -4px;
width: 4%;
}
.recent_post_img {
  float: left;
width: 40%;
}
.single_recent_post:hover .recent_post_text a h3 {
  color:#0F79AB;
}
.recent_post_img img {
  width: 100%;
}

/* ============================================
7. single blog page_style
===============================================*/
.blog_detail_in_page p {
  color: #777;
  font-size: 14px;
  line-height: 25px;
}
.blog_detail_in_page {
  overflow: hidden;
}
.blog_detail_in_page ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.blog_detail_in_page ul li{
  padding: 10px;
}
.blog_detail_in_page ul li a{
color:#777777;
}
.blog_detail_in_page ul li a:hover{
text-decoration:none;
}
ul#single_blog_nav {
  margin-left: 110px;
  margin-top: 35px;
}
#single_blog_nav i {
 margin-right: 15px;
color: #0F79AB;
}
ul#single_blog_nav {
  margin-bottom: 20px;
  margin-left: 110px;
  margin-top: 20px;
}
.share span {
  text-transform: uppercase;
    color: #232323;
  font-size: 12px;
}
.share {
float: left;
margin-bottom: 20px;
margin-top: 27px;
overflow: hidden;
}
.share_icons {
float: right;
margin-bottom: 20px;
margin-top: 27px;
overflow: hidden;
}
.share_icons ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.share_icons ul li {
  display: inline;
}
.share_icons ul li a {
background: none repeat scroll 0 0 #fff;
border: 1px solid #e7eff5;
border-radius: 50%;
color: #787878;
font-size: 12px;
height: 27px;
padding-top: 7px;
text-align: center;
width: 27px;
}
.share_icons ul li a:hover{
text-decoration:none;
background: none repeat scroll 0 0 #0F79AB;
color: #fff;
}
.comments h2, .leave_a_reply h2{color: #232323;
font-size: 18px;
margin-top: 50px;
text-transform: uppercase;}
.comment_text {
background: none repeat scroll 0 0 #fff;
float: right;
padding: 28px 45px 13px 38px;
position: relative;
width: 85%;
z-index: 2;
}
.comment_text::after {
  background: none repeat scroll 0 0 #fff;
  content: "";
  height: 15px;
  left: -8px;
  position: absolute;
  top: 26px;
  transform: rotate(45deg);
  width: 15px;
  z-index: -1;
}
.comment_img {
  float: left;
  overflow: hidden;
}
.comment_name > h3 {
  color: #333333;
  font-size: 14px;
  text-transform: uppercase;
}
.comment_name span {
  color: #777777;
  font-size: 12px;
}
.comment_name {
  float: left;
  overflow: hidden;
}
.reply {
  float: right;
  overflow: hidden;
}
.reply > span {
  color: #0F79AB;
  font-size: 11px;
  text-transform: uppercase;
}
.comment-detail {
  overflow: hidden;
  width: 100%;
}
.comment_img {
 float: left;
overflow: hidden;
width: 15%;
}
.comment-detail p {
color: #777777;
font-size: 13px;
}
.single_comment {
  margin-bottom: 42px;
  overflow: hidden;
}
.single_comment.even {
  margin-left: 50px;
}
.right_input {
  float: left;
overflow: hidden;
width: 52%;
}
.left_input {
float: left;
margin-right: 4%;
overflow: hidden;
width: 44%;
}
.left_input p, .right_input p {
  color: #333333;
  font-size: 12px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.left_input span {
  color: #0F79AB;
  font-size: 13px;
}
.left_input input[type="text"] {
border: 1px solid #f2f2f2;
height: 38px;
margin-bottom: 20px;
width: 100%;
}
.right_input textarea {
border: 1px solid #f2f2f2;
height: 140px;
margin-bottom: 20px;
width: 100%;
}
.right_input input[type="submit"] {
  background: none repeat scroll 0 0 #0F79AB;
  border: medium none;
  color: #fff;
  height: 38px;
  text-transform: uppercase;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
}
.right_input input[type="submit"]:hover {
  background: none repeat scroll 0 0 #fff;
  border: 2px solid #0F79AB;
  color: #0F79AB;
}


/* ============================================
8. contact page css
===============================================*/
.contact_banner_area {
background: url(/img/contact_bg.jpg) no-repeat scroll 0 0 / cover  rgba(0, 0, 0, 0);
padding: 92px 0;
position: relative;
z-index: -1;
}
.contact_p_area {
background: none repeat scroll 0 0 #f7f8f9;
border-top: 1px solid #eeeeee;
padding: 95px 0;
padding-bottom: 78px;
}
.contact_box_left h4 {
  color: #212121;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.contact_box_left .multi_line {
  margin-bottom: 27px;
  margin-left: 0;
}
.input_form {
  overflow: hidden;
}
.input_left #email {
  margin-bottom: 25px;
}
.form-control {
  background-color: #f7f8f9;
  background-image: none;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.075) inset;
  color: #555;
}
.input_left {
float: left;
margin-right: 3%;
width: 41%;
}
.input_left > input[type="text"] {
  background: none repeat scroll 0 0 #f7f8f9;
border: 1px solid #e8e8e8;
color: #777777;
font-size: 13px;
margin-bottom: 13px;
padding: 10px 16px;
text-transform: inherit;
width: 100%;
}
.input_right {
float: left;
width: 56%;
}
.contact_box_left {
  overflow: hidden;
}
.input_right textarea {
  background: none repeat scroll 0 0 #f7f8f9;
  border: 1px solid #e8e8e8;
  color: #777777;
  font-size: 13px;
  height: 148px;
  padding: 10px 20px;
  text-transform: inherit;
  width: 100%;
}
.submit_btn input[type="submit"] {
  background: none repeat scroll 0 0 #0F79AB;
color: #fff;
float: left;
font-size: 13px;
font-weight: 700;
padding: 8px 20px;
text-align: left;
text-transform: uppercase;
border:2px solid #0F79AB;
}
.submit_btn input[type="submit"]:hover {
  background:#fff;
color: #0F79AB;
border:2px solid #0F79AB;
text-decoration:none;
}
.contact_box_right {
  margin-top: 23px;
  overflow: hidden;
}
.contact_box_right > h5 {
color: #232323;
font-size: 14px;
font-weight: 600;
margin-bottom: 11px;
margin-top: 34px;
text-transform: uppercase;
}
.contact_box_right > p {
color: #555555;
font-size: 11px;
line-height: 22px;
margin-bottom: 5px;
text-transform: uppercase;
}
.contact_box_right > a {
  color: #555555;
  font-size: 11px;
  text-transform: uppercase;
}
.contact_box_right > a:hover {
 color: #0F79AB;
text-decoration:none;
}
.contact_box_right .dotted_line {
  border-bottom: 2px dotted #e3e4e4;
  border-top: 2px dotted #e3e4e4;
  float: left;
  height: 6px;
  margin-top: 9px;
  width: 100%;
}
.maps_box > h2 {
  display: none;
}
.submit_btn {
  margin-top: 16px;
}
.thank_box {
background: none repeat scroll 0 0 #eee;
border-bottom: 5px solid #0F79AB;
font-size: 20px;
height: 271px;
margin: 100px auto 0;
padding-top: 90px;
text-align: center;
width: 55%;
}
.thank_box a {
background: none repeat scroll 0 0 #0F79AB;
border: 2px solid #0F79AB;
color: #fff;
display: block;
font-size: 13px;
margin: 25px auto 0;
padding: 5px 10px;
text-transform: uppercase;
width: 197px;
}
.thank_box a:hover {
  background: none repeat scroll 0 0 #fff;
  color: #0F79AB;
  border:2px solid #0F79AB;
  text-decoration:none;
}
.thank_box i {
  font-size: 12px;
  margin-right: 5px;
}

/* ============================================
9. Category Page CSS
===============================================*/
.filter_area {
  border-bottom: 1px solid #eeeeee;
  border-top: 1px solid #eeeeee;
  padding: 20px 0;
}
.s_results > p, .filter_box_right a {
 color: #777777;
font-size: 12px;
font-weight: 600;
margin-bottom: 0;
text-transform: uppercase;
}
.filter_box_left > p {
color: #777777;
float: left;
font-size: 12px;
font-weight: 600;
margin-bottom: 0;
margin-right: 21px;
text-transform: uppercase;
width: 75px;
}
.filter_cont > ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.filter_cont > ul li {
  display: inline-block;
}
.filter_cont > ul li a {
  color: #777;
font-size: 12px;
padding: 4px;
text-transform: uppercase;
}
.filter_cont > ul li a:hover {
  color: #0F79AB;
text-decoration:none;
}
.filter_cont {
  float: left;
  margin-right: 23px;
  width: 126px;
}
.s_results span {
  color: #ddd;
  margin-right: 30px;
}
.filter_box_right {
  margin-top: -2px;
  text-align: right;
}
.filter_box_right a:hover {
	text-decoration:none;
}
.filter_box_right .dropdown-menu {
  float: right;
  left: 71%;
  margin: 0;
  text-align: right;
  top: 21px;
  width: 27%;
}
.main_category_area {
  background: none repeat scroll 0 0 #f7f8f9;
  padding: 60px 0;
}
#home-accordion.panel-group .panel {
border: 0 solid;
border-radius: 0;
margin-bottom: -5px;
}
#home-accordion .panel-default .panel-heading {
  background-color: #fff;
border-color: #fff;
color: #212121;
margin-bottom: 0;
padding: 26px 20px;
}
#home-accordion .panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #fff;
}
#home-accordion .panel-title {
  color: #232323;
font-size: 14px;
margin-bottom: 0;
margin-top: 0;
text-transform: uppercase;
}
#home-accordion i {
background: none repeat scroll 0 0 #0F79AB;
color: #fff;
display: block;
font-size: 10px;
padding: 2px 5px 1px;
}
#home-accordion .panel-title a {
  display: block;
}
#home-accordion .panel-title a:hover {
  color: #0F79AB;
  text-decoration:none;
}
.panel-body > ul#c_tab1, .panel-body > ul#c_tab2 {
  list-style: outside none none;
margin: -28px 0 0 26px;
padding: 0;
}
.panel-body > ul#c_tab1 li, .panel-body > ul#c_tab2 li {
  list-style-image: url(/img/blog_li.png);
}
.panel-body > ul#c_tab1 li a, .panel-body > ul#c_tab2 li a {
  color: #777777;
  display: block;
  font-size: 12px;
  padding: 11px 2px;
  text-transform: uppercase;
}
.panel-body > ul#c_tab1 li a:hover, .panel-body > ul#c_tab2 li a:hover {
  color: #0F79AB;
  text-decoration:none;
}
#home-accordion  .panel-body {
  border-bottom: 1px solid #eee;
  margin: 15px 15px 0;
  padding-bottom: 13px;
  padding-top:0px;
  padding-left:0px;
  padding-right:0px;
}
.panel-body > img {
  width: 100%;
}
.panel-body.colors_cat ul#cat_color {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.panel-body.colors_cat ul#cat_color li {
  float:left;
  margin-right:10px;
  margin-bottom:10px;
}
.panel-body.colors_cat ul#cat_color li a {
 border: 3px solid #eee;
border-radius: 50%;
display: block;
height: 36px;
width: 36px;
}
.panel-body.colors_cat ul#cat_color li a.col-1 {
  background: none repeat scroll 0 0 #E9DAB9;
}
.panel-body.colors_cat ul#cat_color li a.col-2 {
  background: none repeat scroll 0 0 #000;
}
.panel-body.colors_cat ul#cat_color li a.col-3 {
  background: none repeat scroll 0 0 #1F72BE;
}
.panel-body.colors_cat ul#cat_color li a.col-4 {
  background: none repeat scroll 0 0 #DE9934;
}
.panel-body.colors_cat ul#cat_color li a.col-5 {
  background: none repeat scroll 0 0 #20C0CC;
}
.panel-body.colors_cat ul#cat_color li a.col-6 {
  background: none repeat scroll 0 0 #F57339;
}
.panel-body.colors_cat ul#cat_color li a.col-7 {
  background: none repeat scroll 0 0 #6224E1;
}
.panel-body.colors_cat ul#cat_color li a.col-8 {
  background: none repeat scroll 0 0 #DD3334;
}
.panel-body.colors_cat ul#cat_color li a.col-9 {
  background: none repeat scroll 0 0 #fff;
}
.panel-body.colors_cat ul#cat_color li a.col-10 {
  background: none repeat scroll 0 0 #A2B646;
}
.cat_filter_box p label {
  background: none repeat scroll 0 0 #0F79AB;
color: #fff;
float: left;
font-size: 12px;
font-weight: 700;
margin-right: 5%;
padding: 4px 18px;
text-transform: uppercase;
width: 31%;
}
.cat_filter_box {
 margin-top: 35px;
}
.cat_filter_box  input {
  color: #0F79AB;
float: left;
font-size: 12px;
margin-top: 5px;
text-align: right;
width: 64%;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
background: none repeat scroll 0 0 #fff;
border: 3px solid #0F79AB;
border-radius: 50%;
color: #555555;
font-weight: normal;
top: -8px;
}
.ui-slider .ui-slider-handle {
  cursor: default;
height: 1.4em;
position: absolute;
width: 1.4em;
z-index: 2;
}
.ui-slider-handle.ui-state-default.ui-corner-all::after {
  background: none repeat scroll 0 0 #000;
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 5px;
  position: absolute;
  top: 5px;
  width: 6px;
}
.ui-widget-content {
  background: none repeat scroll 0 0 #eceef2;
  border: 0 solid #aaaaaa;
  color: #222222;
  top: 0;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
  border-radius: 0;
}
.ui-slider-horizontal {
  height: 0.4em;
}
.ui-widget-header {
  background: none repeat scroll 0 0 #0F79AB;
  border: 0 solid #aaaaaa;
  color: #fff;
  font-weight: bold;
}
.colors_cat > img {
  margin-bottom: 19px;
  margin-top: -7px;
}
.panel-body > ul#cat_size {
  list-style: outside none none;
  margin: -13px 0 0;
  padding: 0;
}
.panel-body > ul#cat_size li {
  float: left;
margin-right: 8px;
margin-bottom: 8px;
}
.panel-body > ul#cat_size li a {
 border: 1px solid #ddd;
color: #212121;
display: block;
font-size: 12px;
height: 30px;
padding: 5px 3px 3px;
text-align: center;
text-transform: uppercase;
width: 40px;
}
.panel-body > ul#cat_size li a:hover {
 border: 2px solid #000;
color: #000;
text-decoration:none;
}
.main_cat_item {
  margin-bottom: 29px;
}
.main_cat_item .item {
  position: relative;
}
.main_cat_item .tr-add-cart > ul {
  background:none repeat scroll 0 0 rgba(255, 255, 255, 0.9);
  list-style: outside none none;
  margin: 158px 0 0 35px;
  padding: 0;
}
.pagi_line {
  border-top: 2px solid #e8eaea;
margin-top: 30px;
position: relative;
}
.pagi_line::after {
  border-top: 2px solid #0F79AB;
content: "";
left: 38.5%;
position: absolute;
top: -2px;
width: 30px;
}
.cat-2 .pagi_line::after {
  border-top: 2px solid #0F79AB;
  content: "";
  left: 41%;
  position: absolute;
  top: -2px;
  width: 30px;
}
.blog_page_area .pagi_line::after {
  border-top: 2px solid #0F79AB;
  content: "";
  left: 37%;
  position: absolute;
  top: -2px;
  width: 30px;
}
.bootstrap-select > .btn {
  border-radius: 0;
  padding-right: 25px;
  width: 100%;
  border-color:#eee;
}
.pagi_ul {
  margin-top: 20px;
}
.pagi_ul > ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.pagi_ul > ul li {
  display: inline;
}
.pagi_ul > ul li a {
  color: #333333;
display: inline-block;
font-size: 13px;
padding: 0 18px;
text-transform: uppercase;
}

.pagi_ul > ul li a:hover {
  color: #0F79AB;
  text-decoration:none;
}


/* ============================================
10. Cart Page CSS
===============================================*/
.main_cart_area {
  background: none repeat scroll 0 0 #f7f8f9;
border-top: 1px solid #eeeeee;
padding: 80px 0;
}
.cart_heading {
background: none repeat scroll 0 0 #f2f3f4;
overflow: hidden;
padding: 15px 20px;
}
.cart_heading .h_item1 {
  float: left;
width: 41%;
}
.cart_heading .h_item2 {
  float: left;
width: 18%;
}
.cart_heading .h_item3 {
  float: left;
width: 24%;
}
.cart_heading .h_item4 {
  float: left;
width: 17%;
}
.h_item1 > p, .h_item2 > p, .h_item3 > p, .h_item4 > p {
  color: #232323;
  font-size: 13px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.cart_item {
 border-bottom: 1px solid #e8eaec;
overflow: hidden;
padding: 32px 0;
}
.cart_item .cart_item_img {
  float: left;
width: 41%;
}
.cart_item .cart_price {
  float: left;
width: 18%;
}
.cart_item .cart_quantity {
  float: left;
width: 24%;
}
.cart_item .cart_total {
  float: left;
width: 17%;
}
.cart_item_img > img {
  float: left;
  margin-right: 20px;
}
.cart_item_img > p {
  color: #333333;
  font-size: 12px;
  margin-bottom: 0;
  margin-top: 23px;
  text-transform: uppercase;
}
.cart_price > p, .cart_quantity > p, .cart_total > p {
  color: #333333;
  font-size: 12px;
  margin-bottom: 0;
  margin-top: 31px;
  text-transform: uppercase;
}
.cart_quantity ul {
list-style: outside none none;
margin: 29px 0 0;
padding: 0;
}
.cart_quantity ul li {
  float: left;
margin-right: 10px;
}
.cart_quantity ul li a {
background: none repeat scroll 0 0 #fff;
border: 1px solid #e8eaec;
color: #333;
display: block;
font-size: 12px;
height: 23px;
padding-top: 3px;
text-align: center;
width: 23px;
}
.cart_quantity ul li a:hover {
  border: 1px solid #0F79AB;
  text-decoration:none;
}
#home-accordion .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  margin-bottom: 15px;
width: 100%;
}
#home-accordion .btn-default {
  background-color: #fff;
  border-color: #eee;
  border-radius: 0;
  color: #999;
  font-size: 12px;
  text-transform: uppercase;
}
#home-accordion .btn-default:hover, #home-accordion .btn-default:focus, #home-accordion .btn-default.focus, .btn-default:active, #home-accordion .btn-default.active, #home-accordion .open > .dropdown-toggle.btn-default {
  background-color: #fff;
  border-color: #eee;
  border-radius: 0;
  color: #999;
}
#home-accordion .panel-body > input[type="text"] {
  border: 1px solid #eee;
  font-size: 12px;
  margin-bottom: 20px;
  padding: 5px 11px;
  text-transform: uppercase;
  width: 100%;
}
#home-accordion .panel-body > input[type="submit"] {
  background: none repeat scroll 0 0 #fff;
  border: 2px solid #0F79AB;
  color: #666;
  font-size: 11px;
  margin-bottom: 12px;
  padding: 4px 5px;
  text-transform: uppercase;
  width: 57%;
}
#home-accordion .panel-body > input[type="submit"]:hover {
 background: none repeat scroll 0 0 #0F79AB;
  border: 2px solid #0F79AB;
  color: #fff;
}
.c_total_item.sp_single_item {
  border-top: 1px solid #f4f5f5;
  border-bottom: 0px solid #f4f5f5;
  margin-bottom: 0;
  margin-top: 11px;
  overflow: hidden;
  padding: 10px 0 7px;
}
#home-accordion .panel-body.cart_p_body {
  border-bottom: 0 solid #ddd;
}
.main_cart_right .product_form_total a.cart_update {
  background: none repeat scroll 0 0 #0F79AB;
  border: 2px solid #0F79AB;
  color: #fff;
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 7px;
  text-align: center;
  text-transform: uppercase;
}
.main_cart_right .product_form_total a.cart_update:hover {
  background: none repeat scroll 0 0 #f7f8f9;
  border: 2px solid #0F79AB;
  color: #222;
  text-decoration:none;
}
.main_cart_area .product_form_total > input[type="submit"], .coupon_box > input[type=submit] {
  background: none repeat scroll 0 0 #f7f8f9;
}
.main_cart_area .product_form_total > input[type="submit"]:hover, .coupon_box > input[type="submit"]:hover {
  background: none repeat scroll 0 0 #0F79AB;
  border: 2px solid #0F79AB;
  color: #fff;
}
.main_cart_area .main_cart_right {
  margin-top: -20px;
}
.coupon_box {
  margin-top: 40px;
}
.coupon_box > input[type="text"] {
  background: none repeat scroll 0 0 #fff;
  border: 1px solid #eee;
  color: #aaaaaa;
  font-size: 12px;
  margin-right: 10px;
  padding: 7px 10px;
  text-transform: uppercase;
}
.coupon_box > input[type="submit"] {
  padding: 5px;
  width: 155px;
}
.main_cart_area #home-accordion .panel-default .panel-heading {
  padding: 25px 20px 10px;
}



/* ============================================
11. product detail page CSS
===============================================*/
.gray_tshirt_area {background: none repeat scroll 0 0 #f7f8f9;
padding-top: 80px;
}
.gray_tshirt{border-bottom: 1px solid #eeeeef;
overflow: hidden;
padding-bottom: 60px;}
.single_p_image {
overflow: hidden;
position: relative;
}
.single_product_image_tab .nav.nav-tabs.product_detail_zoom_tab {
  border-bottom: 0 solid #ddd;
}
.product_detail_zoom_tab > li {
  float: none;
  margin-bottom: -5px;
}
.single_product_image_tab {
  background: #f3f4f5 none repeat scroll 0 0;
  position: relative;
}
.single_product_image_tab .nav.nav-tabs.product_detail_zoom_tab {
  border-bottom: 0 solid #ddd;
  left: 27px;
  position: absolute;
  top: 19px;
  z-index: 2;
}
.single_p_image > a {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 2;
}
.single_p_image > img {
  margin-left: 130px;
} 
.detail_heading_left h3 {
  color: #232323;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}
.old_price_gray p {
  color: #0F79AB;
  font-size: 18px;
  font-weight: 700;
}
.old_price_gray {
  float: left;
  margin-right: 17px;
  overflow: hidden;
  width: 60px;
}
.new_price_gray {
float: left;
overflow: hidden;
width: 70px;
margin-top: 3px;
}
.new_price_gray del {
  color: #aaaaaa;
  font-size: 15px;
}
.detail_heading_right ul {
list-style: outside none none;
margin: 0;
overflow: hidden;
padding: 0;
text-align: right;
}
.detail_heading_right ul li{
display: inline;
}
.detail_heading_right ul li .red{
color: #0F79AB;
}
.detail_heading_right ul li a{
color: #aaaaaa;
font-size: 15px;
padding: 2px;
}
.detail_heading_right ul li a:hover{
text-decoration:none;
}
.detail_heading_left {
  float: left;
  overflow: hidden;
  width: 65%;
}
.detail_heading_right {
  float: left;
  overflow: hidden;
  width: 35%;
}
.detail_heading_right > p {
 color: #777777;
font-size: 12px;
margin-top: 10px;
text-align: right;}
.product_detail_heading {
  border-bottom: 1px solid #eeeeef;
  overflow: hidden;
}
.product_page_tab_area {
  background: none repeat scroll 0 0 #f7f8f9;
}
.product_page_tab {
border-bottom: 1px solid #eeeeef;
overflow: hidden;
padding: 50px 0;
}
.tab-product {
  float: left;
  margin-right: 3%;
  width: 20%;
}
.tab-p-details {
  float: left;
  width: 77%;
}
ul.nav.nav-tabs.tab-product li{
border: 1px solid #ececec;
width: 100%;
}
ul.nav.nav-tabs.tab-product li.active{
border-left: 4px solid #0F79AB;
border-right: 0 solid #ececec;
}
ul.nav.nav-tabs.tab-product li.active a{
background-color:#F7F8F9;

}
ul.nav.nav-tabs.tab-product li a {
background-color: #fff;
color: #232323;
font-size: 12px;
padding: 20px;
text-transform: uppercase;
}
.tab-p-details h2 {
  color: #212121;
  font-size: 16px;
}
.tab-p-details .multi_line {
  margin-left: 0px;
}
.tab-p-details p {
  color: #888888;
}
h3.product {
 color: #232323;
font-size: 18px;
font-weight: 700;
position: relative;
text-transform: uppercase;
top: 53px;
}
.main_category_area.product_page_caro {
background: none repeat scroll 0 0 #f7f8f9;
margin-bottom: -42px;
padding-bottom: 100px;
padding-top: 60px;
}

.panel-group.product_accordion {
  padding-top: 20px;
  overflow: hidden;
}
.panel-title.product_accordion_head{
  color: #333333;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}
 .panel-body.product_accordion_head h5{ color: #333333;
  font-size: 15px;
  font-weight: 400;}
.panel-title.product_accordion_head a {display: block;
text-decoration: none;}
.panel.panel-default.product_default{
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  border: medium none;
}
.panel-heading.product_accordion_heading {background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
border-bottom: 1px solid #eee;}
.panel-body.product_ac_body ul {
list-style: outside none none;
margin: 0 0 0 77px;
padding: 0;
}
.panel-body.product_ac_body ul li {
list-style-image: url(/img/blog_li.png);
margin-bottom: 10px;
}
.panel-body.product_ac_body ul li a{
color: #777777;
font-size: 15px;
padding: 5px;
}
.panel-body.product_ac_body ul li a:hover{
 text-decoration:none;
}
.panel-body.product_ac_body p, .panel-body.fit {
  color: #777777;
  font-size: 15px;
}
.panel-body.product_ac_body {
  padding-bottom: 23px;
}
.color_size_detail ul{margin:0;padding:0;list-style:none}
.color_size_detail ul li {
border: 2px solid #efefef;
display: inline-block;
margin-right: 6px;
background: #fff;
}
.color_size_detail ul li a {
color: #232323;
display: inline-block;
font-size: 12px;
height: 30px;
padding-top: 5px;
text-align: center;
text-transform: uppercase;
width: 38px;
}
.color_size_detail ul li a:hover{text-decoration:none}
.color_size_detail ul li:hover{border: 2px solid #000;}

.color_detail {
  float: left;
  overflow: hidden;
  width: 70%;
}
.color_heading {
  float: left;
  overflow: hidden;
  width: 30%;
}
.single_color {
  margin-bottom: 30px;
overflow: hidden;
}

.size_down {
  float: left;
  margin-right: 3%;
  overflow: hidden;
  width: 23%;
}
.size_cart > a {
  color: #232323;
  font-size: 11px;
  text-transform: uppercase;
}
.size_cart > a:hover {
  text-decoration:none;
}
.size_cart:hover {
background: none repeat scroll 0 0 #F7F8F9;
border: 2px solid #0F79AB;
}
.size_cart {
border: 2px solid #efefef;
float: left;
margin-right: 4%;
overflow: hidden;
padding: 5px 20px;
text-align: center;
width: 32%;
background: #fff;
}
.size_heart {
  background: none repeat scroll 0 0 #fff;
  border: 2px solid #efefef;
  float: left;
  margin-right: 4%;
  overflow: hidden;
  padding: 5px;
  text-align: center;
  width: 12%;
}
.size_heart:hover {
background: none repeat scroll 0 0 #F7F8F9;
border: 2px solid #0F79AB;
}
.color_detail_img ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.color_detail_img ul li{
display: inline;
}
.color_detail_img ul li a{
display: inline-block;
padding-right: 5px;
}
.panel.panel-default.product_default {
  box-shadow: none;
}
#home-accordion-single.panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 0 solid #ddd;
}
.product_page_caro .multi_line {
  margin: -7px auto 45px 0;
  position: relative;
  top: 54px;
}
#owl-example-single {
  padding-top: 70px;
}
#owl-example-single .owl-prev {
  left: 92%;
  position: absolute;
  top: -27px;
  width: 50px;
}
#owl-example-single .owl-next {
  left: 94%;
position: absolute;
top: -27px;
width: 50px;
}
#owl-example-single i {
  color: #000;
  font-size: 22px;
}
#owl-example-single:hover i {
  color: #0F79AB;
  font-size: 22px;
}
.product-box {
  border-top: 1px solid #eeeeef;
}
.product_page_caro {
  position: relative;
  top: -42px;
}
.review_heading_right ul {
list-style: outside none none;
margin: 0;
padding: 0;
text-align: right;
}
.review_heading_right ul li{
display:inline;
}
.review_heading_right ul li a {
  color: #0F79AB;
  padding: 1px 2px;
}
.review_heading_right ul li a:hover{
 text-decoration:none;
}
.review_heading_left h2 span {
  margin-right: 8px;
  text-transform: uppercase;
}
.review_comments {
float: left;
margin-right: 5%;
width: 55%;
}
.review_heading_left {
float: left;
width: 77%;
}
.review_heading_left h2 span {
  font-size: 16px;
}
.review_heading_right {
  float: left;
  width: 23%;
}
.Review_input {
  float: left;
  width: 40%;
}
.review_input_heading h3{
font-size:16px;
color:#212121;
font-weight:700;
text-transform:uppercase;
}
.review_comment_input input[type="text"] {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #d3d3d3;
  color: #333;
  font-size: 12px;
  height: 30px;
  margin-bottom: 10px;
  padding: 0 10px;
  text-transform: uppercase;
  width: 100%;
}
.review_comment_input textarea {
  background: transparent none repeat scroll 0 0;
  border: 1px solid #d3d3d3;
  color: #333;
  font-size: 12px;
  margin-bottom: 20px;
  width: 100%;
  text-transform: uppercase;
  padding: 0 10px;
  height: 135px;
}
.single_review_text ul{
list-style: outside none none;
margin: 0 0 10px;
padding: 0;
}
.single_review_text ul li{
display:inline;
}
.single_review_text ul li a{
  color: #0F79AB;
  padding: 1px 2px;
}
.single_review_text ul li a:hover{
 text-decoration:none;
}
.review_heading {
  overflow: hidden;
}
.single_review_img img {
  border-radius: 50%;
}
.single_review_text h4 {
color: #000;
font-size: 16px;
font-weight: 700;
margin-bottom: 7px;
text-transform: uppercase;
}
.single_review_img {
  float: left;
  margin-right: 1%;
  width: 17%;
}
.single_review_text {
  float: left;
  width: 82%;
}
.review_italic {
  color: #64908a;
  font-family: Cousine;
  font-style: italic;
  letter-spacing: 2px;
}
.review_italic span {
  color: #64908a;
}
.review_comment_input input[type="submit"] {
background: transparent none repeat scroll 0 0;
border: 2px solid #0F79AB;
color: #000;
font-size: 13px;
font-weight: 700;
height: 34px;
text-transform: uppercase;
width: 37%;
}
.review_comment_input input[type="submit"]:hover {
  background: #0F79AB none repeat scroll 0 0;
  color:#fff;
}
.single_review_text {
  float: left;
  margin-bottom: 40px;
  width: 82%;
}
.single_review_text.last {
  margin-bottom: 0;
}
.size_down input[type=number] {
	-moz-appearance: none;
	border: 1px solid #ddd;
	margin-top: 1px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-top: 5px;
	width: 100%;
	color:#000;
	cursor: pointer;
	display: inline-block;
}

.size_down input[type=number]:hover {
background: none repeat scroll 0 0 #F7F8F9;
border: 2px solid #0F79AB;
}
input[type="number"].hotfix::-webkit-outer-spin-button,
input[type="number"].hotfix::-webkit-inner-spin-button {
  height:auto;
}

/* ============================================
12. Mobile menu CSS
===============================================*/
.only-for-mobile {
  display: none !important;
}
.mobi-menu {
  display: none;
}

#cssmenu {
  display: none;
  transition: all 0.3s ease-in-out 0s;
}
#cssmenu {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background: none repeat scroll 0 0 #f5f5f5;
  border-color: #dddddd #dddddd -moz-use-text-color;
  border-image: none;
  border-style: solid solid none;
  border-width: 1px 1px medium;
  color: #ffffff;
  font-family: Helvetica,Arial,sans-serif;
  margin: 50px auto;
  max-width: 727px;
  width: 100%;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
  border: 0 none;
  box-sizing: border-box;
  display: block;
  line-height: 1;
  list-style: outside none none;
  margin: 0;
  padding: 0;
  position: relative;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
  border: 0 none;
  box-sizing: border-box;
  display: block;
  line-height: 1;
  list-style: outside none none;
  margin: 0;
  padding: 0;
  position: relative;
}
#cssmenu > ul > li > a {
  background: none repeat scroll 0 0 #fff;
  border-bottom: 1px solid #dddddd;
  color: #565656;
  cursor: pointer;
  font-family: Cousine,Arial;
  font-size: 14px;
  font-weight: bold;
  padding: 15px 40px;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 2;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
  border: 0 none;
  box-sizing: border-box;
  display: block;
  line-height: 1;
  list-style: outside none none;
  margin: 0;
  padding: 0;
  position: relative;
}
.holder {
  height: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
}
.holder::after {
  background: url(/img/plus.png) no-repeat scroll 50% 50% transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  display: block;
  height: 22px;
  position: absolute;
  right: 22px;
  top: 11px;
  width: 22px;
  z-index: 10;
}
#cssmenu > ul > li.active > a > span::after, #cssmenu > ul > li.open > a > span::after {
  background: url(/img/minus.png) no-repeat scroll 50% 50% rgba(0, 0, 0, 0);
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  display: block;
  height: 22px;
  position: absolute;
  right: 40px;
  top: 11px;
  width: 22px;
  z-index: 10;
}
#cssmenu ul ul {
  display: none;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
  border: 0 none;
  box-sizing: border-box;
  display: block;
  line-height: 1;
  list-style: outside none none;
  margin: 0;
  padding: 0;
  position: relative;
}
#cssmenu ul ul li:first-child > a {
  box-shadow: none;
}
#cssmenu ul ul li a {
  background: none repeat scroll 0 0 #eeeeee;
  border-bottom: 2px solid #fff;
  color: #666666;
  cursor: pointer;
  font-family: Cousine,Arial;
  font-size: 14px;
  font-weight: bold;
  padding: 15px 40px;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 1;
}


/* ============================================
13. xTra CSS
===============================================*/
.item-img img {
  width: 100%;
}
.t_to_b_slider_area {
  background: none repeat scroll 0 0 #f7f8f9;
  padding: 90px 0;
}
.single_t_to_b_slider .multi_line {
  margin-left: 0;
}
.t_to_b_img {
float: left;
margin-right: 20px;
overflow: hidden;
width: 34%;
}
.t_to_b_content {
  overflow: hidden;
  margin-bottom: 15px;
}
.single_t_to_b {
background: none repeat scroll 0 0 #fff;
padding: 40px 20px 30px;
margin-top: 40px;
}
.t_to_b_text p {
  color: #333333;
  font-size: 12px;
  text-transform: uppercase;
}
.t_to_b_text a:hover p {
  color: #0F79AB;
  
}
.t_to_b_text a:hover {
  text-decoration:none;
  color: #0F79AB;
}
.t_to_b_text {
  float: left;
  overflow: hidden;
  width: 59%;
}
.t_to_b_dollr {
 float: left;
overflow: hidden;
width: 31%;
}
.t_to_b_del {
  float: left;
  overflow: hidden;
  width: 48%;
}
.t_to_b_dollr span {
  color: #0F79AB;
  font-size: 12px;
}
.t_to_b_del > del {
  color: #999999;
  font-size: 12px;
}
.single_t_to_b_slider h3 {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}
.single_t_to_b .bx-wrapper {
  margin: 0 auto 7px;
  padding: 0;
  position: relative;
}
.single_t_to_b .bx-wrapper .bx-viewport {
  background: inherit;
  border: 0 solid #fff;
  box-shadow: 0 0 0 #ccc;
  left: 0;
  transform: translateZ(0px);
}
.single_t_to_b .bx-wrapper .bx-pager {
  display: none;
}
.single_t_to_b .bx-wrapper .bx-controls-direction a.bx-next {
  right: -32px;
  top: -104px;
}
.single_t_to_b .bx-wrapper .bx-controls-direction a.bx-prev {
  right: -21px;
  top: -104px;
}
.checkout_form  p, .shipping_form p {
  color: #212121;
font-size: 12px;
margin-bottom: 7px;
text-transform: uppercase;
}


/* ============================================
14. IE CSS
===============================================*/
.ie8 .currency-dropdown {
  display:none;
  opacity:1;
}
.ie8 .currency-dropdown:hover {
  display:block;
  opacity:1;
}

.ie8 nav.mainmenu {
  position: relative;
}
.ie8 nav.mainmenu:after {
	border-top-width: 0px;
	border-top-style: solid;
  border-top-color: #fff;
}
.ie8 .mainmenu ul#nav li a {
  border-top: 0px solid #fff;
}
.ie8 .mainmenu .mainmenu ul#nav li a:hover {
  border-top: 0px solid #212121;
}
.ie8 .mainmenu .mainmenu .mainmenu ul#nav li.current-page-item a {
  border-top: 0px solid #212121;
}
.ie8 .tr-add-cart {
  display: none;
  background:#fff;
}
.ie8 .item:hover .tr-add-cart {
  display: block;
  background:#fff;
  opacity:.4;
}
.ie8 .item .tr-add-cart ul{
background-color:#fff;
filter: none !important;
}
.ie8 .trending_box .nav-tabs.nav {
width:33%;
}
.ie8 .view_post {
width:126px;
}
.ie8 .owl-theme .owl-controls .owl-buttons div {
  background: none;
}
.ie8 .owl-item {
 width:228px !important;
}
.ie8 .owl-carousel#owl-example .owl-wrapper-outer {
left:0px;
}
.ie8 .owl-carousel .owl-next {
right:8px;
}
.ie8 .tr-add-cart ul li a {
font-size:13px;
}
.ie8 .breadcumb_top_area {
  background-image: url(/img/breadcumb_bg.jpg);
  background-repeat:no-repeat;
}
.ie8 .contact_banner_area {
  background-image: url(/img/contact_bg.jpg);
  background-repeat:no-repeat;
}
.ie8 .blog_slider_area {
  background: url(/img/contact_bg.jpg);
  background-repeat:no-repeat;
}
.ie8 .exclusive_area {
  background: url(/img/x-m.jpg);
  background-repeat:no-repeat;
}
.ie8 .error_slider_area {
  background: url(/img/404_slider.jpg);
  background-repeat:no-repeat;
}
.ie8 .breadcumb_top_area:after, .ie8 .error_slider_area:after, .ie8 .blog_slider_area:after, .ie8 .contact_banner_area:after {
  background-color:#000;
  opacity:0.5;
  filter: none !important;
}
/* Medium Layout: 1280px. */

@media only screen and (min-width: 992px) and (max-width: 1280px) {

 
.main_cat_item .tr-add-cart > ul {
  margin: 158px 0 0 12px;
}
.carousel-control.left {
  left: 46%;
}
 .carousel-control.right {
  right: 46%;
} 
.trending_box .nav.nav-tabs {
  width: 37%;
}
.fresh_blog_text {
  margin-right: 10px;
}
ul.wid_social li a {
  height: 36px;
  padding: 13px 5px 5px 15px;
  width: 36px;
}
ul.wid_social li {
  margin-right: 4px;
}
.client_box {
  width: 27%;
}
.size_up img {
  margin-left: -1px;
  margin-top: 1px;
}
.size_cart {
  padding: 5px 10px;
}
.blog_search i {
  margin-left: -25px;
}
.blog_search input[type="text"] {
  width: 248px;
}
.recent_post_img {
  width: 45%;
}
.recent_post_text {
  margin-right: 7px;
}
#instrigram li {
  margin-bottom: 13px;
  margin-left: 12px;
}
.comment_text {
  width: 80%;
}
.nav_left i {
  margin-left: 45px;
}
.nav_right a {
  padding-left: 19px;
}
.c_main_item p, .c_single_item p, .c_total_item p, .c_payment p {
  font-size: 10px;
}
.filter_box_right .dropdown-menu {
  left: 64%;
}
.panel-body.colors_cat ul#cat_color li {
  margin-right: 2px;
}
.panel-body.colors_cat ul#cat_color li a {
  height: 34px;
  width: 34px;
}
.cat_filter_box p label {
  padding: 4px 12px;
}
.panel-body ul#cat_size {
  margin: -13px 17px 0;
}
#headingOne .panel-title {
  font-size: 11px;
}
#headingTwo .panel-title a {
  font-size: 13px;
}
#home-accordion .panel-body > input[type="submit"] {
  width: 67%;
}
.cat_mega_menu {
  width: 940px;
}
.cat_left {
  margin-right: 56px;
}
.cat_middle {
  margin-right: 54px;
}
.ex_left_text {
  left: 163px;
  top: 122px;
}
 .ex_left_text > h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}   
.ex_left_text > h2 {
  font-size: 32px;
}
.ex_left_text p {
  font-size: 12px;
}
.ex_left_text.ex_left_right {
  left: 339px;
}
.ex_left_right h6 {
  font-size: 13px;
}
.ex_left_text > h2 {
  font-size: 27px;
}
.fa.fa-shopping-cart.tr_cart {
  left: -10px;
}
.fa.fa-search.tr_search {
  right: -2px;
}



}

/* Tablet Layout: 768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
 
 /* new. */
 .review_comments {
margin-bottom: 30px;
width:100%
}
 .Review_input {
  width: 98%;
}
 /* end new. */
.trending_box .nav.nav-tabs {
  width: 50%;
}
.carousel-control.left {
  left: 45%;
  top: -21%;
}
.carousel-control.right {
  right: 45%;
  top: -21%;
}
.fresh_blog_text span {
  font-size: 26px;
}
.fresh_blog_text h2 {
  font-size: 30px;
}
.bootstrap-select > .btn {
  width: 90%;
}
.months p {
  font-size: 11px;
}
.fresh_blog_bottom_text h4 {
  font-size: 10px;
}
.fresh_blog_text {
  margin-right: 10px;
  width: 51%;
}
.fresh_blog_bottom_text > p {
  font-size: 11px;
  }
.fresh_blog_img {
  width: 46%;
}
#testi_carosel .item > p {
  font-size: 16px;
  width: 85%;
}
.client_box {
  width: 35%;
}
.branding_box_heading > h2 {
  width: 14%;
}
.dotted_line {
  width: 79%;
}
.footer_top_left > a {
  font-size: 12px;
  margin-right: 7px;
}
.footer_top_left > input[type="text"] {
  width: 34%;
}
.footer_top_left > input[type="submit"] {
  font-size: 12px;
}
ul.wid_social li {
  margin-right: 5px;
}
ul.wid_social li a {
  height: 22px;
  padding: 5px 5px 11px;
  width: 22px;
}
#branding_caro .owl-item img {
  display: block;
  margin: 0 auto;
}
.trending_box .owl-carousel::before {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
}
.trending_box .owl-carousel::after {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
}
#owl-example.owl-carousel .owl-wrapper-outer {
  left: 0;
  width: 100%;
}
#owl-example.owl-carousel .owl-next, #owl-example-two.owl-carousel .owl-next, #owl-example-three.owl-carousel .owl-next, #owl-example-four.owl-carousel .owl-next {
  position: absolute;
  right: 19px;
}
.nav_left a {
  font-size: 14px;
}
.nav_left i {
  margin-left: 12px;
}
.cat_mega_menu {
  width: 719px;
}
.cat_left {
  margin-right: 25px;
  width: 18%;
}
.cat_middle {
  margin-right: 13px;
  width: 18%;
}
.cat_middle_right {
  margin-right: 10px;
  width: 15%;
}
.cat_img {
  margin-right: 0;
  width: 41%;
}
.nav_right a {
  font-size: 12px;
  padding-left: 9px;
}
.mainmenu ul#nav li {
  padding: 0px 18px;
}
.mainmenu ul#nav li ul#sub-menu {
  width: 260px;
}
.promo_text {
  left: 21px;
  top: 31px;
}
.promo_text > h5, .promo_text_bottom > h5 {
  font-size: 18px;
}
.promo_text_bottom {
  right: 19px;
}
.promo_text_bottom.promo_text_b {
  right: 18px;
  top: 33px;
}
.promo_text.promo_text_t {
  top: 54px;
}

.trending_box .nav.nav-tabs {
  width: 50%;
}
.carousel-control.left {
  left: 45%;
  top: -21%;
}
.carousel-control.right {
  right: 45%;
  top: -21%;
}
.fresh_blog_text span {
  font-size: 26px;
}
.fresh_blog_text h2 {
  font-size: 30px;
}
.months p {
  font-size: 11px;
}
.fresh_blog_bottom_text h4 {
  font-size: 10px;
}
.fresh_blog_text {
  margin-right: 10px;
  width: 51%;
}
.fresh_blog_bottom_text > p {
  font-size: 11px;
  }
.fresh_blog_img {
  width: 46%;
}
#testi_carosel .item > p {
  font-size: 16px;
  width: 85%;
}
.client_box {
  width: 35%;
}
.branding_box_heading > h2 {
  width: 14%;
}
.dotted_line {
  width: 79%;
}
.footer_top_left > a {
  font-size: 12px;
  margin-right: 7px;
}
.footer_top_left > input[type="text"] {
  width: 34%;
}
.footer_top_left > input[type="submit"] {
  font-size: 12px;
}
ul.wid_social li {
  margin-right: 5px;
}
ul.wid_social li a {
  height: 22px;
  padding: 5px 5px 11px;
  width: 22px;
}
#branding_caro .owl-item img {
  display: block;
  margin: 0 auto;
}
.trending_box .owl-carousel::before {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
}
.trending_box .owl-carousel::after {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
}
#owl-example.owl-carousel .owl-wrapper-outer {
  left: 0;
  width: 100%;
}
#owl-example.owl-carousel .owl-next, #owl-example-two.owl-carousel .owl-next, #owl-example-three.owl-carousel .owl-next, #owl-example-four.owl-carousel .owl-next {
  position: absolute;
  right: 19px;
}
.nav_left a {
  font-size: 14px;
}
.nav_left i {
  margin-left: 12px;
}
.cat_mega_menu {
  width: 719px;
}
.cat_left {
  margin-right: 25px;
  width: 18%;
}
.cat_middle {
  margin-right: 13px;
  width: 18%;
}
.cat_middle_right {
  margin-right: 10px;
  width: 15%;
}
.cat_img {
  margin-right: 0;
  width: 41%;
}
.nav_right a {
  font-size: 12px;
  padding-left: 9px;
}
.mainmenu ul#nav li {
  padding: 0px 18px;
}
.mainmenu ul#nav li ul#sub-menu {
  width: 260px;
}
.promo_text {
  left: 21px;
  top: 31px;
}
.promo_text > h5, .promo_text_bottom > h5 {
  font-size: 18px;
}
.promo_text_bottom {
  right: 19px;
}
.promo_text_bottom.promo_text_b {
  right: 18px;
  top: 33px;
}
.promo_text.promo_text_t {
  top: 54px;
}
.blog_page_sidebar {
  margin-left: 5px;
}
.blog_search input[type="text"] {
  width: 210px;
}
.log_li_img {
  margin-top: -6px;
}
.recent_post_text {
  margin-right: 5px;
}
.recent_post_text h3 {
  font-size: 12px;
  line-height: 20px;
}
.recent_post_text > p {
  font-size: 11px;
}
.recent_post_img {
  width: 45%;
}
#instrigram li {
  width: 26.8%;
}
.comment_text {
  padding: 27px 11px 12px 20px;
  width: 80%;
}
ul#single_blog_nav {
  margin-left: 50px;
}
.c_main_item p, .c_single_item p, .c_total_item p, .c_payment p {
  font-size: 10px;;
}
.product_form_total {
  padding: 12px;
}
#home-accordion .panel-title {
  font-size: 12px;
}
.cart_item_img p {
  font-size: 10px;
}
.single_p_image > img {
  margin-left: 117px;
  width: 62%;
}
.detail_heading_left h3 {
  font-size: 18px;
}
.panel-body.product_ac_body ul {
  margin: 0 0 0 35px;
}
.color_size_detail ul li a {
  height: 28px;
  width: 34px;
}
.color_size_detail ul li {
  margin-right: 3px;
}
.size_num {
  height: 27px;
}
.size_up {
  overflow: hidden;
}
.size_cart {
  padding: 3px;
  width: 34%;
}
.size_cart a {
  font-size: 10px;
}
.size_heart {
  padding: 2px;
}
.cat_filter_box p label {
  padding: 4px 13px;
}
.panel-body.colors_cat ul#cat_color li {
  margin-right: 2px;
}
.panel-body ul#cat_size {
  margin: -13px 15px 0;
 }
.panel-body ul#cat_size li {
  margin-right: 13px;
}
.tr-add-cart ul li a {
  font-size: 13px;
}
.filter_box_right .dropdown-menu {
  left: 30%;
}
.ex_left_text {
  margin-left: -38px;
  margin-top: 126px;
  padding-bottom: 41px;
}
.ex_left_text > h2 {
  font-size: 30px;
  margin-bottom: 10px;
}
.ex_left_text > h5 {
  font-size: 14px;
  margin-bottom: 10px;
}
.ex_left_text > p {
  font-size: 12px;
  margin-bottom: 30px;
}
.ex_left_text.ex_left_right {
  margin-left: 165px;
  margin-top: 111px;
  padding-bottom: 74px;
}
.ex_left_right h6 {
  font-size: 12px;
}
.ex_left_text > h2 {
  font-size: 20px;
}
.ex_left_text.ex_left_right > p {
  font-size: 11px;
}

.t_to_b_img {
  margin-right: 9px;
  width: 35%;
}
.t_to_b_text {
  width: 53%;
}
.t_to_b_text p {
  font-size: 10px;
}
.t_to_b_dollr {
  width: 52%;
}
.t_to_b_dollr span {
  font-size: 10px;
}
.t_to_b_del > del {
  font-size: 10px;
}
.t_to_b_del {
  width: 48%;
}
.ex_left {
  height: 165px;
}




}

/* Mobile Layout: 320px. */

@media only screen and (max-width: 767px) {
 
 /* new. */
 .review_comments {
margin-bottom: 30px;
width:100%
}
 .Review_input {
  width: 98%;
}
.review_heading_left {
  width: 62%;
}
.review_heading_left h2 {
  font-size: 15px;
}
.review_heading_right {
  width: 38%;
}
.review_comment_input input[type="submit"] {
  width: 45%;
}
 /* end new. */
.nav_left {
  display: none;
}
.nav_center {
  display: none;
}
.nav_right {
  display: none;
}
 .ofm {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 100000000;
}
.m_nav {
  cursor: pointer;
}
.ofm li {
  color: #fff;
  float: left;
  font-family: cabin;
  font-size: 16px;
  font-weight: bold;
  list-style: outside none none;
  padding: 13px 0;
  text-transform: uppercase;
  width: 50%;
}
.ofm li {
  text-align: center;
  width: 100%;
}
.ofm li i {
  font-size: 17px;
}
.mobi-menu {
  left: 0;
  margin: 0 auto;
  max-width: 300px;
  position: absolute;
  right: 0;
  top: 50px;
  width: 100%;
  z-index: 99999;
}
.mobi-menu {
}
#cssmenu {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background: none repeat scroll 0 0 #f5f5f5;
  border-color: #dddddd #dddddd -moz-use-text-color;
  border-image: none;
  border-style: solid solid none;
  border-width: 1px 1px medium;
  color: #ffffff;
  font-family: Helvetica,Arial,sans-serif;
  margin: 50px auto;
  max-width: 300px;
  width: 100%;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
  color: #fff;
  display: block;
  line-height: 1;
  list-style: outside none none;
  margin: 0;
  padding: 0;
  position: relative;
  text-shadow: 0 0 0 #fff;
}

#cssmenu > ul > li > a {
  padding: 15px 20px;
}
#cssmenu ul ul li a {
  padding: 15px 20px !important;
}
.only-for-mobile {
  display: block !important;
  margin-top: 0px;
  position: relative;
}
#cssmenu > ul > li.active > a > span::after, #cssmenu > ul > li.open > a > span::after {
  content: "";
  position: absolute;
  right: 22px;
}
.header_left {
  float: none;
  margin: 17px auto 0;
  text-align: center;
}
.header_left a {
  left: 53px;
}
.header_left input[type="text"] {
  background: #F9F9F9;
  margin-left: 13px;
  padding-left: 10px;
  padding-top: 3px;
}
.header_center {
  margin: 40px 0 0;
}
.header_right {
  display: block;
  float: none;
  margin: 60px auto 10px -10px;
  padding-bottom: 22px;
}
.mobi_right_li {float:right !important;}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
  background: none repeat scroll 0 0 #155B98;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
  background: none repeat scroll 0 0 #155B98;
}
.blog_date_in_page {
  margin-right: 13px;
}
.blog_date_in_page h2 {
  font-size: 30px;
}
.blog_date_in_page p {
  font-size: 10px;
}
 .pagi_ul ul li a {
  font-size: 12px;
  padding: 0 7px;
}   
.blog_search input[type="text"] {
  width: 262px;
}
.blog_page_sidebar {
  margin-left: 10px;
}
.recent_post_text {
  margin-right: 6px;
}
#instrigram li {
  width: 27.8%;
}
.footer_top_right ul#payment {
  text-align: center;
}
.footer_top_right ul#payment li {
  margin-left: 4px;
}
.footer_top_left > input[type="text"] {
  margin-bottom: 15px;
  margin-top: 10px;
  width: 67%;
}
#payment img {
width:17%;
}
.single_widget ul.widget_nav {
  margin-bottom: 40px;
}
.single_widget {
  text-align: center;
}
ul.wid_social li a {
  padding: 13px 5px 5px 4px;
}
ul#single_blog_nav {
  margin-left: 14px;
}
.comment_name {
  width: 77%;
}
.reply {
  width: 22%;
}
.comment_name h3 {
  font-size: 12px;
}
.comment_text {
  padding: 28px 13px 13px 13px;
  width: 77%;
}
.single_comment.even {
  margin-left: 0px;
}
.left_input {
  float: none;
  width:97%
}
.right_input {
  float: none;
  width: 97%;
}
.blog_page_area {
  padding-bottom: 90px;
  padding-top: 15px;
}
.coupon_box {
  text-align: center;
}
.coupon_box input[type="text"] {
  margin-right: 0px;
  padding: 7px 13px;
}
.bread_box ul.breadcumb li a {
  padding: 0 6px;
}
.checkout_right {
  margin-top: 25px;
}
.input_left {
  float: none;
  width: 94%;
}
.input_right {
  float: none;
width: 94%;
}
.submit_btn input[type="submit"] {
  margin-left: -12px;
}
.submit_btn {
  margin-left: 14px;
}
.panel-body ul#cat_size li a {
  height: 28px;
  width: 37px;
}
.panel-body > ul#cat_size li {
  margin-right: 6px;
}
.filter_box_left p {
  margin-bottom: 15px;
    margin-right: 10px;
}
.filter_cont {
  margin-bottom: 27px;
    margin-right: 4px;
}
.s_results p, .filter_box_right a {
  margin-bottom: 31px;
}
.s_results span {
  margin-right: 20px;
}
.filter_box_right .dropdown-menu {
  left: 45%;
}
.single_call_action {
  margin-bottom: 28px;
text-align: center;
width: 100%;
}
.single_call_action > img {
  float: none;
  margin-right:0;
}
.promo_text {
  left: 12px;
  top: 23px;
}
.promo_text_bottom {
  right: 21px;
  top: 29px;
}
.promo_text.promo_text_t {
  top: 25px;
}
.promo_text_bottom.promo_text_b {
  right: 17px;
  top: 18px;
}
.promo_text h5, .promo_text_bottom h5 {
  font-size: 13px;
}
.promo_text a, .promo_text_bottom a {
  font-size: 10px;
}
.promotion_bottom_t {
  margin-top: 18px;
}
.nav > li > a {
  font-size: 10px;
  padding: 10px 3px;
}
.trending_box .nav.nav-tabs {
  width: 98%;
}
.nav.nav-tabs span {
  padding-left: 12px;
}
.trending_box .owl-carousel::before {
  background: none;
  z-index:-1;
}
.trending_box .owl-carousel::after {
  background: none;
  z-index:-1;
}
#owl-example.owl-carousel .item, #owl-example-two.owl-carousel .item, #owl-example-three.owl-carousel .item, #owl-example-four.owl-carousel .item {
  margin: 0 auto;
}
.owl-carousel .owl-next {
  
}

.month_right {
  padding-bottom: 15px;
}
#blog-caro .carousel-control.left {
 left: 40%;
 top: -11%;
}
#blog-caro .carousel-control.right {
 right: 40%;
  top: -11%;
}
.fresh_blog_text {
  width: 47%;
}
.fresh_blog_text h2 {
  font-size: 30px;
}
.fresh_blog_text span {
  font-size: 26px;
}
.months p {
  font-size: 11px;
}
.month_right > span {
  font-size: 10px;
}

.fresh_blog_bottom_text h4 {
  font-size: 11px;
  margin-top: 15px;
}
.fresh_blog_bottom_text > p {
  font-size: 11px;
}
.fresh_blog_text {
  margin-bottom: 60px;
}
.fresh_blog_area {
  padding-top: 95px;
  padding-bottom: 30px;
}
#testi_carosel .item p {
  font-size: 15px;
  width: 89%;
}
.client_box {
  width: 87%;
}
.dotted_line {
  width: 46%;
}
.branding_box_heading h2 {
  width: 34%;
}
#branding_caro.owl-carousel .owl-next {
  right: -38%;
}
#branding_caro.owl-carousel .owl-prev {
  left: 44%;
}
.single_p_image {
  margin-bottom: 40px;
}

.single_p_image > img {
  margin-left: 116px;
  width: 53%;
}
.detail_heading_left h3 {
  font-size: 18px;
}
.detail_heading_left {
  width: 64%;
}
.detail_heading_right {
  width: 36%;
}
.panel-body.product_ac_body ul {
  margin: 0 0 0 32px;
}
.color_size_detail ul li a {
  height: 24px;
  padding-top: 4px;
  width: 26px;
}
.color_size_detail ul li {
  margin-right: 1px;
}
.size_up {
  overflow: hidden;
  width: 50%;
}
.size_num {
  height: 25px;
  width: 50%;
}
.t_to_b_img {
  width: 32%;
}
.single_t_to_b {
  margin-bottom: 40px;
}
.single_t_to_b .bx-wrapper .bx-controls-direction a.bx-next {
  right: -23px;
}
.single_t_to_b .bx-wrapper .bx-controls-direction a.bx-prev {
  right: -14px;
}
.size_cart {
  margin-right: 3%;
  padding: 3px 0;
  width: 32%;
}
.size_cart a {
  font-size: 8px;
} 
.header_top_left > p {
font-size:11px;
}
.size_heart {
  margin-right: 3%;
  padding: 3px;
  width: 14%;
}
.tab-product {
  float: none;
  margin-bottom: 25px;
  margin-right: 0;
  width: 100%;
  border-bottom: 0px solid;
}
ul.nav.nav-tabs.tab-product li {
  margin-right: 4px;
  width:auto;
 
}
ul.nav.nav-tabs.tab-product li a {
  font-size: 10px;
  padding: 18px;
}
ul.nav.nav-tabs.tab-product li.active {
  border-top: 3px solid #0F79AB;
  border-right:1px solid #ececec;
  border-left:1px solid #ececec;
  border-bottom:0px solid #ececec;
}
.tab-p-details {
  float: none;
  padding: 5px;
  width: 99%;
}
.wid_line::after {
  left: 117px;
}
#owl-example-single .owl-next {
  left: 78%;
}
#owl-example-single .owl-prev {
  left: 72%;
}
.exclusive_area {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
}
.ex_left {
  height: auto;
  position: relative;
}
.ex_left::after {
  background: url(/img/x-man.jpg) repeat scroll 0 0 / cover  rgba(0, 0, 0, 0);
  content: "";
  height: 210px;
  left: -14px;
  position: absolute;
  top: -75px;
  width: 110%;
  z-index: -1;
}
.ex_left_text {
  margin-left: -47px;
  margin-top: 74px;
  text-align: center;
  width: 100%;
}
.ex_left_text > h2 {
  font-size: 19px;
}
.ex_left_text > h5 {
  font-size: 12px;
  margin-bottom: 10px;
}
.ex_left_text > p {
  font-size: 10px;
  margin-bottom: 10px;
}
.ex_left_text > a {
  font-size: 10px;
  padding: 5px 10px;
}
.ex_right {
  width: 100%;
position: relative;
}
.ex_right::after {
  background: url(/img/x-man2.jpg) repeat scroll 0 0 / cover  rgba(0, 0, 0, 0);
  content: "";
  height: 210px;
  left: -14px;
  position: absolute;
  top: -75px;
  width: 110%;
  z-index: -1;
}
.ex_left_text.ex_left_right {
  margin-left: 64px;
  margin-top: 97px;
  padding-bottom: 20px;
}
.ex_left_right h6 {
  font-size: 10px;
}
.ex_left_text.ex_left_right > p {
  margin: 0 auto 20px;
  width: 65%;
  font-size: 9px;
}
.item:hover .tr-add-cart {
  opacity: 1;
  text-align: center;
  transition: all 0.25s ease 0s;
}
.cart_item_img img {
  float: none;
}
.cart_item_img p {
  font-size: 10px;
}
.h_item1 p, .h_item2 p, .h_item3 p, .h_item4 p {
  font-size: 11px;
}
.cart_quantity ul li {
  margin-right: 0px;
}
.cart_quantity ul li a {
  font-size: 10px;
  height: 16px;
  padding-top: 0px;
  width: 16px;
}
.cart_heading {
  padding: 15px 5px;
}
#owl-example.owl-carousel .owl-wrapper-outer {
  left: 0;
  width: 100%;
}
.panel-body.colors_cat ul#cat_color li a {
  height: 25px;
  width: 25px;
}
.owl-carousel .item {
  margin: 0 auto;
}


}



/* Wide Mobile Layout: 480px. */

@media only screen and (min-width: 480px) and (max-width: 767px) {
 
 /* new. */
 .review_comment_input input[type="submit"] {
  width: 33%;
}
 .review_comments {
margin-bottom: 30px;
width:100%
}
 .Review_input {
  width: 98%;
}
.review_heading_left h2 span {
  font-size: 15px;
  margin-right: 0px;
}
.review_heading_left h2 {
  font-size: 16px;
}
 /* end new. */


.header_left a {
  left: 125px;
}
.promo_text h5, .promo_text_bottom h5 {
  font-size: 22px;
}
.promo_text a, .promo_text_bottom a {
  font-size: 13px;
}
.nav > li > a {
  font-size: 11px;
  padding: 10px 5px;
}
.trending_box .nav.nav-tabs {
  width: 75%;
}
.dotted_line {
  width: 55%;
}
.branding_box_heading h2 {
  width: 26%;
}
.footer_top_left input[type="text"] {
  width: 40%;
}
.footer_top_left a {
  margin-right: 4px;
}
.footer_top_left {
  margin-bottom: 20px;
}
.footer_top_right ul#payment li {
  margin-left: 14px;
}
.wid_line::after {
  left: 194px;
}
.single_p_image > img {
  margin-left: 170px;
}
.size_num {
  height: 31px;
}
ul.nav.nav-tabs.tab-product li a {
  font-size: 12px;
  padding: 5px 17px;
}
#owl-example-single .owl-next {
  left: 86%;
}
#owl-example-single .owl-prev {
  left: 82%;
}
.blog_date_in_page h2 {
  font-size: 34px;
}
.blog_date_in_page p {
  font-size: 12px;
}
.blog_date_in_page {
  margin-right: 30px;
}
.blog_search input[type="text"] {
  width: 393px;
}
.recent_post_img {
  width: 25%;
}
#instrigram li {
  margin-bottom: 0;
  margin-left: 8px;
  width: 13.8%;
}
.cart_item_img > img {
float: none;
}
.filter_box_right .dropdown-menu {
  left: 64%;
}
.panel-body.colors_cat ul#cat_color li {
  margin-right: 3px;
}
.client_box > img {
  float: left;
  margin-right: 15px;
  width: 15%;
}.client_box > img {
  width: 15%;
}
.client_box {
  width: 61%;
}
.ex_left_text.ex_left_right {
  padding-bottom: 25px;
}
.ex_left_text {
  left: 84px;
}
#blog-caro .carousel-control.right {
  right: 42%;
}
#blog-caro .carousel-control.left {
  left: 42%;
}
.single_t_to_b .bx-wrapper .bx-controls-direction a.bx-next {
  right: -79px;
}
.single_t_to_b .bx-wrapper .bx-controls-direction a.bx-prev {
  right: -64px;
}
.ex_left_text > p {
  font-size: 10px;
  width: 36%;
}
.ex_left_text.ex_left_right > p {
  margin: 0 auto 16px;
  width: 48%;
}
.blog_img_l{  margin-bottom: -91px;}
#payment img {
width:16%;
}
.view_post {
  margin-top: 50px;
}

}
form .field.nocaptcha{margin-top:25px}form label{color:#212121;font-size:12px;margin-bottom:7px;text-transform:uppercase}form textarea{margin-bottom:10px}form h2{color:#212121;font-size:18px;font-weight:700;margin-bottom:8px;text-align:left;text-transform:uppercase;margin-top:60px;margin-bottom:25px;padding-bottom:25px;border-bottom:2px dotted #c6c7c7}form h2:first-of-type{margin-top:0}@media(min-width: 768px){form div.field.left,form div.field.right{float:left;width:49%}}@media(min-width: 768px){form div.field.right{float:right}}form div.field input,form div.field select,form div.field .readonly{background:none repeat scroll 0 0 #f7f8f9;border:1px solid #e8e8e8;color:#777;font-size:13px;margin-bottom:13px;padding:10px 16px;text-transform:inherit;width:100%;display:block}form div.field input[type=checkbox],form div.field select[type=checkbox],form div.field .readonly[type=checkbox]{width:15px;height:15px;position:relative;margin:4px 0 0 0;float:left}form div.field.textarea textarea{background:none repeat scroll 0 0 #f7f8f9;border:1px solid #e8e8e8;color:#777;font-size:13px;height:148px;padding:10px 20px;text-transform:inherit;width:100%}form div.field.checkbox{clear:both}form .btn-toolbar{margin-left:0}form input[type=submit]{background:none repeat scroll 0 0 #0f79ab;color:#fff;font-size:13px;font-weight:700;padding:8px 20px;text-align:left;text-transform:uppercase;border:2px solid #0f79ab;-webkit-appearance:button;cursor:pointer;margin-top:15px;float:right}form input[type=submit]:hover{background:#fff;color:#0f79ab;border:2px solid #0f79ab;text-decoration:none}form #ForgotPassword{float:left;margin:0 0 0 25px}form .description{font-size:.8em;margin:-8px 0 20px 0;font-style:italic;display:block}.general-page form{border:1px solid #e8e8e8;background:#fff;padding:40px;max-width:750px;margin:8px auto 0 auto}.contact-form{clear:both}.contact-form .field label{display:none}.contact-form .field.text,.contact-form .field.email{float:left;margin-right:3%;width:41%}.contact-form .field.textarea{float:right;width:56%}.checkout-form .action{display:none}h2.main{color:#111;font-size:15px;text-transform:uppercase}#site-logo{margin:28px 0 15px 0}#site-logo a{display:block}#site-logo a img{width:300px}@media(max-width: 768px){#site-logo{padding-bottom:10px}#site-logo a img{width:200px}}.general-page--content{margin:50px 0}.blog_page_area{padding:25px 0}.blog_page_sidebar{margin-bottom:50px}#single_blog .single_blog_in_page{border-bottom:none}#blog_posts{padding-bottom:100px}.old_price_gray{width:auto}.single_product_image_tab{margin-bottom:25px}.t_to_b_img img{border:1px solid #eee}.brands{margin:40px auto 0 auto}@media(max-width: 1200px){.brands{width:500px}}@media(max-width: 991px){.brands{width:230px}}.brands::after{display:block;clear:both;content:""}.brands .brand{display:block;background:#fff;border:1px solid #eee;width:230px;height:200px;float:left;margin-right:20px;margin-bottom:20px}@media(max-width: 1199px){.mainmenu ul#nav li{padding:0 20px}}@media(max-width: 991px){.mainmenu ul#nav li{padding:0 14px;font-size:12px}}.contact_box_right ul li{color:#555;font-size:11px;line-height:22px;margin-bottom:5px;text-transform:uppercase}.alert-{display:none}.promo_text.promo_text_t{top:180px}.promotion_top,.promotion_bottom{display:block;position:relative}.promotion_top span,.promotion_bottom span{color:#666;font-size:13px;margin-top:5px}.home-hero{position:relative;width:100%;background-size:cover;background-position:top left}@media(min-width: 600px){.home-hero{height:300px}}@media(min-width: 1000px){.home-hero{height:500px}}@media(min-width: 800px){.home-hero{height:400px}}@media(min-width: 1000px){.home-hero{height:500px}}@media(min-width: 1200px){.home-hero{height:600px}}.home-hero .overlay{width:100%;height:100%;background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7))}@media(min-width: 800px){.home-hero .overlay{background-image:linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.9))}}.home-hero .overlay .hero-text{color:#fff;text-transform:uppercase;margin:0 auto;padding:50px}@media(min-width: 600px){.home-hero .overlay .hero-text{padding:0;position:absolute;top:35%;right:10%}}.home-hero .overlay .hero-text h1{font-size:50px;margin-bottom:5px}.home-hero .overlay .hero-text h2{font-size:25px;opacity:.7}.home-hero .overlay .hero-text a{background:none;border:2px solid #fff;color:#fff;font-size:16px;font-weight:700;margin:15px 0;padding:7px;text-align:center;text-transform:uppercase;width:100%;display:block}.home-hero .overlay .hero-text a:hover,.home-hero .overlay .hero-text a:active{background:#fff;color:#1e222b;text-decoration:none}.message{position:relative;padding:.75rem 1.25rem;margin-bottom:2rem;border:1px solid rgba(0,0,0,0);border-radius:.25rem;display:block;color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.message.warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.message.success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.message.required,.message.error,.message.validation{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.nav_area{background:none repeat scroll 0 0 #497ba6}.nav_left a{padding-left:30px}.nav_left,.nav_right{height:64px;overflow:hidden;background:none repeat scroll 0 0 #155b98}@media(max-width: 1200px){.nav_left,.nav_right{font-size:12px !important}.nav_left a,.nav_right a{font-size:12px !important}.nav_left img,.nav_right img{display:none}}.product-content{padding:40px 0}.quantity{float:left;width:40px;text-align:center}.site-button{background:none repeat scroll 0 0 #0f79ab;color:#fff;float:left;font-size:13px;font-weight:700;padding:8px 20px;text-align:left;text-transform:uppercase;border:2px solid #0f79ab;-webkit-appearance:button;cursor:pointer}.site-button:hover{background:#fff;color:#0f79ab;border:2px solid #0f79ab;text-decoration:none}.checkout-button{background:none repeat scroll 0 0 #f7f8f9;border:2px solid #0f79ab;color:#232323;font-size:13px;font-weight:700;margin:8px auto 15px;padding:7px;text-align:center;text-transform:uppercase;width:100%;display:block}.checkout-button:hover{background:none repeat scroll 0 0 #0f79ab;border:2px solid #0f79ab;color:#fff;text-decoration:none}#pagination li a{opacity:.75}#pagination li a.curr{opacity:1;font-weight:bold}.about-us .main-image{width:100%;height:auto;margin:8px 0 30px 0}
