/* FAQ CSS*/
html{scroll-behavior:smooth}

body
{
 font-size: 1.1em;
 line-height: 1.75em;
 color: #08;

}

.toc-list li
{
 border-bottom: dotted 1px #a0a0d0;
 line-height: 1em;
 padding-top: 1.25em;
 margin-left: 1.5em;
 font-size: 1em;
 list-style-type: decimal;
 text-transform: uppercase;

}

.userfaq-list li
{

 line-height: 1em;
 padding-top: 1.25em;
// margin-left: 1.5em;
 font-size: 1em;
// list-style-type: decimal;
 text-transform: uppercase;

}

/* don't underline the anchors in the toc*/
.toc-list li a
{
	text-decoration: none;
 }

 /* this is for numbering a dl */
.question
{
	 counter-reset: faq-counter;
}

/* this is for numbering a dl */
.question dt:before
 {
	 content: counter(faq-counter);
  counter-increment: faq-counter;

}

/* the question in the body*/
.question dt
{
 list-style-type: decimal;
 text-transform: uppercase;
 font-weight: bold;
 font-size: 1.1em;
 color: #045;

  /* hanging indent-- the first line of text juts-out; the rest of the text is indented */
 padding-left: 1.5em;
 text-indent: -1.5em ;
}

/* <b> in answers */
.answer b
{
 font-size: 1em;
 font-weight: bold;
 color: #565;

}


