
/* ----------------------------------------------- 
	joelpittet.com Stylesheet
	Author: Joel Pittet
	Created on: Dec 26 2008
	
	- GLOBAL RESET
	- BASIC ELEMENTS
	- LAYOUT
	- CUSTOM CLASSES

-------------------------------------------------- */


/* GLOBAL RESET 
------------------------------------------------- */

/* v1.0 | 20080212 */

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, font, 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 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* BASIC ELEMENTS
------------------------------------------------- */

body {
	background: #000 url(/img/body-bg2.jpg) no-repeat top center;
	font: 16px/1.6em helvetica, arial, sans-serif;
	color: #eee;
}

a {
	/*color: #cfaf0a;*/
	color: #FFE341;
}

a:hover {
	color: #ffff4c;
}


th {
	text-align: left;
}

/* Headings */
h1 { 
	font: 300 42px/1em  Georgia, Times, serif; 
	margin-bottom: .5em; 
	color: #54002B;
/*	border: 1px dotted #000;*/
	border-left: 0;
	border-right: 0;
	padding: 25px 0 15px;
	letter-spacing: -0.45px;
	position: relative;
}

h1 span {
	display: inline-block;
	height: 25px;
	position: absolute;
	top: 25px;
	left: 0;
	color: #64103B;
	overflow: hidden;
}

h2 {	
	font: 300 26px/1.3em "Lucida Grande", Verdana, Lucida, Arial, Helvetica, sans-serif;
	margin-top: .5em;
	color: #FFE341;
}

h3 { 
	font: 700 18px/1.3em "Lucida Grande", Verdana, Lucida, Arial, Helvetica, sans-serif;
	margin-top: 1em;
}

h4 { font: 700 17px/1.3em "Lucida Grande", Verdana, Lucida, Arial, Helvetica, sans-serif; }

h6 {
	font: 700 16px/1.4em "Lucida Grande", Verdana, Lucida, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0 20px;
}

p {
	padding: 0.3em 0 0.6em 0;
	line-height: 1.6em;
	color: #eee;
}

ul, 
ol{ 
	margin: 0;
	padding: 0.3em .2em .6em;
}
ol{ margin-left: 1.5em }

ul li { 
	list-style: disc;
	padding: .5em .5em;
	margin: 0 1em;
}


/* Horizontal Rule */

hr {
	border: 0;
	height: 1px;
	color: #ccc;
	background: #ccc;
	margin: 20px 0;
	padding: 0;
}

small {
	font-size: 12px; 
	color:#999; 
}



/* LAYOUT
------------------------------------------------- */
#container {
	margin: 0 auto;
	position: relative;
	width: 980px; 
	margin: 0 auto 50px;
}

#header {
	position: relative;
	width: 980px; /* IE7 Fix */
}


#header #logo { 
	position: absolute;
	z-index: 2;
	left: 0;
	top: 73px;
	height: 82px;
/*	background: #222;*/
	width: 120px;
}

#header #logo a {
	padding-left: 40px;
	padding-top: 17px;
}
/*#logo-bg {
	background-color: #000;
	height: 17px;
	width: 15px;
	position: absolute;
	top: 1px;	
	right: 6px;
}
*/
/* MAIN NAVIGATION menu */
#menu {
	position: absolute;
	width: 133px;
	top: 172px;
	left: 0; 

}

#menu ul {
	border: 0;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#menu ul li {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
/*	background: #111;*/
}

#menu ul li a {
	margin: 5px 13px 5px 0;
	padding: 0 10px;
	color: #ccc;
	text-decoration: none;
	display: block;
	line-height: 1.8em;
	/* Asthetics */
	height: 26px;
	overflow: hidden;
} 
	

#menu ul li a:hover,
#menu ul li a:active	{ 
	color: #fff;
}

#menu ul li.current { 
	background: transparent url(/img/menu-arrow.gif) no-repeat top right;	
}

#menu ul li.current a { 
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-bottomleft: 3px;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	background: #222;
	color: #FFE341;
}

#content { 	
	padding: 70px 10px 0 0;
	margin-left: 150px; 
	overflow: hidden; /* Float bug fix (clearfix) */
}

#sidebar,
#body {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-color: #222;
	box-shadow: 0 0 10px rgba(0, 0, 0, .8);
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .8);
	padding: 20px 20px;
	margin-left: 20px;
}

#main {
	margin: 0 240px 0 0;
/*	padding: 40px 30px;*/
	width: auto;
}

#sidebar {
	float: right;
	padding-left: 20px;
	font-size: 14px;
	padding-top: 10px;
}



/* Google Reader ------------------------------------------------- */

.s { 
	font-size: 10px; 
	color: #999; 
}



/* Code */
code, 
pre	{
	font-family: "Bitstream Vera Sans Mono", monaco, "Courier New", courier, monospace;
	background: inherit;
	color: #333;
	white-space:pre; 
}


/* Form
------------------------------------------------- */

label {
	color:#707070;
	display:block;
	font-weight: bold;
	margin-top: .5em;
}

input,
textarea,
select  {
	border-width: 1px;
	background: #fff;
}

input.button { 
	letter-spacing: .1em;
	background: #92C93A;
	font-size: 700;
	color: #fff;
	width: auto;
	border: 1px outset #92C93A;
}

.field {
	border: 1px solid #ccc;
	border-top: 1px solid #999;
	border-left: 1px solid #666;
	padding: 5px;
	font-size: 1em;
}

button,
.button {
	border: 1px solid #ccc;
	border-top: 1px solid #999;
	border-left: 1px solid #666;
	padding: 5px 10px;
	background: #DEEAF0;
	font-size: 1em;
}

button:hover {
	border: 1px solid #C2F96A;
	background: #92C93A;
	color: #fff;
}

.error { color: #92C93A; }


.required { 
	font-size: 10px; 
	color: #c00;
	font-weight: bold; 
}


/* Extra Calsses */

.odd { background: #191919; }
.even { background: #222; }

.intro {
	font-size:  24px;
	line-height: 1.35em;
	padding: 0 120px 20px 0;
	font-family: georgia, times, serif;
} 

.intro em {
	background: #333;
	opacity: .6;
	font-style: normal;
	padding: 2px;
/*	letter-spacing: .5px;*/
}
.intro em:hover{
	opacity: 1;
	background: 000;
}


/*Photobox*/
#photo-box {
	margin: 10px 0 20px;
	padding: 0;
	overflow: auto;
}
#photo-box li {
 	list-style: none;
	padding: 0;
	margin: 0;
	float: left;
}

#photo-box img { 
	border: 1px solid #111; 
}
#photo-box .first img {
	border-left: 2px solid #111;
}
#photo-box .last img {
	border-right: 2px solid #111;
}


/*The Webs*/
#webs {
	margin: 10px 0 20px;
	padding: 0;
	overflow: auto;
}
#webs li {
 	list-style: none;
	padding: 10px 0;
	margin: 0;
	float: left;
	width: 260px;
}

#webs a img {
	vertical-align: middle;
	padding-right: 10px;
}
#webs a {
	text-decoration: none;
}

