/* 

// =============================================================================
// File: synchi.css
// Version: 1.1
// 
// Defines synchi styles and extends some codemirror styles.
// ============================================================================

*/

.CodeMirror {
    line-height: 15px;
    border: 1px solid #DFDFDF;
    width: 97%;
}

.CodeMirror div {
    margin-right: 0px !important;
}

.CodeMirror-scroll {
    width: 100%;
    height: 417px;
}

.synchi_activeline {
    background-color: whitesmoke;
}

#synchi_controls {
    float: left;
    text-align: right;
    padding-top: 4px;
    height: 20px;
    width: 100%;
    background-color: white;
    border-top: 1px solid #DFDFDF;
}

#synchi_controls a {
    width: 16px;
    height: 16px;
    margin-right: 3px;
    border-bottom: 1px solid white;
}

#synchi_controls a:hover {
    border-bottom: 1px solid #DFDFDF;
}

#synchi_controls a.synchi_spacer {
    cursor: default;
}

#synchi_controls a.synchi_spacer:hover {
    border-bottom: 1px solid white;
}

.synchi_fullscreen {  
    position:fixed !important;
    top: 28px !important;
    left: 0px !important;
    bottom: 20px !important;
    width: 100%;
    z-index:1000 !important;
    margin: 0 !important;
}

.synchi_fullscreen .CodeMirror-scroll {
    height: 100% !important;
}

.synchi_mesageBox {
    position: fixed;
    top: 100px;
    left: 50%;
    width: 300px;
    height: 30px;
    margin-left: -150px;
    z-index: 1001;
    background-color: #464646;
    color: #CCC;
    border: 2px solid #464646;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-opacity:.75;
    filter:alpha(opacity=75);
    opacity:.75;
    text-align: center;
    font-weight: bold;
    padding-top: 10px;
}