/*************************************************************
 *                  THE CIRCLE OF THE DRAGON
 *                       TERM REFERENCE
 *
 * Term reference formatting for hover definitions and the 
 * inline term definitions.
 *
 * @author K. 'drago' McCormick
 *************************************************************/
/** 
 * Hover overlays for term definitions. Classes for the
 * activating text and the styles for the overlay
 */

/** Activating text **/
.termBubble {
    font-weight: bold;
    color: #99dd00;
}

/** Overlay style classes **/
.termPop {
    background-color: #002200;
    width: 300px;
    z-index: 40;
    border-color: #ffff00;
    border-width: 1px;
    border-style: solid;
    margin: auto;
    padding: 7px;
    position: relative;
    absolute:position;
    display: none;
}

.termText {
    font-weight: bold;
    color: #7F917F;    
}

.termPopType {
    padding-left: 6px;
    padding-right: 9px;
    font-style: italic;
}

.termPopClose {
    text-align: right;
    float: right;
    font-size: smaller;
    font-weight: bold;
}

.termPopHeader {
    padding-right: 4px;
    clear: both;
}

.termPopBody {
    margin: 3px;
}

.termPopFooter {
    text-align: center;
    font-size: smaller;
}

/** 
 * Inline style classes for text inline with contents and
 * the data blocks displayed on the page without overlays.
 */
.inlineTermBlock {
    padding-left: 20px;
    padding-right: 20px;
    margin: 5px;
}

.inlineTerm {
    font-weight: bold;
    color: #7F917F;
}

.inlineTermDefinition {
    padding-left: 20px;
    padding-right: 5px;
}

.inlineTermType {
    padding-right: 9px;
    font-style: italic;
}

.inlineTermMultiple {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0px;
    padding-bottom: 4px;
}

.inlineTermMultiple ol {
    list-style-type: 
}
