
body {
  overflow: hidden;
  background-color: #999;
}

.leap {
  background-color: #b9b9b9;
  background-image: -webkit-linear-gradient(top, #dcdcdc 0%, #b9b9b9 100%);
  background-image: -moz-linear-gradient(top, #dcdcdc 0%, #b9b9b9 100%);
  border: 1px #999 solid;
  border-radius: 3px 3px;
  padding: 1px;
}

/*
 * File Browser
 */

#browser {
  position: absolute;
  z-index: 0;
  top: 24px;
  bottom: 0;
  left: 0;
  width: 200px;
  background-color: #d1d9e1;
  background-image: -webkit-linear-gradient(top, #e7ebf1 0%, #d1d9e1 100%);
  background-image: -moz-linear-gradient(top, #e7ebf1 0%, #d1d9e1 100%);
  border-top: 1px #999 solid;
  font-family: "Lucida Grande", Helvetica, Arial;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: hidden;
}

#browser ul {
  list-style: none;
  margin: 0;
  padding: 0px 0px 0px 0px;
}

#browser li {
  padding: 3px 0 3px 10px;
  cursor: pointer;
  white-space: nowrap;
}
#browser li:hover {
  color: #4a00f9;
}

#browser li.selected {
  background-color: #8094bb;
  background-image: -webkit-linear-gradient(top, #abbad7 0%, #8094bb 100%);
  background-image: -moz-linear-gradient(top, #abbad7 0%, #8094bb 100%);
  color: white;
}
#browser li.selected:hover {
  /*color: #4a00f9;*/
}

#browser li.dirty {
  /*font-style: italic;*/
  font-weight: bold;
}
#browser li.dirty::after {
  content: url(../img/new_2.png);
  vertical-align: -2px;
  display: inline;
  line-height: 0px;
  padding-left: 4px;
}

#browser li img {
  vertical-align:text-bottom;
}

#browser a {
  text-decoration: none;
  color: black;
}

li.remote img {
  /*background-color: red;*/
}
li.local img {
  /*background-color: green;*/
}

li.separator {
  padding: 1px 0 1px 8px !important;
  cursor: default !important;
  color: lightgray !important;
  background-color: #979797;
  background-image: -webkit-linear-gradient(top, #979797 0%, #BFBFBF 100%);
  background-image: -moz-linear-gradient(top, #979797 0%, #BFBFBF 100%);
  /*border: 1px dashed red !important;*/
}

li.separator:hover {
  color: white !important;
}

li.separator a:hover {
  color: #4a00f9 !important;
}

.clickMenu li.disabled:hover > span.liArrow {
  color: #BBB;
}
.clickMenu li.disabled > span.liArrow {
  color: #BBB;
}

.clickMenu .btn {
  **padding: 0px 7px !important;
  padding: 1px 10px !important;
  line-height: 0px;
  margin: 2px 2px;
  border: 1px solid gray;
  border-radius: 7px;
  **box-shadow: 0px 0px 2px gray inset;
  box-shadow: 0px 0px 3px #999 inset, 0px 0px 6px white;
}

.clickMenu li .itemcheck {
  width: 10px;
  display: inline-block;
  text-decoration: none;
  margin-left: -9px;
  margin-right: 0px;
}

/*
 * Editor
 */

#editor-outer {
  z-index: -20;
  border-top: 10px solid #e8e8e8;
  margin: 0;
  position: absolute;
  top: 24px;
  bottom: 200px;
  left: 200px;
  right: 0;
}

#editor {
  z-index: -20;
  margin: 0;
  position: absolute;
  top: 0px;
  bottom: 3px;
  left: 0px;
  right: 0px;
  background-color: white;
}

/* outer per la textarea */
#editor-outer-ta {
  border-top: 10px solid #e8e8e8;
  margin: 0;
  position: absolute;
  top: 24px;
  bottom: 200px;
  left: 200px;
  right: 0;
  --padding-bottom: 3px;
}
#editor.textarea {
  font-family: "Menlo", "Courier New", Courier, monospace;
  font-size: 12px;
  border: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  position: absolute;
  top: 0px;
  left: 0px;
}

/*
 * Guide
 */

#guide-outer {
  z-index: -10;
  position: absolute;
  background-color: rgba(220, 220, 220, .5);
  top: 24px;
  right: 14px;
  width: 300px;
  border-left: 1px #999 solid;
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  border-radius: 0px 0px 10px 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

#guide {
  padding: 4px 6px;
  font-family: "Lucida Grande", Helvetica, Arial;
  font-size: 13px;
  overflow: auto;
}

#guide-handle {
  text-align: center;
  font-family: Verdana;
  font-size: 10px;
  line-height: 11px;
  cursor: pointer;
}

#guide code {
  border: 1px #ccc solid;
  padding: 0 .2em;
  background-color: #ebebeb;
}

