/* 

// =============================================================================
// File: synchi_editor.css
// Version: 1.1
// 
// Defines Synchi Editor styles
// ============================================================================

*/

.CodeMirror {
    background-color: white;
}

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

.synchi_full_screen .CodeMirror {
    height: 100% !important;
}

.synchi_editor_controls {
    height: 30px;
    padding-top: 10px;
    background-color: #f5f5f5;
    padding-left: 30px;
}

.synchi_editor_controls a {
    background-color: whitesmoke;
    padding-top: 7px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 2px;
    border: 1px solid lightGrey;
    border-radius: 3px;
    -moz-border-radius: 3px;
}

.synchi_editor_controls a img {
    -moz-opacity: 0.5;
    filter: alpha(opacity=50);
    opacity: 0.5;
}

.synchi_editor_controls a:hover {
    background-color: white;
}

.synchi_editor_controls a:hover img {
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    opacity: 1;
}

.synchi_spacer {
    cursor: default;
    background-color: transparent !important;
    padding-top: 7px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 2px;
    border: none !important;
}

.synchi_spacer:hover {
    background-color: transparent !important;
}

.synchi_spacer img {
    -moz-opacity: 1 !important;
    filter: alpha(opacity=100) !important;
    opacity: 1 !important;
}

#wp-content-editor-container textarea.wp-editor-area {
    display: none;
}