/* 

	WordPress Theme 'Dylan'
	Customisation CSS
	
	pages: single page/pages with comments
	media: all
	
	written by: Phil Thompson hello@philthompson.co.uk December 2007
	last edited: Phil Thompson 25/12/2008 by Phil Thompson
	
	Table of Contents
	
	
	Background colours
	
	Main content area colours
	
	Link colours
	
	Website name/description colour
	
	Border colours
	
	Heading colours
	
	
*/


/* 
	Background colours
*/
body,
div#header,
div#footer,
div#primarycontent form p.instructions,
body.home div.sticky{
	background: #EEEEEE; /* Background colour DEFAULT #EEEEEE (light grey) */
	color: #151515; /* Text colour DEFAULT #151515 (off black) */
}

/* 
	Main content area colours
*/
div#content_container,
div#primarycontent,
div#primarycontent form
div#secondarycontent,
div#secondarycontent form,
div#commenting_rules{
	background: #FFFFFF;  /* Background colour DEFAULT #FFFFFF (white) */
	color: #151515; /* Text colour DEFAULT #151515 (off black) */
}

/*
	Link colours
*/

/* Normal (unclicked) links */
a{
	color: #630D0D; /* DEFAULT #0000FF (blue) */
	text-decoration: underline; /* Links are underlined or not: options 'underline' or 'none': DEFAULT: underline */
}

/* clicked links */
a:visited{
	color: #5F0D0D; /* DEFAULT #800080 (purple) */
}
/* Hover: mouseover */
a:hover{
	color: #A71616; /* DEFAULT #0000FF (blue) */
	text-decoration: none; /* Links are underlined or not: options 'underline' or 'none': DEFAULT: none */
}
/* Active: currently being clicked on */
a:active{
	color: #A71616; /* DEFAULT #3333FF (light blue) */
}

/*
	Website name/description colour
*/

h1#logo,
span#logo,
span#logo a{
	color: #151515; /* Text colour DEFAULT #151515 (off black) */
}

p#description{
	color: #151515; /* Text colour DEFAULT #151515 (off black) */
}

/* 
	Border colours
*/

div#primarycontent,
body.post p.intro,
p.postmetadata,
div#primarycontent form#commentform,
div#primarycontent form p.instructions,
div#commenting_rules,
div#primarycontent ul.commentlist li,
ul.commentlist li div.comment,
.wp-caption
{
	border-color: #EEEEEE; /* Border colour DEFAULT: #EEEEEE (light grey) */
}

/* 
	Heading colours
*/

/* Normal headings */
h1,h2,h3,h4,h5,h6, body.post p.intro, div.post h2 a{
 color: #444444; /* Text colour DEFAULT: #4444444 (Grey) */
}

/* Post title */
body.post h1,
h2.h1{
	color: #151515; /* Text colour DEFAULT #151515 (off black) */
}

