/* @startfile style/screen.css */

/**
 * ----------------------------------------------------------------------------
 * Resets
 */
* {margin: 0; padding: 0}
a img {border: 0}
img, embed, object {vertical-align: bottom}

/**
 * ----------------------------------------------------------------------------
 * Body and Wrappers
 */
html {
	font-size: 62.5%;
}
body {
	font: normal 1.4em Arial,Helvetica,sans-serif;
	line-height: 1.57;
	background: #fff url(../img/page.bg.jpg) repeat-x left top;
	color: #505050;
	text-align: center;
}
.container {
	position: relative;
	width: 960px;
	margin: 0 auto;
	text-align: left;
}

/**
 * ----------------------------------------------------------------------------
 * Element defaults and devices
 */
a {
	color: inherit;
	text-decoration: none;
}
a:hover {
	color: #ff3c00;
}
p {
	margin: 0 0 1.57em;
}
h2 {
	font: normal 40px Arial,sans-serif;
	line-height: 1;
	margin: 0 0 0.5em;
	color: #555b5d;
	-webkit-text-shadow: 0px 1px 0px rgba(255,255,255,0.4);
	-moz-text-shadow: 0px 1px 0px rgba(255,255,255,0.4);
	text-shadow: 0px 1px 0px rgba(255,255,255,0.4);
}
h2 a {
	color: #555b5d;
	text-decoration: none;
}
h2 a:hover {
	color: #000;
}
h3 {
	font-size: 1.4em;
	font-weight: normal;
	margin: 0.75em 0 0;
	color: #294650;
}
h4 {
	font-size: 1em;
	font-weight: bold;
	margin: 1.5em 0 0;
	color: #000;
}
ol, ul {
	margin: 0 0 1.57em 2.5em;
	padding: 0;
}
li {
	margin: 0 0 0.667em;
	padding: 0;
}
dt {
	font-weight: bold;
}
dd {
	margin-left: 2em;
}

/* Item indexes */
.item-index, .index {
	margin: 0;
	padding: 0;
	list-style: none;
}
.item-index li:after {
	content: "";
	display: block;
	width: 100%;
	height: 5px;
	margin: 30px 0;
	background: #dcdcdc;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.item-index li:last-child:after {
	display: none;
}
.split {
	-webkit-column-count: 2;
	-webkit-column-gap: 45%;
}
/* Meta data */
.meta {
	font-size: 0.85em;
	font-style: italic;
	margin: 15px 0;
}
.meta .date {
	font-style: normal;
	font-weight: bold;
	text-transform: uppercase;
}
.meta a {
	font-style: normal;
	font-weight: bold;
}
/* Blocks */
.block {
	margin: 0 0 30px;
}
.block h2 {
	font-size: 1.08em;
	font-weight: bold;
	line-height: 1.1;
	padding: 0 0 6px;
	margin: 0 0 8px;
	color: #6b7274;
	border-bottom: 3px solid #d5d6d6;
	border-bottom: 3px solid rgba(57,66,68,0.1);
	text-transform: uppercase;
}
.block a {
	font-weight: bold;
}
/* Asides and wrapping instructions */
.aside {
	font-size: 0.77em;
	width: 160px;
	margin: 15px 0 20px;
	padding: 15px 0 0;
	border-top: 3px solid #777;
}
.aside h3, .aside h4 {
	margin: 0 0 1em;
}
.wrap-left {
	float: right;
	margin-left: 40px;
}
.wrap-right {
	float: left;
	margin-right: 40px;
	text-align: right;
}

/**
 * ----------------------------------------------------------------------------
 * Header
 */
#header {
	height: 81px;
	background: #141b1d url(../img/header.bg.jpg) no-repeat center top;
	color: #a2b6bd;
	border-bottom: 1px solid #fff;
}
#site-name {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 75px;
	height: 81px;
	overflow: hidden;
	background: url(../img/logo.png) no-repeat left center;
	text-indent: -500em;
	text-decoration: none;
}
#menu {
	font: bold 0.857em Arial,sans-serif;
	position: absolute;
	right: 0px;
	top: 33px;
	margin: 0;
	padding: 0;
}
#menu li {
	float: left;
	height: 16px;
	list-style: none;
	border-right: 1px solid #3e4649;
}
#menu li:last-child {
	border-right: 0;
}
#menu li.active {border-right: 0}
#menu a {
	line-height: 1;
	float: left;
	position: relative;
	top: -7px;
	padding: 9px 18px;
	color: #a2b6bd;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	text-decoration: none;
}
#menu a:hover {
	color: #fff;
}
#menu .active a {
	background: #ff6900;
	color: #fff;
	margin-left: -1px;
}

/**
 * ----------------------------------------------------------------------------
 * Content Layout
 */
#main {
	padding: 32px 0;
}
#context {
	width: 100%;
	padding: 0 0 30px;
	overflow: hidden;
}

.sidebar #content {
	float: left;
	width: 610px;
}
#sidebar {
	font-size: 0.85em;
	float: right;
	width: 300px;
}

/**
 * ----------------------------------------------------------------------------
 * Context header
 */
