/*@import url(http://reset5.googlecode.com/hg/reset.min.css);*/


/* this reset import was causing an error */


/* BODY */

body {
    margin: 0 auto;
    padding: 0;
    background-color: black;
}

.parent {
    position: relative;
}

.child {
    position: absolute;
    top: 70%;
    left: 10%;
}

.left {
    float: left !important;
}

.right {
    float: right !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-justify {
    text-align: justify !important;
}

.hide {
    display: none;
}

#screensaver {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    display: none;
    z-index: 9999;
		background: white;
}

/* FONTS */

h1 {
    font-family: Arial, sans-serif;
    font-size: 40px;
    line-height: 45px;
    color: purple;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: normal;
}

h1 a:link {
    text-decoration: none;
    color: purple;
}

h1 a:hover, h1 a:focus {
    color: white;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    /* ...and now for the proper property */
    transition: .5s;
    text-decoration: none !important;
}
