/**
 * PLY Base CSS File
 * @browsers All
 **/

    /* Classes */

        .left {
            float: left;
        }

        .right {
            float: right;
        }

        .clearfix:after {
            content: ".";
            display: block;
            height: 0;
            clear: both;
            visibility: hidden;
        }

        .block {
            display: block;
        }

        .inline {
            display: inline;
        }

        .hidden {
            display: none;
        }

        .fadedOut {
            opacity: 0;
        }

        .textCenter {
            text-align: center;
        }

        .textLeft {
            text-align: left;
        }

        .textRight {
            text-align: right;
        }
        
        .textJustify {
            text-align: justify;
        }

        .centered {
            margin: 0 auto;
        }
