
.rkt-ui-tooltip {
	display: inline-block;
	padding: 5px;
	background-color: white;
	border-radius: 5px;
	position: absolute;
	-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.35);
	-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.35);
	box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.35);
}

.rkt-ui-shutter {
	display: inline-block;
	padding: 5px;
	background-color: white;
	position: absolute;
	border: 1px solid grey;
	-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.35);
	-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.35);
	box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.35);
}

.rkt-ui-toolbar {
	display: block;
	padding: 5px;
	background-color: wheat;
	border: 3px double grey;
	border-radius: 3px;
}

.rkt-ui-toolbar .toolbar-head {
	height: 16px;
	background-color: tan;
	margin-bottom: 4px;
}

.rkt-ui-toolbar .toolbar-head .toolbar-title {
	color: white;
	font-weight: bold;
	font-size: x-small;
	padding: 2px;
	display: inline-block;
}

.rkt-ui-toolbar .toolbar-head .toolbar-shrinker-action {
	float: right;
	height: 16px;
	width: 16px;
	border-left: 4px solid wheat;
	background-color: tan;
	text-align: center;
	font-weight: bold;
	color: white;
	cursor: pointer;
}
.rkt-ui-toolbar .toolbar-head .toolbar-shrinker-action:before {
	content: "\2191";
}
.rkt-ui-toolbar .toolbar-head .toolbar-shrinker-action.shrinked-on:before {
	content: "\2193";
}
