﻿/* =universals
These rules are applied to all elements unless otherwise specified below. */
* { margin : 0; padding : 0; }

body {
        color: #000305;
        font-size: 87.5%; /* Base font size: 14px */
        font-family: 'Trebuchet MS', Trebuchet, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        line-height: 1.429;
        margin: 0;
        padding: 0;
        background-color: #000000;
        background-image: url(images/sombrero.jpg);
        background-repeat: no-repeat;
    }

h2, h3, h4, h5, p, ul, ol {
	margin : 0 20px; padding : .5em 0;
}

img {
	border: 0px;
}

/* Anchors */
a {outline: 0;}
a img {border: 0px; text-decoration: none;}
a:link, a:visited {
	color: #ffffff;
	padding: 0 1px;
	text-decoration: none;
}
a:hover, a:active {
	color: #ffffff;
	text-decoration: none;
	text-shadow: none;
}

#centeredcontent {
    width: 400px;
    height: 400px;
    text-align: center;
    border: 1px solid #000;
    background-color: #333333;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -200px; 
    /* Half the width of the DIV tag which is 400 pixels */
    margin-top: -200px; 
    /* Half the height of the DIV tag which is also 400 pixels */
}