/*
Alex Dukal PHP Automatic Gallery Style
Updated: 24 feb 2013
*/

body{
	background-color:#E8E8CE;
	margin:0px;
	padding:0px;
/*	font: 14px/24px Arial, sans-serif; 
	color:#333;*/
}
/*a {text-decoration:none; }
a:hover {   }
a:active,a:focus {outline: none;} */

.clear {
  clear: left;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

h2 {
	font: 28px/34px Arial, sans-serif;
}
ul {
	list-style-type: none;
}
hr {
	border-top: 1px dashed #adadad;
	border-bottom: 1px solid #adadad;
	border-left: 0px;
	border-right: 0px;
	color: #d6d7d2;
	background-color: #d6d7d2;
	height: 4px;
	width: 100%;
	margin: 30px auto 30px;
}

/* ---( The Gallery )------------------------------- */

#pg_container {
	background-color: #FAFAF0;
	width: 900px;
	margin: 25px auto 25px;
	padding: 30px 0px 10px 0px;
	border-top:15px solid #8963C1;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 5px 5px rgba(0,0,0,0.5);
	box-shadow: 0 0 5px 5px rgba(0,0,0,0.5);
}
.gallery {
	width: 700px;
	margin: 0px auto 0px;
}
.gallery p {
	margin-bottom: 30px;
}
.gallery ul {
  list-style-type: none;
}

.gallery li img {
	float: left;
	margin: 10px;
	padding:5px;
	border:1px solid #999;
	background-color: #fff;
	
	-webkit-transition: box-shadow 0.5s ease;
	-moz-transition: box-shadow 0.5s ease;
	-o-transition: box-shadow 0.5s ease;
	-ms-transition: box-shadow 0.5s ease;
	transition: box-shadow 0.5s ease;
}
 
.gallery li img:hover {
	border-color:#333;
	margin-top: 8px;
	-webkit-box-shadow: 0px 0px 7px rgba(0,0,0,0.9);
	box-shadow: 0px 0px 7px rgba(0,0,0,0.9);
}

.credits {
	font-size: 6px;
	text-align: center;
}

/* ---( Pagination )------------------------------- */


.holder {
	margin: 25px 0;
}

.holder a {
	/* font-size: 12px;  */
	cursor: pointer;
	margin: 0 5px;
	padding: 2px;
	/* color: #333; */
}

.holder a:hover {
	padding: 2px;
	background-color: #898a84;
	/* color: #fff; */
}

.holder a.jp-previous { margin-right: 15px; }
.holder a.jp-next { margin-left: 15px; }

.holder a.jp-current, a.jp-current:hover { 
	/* color: #FF4242; */
	font-weight: bold;
}

.holder a.jp-disabled, a.jp-disabled:hover {
	 /* color: #bbb; */
}

.holder a.jp-current, a.jp-current:hover,
.holder a.jp-disabled, a.jp-disabled:hover {
	cursor: default; 
	background: none;
}

.holder span { margin: 0 5px; }