/** Redesigned September, 2023 **/

* { border: 0; }

:root {
    --magenta: #ee008c;
    --magenta-dark: #890050;
    --teal-dark: #007880;
    --teal: #00bac6;
    --teal-3: #d4fcff;
    --yellow: #e8ee46;
    --gold: #ffcd47;
    --gold-2: #fcad0d;
    --purple: #8830cc;
    --purple-2: #a65a9f;
    --purple-3: #e8b2ff;
    --purple-4: #ffe5ff;
    --green: #00af4b;
    --muted: #999999;
    --muted-2: #d8dee2;
    --white: #fff;
}
.white { color: white; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  font-family: "Lucida Grande", Arial, Helvetica, sans-serif;
  color: #333;
  font-size: .85em;
  background-color: #676767;
}
#Wrapper {
    /** position: absolute; 
    top: 0; ************ Hide only during production!!!! **************/
    width: 100%;
    min-width: 320px;
    height: 100%;
    margin: 0;
    padding: 0;
    background: url(../images/diagonal-pin-stripe-bkg.png) repeat-x -3px 0 !important;
    background-attachment: fixed !important;
    left: -2px;
}
#ContainerBG {
  width: 100%;
  max-width: 967px;
  margin: 0 auto 0 auto;
  padding: 0;
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  /** overflow: hidden; ** Hide only while editiging to make object more accessible in WYSWG **/
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, .30);
}
	
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: bold; margin: 0; padding: 0; display: block; }
a, ul, li, ol, form { margin: 0; padding: 0; }
a, a:hover { text-decoration: none; cursor: pointer; font-weight: bold; }
p {	font-size: .85rem; }
em { font-style: italic; }
strong { font-weight: bold;	color: #343434; }
hr { border: 0; }

hr.magenta { border: solid #ee008c 1px; }

images { max-width: 100%; }

#Wrapper.flex .image1 { display: block; } /* To Swap Image with Mobile Sized Version */
#Wrapper.flex .image2 { display: none !important; }
@media only screen and (max-width: 450px) {
	#Wrapper.flex .image1 { display: none !important; }
	#Wrapper.flex .image2 { display: block !important; width: 95%; height: auto; margin: inherit auto !important; }
}

.t-grow-10 {font-size: 1.1em !important;} /* Emphasize text by enlarging font size */
.t-grow-20 {font-size: 1.2em !important;}
.t-grow-30 {font-size: 1.3em !important;}
.t-grow-40 {font-size: 1.4em !important;}
.t-grow-50 {font-size: 1.5em !important;}
.t-grow-60 {font-size: 1.6em !important;}
.t-grow-70 {font-size: 1.7em !important;}
.t-grow-80 {font-size: 1.8em !important;}
.t-grow-90 {font-size: 1.9em !important;}
.t-grow-100 {font-size: 2em !important;}

/* Button - Source: bootstrap.css */
.btn {
  display: inline-block;
  margin: 2px;
  text-align: center;
  white-space: wrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: .85rem;
  line-height: 1.1;
  border-radius: 0.35rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn:hover, .btn:focus {
  text-decoration: none;
  background-color: var(--gold);
  color: #fff;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

.btn.mag-wht {
    background-color: #ee008c;
    color: #fff;
}
.btn.teal-wht {
    background-color: var(--teal);
    color: #fff;
}
.btn.purp-wht {
    background-color: var(--purple);
    color: #fff;
}
.btn.purp-wht {
    background-color: var(--purple);
    color: #fff;
}


#Container { width: 100%; min-width: 967px; margin: 0 auto 0 auto; background-color: #ffffff; clear: both; } 


/**** Masthead Begin ******/

/* Main Nav */
#Masthead #mainNav { display: block; height: auto; width: 100%; background-color: #583f99; text-align: center; border-bottom: solid #00a1ab 3px; }

#Masthead #mainNav ul li { font: bold "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif"; font-size: 1.1em; line-height: 1.6em; display: inline-block; margin: 0 8px 0px 8px; }

#Masthead #mainNav ul li a { color: #fff; text-decoration: none; font-weight: bold; display: block; height: auto; }
#Masthead #mainNav ul li a:hover { color: #fff799; }
#Masthead #mainNav ul li:hover ul { display: block; }


/* Header */

#Masthead #Header { max-width: 1024px; margin: 0 auto 0 auto; padding: 12px 0 5px 15px; background-color: #c30271; }

/* Main Nav Drop Down */

#Masthead #mainNav #button {
    display: none;
    color: #fff; /* Keep to eliminate throwing contrast error. */
}

#Masthead #mainNav ul li ul {
  display: none;
  background-color: #fff;
  position: absolute;
  padding-bottom: 5px;
  text-align: left;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 900;
  border: solid 2px #583f99;
}

 #Masthead #mainNav .animated {
            -webkit-animation-duration: .5s;
            animation-duration: .5s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
         }
         
         @-webkit-keyframes fadeIn {
            0% {opacity: 0;}
            100% {opacity: 1;}
         }
         
         @keyframes fadeIn {
            0% {opacity: 0;}
            100% {opacity: 1;}
         }
         
         .fadeIn {
            -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
         }

#Masthead #mainNav ul li ul li {
  font-size: .9em;
  display: list-item;
  height: auto;
  padding: 0;
  list-style: none;
  border-bottom: solid 1px #dcddde;
  overflow: auto;
}
#Masthead #mainNav ul li ul li:last-of-type {
  border-bottom: none;
}
#Masthead #mainNav ul li ul li a {
  display: block;
  height: auto;
  color: #343a40;
  padding: 3px 0;
}
#Masthead #mainNav ul li ul li a:hover {
  color: var(--magenta);
    background-color: #f1f1f1;
}

#Masthead #mainNav ul li ul li ul { /** NEW! **/
    position: relative;
    width: 100%;
    border: none;
    padding-left: 0;
}
#Masthead #mainNav ul li ul li ul li { /** NEW! **/
    font-size: 1em;

}
#Masthead #mainNav ul li ul li ul li a::before {
    content: "• ";
    color: #dcddde;
}
#Masthead #mainNav ul li ul li ul li a { 
    color: #343a40;
    font-weight: normal;
}

#Masthead #mainNav #menu { 
  margin: 0;
  } 
#Masthead #mainNav #menu .closeMenu { 
display: none;
}
#mastheadLowBorder { display: none; }

/* Search Field */

#Masthead #fpSearch {  
  width: 170px; 
  position: relative;
  float: right;
  top: -100px;
  right: 20px;
  background-color: #fce5ef;
  border-radius: 10px;
  padding: 4px 8px;
  margin-bottom: -30px;
}
#Masthead #fpSearch form {
  margin: 7px 0px;
}

#Masthead #fpSearch input { font-family: Lucida Grande, Arial, Helvetica, sans-serif; font-size: 12px; }
#Masthead #fpSearchText { padding: 2px 5px; border: 1px solid; border-color: #650d3f #fce5ef #fce5ef #650d3f; height: 15px; width: 120px; color: #242424; }
#Masthead #fpSearchHint { padding: 2px 5px; border: 1px solid; border-color: #650d3f #fce5ef #fce5ef #650d3f; height: 15px; width: 120px; color: #242424; }
#Masthead #fpSearchButton { border: 0; float: right; margin-top: -7px; filter: drop-shadow(0px 1px 2px rgb(0 0 0 / 0.5)); }

#Masthead .searchBkgColor {
	display: block;
	width: 100%;
	margin: 0 auto
}

/* View Cart and My Account Links */

#Masthead #accessLinks {
  display: block;
  width: auto; 
  position: relative;
  float: right;
  top: -53px;
  right: -152px;
  color: #fff;
  background-color:  rgba(0,0,0,.2);
}
#Masthead #accessLinks a {
  padding: 2px 4px;
  border-radius: 2px;
  font-size: .95em;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
#Masthead #accessLinks a:hover {
  color: #fff;
}

#Masthead #fpBody  { margin: 0; padding: 0; font-family: Lucida Grande, Arial, Helvetica, sans-serif; font-size: 90%; color: #000; }

#Masthead #fpWrapper  { width: 100%; height: 100%; margin: 0; padding: 0; background-color: #ffffff; }


/* Masthead */

#Masthead {
  width: 967px;
  margin: 0 auto;
  padding: 0;
}
#Masthead h1 {
  display: inline-block;
  width: 180px;
  height: 66px;
  background-image: url(../images/kagan_logo_purp_stroke.svg);
  background-size: cover;
  text-indent: -9999px;
  filter: drop-shadow(0px 4px 5px rgb(0 0 0 / 0.4));
}
#Masthead h2 {
  display: inline-block;
  width: 411px;
  height: 34px;
  background-image: url(../images/kagan_tagline_pink.svg);
  background-size: cover;
  text-indent: -9999px;
  position: relative;
  top: 15px;
    color: #fff;
}
/**** Masthead End ******/


/* Breadcrumb */

#Breadcrumb {
  display: block;
  width: 100%;
  margin: 15px 0 0 0;
  padding-left: 10px;
  font-size: 0.85em;
  color: #646464;
}
#Breadcrumb a {
  font-weight: normal;
  color: #646464;
  text-decoration: underline;
    
}
#Breadcrumb a:hover {
  text-decoration: none;
  color: #ec008c;
}

