@charset "utf-8";
/* CSS Document */

	/* LAYOUT */
body {
	font: 10px Georgia, "Times New Roman", Times, serif;
	background: #ffffff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left-aligned default in the #container selector */
	color: #333333;
}

strong {
	font-weight: bold;
}

.last {
	margin-bottom: 0;
	padding-bottom: 0;
}

#listen {
	background: #fff;
	position: absolute;
	right: 0;
	bottom: 120px;
	height: 199px;
	border: 1px dotted #000;
	border-right: 0;
	width: 40px;
	overflow: hidden;

}

	#listen #listen-slider {
		width: 40px;
		height: 199px;
		background: url(http://www.nicholasclapton.com/img/listen.png) no-repeat 0 0;
		cursor: pointer;
	}
		#listen #listen-slider span {
			position: absolute;
			left: -4000px;
		}
	#listen #listen-player {
		position: absolute;
		top: 0;
		left: 40px;
		height: 149px;
		margin: 25px 0 25px 10px;
		width: 190px;
	}
	#listen #listen-player object {
		
	}

#container { 
	width: 940px;  /* 960px total width -- does IE need a hack? */
	background: #ffffff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) centre the page */
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element */
	_zoom: 1;
}

#leftColumn { 
	float: left; /* since this element is floated, a width must be given */
	width: 190px;
	margin: 0;
	margin-right: 10px;
	padding: 0; 
} 

#logo {
	width: 190px;
	padding: 0;
	margin: 0px;
	
}

#logo a {
	width: 190px;
	display: block;
	background-repeat: no-repeat;
	background-position: 0 0;
	font-size: 1.5em;
	text-decoration: none;
	padding-left: 5px;
}


#navbar {
	margin: 0;
	padding: 0;
	background-color: #F5F5F5;
}

#rightColumn {
	float: right;
	width: 740px;
	margin: 0;
	padding: 0;
}

#header {
	margin: 0;
	padding: 0;  /* remove padding when inserting image */
	/*background: #dddddd;*/
	position: relative;
	_zoom: 1;
} 

#body {
	margin: 0;
	padding: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
}

#strapline {
	margin: 0;
	padding: 0;
	width: 100%;
	position: relative;
}

#selector {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 240px;
	text-align: right;
}

#mainContent {
	float: left;
	width: 490px;
	margin: 0;
	padding: 0;
}

#news {
	float: left;
	width: 240px;
}

#gigs {
	float: right;
	width: 240px;
	padding: 0;
}

#sidebar {
	float: right; 
	width: 240px; 
	padding: 0;
} 

#footer {

	margin: 10px auto 10px auto; 
	padding: 0;
}
#footer-inner {
	margin-left: 200px;
	text-align: left;
}

#smallPrint { 
	float: left;
	width: 490px;
	margin: 0; 
	padding: 0;
	border-top: 1px dotted #333333; 
}

#colophon {
	float: right; 
	width: 240px; 
	padding: 0;
	border-top: 1px dotted #333333;
} 

	/* POSITIONAL FLOAT CLASSES */
.fltrt { /* float an element right. The floated element must precede the element it is next to on the page. */
	float: right;
	margin-left: 10px;
}
.fltlft { /* float an element left */
	float: left;
	margin-right: 10px;
}

	/* GENERIC CLEARING CLASS */
.clear { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0;
}


	/* NAVIGATION */
.menu ul {
	font: 1.4em "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #000;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 190px;
}

.menu ul li {
	border-bottom: 1px dotted #000000;
	font-weight: bold;
	text-transform: uppercase;
}

.menu ul li a {
	display: block;
	width: 190px;
	height: 39px;
	color: #999999;
	text-decoration: none;
	padding-top: 20px;
}
.menu ul li a span {
	height: 0;
	width: 0;
	margin-left: 5px;
	margin-top: 10px;
}
.menu ul li a:hover, .menu ul li.selected a {
	color: #000000;
	text-decoration: none;
}

