<!--

.sandboxpanel {
    background-color:#eee;
	position: relative;
    width: 100%;
    height: auto;
    /* overflow: auto; */
    min-height: 500px;
    min-width: 550px;
}

/*container*/
.textareacontainer {
    position: absolute;
    float:left;
	top: 0px;
    padding: 10px;
    width: 45%;
    height: 100%;
}
.runcontainer {
    position: absolute;
	top: 0px;
	left: 50%;
    padding: 10px;
	width: auto;
    height: 100%;
}
.iframecontainer {
    position: absolute;
    float: right;
	top: 0px;
	right: 0px;
    padding: 10px;
	width: 45%;
    height: 100%;
}

/*fixer container*/
.textareaWrapper {
    BORDER-TOP: #ccc 1px solid; 
    BORDER-RIGHT: #ccc 1px solid; 
    BORDER-BOTTOM: #ccc 1px solid; 
    BORDER-LEFT: #ccc 1px solid; 
    min-height: 400px;
    width:auto;
    padding:2px;
    resize: none;
    /* overflow:auto; */
}

.buttonWrapper {
    position: relative;
	float: left;
	top: 45%;
	left: -65%;
    width:auto;
    padding:8px;
    resize: none;
    overflow:auto;
}

.iframeWrapper {
    background-color: #ffffff;
	BORDER-TOP: #ccc 1px solid; 
    BORDER-RIGHT: #ccc 1px solid; 
    BORDER-BOTTOM: #ccc 1px solid; 
    BORDER-LEFT: #ccc 1px solid; 
    min-height: 400px;
    width:auto;
    padding:2px;
    resize: none;
    overflow:auto;
}

/* items */
.headerText {
    width:auto;
    color: #369;
    padding: 7px 0px 0px 7px;
    font-weight: bold;
    font-family:verdana;
    font-size:1em;
    line-height:3;
}

.textareaCode {
    background-color: #ffffff;
    font-family: "New Courier", Courier;
    font-size:15px;
    width:100%;
    min-height: 400px;
    padding:8px;
    border:none;
    overflow:auto;
}
.textareaCode:focus {
    background-color:#f3f9f6;
}

.btn_run {
    width: 50px;
    text-align: center;
    font-size:12px;
    background-color:#f3f3f3;
    color: #003399;
    border: 1px solid #003399;
    padding: 2px 5px;
    cursor: pointer;  
}
.btn_run:hover {
    color: #ffffff;
    background-color: #003399;
}

#iframeResult {
    background-color: #ffffff;
    width:100%;
    min-height: 400px;
    border:none;
    overflow:auto;
}


-->