#itemListUpBtn{
    position: absolute;
    top: 60px;
    right: 485px;
}

#itemListDownBtn{
    position: absolute;
    top: 525px;
    right: 485px;
}

#itemList{
    float: left;
    width: 500px;    /*width: 500px;*/
    height: 510px; /**/
    overflow: hidden;
}

/*The ul that contains all the icons. This is the list which gets generated*/
#itemList ul{
    margin-top: 10px;
}

/*Contains the icon, description and the list of items for that type*/
#itemList .listContainer{
    margin : 5px 5px 5px 30px;
    float: left;
    width : 200px;
    height: 120px;
}

/*This is the icon colour and base*/
#itemList .itemType{
    cursor: pointer;
    margin-left: auto; /*Centre the div*/
    margin-right: auto; /*Centre the div*/
    margin-bottom: 5px;
    width : 90px;
    height : 90px;
    overflow : hidden;
    background-color: #700000;
    background-image: url("../images/icons/icon_base.png");
    background-repeat: no-repeat;
    z-index: 0;
    
}

/*This is graphic that goes on top of the icon (white with inner shadow)*/
#itemList .itemGraphic{
    width : 90px;
    height : 90px;
}

#itemList .itemDescription{
    text-align: center;
    width: 200px;
}

/*Each of the items under the particular item type*/
#itemList .itemList{
    margin-bottom: 10px;
    position: relative;

    width : 200px;
    -moz-border-radius: 5px;
    border-radius: 5px;

    background-color: #202020;
     z-index: 5;
    /* visibility: hidden;*/
     display: none;
    overflow: hidden;
}

#itemList .item{
    font-size: 12px;
    cursor: pointer;
    padding: 5px;
    width: 190px;

    -moz-border-radius: 5px;
    border-radius: 5px;

}

#itemList .item:hover{
    font-size: 12px;
    cursor: pointer;
    padding: 5px;
    width: 190px;
    background-color: #505050;
    -moz-border-radius: 5px;
    border-radius: 5px;

}

#roomInventoryText{
    padding-top: 2px;
    padding-left: 15px;
    padding-right: 15px;
    color: #FFFFFF;
    width: 444px;
    height: 153px;
    float: left;
    background-color: #000000;
    overflow: hidden;
}

#roomInventoryContainer{
    padding: 0px 15px 15px 15px;
    color: #FFFFFF;
    width: 444px;
    height: 340px;
    float: left;
    background-color: #000000;
    overflow: auto;
}
.addItemText{
    clear:left;
    float:left;
    margin-bottom: 8px;
    margin-top: 10px;
    margin-right: 10px;
    font-size: 15px;
}

#addItemBtn{
  margin-top: 5px;
}

#roomInventory{

}

#roomInventory .inventoryItem{
    float: left;

    cursor: pointer;
    width: 280px; /*was 188*/
    height: 30px;
    overflow: hidden;
    margin-bottom: 5px;
    margin-right: 5px;
    color: #ffffff;
}

#roomInventory .inventoryItemText{
    font-size: 15px;
    padding: 5px 5px 5px 5px;
}

.addItemFormField{
    clear: both;
    display: block;
    background-color: #FFFFFF;
}

#addItemFormItemName{
    width: 240px;
}

.searchFieldContainer{
    float: left;
    clear: left;
    width: 291px; /* was 280*/
    margin-bottom: 5px;
}

#searchIcon{
    float: left;
    width: 36px;
    height: 36px;
    background-image: url('../images/search.png');
    background-repeat: no-repeat;
}

.addItemFormLabel{
    display: block;
    float: left;
    margin-right: 10px;
    margin-bottom: 5px;

}

.addItemFormTitle{
    margin-bottom: 10px;
}

#miscItemForm{
    margin-top: 20px;
}

#miscItemForm .addItemFormLabel{
    clear: none;
    float: left;
    width: 50px;
    margin-top: 4px;
}

#miscItemForm .addItemFormField{
    clear: none;
    float: left;
    width: 50px;
    margin-right: 20px;
}

#addItemFormContainer{
    padding: 15px 15px 15px 15px;
    color: #FFFFFF;
    width: 444px;
    height: 450px;
    float: left;
    background-color: #000000;
    overflow: auto;
}

#addItemFormError{
    margin: 15px 0px 15px 0px;
    clear: both;
    color: #FF0000;
    text-align: center;
    font-weight: bold;
    visibility: hidden;
}

