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

body{
	background-color:#2e2e31;
	margin:0px;
	padding:0px;
	font: 14px/24px Arial, sans-serif;
	color:#333;
}
a {text-decoration:none; color:#732f3d;}
a:hover {color:#aa0e55;}
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 solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
	border-left: 0px;
	border-right: 0px;
	color: #CCCCCC;
	background-color: #CCCCCC;
	height: 4px;
	width: 100%;
	margin: 10px auto 10px;
}

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

#container {
	background-color: #FFFFFF;
	width: 680px;
	padding: 0px 0px 0px 0px;
}
.gallery {
	width: 680px;
	margin: 0px auto 0px;
}
.gallery p {
	margin-bottom: 20px;
}
.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: 11px;
	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; }