/* Base Link Config */

:link {
    background-color: inherit;
}
:visited {
    background-color: inherit;
}

/* Utility */

.emphasized {
    font-weight: bold;
}

.italicized {
    font-style: italic;
}

.mini {
    font-size: 85%;
}

.micro {
    font-size: 77%;
}

.row_odd {
}

.row_even {
        background-color: #EEEEEE;
}

/*
    Suggested by yui/build/base/base.css which had other 
    things in it that we don't want at least right now
*/
ol,ul,dl {
    /*bringing lists on to the page with breathing room */
    margin-left:2em;
}
ol li {
    /*giving OL's LIs generated numbers*/
    list-style: decimal outside;
}
ul li {
    /*giving UL's LIs generated disc markers*/
    list-style: disc outside;
}
dl dd {
    /*giving UL's LIs generated numbers*/
    margin-left:1em;
}

/* setting a consistent width, 160px; 
   control of type=file still not possible */
input[type=text],input[type=password],textarea{width:12.25em;*width:11.9em;}

