/* 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;
}

/* site speciphic css */

body {
	font-family: 'Inconsolata', Arial, sans-serif; 
	font-weight: 400;
	font-style: normal;
  	font-size: 16px;
  	font-variant: normal;
  	color:#333;
}

a, a:link, a:visited {
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  font-size: 36px;
}
a:hover {
  text-decoration:underline;
}

header {
	position: fixed;
	width: 60px;
	color: #666;
	top: 10%;
	left: 10px;
	text-wrap: unrestricted;
	word-wrap: break-word;
}

header p {
	margin: 10px 0 0 0;	
}
aside {
	position: fixed;
	width:200px;
	top:10%;
	left:70px;
	padding:0 0 0 20px;
}
aside.small {
	display:none;
}
main {
	position: fixed;
	width:350px;
	top:10%;
	left:290px;
}


div.cursor.hidden {
	display:none;	
}

div.cursor {
  display: inline-block;
  background: #000;
  width:20px;
  height:1px;
  margin: 30px 0 0 0;
  -webkit-animation: blink 1s linear 0s infinite;
  -moz-animation: blink 1s linear 0s infinite;
  -ms-animation: blink 1s linear 0s infinite;
  -o-animation: blink 1s linear 0s infinite;
}
@-webkit-keyframes blink {
  0%   { background: #fff }
  47%  { background: #fff }
  50%  { background: #000 }
  97%  { background: #000 }
  100% { background: #fff }
}
 
@-moz-keyframes blink {
  0%   { background: #fff }
  47%  { background: #fff }
  50%  { background: #000 }
  97%  { background: #000 }
  100% { background: #fff }
}
 
@-ms-keyframes blink {
  0%   { background: #fff }
  47%  { background: #fff }
  50%  { background: #000 }
  97%  { background: #000 }
  100% { background: #fff }
}
 
@-o-keyframes blink {
  0%   { background: #fff }
  47%  { background: #fff }
  50%  { background: #000 }
  97%  { background: #000 }
  100% { background: #fff }
}

@media only screen and (min-width:520px) and (max-width: 650px)  {
	body {font-size:14px;}
	main {left:230px; z-index:100; width:290px;}
	aside.big {left:55px;}
	a, a:link, a:visited {font-size:26px;}
	div.cursor {display:none;}
}
@media only screen and (min-width:320px) and (max-width: 519px)  {
	aside.big {display:none;}
	aside.small {display:block; left:50px}
	main {left:100px; z-index:100; width:290px;}
	body {font-size:14px;}
	a, a:link, a:visited {font-size:26px;}
	div.cursor {display:none;}
}
@media only screen and (max-width: 395px)  {
	aside.small {display:none;}
	aside.big {display:none;}
	header {left:10px; top:10px; position:relative;}
	main {left:10px; top: 40px; z-index:100; position:relative; width:90%}
	body {font-size:14px;}
	a, a:link, a:visited {font-size:22px;}
	div.cursor {display:none;}
}