body {
    margin: 0;
    background: linear-gradient(to right, #2277FF, #000000, #2277FF);
}
#headerBox, #bodyBox, #container {
    background: white;
    border: 0;
    margin: 0;
    width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
}
#logoBox {
    border: 0; 
    margin-left: auto; 
    margin-right: auto; 
    height: 218px; 
    width: 400px;
}
#navigation {
    width: 100%;
    height: 30px;
    background: black;
    color: white;
    position: fixed;
    bottom: 0px;
    text-align: center;
}
#shareLinks {
    width: 80px;
    height: 120px;
    background: white;
    color: black;
    position: fixed;
    top: 100px;
    left: 50%;
    margin-left: 450px;
}
.shareItem {
    height: 30px;
}
#navigation a {
    color: white;
}
.suggestion {
    cursor: pointer;
}

.section {
    width: 100%;
    margin: 0;
    border: 0;
    background: linear-gradient(to bottom, white, whiteSmoke);
}
.toplinkBox {
    border: 0; 
    margin-right: 10px; 
    width: 100%; 
    text-align: right;
}

#gridContainer {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0; 
    width: 800px; 
    margin-left: auto; 
    margin-right: auto;
}
.gridItem {
    width: 200px;
    height: 100px;
    border: 1px solid black;
    border-radius: 20px;
    margin: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,.2); 
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    justify-content: center; 
}
.gridText, .gridButton, .donateButton {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-shadow: 0 1px 1px rgba(0,0,0,.3);
    text-align: center;
    text-decoration: none;
}
.gridText {
    background-color: #000000;
}
.gridText p {
    color: white;
    margin: 5px;
    font-size: 11pt;
}
.gridImage {
    overflow: hidden;
}
.gridImage img {
    width: 200px;
    border: 0;
}
.gridButton, .donateButton {
    background-color: #1a6ff7;
    cursor: pointer;
    text-decoration: none;
}
.gridButton p, .donateButton p {
    color: white;
    margin: 5px;
    text-decoration: none;
    font-size: 11pt;
}
.donateButton {
    width: 200px;
    height: 100px;
    border: 1px solid black;
    border-radius: 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,.2); 
    float: right;
    margin-left: 15px;
    margin-right: 15px;
    text-align: center;
    clear: right;
}
a {
    text-decoration: none;
    color: #2277FF;
}
#logo {
    width: 400px;
    height: 218px;
    border: 0;
}
h1, h2, p {
    font-family: Verdana, Arial, sans-serif;
}
p {
    font-size: 12pt;
    margin-left: 2em;
    margin-right: 2em;
}
h1 {
    color: #2277FF;
    font-size: 16pt;
    margin-left: 1em;
}
h2 {
    color: #2277FF;
    font-size: 14pt;
    margin-left: 1em;
}
.bodyPhoto {
    width: 300px;
    border: 0;
    float: right;
    margin: 15px;
}

#progressBox {
    width: 300px; 
    margin-left: auto; 
    margin-right: auto;
}

progress[value] {
    appearance: none;
    border: 1px solid grey;
    width: 100%;
    height: 20px;
    background-color: whiteSmoke;
    border-radius: 3px;
    box-shaddow: 0 2px 3px rgba(0,0,0,.5) inset;
    color: #2277FF;
    position: relative;
    margin: 0 0 1.5em;
}


progress[value]::-webkit-progress-value {
    position: relative;
    background-size: 35px 20px, 100% 100%, 100% 100%;
    border-radius: 3px;
    animiation: animate-stripes 5s linear infinite;
}

@keyframes animate-stripes { 100% { background-position: -100px 0; } }

