/* Setting the base CSS to be used on every page of the website */

body {
	background-color:black;
	background-image:url('../images/stars.jpg');
	background-attachment:fixed;
}

* {
    font-family:tahoma, arial, helvetica, sans-serif;
    padding:0;
    margin-top:0;
    color:white;
}

a {
    color:#0079df;
    font-size:14pt;
    text-decoration:none;
}

a:visited {
    color:#0d79ff;
}

a:active {
    color:purple;
}

a:hover {
    color:purple;
    text-decoration:underline;
}

button {
	color:black;
}

#container {
    width:1024px;
    margin:0 auto;
}

.heading {
    color:white;
    text-align:center;
    font-size:42pt;
    font-family:times new roman, serif;
}

#header {
	margin-top:10px;
    height:80px;
	text-align:center;
}

#nav {
    float:left;
    text-align:center;
    width:100px;
    margin:10px 10px 10px 0;
    padding:10px;
}

#main {
    float:right;
    padding:0 10px 10px 10px;
    margin:10px 0 0 0;
    width:874px;
}

#main h2 {
    margin-top:10px;
}

#nav li {
    list-style-type:none;
}

#footer {
    margin-top:10px;
    clear:both;
    height:60px;
    font-size:8pt;
    text-align:center;
    text-indent:0;
}

.indent {
    text-indent:10px;
}