/*
  HTML Tag overides
*/
body {
  background: #000 url('../images/forest.png');
  background-repeat: no-repeat;
  background-position: center top;
	color: #eee;
	font-family: helvetica, arial, verdana, sans-serif;
	height: 100%;
	padding: 0px;
	margin: 0px;
  overflow: hidden;
}

h2.header {
	text-align: center;
  margin-top: 20px;
}

input, select, textarea {
    color: #fff;
}

li {
  display: block;
  padding-top: 0px;
  padding-bottom: 20px;
  -moz-transition: all .4s ease-in;
  -o-transition: all .4s ease-in;
  -webkit-transition: all .4s ease-in;
}

li:hover {
  color: #739191;
  cursor: pointer;
}

p {
  padding-top: 0px;
  padding-bottom: 20px;
  margin: 0px;
}

textarea:focus, input:focus {
    color: #fff;
}

ul {
  list-style-type: none;
  padding: 0;
}


/* 
  Classes 
*/
.centerContent {
    padding-left: 20px;
    height: 610px;
    overflow: hidden;
}

.compass {
  height: 65px;
  width: 65px;
  margin:0px;
  padding:0px;
  background-image: url('../images/compassBG.png');
}

.compassBlock {
  width: 65px;
  padding: 0px;
  margin: 0px 0px 1em 0px;
}

.compassBlock h4 {
  margin: 5px 0 0 0;
  padding: 0px;
  font-weight: normal;
  font-size: 12px;
  text-align: center;
}

.fadeBlock {
  animation: fadein 2s;
  -moz-animation: fadein 2s; /* Firefox */
  -webkit-animation: fadein 2s; /* Safari and Chrome */
  -o-animation: fadein 2s; /* Opera */
}

.indent {
  text-indent: 1em;
}

.interface {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  -moz-transition: all .4s ease-in;
  -o-transition: all .4s ease-in;
  -webkit-transition: all .4s ease-in;
}

.interface:hover {
  color: #739191;
  cursor: pointer;
}


/*
  IDs
*/
#compassContainer {
  display: block;
}

#container {
	height: 100%;
	margin: 0 auto;
	width: 1000px;
}

#inputField {
	display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #000;
}

#inventory {
	display: inline-block;
}

#sidebar {
	margin: 0px;
  float: right;
  width: 120px;
}

#inventoryList {
  height: 150px;
  display: block;
  overflow-y: auto;
}

#textArea {
	display: inline-block;
	margin: 0px;
  padding-top: 20px;
  width: 750px;
}


/*
  Cross Browser Stuff
*/
::-webkit-input-placeholder { /* WebKit browsers */
    color:    #ccc;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #ccc;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #ccc;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    #ccc;
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}