/* -------- borrowed from ConnW/Colors: CC.css -------*/
/*
The margin property can have from one to four values.

    margin:25px 50px 75px 100px;
        top margin is 25px
        right margin is 50px
        bottom margin is 75px
        left margin is 100px

    margin:25px 50px 75px;
        top margin is 25px
        right and left margins are 50px
        bottom margin is 75px

    margin:25px 50px;
        top and bottom margins are 25px
        right and left margins are 50px

    margin:25px;
        all four margins are 25px
*/
body {
  font-family: sans-serif;
  font-style: normal;
  margin: 0px;
  color: #5a5a5a;
  font-size: 15px;
  background-image:url(img/background_pattern.jpg);
  background-repeat:repeat;
}
#fullheight {
  height: 100%;
}
img.lft {
  float: left;
  margin: 5px;
}
img.rgt {
  float: right;
  margin: 5px;
}
img {
  max-width: 100%;
  height: auto;
}
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
P {
  font-family: sans-serif;
  font-style: normal;
  font-size: 15px;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 8px;
}
P.zero {
  margin: 0;
}
P.close {
  margin-top: 0;
  margin-bottom: 4px;
}
P.b5 {
  margin-bottom: 5px;
}
P.indent {
  margin-left: 10px;
}
P.indent20 {
  margin-left: 20px;
}
P.indent30 {
  margin-left: 30px;
}
p.martop0 { /* redundant */
  margin-top: 0px;
}
p.marbot0 {
  margin-bottom: 0px;
}
ol, ul, li {
  font-family: sans-serif;
  font-style: normal;
  font-size: 15px;
  line-height: normal;
}
ul.tight {
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 0;
}
.bold {
  font-weight: bold;
}
.fwBOLD {
  font-weight: bold;
}
/* Standard Headlines */
h1, h2, h3, h4, h5, h6 {
  font-family: "proxima-nova-n6", sans-serif;
  font-style: normal;
  text-align: center;
  font-weight: bold;
  margin: 0 0 0 0;
  color: #324e96;
}
.blue_dk {
  color: #006078;
}
.blue_md {
  color: #047692;
}
h1 {
  font-size: 32px;
  line-height: normal;
  margin-bottom: 24px;
}
h2 {
  font-size: 28px;
  line-height: normal;
  margin-bottom: 20px;
}
h3 {
  font-size: 24px;
  line-height: normal;
  margin-bottom: 18px;
}
h4 {
  font-size: 20px;
  line-height: normal;
  margin-bottom: 16px;
}
h5 {
  font-size: 15px;
  line-height: normal;
  margin-bottom: 10px;
}
h6 {
  font-size: 14px;
  line-height: normal;
  margin-bottom: 8px;
}
/* LINKS */
A:link {
  color: #374788;
  font-weight: bold;
  font-size: inherit;
  text-decoration: none;
}
A:hover {
  color: #4d73ba;
  font-weight: bold;
  font-size: inherit;
  text-decoration: underline;
}
A:visited {
  color: #4768cf;
  font-weight: bold;
  font-size: inherit;
  text-decoration: none;
}
A:active {
  color: #374788;
  font-weight: bold;
  font-size: inherit;
  text-decoration: none;
}
A.pxup2:link {
  color: #374788;
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
}
A.pxup2:hover {
  color: #4d73ba;
  font-weight: bold;
  font-size: 17px;
  text-decoration: underline;
}
A.pxup2:visited {
  color: #4768cf;
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
}
A.pxup2:active {
  color: #374788;
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
}
A.pxdn2:link {
  color: #374788;
  font-weight: bold;
  font-size: 13px;
  text-decoration: none;
}
A.pxdn2:hover {
  color: #4d73ba;
  font-weight: bold;
  font-size: 13px;
  text-decoration: underline;
}
A.pxdn2:visited {
  color: #4768cf;
  font-weight: bold;
  font-size: 13px;
  text-decoration: none;
}
A.pxdn2:active {
  color: #374788;
  font-weight: bold;
  font-size: 13px;
  text-decoration: none;
}
a#linknotab {
  display: block;
  width: 100%;
  height: 100%;
  font-family: arial, helvetica, sans-serif;
  color: #999999;
  font-size: 14px;
  text-decoration: none;
}
a#linktab {
  display: block;
  width: 100%;
  height: 100%;
  font-family: arial, helvetica, sans-serif;
  color: #a7dff8;
  font-size: 14px;
  text-decoration: none;
}
a#linktab:hover {
  background-color: #f7f7f7;
  color: #69c;
}
/* margins for TEXT elements */
.m0 {
	margin:0px;
}
.m0T {
  margin-top: 0px;
}
.m0B {
  margin-bottom: 0px;
}
.m0L {
  margin-left: 0px;
}
.m0R {
  margin-right: 0px;
}
.m5 {
  margin-left: 5px;
  margin-top: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.m5T {
  margin-top: 5px;
}
.m5B {
  margin-bottom: 5px;
}
.m5L {
  margin-left: 5px;
}
.m5R {
  margin-right: 5px;
}
.m10 {
  margin-left: 10px;
  margin-top: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.m10L {
  margin-left: 10px;
}
.m10T {
  margin-top: 10px;
}
.m10B {
  margin-bottom: 10px;
}
.m10R {
  margin-right: 10px;
}
.m10TL {
  margin-left: 10px;
  margin-top: 10px;
}
.m10TLR {
  margin-left: 10px;
  margin-top: 10px;
  margin-right: 10px;
}
.m20 {
  margin-left: 20px;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}
.m20L {
  margin-left: 20px;
}
.m20T {
  margin-top: 20px;
}
.m20B {
  margin-bottom: 20px;
}
.m20R {
  margin-right: 20px;
}
.m20TL {
  margin-left: 20px;
  margin-top: 20px;
}
.m20TLR {
  margin-left: 20px;
  margin-top: 20px;
  margin-right: 20px;
}
.m30 {
  margin-left: 30px;
  margin-top: 30px;
  margin-right: 30px;
  margin-bottom: 30px;
}
.m30L {
  margin-left: 30px;
}
.m30T {
  margin-top: 30px;
}
.m30B {
  margin-bottom: 30px;
}
.m30R {
  margin-right: 30px;
}
.m30TL {
  margin-left: 30px;
  margin-top: 30px;
}
.m30LR {
  margin-left: 30px;
  margin-right: 30px;
}
.m30TLR {
  margin-left: 30px;
  margin-top: 30px;
  margin-right: 30px;
}
td.text5, div.text5 {
  padding-left: 5px;
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
}
td.text10, div.text10 {
  padding-left: 10px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}
td.text10T, div.text10T {
  padding-top: 10px;
}
td.text10L, div.text10L {
  padding-left: 10px;
}
td.text10TL, div.text10TL {
  padding-left: 10px;
  padding-top: 10px;
}
td.text10TLR, div.text10TLR {
  padding-left: 10px;
  padding-top: 10px;
  padding-right: 10px;
}
td.text10LR, div.text10LR {
  padding-left: 10px;
  padding-right: 10px;
}
td.text20, div.text20 {
  padding-left: 20px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}
td.text20L, div.text20L {
  padding-left: 20px;
}
td.text20T, div.text20T {
  padding-top: 20px;
}
td.text20TL, div.text20TL {
  padding-left: 20px;
  padding-top: 20px;
}
td.text20TLR, div.text20TLR {
  padding-left: 20px;
  padding-top: 20px;
  padding-right: 20px;
}
td.text20LR, div.text20LR {
  padding-left: 20px;
  padding-right: 20px;
}
td.text30, div.text30 {
  padding-left: 30px;
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
}
td.text30L, div.text30L {
  padding-left: 30px;
}
td.text30T, div.text30T {
  padding-top: 30px;
}
td.text30TL, div.text30TL {
  padding-left: 30px;
  padding-top: 30px;
}
td.text30TLR, div.text30TLR {
  padding-left: 30px;
  padding-top: 30px;
  padding-right: 30px;
}
td.text30LR, div.text30LR {
  padding-left: 30px;
  padding-right: 30px;
}
/* Boxes */
div.hed12 {
  height: 10px;
  border: 2px solid #003366;
  margin: 0 0 0 0;
}
.column_hed12 {
  font-size: 7px;
  margin-top: 1px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  line-height: normal;
  font-weight: bold;
  color: #eeeeee;
}
div.hed16 {
  height: 14px;
  border: 2px solid #003366;
  margin: 0 0 0 0;
}
.column_hed16 {
  font-size: 8px;
  margin-top: 2px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  line-height: normal;
  font-weight: bold;
  color: #eeeeee;
}
div.hed20 {
  height: 17px;
  border: 2px solid #003366;
  margin: 0 0 0 0;
}
.column_hed20 {
  font-size: 9px;
  margin-top: 2px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  line-height: normal;
  font-weight: bold;
  color: #eeeeee;
}
div.hed24 {
  height: 20px;
  border: 2px solid #003366;
  margin: 0 0 0 0;
}
.column_hed24 {
  font-size: 11px;
  margin-top: 4px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  line-height: 14px;
  font-weight: bold;
  color: #eeeeee;
}
div.hed30 {
  height: 30px;
  border: 2px solid #003366;
  margin: 0 0 0 0;
}
.column_hed30 {
  font-size: 13px;
  margin-top: 3px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  line-height: normal;
  font-weight: bold;
  color: #eeeeee;
}
div.hed40 {
  height: 40px;
  border: 2px solid #003366;
  margin: 0 0 0 0;
}
.column_hed40 {
  font-size: 18px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  line-height: normal;
  font-weight: bold;
  color: #eeeeee;
}
div.textbox {
  border: 1px solid #000;
  margin-top: 0;
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 20px;
}
div.textbox-ffffff {
  border: 2px solid #666;
  background-color: #ffffff;
  margin-top: 0;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}
div.textbox-ffffcb {
  border: 2px solid #666;
  background-color: #ffffcb;
  margin-top: 0;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}
div.textbox-small-ffffcb {
  border: 2px solid #666;
  background-color: #ffffcb;
  margin-top: 0;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 0px;
}
div.textbox-tiny-ffffcb {
  border: 1px solid #666;
  background-color: #ffffcb;
  padding-top: 2px;
  padding-left: 12px;
  padding-right: 2px;
  padding-bottom: 2px;
}
div.textbox-d3eaff {
  border: 2px solid #666;
  background-color: #d3eaff;
  margin-top: 0;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}
div.textbox-small-d3eaff {
  border: 2px solid #666;
  background-color: #d3eaff;
  margin-top: 0;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 0px;
}
div.textbox-tiny-d3eaff {
  border: 1px solid #666;
  background-color: #d3eaff;
  padding-top: 2px;
  padding-left: 12px;
  padding-right: 2px;
  padding-bottom: 2px;
}
div.textbox-d4ffb8 {
  border: 2px solid #666;
  background-color: #d4ffb8;
  margin-top: 0;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}
div.textbox-small-d4ffb8 {
  border: 2px solid #666;
  background-color: #d4ffb8;
  margin-top: 0;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 0px;
}
div.textbox-tiny-d4ffb8 {
  border: 1px solid #666;
  background-color: #d4ffb8;
  padding-top: 2px;
  padding-left: 12px;
  padding-right: 2px;
  padding-bottom: 2px;
}
div.frame1box {
  border: 1px solid #000;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
div.frame2box {
  border: 2px solid #000;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
/* Horizontal Rules */
hr {
  width: 100%;
  height: 2px;
  background-color: #324e96;
  border: 1px solid #324e96;
}
hr.hr1 {
  color: #333333;
  background-color: #333333;
  height: 1px;
}
hr.hr2 {
  color: #333333;
  background-color: #333333;
  height: 2px;
}
div.hr1 {
  width: 100%;
  height: 1px;
  background-image: url(https://www.makeadifference.com/img/dot_black.gif);
  background-repeat: repeat;
}
div.hr1red2 {
  width: 100%;
  height: 1px;
  background-image: url(https://www.makeadifference.com/img/dot_black.gif);
  background-repeat: repeat;
}
div.hr4 {
  width: 100%;
  height: 4px;
  background-image: url(https://www.makeadifference.com/img/MD_horiz-rul_4.png);
  background-repeat: repeat;
}
/* BLOCKQUOTES */
BLOCKQUOTE {
  margin-right: 8px;
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
BLOCKQUOTE.indent30 {
  margin-right: 8px;
  margin-left: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
}
BLOCKQUOTE.indent40 {
  margin-right: 8px;
  margin-left: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
}
BLOCKQUOTE.indent60 {
  margin-right: 8px;
  margin-left: 60px;
  margin-top: 10px;
  margin-bottom: 10px;
}
BLOCKQUOTE.indent80 {
  margin-right: 8px;
  margin-left: 80px;
  margin-top: 10px;
  margin-bottom: 10px;
}
BLOCKQUOTE.indent100 {
  margin-right: 8px;
  margin-left: 100px;
  margin-top: 10px;
  margin-bottom: 10px;
}
BLOCKQUOTE.indent120 {
  margin-right: 8px;
  margin-left: 120px;
  margin-top: 10px;
  margin-bottom: 10px;
}
BLOCKQUOTE.indent160 {
  margin-right: 8px;
  margin-left: 160px;
  margin-top: 10px;
  margin-bottom: 10px;
}
/* Special Section Fonts */
.footer {
  font: normal 10px verdana;
  color: #333333;
}
/* Text Sizing for standard 15px base size */
.pxup20 {
  font-size: 35px;
}
.pxup16 {
  font-size: 31px;
}
.pxup12 {
  font-size: 27px;
}
.pxup10 {
  font-size: 25px;
}
.pxup8 {
  font-size: 23px;
}
.pxup6 {
  font-size: 21px;
}
.pxup4 {
  font-size: 19px;
}
.pxup4l {
  font-size: 19px;
  line-height: 25px;
}
.pxup3 {
  font-size: 18px;
}
.pxup2 {
  font-size: 17px;
}
.pxup1 {
  font-size: 16px;
}
.pxup0 {
  font-size: 15px;
}
.pxdn1 {
  font-size: 14px;
}
.pxdn1l {
  font-size: 14px;
  color: inherit;
}
.pxdn2 {
  font-size: 13px;
}
.pxdn3 {
  font-size: 12px;
}
.pxdn4 {
  font-size: 11px;
}
.pxdn5 {
  font-size: 10px;
}
.pxdn6 {
  font-size: 9px;
}
.pxdn7 {
  font-size: 8px;
}
/* Arial variants  */
.Arial {
  font-family: Arial, Helvetica, sans-serif;
}
.Apxup12 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 29px;
}
.Apxup10 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 27px;
}
.Apxup8 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
}
.Apxup6 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
}
.Apxup4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
}
.Apxup3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}
.Apxup2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
}
.Apxup1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
}
.Apxup0 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
}
.Apxdn1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}
.Apxdn2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
}
.Apxdn3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}
.Apxdn4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
}
.Apxdn5 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
.Apxdn6 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}
/* Arial Black variants */
.ABpxup18 {
  font-family: "Arial Black", Gadget, sans-serif;
  font-size: 30px;
}
.ABpxup15 {
  font-family: "Arial Black", Gadget, sans-serif;
  font-size: 28px;
}
.ABpxup12 {
  font-family: "Arial Black", Gadget, sans-serif;
  font-size: 27px;
}
.ABpxup10 {
  font-family: "Arial Black", Gadget, sans-serif;
  font-size: 25px;
}
.ABpxup8 {
  font-family: "Arial Black", Gadget, sans-serif;
  font-size: 23px;
}
.ABpxup6 {
  font-family: "Arial Black", Gadget, sans-serif;
  font-size: 21px;
}
.ABpxup4 {
  font-family: "Arial Black", Gadget, sans-serif;
  font-size: 19px;
}
.ABpxup3 {
  font-family: "Arial Black", Gadget, sans-serif;
  font-size: 18px;
}
.ABpxup2 {
  font-family: "Arial Black", Gadget, sans-serif;
  font-size: 17px;
}
.ABpxup1 {
  font-family: "Arial Black", Gadget, sans-serif;
  font-size: 16px;
}
.ABpxup0 {
  font-family: "Arial Black", Gadget, sans-serif;
  font-size: 15px;
}
/* Georgia variants  */
.Georgia {
  font-family: Georgia, "Times New Roman", Times, serif;
}
.Gpxup12 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 27px;
}
.Gpxup10 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 25px;
}
.Gpxup8 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 23px;
}
.Gpxup6 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 21px;
}
.Gpxup4 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 19px;
}
.Gpxup3 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 18px;
}
.Gpxup2 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 17px;
}
.Gpxup1 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
}
.Gpxup0 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 15px;
}
.Gpxdn1 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 14px;
}
.Gpxdn2 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 13px;
}
.Gpxdn3 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 12px;
}
.Gpxdn4 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 11px;
}
/* Section Heads in Colors */
.hed_blue_up20 {
  font-size: 35px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_blue_up18 {
  font-size: 33px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_blue_up16 {
  font-size: 31px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_blue_up14 {
  font-size: 29px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_blue_up12 {
  font-size: 27px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_blue_up10 {
  font-size: 25px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_blue_up8 {
  font-size: 23px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_blue_up6 {
  font-size: 21px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_blue_up5 {
  font-size: 20px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_blue_up4 {
  font-size: 19px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_blue_up3 {
  font-size: 18px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_blue_up2 {
  font-size: 17px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_blue_up1 {
  font-size: 16px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_blue {
  font-size: 15px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_blue_dn1 {
  font-size: 14px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_blue_dn2 {
  font-size: 13px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_blue_dn3 {
  font-size: 12px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_blue_dn4 {
  font-size: 11px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_blue_dn5 {
  font-size: 10px;
  line-height: normal;
  font-weight: bold;
  color: #324e96;
  margin: 0 0 0 0;
}
.hed_greydk_up20 {
  font-size: 35px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_greydk_up18 {
  font-size: 33px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_greydk_up16 {
  font-size: 31px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_greydk_up14 {
  font-size: 29px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_greydk_up12 {
  font-size: 27px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_greydk_up10 {
  font-size: 25px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_greydk_up8 {
  font-size: 23px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_greydk_up6 {
  font-size: 21px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_greydk_up5 {
  font-size: 20px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_greydk_up4 {
  font-size: 19px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_greydk_up3 {
  font-size: 18px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_greydk_up2 {
  font-size: 17px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_greydk_up1 {
  font-size: 16px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_greydk {
  font-size: 15px;
  line-height: 18px;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_greydk_dn1 {
  font-size: 14px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_greydk_dn2 {
  font-size: 13px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_greydk_dn3 {
  font-size: 12px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_greydk_dn4 {
  font-size: 11px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_greydk_dn5 {
  font-size: 10px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_grey_up20 {
  font-size: 35px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_grey_up18 {
  font-size: 33px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_grey_up16 {
  font-size: 31px;
  line-height: normal;
  font-weight: bold;
  color: #202020;
  margin: 0 0 0 0;
}
.hed_grey_up14 {
  font-size: 29px;
  line-height: normal;
  font-weight: bold;
  color: #5b5b5b;
  margin: 0 0 0 0;
}
.hed_grey_up12 {
  font-size: 27px;
  line-height: normal;
  font-weight: bold;
  color: #5b5b5b;
  margin: 0 0 0 0;
}
.hed_grey_up10 {
  font-size: 25px;
  line-height: normal;
  font-weight: bold;
  color: #5b5b5b;
  margin: 0 0 0 0;
}
.hed_grey_up8 {
  font-size: 23px;
  line-height: normal;
  font-weight: bold;
  color: #5b5b5b;
  margin: 0 0 0 0;
}
.hed_grey_up6 {
  font-size: 21px;
  line-height: normal;
  font-weight: bold;
  color: #5b5b5b;
  margin: 0 0 0 0;
}
.hed_grey_up5 {
  font-size: 20px;
  line-height: normal;
  font-weight: bold;
  color: #5b5b5b;
  margin: 0 0 0 0;
}
.hed_grey_up4 {
  font-size: 19px;
  line-height: normal;
  font-weight: bold;
  color: #5b5b5b;
  margin: 0 0 0 0;
}
.hed_grey_up3 {
  font-size: 18px;
  line-height: normal;
  font-weight: bold;
  color: #5b5b5b;
  margin: 0 0 0 0;
}
.hed_grey_up2 {
  font-size: 17px;
  line-height: normal;
  font-weight: bold;
  color: #5b5b5b;
  margin: 0 0 0 0;
}
.hed_grey_up1 {
  font-size: 16px;
  line-height: normal;
  font-weight: bold;
  color: #5b5b5b;
  margin: 0 0 0 0;
}
.hed_grey {
  font-size: 15px;
  line-height: normal;
  font-weight: bold;
  color: #5b5b5b;
  margin: 0 0 0 0;
}
.hed_grey_dn1 {
  font-size: 14px;
  line-height: normal;
  font-weight: bold;
  color: #5b5b5b;
  margin: 0 0 0 0;
}
.hed_grey_dn2 {
  font-size: 13px;
  line-height: normal;
  font-weight: bold;
  color: #5b5b5b;
  margin: 0 0 0 0;
}
.hed_grey_dn3 {
  font-size: 12px;
  line-height: normal;
  font-weight: bold;
  color: #5b5b5b;
  margin: 0 0 0 0;
}
.hed_grey_dn4 {
  font-size: 11px;
  line-height: normal;
  font-weight: bold;
  color: #5b5b5b;
  margin: 0 0 0 0;
}
.hed_grey_dn5 {
  font-size: 10px;
  line-height: normal;
  font-weight: bold;
  color: #5b5b5b;
  margin: 0 0 0 0;
}
.hed_greylt_up20 {
  font-size: 35px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_greylt_up18 {
  font-size: 33px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_greylt_up16 {
  font-size: 31px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_greylt_up14 {
  font-size: 29px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_greylt_up12 {
  font-size: 27px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_greylt_up10 {
  font-size: 25px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_greylt_up8 {
  font-size: 23px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_greylt_up6 {
  font-size: 21px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_greylt_up5 {
  font-size: 20px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_greylt_up4 {
  font-size: 19px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_greylt_up3 {
  font-size: 18px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_greylt_up2 {
  font-size: 17px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_greylt_up1 {
  font-size: 16px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_greylt {
  font-size: 15px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_greylt_dn1 {
  font-size: 14px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_greylt_dn2 {
  font-size: 13px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_greylt_dn3 {
  font-size: 12px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_greylt_dn4 {
  font-size: 11px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_greylt_dn5 {
  font-size: 10px;
  line-height: normal;
  font-weight: bold;
  color: #999999;
  margin: 0 0 0 0;
}
.hed_red2_up20 {
  font-size: 35px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_red2_up18 {
  font-size: 33px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_red2_up16 {
  font-size: 31px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_red2_up14 {
  font-size: 29px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_red2_up12 {
  font-size: 27px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_red2_up10 {
  font-size: 25px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_red2_up8 {
  font-size: 23px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_red2_up6 {
  font-size: 21px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_red2_up5 {
  font-size: 20px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_red2_up4 {
  font-size: 19px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_red2_up3 {
  font-size: 18px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_red2_up2 {
  font-size: 17px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_red2_up1 {
  font-size: 16px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_red2 {
  font-size: 15px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_red2_dn1 {
  font-size: 14px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_red2_dn2 {
  font-size: 13px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_red2_dn3 {
  font-size: 12px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_red2_dn4 {
  font-size: 11px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_red2_dn5 {
  font-size: 10px;
  line-height: normal;
  font-weight: bold;
  color: #800000;
  margin: 0 0 0 0;
}
.hed_tahoma {
  font-family: Tahoma, Geneva, sans-serif;
}
/* Forms and Buttons */
input, select, option, textarea, .form {
  font: normal 11px verdana;
  color: #333333;
  border-top: solid 1px #666633;
  border-left: solid 1px #666633;
  border-right: solid 1px #DADAB6;
  border-bottom: solid 1px #DADAB6;
  background-color: #DFDFF3;
}
.lift /* raises letters up next to Audio buttons */ {
  position: relative;
  bottom: 6px
}
.sup /* raises letters up next to Audio buttons */ {
  font-size: 10px;
  position: relative;
  bottom: 4px
}
.indent {
  text-indent: 2em;
  margin-top: 0;
  margin-bottom: 0;
}
.indent12 {
  font-size: 12pt;
  text-indent: 2em;
  margin-top: 0;
  margin-bottom: 0;
}
.red {
  color: #d30b0b;
}
.red2 {
  color: #800000;
}
.teal {
  color: #004040;
}
.blue {
  color: #324e96;
}
.green {
  color: #006600;
}
.grey {
  color: #5b5b5b;
}
.greydk {
  color: #202020;
}
.greylt {
  color: #999999;
}
.white {
  color: #ffffff;
}
.headpurple {
  color: #423d5b; /*  actual header purple is 494462 this is a hair darker  */
}
/* text background color bars */
.melobar {
  background-color: #bbb9d4;
  color: #FFF;
}
.yelobar {
  background-color: #ffff99;
}
.yelobar12 {
  background-color: #ffff99;
  font-size: 16px;
}
.yelobar14 {
  background-color: #ffff99;
  font-size: 18px;
}
div.countercover {
  width: 100px;
  background-color: #75c5ea;
}
/* -----Author---bk@oscontract.com-----*/
/* -----------------CONTENT---------------------*/
#maincontent {}
.whitebox {
  font-size: 12px;
  font-weight: normal;
  background: #FFFFFF;
  line-height: 15px;
  border: 1px solid #333333;
  color: #333333;
  padding: 5px;
}
.question {
  font-size: 13px;
  font-weight: bold;
  line-height: 18px;
  color: #800000;
}
.choice {
  font-size: 12px;
  font-weight: normal;
  line-height: 12px;
  color: #333333;
  padding: 5px;
}
.content {
  font-size: 12px;
  font-weight: normal;
  line-height: 14px;
  color: #333333;
}
/* --------------------------------------------------*/
/* -----------------------ALERT-----------------------*/
.alert {
  font-size: 12px;
  font-weight: bold;
  line-height: 12px;
  color: #FF0000;
}
/* ---------------INPUT FIELDS AND BUTTON-------------*/
.input_field {
  BACKGROUND-COLOR: #FFFFFF;
  COLOR: #AD9C52;
  font-family: Tahoma, arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  border-top: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  border-right: 1px solid #bbbbbb;
  border-bottom: 1px solid #bbbbbb;
  padding: 3px;
}
.input_field:hover {
  background-color: #FFFFEF;
  padding: 3px;
}
.input_field:focus {
  background-color: #FFFFEF;
  padding: 3px;
}
.submit_button {
  font: bold 95% Tahoma, arial, Helvetica, sans-serif;
  font-size: 12px;
  cursor: pointer;
  FONT-WEIGHT: Bold;
  COLOR: #FFFFFF;
  padding: 3px;
  padding-left: 8px;
  padding-right: 8px;
  border: 1px solid #333333;
  background: #9D2D47;
}
#page {
  width: 940px;
  margin: auto;
  padding: 20px 35px 0px 15px; /* PADDING  top right bottom left  */
}
#page_body {
  width: 830px; /*  this plus rh and lh margins adds up to 940  */
  padding: 0px;
  margin: 0px 55px 0px 55px; /* MARGIN  top right bottom left  */
}
#page_widebody {
  width: 890px;
  padding: 0px;
  margin: 0px 25px 0px 25px; /* MARGIN  top right bottom left  */
}
#page_top {
  width: 940px;
  height: 22px;
  background-image: url(https://www.connectingwithcolors.com/img/f7f7f9_top.png);
  background-repeat: no-repeat;
  margin: auto;
  padding: 0px;
}
#page_mid {
  width: 940px;
  background-image: url(https://www.connectingwithcolors.com/img/f7f7f9_mid.png);
  background-repeat: repeat-y;
  margin: auto;
  padding: 0px;
}
#page_btm {
  width: 940px;
  height: 31px;
  background-image: url(https://www.connectingwithcolors.com/img/f7f7f9_btm.png);
  background-repeat: no-repeat;
  margin: auto;
  padding: 0px;
}
#blubox_body {
  width: 750px; /*  this plus rh and lh margins adds up to 830  */
  padding: 0px;
  margin: 0px 40px 0px 40px; /* MARGIN  top right bottom left  */
}
#blubox_top {
  width: 830px;
  height: 20px;
  background-image: url(https://www.connectingwithcolors.com/img/wf7f7f9_top.png);
  background-repeat: no-repeat;
  margin: auto;
  padding: 0px;
}
#blubox_mid {
  width: 830px;
  background-image: url(https://www.connectingwithcolors.com/img/w7f7f9_mid.png);
  background-repeat: repeat-y;
  margin: auto;
  padding: 0px;
}
#blubox_btm {
  width: 830px;
  height: 20px;
  background-image: url(https://www.connectingwithcolors.com/img/w7f7f9_btm.png);
  background-repeat: no-repeat;
  margin: auto;
  padding: 0px;
}
#blubox_405_body {
  width: 375px; /*  this plus rh and lh margins adds up to 405  */
  padding: 0px;
  margin: 0px 15px 0px 15px; /* MARGIN  top right bottom left  */
}
#blubox_405_top {
  width: 405px;
  height: 20px;
  background-image: url(https://www.connectingwithcolors.com/img/wf7f7f9_top_405.png);
  background-repeat: no-repeat;
  margin: auto;
  padding: 0px;
}
#blubox_405_mid {
  width: 405px;
  background-image: url(https://www.connectingwithcolors.com/img/w7f7f9_mid_405.png);
  background-repeat: repeat-y;
  margin: auto;
  padding: 0px;
}
#blubox_405_btm {
  width: 405px;
  height: 20px;
  background-image: url(https://www.connectingwithcolors.com/img/w7f7f9_btm_405.png);
  background-repeat: no-repeat;
  margin: auto;
  padding: 0px;
}
div.testimony {
  padding-top: 25px;
  padding-bottom: 10px;
}
div.body {
  width: 1020px;
  padding: 0px;
  margin: auto;
}
/* special "Lisa Sasevich" formatting  */
.style19 {
  color: #000066;
  font-weight: bold;
}
.testimonial {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 10pt;
  font-style: italic;
}
.text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-align: left;
  padding: 0;
  margin: 0;
  line-height: 18px;
}
.style51 {
  color: #BE0000;
  font-size: 18px;
  font-weight: bold;
}
.style58 {
  color: #BE0000;
  font-size: 30px;
  font-weight: bold;
  font-family: Georgia, "Times New Roman", Times, serif;
}
.style63 {
  color: #CC0000;
  font-weight: bold;
  font-size: 24px;
}
.style65 {
  color: #000066;
  font-weight: bold;
  font-size: 18px;
}
.style66 {
  color: #CC0000;
  font-weight: bold;
}
.style67 {
  font-size: 10px
}
.style2 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #333399;
  font-size: 24px;
}
.style4 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #333399;
  font-size: 13pt;
}
.style41 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #333399;
  font-size: 11pt;
}
.style44 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}
.style46 {
  font-size: 13pt
}
.style70 {
  font-size: 14px
}
.style71 {
  color: #CC0000;
  font-weight: bold;
  font-size: 18px;
}
.style73 {
  color: #000066;
  font-weight: bold;
  font-size: 22px;
}
.style75 {
  font-size: 36px
}
.style76 {
  font-size: 24px;
  font-weight: bold;
}
.style3 {
  color: #a7dff8
}
/* Verdana variants for Georgia css  */
.Vpxup12 {
  font-size: 28px;
}
.Vpxup10 {
  font-size: 26px;
}
.Vpxup8 {
  font-size: 24px;
}
.Vpxup6 {
  font-size: 22px;
}
.Vpxup4 {
  font-size: 20px;
}
.Vpxup3 {
  font-size: 19px;
}
.Vpxup2 {
  font-size: 18px;
}
.Vpxup1 {
  font-size: 17px;
}
.Vpxup0 {
  font-size: 16px;
}
.Vpxdn1 {
  font-size: 15px;
}
.Vpxdn2 {
  font-size: 14px;
}
.Vpxdn3 {
  font-size: 13px;
}
.Vpxdn4 {
  font-size: 12px;
}
/* Variants for NUMERALS for Georgia css - too small in Georgia */
.Npxup16 {
  font-size: 30px;
}
.Npxup12 {
  font-size: 26px;
}
.Npxup10 {
  font-size: 24px;
}
.Npxup8 {
  font-size: 22px;
}
.Npxup6 {
  font-size: 20px;
}
.Npxup4 {
  font-size: 20px;
}
.Npxup3 {
  font-size: 19px;
}
.Npxup2 {
  font-size: 18px;
}
.Npxup1 {
  font-size: 17px;
}
.tahoma {
  font-family: Tahoma, Geneva, sans-serif;
}
.lucida {
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif
}
