/**
 * LogiCSS - Logic CSS framework
 * http://logicss.googlecode.com
 * http://logicoder.com/logicss/
 *
 * Commodity classes for utility styles TO USE DURING DEVELOPMENT ONLY U LAZY !!
 *
 * Copyright (c) 2007 Marco Del Tongo et al.
 * Licensed under the MIT license.
 *
 * $Rev: 30 $
 * $Author: logicoder $
 * $HeadURL: https://logicss.googlecode.com/svn/trunk/logicss/utils.css $
 */

/* -------------------------------------------------------------------------- */

/*
    Visibility & Display
*/
.hide
{
    visibility: hidden;
}
.remove
{
    display:    block;
}

/*
    Margin & Padding
*/
.no-margin
{
    margin:     0;
}
.no-padding
{
    padding:    0;
}

/*
    Text Alignment
*/
.text-left
{
    text-align: left;
}
.text-right
{
    text-align: right;
}
.text-center
{
    text-align: center;
}
.text-justify
{
    text-align: justify;
}

/*
    Fancy fonts and styling
*/

.small-caps
{
    font-variant:   small-caps;
    letter-spacing: .05em;
}

