﻿/*=============================================================================*/
/* Border styles */
.yg_table thead, .yg_table tr
{
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgb(230, 189, 189);
}
.yg_table
{
    width:100%;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(230, 189, 189);
}

/* Padding and font style */
.yg_table td, .yg_table th
{
    padding: 5px 10px;
    font-size: 12px;
    font-family: Verdana;
    color: rgb(177, 106, 104);
}

/* Alternating background colors */
.yg_table tr:nth-child(even)
{
    background: rgb(238, 211, 210);
}
.yg_table tr:nth-child(odd)
{
    background: #FFF;
}
