body
{
    font-family: cursive;
    padding-top: 40px;
}

h1, h2, h3, h4, h5 ,h6
{
    font-family: cursive;
}

/********************* Table Style *********************/
th
{
    text-transform: uppercase;
    border-bottom: solid 1px #d2d1cb;
    padding: 2px 10px;
    color: #decab7;
    text-align: center;
}
th a
{
    color: #decab7;  
}
td
{
    text-align: center;
}

.order-desc, .order-asc
{
    position: relative;
}

.order-desc:after 
{
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: "";
    position: absolute;
    top:45%;
}

.order-asc:after 
{
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-bottom: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: "";
    position: absolute;
    top:45%;
}

