html {
	height: 100%;
	width: 100%;
	overflow: hidden;
}

::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	overflow: visible;
}

::-webkit-scrollbar-track {
	background-clip: padding-box;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3)
}

::-webkit-scrollbar-track:hover {
	background-color: rgba(0,0,0,.05);
	box-shadow: inset 1px 0 0 rgba(0,0,0,.1);
}

::-webkit-scrollbar-track:active {
	background-color:rgba(0,0,0,.05);
	box-shadow:inset 1px 0 0 rgba(0,0,0,.14),inset -1px 0 0 rgba(0,0,0,.07);
}

::-webkit-scrollbar-thumb {
	background-color: rgba(0,0,0,.4);
	background-clip: padding-box;
	min-height: 28px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

::-webkit-scrollbar-button {
	height: 0;
	width: 0;
}

::-webkit-scrollbar-corner {
	background: transparent;
}

body {
	width: 100%;
	height: 100%;
	min-width: 800px;
	min-height: 500px;
	position: relative;
	overflow: hidden;
	font-size: 1em;
	padding: 0;
	margin: 0;
}

#desktop_bg {
	background-color: #5d6c7f;
}

#desktop_bg,
#desktop_view {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

#desktop_view {
	z-index: 2;
}

#desktop_sensor_n,
#desktop_sensor_e,
#desktop_sensor_s,
#desktop_sensor_w,
#desktop_sensor_nw,
#desktop_sensor_ne,
#desktop_sensor_sw,
#desktop_sensor_se {
	position: absolute;
	overflow: hidden;
	z-index: 3999;
	opacity: 0.01;
	filter: alpha(opacity=1);
	background: #fff;
	cursor: default;
}

#desktop_sensor_n,
#desktop_sensor_s {
	width: 100%;
	height: 5px;
	left: 0;
}

#desktop_sensor_s {
	bottom: 0;
}

#desktop_sensor_e,
#desktop_sensor_w {
	width: 5px;
	height: 100%;
	top: 0;
}

#desktop_sensor_e {
	right: 0;
}

#desktop_sensor_nw,
#desktop_sensor_ne,
#desktop_sensor_sw,
#desktop_sensor_se {
	width: 10px;
	height: 10px;
	z-index: 4000;
}

#desktop_sensor_nw {
	top: 0;
	left: 0;
}

#desktop_sensor_ne {
	top: 0;
	right: 0;
}

#desktop_sensor_sw {
	bottom: 0;
	left: 0;
}

#desktop_sensor_se {
	bottom: 0;
	right: 0;
}

#desktop_view_main {
	height: 100%;
	width: 100%;
	overflow: hidden;
	position: relative;
}

#global_console {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	display: none;
}

#global_console.active {
	display: block;
}

#global_console .console_bg {
	width: 100%;
	height: 100%;
	opacity: 0.01;
	filter: alpha(opacity=1);
}

#global_console .console_main {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#desktop_app_list,
#desktop_app_list .vuiListItem {
	padding: 0;
	margin: 0;
}

#desktop_app_list {
	position: relative;
	list-style: none;
	height: 100%;
}

#desktop_app_list .vuiListItem {
	position: absolute;
	width: 88px;
	height: 88px;
	overflow: hidden;
	border-radius: 5px;
}

#desktop_app_list .uiApp {
	text-align: center;
	outline: none;
	width: 100%;
	height: 100%;
}

#desktop_app_list .uiApp .app_icon {
	width: 48px;
	height: 48px;
	margin: 6px auto;
	opacity: 0.9;
	filter: alpha(opacity=90);
}

#desktop_app_list .uiApp .app_name {
	font-size: 14px;
	font-weight: bold;
	color: #f4f4f4;
}

#desktop_app_list .vuiListItemHover .uiApp {
	background-repeat: repeat-x;
	background-image: -moz-radial-gradient(rgba(255,255,255,1) 0%, rgba(255,255,255,0.01) 60%);
	background-image: -webkit-radial-gradient(rgba(255,255,255,1) 0%, rgba(255,255,255,0.01) 60%);
	background-image: -ms-radial-gradient(rgba(255,255,255,1) 0%, rgba(255,255,255,0.01) 60%);
	background-image: -o-radial-gradient(rgba(255,255,255,1) 0%, rgba(255,255,255,0.01) 60%);
}

#desktop_app_list .vuiListItemSelected {
	#background-color: #f4f4f4;
	background-image: -moz-linear-gradient(top, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.5));
	background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.5));
	background-image: -ms-linear-gradient(top, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.5));
	background-image: -o-linear-gradient(top, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.5));
}

#desktop_app_list .vuiListItemHover .app_icon {
	opacity: 1;
	filter: alpha(opacity=100);
}

.vuiRangeSelector {
	border-width: 3px;
	border-color: cyan;
	background: transparent;
}