.red-button {
    background-color:#bc3315;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
    border:none;
    color: #fff;
    display:inline-block;
    cursor:pointer;
    padding:10px 30px;
    text-decoration:none;
}
 
.red-button:hover {
    background-color: #e53f19;
}
.list-block ul {
	padding-left: 40px;
	color: #343434;
	list-style-type: disc;
}
.list-block ul {
	margin-bottom: 20px;
}
.content-block {
    border: 1px dashed #ff0000;
    border-left: 4px solid #46b450;
    font-size: 1.2em;
    margin: 1em 1em 15px;
    padding: 1em 1.875em;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
    background-color: #fff;
}
.readMore-block {
    border: 1px dashed #ff0000;
    border-left: 4px solid #46b450;
    font-size: 1.2em;
    margin: 1em 1em 15px;
    padding: 5px 12px;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
    background-color: #fff;
    
}
.readMore-block ul {
	list-style:none;
    padding-left: 40px;
}
.readMore-block ul li:before {
    content: "\25BA";
    color: #333399;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 0.2em;
}
.readMore-block a {
	animation: color-change 1s ease-out infinite;
	font-weight: 700;
}
.content-block p,.readMore-block p{
	margin-bottom: 0 !important;
}
@keyframes color-change {
	0% {color: #ff0000}
	50% {color: blue}
	100% {color: red}
}