/*
--------------------------------------------------------------------------
Copyright 2018 by Mark Lammert and Steve Williams
Master Key Interactive

v1.0.0
--------------------------------------------------------------------------
*/

/*
--------------------------------------------------------------------------
---- SUPPOR HELP TOPICS ----
--------------------------------------------------------------------------
*/

.content,
.content a,
.content em,
.content li,
.content strong,
.content p {
	font-size: 14px;
  line-height: 22px;
}

/* ---------------------------------------------- */

h1 {
	margin: 20px 0px 0px 0px;
	padding: 0px;
	
	color: #464e53; /* dacqs logo dark gray */
	font-size: 24px;
	font-weight: bold;
}

h2 {
	margin: 10px 0px 0px 0px;
	padding: 0px;
	
	color: #4370ab; /* lighter shade of dacqs logo blue - saturation from 81 to 61 */
	font-size: 20px;
	font-weight: bold;
}

h2:not(:first-of-type) {
  margin: 20px 0px 0px 0px;
  padding: 18px 0px 0px 0px;
  
  border-top: 1px solid #d5d9db; /* dacqs lightest gray */
}

h3 {
	margin: 10px 0px 0px 0px;
	padding: 0px;
	
	color: #7090b5; /* darker shade of dacqs medium blue - saturation from 23 to 38 */
	font-size: 16px;
	font-weight: bold;
}

/* ---------------------------------------------- */

p {
  margin: 10px 0px 0px 20px;
	padding: 0px;
}

p + ol, 
p + ul {
  margin: 0px 0px 0px 15px;
}

ol li + ul,
ul li + ul {
   margin: 0px 0px 0px -15px;
}

/* ---------------------------------------------- */

.help-topics-alert {
	display: inline-block;
  
  margin: 15px 20px 5px 20px;
	padding: 10px;
  
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  
  border: 1px solid #e8a05d;
  background-color: #f9e6d4;
}

.help-topics-alert:before {
  content: "Attention: ";
  
  font-weight: bold;
}

/* ---------------------------------------------- */

.help-topics-note {
	display: inline-block;
  
  margin: 15px 20px 5px 20px;
	padding: 10px;
  
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  
  border: 1px solid #aec2d0;
  background-color: #f5fbff;
}

.help-topics-note:before {
  content: "Note: ";
  
  font-weight: bold;
}

/* ---------------------------------------------- */

.help-topics-tip {
	display: inline-block;
  
  margin: 15px 20px 5px 20px;
	padding: 10px;
  
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  
  border: 1px solid #8cb28a;
  background-color: #dff0de;
}

.help-topics-tip:before {
  content: "Tip: ";
  
  font-weight: bold;
}











