.table {
	display: flex;
	flex-flow: column nowrap;
	font-size: 1.33em;
	line-height: 1.5;
	}

.book {
	width: 65em;
	display: flex;
	flex-flow: column nowrap;
	border-bottom: 1px #8b8b8b solid;
}

	/*
.book:nth-of-type(even) {
	background-color: #dadcd1;
}

.book:nth-of-type(odd) {
	background-color: #dadcd1;
}
*/

.row {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}

.title, .format, .isbn, .detail, .full, .ff, .bf, .nb, .google {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 0.5em;
	text-transform: uppercase;
	font-size: 0.75em;
}

.title {
	flex: 0 0 225px;
}

.format {
	flex: 0 0 100px;
	justify-content: center;
	text-align: center;
	}

.isbn {
	flex: 0 0 125px;
}

.detail {
	flex: 0 0 255px;
}

.full {
	width: auto;
	}

.ff, .nb, .bf, .google {
	flex: 0 0 80px;
	justify-content: center;
	text-align: center;
}

a {
	font-weight: 600;
	outline: 0;
	color : #266c8e;
	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	transition: all 0.1s ease;
	text-decoration: none;
}

a:hover { 
	font-weight: 700;
	color: #000;
}