/*uses faso editor classes to float images left and right with good text flow*/
.faso-img-alignleft {display:inline;float:left;margin-right:15px;}
.faso-img-alignright {display:inline;float:right;margin-left:15px;}
.faso-img-aligncenter {clear:both;display:block;margin-left:auto;margin-right:auto;}

/*our editor adds the following class to paragraphs and this css "fixes" margin issues by having no margin after each paragraph*/
/*This makes is work like a "normal" word processor where skipping a space, simply skips one space, while also having better formed*/
/*html with each paragraph in a <p> rather than using <br>*/ 
.faso-user-p {margin:0;padding:0;}

.faso-embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    margin: 10px 0;
}

.faso-embed-responsive-vertical {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
    padding-bottom: 100%;
    margin: 10px 0;
}

.faso-embed-responsive iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}