/*Ara Tree Fame*/

#araTreeFrame{
    position: fixed;
    width: 352px;
    height: 10px;
    top: 208px;
    left: 12px;
    z-index: 20;
    background: url("../images/toolbar.png") repeat-x;
    cursor: pointer;
}

/*List*/

#araTreeRoot, #araTreeRoot ul {
    position: relative;
    padding-left: 28px;
    list-style: none !important;
    border-left: 1px solid rgb(100, 100, 100);
    right: 7px;
    margin-top: 0;
}

ul#araTreeRoot {
    border: none;
}

/*Search*/

#searchContainer{
    height : 12%;
}

#araNameSearch:focus {
    outline: 0;
}

#araNameInput {
    padding: 2px 4px;
    width: 93%;
    top: 5px;
    left: 7px;
    height: 12px;
    background: black;
    position: relative;
    border: 1px solid #BABABA;
    color: #BABABA;
}

#araNameList{
    padding: 0px;
    position: absolute;
    top: 8px;
    width: 96%;
    right: 6.5px;
    height: auto;
    max-height: 100px;
    overflow-y: scroll;
    background: black;
    z-index: 1001;
    border: 1px solid grey;
}

#araNameList li{
    margin: 0 !important;
    list-style-type: none;
    padding: 0 10px;
    font-family: Arial, sans-serif;
    font-size: 10px;
    padding: 2px 5px;
}

#araNameList li:hover{
    background-color: grey;
    cursor: pointer;
}

#araNameList li.highlightARAList {
    background-color: grey;
}

.hideAraNameList{
    max-height: 0 !important;
    border : 0 !important;
}

/*Content*/

div.highlight {
    display: inline-block;
    position: relative;
    right: 28px;
    top: 1.5px;
    padding: 0.25px 3px 0.25px 0.5px;
}

div.highlight:hover {
    background-color: grey !important;
    cursor: pointer;
}

span.abbreviation {
    display: inline-block;
    font-weight: bold;
    font-size: 10px;
    font-family: Arial, sans-serif;
}

span.araName {
    font-size: 10px;
    font-family: Arial, sans-serif;
}

span.araColor {
    display: inline-block;
    position: relative;
    height: 15px;
    width: 15px;
    top: 5px;
    right: 26px;
    z-index: 100;
}

div.content {
    position: relative;
    right: 11px;
    bottom: 1px;
    white-space: nowrap;
    z-index: 50;
}

div.content:before{
    display: inline-block;
    content: "";
    background-image: url(../images/L.gif);
    position: relative;
    width: 18px;
    height: 9px;
    top: -3px;
    right: 25px;
}

div.selected {
    background-color: grey;
}

/*Mootree*/

#treeContainer{
    position: relative;
    height: 88%;
    overflow: hidden;
}

#araTreeContainer {
    position: absolute;
    width: 350px;
    height: 270px;
    max-height: 40%;
    top: 220px;
    left: 12px;
    background: #101010;
    border: 1px solid grey;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    z-index: 100;
}

.moo_tree_ctrl {
    position: relative;
    float: left;
    margin-left: -12px;
    width: 0px;
    height: 0px;
    cursor: pointer;
    z-index: 200;
}

.moo_tree_more:before {
    display: inline-block;
    position: relative;
    top: 3px;
    right: 3px;
    background-image: url("../images/plus.gif");
    content: "";
    width: 16px;
    height: 20px;
}

.moo_tree_less:before {
    display: inline-block;
    position: relative;
    top: 3px;
    right: 3px;
    background-image: url("../images/minus.gif");
    content: "";
    width: 16px;
    height: 20px;
}

.hideTreeContainer {
    display: none;
    max-height: 0 !important;
    border : 0 !important;
}

/*scroll bar*/

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-button {
    display : none;
}

::-webkit-scrollbar-track-piece {
    background: #101010
}

::-webkit-scrollbar-thumb {
    background: #999
}


::-webkit-scrollbar-corner {
    background: #101010;
}

/*Placeholder text size*/
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-size: 10px;
    font-family: Arial, sans-serif
}
::-moz-placeholder { /* Firefox 19+ */
    font-size: 10px;
    font-family: Arial, sans-serif
}
:-ms-input-placeholder { /* IE 10+ */
    font-size: 10px;
    font-family: Arial, sans-serif
}
:-moz-placeholder { /* Firefox 18- */
    font-size: 10px;
    font-family: Arial, sans-serif
}

