/* -------------------- COMMON ------------------- */
/* stijl voor de linken */
a:link {
    text-decoration: none; 
    color: #bbbbbb;
}
a:visited {
    text-decoration: none; 
    color: #bbbbbb;
}
a:hover {
    text-decoration: none; 
    color: red;
}
a:active {
    text-decoration: none; 
}

/* Stijldefinities voor pagina */
body {
    color: #b3b3b3;
    font-family: 'Roboto', sans-serif, helvetica, arial, tahoma, verdana;
    font-size: 18px;
    background-color: #4C4C4C !important;
}

#contact {
	float: left;
	margin-top: 15px;
}

.clear {
	clear: both;
}

/* opmaak home icon */
#homeicon {
    width: 30px;
    height: 30px;
	margin-top: 15px;
    background-image: url('./homeiconwhite.png');
    clear: both;
}

/* kleurwisseling in home-link bij muisovergang */
div#homeicon:hover {
    background-image: url('./homeiconred.png');
}

/* ------------------- ALBUMINDEX ----------------- */
/* stijl voor indextitel */
#indextitle {
	margin-bottom: 15px;
	margin-top: 15px;
}

/* buitenste container van index */
#indexwrapper {
    max-width: 645px;
	text-align: left;
}

/* stijl voor cel met thumb foto */
.item {
	position: relative;
	width: 160px;
	height: 160px;
	float: left;
	border-top: solid 1px #666666;
	border-left: solid 1px #666666;
	background-color: #949494;
}

.item:hover {
	background-color: #a1a1a1;
}

/* stijl voor thumb foto */
.thumbfoto {
	position: relative;
	border: 1px solid black;
	max-width: 130px;
	max-height: 130px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	box-shadow: 2px 2px 5px #444444; 
}
/* PAGINATION */
.pagination {
	float: right;
	margin-top: 15px;
	padding: 0;
	width: 160px;
}

.pagination ul {
	margin: 0;
	padding: 0;
}

.pagination li {
	float: left;
	list-style: none;
	padding-left: 15px;
	padding-right: 15px;
	display: inline;
}
.pagination li, .pagination a {
/*	padding-left: 8%;
	padding-right: 8%; 
	font-size: 18px;*/
}
.pagination .previous {
/*	font-weight: bold; 
	margin-left: 5%;*/
}
.pagination .next {
/*	font-weight: bold; */
}
.pagination .readout {
/*	font-weight: bold; */
}
.pagination .current {
	border: solid 1px #7f7f7f;
}