ul.tagit {
	width: 230px;
	min-height: 100px;
    padding: 0px;
    overflow: auto;
    margin-left: inherit; /* usually we don't want the regular ul margins. */
    margin-right: inherit;
    border-radius: 0px;
    border-left: 1px solid #cccccc;
	border-top: 1px solid #cccccc;
	border-right: 1px solid #efefef;
	border-bottom: 1px solid #efefef;
	background: #fcfcfc;
}

ul.tagit:hover{
	background: #FFFFFF;
}

ul.tagit li {
    display: block;
    float: left;
    margin: 2px;
}

ul.tagit li.tagit-choice {
    position: relative;
    line-height: 14px;
	border: 0px;
	
	background: -moz-linear-gradient(top,  #81828c 0%, #505158 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#81828c), color-stop(100%,#505158));
	background: -webkit-linear-gradient(top,  #81828c 0%,#505158 100%);
	background: -o-linear-gradient(top,  #81828c 0%,#505158 100%);
	background: -ms-linear-gradient(top,  #81828c 0%,#505158 100%);
	background: linear-gradient(to bottom,  #81828c 0%,#505158 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#81828c', endColorstr='#505158',GradientType=0 );
	
	padding-left: 2px;
	font-family: Helvetica, sans-serif;
	font-weight: normal;
	font-size: 10px;
	letter-spacing: 0.1em;
	color: #FFFFFF;
}

ul.tagit li.tagit-choice-read-only { 
    padding: .2em .5em .2em .5em; 
} 

ul.tagit li.tagit-choice-editable{
	/* This is any tag that is editable */
    padding: .2em 18px .2em .5em;
} 

ul.tagit li.tagit-new, ul.tagit li.tagit-new input {
    /* This is the input that you type-in a new tag */
    height: 20px;
    padding: .25em 4px .25em 0;
    color: #000000;
}

ul.tagit li.tagit-choice a.tagit-label {
    cursor: pointer;
    text-decoration: none;
}
ul.tagit li.tagit-choice .tagit-close {
    /* Close Button */
    cursor: pointer;
    position: absolute;
    right: .1em;
    top: 50%;
    margin-top: -8px;
    line-height: 17px;
}

/* used for some custom themes that don't need image icons */
ul.tagit li.tagit-choice .tagit-close .text-icon {
    display: none;
}

ul.tagit li.tagit-choice input {
    display: block;
    float: left;
    margin: 2px 5px 2px 0;
}
ul.tagit input[type="text"] {
    -moz-box-sizing:    border-box;
    -webkit-box-sizing: border-box;
    box-sizing:         border-box;

    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;

    border: none;
    margin: 0;
    padding: 0;
    
    width: inherit;
    background-color: inherit;
    outline: none;
    color: #FFFFFF;
}
