/* for mod_rquotes view: */
.mod_text_mark {
    display: block;
    vertical: top;
    color: red
    }
.mod_rquote_quote {
    clear: both;
    display: block;
    font-style: italic;
    text-align: bottom;
    quotes: "Â«";
    font-size: 15px;
    color: blue
    }
.mod_rquote_style {
    display: block;
    text-align: left;
    color: brown
    }
/* for the creation view:*/
.mod_rquote_author {
    font-style: italic;
    text-align: right;
    color: green
    }
/* Textfile display options used to control test file display only*/
.mod_rquote_quote_text_file {
    color: fuchsia;
    font-style: italic
    }
.mod_rquote_css {
    width: 200px;
    z-index: 1;
    background: #fff;
    padding: 1px
    }
.mod_rquote_css p {
    /* Quote style */
    display: block;
    font-size: 15px;
    padding: 10px;
    position: relative;
    color: red
    }
.mod_rquote_css p span {
    position: relative
    }
.mod_rquote_css p :before {
    /* Open Quote Mark */
    content: "â ";
    font-size: 50px;
    font-weight: bold;
    line-height: 20px;
    color: inherit;
    position: absolute;
    top: 10px;
    left: -25px
    }
.mod_rquote_css p:after {
    /* Close Quote Mark */
    content: " â";
    font-size: 50px;
    font-weight: bold;
    line-height: 20px;
    position: absolute;
    bottom: -5px;
    color: inherit
    }