/* CSS Document */
div.DropListUI {/*Wrap all*/
    position: relative;
}

div.TopLevel { /* move the active SelectUI to top */
    z-index: 10000 !important;
}
div.Theme {    
    width: 156px;
    background: url(images/bg-select.gif) left top no-repeat;
    height: 19px;
	margin-top: 2px;
    float: left;
    cursor: pointer;
}
	div.Theme .DropListUIContainer {
		background: url(images/bg-bottom-droplist.gif) left bottom no-repeat;
		padding-bottom: 4px;	
		width: 156px;
	}
    div.Theme p {
        width: 126px;
        color: #000000;
        font-size: 1.1em;
        padding: 2px 19px 0px 13px !important;
        line-height: 1.4em;  
        height: 19px;      
    }

    /* UL */
    div.Theme ul.Theme {
        width: 156px;
        padding: 0px;
        background-color: #ffffff;
        position: relative;
    }
        div.Theme ul.Theme li {
            width: 100%;
            font-size: 1.1em;
        }
         /*use for optgroup name*/
        div.Theme ul.Theme li span {
            font-size: 1em;
            font-weight: bolder;
            font-style: italic;
            display: block;
            padding: 4px 0;
            cursor: default;
            padding: 4px 0 4px 4px;
        }
        /*Normal*/
            div.Theme ul.Theme li a:link,
            div.Theme ul.Theme li a:visited {
                display: block;
                width: 156px;
                font-size: 1em;
                color: #000;
                padding: 3px 0px 5px 13px;
                overflow: hidden;
                position: relative;
                text-decoration: none;
             }
             /*Active*/
            div.Theme ul.Theme li.Active a:link,
            div.Theme ul.Theme li.Active a:visited {
                text-decoration: none;
                color: #d4d4d4;
                background: #fff;
            }
            /*Hover*/
            div.Theme ul.Theme li.Hover a:link,
            div.Theme ul.Theme li.Hover a:visited {
                text-decoration: none;
                color: #d4d4d4;
                background: #fff;    
				margin: 0px 3px;
				padding-left: 7px;
            }    