#guide a {
  text-decoration: none;
  color: blue;
}

#guide a:hover {
  text-decoration: underline;
}


/*
 * Console
 */

#console-outer {
  z-index: -50;
  position: absolute;
  height: 200px;
  bottom: 0;
  left: 200px;
  right: 0;
  /*border-top: 2px #999 solid;*/
}

#console {
  z-index: -30;
  position: absolute;
  top: 0px; /*21px;*/
  bottom: 0px;
  left: 0px;
  right: 50%;
  padding-right: 6px;
  background-color: rgb(240,240,255);
  /*border-right: 3px solid #999;*/
}

#consolecnt {
  overflow: auto;
  font-family: "Menlo", Monaco, "Courier New", monospace;
  font-size: 12px;
  color: black;
  padding: 4px 0px 0px 4px;
  bottom: 0px;
  top: 0px;
  right: 3px;
  left: 0px;
  position: absolute;
  white-space: nowrap;
  margin: 0px;
}

#consolecnt .line {
  /* border-bottom: 1px solid lightgray;
  display: inline-block; */
  cursor: pointer;
  line-height: 15px;
  white-space: pre;
}
#consolecnt .line:hover {
  background-color: white;
  border: 1px solid red;
  margin: -1px -1px -1px -1px;
  border-radius: 2px;
}
#consolecnt .line:hover i {
  color: red !important;
}

.ui-resizable-e { cursor: e-resize; width: 3px; right: 0px; top: 0px; height: 100%;
  background-color: #999;
}
.ui-resizable-s { cursor: s-resize; height: 3px; width: 100%; bottom: 0px; left: 0px;
  background-color: #999;
}
/*
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0px; }
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0px; height: 100%; }
*/

.resizable {
  overflow: hidden;
}

#tracktable {
  z-index: -40;
  position: absolute;
  top: 0px; /*21px;*/
  bottom: 0;
  left: 50%;
  right: 0;
  padding: 4px 6px;
  font-family: "Menlo", Monaco, "Courier New", monospace;
  font-size: 10px;
  color: black;
  overflow: auto;
  background-color: rgb(240,240,255);
  cursor: default;
  --border: 1px cyan dashed;
}

#tabletracktable {
  border-collapse: collapse;
}

#tabletracktable td {
  border: solid 1px gray;
  white-space: nowrap;
}

#tabletracktable th {
  border: solid 1px gray;
  white-space: nowrap;
}

.ace-tm * {
  font-family: Menlo, 'Courier New', Courier, monospace;
}
/*.ace-tm .ace_line*/ .ace_keyword {
  font-weight: bold;
  color: blue;
  font-family: Menlo, 'Courier New', Courier, monospace;
}
.ace-tm .ace_line .ace_support.ace_function {
  color: rgb(255, 0, 0) !important;
}

.ace_debug-line {
  background-color: yellow;
}

.ace_breakpoint {
  /* background-color: yellow; */
  background-image: url('../img/arrow_right.png');
  background-repeat: no-repeat;
  background-position: 8px 0px;
  /*border-top: dashed 1px gray;
  border-bottom: dashed 1px gray;*/
}



/* LOGIN E REGISTRAZIONE */

/*
#login-form label { color: gray; display: block; }
#login-form input.text { display: block; margin-bottom: 6px; width: 95%; padding: .4em; }
#login-form fieldset { padding: 0; border: 0; margin-top: 5px; }
#login-form .ui-dialog .ui-state-error { padding: .3em; }
#login-form .validateTips { border: 1px solid transparent; padding: 0.3em; }

#saveas-form label { color: gray; display: block; }
#saveas-form input.text { display: block; margin-bottom: 6px; width: 95%; padding: .4em; }
#saveas-form fieldset { padding: 0; border: 0; margin-top: 5px; }
#saveas-form .ui-dialog .ui-state-error { padding: .3em; }
#saveas-form .validateTips { border: 1px solid transparent; padding: 0.3em; margin-bottom: 0px; text-align:center; }
*/
.modalDialog { display:none; }
.modalDialog label { color: gray; display: block; }
.modalDialog input.text { display: block; margin-bottom: 6px; width: 95%; padding: .4em; }
.modalDialog fieldset { padding: 0; border: 0; margin-top: 5px; }
.modalDialog .ui-dialog .ui-state-error { padding: .3em; }
.modalDialog .validateTips { font-style: italic; border: 1px solid transparent; padding: 0.3em; margin-bottom: 0px; text-align:center; }
.ui-dialog {box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.5);}

/* LINGUETTA ERRORE */

#error {
  bottom: -1px;
  position: absolute;
  width: 90%;
  margin-left: 5%;
  border-top-left-radius: 5px 5px;
  border-top-right-radius: 5px 5px;
  border-bottom-right-radius: 0px 0px;
  border-bottom-left-radius: 0px 0px;
  border-bottom-width: 0px;
  opacity: .70; filter:Alpha(Opacity=70);
}

