
html {
    background: -webkit-gradient(linear, left top, right top, from(rgb(0, 137, 40)), to(rgb(0, 137, 143)));
    background: -moz-linear-gradient(left, rgb(0, 137, 40), rgb(0, 137, 143));
}

.note-draggable {
    cursor: move;
}
.note {
    border: 0px solid white;
    
    width: 300px;
    max-height: 500px;
    
    position: absolute !important;
}
.note-head {
    padding: 2px;
    height: 20px;
    webkit-moz-border-radius: 5px 5px 0 0;
    moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

.note-body {
    max-height: 474px;
    height: auto;
    word-wrap: break-word; 
    word-break: normal; 
    overflow-y: auto;
    padding: 0 10px;   
    background-color: rgba(255, 250, 0, 1);
    webkit-moz-border-radius: 0 0 5px 5px;
    moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    -webkit-box-shadow: 2px 2px 10px #A8ABAB;
    -moz-box-shadow: 2px 2px 10px #A8ABAB;
    box-shadow: 2px 2px 10px #A8ABAB;
}
.note-title {
    display: inline-block;
    position: absolute;
    left: 0.5em;
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 65%;
}
.note-color {
    display: inline-block;
    float: right;
    padding-right: 5px;
    cursor: pointer;
}

.note-add {
    display: inline-block;
    float: right;
    padding-right: 5px;
    cursor: pointer;
}
.note-fold {
    display: inline-block;
    float: right;
    padding-right: 5px;
    cursor: pointer;
}
.note-delete {
    display: inline-block;
    float: right;
    padding-right: 5px;
    cursor: pointer;
}

::-webkit-scrollbar {
    width: 10px;
    background: -webkit-gradient(linear,left top,right top,color-stop(0%,rgba(202,202,202,0.07)),color-stop(100%,rgba(229,229,229,0.07)));
    background: -webkit-linear-gradient(left,rgba(202,202,202,0.07) 0%,rgba(229,229,229,0.07) 100%);
    -webkit-box-shadow: 0 0 1px 0 rgba(0,0,0,.15) inset,0 1px 0 0 #fff;
    -moz-box-shadow: 0 0 1px 0 rgba(0,0,0,.15) inset,0 1px 0 0 #fff;
    box-shadow: 0 0 1px 0 rgba(0,0,0,.15) inset,0 1px 0 0 #fff;
    background-color: #e5e5e5;
}
::-webkit-scrollbar, ::-webkit-scrollbar-thumb {
    overflow: visible;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #a6a6a6;
}
::-webkit-scrollbar-thumb {
    background: -webkit-gradient(linear,left top,right top,color-stop(0%,rgba(233,233,233,0.05)),color-stop(100%,rgba(221,221,221,0.05)));
    background: -webkit-linear-gradient(left,rgba(233,233,233,0.05) 0%,rgba(221,221,221,0.05) 100%);
    -webkit-box-shadow: 0 2px 1px 0 rgba(0,0,0,.05);
    -moz-box-shadow: 0 2px 1px 0 rgba(0,0,0,.05);
    box-shadow: 0 2px 1px 0 rgba(0,0,0,.05);
    background-color: #e9e9e9;
}
::-webkit-scrollbar, ::-webkit-scrollbar-thumb {
    overflow: visible;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #a6a6a6;
}
::-webkit-scrollbar-button {
    height: 0;
    display: block;
    background-color: transparent;
}

.orange {
	color: #fef4e9;
	border: solid 1px #da7c0c;
	background: #f78d1d;
	background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
	background: -moz-linear-gradient(top,  #faa51a,  #f47a20);
	filter:  progid: DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');
}
.orange:hover {
	background: #f47c20;
	background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
	background: -moz-linear-gradient(top,  #f88e11,  #f06015);
	filter:  progid: DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');
}
.orange:active {
	color: #fcd3a5;
	background: -webkit-gradient(linear, left top, left bottom, from(#f47a20), to(#faa51a));
	background: -moz-linear-gradient(top,  #f47a20,  #faa51a);
	filter:  progid: DXImageTransform.Microsoft.gradient(startColorstr='#f47a20', endColorstr='#faa51a');
}

#output {
    position: absolute;
    width: 90%;
    height: 90%;
    z-index: 10000;
    padding: 5px;
    word-wrap: break-word;
    display: none;
    background-color: #EAEAEA;
}

.color-picker {
    z-index: 200;
    position: absolute;
    display: none;
    width: 120px;
    padding: 5px;
    background-color: white;
}

.color-block {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 5px;
    cursor: pointer;
}

.pop-closer {
    color: gray;
    float: right;
    cursor: pointer;
}

.pop-toolbar {
    height: 15px;
    padding-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #DDDDDD;
}

.round-corner {
moz-border-radius: 5px;
webkit-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0px 1px 3px #A8ABAB;
-moz-box-shadow: 0px 1px 3px #A8ABAB;
box-shadow: 0px 1px 3px #A8ABAB;
}
