/* CSS Document */


.req {
	background-color: red;
	color: white;
	font-size: 18px;
	font-weight: bold;
	border-radius: 10px;
	margin-left: 3px;
	padding: 2px;
}
.btn {
	text-decoration: none;
	border: 2px solid yellow;
	padding: 5px;
	display: block;
	width: 90%;
	text-align: center;
	color: yellow;
	background-color: red;
	margin-left: auto;
	margin-right: auto;
	border-radius: 10px;
}
.btn:hover {
	background-color: yellow;
	border-color: red;
	color: red;
}
.btn_mini {
	text-decoration: none;
	border: 1px solid darkblue;
	padding: 2px;
	display: block;
	width: 90%;
	text-align: center;
	color: white;
	background-color: blue;
	margin-left: auto;
	margin-right: auto;
	border-radius: 10px;
	font-size: 12px;
}
.btn_mini:hover {
	background-color: yellow;
	border-color: red;
	color: red;
	font-size: 12px;
}
.solid {
	box-shadow: 0 2px 0 #29b664;
}
.solid:hover {
	box-shadow: none;
}
table {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.top-p {
	font-weight: bold;
	color: blue;
}
li {
	font-size: larger;
	font-weight: bold;
	font-style: italic;
	color: red;
}
button.red_back {
	background-color:red;
}
.red_bold_sm {
	color:red;
	font-weight:bold;
	font-size:12px;
	margin-left:1em;
}