/* Share Button */
a.addthis_button {
    background-color: transparent !important;
    border: none !important;
}


/* Main Content */

#MainContent { display: block; margin: 10px 35px 15px 35px; padding: 0; position: relative; } 

#MainContent h2 { font-size: 1.2em; color: #4852b5; margin-bottom: 15px; }
#MainContent h3 { font-size: 1.1em; color: #939; margin-bottom: 5px; }

#MainContent p { line-height: 1.6em; margin: 1.5em 0 0 0; padding: 0; }
#MainContent p.first { margin-top: 10px; }
#MainContent p.first:first-letter { float: left; margin: 0 0.15em 0 0; font: normal 48px/0.8em Georgia, "Times New Roman", Times, serif; color: #4852b5; }
#MainContent .dropcap { float: left; margin: 0 0.15em 0 0; font: normal 48px/0.8em Georgia, "Times New Roman", Times, serif; color: #000000; }

#MainContent a { color: #ec008c; border-bottom: #ec008c 1px dotted; }
#MainContent a:hover { color: #0072bc; border-bottom: #0072bc 1px dotted; background-color: #fff; }


/* Left Sidebar */

#SidebarLeft { float: left;	width: 195px; position: relative; margin: 0 10px; z-index: 1;
}

/* Right Sidebar */

#SidebarRight { float: right; width: 200px; padding: 0 20px 0 0; display: inline; }
#SidebarRight p { font: 0.7em/1.6em Arial, Helvetica, sans-serif; margin: 10px; padding: 0; }

#SidebarRight a { color: #0072bc; border-bottom: #0072bc 1px dotted; }
#SidebarRight a:hover { color: #ec008c; border-bottom: #ec008c 1px dotted; background-color: #fff; }


/* Footer */

#Footer {
	display: block;
	text-align: center;
	width: 100%;
	min-width: 320px;
	padding: 0 0 10px 0;
	margin: 0 auto;
	color: #fff;
	clear: both;
    background-color: #c30271 !important;
    border-top: solid 3px #00a1ab;
	background-image: none !important;
} 
#Footer .inner {
	max-width: 1024px;
	margin: 0 auto;
}
#Footer #SocialMediaLinks { display: block; width: 250px; float: right; margin: 17px 0 0 0; }
#Footer #SocialMediaLinks img { margin: 0px 5px; }

#Footer ul { display: block; background-color: #583f99; padding: 4px;
}

#Footer ul li { font: bold "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif"; display: inline-block; font-size: .9em;
}

#Footer ul li a { color: #fff; text-decoration: none; font-weight: bold; }
#Footer ul li a:hover { color: #fff799; }

#Footer p {
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 18px;
}
#Footer p.copyright {
 font-size: .85em;
 font-weight: normal;
 color: #fff;
 clear: both;
 padding: 10px 0 0 0 !important;
}
#Footer p.copyright a {
 color: #fffde9;
}
#Footer #kaganUrlPhone { display: block; width: 100%; text-align: center; padding: 1px 0px; }
#Footer #kaganUrlPhone h1, #Footer #kaganUrlPhone p { color: #fff; margin-top: 20px; display: block; padding: 0 0 0 235px;}
#Footer #kaganUrlPhone img.logo {
	float: left;
	margin: 17px 0 0 20px;
}
@media print { /* Defines how a document should behave when printed */
  footer, #Footer {page-break-after: always;}
}


/* Global Content Headers (Graphic Page Titles) */
#Content header {
    width: 100%;
}
#Content header h1, #Content header h2, #Content header h3, #Content header p, header h1.stash {
  position: absolute;
  top: 0;
  text-indent: -9999px;
}
#Wrapper #Content header img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

#Content main.p10 {
    padding: 0 10px;
}
#Content main.p15 {
    padding: 15px;
}


/* About Kagan */

#Content.about { width: 90%; margin: 0 auto 15px auto; display: block; text-align: justify; }
#Content.about p { font-size: .85em; line-height: 1.7em; margin: 0 0 1.5em 0; padding: 0; }
#Content.about p.first:first-letter { float: left; margin: 0 0.15em 0 0; font: normal 48px/0.8em Georgia, "Times New Roman", Times, serif; color: #4852b5; }

#Content.about div.vidBox {
  margin: 15px 20px;
  padding: 0;
  color: #666;
  display: block;
}#Content.about div.vidBox p {
    margin-top: 0;
}
#Content.about div.vidBox strong {
  color: #2555a6;
  font-size: 1.2em;
}


#Content.about img.profilepic { border-radius: 7px; border: 2px solid #00a1ab; float: right; overflow: hidden; margin: 0 0 5px 20px; }
#Content.about img.header { display: block; height: auto; width: 100%; margin: 0 auto 20px auto; }
#Content.about h2 { display: block; text-indent: -9999px; height: 34px; width: 284px; background: url(../images/about_engagement_header.png) 0 0 no-repeat; }

#Content.about aside { padding: 20px; display: block; text-align: left; line-height: 2em; }
#Content.about aside p { color:#4852b5;font: bold italic 1em/1.8em "Lucida Grande", Arial, Helvetica, sans-serif; }
#Content.about aside h2 { background: url(../images/about_mission_header-trans.png) 22px 0 no-repeat; width: 150px; height: 154px; display: block; margin: 0 auto; }
#Content.about a { color: #0072bc; border-bottom: #0072bc 1px dotted; }
#Content.about aside a:hover { color: #ec008c; border-bottom: none !important; text-decoration: none; }

@media screen and (max-width:700px) {
    #Content.about article {
        clear: both;
        float: none;
    }
    #Content.about aside {
        float: none;
    }
    #Content.about p {
        text-align: left;
    }
}


/* About Kagan */

h1.SeePower { display: block; text-indent: -9999px; height: 61px; width: 391px; background: url(../images/see_the_power-header.png) 0 0 no-repeat; margin: 0 auto 20px 0px; }



/******* Kagan Ambassadors *******/
#Content.ambassador { width: 90%; margin: 0 auto 15px auto; display: block; }
#Content.ambassador h1 {
    max-width: 700px;
    font-size: 1.3em;
    color: #ee008c !important;
    margin: 0 auto 15px auto;
    text-align: center;
}
#Content.ambassador h2 {
    margin-bottom: 5px;
}
#Content.ambassador p, #Content.ambassador ul {
    margin-bottom: 15px;
    margin-top: 0;
}

#Content.ambassador .button {
    margin: 0  auto 10px auto;
}
#Content.ambassador .nav-button {
    border-radius: 40px;
    transform: scale(100%) !important;
}


/* Kagan Ambassador Success Stories */

#Content.ambassadorSuccessStories { width: 95%; margin: 5px auto 15px auto; display: block; border: 5px solid #fff; box-shadow: 0 0 3px 3px rgba(0, 0, 0, .30); border-radius: 20px; background: url("../images/ambassador/star-bkg.png") repeat top center, linear-gradient(180deg, rgba(110,151,196,1)2%, rgba(4, 191,198,1) 5%,rgba(176, 237, 238, 1)90%);
}
#Content.ambassadorSuccessStories main { width: 95%; margin: 5px auto; display: block; background-color: #fff; padding: 40px;
}
#Content.ambassadorSuccessStories main h1 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 2em;
  transform: scale(1, 1.13);
  color: #fcad0d !important;
  margin: 0 auto 20px auto;
  line-height: 1em;
}
h3 {
    font-size: 1.1em;
    line-height: 1.5rem;
    color: #ee008c;
    margin-bottom: 15px;
}
#Content.ambassadorSuccessStories main .author {
  font-size: 1.1em;
  margin: -10px auto 15px auto;
  line-height: 1.3em;
}
#Content.ambassadorSuccessStories main .author em {
    font-size: .85em;
}
#Content.ambassadorSuccessStories main p.first:first-letter { float: left; margin: .15em 0.15em 0 0; font: normal 48px/0.8em Georgia, "Times New Roman", Times, serif; color: #ee008c; }

#Content.ambassadorSuccessStories .series {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition: .2s;
}
#Content.ambassadorSuccessStories .series img {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin: 5px;
}
#Content.ambassadorSuccessStories .series.two-by-two img {
  width: 100%;
  height: auto;
  max-width: 305px !important;
  margin: 5px;
}
#Content.ambassadorSuccessStories aside, #omArticlesFP aside, #Content.featuredArticle aside {
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 7px;
  background-color: #fcf7d5;
  border-radius: 10px;
  text-align: center;
  border: 3px solid #efe7b3;
  font-family: "italic Georgia", "Times New Roman", Times, serif;
  color: #bc8c24;
  font-size: 1.2em;
  font-style: italic;
  line-height: 1.2em;
  font-weight: bold;
}
#Content.ambassadorSuccessStories aside p {
  font-size: 1.05em;
  line-height: normal;
  margin: 0px;
}
#Content.ambassadorSuccessStories aside .quoteSource {
  font-size: .85em;
  line-height: normal;
  margin: 5px;
  color: #9f700a;
  display: block;
}
#Content.ambassadorSuccessStories aside.twentyfive {
  width: 25%;
}
#Content.ambassadorSuccessStories aside.thirty {
  width: 30%;
}
#Content.ambassadorSuccessStories aside.fortyfive {
  width: 45%;
}
#Content.ambassadorSuccessStories aside.lgFont {
  font-size: 1.3em;
}
#Content.ambassadorSuccessStories #bottom-nav, #Content.ambassador #bottom-nav {
  display: block; width: 90%; margin: 0 auto;
}
#Content.ambassadorSuccessStories .button, #Content.ambassador #bottom-nav .button {
  width: 95%; margin: 0 auto; text-align: center;
}
#Content.ambassadorSuccessStories figure {margin: 10px 15px 5px 15px; }
#Content.ambassadorSuccessStories figure img {width: 100%; height: auto; margin: 0; }
#Content.ambassadorSuccessStories figcaption { font-size:.65rem; }
#Content.ambassadorSuccessStories figcaption.centerText { text-align: center; }


