@charset "utf-8";

/* Oh come on, you're reading CSS sources too? */

*{
	margin: 0;
	padding: 0;	
}

html, body{
	height: 100%;
	background-color: #eee;
}

a{
	text-decoration: none;
	border: 0px;
}

#content{
	width: 508px;
	height: 508px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -254px;
	margin-left: -254px;
}

.box{
	text-align: center;
	width: 110px;
	height: 110px;
	margin: 28px;
	display: inline-block;
	/* CSS3 goodness */
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.box a{
	display: block;
	width: 100%;
	height: 100%;
}

#hn{
	background-color: #f60;
}
#hn:hover {
	background-image:url('y.png');
	-moz-box-shadow: 0 0 1em #f60;
	-webkit-box-shadow: 0 0 1em #f60;
	box-shadow: 0 0 1em #f60;
}

#remaildr{
	background-color: #131A27;
}
#remaildr:hover {
	background-image:url('remaildr.png');
	background-repeat: no-repeat;
	background-position: center;
	-moz-box-shadow: 0 0 1em #131A27;
	-webkit-box-shadow: 0 0 1em #131A27;
	box-shadow: 0 0 1em #131A27;
}

#blog{
	background-color: #f9f9f9;
	background-image:url('o.png');
	background-repeat:no-repeat;
	background-position:center;
	border: 2px solid #ccc;
	margin: 26px; /*We have to redefine the margin because of the border */
}
#blog:hover {
	background-image:url('blog.png');
	background-position:0px 25px;	
}

#mail{
	background-color: #b11000;
}
#mail:hover {
	-moz-box-shadow: 0 0 1em #b11000;
	-webkit-box-shadow: 0 0 1em #b11000;
	box-shadow: 0 0 1em #b11000;
	background-image:url('mail_white.png');
	background-position:center;
	background-repeat:no-repeat;
}

#github{
	background-color: #f2ddb2;
}
#github:hover {
	background-image: url('github.png');
	background-repeat:no-repeat;
	background-position: right bottom;
	-moz-box-shadow: 0 0 2em #f2ddb2;
	-webkit-box-shadow: 0 0 2em #f2ddb2;
	box-shadow: 0 0 2em #f2ddb2;
}

#pluies{
	background-color: #fff;
	background-image:url('pluies.png');
	background-repeat:no-repeat;
	background-position:center;
	border: 2px solid #ccc;
	margin: 26px;
	-moz-box-shadow: 0 0 2em #fff;
	-webkit-box-shadow: 0 0 2em #fff;
	box-shadow: 0 0 2em #fff;
}

