﻿* {
  box-sizing: border-box;
  font-family:Arial, Helvetica, sans-serif;
}
a {
	color: #800000;
}
a:visited {
	color: #800000;
}
a:hover {
	color:#C60000;
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.button-link {
	border:1px #800000 solid;
	border-radius:4px;
	color:#402000;
	background-color:#FFFFCC;
	padding:2px 5px 2px 5px;
	font-size:small;
	text-align:center;
	text-decoration:none;
	display:inline-block;
	margin-bottom:4px;
}
#headline-item{
	border-style:none none none solid;
	border-left-width:6px;
	border-left-color:#800000;
	width:80%; 
	margin:auto;
	background-color: #FFFFff;
	margin-bottom:8px;
	padding:12px;
	box-shadow:2px 2px 4px gray;
}
#snow-notice{
	border-style:none none none solid;
	border-left-width:6px;
	border-left-color:#800000;
	width:70%;
	margin:auto;
	background-color: #FFFFff; 
	margin-bottom:8px;
	padding:12px;
	box-shadow:2px 2px 4px gray;
}
@media screen and (max-width:800px){
	#headline-item{
		width:100%;
	}
}

/* Navbar container */
.navbar {
  overflow: hidden;
  width:100%;
}

/* Links inside the navbar */
.navbar a {
  font-size: 16px;
  float: left;
  color: white;
  text-align: center;
  padding: 5px 16px;
  text-decoration: none;
  background-color: #800000;
}
@media screen and (max-width: 700px) {
	.navbar a {
	  font-size:24px;
	}
}
/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 5px 16px;
  text-decoration: none;
  background-color: #800000;
}
@media screen and (max-width: 700px) {
	.dropdown .dropbtn {
	  font-size:24px;
	}
}

/* Add a background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #a00000;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #800000;
  min-width: 160px;
  box-shadow: 5px 5px 9px 0px rgba(50,0,0,0.5);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: white;
  border-bottom:1px white solid;
  padding: 5px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #a00000;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.bordered-cell {
	border:1px #c0c0c0	solid;
	text-align: center;
	padding:5px;
}

.wx-container{
	width:80%;
	max-width:800px;
	display:inline-block;
	margin:8px;
	float:left;
	position:relative;
	font-family:'Times New Roman', Times, serif;
	text-align:center;
	border:2px #800000 solid;
	padding:4px;
	font-size:15px;
	background-color:white;
	color:black;
	border-radius:8px;
}
.wx-containr{
	width:auto;
	overflow:auto;
	overflow-x:scroll;
	overflow-y:hidden;
	display:inline-block;
	margin:8px;
	position:fixed;
	left:10px;
	top:10px;
	font-family:'Times New Roman', Times, serif;
	text-align:center;
	border:2px #800000 solid;
	padding:4px;
	font-size:12px;
	background-color:white;
	color:#333;
	border-radius:8px;
	z-index:1;
}
@media screen and (max-width: 865px) {
	.#c-help{
		display:none;
	}
}
@media screen and (max-width: 700px) {
	.wx-container{
		max-width:250px;
	}
}
.headline_cont{	
  border-style:none none none solid;
  border-left-width:6px;
  border-left-color:#800000;
  width:80%;
  margin:auto;
  background-color:#FFFFff;
  margin-bottom:8px;
  padding:12px;
  box-shadow:2px 2px 4px gray;
}
.linkSection{
	padding:6px;
	width:auto;
	text-align:center;
}
 /* popuptip container */
.popuptip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* popuptip text */
.popuptip .popuptiptext {
  visibility: hidden;
  width:250px;
  background-color:#FFE4CA;
  color: #000;
  border:1px black solid;
  text-align: center;
  padding: 5px 5px;
  border-radius: 6px;

  /* Position the popuptip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -125px;

  /* Fade in popuptip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* popuptip arrow */
.popuptip .popuptiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the popuptip text when you mouse over the popuptip container */
.popuptip:hover .popuptiptext {
  visibility: visible;
  opacity: 1;
}