@charset "utf-8";
/* CSS Document */



section {
	display: -webkit-flex; /* Safari */
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: space-around;
	margin: 0 auto;
	text-align:center
	
}
article {
	margin: 5 5px;
	background: white;
	flex: 0.2 1 230px; /* flex-grow | flex-shrink | flex-basis */
	max-width:250px;
	border: solid 2px;
	border-color: #ccc;
	border-radius:5px;
	box-shadow: 10px 10px 10px rgba(0,0,0,0.2) 
}
article header {
	text-align: center;
	padding: 10px;
	background: #ff7200;
	font-family: tahoma;
	color: #fff;
	font-size: 1em;
	font-weight: bold;
}
article h2.box { 
	text-align: center;
	font-family: tahoma;
	font-size: 100%;
	color: blue;
	background-color: #fff
}

article img.belsoe{ 
	display: block;
	margin: auto;
	width: 70%
}

article img.belsoe-m{ 
	display: block;
	margin: auto;
	width: 200
}
article:nth-of-type(1) { order: 1 }
article:nth-of-type(2) { order: 2 }
article:nth-of-type(3) { order: 3 }
article:nth-of-type(4) { order: 4 }
article:nth-of-type(5) { order: 5 }

article:nth-of-type(6) { order: 6 }
article:nth-of-type(7) { order: 7 }
article:nth-of-type(8) { order: 8 }
article:nth-of-type(9) { order: 9 }
article:nth-of-type(10) { order: 10 }

article:nth-of-type(11) { order: 11 }
article:nth-of-type(12) { order: 12 }
article:nth-of-type(13) { order: 13 }
article:nth-of-type(14) { order: 14 }
article:nth-of-type(15) { order: 15 }

article:nth-of-type(16) { order: 16 }
article:nth-of-type(17) { order: 17 }
article:nth-of-type(18) { order: 18 }
article:nth-of-type(19) { order: 19 }
article:nth-of-type(20) { order: 20 }

article:nth-of-type(21) { order: 21 }
article:nth-of-type(22) { order: 22 }
article:nth-of-type(23) { order: 23 }
article:nth-of-type(24) { order: 24 }
article:nth-of-type(25) { order: 25 }

article:nth-of-type(26) { order: 26 }
article:nth-of-type(27) { order: 27 }
article:nth-of-type(28) { order: 28 }
article:nth-of-type(29) { order: 29 }
article:nth-of-type(30) { order: 30 }

article:nth-of-type(31) { order: 31 }
article:nth-of-type(32) { order: 32 }
article:nth-of-type(33) { order: 33 }
article:nth-of-type(34) { order: 34 }
article:nth-of-type(35) { order: 35 }

article:nth-of-type(36) { order: 36 }
article:nth-of-type(37) { order: 37 }
article:nth-of-type(38) { order: 38 }
article:nth-of-type(39) { order: 39 }
article:nth-of-type(40) { order: 40 }

article:nth-of-type(2) header { background:#cccccc }
article:nth-of-type(3) header { background:#ff7200 }
article:nth-of-type(4) header { background:#cccccc }
article:nth-of-type(5) header { background:#ff7200 }

ul { padding: 0 0px }
li.f { list-style: none; padding: 4px 10px; border-bottom: 1px solid #000;
background-color:#fff }
li.more { display: none }

/*p.more-items { padding: 5px 10px ; font-style: italic; cursor: pointer }*/

@media all and (max-width:500px) {
	section {
		flex-flow: column wrap;
	}
	article {
		flex-basis: initial;
	}
}
