/* CSS RESET */
html, body, div, span, applet, object, iframe,
/*h1,*/ h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	text-decoration: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ------------------------------------------- */
* {
	box-sizing: border-box;
}
body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	font-family: "open sans", Helvetica, Arial, sans-serif;
}

/* ------------------------------------------- */
.head {
	background: url(donor-wall/head_bg.png) repeat-x;
}
.head img {
	margin-right: auto;
	margin-left: auto;
	display: block;
	margin-bottom: 6px;
}
.side {
	max-width: 1325px;
	display: block;
	margin-right: auto;
	margin-left: auto;
}
.side img {
	display: block;
	float: right;
}
/* ------------------------------------------- */
.list a {
	color: white;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0);
}
.list a:hover {
	color: white;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.list {
	width: 799px;
	display: block;
	position: relative;
	margin-right: auto;
	margin-left: auto;
	font-size: 1rem;
}
.item {
	display: inline-block;
	width: 250px;
	height: 210px;
	background: silver;
	margin: 0 20px 20px 0;
	position: relative;
	overflow: hidden;
}
.item:nth-of-type(3n){
	margin-right: 0;
}

@media (max-width: 1200px) {
	.list {
		width: 100%;
		display: block;
		position: relative;
		margin-right: auto;
		margin-left: auto;
		font-size: 1rem;
	}
	.item {
		display: inline-block;
		width: 250px;
		height: 210px;
		background: silver;
		margin: 0 15px 20px 0;
		position: relative;
		overflow: hidden;
	}
	.item:nth-of-type(3n){
		margin-right: 15px;
	}
}

.item .over {
	display: block;
	padding: 0;
	position: absolute;
	background-color: lime;
	z-index: 2;
	width: 250px;
	height: 210px;
	margin-left: -250px;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
	color: white;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.item:hover .over {
	margin-left: 0;
	
	opacity: 1;
}
.item .over .title {
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
	font-size: 1.5rem;
	font-weight: 700;
	display: block;
	padding-top: 2rem;
	padding-left: 2rem;
	padding-right: 2rem;
	margin-bottom: .5rem;
	height: 5rem;
	position: absolute;
	color: white;
	text-align: center;
	width: 100%;
	line-height: 1.8rem;
}
.item .over .description {
	font-size: .8rem;
	line-height: 1rem;
	height: 2.9rem;
	display: block;
	font-weight: 600;
	padding-right: 1rem;
	padding-left: 1rem;
	top: 8rem;
	position: absolute;
	text-align: center;
	width: 100%;
}
.item .over .more {
	font-size: 2rem;
	font-weight: 400;
	margin-top: .5rem;;
	position: absolute;
	padding-left: 1rem;
	padding-right: 1rem;
	bottom: 0.8rem;
	text-align: center;
	width: 100%;
	display:none;
}
.item .logodw {
	display: block;
	position: absolute;
	background-color: transparent;
	z-index: 1;
}
.item .under {
	display: block;
	position: absolute;
	background-color: transparent;
	width: 250px;
	height: 210px;
	z-index: 0;
}
.item .under:before {
	content: '';
	width: 100%;
	height: 100%;
	-moz-box-shadow: inset 0 -6px 22px rgba(0, 0, 0, 0.15);
	box-shadow: inset 0 -6px 22px rgba(0, 0, 0, 0.15);
	position: absolute;
	z-index: 3;
}
.item .under .title {
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
	font-size: 1.5rem;
	font-weight: 700;
	display: block;
	padding-top: 2rem;
	padding-left: 2rem;
	padding-right: 2rem;
	margin-bottom: .5rem;
	height: 5rem;
	position: absolute;
	color: white;
	text-align: center;
	width: 100%;
	line-height: 1.8rem;
}
.private .item  .under .title {
	font-size: 1.9rem;
	padding-top: 4rem;
	line-height: 2rem;
	font-weight: 600;
}

/* ------------------------------------------- */

.item:nth-child(24n+1) .over {
	background-color: #0073ac;
}
.item:nth-child(24n+2) .over {
	background-color: #f62100;
}
.item:nth-child(24n+3) .over {
	background-color: #1d8726;
}
.item:nth-child(24n+4) .over {
	background-color: #76d4ef;
}
.item:nth-child(24n+5) .over {
	background-color: #9c0e00;
}
.item:nth-child(24n+6) .over {
	background-color: #fe8500;
}
.item:nth-child(24n+7) .over {
	background-color: #e77408;
}
.item:nth-child(24n+8) .over {
	background-color: #03c54f;
}
.item:nth-child(24n+9) .over {
	background-color: #61bfe1;
}
.item:nth-child(24n+10) .over {
	background-color: #029f31;
}
.item:nth-child(24n+11) .over {
	background-color: #d81b00;
}
.item:nth-child(24n+12) .over {
	background-color: #b34300;
}



.item:nth-child(24n+13) .over {
	background-color: #fe8500;
}
.item:nth-child(24n+14) .over {
	background-color: #9c0e00;
}
.item:nth-child(24n+15) .over {
	background-color: #76d4ef;
}
.item:nth-child(24n+16) .over {
	background-color: #1d8726;
}
.item:nth-child(24n+17) .over {
	background-color: #f62100;
}
.item:nth-child(24n+18) .over {
	background-color: #0073ac;
}
.item:nth-child(24n+19) .over {
	background-color: #b34300;
}
.item:nth-child(24n+20) .over {
	background-color: #d81b00;
}
.item:nth-child(24n+21) .over {
	background-color: #029f31;
}
.item:nth-child(24n+22) .over {
	background-color: #61bfe1;
}
.item:nth-child(24n+23) .over {
	background-color: #03c54f;
}
.item:nth-child(24n+24) .over {
	background-color: #e77408;
}




.item:nth-child(24n+1) .under {
	background-color: #0073ac;
	background-image: url(donor-wall/dw_bg-01.png);
}
.item:nth-child(24n+2) .under {
	background-color: #f62100;
	background-image: url(donor-wall/dw_bg-02.png);
}
.item:nth-child(24n+3) .under {
	background-color: #1d8726;
	background-image: url(donor-wall/dw_bg-03.png);
}
.item:nth-child(24n+4) .under {
	background-color: #76d4ef;
	background-image: url(donor-wall/dw_bg-04.png);
}
.item:nth-child(24n+5) .under {
	background-color: #9c0e00;
	background-image: url(donor-wall/dw_bg-05.png);
}
.item:nth-child(24n+6) .under {
	background-color: #fe8500;
	background-image: url(donor-wall/dw_bg-06.png);
}
.item:nth-child(24n+7) .under {
	background-color: #e77408;
	background-image: url(donor-wall/dw_bg-07.png);
}
.item:nth-child(24n+8) .under {
	background-color: #03c54f;
	background-image: url(donor-wall/dw_bg-08.png);
}
.item:nth-child(24n+9) .under {
	background-color: #61bfe1;
	background-image: url(donor-wall/dw_bg-09.png);
}
.item:nth-child(24n+10) .under {
	background-color: #029f31;
	background-image: url(donor-wall/dw_bg-10.png);
}
.item:nth-child(24n+11) .under {
	background-color: #d81b00;
	background-image: url(donor-wall/dw_bg-11.png);
	}
.item:nth-child(24n+12) .under {
	background-color: #b34300;
	background-image: url(donor-wall/dw_bg-12.png);
}
.item:nth-child(24n+13) .under {
	background-color: #fe8500;
	background-image: url(donor-wall/dw_bg-13.png);
}
.item:nth-child(24n+14) .under {
	background-color: #9c0e00;
	background-image: url(donor-wall/dw_bg-14.png);
}
.item:nth-child(24n+15) .under {
	background-color: #76d4ef;
	background-image: url(donor-wall/dw_bg-15.png);
}
.item:nth-child(24n+16) .under {
	background-color: #1d8726;
	background-image: url(donor-wall/dw_bg-16.png);
}
.item:nth-child(24n+17) .under {
	background-color: #f62100;
	background-image: url(donor-wall/dw_bg-17.png);
}
.item:nth-child(24n+18) .under {
	background-color: #0073ac;
	background-image: url(donor-wall/dw_bg-18.png);
}
.item:nth-child(24n+19) .under {
	background-color: #b34300;
	background-image: url(donor-wall/dw_bg-19.png);
}
.item:nth-child(24n+20) .under {
	background-color: #d81b00;
	background-image: url(donor-wall/dw_bg-20.png);
}
.item:nth-child(24n+21) .under {
	background-color: #029f31;
	background-image: url(donor-wall/dw_bg-21.png);
	}
.item:nth-child(24n+22) .under {
	background-color: #61bfe1;
	background-image: url(donor-wall/dw_bg-22.png);

}
.item:nth-child(24n+23) .under {
	background-color: #03c54f;
	background-image: url(donor-wall/dw_bg-23.png);

}
.item:nth-child(24n+24) .under {
	background-color: #e77408;
	background-image: url(donor-wall/dw_bg-24.png);

}