progress[value]::-moz-progress-bar {
    /* Gradient background with Stripes */
    background-image:
    -moz-linear-gradient( 135deg,
                                      transparent,
                                      transparent 33%,
                                      rgba(0,0,0,.1) 33%,
                                      rgba(0,0,0,.1) 66%,
                                      transparent 66%),
    -moz-linear-gradient( top,
                                      rgba(255, 255, 255, .25),
                                      rgba(0,0,0,.2)),
     -moz-linear-gradient( left, #000000, #2277FF);
    
    background-size: 35px 20px, 100% 100%, 100% 100%;
    border-radius:3px;
}

.progress-bar {
    background-color: whiteSmoke;
    border-radius: 3px;
    box-shadow: 0 2px 3px rgba(0,0,0,.5) inset;
    width: 100%; height:20px;
}

.progress-bar span {
    background-color: #2277FF;
    border-radius: 3px;
    display: block;
    text-indent: -9999px;
}

span.progress[data-value] { 
  position: relative; 
}

span.min-progress[data-value]:before {
    content: '$'attr(data-value);
    position: absolute; right: 0;
}

span.current-progress[data-value]:before {
    content: '$'attr(data-value);
    position: absolute; left: 150px;
}

span.max-progress[data-value]:before {
    content: '$'attr(data-value);
    position: absolute; left: 300px;
}

table  {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
}

th {
    width: 150px;
    border: 1px solid black;
    box-shaddow: 0 1px 2px rgba(0,0,0,0.2);
    border-radius: 20px;
    text-align: center;
    background: #000000;
    color: white;
    padding: 2px;
    font-family: Verdana, Arial, sans-serif;
    font-size: 11pt;
    font-weight: bold;
}

td {
    width: 150px;
    height: 75px;
    border: 1px solid black;
    box-shaddow: 0 1px 2px rgba(0,0,0,0.2);
    border-radius: 20px;
    text-align: center;
    background: #1a6ff7;
    color: white;
    padding: 2px;
    font-family: Verdana, Arial, sans-serif;
    font-size: 11pt;
    font-weight: bold;
}

td.empty {
    border: 0;
    background: transparent;
}

.yrInfo {
    font-weight: normal;
    font-size: 9pt;
}

#spacer {
    height: 20px;
}

  #myBtn {
    padding: 2px;
    background: #fff;
    cursor: pointer;
    line-height: 20px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
  }
  #myBtn .icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url('http://developers.google.com/+/images/branding/btn_icons_sprite.png') transparent 0 -40px no-repeat;
  }
  #myBtn:hover {
    background-color: #cc3732;
    color: #fff;
    border: #dd4b39;
  }
  #myBtn:hover .icon {
    background: url('http://developers.google.com/+/images/branding/btn_icons_sprite.png') transparent 0 0px no-repeat;
  }



@media only screen and (max-device-width: 900px) {

    #headerBox, #bodyBox, #container {
        width: 90%;
    }

    #spacer {
        height: 50px;
    }

    #gridContainer {
        width: 90%;
    }
    #navigation  {
        height: auto;
        font-size: 10pt;
    }
    #logoBox {
        width: 90%;
        height: auto;
    }
    #logo {
        width: 90%;
        height: auto;
    }
    .bodyPhoto {
        width: 50%;
    }
    #progressBox {
        width: 90%;
    }
    p {
        font-size: 10pt;
        margin-left: 1em;
        margin-right: 1em;
    }
    h1 {
        font-size: 14pt;
        margin-left: 0.5em;
    }
    h2 {
        font-size: 12pt;
        margin-left: 0.5em;
    }
    table  {
        width: 90%;
    }

    th {
        width: 24%;
        font-size: 10pt;
    }

    td {
        width: 24%;
        font-size: 10pt;
    }
    span.min-progress[data-value]:before {
        position: absolute; left: 0; top: 0px;
    }

    span.current-progress[data-value]:before {
        position: absolute; left: 100px; top: 0px;
    }

    span.max-progress[data-value]:before {
        position: absolute; left: 200px; top: 0px;
    }
    #shareLinks {
        width: 100%;
        height: 30px;
        background: white;
        color: black;
        position: static;
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }
    .shareItem {
        height: 30px;
        display: inline-block;
    }  

}
