﻿.largeText {
   font-size: large;
}
.smallText {
   font-size: small;
}

.largerText {
   font-size: larger;
}
.smallerText {
   font-size: smaller;
}

.symbolicText {
   font-family: 'Lucida Sans Unicode', 'Lucida Console';
}
.symbolicBoldText {
   font-family: 'Lucida Sans Unicode', 'Lucida Console';
   font-weight: bold;
}
.symbolicFaintText {
   font-family: 'Lucida Sans Unicode', 'Lucida Console';
   color: Gray;
}
.symbolicFaintBoldText {
   font-family: 'Lucida Sans Unicode', 'Lucida Console';
   color: Gray;
   font-weight: bold;
}
.symbolicMostGrayText {
   font-family: 'Lucida Sans Unicode', 'Lucida Console';
   color: DimGray;
}
.symbolicMostGrayBoldText {
   font-family: 'Lucida Sans Unicode', 'Lucida Console';
   color: DimGray;
   font-weight: bold;
}

.normalText {
   font-style: normal;
   font-weight: normal;
   color: Black;
}
.faintText {
   color: Gray;
}
.faintNormalText {
   font-style: normal;
   font-weight: normal;
   color: Gray;
}
.faintBoldText {
   color: Gray;
   font-weight: bold;
}

.mostGrayText {
   color: DimGray;
}
.mostGrayNormalText {
   font-style: normal;
   font-weight: normal;
   color: DimGray;
}
.mostGrayBoldText {
   color: DimGray;
   font-weight: bold;
}

.boldText {
   font-weight: bold;
}
.italicText {
   font-style: italic;
}
.italicBoldText {
   font-style: italic;
   font-weight: bold;
}

.strikeoutText {
   text-decoration: line-through;
}
.strikeoutBoldText {
   text-decoration: line-through;
   font-weight: bold;
}

.preservedText {
   white-space: pre-line;
   word-wrap: break-word;
}
.preservedBoldText {
   white-space: pre-line;
   word-wrap: break-word;
   font-weight: bold;
}

.comicText {
   font-family: 'Comic Sans MS';
}

.underlinedText {
   text-decoration: underline;
}
.overlinedText {
   text-decoration: overline;
}
.overUnderText {
   text-decoration: underline overline;
}

.doubleUnderlinedText {
   text-decoration: underline;
   border-bottom: double 1px;
}
.doubleOverlinedText {
   text-decoration: overline;
   border-top: double 3px;
}