@media screen and (max-width:450px) {
  #Content.ambassadorSuccessStories {
    width: 100%;
    margin: 5px 0 0 0;
    display: block;
    border: none;
    box-shadow: none;
    border-radius: 0px;
    background: linear-gradient(180deg, rgba(4, 191, 198, 1) 50%, rgba(176, 237, 238, 1)90%);
  }
  #Content.ambassadorSuccessStories main {
    width: 95%;
    margin: 5px auto;
    display: block;
    background-color: #fff;
    padding: 10px 15px;
  }
  #Content.ambassadorSuccessStories figure {margin: 10px auto 5px auto; }
}
@media screen and (max-width:850px) {
    #Content.ambassadorSuccessStories .series.two-by-two img {
  max-width: 200px !important;
}
}


/* Call Me */

.callMeHeader { display: block; text-indent: -9999px; height: 63px; width: 217px; background: url(../images/callMe-header.png) 0 0 no-repeat; margin: 10px auto 0 35px; }
#MainContent.callMe .innerContent {
	display: block;
	width: 720px;
	margin: 0 auto;
	padding: 0 25px;
	background-color: #f4faff !important;
	border: solid #000 1px;
    border-radius: 10px; /* CSS 3 */
	overflow: hidden;
}
#MainContent.callMe .innerContent p.header { font-size: 1.1em; color:#fff; background-color: #626ec5; width: 770px; overflow-x: auto; margin: 0px -25px 20px -25px; text-align: center; }
#MainContent.callMe textarea { border: #ccc 1px solid; background: url(../images/input_bg_gradient.gif) 0 0 repeat-x #fff; color: #4852b5; font: 1em Arial, Helvetica, sans-serif; padding: 2px; height: auto; width: 450px; resize: vertical; overflow: auto; }

#MainContent.callMe input[type=radio] { margin: 5px; }

#MainContent.callMe input[type=text] { border: #ccc 1px solid; background: url(../images/input_bg_gradient.gif) 0 0 repeat-x #fff; color: #4852b5; font: 1em Arial, Helvetica, sans-serif; padding: 2px; height: auto; width: 300px; margin: 5px; }

img.character { position: absolute; top: 36px; right: 70px; }

#MainContent.callMe input[type=button] { display: block; height:46px; width:144px; background-image: url(/images/call_me_now.png); background-repeat: no-repeat; text-indent: -9999px; margin: 30px auto; background-color: transparent;
}
#MainContent.callMe input[type=button]:hover {
	background-position: -144px center;
}
#MainContent.callMe hr {
	border-bottom: dotted #4953b5 1px; margin-bottom: 0px;
}
#MainContent.callMe .otherLinks { background-color: #fffdf1; width: 770px; overflow-x: auto; margin: 0px -25px; padding-bottom: 20px;  }


/* Contact Kagan */

#Content.contact .contactHeader { display: block; text-indent: -9999px; height: 63px; width: 277px; background: url(../images/contact_header.png) 0 0 no-repeat; }
#Content.contact .row-inner { flex-wrap: nowrap; }
#Content.contact .contactBox { padding: 10px; margin: 5px; background-color: #f0f9fe; border: #daddff 2px solid; border-radius: 10px; /* CSS 3 */
}
#Content.contact div.contactBox h3 { display: block; background-color: #4852b5; color: #fff; padding: 1px 0 1px 8px; margin: 0 -10px; text-transform: uppercase; }
#Content.contact div.contactBox p { font-size: .8em; line-height: 1.6em; margin: 1.5em 0 0 0; padding: 0; }

#Content.contact a.button {
    border-radius: 20px;
    background-color: #00bfcb;
    margin: 10px auto;
    color: #fff !important;
    padding: 10px 15px;
}
#Content.contact a.button strong {
    color: #fff372 !important;
}
#Content.contact a.button:hover strong {
    color: #fff !important;
}
#Content.contact a#Chat {
    background-repeat: no-repeat;
    background-position: 0px 0px;
    text-indent: -9999px;
    text-decoration: none;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    display: block;
}
#Content.contact a#Chat.link1 {
    height: 144px;
    width: 157px;
    background-image: url(/images/call_me-button.png);
    display: block;
    background-size: cover;
}
#Content.contact a#Chat.link1:hover {
    text-decoration: none;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    background-position: -157px 0px;
}
#Content.contact a#Chat.link2 {
    height: 98px;
    width: 286px;
    background-image: url(/images/call_me-button-mobile.png);
    display: none;
    margin: 0 auto;
}
#Content.contact a#Chat.link2:hover {
    text-decoration: none;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    background-position: -286px 0px;
}

@media screen and (max-width:800px) {
    #Content.contact .row-inner { flex-wrap: wrap; }
    #Content.contact .contactBox { width: 45% !important; }
    a#Chat.link1 { display: none !important; }
    a#Chat.link2 { display: block !important; }
}
@media screen and (max-width:450px) {
    #Content.contact .contactBox { width: 100% !important; }
    #Content.contact img { display: block; margin: 0 auto 5px auto; }
}


/* Kagan is Hiring */

#corkboardFrame {
	display: block;
	width: 880px;
	background-color: #e6e6e6;
	clear: both;
	padding: 97px 0 20px 20px;
    border-radius: 10px; /* CSS 3 */
	background-image: url(../images/hiring-header.png);
	background-position: 0% 0%;
	background-repeat: no-repeat;
    overflow: auto;
	}
#corkboardFrame hr {
	display: block;
	width: 590px;
	height: 24px;
	background-image: url(../images/post-t-bl.png);
	background-position: 0px 0px;
	padding: 0px;
	margin: 0px auto;
	border: none;
}
#corkboardFrame hr.blue { background-image: url(../images/post-t-bl.png); }
#corkboardFrame hr.magenta { background-image: url(../images/post-t-mag.png); }
#corkboardFrame hr.green { background-image: url(../images/post-t-green.png); }
	
#corkboardFrame .hiringPost {
	display: block;
	width: 590px;
	margin: 0px auto 10px auto;
	padding: 0px 20px 10px 20px !important;
	background-color: #fff;
}
#corkboardFrame .hiringPost li {
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  margin-left: 20px;
  margin-bottom: 5px;
  font-size: .8rem;
  line-height: 1.6em;
}
#corkboardFrame #cork {
	display: block;
	float: left;
	width: 660px;
	border: solid #fff 5px;
	border-radius: 10px; /* CSS 3 */
	background-image: url(../images/hiring-corkBkg.png);
	background-repeat: repeat-y;
	min-height: 400px;
	}
#corkboardFrame #cork .hiringPost ul { margin-top: 5px;
}
#corkboardFrame #sidebar { display: block; width: 180px; float: right; margin-right: 15px; }
	
#ocrAward {
	display: block;
	height: auto;
	width: 180px;
	padding-bottom: 32px;
	background-image: url(../images/hiring_ribbon-bottom.png);
	background-position: center bottom;
    margin: 0 auto;
	}
#ocrAward div {
	font: normal bold "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	color: #FFFFFF;
	font-size: 1.2em;
	margin-left: 50px;
	}
#ocrAward a:hover {
	border-bottom: none !important;
	background-color: transparent;
    text-decoration: none;
}
a.glassdoor {
	display:block;
	width: 175px;
	height: 47px;
	background-image: url(../images/hiring-glassdoorLogo.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	text-indent: -9999px;
	position:relative;
	border-style: none !important;
	margin-bottom: 15px;
}
	
#trainerAd {
	width: 410px;
	background-image: url(../images/workshops/ws-trainer-sidebar-bg.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	display: block;
	margin-top: 20px;
	margin-right: -5px;
	margin-bottom: 20px;
	margin-left: 0px;
	height: 140px;
	padding-left: 10px;
	padding-top: 10px;
}
#trainerAd h4 {
	font-size: 16px;
	background-image: url(../images/hiring-becometrainer.png);
	background-repeat: no-repeat;
	background-position: 33px 0px;
	text-indent: -9999px;
	height: 27px;
	margin-top: 10px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 20px;
}
#trainerAd p {
	margin: 0 0 10px 15px;
	line-height: 1.6em;
}
#trainerAd ul {
	list-style: outside circle;
	margin: 0 0 0 20px;
}
#trainerAd li {
	margin: 5px 0 5px 15px;
	font-size: 0.7em;
	color: #a4b0d1;
	text-indent: -3px;
}
#trainerAd a {
	color: #ec008c;
	text-decoration: underline;
	border-bottom: none;
}
#trainerAd a:hover {
	color: #00a1ab;
	border-bottom: none;
}
#trainerAd br {
	display: block;
	margin: 20px 15px;
	padding: 1;
	line-height: 1;
	border-bottom: #2d90cf 1px dotted;
	width: 100%;
}	


