/* DICTIONARY STYLES */

/* styles for dictionary tips */
/* main tip box */
#definition-box {
        width: 192px;
        height: auto;
        border: 1px solid #3e3e3e;
        padding: 6px;
        font-style: normal;
        font-size: 10px;
        color: Black;
        background: #ecedec;
        text-align: left;
}

/* word name */
#definition-box-head {
        font-weight: bold;
        padding-bottom: 5px;
        border-bottom: 1px solid #3e3e3e;
}

/* word description */
#definition-box-content {
        margin-top: 5px;
}

/* style for representing definition in document */
dfn.dictionary-word {
        font-style: normal;
        font-weight: bold;
        color: #606060;
        background: transparent url(ff_dictionary/images/questionmark_icon.gif) no-repeat right 50%;
        padding-right: 10px;
        cursor: default;
}

/* styles for dictionary template */
/* main list */
ul.dictionary {
        list-style: url(bullet.gif);
}

/* list item (word description) */
ul.dictionary li {
        text-align: left;
        margin-bottom: 1em;
}

/* list item (word name) */
ul.dictionary li .term {
        font-weight: bold;
        color: Black;
}

/* styles for random word slot */
/* word description */
div.random-definition {
        text-align: left;
}

/* word name */
div.random-definition .term {
        font-weight: bold;
        color: Black;
}

