/* Border Position */
.border
{
    border:1px solid black;
}
.border-top
{
    border-top:0 solid black;
}
.border-bottom
{
    border-bottom:0 solid black;
}
.border-left
{
    border-left:0 solid black;
}
.border-right
{
    border-right:0 solid black;
}
/* Default */
.border__thick
{
    border-width: 4px;
}
.border__thin
{
    border-width: 1px;
}
.border__red
{
    border-color:#dd2314;
}
.border__grey
{
    border-color:#eeeeee;
}
.border__darkgrey
{
    border-color:#999999;
}
/* Specific */
/* Use when needing multiple borders on same container */
/* Top Border */
.border-top__thick
{
    border-top-width: 4px;
}
.border-top__thicker
{
    border-top-width: 8px;
}
.border-top__thin
{
    border-top-width: 1px;
}
.border-top__red
{
    border-top-color:#dd2314;
}
.border-top__grey
{
    border-top-color:#eeeeee;
}
.border-top__darkgrey
{
    border-top-color:#999999;
}
/* Bottom Border */
.border-bottom__thick
{
    border-bottom-width: 4px;
}
.border-bottom__thin
{
    border-bottom-width: 1px;
}
.border-bottom__none
{
    border-bottom-width: 0 !important;
}
.border-bottom__red
{
    border-bottom-color:#dd2314;
}
.border-bottom__grey
{
    border-bottom-color:#eeeeee;
}
.border-bottom__darkgrey
{
    border-bottom-color:#999999;
}
/* Left Border */
.border-left__thick
{
    border-left-width: 4px;
}
.border-left__thin
{
    border-left-width: 1px;
}
.border-left__red
{
    border-left-color:#dd2314;
}
.border-left__grey
{
    border-left-color:#eeeeee;
}
.border-left__darkgrey
{
    border-left-color:#999999;
}
/* right Border */
.border-right__thick
{
    border-right-width: 4px;
}
.border-right__thin
{
    border-right-width: 1px;
}
.border-right__red
{
    border-right-color:#dd2314;
}
.border-right__grey
{
    border-right-color:#eeeeee;
}
.border-right__darkgrey
{
    border-right-color:#999999;
}

.border__bottom{
    border-bottom: 1px solid #eee;
}