 /* Callout box - fixed position at the bottom of the page */
.callout {
z-index:101;
  position: fixed;
  top: 125px;
  right: 10px;
  margin-left: 20px;
  max-width: 300px;
    border-style: solid;
  border-color: #333a56;
  border-radius: 4px;
  border-width: 1px;
  -webkit-box-shadow: 6px 6px 5px rgba(0,0,0,0.45);
-moz-box-shadow: 6px 6px 5px rgba(0,0,0,0.45);
box-shadow: 6px 6px 5px rgba(0,0,0,0.45);
}

/* Callout header */
.callout-header {
	padding: 15px 5px;
	background: #333a56;
	font-size: 20px;
	color: white;
	font-weight:bold;
}

/* Callout container/body */
.callout-container {
  padding: 1px;
  background-color: #ffffff;
  color: black;
  font-size: 14px;

}

/* Close button */
.calloutclosebtn {
  position: absolute;
  top: -8px;
  right: 10px;
  color: #ff0000;
  font-size: 38px;
  cursor: pointer;
}

/* Change color on mouse-over */
.calloutclosebtn:hover {
  color: white;
} 