a.projectentry {
	position: relative;
	display: block;
	color: black;
	text-decoration: none;
	border: 1px solid #e1ddcf;
	background: white;
	-moz-border-radius: 8px;
	-moz-box-shadow: 0px 0px 4px #e6e3d6;
	box-shadow: 0px 0px 4px #e6e3d6;
	cursor: pointer;
	margin-top: 12px;
}

a.projectentry:hover {
	background: #d6e3ff;
	color: #3d4d6c;
	text-decoration: none;
	border-color: #8595ac;
	-moz-box-shadow: 0px 0px 4px #839ec7;
	box-shadow: 0px 0px 4px #839ec7;
}

a.projectentry .image {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 128px;
	background: white no-repeat center center;
	border-right: 1px solid #e1ddcf;
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-bottomleft: 6px;
}

a.projectentry:hover .image {
	border-color: #8595ac;
}

a.projectentry .content {
	margin-left: 128px;
	padding: 12px;
	padding-top: 8px;
	padding-bottom: 10px;
}

/*** New project listing ***/
a.projectlink {
	display: block;
	position: relative;
	border: 1px solid #ddd;
	padding-top: 4px;
	padding-bottom: 2px;
	padding-left: 22px;
	margin-top: 2px;
	line-height: 16px;
	height: 16px;
	color: #000;
}

a.projectlink:hover {
	border: 1px solid #1e69de;
	color: #fff;
	box-shadow: 0 0 2px #1e69de;
	text-decoration: none;
	text-shadow: 0 0 2px #0036b5;
	
	background: #6db3f2;
	background: -moz-linear-gradient(top, #6db3f2 0%, #54a3ee 50%, #3690f0 51%, #1e69de 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6db3f2), color-stop(50%,#54a3ee), color-stop(51%,#3690f0), color-stop(100%,#1e69de));
	background: -webkit-linear-gradient(top, #6db3f2 0%,#54a3ee 50%,#3690f0 51%,#1e69de 100%);
	background: -o-linear-gradient(top, #6db3f2 0%,#54a3ee 50%,#3690f0 51%,#1e69de 100%);
	background: -ms-linear-gradient(top, #6db3f2 0%,#54a3ee 50%,#3690f0 51%,#1e69de 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6db3f2', endColorstr='#1e69de',GradientType=0 );
	background: linear-gradient(top, #6db3f2 0%,#54a3ee 50%,#3690f0 51%,#1e69de 100%);
}

a.projectlink img {
	position: absolute;
	left: 3px;
	top: 3px;
}

