/**
 * HeadlineList.css
 *
 * Copyright 2017 RealPatterns, Inc. All rights reserved.
 */


.HeadlineList {

  display: flex;
  width: 100%;
  height: 36px;
	background: red;
	font: normal 12px/36px sans-serif;
  text-align: center;
  float: left;
}
.HeadlineList h1 {

  flex: 1;
  margin: 0px;
  padding: 0px;
  background-color: #A03335;
  font-size: 1.5em;
  color: white;
}
.HeadlineList ul {

  flex: 3;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.HeadlineList ul li {

  display: inline;
	margin: 0px;
	padding: 0px;
}
.HeadlineList ul li + li:before {

  content: "\2022\00A0";
  padding: 6px;
  color: white;
}
.HeadlineList ul li a {

  font: normal 1.2em/32px sans-serif;
  text-decoration: none;
  color: white;
  white-space: nowrap;
}



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

	.HeadlineList {

    display: block;
		height: auto;
	}
}
