div.uppercase { text-transform: uppercase; }

body {
	margin: 0;
	padding: 0;
    scrollbar-base-color: #C0C0C0;
    scrollbar-3dlight-color: #C0C0C0;
    scrollbar-highlight-color: #C0C0C0;
    scrollbar-track-color: #EBEBEB;
    scrollbar-arrow-color: black;
    scrollbar-shadow-color: #C0C0C0;
    scrollbar-dark-shadow-color: #C0C0C0;
    scrollbar-face-color: #915858;
}
::-webkit-scrollbar {
    height: 12px;
    width: 12px;
    background: #969696;
    -webkit-border-radius: 1ex;
    -webkit-scrollbar-thumb: 915858;
}
::-webkit-scrollbar-thumb {
    background: #2B2B2B;
    -webkit-border-radius: 1ex;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
}
::-webkit-scrollbar-corner {
    background: #1A1A1A;
}


div.slide-down {
    width: 100%;

}
div.slide-down p {
    animation: 1s slide-down;
    margin-top: 0%;
}
@keyframes slide-down {
    from {
        margin-top: -100%;
        height: 300%;
    }
    to {
        margin-top: 0%;
        height: 100%;
    }
}
#slideroony {
    position: relative;
    left: -1200px;
    width: 100%;
    height: 100px;
    background: transparent;
    -webkit-animation: slide 1.5s forwards;
    -webkit-animation-delay: .2s;
    animation: slide 1.5s forwards;
    animation-delay: .2s;
    z-index: -1;
    width: 100%;
}
@-webkit-keyframes slide {
    100% {
        left: 0;
    }
}
@keyframes slide {
    100% {
        left: 0;
    }
}



a:hover {
    color: #FFFFFF;
    /*Color of Hover Chad Sanders */
    
    background-color: transparent;
    text-shadow: 2px 2px 2px #000000;
    box-shadow: 5px 5px 10px #FFffff;
    /*Glow Effect */
    
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.7s ease-in-out;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
	
    -webkit-transform-origin: top right;
    -moz-transform-origin: top right;
    -o-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    opacity: 1;
	box-shadow: outset 5em 1em gold;
}