/* Kagan Support */

.supportHeader { display: block; text-indent: -9999px; height: 63px; width: 210px; background: url(../images/kagansupport-header.png) 0 0 no-repeat; margin: 10px auto 0 -5px; }
.supportBox { float: left; display: inline; position: relative; padding: 150px 10px 10px 10px; margin: 4px 6px 15px 2px; background-color: #f0f9fe; border: #4852b5 1px solid; 
	border-radius: 10px; /* CSS 3 */
}
#MainContent div.supporttBox h3 { display: block; background-color: #4852b5; color: #fff; padding: 1px 0 1px 8px; margin: 0 -10px; text-transform: uppercase; }
#MainContent div.supportBox p { font-size: .8em; line-height: 1.6em; margin: 1.5em 0 0 0; padding: 0; }


/* Leadership Connection */

#Content.leadershipConnection { border-radius: 15px; overflow: hidden; box-shadow: 0 0 3px 3px rgba(0, 0, 0, .30); }
#Content.leadershipConnection header { width: 100%; }
#Content.leadershipConnection header h1 { position: absolute; top: 0; left: -9999px; }
#Content.leadershipConnection h1 { font-family:  Georgia, "Times New Roman", Times, serif; font-size: 2em; transform: scale(1, 1.13); color: #fcad0d; margin: 15px 0; line-height: 1em; }
#Content.leadershipConnection h2 { font-size: 1.1em; transform: scale(1, 1.13); color: #00709c; margin: 20px 0 10px 0; }
#Content.leadershipConnection p, #Content.leadershipConnection ol li { color: #494949; }
#Content.leadershipConnection .subTitle { font-size: .7em; }


#Content.leadershipConnection h3.subtitle {
  font-weight: bold;
  display: block;
  font: bold 1.5em/1.2em Georgia, "Times New Roman", Times, serif;
  color: #fcad0d;
  margin: -15px 0 0 0;
}

#Content.leadershipConnection h3 {
  font: bold 1.5em/1.2em Georgia, "Times New Roman", Times, serif;
  color: #dc9900;
  margin: 20px 10px 0 0;
}
#Content.leadershipConnection h4 {
  font-size: 1.1em;
  font-family: Arial, Helvetica, sans-serif;
  color: #4a45a9;
  line-height: 1.2em;
  margin: 20px 10px 0 0;
}
#Content.leadershipConnection p.omAuthor {
  color: #8c8c8c;
  font-weight: bold;
  text-transform: uppercase;
  margin: 5px 0 16px 0;
  line-height: 1.2em;
}

#Content.leadershipConnection p, #Content.leadershipConnection ol li, #Content.leadershipConnection ul li {
    margin-top: 5px;
    margin-bottom: 15px;
}
#Content.leadershipConnection ol li {
    margin-left: 20px;
}

#Content.leadershipConnection .dropcap { float: left; padding: 5px 5px 0 0; font-size:2.85em; font-family: quattrocento; line-height: 1em; color: var(--magenta); }

#Content.leadershipConnection img.image2 { border-radius: 10px 10px 0 0; width:100% !important; }


#Content.leadershipConnection #refs, #Content.ambassadorSuccessStories #refs {
  display: block;
  margin: 10px auto;
  padding: 10px;
  border-radius: 10px;
  background-color: #f8e7d8;
  border-width: 2px;
  border-style: solid;
  border-color: #e7d1bd;
  width: 100%;
  clear: both;
}


@media screen and (max-width: 450px) {
    #Content.leadershipConnection img.image2 { border-radius: 0;
    }
    #Content.leadershipConnection { box-shadow: none; }
}

#Content.leadershipConnection #pullquote {
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 7px;
  background-color: #fcf7d5;
  border-radius: 10px;
  text-align: center;
  border: 3px solid #efe7b3;
  font-family: "italic Georgia", "Times New Roman", Times, serif;
  color: #bc8c24;
  font-size: 1.2em;
  font-style: italic;
  line-height: 1.2em;
  font-weight: bold;
}

/* Split main content into two columns when a right sidebar is present */
#Content.leadershipConnection #content-split {
    display: grid;
    grid-template-rows: auto 1fr; /* the 1fr closes the gap above 2nd row */
    grid-template-columns: 2fr 1fr ;
    grid-gap: 10px;
    width: 98%;
    margin: 0 auto;
    grid-auto-rows: minmax(min-content, max-content);
}
#Content.leadershipConnection #content-split #sidebar {
    grid-column-start: 2;
    grid-column-end: 3;
    border-radius: 10px;
}

@media screen and (max-width: 700px) {

#Content.leadershipConnection #content-split {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 100%;
    grid-gap: 10px;
    
}    
#Content.leadershipConnection #content-split #sidebar {
grid-row-start: 3;
grid-row-end: 4;
grid-column-start: 1;
grid-column-end: 2;
} 
}

#Content #contentFooter { width: 100%; background-color: #00a1ab; }
#Content #contentFooter .slogan { display: block; width: 100%; height: auto; overflow: auto; background-color: #fff; }


/* Featured Article — Specialized Landing pages */

#Content.featuredArticle { border-radius: 15px; overflow: hidden; box-shadow: 0 0 3px 3px rgba(0, 0, 0, .30); }
#Content.featuredArticle header { width: 100%; }
#Content.featuredArticle header h1 { position: absolute; top: 0; left: -9999px; }
#Content.featuredArticle h1 { font-size: 1.5em; transform: scale(1, 1.2); color: #fcad0d; margin: 15px 0; }
#Content.featuredArticle h2 { font-size: 1.1em; transform: scale(1, 1.2); color: #fcad0d; margin: 20px 0 10px 0; }
#Content.featuredArticle h3 { font-size: 1em; line-height: 1.5em; transform: scale(1, 1.1); color: var(--purple-2); margin-bottom: revert; }

#Content.featuredArticle p.author {font-size:1.2em; font-weight: bold; color: #58595b; }
#Content.featuredArticle #refs {
	background-color: #f8e7d8;
	-o-border-radius: 10px; /* Opera */
	-icab-border-radius: 10px; /* iCab */
	-khtml-border-radius: 10px; /* Konqueror */
	-moz-border-radius: 10px; /* Firefox */
	-webkit-border-radius: 10px; /* Safari */
	border-radius: 10px; /* CSS 3 */
	display: block;
	padding: 15px;
	width: 100%;
	margin: 30px 0;
	border-width: 2px;
	border-style: solid;
	border-color: #e7d1bd;
	clear: both;
}
#Content.featuredArticle #refs ol, #Content.featuredArticle #refs ul {
	margin: 0 15px;
    list-style-position: outside;
}
#Content.featuredArticle #refs li {
    padding-left: 15px;
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	margin: 0 15px;
}
#Content.featuredArticle #refs sup {
	margin-left: -15px !important;
	margin-right: 2px;
}
#Content.featuredArticle #refs p {
	text-indent: -10px;
}
#Content.featuredArticle #refs em {
	font-weight:bold;
}



/* Subscribe */

#MainContent.subscribeContent {
	padding-top: 135px;
	text-align: left;
	background-image: url(../images/subscribe-join-list-header.png);
	background-repeat: no-repeat;
	background-position: center 0px;
    border-radius: 10px; /* CSS 3 */
}
#MainContent.subscribeContent #SidebarRight {
	float: right;
	width: 290px;
	padding: 0px;
	display: inline;
	background-color: #fbfcf4;
	margin: 0px 7px 0px 10px;;
    border-radius: 10px; /* CSS 3 */
	border: 2px solid #c4e6ff;
	overflow:hidden;
}
#MainContent.subscribeContent #SidebarRight h2 {
	background-repeat: no-repeat;
	background-position: 0px 0px;
	text-indent: -9999px;
	height: 38px;
	width: 100%;
	margin:0px;
}
#MainContent.subscribeContent #SidebarRight h2.international { background-image: url(../images/subscribe-sideHeader-intFriends.png);
}
#MainContent.subscribeContent #SidebarRight h2.subOptions { background-image: url(../images/subscribe-sideHeader-subOptions.png);
}
#MainContent.subscribeContent #SidebarRight h3 {
	background-repeat: no-repeat;
	background-position: 0px 0px;
	text-indent: -9999px;
	height: 38px;
	width: 100%;
	margin:0px;
}
#MainContent.subscribeContent #SidebarRight h3.intFriends { background-image: url(/images/subscribe-sideHeader-intFriends.png);
}
#MainContent.subscribeContent #SidebarRight h3.subOptions { background-image: url(/images/subscribe-sideHeader-subOptions.png);
}

