/* line 7, ../sass/lightbox.sass */
body:after {
  content: url(../img/lightbox/close.png) url(../img/lightbox/loading.gif) url(../img/lightbox/prev.png) url(../img/lightbox/next.png);
  display: none;
}

/* line 11, ../sass/lightbox.sass */
.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;
}

/* line 20, ../sass/lightbox.sass */
.lightbox {
	margin: -45px 5px 10px;
	padding: 20px 0 30px;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	/*width: auto;*/
	height: auto;
	z-index: 10000;
	text-align: center;
	line-height: 0;
	font-weight: normal;
	background: #333;
	color: #fff;
	font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;
}
/* line 28, ../sass/lightbox.sass */
.lightbox .lb-image {
padding: 0 0 0;
width: 90%;
  display: block;
  height: auto;
}
/* line 32, ../sass/lightbox.sass */
.lightbox a img {
  border: none;
}

/* line 35, ../sass/lightbox.sass */
.lb-outerContainer {
  position: relative;
  /*background-color: white;*/
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}
/* line 38, ../../../../.rvm/gems/ruby-1.9.3-p392/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

/* line 44, ../sass/lightbox.sass */
.lb-container {
  padding: 4px;
}

/* line 47, ../sass/lightbox.sass */
.lb-loader {
  position: absolute;
  top: 43%;
  left: 0%;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

/* line 56, ../sass/lightbox.sass */
.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/lightbox/loading.gif) no-repeat;
}

/* line 63, ../sass/lightbox.sass */
.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

/* line 71, ../sass/lightbox.sass */
.lb-container > .nav {
  left: 0;
}

/* line 74, ../sass/lightbox.sass */
.lb-nav a {
  outline: none;
}

/* line 77, ../sass/lightbox.sass */
.lb-prev, .lb-next {
  width: 49%;
  height: 100%;
  cursor: pointer;
  /* Trick IE into showing hover */
  display: none;
}

/* line 84, ../sass/lightbox.sass */
.lb-prev {
  left: 0;
  float: left;
  display: none;
}
/* line 87, ../sass/lightbox.sass */
.lb-prev:hover {
	display: none;
	/*background: url(../img/lightbox/prev.png) left 48% no-repeat;*/
}

/* line 90, ../sass/lightbox.sass */
.lb-next {
	display: none;
	right: 0;
	float: right;
}
/* line 93, ../sass/lightbox.sass */
.lb-next:hover {
	display: none;
	/*background: url(../img/lightbox/next.png) right 48% no-repeat;*/
}

/* line 96, ../sass/lightbox.sass */
.lb-dataContainer {
  margin: 0 2%;
  padding-top: 5px;
  *zoom: 1;
  width: 96% !important;
}
/* line 38, ../../../../.rvm/gems/ruby-1.9.3-p392/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

/* line 103, ../sass/lightbox.sass */
.lb-data {
  padding: 0 0;
  color: #333;
}
/* line 106, ../sass/lightbox.sass */
.lb-data .lb-details {
  width: 100%;
 /* float: left;*/
  text-align: left;
  line-height: 1.1em;
}
/* line 111, ../sass/lightbox.sass */
.lb-data .lb-caption {
  font-size: 14px;
  font-weight: bold;
  line-height: 150%;
}
/* line 115, ../sass/lightbox.sass */
.lb-data .lb-number {
  display: none !important;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}
/* line 121, ../sass/lightbox.sass */
.lb-data .lb-close {
	display: block;
	position: absolute;
	top: 5px;
	right: 10px;
	width: 20px;
	height: 20px;
	background: url(../img/lightbox/close.png) top right no-repeat;
	text-align: right;
	outline: none;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
	opacity: 0.7;
	background-size: contain;
}
/* line 130, ../sass/lightbox.sass */
.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/*--------------------------------------
    MEDIA QUERY
--------------------------------------*/
@media screen and (max-width: 780px) {
		.lightbox {
			padding: 35px 0 30px;
	}
}


