@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700);


	.thesis-card{
		border-radius: 2px;
		overflow: hidden;
		box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
		position: relative;
		margin: auto;
		background: rgba(255,255,255,1);
	}

	.thesis-card header{
		display: block;
		position: relative;
		background: rgba(255,255,255,1);
		text-align: left;
		padding: 30px 0 20px;
		z-index: 1;
		overflow: hidden;
	}

	.thesis-card header:before{
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		z-index: -1;
		
	}

	.thesis-card header:after{
		content: "";
		position: absolute;
		bottom: -1px;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		background-image: linear-gradient(
		    to bottom,
		    rgba(255, 255, 255, 0) 0%,
		    rgba(255, 255, 255, 1) 100%
		);
	}

	.thesis-card header img{
		border-radius: 100%;
		overflow: hidden;
		width: 150px;
		/*border: 1px solid rgba(255,255,255,.5);*/
		box-shadow: 0 1px 0 rgba(0,0,0,.1),0 1px 2px rgba(0,0,0,.1);
	}

	.thesis-card header h1{
		font-weight: 200;
		font-size: 42px;
		color: #444;
		/*letter-spacing: -3px;*/
		margin: 0;
		padding: 0;
	}

	.thesis-card header h2{
		font-weight: 400;
		font-size: 14px;
		color: #666;
		letter-spacing: .5px;
		margin: 0;
		padding: 0;
	}

	.thesis-card .thesis-bio{
		padding: 0 30px;
		text-align: left;
		color: #888;
	}

	.thesis-card .thesis-social-links{
		display: table;
		width: 70%;
		margin: 20px auto;
	}

	.thesis-card .thesis-social-links li{
		display: table-cell;
		width: 33.3333333333333333%
	}

	.thesis-card .thesis-social-links li a{
		display: block;
		text-align: center;
		padding: 10px;
		margin: 0 10px;
		border-radius: 100%;
		-webkit-transition: box-shadow 0.2s;
		-moz-transition: box-shadow 0.2s;
		-o-transition: box-shadow 0.2s;
		transition: box-shadow 0.2s;
	}
	.thesis-card .thesis-social-links li a:hover{
		box-shadow: 0 1px 1.5px 0 rgba(0,0,0,.12),0 1px 1px 0 rgba(0,0,0,.24);
	}

	.thesis-card .thesis-social-links li a:active{
		box-shadow: 0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2);
	}

	.thesis-card .thesis-social-links li a img{
		width: 100%;
		display: block;
	}