#side-img {
	width: 190px;
	height: 400px;
	margin-top: 39px;
}

#side-img-right {
	width: 240px;
	height: 360px;
	margin: 18px 0 10px 0;
}

	/* NEXT/PREVIOUS */
#selector ul {
	margin: 0;
	padding: 0 0 8px 0;
	height: 18px;
	border: 0;
	font: 1.8em "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	color: #999999;

} 

#selector ul li {
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline;
}


	/* TYPOGRAPHY */
h1 {
	margin: 0;
	display: block;
	font: 2em "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	color: #000000;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #000;
	padding-top: 14px;
	padding-right: 0;
	padding-bottom: 8px;
	padding-left: 0;
}

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. */
	padding: 10px 0; 
}

#header h1.title {
	padding: 0;
	border: 0;
	width: auto;
	height: auto;
	font-size: 1.5em;
	font-variant: normal;
	text-transform: none;
	font-weight: normal;
}

	#header h1.title img.mini {
		margin-bottom: 9px;
	}

#strapline h1 {
	margin: 0;
	padding: 23px 0 8px 0;
	_padding-bottom: 0;
	line-height: 1em;
	width: 100%;
	height: 48px;
	border-bottom: 1px dotted #000000;
	font: 4.8em "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	color: #000000;
}

h2 {
	margin: 0;
	padding: 14px 0 8px 0;
	display: block;
	width: 490px;
	font-weight: normal;
	text-transform: none;
	color: #000000;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-style: italic;
	border-bottom-color: #000000;
}

#strapline h2 {
	margin: 0;
	padding: 13px 0 8px 0;
	display: block;
	width: 740px;
	height: 18px;
	border-bottom: 1px dotted #000000;
	font: 1.8em "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	color: #000000;
}

#sidebar h2 {
	margin: 0;
	display: block;
	border-bottom: 1px dotted #000000;
	font: 1.8em "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	color: #000000;
	padding-top: 13px;
	padding-right: 0;
	padding-bottom: 8px;
	padding-left: 0;
}

#news h2, #gigs h2 {
	margin: 0;
	padding: 13px 0 8px 0;
	width: 100%;
	display: block;
	height: 18px;
	border-bottom: 1px dotted #000000;
	font: 1.8em "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	color: #000000;
}

h3 {
	margin: 0;
	display: block;
	border-bottom: 1px dotted #000000;
	font: 1.4em "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	color: #000000;
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 8px;
	padding-left: 0;
}

#sidebar h3 {
	margin: 0;
	display: block;
	border-bottom: 1px dotted #000000;
	font: 1.2em "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	color: #000000;
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 8px;
	padding-left: 0;
}

h4 {
	font-size: 1.3em;
	margin: 0;
	padding: 19px 0 7px 0;
	line-height: 1em;
	border-bottom: 1px dotted #999;
}

p {
	margin: 10px 0;
	padding: 0;
	font-size: 1.3em;
	line-height: 1.5em;
}

#mainContent p.first {
	padding-top: 8px;
}

#mainContent p.block {
	margin: 0;
	padding: 19px 0 7px 0;
	line-height: 1em;
}



#footer p {
	font: 1em Arial, Helvetica, sans-serif;
	line-height: 1.2em;
}

#strapline dl {
	margin: 0;
	padding: 12px 0;
	font-size: 1.3em;
	line-height: 1.5em;
}

#strapline dl dt img {
	display: block;
	float: left;
	width: 240px;
	height: 240px;
	margin-right: 15px;
	background: #cccccc;
}

#strapline dl dt p {
	float: left;
	width: 240px;
	margin: 10px 0 0 0;
	clear: left;
	font: 0.865em Arial, Helvetica, sans-serif;
	color: #999999;
	line-height: 1.2em;
}
	
#strapline dl dd {
	margin: 0 0 0 255px;
	padding: 0;
}

#strapline dl dd.title {
	font: 2em "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
	line-height: 24px;
}

