
body, html {
	background-color: #DCB8C8;
	font-family: Arial,sans-serif;
	line-height: .99;
	letter-spacing: normal;
	margin-top: 0px;
	margin-left: 9px;
	padding: 0;
	height: 100%;
	color: #333333;
}




ul {
  list-style-image: url(listbullet.png);
}

li {
  padding-left: 0;
}

a:link, a:visited {
  text-decoration: none;
}
a:link, a:hover {
  color: #0000FF;
}
a:visited {
  color: #D31D0E;
}
a:hover {
  text-decoration: underline;
}



/* Typography: serif subheads */



.subheadblue {
	font-family: Palatino,Georgia,Times,Verdana,serif;
	font-size: 36px;
	line-height: 110%;
	letter-spacing: -1.5px;
	text-align: left;
	margin: 0;
	padding: 0;
	color: #0066ff;
} 



.bluetextplus {
	font-family: Arial,sans-serif;
	font-size: 26px;
	line-height: .99;
	letter-spacing: normal;
	margin-top: 0px;
	padding: 0;
	color: #0000ff;
} 


.bluetext {
	font-family: Arial,sans-serif;
	line-height: .99;
	letter-spacing: normal;
	margin-top: 0px;
	padding: 0;
	color: #0000ff;
}


.bluetext2 {
    font-family: Arial, sans-serif;
    line-height: .99;
    letter-spacing: normal;
    margin-top: 0px;
    padding: 0;
    color: #191f8c;
    font-weight: bold;
}


.small {
  font-size: 90%;
  margin-left: 15px;

}


.accordion {
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}
.accordion-item {
  border-bottom: 2px solid #ccc;
}
.accordion-item:last-child {
  border-bottom: none;
}
.accordion-header {
  background-color: #ccffff;
  cursor: pointer;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.accordion-header:hover {
  background-color: #e0e0e0;
}
.accordion-icon {
  transition: transform 0.3s ease;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #ccffff;
  padding: 1px;
}
  
.accordion-item.open .accordion-content {
  max-height: 500px;
  padding: 1px;
}
.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-header,
.accordion-content {
  font-size: inherit;
  line-height: inherit;
}
