.publicationsfeed {
				width: auto;
				height: 450px;
				overflow-y: scroll;
				background-color: #3f4247;
				padding: 5px 10px 5px 10px;
			}

			a.pub_title {
				color: #fab64b !important;
				font-size: 18px;
				font-weight: 600;
				text-decoration: none;
			}

			a.pub_title:hover {
				color: white;
			}

			.pub_author{

				color:white;
				font-size:16px;
			}
			p.pub_date {
				color: white;
				font-size: 12px;
			}


			hr.pub {
				margin: 5px;
				border-top: 2px dotted #8f9092;
			}
			
				.loader {
				border-top: 9px solid #009cdb;
				border-right: 9px solid #c0d631;
				border-bottom: 9px solid #ee342a;
				border-left: 9px solid #fbae37;
				border-radius: 50%;
				width: 70px;
				height: 70px;
				margin-bottom:50px;
				padding-top:20px;
				animation: spin 1s linear infinite;
			}

			@keyframes spin {
				0% { transform: rotate(0deg); }
				100% { transform: rotate(360deg); }
			}