#MainContent.subscribeContent #formContainer {
	background-repeat: no-repeat;
	background-position: 0px 0px;
	width: 580px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 7px;
	padding-top: 30px;
	-o-border-radius: 10px; /* Opera */
	-icab-border-radius: 10px; /* iCab */
	-khtml-border-radius: 10px; /* Konqueror */
	-moz-border-radius: 10px; /* Firefox */
	-webkit-border-radius: 10px; /* Safari */
    border-radius: 10px; /* CSS 3 */
	border: 2px solid #c4e6ff;
	background-color: #FFF;
}
#MainContent.subscribeContent #formContainer.mailEmail { background-image: url(/images/subscribe-formHeader-mailEmail.png);
}
#MainContent.subscribeContent #formContainer.email { background-image: url(/images/subscribe-formHeader-join-the-list.png);
}
#MainContent.subscribeContent #formContainer.mail { background-image: url(/images/subscribe-formHeader-mail.png);
}
#MainContent.subscribeContent #formContainer.friend { background-image: url(/images/subscribe-formHeader-friend.png);
}
#MainContent.subscribeContent #formContainer.unsubscribe { background-image: url(/images/subscribe-formHeader-unsubscribe.png);
}
#MainContent.subscribeContent #formContainer.joinList { background-image: url(/images/subscribe-formHeader-join-the-list.png);
}

#MainContent.subscribeContent #formContainer > h2 { display:none; }
#MainContent.subscribeContent #formContainer > p {
	margin: 20px 15px 15px 15px;
}
#MainContent.subscribeContent #SidebarRight p:nth-child(2) { color:#0072bc;  }

#MainContent.subscribeContent .subscribeHeader { display: none; }
.pdInquiryFormHeader { display: block; text-indent: -9999px; height: 65px; width: 529px; background: url(../images/pdInquiryForm-header-wide.png) 0 0 no-repeat; background-size: contain; margin: 10px auto 0 10px; }
.unsubscribeHeader { display: block; text-indent: -9999px; height: 65px; width: 574px; background: url(../images/unsubscribe-header.png) 0 0 no-repeat; margin: 24px auto 0 10px; }

#subscribeForm { margin-bottom: 40px; }
#subscribeForm .formP {
	background: url(../images/sub-form-bg.gif) center bottom repeat-x #fff;
	border: #0f5634 1px solid;
	padding: 0;
	margin: 10px auto 20px auto;
    overflow: hidden;
}
#subscribeForm h2 { font-size: 1.3em; color: #000; margin: 0; background-color: #d0e8fd; padding: 10px; transform: scale(100%, 110%);}
#subscribeForm h3 { font-size: 1.1em; color: #fff; margin-bottom: 5px; background-color: #939; padding: 0 15px; }
#subscribeForm h4 { display: block; width: 248px; height: 51px; margin: -36px 0 10px 0; text-indent: -9999px; }
#subscribeForm h4.subscribe { display:none; }
#subscribeForm table {
    display: block;
	width: 100%;
	margin-left: 5px;
}
#subscribeForm td {  border-bottom: #4852b5 1px dotted; padding: 4px; margin: 0; }
#subscribeForm tr:last-of-type td {  border: none; }
#subscribeForm td:first-of-type { font-weight: bold; font: 0.8em Arial, Helvetica, sans-serif; }
#subscribeForm input, #subscribeForm select { border: #ccc 1px solid; background: url(../images/input_bg_gradient.gif) 0 0 repeat-x #fff; color: #4852b5; padding: 6px 4px; }
#subscribeForm .listMenu { display:block; border: #ccc 1px solid !important; }
#subscribeForm input.submit-btn { border: 0; background: none; margin: 0 auto -10px 10px; }


/* FAQs */

#faqMain { width: 874px; margin: 0 40px 15px 40px; position: relative; }
#faqMain h1 { background: url(../images/faq-header.png) 0 0 no-repeat; height: 128px; width: 874px; display: block; }
#faqMain h2 { display: block; font: bold 16px "Trebuchet MS", "Lucida Grande", Helvetica, Arial, sans-serif; color: #fff; text-shadow: 0.1em 0.1em 0.1em #000; }

#faqContent { margin: 0 0 10px 255px; }
#faqContent h2 { background: url(../images/faq-section-divide-trans.png) 0 0 no-repeat; width: 618px; height: 31px; padding: 5px 0 0 20px; margin: 10px 0 0 0; }
#faqContent h3 { font: bold 1.1em "Trebuchet MS", "Lucida Grande", Helvetica, Arial, sans-serif; color: #2021a8; padding: 18px 0 5px 18px; border-top: #ccc 1px dotted; }
#faqContent h3.nodivide { border-top: none; }
#faqContent p { line-height: 1.5em; padding: 0 0 5px 30px; }
#faqContent blockquote { padding: 0 0 0 35px; margin: 0; }
#faqContent a { color: #ff007a; font-weight: normal; }
#faqContent a:hover { border-bottom: #ff007a 1px dotted; }

#faqContent div.backtotop { display: block; text-align: right; padding-top: 15px; margin: 0 15px 0 20px; border-top: #ccc 1px dotted; }
#faqContent div.backtotop a { color: #fff; text-transform: uppercase; font: bold 0.55em "Trebuchet MS", "Lucida Grande", Helvetica, Arial, sans-serif; padding: 1px 4px; background-color: #4740ad; }
#faqContent div.backtotop a:hover { color: #ff0; border-bottom: none; }

#faqSidebar { width: 230px;	background-color: #f0f5fc;	float: left; margin-bottom: 10px; }
#faqSidebar h2 { background: url(../images/faq-ques-header-trans.png) 0 0 no-repeat; width: 203px; height: 51px; padding: 13px 0 0 15px; }
#faqSidebar ul { width: 200px; margin: -15px 15px 20px 15px; list-style: none; }
#faqSidebar li { background: url(../images/faq-star-bullet-trans.png) no-repeat 3px 8px; border-bottom: #2021a8 1px dotted; padding: 1px 5px 1px 17px; }
#faqSidebar li:hover { background-color: #f7fcfe; }
#faqSidebar li a { color: #2021a8; text-transform: uppercase; padding: 6px 0; font-size: 0.7em; display: block; }
#faqSidebar li a:hover { color: #ff007a; }

#faqSidebar h3 { font: bold 1em "Trebuchet MS", "Lucida Grande", Helvetica, Arial, sans-serif; color: #ff007a; margin-left: 15px; }
#faqSidebar p { font-size: 0.8em; margin: 5px 15px 15px 15px; line-height: 1.5em; }
#faqSidebar p a { color: #9a2dc1; }
#faqSidebar p a:hover { text-decoration: underline; }



/* Feedback */

#MainContent .feedbackH1 { display: block; text-indent: -9999px; height: 65px; width: 163px; background: url(../images/feedback-header.png) 0 0 no-repeat; margin: 0 auto 10px 15px; }
#MainContent p.fbIntro { margin: 0 325px 0 25px; font: normal 0.9em/1.6em Arial, sans-serif; color: #333; }
#MainContent div.fbBox { background: url(../images/workshops/trainer-cert-chalkboard-top.png) 0 0 no-repeat; width: 563px; margin: 30px auto 0 15px; padding: 30px 15px 15px 15px; overflow: auto; }
#MainContent div.fbContact { float: left; display: inline; background: none; margin: 10px auto 10px 20px; }
#MainContent div.fbContact p { color: #fff; font: bold 1em Helvetica, sans-serif; margin: 10px 0; padding: 0; }
#MainContent div.fbContact p.fbf { background: url(../images/feedback-for-trans.png) 0 0 no-repeat; width: 155px; height: 25px; display: block; text-indent: -9999px; margin-bottom: 15px; }
#MainContent div.fbContact p a { color: #ff0; border-bottom: #ff0 1px dotted; font-size: 10px; }
#MainContent div.fbContact p a:hover { color: #f90; border-bottom: #f90 1px dotted; background: none; }
#MainContent div.fbBoxBtm { background: url(../images/workshops/trainer-cert-chalkboard-btm.png) -1px 0 no-repeat; width: 583px; height: 52px; margin: 0 0 20px 15px; }


/* Privacy */
#privacyContent p {
	font-size: 0.8em;
	line-height: 1.6em;
	margin: 5px 10px 10px 0;
}
#privacyContent {
	background-color: #fff;
	margin-top: 0;
	margin-right: 30px;
	margin-bottom: 50px;
	margin-left: 220px;
}
#privacyContent h1 {
	background: url(../images/privacyPolicy-header.png) 0 0 no-repeat;
	width: 547px;
	height: 65px;
	margin-bottom: 5px;
	text-indent: -9999px;
}
#privacyContent h2 {
	font: normal 1.7em "Trebuchet MS", "Lucida Grande", sans-serif;
	margin: 30px 0 20px 0;
	padding-top: 20px;
	color:#039;
	border-top: #039 1px dotted;
	text-indent: 0px;
}
#privacyContent h3 {
	font-size: 1.3em;
	color: #06f;
	margin: 25px 0 0 0;
	padding: 0;
}
#privacyContent h4 {
	font-size: 0.9em;
	color: #00a1ab;
	margin: 15px 0 0 auto;
}
#privacyContent p {
	font-size: 0.8em;
	line-height: 1.6em;
	margin: 5px 10px 10px 0;
}
#privacyContent ol {
	list-style: outside decimal;
	margin: 5px 0px 5px 20px;
}
#privacyContent ul {
	list-style: outside;
	margin: 5px 0px 20px 10px;
}
#privacyContent li {
	font-size: 0.8em;
	line-height: 1.6em;
	margin: 0px 0 4px 17px;
	padding: 0;
}
#privacyContent a {
	color: #ec008c;
	text-decoration: none;
}
#privacyContent a:hover {
	color: #0072bc;
	border-bottom: #0072bc 1px dotted;
}
#privacyContent blockquote {
	margin: 10px 35px;
	clear: both;
}


