/* Example tokeninput style #1: Token vertical list*/
ul.token-input-list {
    height: auto !important;
    width: 100%;
    cursor: text;
    /*z-index: 999;*/
    margin: 0;
    padding: 0;
    background-color: #fff;
    list-style-type: none;
    clear: left;
    position: relative;
    margin-top: 5px;
}

ul.token-input-list li {
    list-style-type: none;
}

ul.token-input-list li input {
    min-width: 100%;
    width: 100%;
}

li.token-input-token {
    overflow: hidden;
    //height: auto !important;
    //height: 1%;
	height: 32px;
    //margin: 3px;
    padding: 6px 2px;

    background-color: #f9f9f9; /* Token in list background */
	/*border-top: 1px solid #eee;*/

    //color: #000;
    font-weight: normal;
    cursor: default;
    display: block;

    //width: 100%;
   // min-width: 100%;
}

li.token-input-token p {
    float: left;
    padding: 0;
    margin: 0;
}

li.token-input-token span {
    float: right;
    //color: #777;
    cursor: pointer;
	//font-size: 16px;
    //font-family: arial;
	//font-weight: bold;
}

li.token-input-selected-token {
    //background-color: green;
    //color: #fff;
}

li.token-input-selected-token span {
    color: #bbb;
}

div.token-input-dropdown {
    position: absolute;

    //width: 220px;

    background-color: #F5F5F5; /* actual dropdown background of "type here" */
    overflow: hidden;
    border: 1px solid #ddd; /* actual dropdown says "type here" */
    cursor: default;

    /*z-index: 1000;*/

    margin-left: 5px;
    //margin-right: 5px;
    //width: 100%;
    //right: 0;
}

div.token-input-dropdown p {
    margin: 0;
    padding: 5px;
    //font-weight: bold;
    color: #777;
}

div.token-input-dropdown ul {
    margin: 0;
    padding: 0;
}

div.token-input-dropdown ul li {
    background-color: #fff;
    padding: 3px;
    list-style-type: none;
}

div.token-input-dropdown ul li.token-input-dropdown-item {
    background-color: #fafafa;
}

div.token-input-dropdown ul li.token-input-dropdown-item2 {
    background-color: #fff;
}

div.token-input-dropdown ul li em {
    font-weight: bold;
    font-style: normal;
}

div.token-input-dropdown ul li.token-input-selected-dropdown-item {
    background-color: #d0efa0;
}

