ul#kinds {
	list-style-type: none;
	
	padding: 0;
}

#drinks li {
	float: left;
	
	padding: 0 10px;
	
	cursor: default;
	
	font-weight: bold;
	font-size: larger;
	
	transition: color .5s, background-color .5s;
	-webkit-transition: color .5s, background-color .5s;
	-moz-transition: color .5s, background-color .5s;
	-o-transition: color .5s, background-color .5s;
	
	border-radius: 5px 5px 0px 0px;
}

#drinks li:hover {
	background-color: rgba(255,255,255,0.33);
}

#drinks li.selected {
	color: rgb(178,0,100);
	background-color: white;
}

#drinks #drinkstab {
	margin-top: 4px;
	padding: 6px;
	border-top: 1px solid white;
	border-left: 1px solid white;
}

#drinks div.drinktab {
	display: none;
}

#drinks table {
	width: 100%;
}

#drinks table tr:nth-child(even) td {
	background-color: rgba(255,255,255,0.167);
}

#drinks table tr td {
	width: 16.667%;
	
	text-align: right;
	
	padding: 1px;
}

#drinks table tr:first-child td {
	padding-top: 0;
}

#drinks table tr:last-child td {
	padding-bottom: 0;
}

#drinks table td:first-child {
	width: 50%;
	
	text-align: left;
}
