/* Global Classes */

.text-left { 
    text-align: left; 
}

.text-center { 
    text-align: center; 
}

.text-right { 
    text-align: right; 
}

.text-justify { 
    text-align: justify; 
}

.align-top { 
    vertical-align: top; 
}

.align-middle { 
    vertical-align: middle; 
}

.align-bottom { 
    vertical-align: bottom; 
}

.align-baseline { 
    vertical-align: baseline; 
}

