/* tab */
.conv-tab {
	height: 40px;
}
.conv-tab > li {
	float: left;
	padding: 0;
	list-style: none;
	text-align: center;
	border-bottom: 1px solid #aaa;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.conv-tab > li > a {
	display: block;
	text-decoration: none;
	font-size: 14px;
	padding: 16px 0;
  width: 150px;
	line-height: 1;
	color: #aaa;
}
.conv-tab > li:hover {
	border-top: 1px solid #aaa;
	border-left: 1px solid #aaa;
	border-right: 1px solid #aaa;
	border-bottom: 0;
	border-radius: 5px 5px 0 0;
}
.conv-tab > li.active {
	border: 0;
	border-bottom: 1px solid #466414;
	background: #82b925;
	border-radius: 5px 5px 0 0;
}
.conv-tab > li.active > a {
	font-weight: bold;
	color: #fff;
}
.conv-tab-pink > li.active {
	border-bottom: 1px solid #dc0c9e;
	background: #f438bc;

}
.conv-tab-sky > li.active {
	border-bottom: 1px solid #0953ba;
	background: #3385f5;

}

/* toggle */
.conv-toggle {
  cursor: pointer;
  /*
  width: 200px;
  height: 50px;
  background: #193c5d;
  color: #f0f6fb;
  text-align: center;
  line-height: 50px;
  border-top: 1px solid #193c5d;
  border-right: 1px solid #193c5d;
  border-left: 1px solid #193c5d;
  border-bottom: 1px solid #193c5d;
  */
}
.conv-toggle+* {
  /*
  display: none;
  width: 200px;
  background: #fff;
  color: #193c5d;
  text-align: center;
  line-height: 50px;
  border-top: 0;
  border-right: 1px solid #193c5d;
  border-left: 1px solid #193c5d;
  border-bottom: 1px solid #193c5d;
  margin: 0;
  padding: 0;
  background: #e2edf7;
  */
}
.conv-toggle+* li {
  list-style: none;
  /*
  border-bottom: 1px solid #adcce9;
  */
}
.conv-toggle+* li:last-child {
  /*
  border-bottom: 0;
  */
}

/* following-box */
.conv-following-box {
	position: fixed;
}

/* fadein-box */
.conv-fadein-box {
	display: none;
}

/* nav-dropdown */
.conv-dropdown {
  list-style-type: none;
  padding: 0;
}
.conv-dropdown:after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}
.conv-dropdown li {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  width: 150px;
  text-align: center;
}
.conv-dropdown li a {
  display: block;
  margin: 0;
  padding: 16px 0;
  background: #8a9b0f;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
}
.conv-dropdown li ul {
  list-style: none;
  position: absolute;
  z-index: 100;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}
.conv-dropdown li ul li {
  overflow: hidden;
  width: 100%;
  height: 0;
  color: #fff;
  transition: .2s;
}
.conv-dropdown li ul li a {
  padding: 13px 15px;
  background: #7c8c0e;
  text-align: left;
  font-size: 12px;
  font-weight: normal;
}
.conv-dropdown > li:hover > a {  background: #7c8c0e }
.conv-dropdown > li:hover li:hover > a {  background: #6e7c0c }
.conv-dropdown li:hover > ul > li {
  overflow: visible;
  height: 38px;
}
.conv-dropdown li ul li ul {
  top: 0;
  left: 100%;
}
.conv-dropdown li:last-child ul li ul {
  left: -100%;
  width: 100%;
}
.conv-dropdown li ul li ul li a {  background: #616d0b }
.conv-dropdown li:hover ul li ul li:hover > a {  background: #535d09 }
.conv-dropdown li ul li ul:before {
  position: absolute;
  content: "";
  top: 13px;
  left: -20px;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left-color: #454e08;
}
.conv-dropdown li:last-child ul li ul:before {
  position: absolute;
  content: "";
  top: 13px;
  left: 200%;
  margin-left: -20px;
  border: 5px solid transparent;
  border-right-color: #454e08;
}
*:first-child+html .conv-dropdown { zoom: 1; }
/* slider */
.conv-slider {
  width: 600px;
  height: 300px;
}
.conv-slider .conv-slider-inner {
  position: relative;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.conv-slider-inner > .conv-slider-item {
  position: absolute;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.conv-slider .conv-slider-btn-left {
  width: 50px;
  height: 100%;
  background: #333;
  color: #aaa;
  filter: alpha(opacity=0);
  -ms-filter: "alpha(opacity=0)";
  opacity: 0;
  position: absolute;
  right: -50px;
  transition: .2s;
}
.conv-slider .conv-slider-btn-left a {
  display: block;
  width: 100%;
  height: 100%;
}
.conv-slider .conv-slider-btn-left a p {
  position: absolute;
  font-size: 18px;
  top: 50%;
  margin-top: -13px;
  margin-left: 20px;
}
.conv-slider .conv-slider-btn-right {
  width: 50px;
  height: 100%;
  background: #333;
  color: #aaa;
  filter: alpha(opacity=0);
  -ms-filter: "alpha(opacity=0)";
  opacity: 0;
  position: absolute;
  left: -50px;
  transition: .2s;
}
.conv-slider .conv-slider-btn-right a {
  display: block;
  width: 100%;
  height: 100%;
}
.conv-slider .conv-slider-btn-right a p {
  position: absolute;
  font-size: 18px;
  top: 50%;
  margin-top: -13px;
  margin-left: 20px;
}
.conv-slider:hover .conv-slider-btn-left {
  right: 0;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
  opacity: 0.8;
}
.conv-slider:hover .conv-slider-btn-right {
  left: 0;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
  opacity: 0.8;
}
.conv-slider .conv-slider-selector {
	width: 100%;
	text-align: center;
	letter-spacing: 0.5em;
}
.conv-slider .conv-slider-selector a {
	text-decoration: none;
	font-size: 12px;
	color: #2d2310;
}
.conv-slider .conv-slider-selector a.selected {
	color: #e9ad0a;
}
/* pagejack */
.conv-pagejack, .conv-popup-content {
  position: fixed;
  top: 50%;
  left: 50%;
  display: none;
  z-index: 1000001;
}
div.conv-pagejack-overlayer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  filter: alpha( opacity=80 );
  background: #aaa;
  z-index: 1000000;
}
div.conv-pagejack div.conv-pagejack-close-btn, div.conv-popup-content div.conv-pagejack-close-btn {
  position: absolute;
    text-align: center;
    top: -12px;
    right: -12px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    border: 3px solid #fff;
  /*line-height: 2.5em;*/
  padding: 1.5vw 3vw;
  cursor: pointer;
  font-size:17px;
  font-weight: bold;
}
/*@media only screen and (max-width: 640px) {
     
    div.conv-pagejack div.conv-pagejack-close-btn, div.conv-popup-content div.conv-pagejack-close-btn{
        padding-left:6px;
    }
 
}*/

/* tab-img */
.conv-tab-img li a {
  display: inline;
  padding: 0;
  width: 0;
  height: 0;
}
.conv-tab-img li {
  padding: 0;
  margin: 0;
  border: 0;
  border-bottom: 0;
  border-radius: 0;
  background: transparent;
  width: auto;
  height: auto;
}
.conv-tab-img li.active {
  border: 0;
  background: transparent;
}
.conv-tab-img li:hover {
  border: 0;
}
