﻿html, body
{
    margin: 0;
    width: 100%;
    height: auto;
}

form
{
    margin: 0;
}

table
{
    font-size: 100%;
}

.table
{
    display: table;
}

.tableRow
{
    display: table-row;
}

.tableCell
{
    display: table-cell;
}

img
{
    border: 0;
}

iframe
{
    max-width: 100%;
}

.inner
{
    max-width: 1280px;
    margin: 0 auto;
}

.inner img
{
    max-width: 100%;
}

p
{
    margin: 0 0 15px 0;
}
.inlineBlock
{
    display: inline-block;
}
.clear
{
    clear: both;
}
.clearRight
{
    clear: right;
}
.clearLeft
{
    clear: left;
}

.left
{
    float: left;
}

.right
{
    float: right;
}

.textCenter
{
    text-align: center;
}

.textLeft
{
    text-align: left;
}

.textRight
{
    text-align: right;
}

.vAlignMiddle
{
    vertical-align: middle;
}

.vAlignTop
{
    vertical-align: top;
}

.vAlignBottom
{
    vertical-align: bottom;
}

.hidden
{
    display: none;
}

.mobile
{
    display: none;
}

@media (max-width: 600px)
{
    .desktop
    {
        display: none;
    }

    .mobile
    {
        display: initial;
    }
}

.padded
{
    padding: 10px;
}

.twoCols .col
{
    float: left;
    width: 49%;
    margin-right: 2%;
}

.threeCols .col
{
    float: left;
    width: 32%;
    margin-right: 2%;
}

.fourCols .col
{
    float: left;
    width: 23.5%;
    margin-right: 2%;
}

.twoCols .col:nth-child(2n), .threeCols .col:nth-child(3n), .fourCols .col:nth-child(4n)
{
    margin-right: 0;
}

@media (max-width: 800px)
{
    .threeCols .col
    {
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 699px)
{
    .twoCols .col
    {
        width: 100%;
        margin: 10px 0;
    }
}

.dynamicForm input[type="text"], .dynamicForm input[type="password"], .dynamicForm select, .dynamicForm textarea
{
    width: 95%;
}

.dynamicForm textarea
{
    height: 50px;
}