body
{
    padding: 0;
    margin: 0;
}

.text-black
{
    color: #000;
}

.text-white
{
    color: #fff;
}

.text-bold
{
    font-weight: bold;
}

.text-slim
{
    font-weight: normal;
}

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

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

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

.fixed-table
{
    table-layout: fixed;
}

.wordwrap
{
    word-wrap: break-word; /* IE 5~ */
    white-space: pre-wrap; /* CSS3 standard */
    white-space: -moz-pre-wrap; /* Mozilla only */
    white-space: -pre-wrap; /* Opera ~6 */
    white-space: -o-pre-wrap; /* Opera 7~ */
    
    /* FIXIT: opera 10 and some others may display scrollbars instead of wordwrap */
}

img
{
    max-width: 100%;
}