/************************/
/* Bar Class */
/************************/
.bar {
	position: fixed;
	width: 100%;
	left: 0;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	font-size: 12px;
	padding: 5px 0;

	/* Color */
	background-color: black;
	color: white;
}

.bar-top {
	top:0;
}

.bar-bottom {
	bottom: 0;
}
/************************/


/************************/
/* Button Class */
/************************/
.btn {
	display: inline-block;
	color: white;
	padding: 5px;
	margin-left: 10px;
	text-decoration: none;
	border-radius: 3px;
	cursor: pointer;
}

.btn-accept {
	background-color: green;
}

.btn-decline {
	background-color: red;
}
/************************/

/************************/
/* Read More Class */
/************************/
.read-more {
	text-decoration: underline;

	/* Color */
	color: Moccasin;
}
/************************/