/* TABLE of CONTENTS
 *
 * i   Welcome message
 * ii  Fonts & Colors
 *
 * 1 Browser Cleanup
 * 	1.1 Reset
 * 	1.2 Formatting
 *	 1.2.1 Forms
 *	 1.2.2 Tables
 * 	1.3 Headings
 * 	1.4 Anchors
 *
 * 2 Page Structure
 * 	2.1 Header
 * 	 2.1.1 Navigation
 * 	2.2 Content
 * 	 2.2.1 Index
 * 	  2.2.1.1 About Box
 * 	  2.2.1.2 Updates
 * 	  2.2.1.3 My work
 * 	 2.2.2 Contact
 * 	  2.2.2.1 Contact Form
 * 	  2.2.2.2 Information
 * 	  2.2.2.3 Elsewhere
 *	 2.2.3 Hire
 *	  2.2.3.1 Rates & Information
 *	  2.2.3.2 Why me
 *	 2.2.4 Items
 *	  2.2.4.1 Information
 *	  2.2.4.2 Images
 *	2.3 Footer
 *
 */

/* i Welcome
 *
 * Feel free to look about my Ninja stylesheet, but don't pick
 * up any bad coding habits on the way! This is what happens when you
 * are alone on a modern computer with no internet and five browsers.
 * 	But don't feel bad. Coding HTML & CSS is fun. At least, I enjoy
 * it. Congratulations to anyone who wasted the time to read my welcome
 * message. Come back soon!
 *
 *
 * ii Fonts & Colors
 *
 *	FONTS
 *	------------------------------
 *	body copy
 *	    Verdana
 *	    Lucida Grande
 *	    sans-serif
 *	titling
 *	    Rockwell
 *	    American Typewriter
 *	    Georgia
 *	    Times New Roman
 *	    serif
 *	
 *	COLORS			HEX
 *	------------------------------
 *	creamy off white	FCFAF1
 *	chocolate brown		451C0A
 *	minty green		B1D3B2
 *	darker cream		f6efe0
 *	
 *	TEXT			SIZE
 *	------------------------------
 *	body			12px
 *	main heading (h1)	18px
 *	subheads (h2)		14px
 *	
 *	SECTION			WIDTH
 *	------------------------------
 *	main/body		420px
 *	column gutter		7px
 *	1/6 column  		64px
 *	1/3 column		135px
 *	1/2 column		206px
 *	2/3 column		277px
 *
 */

/* 1 Browser Cleanup
 * 1.1 Reset
 */
html,body,div,span,applet,object,iframe,
h1,h2,h3,h4,p,blockquote,pre,
a,abbr,code,img,dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,tr,th,td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
a img {
	border: 0;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
}


/* 1.2 Formatting
 */
body {
	margin: 4.5em 6em;
	width: 420px;
	font: 75%/1.5 Verdana, "Lucida Grande", sans-serif;
	color: #451C0A;
	background: #FCFAF1 /*url(images/grid.gif) 6em 0 repeat-y*/;
}
h2,h3,p,ul,ol,table {
	margin: 0 0 .75em;
}
ul {
	margin-left: 1.1em;
	list-style: circle outside;
}
em {
	font-style: inherit;
	background: #c3e2c4;
}
*.letterspace {
	letter-spacing: .05em;
}

/* 1.2.1 Forms
 */
form {
	margin: 1em 0 0;
}
input,textarea,select,a.button {
	border: 1px dotted #451C0A;
	border-bottom: 2px solid #451C0A;
	border-right: 2px solid #451C0A;
	padding: 3px;
	margin: 0 0 5px;
	background: #FCFAF1;
	color: #451C0A;
}
input:hover,textarea:hover,select:hover,:focus,a.button:hover {
	background: #fff;
	border-color: #B1D3B2;
}
input.button:hover {
	cursor: pointer;
}
input.button:focus, input.button:active {
	background: #f6efe0;
	border-color: #451C0A;
}

/* 1.2.2 Tables
 */
table {
	width: 100%;
	border-bottom: 1px solid #451C0A;
}
th {
	border-bottom: 3px solid #451C0A;
	padding: 3px 0;
	font-weight: 600;
}
td {
	border-bottom: 1px dotted #451C0A;
	padding: 3px 0;
}

/* 1.3 Headings
 */
h1,h2,h3,h4 {
	font-family: Rockwell,"American Typewriter", "Bookman Old style", Georgia, "Times New Roman", serif;
	font-weight: 900;
}
h1 {
	font-size: 1.5em;
	line-height: 29px;
	float: left;
}
h2 {
	font-size: 120%;
	line-height: 1.3em;
	margin: 0 0 .5em;
	border-top: 1px solid #451C0A;
}
h2#title {
	background: #B1D3B2;
	color: #FCFAF1;
	border-bottom: 1px solid #451C0A;
	border-top: 0;
	padding: 4px 6px 4px;
}
h3 {
	margin: 1.1em 0 .4em;
}

/* 1.4 Anchors
 */
a:link,a:visited {
	color: #451C0A;
	font-weight: bold;
}
div#content a:visited,
div#footer a:visited {
	padding-right: 12px;
	background: url(images/visited.gif) 100% 0 no-repeat;
}
div#content a.img:visited,div#aboutme a:visited {
	background: inherit;
	padding-right: 0;
}
a:hover,a:active,div#aboutme a:hover,
div#content a:visited:hover,div#footer a:visited:hover {
	color: #B1D3B2;
	background-color: #FCFAF1;
	text-decoration: none;
}


/* 2 Page Structure
 */
div#header,
div#content,
div#works h2,
div#elsewhere,
body#item dl,
p.desc,
div#footer {
	float: left;
	width: 420px;
}

/* 2.1 Header
 */
