/* CAPD Web */

/* self-maintenance styles */

/* Text styling */
.italic {
font-style: italic;
}
.underline {
text-decoration: underline;
}
.light {
font-weight: normal;
}
.bold {
font-weight: bold;
}
.caps {
font-variant: small-caps;
}

/* Font faces */
.serif {
font-family: Georgia, "Times New Roman", serif;
}
.sans {
font-family: Verdana, arial, "Trebuchet MS", sans-serif;
}
.type {
font-family: "Courier New", monospace;
}
.verdana {
font-family: verdana;
}
.arial {
font-family: arial;
}

/* Font sizes */
.verysmall {
font-size: 12px;    /* 12px 9pt*/
}
.small {
font-size: 13px;    /* 13px 10pt*/
}
.medium {
font-size: 14px;    /* 14px 10.5pt*/
}
.normal {
font-size: 16px;   /* 16px 12pt*/
}
.large {
font-size: 18px;   /* 18px 13.5pt*/
}
.verylarge {
font-size: 20px;   /* 20px 15pt*/

}
/* Font colors */
.darkred {
color: darkred;
}
.darkgreen {
color: darkgreen;
}
.gray {
color: gray;
}
.darkblue {
color: darkblue;
}
.brown {
color: saddlebrown;
}
.black {
color: black;
}

/* Paragraph indentation */
.indentx1 {
text-indent: 20px;
}
.indentx2 {
text-indent: 40px;
}
.indentx3 {
text-indent: 60px;
}
.indentx4 {
text-indent: 80px;
}

/* Text alignment */
.left {
text-align: left;
}
.right {
text-align: right;
}
.center {
text-align: center;
}

/* Ordered List Bullets */
.decimal {
list-style-type: decimal;
}
.romanlc {
list-style-type: lower-roman;
}
.romanuc {
list-style-type: upper-roman;
}
.alphalc {
list-style-type: lower-alpha;
}
.alphauc {
list-style-type: upper-alpha;

