/* Lightbox.css */

.overlay{
	display: none;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: black;
	z-index:1001;
}

.contentbox{
	position: absolute;
	display: none;
	top: 50px;
	left: 0px;
        padding: 5px;
	background-color: #2B2B2B;
	color: #F1F1F1;
	z-index: 1002;
	/*width: 70px;
	height: 25px;*/
}

#contentInBox{
  width: 100%;
}

#image {

  display: none;
  cursor: pointer;
}

#stuff {
  /* a bland display ID for non-complicated stuff */
  display: none;
}

#message {
  display: inline;
  width: 100%;
  display: none;
  text-align: center;
  background-color: #2B2B2B;
}

.text {
  display: inline;
  width: 100%;

  
}

.views {
  display: inline;
  font-size: 10px;
  font-weight: bold;
  border-top-style: dashed;
  border-top-width: 1px;
}

.options {
  display: inline;
  font-size: 10px;
  font-weight: bold;
  border-top-style: dashed;
  border-top-width: 1px;
}