div#header {
	border-top: 5px solid #451C0A;
	border-bottom: 1px dotted #451C0A;
	height: 32px;
	margin: 0 0 1px;
}
div#header h1 a:link, div#header h1 a:visited {
	width: 120px;
}
div#header h1 a:hover, div#header h1 a:active {
	color: #B1D3B2;
}

/* 2.1.1 Navigation
 */
div#header ul {
	list-style: none;
	float: right;
	border-right: 1px solid #B1D3B2;
	margin: 3px 0 0;
	line-height: 23px;
	font-weight: 900;
}
div#header li {
	display: block;
	width: 56px;
	height: 24px;
	float: left;
	padding: 0 0 0 7px;
	margin: 0 7px 0 0;
	border-left: 1px solid #B1D3B2;
}
div#header a {
	color: inherit;
	display: block;
	overflow: hidden;
	height: 31px;
	background: transparent;
	text-decoration: none;
}
div#header span {
	display: block;
	width: 56px;
	height: 28px;
}
div#header a:hover span,div#header li#active span {
	border-bottom: 3px solid #451C0A;
}

/* 2.2 Content
 * 2.2.1 Index
 */
body#index div#content {
	background: url(images/contentgrad.gif) 0 0 repeat-x;
	padding: 6px 0 0;
}

/* 2.2.1.1 About Box
 */
div#aboutme {
	width: 188px;
	height: 10.7em;
	padding: 7px 7px 9px;
	background: #B1D3B2;
	float: left;
	margin: 0 0 14px;
}
div#aboutme h2 {
	color: #FCFAF1;
	border: 0;
	padding: 25px 0 0;
	margin-top: -25px;
	background: url(images/speach.gif) 12px 0 no-repeat;
}

/* 2.2.1.2 Updates
 */
div#updates {
	float: right;
	width: 207px;
	height: 143px;
	overflow: auto;
	border-bottom: 1px dotted #451C0A;
	margin: 0 0 14px;
	background: #FCFAF1;
}

/* 2.2.1.3 Works
 */
div#works {
	float: left;
	width: 430px;
}
div#works h2 {
	margin: 0 0 .75em;
}
div#works div.icon {
	float: left;
	width: 135px;
	margin: -7px 7px 16px 0;
}
div#works a img {
	width: 121px;
	height: 56px;
	border: 7px solid #B1D3B2;
}
div#works a:hover img,div#works div:hover a img {
	border: 2px solid #B1D3B2;
	padding: 5px;
}
div#works div:hover a {
	color: #B1D3B2;
	text-decoration: none;
}

/* 2.2.2 Contact
 * 2.2.2.1 Contact Form
 */
div#contactform {
	width: 269px;
	float: right;
	border-left: 1px solid #451C0A;
	padding: 7px 0 0 8px;
	margin: 0 0 1em;
}
div#contactform input,
div#contactform select,
div#contactform textarea {
	margin-left: 63px;
}
div#contactform label {
	display: block;
	width: 100%;
	margin: 0 0 -1.5em;
}
fieldset#attach,fieldset#buttons {
	padding-left: 63px;
}
fieldset#attach,fieldset#buttons input {
	margin-left: 0;
}
fieldset a#attach {
	display: block;
	width: auto;
	font-size: 90%;
	margin: -.5em 0 .75em;
	padding-left: 63px;
}

/* 2.2.2.2 Information
 */
ul#information {
	margin: 0;
	list-style: none;
	width: 135px;
	float: left;
	overflow: hidden;
}
ul#information li {
	margin: -1px 0 0;
	border-top: 1px solid #B1D3B2;
	padding: 1em 0;
}

/* 2.2.2.3 Elsewhere
 */
div#elsewhere {
	margin: 0 0 1em;
	background: url(images/contentgrad.gif) 0 -36px repeat-x;
}
div#elsewhere ul {
	-moz-column-count: 4;
	-webkit-column-count: 4;
	list-style: lower-roman outside;
}

/* 2.2.3 Hire
 * 2.2.3.1 Rates & Information
 */
div#rates {
	width: 269px;
	float: left;
	border-right: 1px solid #451C0A;
	padding: 0 8px 0 0;
	margin: 0 0 1em;
}

/* 2.2.3.2 Why me
 */
div#why {
	width: 135px;
	float: right;
}
div#why p, div#why ul {
	font-size: 90%;
	margin-bottom: 1.8em;
}

/* 2.2.4 Items
 */
body#item div#content {
	margin: 0 0 1em;
}

/* Information
 */
div.specs {
	height: 1em;
	margin: -2.5em 0 2em;
}
	div.specs p {
		float: right;
		margin: 0 .5em 0 0;
	}
	p.medium {
		background: #FCFAF1;
		padding: 0 .5em;
		font-weight: bold;
	}
	p.size {
		color: #FCFAF1;
		font-weight: bold;
	}
body#item dt {
	width: 64px;
	float: left;
	text-align: right;
	font-weight: bold;
}
body#item dd {
	width: 349px;
	float: right;
}
p.desc {
	margin-top: .75em;
}

/* 2.2.4.2 Images
 */
p.caption {
	font-size: 90%;
	margin-bottom: 1em;
}

/* 2.3 Footer
 */
div#footer {
	border-top: 3px solid #451C0A;
	background: #f6efe0;
	margin: 0 0 6em;
}
div#copyright,div#ministry {
	height: 3.25em;
	padding: 3px 3px 4px 5px;
}
div#copyright {
	float: left;
	width: 266px;
}
div#ministry {
	width: 128px;
	float: right;
	border-left: 1px solid #451C0A;
	padding-left: 11px;
	color: #8A624A;
}
div#footer ul {
	list-style-type: none;
	margin: 0 0 0 .25em;
}
