/*******************************************************************************
*   Default.css
*******************************************************************************/
*
{
    margin: 0;
    padding: 0;
}

a
{
    text-decoration: none;
}

a:hover
{
    font-weight: bold;
}

ol,
ul
{
    list-style-type: none;
}
/******************************************************************************/
.Float-Left
{
    position: relative;
    overflow: hidden;
    float: left;
}

.Float-Right
{
    position: relative;
    overflow: hidden;
    float: right;
}
/******************************************************************************/
.Align-Left
{
    text-align: left;
}
.Align-Right
{
    text-align: right;
}
.Align-Center
{
    text-align: center;
}
.Align-Justify
{
    text-align: justify;
}
/******************************************************************************/
.Section
{
    clear: both;
	overflow: hidden;
    float: none;
}
/******************************************************************************/