#strapline dl dd.subtitle {
	margin-top: 5px;
}

#strapline dl dd.spaceBefore {
	margin: 1em 0 0 255px;
	padding: 0;
}

#strapline dl dd.group {
	font-weight: bold;
}

#strapline dl dd.moreinfo {
	margin: 1em 0 0 255px;
}
	#strapline dl dd.moreinfo div.title {
		border-bottom: 1px dotted #000;
		padding-bottom: 8px;
		margin-bottom: 8px;
		height: 12px;
		font: 0.92em "Helvetica Neue", Helvetica, Arial, sans-serif;
		font-weight: bold;
		text-transform: uppercase;
		color: #000;
	}

#strapline dl dd.moreinfo a {
	margin: 0;
	font: 0.925em Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	padding-right: 20px;
}
	#strapline dl dd.moreinfo a img {
		height: 30px;
	}

#mainContent ol {
	margin-left: 0;
	padding-left: 2em;
	font-size: 1.3em;
	line-height: 1.3em;
}

#mainContent ol li {
	margin-bottom: 1em;
}

#mainContent ul {
	font-size: 1.3em;
	margin-left: 0em;
	padding-left: 1.6em;
}


#mainContent ul.more {
	margin: 1.05em 0;
	padding: 0;
	font: 1.2em Arial, Helvetica, sans-serif;
	text-transform: uppercase;
}

#diary ul {
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	line-height: 1.3em;
	font-size: 1.3em;
}

#diary ul li.spaceBefore {
	margin: 1em 0 0 0;
	padding: 0;
}

#diary ul li.moreinfo {
	margin: 1em 0 0 0;
}

#diary ul li.moreinfo a {
	margin: 0;
	padding-left: 18px;
	font: 0.93em Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	background: transparent url(http://www.timtraversbrown.com/img/arrow.gif) no-repeat left;
}

#disc dl {
	margin: 0;
	padding: 12px 0;
	font-size: 1.3em;
}

#disc dl dt a img {
	display: block;
	float: left;
	width: 150px;
	height: 150px;
	margin-right: 10px;
	background: #cccccc;
}
		
#disc dl dd {
	margin: 0 0 0 160px;
	padding: 0;
}

#disc dl dd.spaceBefore {
	margin: 1em 0 0 160px;
	padding: 0;
}

#disc dl dd.group {
	font-weight: bold;
}

#disc dl dd.moreinfo {
	margin: 1em 0 0 160px;
}

#disc dl dd.moreinfo a {
	margin: 0;
	padding-left: 18px;
	font: 0.93em Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	background: transparent url(http://www.timtraversbrown.com/img/arrow.gif) no-repeat left;
}

#schools { /* move to layout section */
	margin: 0;
	padding: 0;
}

#schools dl {
	margin: 0;
	padding: 1em 0;
	font-size: 1.3em;
}

#schools dl dt a img {
	display: block;
	float: left;
	width: 90px;
	height: auto;
	margin-right: 10px;
	background: #cccccc;
}
		
#schools dl dd {
	margin: 0 0 0 100px;
	padding: 0;
}

#schools dl dd.spaceBefore {
	margin: 1em 0 0 100px;
	padding: 0;
}

#sidebar ul {
	margin-left: 0;
	padding-left: 1.6em;
	font-size: 1.2em;
}

#sidebar ul li {
	margin-bottom: 1.2em;
}

#featured ul {
	margin-left: 0;
	_margin-top: 0;
	padding-left: 0;
	text-indent: 0;
	font: 1.2em Arial, Helvetica, sans-serif;
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
}

#featured ul li {
	margin-bottom: 0;
}

#featured ul li a img {
	display: block;
	width: 150px;
	height: 150px;
	margin: 0 0 6px 0;
	border: 0;
	background: #cccccc;
}

#sideRecs ul {
	margin-left: 0;
	padding-left: 0;
	text-indent: 0;
	font: 1.2em Arial, Helvetica, sans-serif;
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
}

