
.calculation-toolbar {
    background-color: #fafafa;
    padding: 2px 4px;
    display: block;
    border: 1px solid #d4d4d4;
    overflow: auto;
}

#calculation-container {
    margin-top: 16px;
    margin-left: 32px;
    width: 690px;

}

.calculation-document {
    width: 690px;
    height: 400px;
    margin: 0 auto;
    overflow-y: scroll;
}

.doc-container {
    width: 640px;
    margin: 0 auto;
    position: relative;
    margin-top: 16px;
}

.doc-annotations {
    position: absolute;
    top: 0;
    left: 0;
}

.doc-svg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.doc-svg textarea {
    border: 1px dashed #FF7A00;
    font-size: 16px !important;
}

.doc-page {
    width: 640px;
    box-shadow: 2px 2px 10px #D3D3D3;
    margin-bottom: 16px;
}

#canvascolours {
    margin-top: 3px;
    float: left;
}

#canvascolours [data-colour] {
    border: 1px solid #000000;
    cursor: pointer;
    float: left;
    height: 18px;
    margin-right: 6px;
    width: 18px;
}


.calculation-toolbar ul {
    list-style-position: inside;
    list-style-type: none;
    float: left;
    width: 100%;
}

.calculation-toolbar ul li {
    display: block;
    float: left;
    margin-left: 2px;
}

.calculation-toolbar ul li a {
    width: 24px;
    height: 24px;
    display: block;
    border: 1px solid #d4d4d4;
}

.calculation-toolbar ul li a:hover {
    border: 1px outset #d4d4d4;
}

.calculation-toolbar ul li a:active {
    border: 1px inset #d4d4d4;
}

.calculation-toolbar ul li.tool-separator {
    border-right: 1px solid #d4d4d4;
    display: block;
    height: 22px;
    margin-right: 4px;
    margin-top: 2px;
    width: 4px;
}

.calculation-toolbar ul li.tool-active {
    background-color: #fefefe;
}

.calculation-toolbar ul li.tool-active a {
    border-style: inset;
}

.tool-icon-drag {
    background: url(../img/tools/move-tool.png) no-repeat center center;
}
.tool-icon-text {
    background: url(../img/tools/type-tool.png) no-repeat center center;
}
.tool-icon-remove {
    background: url(../img/tools/eraser-tool.png) no-repeat center center;
}
.tool-icon-draw {
    background: url(../img/tools/brush-tool16.png) no-repeat center center;
}
.tool-icon-line {
    background: url(../img/tools/pencil-tool.png) no-repeat center center;
}
.tool-icon-stamp {
    background: url(../img/tools/clone-stamp-tool.png) no-repeat center center;
}
.tool-icon-cancel {
    background: url(../img/tools/icon-cancel.png) no-repeat center center;
}
.tool-icon-ok {
    background: url(../img/tools/icon-check.png) no-repeat center center;
}
.tool-icon-clear {
    background: url(../img/tools/user-trash.png) no-repeat center center;
    float: right !important;
}