@font-face {
	font-family: BebasNeue;
	src: url('BebasNeue.otf');
}

span#font-face {
	font-family: BebasNeue;
	font-size: 28px;
}

a#transition {
	color: #474747;
	text-decoration: underline;
	-webkit-transition: color 2000ms ease-in;
	-moz-transition: color 2s ease-in;
	-o-transition: color 2000ms ease-in;
}

a#transition:hover {
	color: #b5bd00;
}

div#border {
	border: 2px solid red;
	-webkit-transition: border 500ms linear;
	-moz-transition: border 500ms linear;
	-o-transition: border 500ms linear;
}
div#border:hover {
	border: 10px solid green;
}

div#transform {
	border: 2px solid red;
	width: 400px;
	padding: 5px;
	margin: 20px 0;
	-moz-transform: translate(100px) rotate(20deg);
	-webkit-transform: translate(100px) rotate(20deg);
	-o-transform: translate(100px) rotate(20deg);
}

div#matrix {
	background: orange;
	width: 400px;
	padding: 5px;
	-moz-transform: matrix(1, 0, 0.6, 1, 5em, 0);
	-webkit-transform: matrix(1, 0, 0.6, 1,  100, 0);
	-o-transform: matrix(1, 0, 0.6, 1,  100, 0);
}

div.heading {
	width: 400px;
	border-radius: 8px;
	-moz-border-radius: 8px;
	background: -moz-linear-gradient(top, #1c91c8, #176b92 );
	background: -webkit-gradient(linear, center top, center bottom, from(#1c91c8), to(#176b92));
	color: #fff;
	font-family: Tahoma;
	overflow: hidden;
}
	
div.date {
	width: 60px;
	background: -moz-linear-gradient(top, #1776a2, #135777 );
	background: -webkit-gradient(linear, center top, center bottom, from(#1776a2), to(#135777));
	display: inline;
	float: left;
	padding: 10px;
	font-size: 12px;
	border-radius: 8px 0 0 8px;
	-moz-border-radius: 8px 0 0 8px;
}
	
div.date div {
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	font-size: 10px;
	display: inline-block;
}
	
div.title {
	display: inline;
	float: left;
	padding: 10px 0 0 10px;
	font-size: 18px;
	letter-spacing: 0.1em;
}
	
div.comments {
	display: inline;
	float: right;
	width: 30px;
	background: -moz-linear-gradient(top, #1776a2, #135777 );
	background: -webkit-gradient(linear, center top, center bottom, from(#1776a2), to(#135777));
	padding: 10px 0 10px 10px;
	border-radius: 8px;
	-moz-border-radius: 8px;
	font-size: 18px;
}

div#border1 {
	width: 60px;
	border-width: 20px;
	border-image: url(border.png) 20 20 stretch;
	-moz-border-image: url(border.png) 20 20 stretch;
	-webkit-border-image: url(border.png) 20 20 stretch;
}

div#border2 {
	width: 60px;
	padding: 5px;
	border-width: 15px;
	border-image: url(border2.png) 30 30 round;
	-moz-border-image: url(border2.png) 30 30 round;
	-webkit-border-image: url(border2.png) 30 30 round;
}
