body {
	background: #f0f0f0;
	font-family: Arial;
	font-size: 14px;
}

/* GALLERY */
#gallery {
	margin: 200px auto 0px auto;
	width: 740px;
}

#gallery img {
	padding: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	background: white;
	border-radius: 5px;
	margin: 10px 10px;
	-webkit-transition: all ease-in 0.3s;
	-moz-transition: all ease-in 0.3s;
	-ms-transition: all ease-in 0.3s;
	-o-transition: all ease-in 0.3s;
	filter: url(filters.svg#grayscale);
    filter: gray;
    -webkit-filter: grayscale(1);
}
#gallery img:hover {
	filter: none;
    -webkit-filter: grayscale(0);
}

#gallery #pagination {
	text-align: center;
	margin-top: 15px;
}

#gallery #pagination a {
	background: #fff;
	padding: 4px 8px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	border-radius: 3px;
	margin: 0px 5px;
	color: #a9a9a9;
	text-decoration: none;
}

#gallery #pagination a:hover {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

#gallery #pagination strong {
	background: #fff;
	padding: 4px 8px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
	border-radius: 3px;
	margin: 0px 5px;
	color: #838383;
}


/* DOCUMENTATION */
#documentation {
	padding: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	background: white;
	border-radius: 5px;
	color: #535353;
	margin: 100px auto 0px auto;
	width: 720px;
}

#documentation h2 {
	border-bottom: 1px solid #535353;
	font-size: 18px;
	color: #434343;
}

#documentation code {
	display: block;
	padding-left: 5px;
	border-left: 3px solid silver;
	margin: 2px 2px;
}


.buttonlist{list-style:none;padding:0;margin:0;}
.buttonlist{margin-bottom:50px;text-align:center;}
.buttonlist > li{display:inline-block;}
.buttonlist{list-style:none outside none;margin:0 0 40px 0;padding:0;}
.buttonlist > li{display:inline-block;}
.buttonlist > li a{background:none repeat scroll 0 0 #FFFFFF;font-size:14px;font-weight:400;margin-right:20px;text-transform:uppercase;transition:all 0.9s ease 0s;-moz-transition:all 0.9s ease 0s;-webkit-transition:all 0.9s ease 0s;-o-transition:all 0.9s ease 0s;border:1px solid #F2F2F2;outline:none;border-radius:3px;}
.buttonlist > li a:hover,
.buttonlist > li a.active{color:#fff;background:#c52d2f;border:1px solid #c52d2f;box-shadow:none;-webkit-box-shadow:none;}

