#adminLink {
	position: absolute;
	float: right;
	top: 0px;
	right: 0px;
	z-index:9999;
}

#catBox {
	width: 500px;
	height: 300px;
	overflow: auto;
	background: white;
	resize: both;
}

.catItem {
	width: auto;
	border: solid black 4px;
	z-index:100;
}


#selectedItem {
	background: #0066ff;
	color: white;
}

#selectedItem:hover {
	background: #3399ff;
	color: black;
}

.cat {
	background: #669900;
	color: white;
}

.cat:hover {
	background: #99cc00;
	color: black;
}

.sub {
	background: #ff9900;
	color: white;
}

.sub:hover {
	background: #ffcc00;
	color: black;
}

.art {
	background: #990033;
	color: white;
}

.art:hover {
	background: #cc0066;
	color: black;
}

.delButton {
	display: inline;
	float: right;
	background: red;
	color: white;
	text-align: center;
	width: 20px;
	z-index:101;

}

.delButton:hover {
	background: #ff5050;

}

.addButton {
	background: green;
	color: white;
	text-align: center;
	width: 150px;
	
}

.addButton:hover {
	background: #33cc33;
	color: black;

}


