#galleryImg {
	display: block;
}
#galleryImg .carousel {
  position: relative;
  width: 520px;
  padding: 10px 50px;
/*  border: 1px solid #CCC;*/
	display: inline-block;
}
#galleryImg .carousel .arrow {
  position: absolute;
  top: 30px;
	width: 30px;
  margin: 0;
  padding: 0;
  background: #ddd;
  border-radius: 15px;
  border: 1px solid gray;
  border: none;
  font-size: 40px;
  line-height: 60px;
  color: #444;
  display: block;
}
#galleryImg .carousel .arrow:focus {
  outline: none;
}
#galleryImg .carousel .arrow:hover {
  background: #ccc;
  cursor: pointer;
}
#galleryImg .carousel .prev {
  left: 7px;
}
#galleryImg .carousel .next {
  right: 7px;
}
#galleryImg .carousel .gallery {
  margin: 0;
  padding: 0;
  width: 520px;
  overflow: hidden;
}
#galleryImg .carousel .gallery ul {
  margin: 0;
  padding: 0;
	width: 9999px;
  list-style: none; 
  transition: margin-left 250ms;
  font-size: 0;
}
#galleryImg .carousel .gallery li {
	float: left;
  display: inline-block;
}
#galleryImg .carousel .gallery a {
  border: solid 1px #ccc;
  width: 120px;
  height: 90px;
  padding: 2px;
  margin: 2px;
  float: left;
}
#galleryImg .carousel .gallery a:hover {
  border-color: #FF9900;
}
#galleryImg .carousel .gallery img {
	height: auto; 
	width: auto; 
	max-width: 120px; 
	max-height: 90px;
  display: block;
}
#galleryImg .modalView {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	display: none; 
}
#galleryImg .modalView > div {
	height: 450px;
	width: 600px;
	position: relative;
	margin: 10% auto;
	padding: 0;
	display: inline-block;
}
#galleryImg .modalView img {
	width: auto;
	height: auto;
	max-height: 450px;
	max-width: 600px;
}
#galleryImg .modalView .close {
	background: #606061;
	color: #FFFFFF;
  font-size: 20px;
	line-height: 35px;
	position: absolute;
	right: -20px;
	top: -20px;
	width: 40px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}
#galleryImg .modalView .close:focus {
  outline: none;
}
#galleryImg .modalView .close:hover { 
background: #00d9ff; 
cursor: pointer;
}
#galleryImg .modalView .arrow {
  position: absolute;
  top: 150px;
	width: 40px;
  margin: 0;
  padding: 0;
	background: #606061;
	color: #FFFFFF;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
  font-size: 60px;
  line-height: 100px;
  display: block;
}
#galleryImg .modalView .arrow:focus {
  outline: none;
}
#galleryImg .modalView .arrow:hover {
	background: #00d9ff; 
  cursor: pointer;
}
#galleryImg .modalView .prev {
  left: -45px;
}
#galleryImg .modalView .next {
  right: -45px;
}



