/* Copyright */

#crContent {
	background-color: #fff;
	margin-top: 0;
	margin-right: 30px;
	margin-bottom: 20px;
	margin-left: 255px;
}
#crContent h1 { background: url(../images/copyright-header.png) 0 0 no-repeat; width: 272px; height: 65px; margin-bottom: 30px; }
#crContent h2 { font: normal 1.7em "Trebuchet MS", "Lucida Grande", sans-serif; margin: 30px 0 20px 0; padding-top: 20px; color:#039; border-top: #039 1px dotted; text-indent: 0px; }
#crContent .norule { font: normal 1.7em "Trebuchet MS", "Lucida Grande", sans-serif; margin: 30px 0 20px 0; padding-top: 20px; color:#039; border-top: none; }
#crContent h3 { font-size: 1.3em; color: #06f; margin: 25px 0 0 0; padding: 0; }
#crContent h4 { font-size: 1.1em; color: #369; clear: both; margin: 25px 0 10px 0; padding: 0 0 5px 0; border-bottom: #aaa 1px dotted; }
#crContent .reqs {
	font-size: 1em;
	color: #369;
	clear: both;
	margin: 25px 0 10px 0;
	padding: 0 0 5px 0;
	border-bottom: #aaa 1px dotted;
}
#crContent h5 { font-size: 0.9em; color: #939; }
#crContent h6 { font: bold italic 1.2em Georgia, "Times New Roman", serif; color: #fff; padding: 6px 0 6px 0; margin: -1px -1px 5px -1px; text-align: center; background-color: #939; border: #939 1px solid; text-shadow: 0.1em 0.1em 0.1em #303; }
#crContent ol { list-style: outside decimal; margin: 15px 15px 15px 30px; }
#crContent ul { list-style: outside; margin: 0px 15px 15px 30px; }
#crContent li {  font-size: 0.8em; line-height: 1.6em; margin: 0px 0 4px 17px; padding: 0; }
#crContent p { font-size: 0.8em; line-height: 1.6em; margin: 5px 10px 10px 0; }
#crContent p.crSubject { font: bold 0.9em Verdana, Helvetica, sans-serif; margin: 10px 0 -5px 0; color: #909; }
#crContent p.crBook { font: bold 1.1em "Trebuchet MS", "Lucida Grande", sans-serif; color: #303; margin: 15px 0 0 0; }
#crContent a {
	color: #ec008c;
	text-decoration: none;
}
#crContent a:hover { color: #0072bc; border-bottom: #0072bc 1px dotted; }
#crContent blockquote { margin: 10px 35px; clear: both; }
#crContent img { float: left; border: #000 1px solid; margin: 10px 20px 20px 0; display: inline; }
#crContent div.refEx { border: #939 1px solid; background-color: #fef; width: 500px; margin: 15px auto 15px 35px; padding: 0; 
  	     -o-border-radius: 10px; /* Opera */
 	  -icab-border-radius: 10px; /* iCab */
  	 -khtml-border-radius: 10px; /* Konqueror */
  	   -moz-border-radius: 10px; /* Firefox */
  	-webkit-border-radius: 10px; /* Safari */
     border-radius: 10px; /* CSS 3 */
}
#crContent .bold { color: #00adef; }
#crContent .qlinks {
	-o-border-radius: 10px; /* Opera */
	-icab-border-radius: 10px; /* iCab */
	-khtml-border-radius: 10px; /* Konqueror */
	-moz-border-radius: 10px; /* Firefox */
	-webkit-border-radius: 10px;
    border-radius: 10px; /* CSS 3 */
	width: 250px;
	float: right;
	padding-top: 40px;
	padding-right: 0px;
	padding-bottom: 15px;
	background-color: #FFFACF;
	color: #000;
	margin-left: 10px;
	padding-left: 10px;
	margin-bottom: 10px;
	display: block;
	background-image: url(../images/catalog/cr_qlinks.png);
	background-repeat: no-repeat;
	background-position: center top;
}
#crContent .qlinks b {
	color: #20519C;
	font-weight: bold;
	font-size: 12px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-decoration: none;
	margin: 0px;
	line-height: 12px;
}
#crContent ul { margin: 5px 0px 20px 10px;
}
#crContent ol { margin: 5px 0px 5px 20px;
}
#crContent .qlinks ol li {
	font-weight: bold;
	width: 200px;
	text-align: left;
	color: #ec008c;
	margin-bottom: 3px;
	list-style-type: upper-alpha;
	text-indent: 0px;
	list-style-position: outside;
	margin-right: 5px;
}
#crContent .qlinks li {
	font-weight: bold;
	width: 200px;
	text-align: left;
	color: #ec008c;
	margin-bottom: 3px;
	list-style-type: disc;
	text-indent: -5px;
	list-style-position: outside;
	margin-right: 5px;
}
#crContent .qlinks img {
	float: none;
	margin: 0px;
	text-decoration: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#crContent strong.letter {
	font-weight: bold;
	font-size: 12px;
	color: var(--teal-dark);
	line-height: 16px;
}


/* Site Map */

#siteMap { margin: 10px 35px 15px 35px; padding: 0; }
#siteMap h1 { background: url(../images/sitemap-header.png) 20px 0 no-repeat; width: 200px; height: 65px; margin: 0 auto 5px 190px; }

#siteMap h2 { margin: 0; padding: 0; display: block; background: #004298; color: #fff; }
#siteMap h2 a { font: normal 18px Arial, sans-serif; display: block; padding: 8px 15px; color: #fff; }
#siteMap h2 a:hover { color: #ff0; }

#siteMap h3 { margin: 0; padding: 0; border-bottom: #e8f3fc 1px dotted; background: #fff; border-left: #e8f3fc 3px solid; }
#siteMap h3:hover { color: #3cf; background: #e8f3fc; border-left: #ff007a 3px solid; }
#siteMap h3 a { font: normal 12px Arial, sans-serif; display: block; padding: 5px 20px; color: #004298; }
#siteMap h3 a:hover { color: #ff007a; }

#siteMap p { line-height: 1.6em; margin: 0 50px 20px 215px; color: #555; }

#siteMap ul { margin: 0; padding: 0; }
#siteMap li { display: block; padding: 0; border-bottom: #e8f3fc 1px dotted; font-size: 10px; background: #fff; border-left: #e8f3fc 3px solid; }
#siteMap li:hover { color: #ff007a; background: #e8f3fc; border-left: #ff007a 3px solid; }
#siteMap li a { font: bold 10px Arial, sans-serif; display: block; padding: 5px 30px; color: #92278f; }
#siteMap li a:hover { color: #ff007a; }

#siteMap div.sitemapCol { float: left; display: inline; width: 250px; margin: 10px 7px 10px 25px; padding: 0 0 3px 0; overflow: hidden; background: #e8f3fc; 
  	     -o-border-radius: 10px; /* Opera */
 	  -icab-border-radius: 10px; /* iCab */
  	 -khtml-border-radius: 10px; /* Konqueror */
  	   -moz-border-radius: 10px; /* Firefox */
  	-webkit-border-radius: 10px; /* Safari */
    border-radius: 10px; /* CSS 3 */
}

/* Site Map - 2024 Update*/

#Content.siteMap {
  width: 90%;
  margin: 0 auto 15px auto;
  display: block;
  text-align: justify;
}
#Content.siteMap h1 { background: url(../images/sitemap-header.png) 20px 0 no-repeat; width: 200px; height: 65px; background-position: 0px 0px; }

#Content.siteMap h2 { margin: 0; padding: 0; display: block; background: #004298; color: #fff; }
#Content.siteMap h2 a { font: normal 18px Arial, sans-serif; display: block; padding: 8px 15px; color: #fff; }
#Content.siteMap h2 a:hover { color: #ff0; }

#Content.siteMap h3 { margin: 0; padding: 0; border-bottom: #c7e4f8 2px dotted; background: #fff; }
#Content.siteMap h3:hover { color: #3cf; background: #e8f3fc; }
#Content.siteMap h3 a { font: bold 12px Arial, sans-serif; display: block; padding: 5px 5px 5px 10px; color: #ee008c; }
#Content.siteMap h3 a:hover { color: #ff007a; }
#Content.siteMap h3.noUnderline, #Content.siteMap ul li.noUnderline { border-bottom: none; }

#Content.siteMap ul { margin: 0; padding: 0; }
#Content.siteMap li { display: block; padding: 0; border-bottom: #c7e4f8 2px dotted; font-size: 10px; background: #fff; margin-left: 0; }
#Content.siteMap li:hover { color: #ff007a; background: #e8f3fc; }
#Content.siteMap li a { font: normal 12px Arial, sans-serif; display: block; padding: 6px 27px; color: #92278f; }
#Content.siteMap li a:hover { color: #ff007a; }

#Content.siteMap div.sitemapContainer { display: flex; flex-wrap: wrap; justify-content: center;  align-items: stretch; background: url(/images/angle-bg-light-blue.gif); padding:15px 10px 15px 5px; overflow:auto; border:#c7e7f9 1px solid; }


