﻿*:not(input) {
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

html, body {
    margin: 0;
    padding: 0;
    font: 14px/1.5em simsun;
    /*overflow: hidden;*/
}

.tab-pane {
    position: relative;
}

.fcanvas {
    position: relative;
    left: 0px;
    top: 0px;
    z-index: 9;
    border: 2px dashed #ccc;
    background: #fff;
    transform-origin: 0 0;
}

.transparent {
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
}

.box {
    width: 200px;
    height: 100px;
    cursor: move;
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 99;
}

    .box .bg {
        width: 100%;
        height: 100%;
        background-color: orange;
    }

    .box .coor {
        width: 10px;
        height: 10px;
        overflow: hidden;
        cursor: se-resize;
        position: absolute;
        right: 0;
        bottom: 0;
        background-color: red;
    }

    .box .content {
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 99;
        text-align: center;
        font: bold 14px/1.5em simsun;
        padding: 2px;
    }

#debug {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 88;
    border: 1px solid #ccc;
    width: 100px;
    height: 100px;
    background: #fff;
}

#toolbar {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 88;
}

.msg {
	position: fixed;
	top: 46%;
	left: 49%;
	padding: 10px;
	color: yellow;
	background-color: #633858;
	border: 1px solid #666;
	border-radius: 3px;
	z-index: 100;
	box-shadow: 0px 0px 5px -2px blue;
}