/**
 *   Anchor, default reset
 */
* {
	margin: 0;
	padding: 0;
	
	-webkit-font-smoothing: antialiased;
	
	/* Don't count padding and borders towards widths */ 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/**
 *   Typographic reset
 */
body {
	/* Use a serif font for nice readability, but not Times */
	font: 17px/26px "Century Gothic", "Lucida Console", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	background-color: #FF0000;
}

h1, h2, h3, h4, h5, #logo, #top, .slidey b, .slidey label, .counter, input, textarea, button, .pagination {
	font-family: "Lucida Console", monospace;
	font-weight: 300;
}

pre, code, .mono {
	font: 12px/19px "Courier New", Consolas, monospace;
	padding: 0 2px;
}

code {
	background-color: #000000;
}

p {
	padding-bottom: 15px;
}

pre {
	padding: 15px 20px;
	margin-bottom: 20px;
	
	border-radius: 5px;
	white-space: pre-wrap;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}
a img {
	border: none;
}

/**
 *   Layout reset
 */
.wrap {
	min-width: 280px;
	max-width: 750px;
	width: 60%;
	
	margin: 0 auto;
}

/**
 *   Default colours
 */
body, .items > li:first-child {
	color: #C0C0C0;
	background-color: #171717;
}
a, .items h1 a:hover {
	color: #595959;
}
a:hover {
	color: #E73939;
}
	
pre, .hilite, mark {
	background: #f9f6ea;
	color: #8b7c65;
	text-shadow: 0 1px 0 rgba(255,255,255,.2);
}

input, textarea {
  border-color: #606060;
  border-width: 2px;
  border-style: solid;
	color: #C0C0C0;
	background: #727272;
	
}
::-webkit-input-placeholder {
	color: #b2b9c5;
}
:-moz-placeholder, :placeholder {
	color: #b2b9c5;
}
	
.error, .success {
	padding: 20px 30px;
	margin-bottom: 30px;

	background: #e25d47;
	color: #fff;
	
	border-radius: 5px;
}
.success {
	background: #88be33;
}
.error p, .success p {
	float: none !important;
	width: 100%;
	padding: 0;
	margin: 0 !important;
}

/**
 *   Transitions and animations
 */
a, a img {
	-webkit-transition: opacity .2s, color .2s;
	-moz-transition: opacity .2s, color .2s;
	transition: opacity .2s, color .2s;
}