#Content.siteMap #sitemapColumn { display: block; width: 100%; max-width: 270px; overflow: hidden; transition: .3s; align-items: stretch; 
}
@media screen and (max-width:670px) {
    #Content.siteMap #sitemapColumn  { max-width: 100%; margin: 0; }
}
@media screen and (max-width:850px) {
    #Content.siteMap #sitemapColumn.flex  { display: flex !important; flex-wrap: wrap; max-width: 100%; justify-content: center; }
}


#Content.siteMap div.sitemapCard { display: block; width: 100%; max-width: 250px; margin: 10px 10px 20px 10px; padding: 0 0 3px 0; overflow: hidden; background: #fff; transition: .3s; border-radius: 10px;  box-shadow: 0 0 3px 3px rgba(0, 0, 0, .05);
}
@media screen and (max-width:670px) {
    #Content.siteMap div.sitemapCard  { max-width: 100%; margin: 0; }
}

/* What is Kagan */

h1.WhatisKagan { display: block; text-indent: -9999px; height: 69px; width: 289px; background: url(../images/whatiskagan-header.png) 0 0 no-repeat; margin: 0px auto 0 20px !important; background-size: contain; }
#Content.wikBkg {
	background-image: url(../images/wik-mainbkg.jpg);
	background-size: cover;
	padding-top: 10px;
}
.whatiskagan-videoFrame {
    width: 90% !important;
    margin: 10px auto;
    background-image: url(../images/wik-videobkg.jpg);
	background-size: cover;
	padding: 10px;
    clear: both;
}
@media screen and (max-width:450px){
  .whatiskagan-videoFrame {
	padding: 0;
      border: 2px solid #e2d2ae;
}  
}

#wikVidBox {
	display: block;
	margin: auto;
	width: 560px;
	background-image: url(../images/wik-videobkg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	padding: 15px;
  	     -o-border-radius: 10px; /* Opera */
 	  -icab-border-radius: 10px; /* iCab */
  	 -khtml-border-radius: 10px; /* Konqueror */
  	   -moz-border-radius: 10px; /* Firefox */
  	-webkit-border-radius: 10px; /* Safari */
    border-radius: 10px; /* CSS 3 */
}


/* GLOBAL Positioning and Styling Elements */


#Content main h1 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.6em;
  transform: scale(1, 1.13);
  color: #fcad0d !important;
  margin: 0 auto 20px auto;
  line-height: 1.2em;
}

.normal { font-weight: normal; }

.invtxt { text-indent: -9999px; }

.fltlft { float: left; }
.fltrt { float: right; }

.imgfltlft, .imgbdrfltlft { float: left; margin: 10px 20px 10px -25px; padding: 0; }
.imgfltrt, .imgbdrfltrt { float: right; margin: 10px -25px 10px 20px; padding: 0; }