#context h1 {
	font: normal 45px Arial,sans-serif;
	line-height: 1;
	float: left;
	margin: 0 30px 0 0;
	color: #fff;
	-webkit-text-shadow: 0px -1px 0px rgba(62, 70, 73, 0.4);
	-moz-text-shadow: 0px -1px 0px rgba(62, 70, 73, 0.4);
	text-shadow: 0px -1px 0px rgba(62, 70, 73, 0.4);
}
#context .section-description {
	font-size: 0.85em;
	margin: 0;
	padding: 23px 0 0;
}

/**
 * ----------------------------------------------------------------------------
 * Home page
 */
#home-page #header {
	background-image: url(../img/home.bg.jpg);
	background-repeat: repeat-x;
	border: 0;
}
#home-intro {
	height: 453px; /* I hate weird dims, but oh well */
	background: #141b1d url(../img/home.bg.jpg) repeat-x 50% -81px;
	color: #fff;
}
#home-intro h1 {
	height: 33px;
	width: 100%;
	margin: 0 0 35px;
	padding: 0;
	background: url(../img/home-headline.png) no-repeat left top;
	text-indent: -500em;
}
#home-intro .about {
	font-size: 0.93em; /* 13px */
	float: left;
	width: 300px;
}
#home-intro h2 {
	font-size: 1.45em;
	line-height: 1.3;
	margin: 0 0 1em;
	color: #ff6900;
	-webkit-text-shadow: none;
	-moz-text-shadow: none;
	text-shadow: none;
}
#demo-button {
	display: block;
	font-size: 13px;
	font-weight: bold;
	line-height: 14px;
	margin: 20px 0;
	padding: 12px 0;
	background: url(../img/try-button.png) no-repeat center top;
	color: #fff;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	-webkit-text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
	-moz-text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
	text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
}
#demo-button:hover,
#demo-button:focus {
	background-position: center bottom;
}
#download-now-small {
	display: block;
	font-size: 13px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
}
#download-now-small span {
	padding: 3px 0 3px 32px;
	background: url(../img/download-icon.png) no-repeat left center;
}
#download-now-small var {
	font-size: 11px;
	font-style: italic;
	font-weight: normal;
	color: #92c7de;
	text-transform: none;
	text-decoration: none;
}
/* Screenshots, no JS */
#screenshots {
	float: right;
	width: 595px;
	margin: 0;
	padding: 0;
	list-style: none;
}
#screenshots li {
	float: left;
	margin: 0 20px 20px 0;
}
#screenshots img {
	width: 265px;
}
/* Screenshots, JS enabled */
.js #screenshots {
	position: relative;
}
.js #screenshots li {
	float: none;
	position: absolute;
	left: 0px;
	top: 0px;
	margin: 0;
}
.js #screenshots img {
	width: auto;
}
/* Features */
#features {
	font-size: 11px;
	line-height: 1.64;
	overflow: hidden;
	margin: 0;
	padding: 10px 0 0;
}
#features li {
	float: left;
	width: 234px;
	height: 140px;
	margin: 0;
	padding: 0 27px 0 59px;
	background-repeat: no-repeat;
	background-position: left top;
	list-style: none;
}
#features h2 {
	font-weight: bold;
	font-size: 15px;
	margin: 0 0 7px;
	color: #ff6900;
	text-transform: uppercase;
}
#f_security {background-image: url(../img/f_security.png)}
#f_speed {background-image: url(../img/f_speed.png)}
#f_interface {background-image: url(../img/f_interface.png)}
#f_themes {background-image: url(../img/f_themes.png)}
#f_language {background-image: url(../img/f_language.png)}
#f_web {background-image: url(../img/f_web.png)}
/* Dev bar */
#download-now {
	font-size: 16px;
	line-height: 1;
	float: left;
	padding: 15px 45px;
	background: #56b008;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(108,189,15)), to(rgb(69,161,5)));
	color: #fff;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 14px;
	text-decoration: none;
	-webkit-text-shadow: 1px 1px 0px rgba(0,0,0,0.35);
	-moz-text-shadow: 1px 1px 0px rgba(0,0,0,0.35);
	text-shadow: 1px 1px 0px rgba(0,0,0,0.35);
	text-transform: uppercase;
}
#download-now var {
	font-size: 0.75em;
	font-style: normal;
	color: #d0fb88;
}
#dev-bar {
	font-size: 0.9em;
	font-weight: bold;
	overflow: hidden;
	padding: 6px;
	background: #ededed;
	background: rgba(0,0,0,0.07);
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	border-radius: 18px;
}
#dev-bar h2,
#dev-bar ul,
#dev-bar li {
	display: inline;
	margin: 0;
}
#dev-bar h2,
#dev-bar ul {
	position: relative;
	top: 13px;
}
#dev-bar h2 {
	font-size: 1em;
	font-weight: bold;
	margin-left: 50px;
	color: #5b5f60;
	text-transform: uppercase;
}
#dev-bar li {
	margin-left: 25px;
	list-style: none;
}

/* Module content */
ul#photos li {
	float:left;
	height:150px;
	width:200px;
}

fieldset#comment-list-wrapper {
	float:left;
	padding: 1em;
	width:46%;
}

fieldset#write-comment {
	float:right;
	padding: 1em;
	width:46%;
}

/* @endfile style/screen.css */