/* Create two equal columns that floats next to each other */
.column {
  float: left;
  /* height: 300px;  Should be removed. Only for demonstration */
}

.left {
  width: 68%;
  padding: 0% 2% 0% 2%;
  margin: 0.5% 0.5% 0.5% 0.5%;
}

.right {
  width: 30%;
  padding: 0 2% 0% 2%;
  margin: 0.5% 0.5% 0.5% 0.5%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
.row {
	margin-right: 0px;
    margin-left: 0px;
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
	width: 100%;
  }
}

/* notice box */
#marqueecontainer {
  position: relative;
  width: 100%; /*marquee width */
  height: 270px; /*marquee height */
  background-color: rgb(0, 0, 139);
  padding: 0px 10px 0px 10px;
  overflow: hidden;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.notice {
  background-color: #ffffff;
  padding: 10px;
  margin-top: 10px;
}

.noticebox {
	color: #ff0000;
    font-family: 'Rouge Script', cursive;
    font-size: 4vw;
    font-weight: normal;
    margin: 0px 0 0px;
    text-align: center;
    text-shadow: 1px 1px 2px #082b34;
    background: #ffff00;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
.notice_shadow {
	border-radius: 10px;
	box-shadow:  0px 0px 10px 10px rgba(0, 0, 139, .6);
}
.msgback {
	background-color: #f1f1f1;
	padding: 15px;
}

/* Add a card effect for articles */
.card {
  background-color: #ffffff;
  padding: 0px;
  margin-top: 10px;
  box-shadow:  0px 0px 10px 10px rgba(0, 0, 139, .6);
}

.pmframe {
  border: 2px solid #00008b;
  background-color: #ffffff;
  margin-left: auto;
  margin-right: auto;
  height: 500px;
}

.pmimage {
  width: 100%;
  height: 250px;
  margin-left: auto;
  margin-right: auto;
}

.pmintro {
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #00008b;
  text-align: left;
  padding: 0px 10px 0px 10px;
}

.readmore {
  display: inline-block;
  padding: 3.5px 9.5px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: #0000ff;
  border: none;
  border-radius: 50px;
  box-shadow: 5px 5px 5px 5px rgba(0, 0, 139, .6);
  margin-left: 10px;
}

.readmore:hover {
	background-color: #ffff00;
	color: #00008b;
	text-decoration: none;
	}

.readmore:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

.bluebar {
	width: 100%;
	height: 40px;
	background: #00008b;
	box-shadow:  0px 0px 10px 10px rgba(0, 0, 139, .6);
}