#error-1 {
  padding-top:    6px;
  padding-right:  4px;
  padding-bottom: 3px;
  padding-left:   6px;
}

#errortext {
  overflow: auto;
  font-size: 10px;
  white-space: pre-line;
  color: gray;
}
#errortext span:first-child {
  color: #cd0a0a;
}

#errortext::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

#errortext::-webkit-scrollbar-track {
    X-webkit-box-shadow: inset 0 0 4px rgba(0,0,0,0.3);
    border-radius: 4px;
    --margin: 1px
}

#errortext::-webkit-scrollbar-thumb {
    border-radius: 4px;
    X-webkit-box-shadow: inset 0 0 4px rgba(0,0,0,0.8);
    background-color: gray;
}

#errorhandle {
  cursor: pointer;
  top: -8px;
  left: -10px;
  position: absolute;
  width: 19px;
  height: 7px;
  margin-left: 50%;
  margin-right: 50%;
  border-top-left-radius: 5px 5px;
  border-top-right-radius: 5px 5px;
  border-bottom-right-radius: 0px 0px;
  border-bottom-left-radius: 0px 0px;
  border-bottom-width: 0px;
}

#browsercnt {
  overflow: auto;
  height: 100%;
  margin-right: 2px;
}

#filetree {
  x-overflow: auto;
  x-height: 100%;
  x-margin-right: 3px;
  display: table;
  width: 100%;
  padding-right: 1px;
}
#browsercnt::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
#browsercnt::-webkit-scrollbar-track {
    X-webkit-box-shadow: inset 0 0 4px rgba(0,0,0,0.3);
    border-radius: 4px;
    --margin: 1px
}
#browsercnt::-webkit-scrollbar-thumb {
    border-radius: 4px;
    X-webkit-box-shadow: inset 0 0 4px rgba(0,0,0,0.8);
    background-color: gray;
}


/*
  background-color: rgb(255, 255, 255)
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: gray;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: gray;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: gray;

#console-control {
  position: absolute;
  height: 20px;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px #999 solid;
  background-color: #d1d1d1;
  background-image: -webkit-linear-gradient(top, #eaeaea 0%, #d1d1d1 100%);
  background-image: -moz-linear-gradient(top, #eaeaea 0%, #d1d1d1 100%);
  text-align: right;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.console-clear-button {
  --position: absolute;
  --top: 2px;
  --right: 4px;
  float: right;
  border: 1px #aaa solid;
  border-radius: 12px;
  background-color: #e3e3e3;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #e3e3e3 100%);
  background-image: -moz-linear-gradient(top, #f9f9f9 0%, #e3e3e3 100%);
  padding: 1px 9px;
  margin: 2px;
  font-family: "Lucida Grande", Helvetica, Arial;
  font-size: 10px;
  text-decoration: none;
  color: #000;
}


/*
 * Control Bar
 * /

#control {
  display: none;
  visibility: hidden;
  position: absolute;
  height: 47px;
  top: 24px;
  left: 0;
  right: 0;
  background-color: #b9b9b9;
  background-image: -webkit-linear-gradient(top, #dcdcdc 0%, #b9b9b9 100%);
  background-image: -moz-linear-gradient(top, #dcdcdc 0%, #b9b9b9 100%);
  border-bottom: 1px #777 solid;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-family: "Lucida Grande", Helvetica, Arial;
  font-size: 12px;
  color: #222;
}

#control-run {
  -position: absolute;
  -top: 8px;
  -left: 9px;
  background-image: url('../img/run.png');
  background-repeat: no-repeat;
  height: 32px;
  -width: 60px;
  line-height: 32px;
  text-align: right;
  cursor: pointer;
  padding-left: 34px;
  margin-top: 8px;
  margin-left: 9px;
  float: left;
}

#control-undo {
  -position: absolute;
  -top: 8px;
  -left: 90px;
  background-image: url('../img/undo.png');
  background-repeat: no-repeat;
  height: 32px;
  -width: 68px;
  line-height: 32px;
  text-align: right;
  cursor: pointer;
  padding-left: 34px;
  margin-top: 8px;
  margin-left: 9px;
  float: left;
}

#control-redo {
  -position: absolute;
  -top: 8px;
  -left: 171px;
  background-image: url('../img/redo.png');
  background-repeat: no-repeat;
  height: 32px;
  -width: 66px;
  line-height: 32px;
  text-align: right;
  cursor: pointer;
  padding-left: 34px;
  margin-top: 8px;
  margin-left: 9px;
  float: left;
}

#control-run.pushed {
  background-image: url('../img/run_pushed.png') !important;
}

#control-undo.pushed {
  background-image: url('../img/undo_pushed.png') !important;
}

#control-redo.pushed {
  background-image: url('../img/redo_pushed.png') !important;
}



*/


