



* {
	vertical-align: middle;
}

body {
	font-family: Arial, sans-serif;
	font-size: 14px;
	margin: 0;
	overflow: hidden;
}

hr {
	border: 0px;
	border-top: 1px solid #ccc;
}

button {
	position: relative;
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
}

.Panel {
    -moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;

	/* No support for these yet */
	-o-user-select: none;
	user-select: none;
}
.Panel2 {
    -moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;

	/* No support for these yet */
	-o-user-select: none;
	user-select: none;
}

.FancySelect {
	background: #fff;
	border: 1px solid #ccc;
	padding: 0;
	cursor: default;
	overflow: auto;
	outline: none;
}

	.FancySelect .option {
		padding: 4px;
		color: #666;
		white-space: nowrap;
	}

	.FancySelect .option.active {
		background-color: #f8f8f8;
	}

input.Number {
	color: #0080f0;
	font-size: 12px;							/** TODO: Use of !imporant is not ideal **/
	background-color: transparent!important;	/* For now this is a quick fix a rendering issue due to inherited background */
	border: 1px solid transparent;
	padding: 2px;
	cursor: col-resize;
}

#viewport {
	position: absolute;
	top: 32px;
	left: 0px;
	right: 300px;
	bottom: 32px;
}

#menubar {
	position: absolute;
    left:0;
    top:0;
	width: 100%;
	height: 32px;
	background: #eee;
	padding: 0px;
	margin: 0px;
    
    background-image: url('../images/cute_ball_shutdown.png');
    background-size:contain;
    background-repeat: no-repeat;
    background-position:right top;
}

	#menubar .menu {
		float: left;
		width: 60px;
		cursor: pointer;
        padding: 0px;
	}

    #menubar .Panel {
		color: #888;
	}

		#menubar .menu .options {
            border-radius: 6px;
			display: none;
			padding: 5px 0px;
			background: #eee;
			width: 140px;
		}

		#menubar .menu:hover .options {
			display: block;
		}

			#menubar .menu .options hr {
				border-color: #ddd;
			}

			#menubar .menu .options .option {
				color: #666;
				background-color: transparent;
				padding: 5px 10px;
				margin: 0px !important;
			}

				#menubar .menu .options .option:hover {
					color: #fff;
					background-color: #08f;
				}


#sidebar {
	position: absolute;
	right: 0px;
	top: 32px;
	bottom: 0px;
	width: 300px;
	background: #eee;
	overflow: auto;    
}

	#sidebar input,
	#sidebar textarea,
	#sidebar select {
		 /*background: #ccc; */
	}

    #sidebar .Panel {
		margin-bottom: 10px;
	}

    #sidebar > .Panel {
        position: fixed;
        right: 0px;
        top: 32px;
        bottom: 0px;
        width: 280px;
		color: #888;
        padding: 10px;
		border-top: 1px solid #ccc;
	}

    #sidebar .Panel2 {
    	margin-bottom: 10px;
	}
    #sidebar > .Panel2 {
        position: fixed;
        right: 0px;
        top: 32px;
        bottom: 0px;
        width: 280px;
		color: #888;
        padding: 10px;
		border-top: 1px solid #ccc;
	}

	#sidebar #outliner {
		width: 100%;
		height: 140px;
		color: #444;
		font-size: 12px;
	}

#toolbar {
	position: absolute;
	left: 0px;
	right: 300px;
	bottom: 0px;
	height: 32px;
	background: #eee;
	color: #333;
}

	#toolbar .Panel {
		padding: 4px;
		color: #888;
	}

	#toolbar button {
		margin-right: 6px;
	}
    

.tabs {
    position: fixed;
    right: 0px;
    top: 32px;
    bottom: 0px;
    width: 300px;
    color: #888;
    padding: 10px;
    border-top: 0px solid #ccc;
    background: transparent; 
   clear: both;
}
.tab {
  float: left;
}
.tab label {
  background: #eee; 
  padding: 10px; 
  border: 1px solid #ccc; 
  margin-left: -1px; 
  position: relative;
  left: 0px; 
}
.tab [type=radio] {
  display: none;   
}
.content {
  position: absolute;
  top: 28px;
  left: 0;
  background: #eee;
  right: 0;
  bottom: 0;
  padding: 10px;
  border-top: 1px solid #aaa; 
}
[type=radio]:checked ~ label {
  background: linear-gradient(#FFFFFF, #eee);
  border-bottom: 1px solid #eee;
  z-index: 2;
}
[type=radio]:checked ~ label ~ .content {
  z-index: 1;
}

    
    
