/******************************************************************************************
 PAGE LAYOUT
******************************************************************************************/

body {
background: url(../_images/bg.jpg) repeat #000;
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size: 14px;
height: 100%;
}

body, #page, #text, #map, #move, #inventory {
height: 100%;
}

#text, #map, #move, #inventory {
display: block;
}

#page {
margin: 0px auto;
width: 1000px;
display: block;
}

#container {
float: left;
margin: 0px auto;
width: 1000px;
display: block;
background: lightgrey;
position: relative; 
padding: 0px 10px 0px 10px;
-khtml-border-radius-topleft: 10px;
-khtml-border-radius-topright: 10px;
-khtml-border-radius-bottomleft: 10px;
-khtml-border-radius-bottomright: 10px;
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
-moz-border-radius-bottomleft: 10px;
-moz-border-radius-bottomright: 10px;
-webkit-border-top-left-radius: 10px;
-webkit-border-top-right-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-webkit-border-bottom-right-radius: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}

#header {
background: black;
height: 100px;
margin: 10px 0px 0px 0px;
}

#controls {
background: #A9A9A9;
color: white;
font-size: 16px;
float: left;
width: 200px;
height: 100px;
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
text-align: left;
vertical-align: middle;
}

#banner {
background: black;
float: right;
display: block;
width: 800px;
height: 100px;
margin: 0px 0px 0px 0px;
text-align: right;
}

#main {
float: left;
width: 1000px;
margin: 5px 0px 10px 0px;
}

#text {
background: darkgrey;
font-size: 14px;
float: right;
width: 675px;
height: 330px;
margin: 0px 0px 0px 0px;
padding: 10px 10px 10px 10px;
}

#map {
background: darkgrey;
float: left;
display: block;
width: 280px;
height: 330px;
margin: 0px 0px 0px 0px;
padding: 10px 10px 10px 10px;
text-align: center;
text-decoration: none;
}

#move {
background: darkgrey;
font-size: 14px;
float: right;
width: 675px;
height: 120px;
margin: 5px 0px 0px 0px;
padding: 10px 10px 10px 10px;
text-align: center;
}

#inventory {
background: darkgrey;
float: left;
display: block;
width: 280px;
height: 120px;
margin: 5px 0px 0px 0px;
padding: 10px 10px 10px 10px;
text-align: center;
text-decoration: none;
}

/******************************************************************************************
 HEADING STYLES
******************************************************************************************/

h1 {
font-family: Arial, Verdana, Helvetica, sans-serif;
font-weight: bold;
font-size: 36px;
display: inline;
}

h2 {
font-family: Arial, Verdana, Helvetica, sans-serif;
font-weight: bold;
font-size: 30px;
display: inline;
}

h3 {
font-family: Arial, Verdana, Helvetica, sans-serif;
font-weight: bold;
font-size: 26px;
display: inline;
}

h4 {
font-family: Arial, Verdana, Helvetica, sans-serif;
font-weight: bold;
font-size: 20px;
display: inline;
}

h5 {
font-family: Arial, Verdana, Helvetica, sans-serif;
font-weight: bold;
font-size: 18px;
display: inline;
}

h6 {
font-family: Arial, Verdana, Helvetica, sans-serif;
font-weight: bold;
font-size: 16px;
display: inline;
}

/******************************************************************************************
 LINK STYLES
******************************************************************************************/

a {
text-decoration: underline;
}

a:link {
color: blue;
}

a:visited {
color: purple;
}

a:hover {
color: red;
text-decoration: none;
}

.pointer {
cursor: pointer
}