#sideRecs ul li {
	margin-bottom: 0;
}

#sideRecs ul li a img {
	display: block;
	float: left;
	width: 90px;
	height: 90px;
	margin: 0 10px 0 0;
	border: 0;
	background: #cccccc;
}

hr {
	margin: 0;
	height: 1px;
	border: none;
	border-bottom: 1px dotted #000000;
}

hr.secondary { border-bottom-color: #999999; }

ul.list-future {
	border-bottom: 1px dotted #000;
	padding-bottom: 1em !important;
}

ul.list-past {
	border-top: 1px dotted #000;
}

	/* GENERIC LINKAGE */
a {
	color: #339;
	text-decoration: none;
	font-weight: bold;
}

a:hover {
	color: #999;
	text-decoration: underline;
}

a:active {
	color: #F00;
	text-decoration: none;
}

/* form */
input, textarea, label { margin: 0; padding: 0; }
#mainContent ul.form {
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
}
	#mainContent ul.form li {
		display: block;
		margin: 10px 0 0 0;
		_height: 0;
		_margin-top: 0;
	}
		#mainContent ul.form li label, #mainContent ul.form li span {
			display: block;
			margin-bottom: 4px;
		}
		
		#mainContent ul.form li input.text, #mainContent ul.form li textarea {
			width: 300px;
			border: 1px solid #999;
			padding: 2px 0;
			font: 1.2em Arial, Helvetica, sans-serif;
		}

/* split list */

#mainContent ul.split-list {
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
}
	#mainContent ul.split-list li {
		*zoom: 1;
		margin-bottom: 20px;
	}
	#mainContent ul.split-list li:after {
		content: '.'; clear: both; height: 0; display: block; visibility: hidden;
	}
		#mainContent ul.split-list li.key {
			float: left;
			width: 220px;
			margin-right: 10px;
		}
		#mainContent ul.split-list li.list {
			float: left;
			width: 260px;
		}

#mainContent ul.link-list {
	margin: 0;
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
}
	#mainContent ul.link-list li {
		border-top: 1px dotted #999;
		padding: 10px 0;
		line-height: 1.5em;
	}
	#mainContent ul.link-list li.first {
		margin-top: 8px;
		border: 0;
	}

/* gallery */
#mainContent ul.gallery { 
	margin: -10px 0 0 0;
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	_zoom: 1;
}
	#mainContent ul.gallery:after {
		content: '.'; clear: both; height: 0; display: block; visibility: hidden;
	}
	ul.gallery li {
		margin-top: 10px;
		float: left;
		width: 240px;
		height: 240px;
	}
	ul.gallery li.odd {
		margin-right: 10px;
	}
		ul.gallery img {
			background: #fff no-repeat 0 0;
			width: 240px;
			height: 240px;
		}
#logo a:hover {

}
p.subtitle {
	text-align: right;
}
.underline {
	text-decoration: underline;
}
.centred {
	text-align: center;
}
.nospace {
	text-align: center;
	margin: 0px;
	padding: 0px;
}
.italic {
	font-style: italic;
}
#logo h1 {
	font-size: 2em;
	font-weight: bold;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.gallery {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	display: inline-block;
	clear: none;
	width: 300px;
	background-color: #D6D6D6;
	margin: 10px;
	padding: 10px;
	text-align: center;
}
.vertical {
	float: left; 
	position: relative;
	-moz-transform: rotate(270deg);  /* FF3.5+ */        
	-o-transform: rotate(270deg);  /* Opera 10.5 */   
	-webkit-transform: rotate(270deg);  /* Saf3.1+, Chrome */              
	filter:  progid:DXImageTransform.Microsoft.BasicImage(rotation=3);  /* IE6,IE7 */          
	-ms-filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); /* IE8 */           
}
.align_right {
	text-align: right;
}
.highlight {
	color: #F00;
	font-size: 1.8em;
}
p .highlight a {
	color: #F00;
}
