/*!
* bootstrap-lightbox.css v0.6.1 
* Copyright 2013 Jason Butz
* http://www.apache.org/licenses/LICENSE-2.0.txt
*/
.lightbox {
  position: relative;
  top: 70px;
  z-index: 10001;
  /*line-height: 0; */
  text-align: center;
  background-color: transparent;
  outline: none;
}

.lightbox .hide {
  display: none;
}

.lightbox .in {
  display: block;
}

.lightbox-content {
  display: inline-block;
  padding: 3px;
  background-color: #ffffff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.3);
  *border: 1px solid #999;
  /* IE6-7 */

  -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
          border-radius: 6px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
     -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
     -moz-background-clip: padding-box;
          background-clip: padding-box;
}

.lightbox-content .lightbox-caption {
  position: absolute;
  right: 12px;
  top: 0px;
  left: 11px;
  padding: 3px;
  font-size: 14px;
  font-weight: 700;
  line-height: 12px;
  color: white;
  text-align: center;
  text-shadow: 0 -1px 0 #000000;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  background: #878484;
  background: rgb(100, 100, 100);
  width: 96%;
}


.lightbox-header {
    font-size: 16px;
    font-weight: 700;
    
}

.lb-title {
    background-color: #0a4e96;
    margin-left: 5px;
    display: block;
    float: left;
    width: 96%;
    color: white;
}
.lb-title2 {
    background-color: rgb(100, 100, 100);
    margin-left:5px;
    display: block;
    float: left;
    width: 95%;
    color: white;
    font-size: 12px;
}

.lightbox-header .close {
  margin-top: -16px;
  margin-right: -16px;
  font-size: 2em;
  color: white;
  opacity: .8;
  filter: alpha(opacity=80);
}

.lightbox-header .close :hover {
  opacity: .4;
  filter: alpha(opacity=40);
}

@media only screen and (max-width: 1023px) {
	div#lightboxSelfHelp {
		height:670px !important;
    }
	.lightbox-content {
		height:670px !important;
    }
}