@CHARSET "UTF-8";
/*****************************
 * CMS Content
 *
 */
/* Only Affects Editor */
.mceContentBody {

background: green;
}

/* General formatting */
.sq-editor-content {     
    position: relative;        
    width: 100%;
}


/*** HEADERS ***/
.sq-editor-content h1,
.sq-editor-content h2,
.sq-editor-content h3,
.sq-editor-content h4,
.sq-editor-content h5,
.sq-editor-content h6 {
    
  
}

.sq-editor-content h1 {
    
}

.sq-editor-content h2 {
   
}

.sq-editor-content h3 {
   
}

.sq-editor-content h4 {
   
}

.sq-editor-content h5 {
    
}

.sq-editor-content h6 {
   
}


.sq-editor-content p,
.sq-editor-content div {
    line-height: 1.5em;
     
}

.sq-editor-content blockquote {
    line-height: 1.5em;
    font-style: italic;
}

.sq-editor-content strong {
    
}

.sq-editor-content em {
   
}

.sq-editor-content ul {
    list-style: disc outside;
    margin: 0.8em 0 0.8em 0;
    padding: 0 0 0 1.5em;
}

.sq-editor-content ol {
    list-style: decimal outside;
    margin: 0.8em 0 0.8em 0;
    padding: 0 0 0 1.5em;
}

.sq-editor-content li {
    line-height: 1.4em;
    margin: 0 0 0 0em;   
}



/*** LINKS ***/

/* Generic */
.sq-editor-content a {
    text-decoration: none;    
}
.sq-editor-content a:hover {
    text-decoration: underline;
}

/* In Headers */
.sq-editor-content h2 p a,
.sq-editor-content h3 p a,
.sq-editor-content h4 p a,
.sq-editor-content h5 p a,
.sq-editor-content h6 p a { 
}

.sq-editor-content h2 p a:hover,
.sq-editor-content h3 p a:hover,
.sq-editor-content h4 p a:hover,
.sq-editor-content h5 p a:hover,
.sq-editor-content h6 p a:hover { 
}

/* In paragraphs */
.sq-editor-content p a { 
}
.sq-editor-content p a:hover {
}

/* In Lists */
.sq-editor-content li a {   
}
.sq-editor-content li a:hover {   
}

/* In tables*/
.sq-editor-content table a {    
}
.sq-editor-content table a:hover {     
}


/*** TABLES ***/
.sq-editor-content table {
    border-collapse: collapse;
    margin: 1em 0;    
}
.sq-editor-content table tr {
    

}
.sq-editor-content table th {
    font-weight: bold;
    text-align: center;
    padding: 2px 6px;
    border: 1px solid #ccc;

}
.sq-editor-content table td {
    text-align: left;
    padding: 2px 6px;
    border: 1px solid #ccc;
}


/*** IMAGES ***/
.sq-editor-content img {
    position: relative;
    margin: 2px;    
    max-width: 100%;
}



