

/*Oddly, the descendant selector version -ul li p a - doesn't work, nor does p > a - only the general sibling ~ works */
ul.dropdown-menu li p.AddLineBreaksOnly ~ a {

	background-color: aquamarine;
	font-size: 24px;

	display:inline;
}

/*Scotch-panels CSS Begin */
article {
  position: relative;
  background: #fff;
  padding: 0;
  text-align: center;
  margin: 0;
}
.content {
  padding: 30px;
}
.toggles {
  margin: 20px 0;
  padding-bottom: 500px;
}
.scotch-panel {
  background: rgba(208,208,208,1.00);
  color: #fff;
	border: 1px double #2F2F2F;
}
#panel-3 {
  padding: 30px;
}
.overlay {
  display: none;
  background: #000;
  opacity: 0.5;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.scotch-is-showing .overlay {
  display: block;
}

