* {
	margin: 0;
	padding: 0;
	border: 0;
}

html {
	height: 100%;
}

body {
	background-color: #f7f9fc;
	color: #444;
	font-family: Arial, 'Trebuchet MS', Verdana, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 140%;
}

#wrap {
	width: 750px;
	margin: 30px auto;
}

#content {
	position: relative;
	padding: 20px;
	border: 1px solid #d7e1eb;
	-webkit-box-shadow: 1px 2px 30px #d7e1eb;
	-moz-box-shadow: 1px 2px 30px #d7e1eb;
	box-shadow: 1px 2px 30px #d7e1eb;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	background-color: #fff;
}

#info {
	float: left;
	width: 180px;
	padding-top: 30px;
}

#info #tw {
	position: absolute;
	bottom: 10px;
	left: 20px;
	opacity: 0.2;
	-webkit-transition: opacity 200ms 0;
}

#info #tw:hover {
	opacity: 1;
}

#foot {
	padding: 10px 20px 0 20px;
	text-align: right;
}

#foot a {
	text-decoration: none;
	color: #8ca7c2;
}

#foot a:hover, #foot a:focus { color: #258; }

/* Typo
*************************************************/

h1 {
	width: 270px;
	height: 69px;
	margin: 0 0 10px 15px;
}

h1 a {
	display: block;
	width: 270px;
	height: 69px;
	text-indent: -200em;
	background: url(/images/core/appstars.png) no-repeat 0 0;
}

p { margin-bottom: 1em; }

a, a:visited {
	color: #258;
	-webkit-transition: color 200ms 0;
}

a:hover, a:focus {
	color: #444;
}

.small {
	font-size: 12px;
	color: #777;
	line-height: 140%;
}

.nowrap { white-space: nowrap; }

/* Tweets
*************************************************/

#tweets {
	float: right;
	width: 500px;
}

#tweets ul {
	border-bottom: 1px solid #d7e1eb;
}

#tweets ul li {
	list-style: none;
	border-top: 1px solid #d7e1eb;
	padding: 10px;
	/*
	-webkit-transition-property: background-color;
	-webkit-transition-duration: 200ms;
	-webkit-transition-delay: 0;
	*/
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f7f9fc), color-stop(0.5, #fff));
	background-image: -moz-linear-gradient(top, #f7f9fc, #fff);
	color: #777;
}

#tweets ul li:hover {
	background-color: #e8eef3;
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #e8eef3), color-stop(0.5, #f7f9fc));
	background-image: -moz-linear-gradient(top, #e8eef3, #f7f9fc);
	line-height: 140%;
	color: #444;
}

/* Forms
************************************************/

label {
	font-size: 12px;
}

input[type=text], input[type=password], input[type=submit], textarea, select {
	vertical-align: middle;	
	border: 1px solid #ccc;
	padding: 5px;
	width: 350px;
	margin-top: -1px;
}

select { padding: 0; }

input:hover, input:focus, textarea:hover, textarea:focus { border-color: #bbb; }

input.form, textarea.form {
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
	-moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
	background: -webkit-gradient(linear, left top, left 25, from(#fff), color-stop(4%, #eee), to(#fff));  
	background: -moz-linear-gradient(top, #fff, #eee1px, #fff 25px); 
}

input.form:hover, input.form:focus, textarea.form:hover, textarea.form:focus {
	box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px;
}

button, .btn {
	border: 1px solid #ccc;
	padding: 4px 10px;
	background-color: #eee;
	background: -webkit-gradient(linear, left top, left 25, from(#eee), color-stop(4%, #fff), to(#eee));  
	background: -moz-linear-gradient(top, #eee1px, #fff, #fff 25px); 
	-webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
	-moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
	font-size: 12px;
	color: #258;
	text-decoration: none;
}

button:hover, .btn:hover, button:focus, .btn:focus {
	background: #eee;
	border-color: #aaa;
}

a.btn.primary {
	border-color: #6186ab;
	border-top-color: #90aac3;
	background-color: #eee;
	background: -webkit-gradient(linear, left top, left 25, from(#fff), color-stop(4%, #8ba5c1), color-stop(50%, #258), to(#258));  
	background: -moz-linear-gradient(top, #eee1px, #fff, #fff 25px);
	color: #f5f5f5;
	text-shadow: 1px 1px 2px #135;
}

button.primary:hover, .btn.primary:hover, button.primary:focus, .btn.primary:focus {
	background: #258;
}

/* clearfix
*************************************************/

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix { display: inline-block; }

/* Hides from IE-mac \*/
* html .clearfix {	height: 1%; }
.clearfix { display: block; }
/* End hide from IE-mac */
