﻿html
{
    min-height: 100%; /* Ensures height is a least 100% */
    padding: 0px; /* Removes all padding to ensure a true 100% height */
    margin: 0px; /* Removes all margin to ensure a true 100% height */
}
body
{
    min-height: 98%; /* Ensures height is a least 100% */
    background-color: #777; /* Sets Background Color */
    background-image: url(../images/TransToWhite.png); /* Added the PNG Transparent to White Overlay REMOVE THIS LINE FOR SOLID BACKGROUND */
    background-position: bottom; /* Sets Background Position to be at the bottom of the screen */
    background-attachment: fixed; /* Gradient Always stays at bottom */
    background-repeat: repeat-x; /* Repeats the 5px wide PNG to fill across the entire screen */
    background-size: 3px; /* Set the background image width small to make the Gradient mor drastic */
}
