#context-menu{
	position: fixed;
	padding: 3px;
	border: solid #888 1px;
	background: #FFF;
	box-shadow: 1px 1px 2px #999;
	z-index: 1200;
	overflow: hidden;
	border-radius: 7px;
	box-sizing: border-box;
}

#context-menu.transitioning{
	transition: width 0.1s ease-out, height 0.1s ease-out, left 0.1s ease-out, top 0.1s ease-out, opacity 0.1s ease-out;
}

#context-menu > div{
	padding: 7px;
	cursor: pointer;
	font-size: 11px;
}

#context-menu > div.selected{
	background: #FFDD9C;
}