/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ------------------------------------------------- */

input{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box; 	
}

input[type=button],
input[type=cancel],
input[type=submit]{
	-webkit-appearance:none;
}

/* ------------------------------------------------- */

html{
	background:url('/assets/noise.png');
}

body{
	font-family:Georgia, Times, serif;
	font-size:100%;
	line-height:1em;
}

#content .wrap{
	margin:5% auto 0;
	max-width:1000px;
}

#me{
	background:#ffffff;
	margin:20px auto;
	padding:20px;
	max-width:400px;
	
	-webkit-border-radius:6px;
	-moz-border-radius:6px;	
	-o-border-radius:6px;	
	border-radius:6px;	
	
	-webkit-box-shadow:0 0 15px rgba(75, 75, 75, 0.4);
	-moz-box-shadow:0 0 15px rgba(75, 75, 75, 0.4);
	-o-box-shadow:0 0 15px rgba(75, 75, 75, 0.4);
	box-shadow:0 0 15px rgba(75, 75, 75, 0.4);
}

.col1, .col2{
	display:inline-block;
	vertical-align:top;

}
.col1{
	margin-right:20px;
}

.col2{
	max-width:300px;
}

.avatar{
	-webkit-border-radius:3px;
	-moz-border-radius:3px;	
	-o-border-radius:3px;	
	border-radius:3px;	
}

h1{
	margin-bottom:0.5em;
	font-weight:700;
}



p{
	margin:0.5em 0;
}

em{
	font-style:italic;
	color:#555;
}

.twitter{
	font-weight:normal;
	font-size:80%;
}

@media only screen and (max-width: 460px) {
	#me{
		margin:10px;
		
	}
	
	.col2{
		width:60%;
	}

}