.imgbdrfltlft { border: #000 1px solid; }
.imgbdrfltrt { border: #000 1px solid; }

.imgbdr { border: #000 1px solid; }
.nobdr { border: none !important; }

.clearfloat { clear: both; height: 0; font-size: 0; line-height: 0; margin: 0; padding: 0; }

.ovrflw { overflow: auto; }

.bdr5pxRad { 
    border-radius: 5px; /* CSS 3 */
}
.bdr7pxRad { 
    border-radius: 7px; /* CSS 3 */
}
.bdr9pxRad { 
    border-radius: 9px; /* CSS 3 */
}
.bdr10pxRad { 
     border-radius: 10px; /* CSS 3 */
}
.bdr20pxRad { 
    border-radius: 20px; /* CSS 3 */
}

.highlight { font-size: 1.2em; color: #942790; font-weight: bold; }
.highlightdrkgreen { color: #00664d; font-weight: bold; }

.highlightolive { color: #6c7031; font-weight: bold; }

.highlightblue { color: #004395; font-weight: bold; }
.highlightteal { color: #00a1ab; font-weight: bold; }
.highlightmagenta { color: #ba006e !important; font-weight: bold; }
.highlightpurple { color: #9a2b97 !important; font-weight: bold; }
.highlightred { color: #ff0000; font-weight: bold; }
.highlightyellow { background: #FF0; }
.highlighty { color: #ffff00; font-weight: bold; }
.highlightwhite { color: #fff; font-weight: bold; }

img.imgCenter, .center { display: block; margin: 10px auto !important; float: none;  }

sup {position: relative; top: -2px; line-height: initial; }


#card { /** To be used globally **/
    border-radius: 10px;
    padding: 1rem;
    overflow: auto;
}
#card.bkg-magenta {
    background-color: var(--magenta);
}
#card.bkg-teal {
    background-color: var(--teal);
}
#card.bkg-teal-3 {
    background-color: var(--teal-3);
}
#card.bkg-purple {
    background-color: var(--purple);
}
#card.bkg-purple-3 {
    background-color: var(--purple-3);
}
#card.bkg-purple-4 {
    background-color: var(--purple-4);
}
#card.bkg-white {
    background-color: var(--white);
}
#card.bkg-ltgrey {
    background-color: #f7f7f7;
}

[class*="border-"] {
  border-style: solid;
    border-width: 3px;
}
.border-magenta {
    border-color: #ee008c;
}
.border-teal {
    border-color: #00a1ab;
}
.border-purple {
    border-color: #6f348f;
}
.border-ltgrey {
    border-color: #f7f7f7;
}
.border-medgrey {
    border-color: #bcbcbc;
}
.border-gold-2 {
    border-color: var(--gold-2);
}


ul.starBullets {
	width: 100%;
	list-style-position: outside;
}
ul.starBullets > li {
	font-weight: bold;
	font-size: 12px;
	margin-bottom: 12px;
	margin-right: 0;
}
ul.starBullets.green > li {
    list-style-image: url("../images/star_bullet-green.gif");
	color: #018441;
}
ul.starBullets.magenta > li {
    list-style-image: url("../images/star_bullet-magenta.gif");
	color: #ee008c;
}

.textShadow-1 {text-shadow: 1px 1px 2px rgba(0,0,0,.8);}
.stretch-v {transform: scale(1,1.2)}

/* Give images rounded corners and colored borders */
img.imgRndBdr { border-radius: 10px; overflow: hidden; border: solid; border-width: 4px; }
img.color1 { border-color: #e1e4b9; } /* beige border */
img.color2 { border-color: #2d577a; } /* blue border */
img.color3 { border-color: #fcbd54; } /* yellow border */
img.color4 { border-color: #cabae6; } /* lavendar border */
img.color5 { border-color: #fedbe7; } /* pale pink border */
img.color6 { border-color: #fedbe7; } /* pink border */
img.transparent { border-color: transparent; 
}
.center-horizontally { margin: inherit auto; }



/* Signatures */

.miguelSignature { background: url(../images/magazine/om-mk-sig-trans.png) 0 0 no-repeat; height: 94px; width: 81px; margin: 10px; text-indent: -9999px; }
.nancySignature { height: 37px; width: 123px; background: url(../images/workshops/ws_nancy_murray_sig-trans.png) no-repeat 0 0; margin: 10px 0 10px 10px; text-indent: -9999px; }


/* iFrame */

iframe#ifrm { border: 0; padding: 0; margin: 10px auto 20px 50px; width: 865px; height: 600px; }
iframe#ifrmDisc { border: 0; padding: 0; margin: 0 auto 10px 30px; width: 900px; }
.copyright {
	font-size: .85em;
	color: #666;
}


/* Free Promotional Materials */

#freePromoMaterials { width: 740px; margin: 0 270px 10px 220px; padding: 0; }
#freePromoMaterials h1 { width: 565px; height: 61px; display: block; background: url(../images/promoMaterials-header.png) 0 0 no-repeat; }
#freePromoMaterials h2 { font-size: 1.2em; color: #4852b5; margin-top: 5px; display:block; }
#freePromoForm h4.promoOrder { background: url(../images/promoMaterials-formHeader.png) 0 0 no-repeat; }

#freePromoMaterials #thumbnails { display: flex; padding-right:15px; margin:10px 0px 10px 0px; text-align: center; vertical-align: top; justify-content:center;
}
#freePromoMaterials #thumbnails img { margin: 0px 3px 0px 3px;
}

#freePromoMaterials ul { list-style: url(../images/fp_links_bullet_red.gif) outside; font-size: 0.7em; padding: 10px; margin-left: 15px; }
#freePromoMaterials li { padding: 3px 0; }
#freePromoMaterials li.pgHighlight { background-color:#fffcd2; margin-top:10px; color:#c93830; font-weight:bold; padding-left:10px; }
#freePromoMaterials ul ul { list-style: none; padding: 3px 10px; margin-left: 0; }
#freePromoMaterials ul ul li {
	padding: 1px 0;
	font-size: 1.7em !important;
	line-height: 1.3em;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	font-weight: bold;
}
#freePromoMaterials ul ul li strong { color:#5dc0c7; font-family:Arial, Helvetica, sans-serif; font-size:.9em; }
#freePromoMaterials a { color: #0085cb; }
#freePromoMaterials a:hover { color: #c93830; }
#freePromoMaterials .catPDFBox { width: 700px; padding: 10px 10px 10px 10px; margin: 5px 10px 10px 0; float: left; position: relative; border-top: #4852b5 1px dotted; background: url(../images/catalog/catPDFBox-bg.png) 0 0 repeat-x #fff; }
.catPDFBox strong {
	color:#0085cb;
	font-size:1.2em;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-style: italic;
}

#freePromoSidebar { width: 236px; float: right; padding: 0 25px 0 15px; display: inline; margin: -10px 0 10px 0; }
#freePromoSidebar h3 { font-size: 1.1em; margin: 10px 0 5px 0; color: #639; padding: 5px 4px; border-bottom: #4852b5 1px dotted; border-top: #4852b5 1px dotted; background-color: #e1f4fd; }
#freePromoSidebar p { font-size: 0.8em; line-height: 1.8em; margin: 0; padding: 5px; }
#freePromoSidebar ul { list-style: url(../images/fp_links_bullet_1.gif) outside; font-size: 0.8em; padding: 10px; margin-left: 15px; }
#freePromoSidebar li { padding: 3px 0; margin-bottom:5px; }
#freePromoSidebar a { color: #0072bc; border-bottom: #0072bc 1px dotted; }
#freePromoSidebar a:hover { color: #ec008c; border-bottom: #ec008c 1px dotted; background-color: #fff; }

#freePromoForm {
	background: url(../images/sub-form-bg.gif) center bottom repeat-x #fff;
	border: #0f5634 1px solid;
	padding: 10px;
	width: 430px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 10px;
}
#freePromoForm p { font-size:.8em; line-height: 1.8em;
}
#freePromoForm h4 { display: block; width: 273px; height: 54px; margin: -36px 0 10px 0; text-indent: -9999px; background: url(../images/sub-form-header-trans.png) 0 0 no-repeat; }
#freePromoForm table {
	width: 430px;
	margin-left: 5px;
}
#freePromoForm table td {  border-bottom: #4852b5 1px dotted; padding: 5px 3px; margin: 0; }
#freePromoForm input { border: #ccc 1px solid; background: url(../images/input_bg_gradient.gif) 0 0 repeat-x #fff; color: #4852b5; font: 0.8em Arial, Helvetica, sans-serif; padding: 2px; }
#freePromoForm input.submit-btn { border: 0; background: none; margin: 0 auto -10px 10px; }


.hide { display: none; }
.show { display: contents; }


/********* All Purpose Attributes *********/

.block { display: block; }
.flex-box { display: flex; flex-wrap: wrap; }
.space-evenly {justify-content: space-evenly; }


.flex-b-100 { flex-basis: 100%; }

.p-0 { padding: 0 !important; }
.p-10 { padding: 10px !important; }
.p-15 { padding: 15px !important; }
.p-20 { padding: 20px !important; }
.p-30 { padding: 30px !important; }

.hidden { display: none; }
.unhidden { display: block; }

.boxShadow-30 {
    box-shadow: 1px 2px 2px 1px rgba(0, 0, 0, .30);
}

.scale150 {
    transform: scale(1.5, 1.5) !important;
}


/* All Purpose Buttons */
.button { display: block; width: max-content; border-radius: 10px; padding: 3px 8px !important; color: #fff !important; font-weight: bold; border: none !important; }
a.button { color: #fff !important; }
.button:hover { background-color: #def017 !important; border: none !important; }

.button.magenta {background-color: var(--magenta-dark); }
.button.blue {background-color: #0072c4; }
.button.teal {background-color: #007d85; }
.button.purple { background-color: var(--purple); }
.button.green { background-color: var(--green); }

/* Margins in Pixels */

.m-0 { margin: 0px; }
.m-5 { margin: 5px; }
.m-10 { margin: 10px; }
.m-15 { margin: 15px; }
.m-20 { margin: 20px; }
.m-25 { margin: 25px; }

.mt-0 { margin-top: 0 !important; }
.mt-5 { margin-top: 5px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-20 { margin-top: 20px !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-5 { margin-bottom: 5px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-25 { margin-bottom: 25px !important; }

.ml-5 { margin-left: 5px !important; }
.ml-10 { margin-left: 10px !important; }
.ml-15 { margin-left: 15px !important; }
.ml-20 { margin-left: 20px !important; }

.mr-5 { margin-right: 5px !important; }
.mr-10 { margin-right: 10px !important; }
.mr-15 { margin-right: 15px !important; }
.mr-20 { margin-right: 20px !important; }


/* Width in Percentages */

.w-20 { width: 20% !important; height: auto; transition: .1s; }
.w-25 { width: 25% !important; height: auto; transition: .1s; }
.w-30 { width: 30% !important; height: auto; transition: .1s; }
.w-32 { width: 32% !important; height: auto; transition: .1s; }
.w-35 { width: 35% !important; height: auto; transition: .1s; }
.w-40 { width: 40% !important; height: auto; transition: .1s; }
.w-45 { width: 45% !important; height: auto; transition: .1s; }
.w-50 { width: 50% !important; height: auto; transition: .1s; }
.w-55 { width: 50% !important; height: auto; transition: .1s; }
.w-60 { width: 60% !important; min-width: 300px; transition: .1s; }
.w-65 { width: 65% !important; min-width: 300px; transition: .1s; }
.w-70 { width: 70% !important; min-width: 300px; transition: .1s; }
.w-75 { width: 75% !important; min-width: 300px; transition: .1s; }
.w-80 { width: 80% !important; min-width: 300px; transition: .1s; }
.w-85 { width: 85% !important; min-width: 300px; transition: .1s; }
.w-90 { width: 90% !important; min-width: 300px; transition: .1s; }
.w-95 { width: 95% !important; min-width: 300px; transition: .1s; }
.w-100 { width: 100% !important; min-width: 300px; transition: .1s; }

.w-min-320px { min-width: 320px;
}


/* Font Modifiers */

.unbold { font-weight: normal; }
.caption { color: #878787;}


/** Height **/
.ht-auto { height: auto; }


/* Width in Pixels */

.w-200px {
  width: 200px;
}
.w-250px {
  width: 250px;
}
.w-300px {
  width: 300px;
}
.w-350px {
  width: 350px;
}
.w-400px {
  width: 400px;
}
.w-450px {
  width: 450px;
}


/** For Responsive Embedded Videos **/
.videoContainer {
  position: relative;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* Responsive tables broken into modules */

#tableModules { display: flex; vertical-align: top; flex-wrap: wrap; }

#tableModules .title { flex-basis: 100%; }

#tableModules table { width: 50%; min-width: 320px; margin: 5px auto 10px auto; }


/******************** Respsonsive Styles ********************/
/******************** These are prior to true the grid-based layout. These should be phased out eventually ********************/


/** 850 Pixels or Less **/

@media screen and (max-width: 850px) {
	
.shift-center-1 {
    /* Removes float and centers and element */
    display: block; width: 90%; float: none !important; margin: 10px auto !important; 
    }		
	
}


/** 450 Pixels or Less **/

@media screen and (max-width:450px){

#Wrapper.flex p { font-size: 1em !important;}		
	
.shift-center-2 {
    /* Removes float and centers and element */
    display: block; width: 90%; float: none !important; margin: 10px auto !important; transition: .2s; }	
}


/**************** Responsive Grid-Based Layout ******************/
/******** The grid contains global sidebars (when present) the main content. It is the container that resides between Global Headers and Global Footers **********/
/* Break Points: 850px, 670px, 450px */

#Wrapper.flex #ContainerMid {
    /* 1 Column Full Page Layout */
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    padding: 0 10px;
}
#Wrapper.flex #ContainerMid.split {
    /* 2 Column Layout. Sidebar Nav broken out from main content */
    grid-template-columns: 2fr 7fr;
    grid-template-rows: auto 1fr; /* the 1fr closes the gap above 2nd row */
    grid-auto-rows: minmax(min-content, max-content);
}



/*** Page Header ***/

/* #Wrapper.flex #ContainerMid #Content {
    Visual aid for develment stage only! 
    background-color: beige;
}*/
#Wrapper.flex #ContainerMid #Content main {
    width: 100%;
}

/*** Mobile View ***/
@media screen and (max-width:850px){
    #Wrapper.flex #ContainerMid.split {
    /* Switch to 1 Column Layout. */
    grid-template-columns: 1fr;
}
    #Wrapper.flex #ContainerMid.split #SidebarNav {
        grid-row-start: 2;
        grid-row-end: 3;
    }
    #Wrapper.flex #ContainerMid.split #Content {
        grid-row-start: 1;
        grid-row-end: 2;
    }
    
}

/*** Get Credit ***/
/** Global Get Credit Pop-Up **/
#get-credit h3 {
    font-size:1.3em;
    color: #67359a;
}
#get-credit ul {
    margin: 0 0 0 20px;
}
#get-credit img.getCredit {
    margin: 10px 0 0 0;
    display: block;
    clear: both;
}

/**/
[class*="styled-table"] {
    border-style: solid;
    border-width: 2px;
    border-collapse: collapse;
    overflow: hidden;
}
[class*="styled-table"] th {
    font-weight: bold;
}

.styled-table.light-purp { border-color: #dbcaf7 !important; }
.styled-table.light-purp th { background-color: #dbcaf7 !important; color: #333; }
.styled-table.light-purp td { border: solid 1px #dbcaf7; }

.styled-table.purp { border-color: #c8a2e8 !important; }
.styled-table.purp th { background-color: #c8a2e8 !important; color: #333; }
.styled-table.purp td { border: solid 1px #c8a2e8;  }

address { 
font-style: normal;
}