acronym
{
    border: 0px;                                      /* hides underline in Netscape */
}

body {
	color: Black;
	font-family: Arial, Helvetica, sans-serif;
    margin: 10px 10px 10px 10px;
    font-size: 75%;
}

span.Bad {
    background-color: #f7ab75;
    width:auto!important;
    float:none!important;
}

span.Good {
    background-color: #98ea66;
    width:auto!important;
    float:none!important;
}

span.SearchTerm {
    background-color: #feff6d;
    width:auto!important;
    float:none!important;
}

span.SectionItem
{
    color: #ffffff;
    font-weight: bold;
    margin: 1px;
    padding-left: 5px;
    padding-right: 5px;
    white-space: nowrap;
}

span.SectionItem a
{
    color: #ffffff;
}

span.SectionCurrent
{
    background-color: #ffffff;
    color: #ff33ff;
    font-weight: bold;
    margin: 1px;
    padding-left: 5px;
    padding-right: 5px;
    white-space: nowrap;
}

span.SectionCurrent a
{
    color: #ff33ff;
}

table.Sections                                        /* Header table */
{
	background-color: #006699;
	border: 1px solid #000000;
	text-align: center;
	width: 744px;
}

table.Sections a
{
    text-decoration: none;
}

table.Pages                                         /* Pages table (menu off to the left) */
{
    border: 1px solid #000000;
    font-weight: bold;
}

table.Pages a
{
    text-decoration: none;
}

td.Banner                                        /* Banner table */
{
	background-color: #006699;
}

td.Content                                       /* Content table (everything between Header and Footer) */
{
	padding: 5px;
}

td.PageCurrent
{
    background-color: #ffffff;
    border-top: 1px solid #000000;
    color: #ff33ff;
    white-space: nowrap;
}

td.PageCurrent a
{
    color: #ff33ff;
}

td.PageItem
{
    background-color : #66ccff;
    border-top: 1px solid #000000;
    white-space: nowrap;
}

td.PageItem a
{
    color: #ffffff;
}

td.SectionsLeft
{
    color: #ffffff;
    text-align: left;
    vertical-align: top;
}

td.SectionsRight
{
    color: #ffffff;
    text-align: right;
    vertical-align: top;
    white-space: nowrap;
}

td.TableHeader 
{
    background-color: #006699;
    color: #ffffff;
    font-weight: bold;
}

tr.Odd
{
    background-color: White;
}

tr.Even
{
    background-color: #DDDDDD;
}

tr.TableHeader
{
    background-color: #006699;
    color: White;
    font-weight: bold;
    text-align: center;
}

ul.NoIndent
{
    padding: 0;
    margin: 0;
    margin-left: 15px;
}

.CategoryList
{
    position: relative;
}

.CategoryList .CategoryWrapper
{
    position: absolute;
    left: -150px;
    top: 125px;
    font-family: Verdana, Arial;
    padding-top: 0px;
    padding-bottom: 15px;
}

.CategoryList .CategoryWrapper #ctl00_ContentPlaceHolder_divCategories
{
    border-radius: 10px;
    border: 1px solid #CCC;
    padding: 15px;
    padding-top:5px;
}

.CategoryList .CategoryWrapper ul
{
    list-style-type: none;
    margin: 0;
    padding: 0;        
}

.CategoryList .CategoryWrapper ul li
{
    line-height: 1.5em;
}

.Citation
{
    line-height: 18pt;
    width: 650px;
    border: 1px solid black;
    display: table;
    padding: 25px;
    margin:auto;
}

.Citation b, .Citation span, .Citation div
{
    float:left;
}
    
.Citation b
{
    width: 70px!important;
}
    
.Citation span
{
    width: 575px!important;
}
    
.Citation br
{
    clear: both;
}

.citation-controls {
    width: 100%;
}

.citation-controls div{
    width: 100%;
    text-align: center;
    padding: 5px;
}

.Counters
{
    font-weight:bold;
    margin:auto;
    width: 195px;
}

.debug-msg {
    border: 1px solid #CCC;
    box-shadow: rgba(0,0,0,0.25) 2px 3px;
    margin: 10px;
    padding: 15px;
    font-size: 0.8em;
}

.Hidden
{
    display:none;
}

.JournalList
{
    width: 166px;
    padding-top: 5px;
}

.ReaderReport {
    position: fixed;
    top:0;
    left:0;
    padding: 10px;
    background-color: #FFF;
    border: 1px solid #CCC;
    border-radius: 0 0 10px 0;
    box-shadow: #000 0px 0px 10px;
}

.PopBox-Green {
    position: relative; 
    border: 2px solid black;
    border-radius: 8px;
    width: 620px;
    padding: 10px;
    background-color: #EFE;
}

.PopBox-Red {    
    background-color: #FEE;
    position: relative; 
    border: 2px solid black;
    border-radius: 8px;
    width: 620px;
    padding: 10px;
}

.Source
{
    font-size: .9em;
    line-height: 1.1em;
    font-style: italic;
}

.TraineeSessionSummary {
    position:fixed;
    left: 0px;
    top: 0px;
    padding: 10px;
    width: 500px;
    border: 2px solid black;
    background-color: #FFF;
    border: 1px solid #CCC;
    border-radius: 0 0 10px 0;
    box-shadow: #000 0px 0px 10px;

}

.Title
{
    font-weight: bold;
    font-size: 1.1em;
}

td.wrap-long-lines {
    /* FROM https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/ */
    /* These are technically the same, but use both */
    overflow-wrap: break-word;
    word-wrap: break-word;

    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;

    /* Adds a hyphen where the word breaks, if supported (No Blink) */
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}