ul.tagit {
    padding: 1px 5px;
    overflow: auto;
    margin-left: 10px; /* usually we don't want the regular ul margins. */
    margin-right: 10px;
}
ul.tagit li {
    display: block;
    float: left;
    margin: 2px 5px 2px 0;
}
ul.tagit li.tagit-choice {    
    position: relative;
    line-height: inherit;
}

ul.tagit li.tagit-choice-read-only { 
    padding: .2em .5em .2em .5em; 
} 

ul.tagit li.tagit-choice-editable { 
    padding: .2em 18px .2em .5em; 
} 

ul.tagit li.tagit-new {
    padding: .25em 4px .25em 0;
}

ul.tagit li.tagit-choice a.tagit-label {
    cursor: pointer;
    text-decoration: none;
}
ul.tagit li.tagit-choice .tagit-close {
    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;
}

.tagit .ui-state-default /*Custom CSS Emrah*/
{
    color: #FFFFFF;
	text-shadow: 0 1px 0 rgba(255,255,255,0.1);
    border: 1px solid #aaa;
    background: #4271FF;
	background: -moz-linear-gradient(top, #77B0FF 0%, #60A0FF 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#77B0FF), color-stop(100%,#60A0FF));
	background: -webkit-linear-gradient(top, #77B0FF 0%,#60A0FF 100%);
	background: -o-linear-gradient(top, #77B0FF 0%,#60A0FF 100%);
	background: -ms-linear-gradient(top, #77B0FF 0%,#60A0FF 100%);
	background: linear-gradient(to bottom, #77B0FF 0%,#60A0FF 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b8e76f', endColorstr='#a9e25c',GradientType=0 );
}
