/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/**
 * bxSlider v4.2.5
 * Copyright 2013-2015 Steven Wanderski
 * Written while drinking Belgian ales and listening to jazz

 * Licensed under MIT (http://opensource.org/licenses/MIT)
 */
.bx-wrapper {
  position: relative;
  margin: 0;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

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

.bx-viewport {
  -webkit-transform: translatez(0);
  z-index: 1;
}

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

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

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

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

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

.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
}

.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0;
}

.bx-wrapper .bx-prev {
  left: 15px;
}

.bx-wrapper .bx-prev i {
  margin-left: -2px;
}

.bx-wrapper .bx-next {
  right: 15px;
}

.bx-wrapper .bx-next i {
  margin-right: -2px;
}

.bx-wrapper .bx-controls-direction a {
  display: none;
  position: absolute;
  z-index: 100;
  top: 50%;
  width: 32px;
  height: 32px;
  margin-top: 19px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  outline: 0;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  opacity: .5;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.bx-wrapper .bx-controls-direction a i {
  display: block;
  margin-top: 7px;
}

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

.bx-wrapper .bx-controls-direction a:hover {
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.bounceIn {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounceIn {

  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {

  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

#masthead+.bx-wrapper {
  position: fixed;
  z-index: 200;
  top: 0;
}

.home #content {
  position: relative;
  z-index: 1500;
  top: 0;
  left: 0;
  margin-top: 320px;
  background: #ecf0f1;
}

@media (min-width: 992px) {}

#searchform .bx-prev {
  left: -20px;
}

#searchform .bx-prev i {
  margin-left: -2px;
}

#searchform .bx-next {
  right: -20px;
}

#searchform .bx-next i {
  margin-right: -2px;
}

#searchform .bx-controls-direction a {
  display: none;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  opacity: .75;
  border: 0;
  background: #222529;
}

@media (min-width: 768px) {
  #searchform .bx-controls-direction a {
    display: block;
  }
}

@media (min-width: 992px) {
  #searchform .bx-controls-direction a {
    display: none;
  }
}

@media (min-width: 1200px) {
  #searchform .bx-controls-direction a {
    display: block;
  }
}

#searchform .bx-controls-direction a i {
  display: block;
  margin-top: 13px;
}

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

#searchform .bx-controls-direction a:hover {
  opacity: 1;
}

@media (min-width: 768px) {
  aside#searcharea .bx-controls-direction a {
    display: block !important;
  }
}

.companyid-373 h3 {
  display: none
}

.img_right {
  float: right;
  width: 40%;
}


/* ��ƏЉ�y�[�W */

/*.single .box{
padding: 0 10px 11px 10px;
}*/

.company_Area {
  width: 100%;

}

.company_Area blockquote {
  font-size: 14px;
  line-height: 2em;
  border-left: 5px solid #1426ad;
  padding: 0px 21px 0;
  font-weight: lighter;
  width: 95%;
}


h2.company_PRtitle {
  font-size: 25px;
  padding-right: 10px;
}

/*
.company_Image{
  width:95%;
}

.company_Image img{
  width:100%;
  height:auto;
}
*/

.company_table {
  margin: 0 auto;
}

.company_table td {
  padding: 8px 10px;
  font-weight: 400;
}

.col-6 {
  width: 49%;
  display: inline-block;
  vertical-align: top;
}

.c_wrap {
  border: 5px solid #2196f3;
  margin-bottom: 20px;
  padding: 5px;
  border-radius: 4px;
  box-sizing: content-box;
  word-break: break-all;
  margin: 5px;
  background: #fff;
}


.c_wrap table {
  font-size: 14px;
}

h3.company_title {
  border-left: 5px solid #1426ad;
  text-indent: 10px;
}

.company_table th {
  width: 80px;
  padding: 5px;
font-weight: 500;
}

.btn-space {
  font-size: 130%;
  width: 100%;
}