/*-------------------------------------------------------------------------------------------------
   Lithium: the most rad php framework

   @copyright     Copyright 2009, Union of RAD (http://union-of-rad.org)
   @license       http://opensource.org/licenses/bsd-license.php The BSD License
-------------------------------------------------------------------------------------------------*/

/*--- Reset ---*/
* { margin: 0; padding: 0; }
html, body { height: 100%; min-height: 100%; }

/*--- Layout ---*/
body {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 150%;
	color: #0d0d0d;
	background-color: #fff;
}
#container {
	position: relative;
	width: 950px;
	margin: 0 auto;
	padding: 60px 20px 0 20px;
}

/*--- Basics ---*/
h1, h2, h3, h4, h5, h6 { font-weight:normal; color:#111; line-height:1; }
h1 { font-size: 36px; margin: 0.5em 0; }
h2 { font-size: 28px; color: #666; margin: 1em 0 0.5em 0; }
h3 { font-size: 24px; color: #00a8e6; margin: 1.5em 0 0.5em 0; }
h4 { font-size: 20px; margin: 1.5em 0 0.5em 0; font-weight:bold; }
p { margin-bottom: 0.5em; }
strong { font-weight: bold; }
em { font-style: italic; }
a { text-decoration: none; color: #0d0d0d; }
a, h1 a, h2 a { text-decoration: none; }
a:hover { color: #00bbff; }
a:visited:hover { color: #ff59ff; }
a img { border: none; }

/*--- Code ---*/
pre > code {
	display: block;
}
code, pre, .fixed {
	font-family: Monaco, Courier, monospace;
	font-weight: normal;
	font-size: 12px;
}
code {
	padding: .2em .25em !important;
	border: 1px solid #f0f0f0;
	background: #fafafa;
}
pre {
	padding-bottom: 0.5em;
}

/*--- Lists ---*/
li ul, li ol { margin: 0; }
ul, ol { margin: 0 0 1em 1.5em; }

/*--- Header ---*/
#header h1 {
	margin: .1em 0;
	font-size: 35px;
}
#header h2 {
	width: 70%;
	margin: .5em .5em 2em 0;
	color: #666;
	font-size: 22px;
	line-height: 28px;
}

/*--- Tables ---*/
table {
	clear: both;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px solid #e6e6e6;
	background: #fafafa;
}
td, th {
	padding: .25em .75em;
	border: 1px solid #e6e6e6;
	vertical-align: middle;
	text-align: left;
	font-weight: normal;
}
tr th {
	text-align: left;
	font-size: 14px;
	font-weight: bold;
	color: #666;
}
tr:nth-child(even) {
	background: #fff;
}

/*--- Forms ---*/
form {
	display: block;
	clear: both;
	background: #fafafa;
	padding: 1em 2em 2em 0em;
}
fieldset {
	padding: 2em;
	margin: 0 0 1em 0;
	border: none;
	background: #e6e6e6;
}
legend {
	padding: .5em 1em;
	border: 1px solid #e6e6e6;
	background: #fff;
	font-size: 22px;
}
label {
	padding: 0 1em 0 0;
	color: #454545;
	font-weight: normal;
}
input, textarea {
	padding: 2px 4px;
	border: 1px solid #e5e5e5;
	color: #454545;
	font-size: 14px;
	line-height: 18px;
	-moz-box-shadow: inset 1px 1px 6px #a6a6a6;
	-webkit-box-shadow: inset 1px 1px 6px #a6a6a6;
	box-shadow: inset 1px 1px 6px #a6a6a6;
}
input[type=text], input[type=password], input[type=submit], textarea {
	clear: both;
	display: block;
	padding: .25em .5em;
}
input[type=text], input[type=password], textarea {
	width: 97%;
	max-width: 950px;
	margin: .5em 0 1em 0;
	padding:.5em;
}
input[type=submit], input[type=button], input[type=reset] {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 1px 1px 6px #a6a6a6;
	-webkit-box-shadow: 1px 1px 6px #a6a6a6;
	box-shadow: 1px 1px 6px #a6a6a6;
	background-color: #efefef;
}
select {
	clear: both;
	display: block;
	margin: .5em 0 1em 0;
}
div.checkbox {
	clear: both;
	padding: 1em 0;
}
.checkbox label {
	display: inline;
}
input[type=submit] {
	padding: .5em 1em;
	margin: 1em inherit;
	border: none;
	color: #000;
	font-size: 16px;
	font-weight: bold;
}
input[type=submit]:hover {
	color: #00bbff;
}
input[type=text]:focus, input[type=password]:focus, textarea:focus, select:focus {
	border-color: #00a8e6;
}

