﻿/* - Copyright © Luke Franklin 2009. All Rights Reserved - */
/* CSS Reset Sheet - Updated: 7/11/2009 - Based on Blueprint CSS @ http://blueprintcss.org/ */
* {
	margin: 0;
	font-size: 100%;
	font-weight: inherit;
	font-style: inherit;
	font-family: inherit;
	vertical-align: baseline;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, ol, ul, dt, dd, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	padding: 0;
	border: 0;
}
html {
	font-size: 100.01%; /*16px*/
}
html, body {
	width: 100%;
	height: 100%;
}
body {
	font-size: 62.5%; /*10px*/
	font-family: "Helvetica Neue" , Arial, Helvetica, sans-serif;
	line-height: 1.4;
	word-spacing: 0.07em;
	letter-spacing: 0.2em;
	color: #1a1a1a;
	background: #fafafa;
}


/*-- Text elements --*/
/*- Headings -*/
h1, h2, h3 {
	margin: 0.6em 0 0.2em 0;
	font: normal 2.5em Geneva, Verdana, 'Lucida Sans', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif;
	word-spacing: normal;
	letter-spacing: normal;
}
h2 {
	font-size: 2em;
}
h3 {
	font-size: 1.6em;
}
h4, h5, h6, legend {
	margin: 0.6em 0 0.1333em 0;
	font-size: 1.3em;
	font-weight: bold;
}
h5, legend {
	font-size: 1.15em;
}
h6 {
	font-size: 1em;
}

/*- Paragraph -*/
p {
	margin-bottom: 1.3em;
	font-size: 1.3em;
}
p img.Left {
	float: left;
	margin: 1.3em 1.3em 1.3em 0;
}
p img.Right {
	float: right;
	margin: 1.3em 0 1.3em 1.3em;
}

/*- Quotes -*/
blockquote {
	margin: 1.5em;
	color: #666;
	font-style: italic;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

/*- Links -*/
a {
	color: #336699;
	text-decoration: none;
}
a:visited {
	color: #660066;
}
a:hover, a:focus, a:active {
	color: #CC0000;
}
a img {
	border: none;
}

/*- Inline elements -*/
strong, b, dfn {/* <dfn> tag is a definition term. */
	font-weight: bold;
}
em, i, dfn {
	font-style: italic;
}
sup, sub {
	line-height: 0;
}
big, sup, .Large {
	font-size: 1.2em;
}
small, sub, .Small {
	font-size: 0.80em;
}

/*- Lists -*/
ul, ol, dl {
	margin-bottom: 1.3em;
	padding-left: 3em;
	font-size: 1.3em;
}
ul {
	list-style-type: disc;
}
ol {
	list-style-type: decimal;
}
li, dt {
	margin-bottom: 0.75em;
}
dt {
	font-weight: bold;
}
dd {
	padding-left: 3em;
}
/* Prevents oversizing of nested elements. */
li ul, li ol, li dt {
	margin: 0.5em 0 0 0;
	font-size: 1em;
}


/*- Misc -*/
img {
	vertical-align: text-top;
}
abbr, acronym {/* <abbr> tag describes an abbreviated phrase. An acronym can be spoken as if it were a word. */
	border-bottom: 1px dotted #666;
}
address {/* Defines contact details. */
	margin: 0 1.3em 1.3em 1.3em;
	font-size: 1.3em;
	font-style: italic;
}
del {/* Defines deleted content. */
	color: #666;
	text-decoration: line-through;
}
pre {
	white-space: pre;
}
pre, code, tt {
	display: block;
	margin: 0 1.3em 1.3em 1.3em;
	font-size: 1.3em;
	font-family: 'andale mono', 'lucida console', monospace;
}
.Hidden {
	display: none;
}
.Quiet {
	color: #666;
}
.Loud {
	color: #000;
}
.Highlight {
	background: #ff0;
}
.Added {
	background: #060;
	color: #fff;
}
.Removed {
	background: #900;
	color: #fff;
}
.First {
	margin-left: 0;
	padding-left: 0;
}
.Last {
	margin-right: 0;
	padding-right: 0;
}
.Top {
	margin-top: 0;
	padding-top: 0;
}
.Bottom {
	margin-bottom: 0;
	padding-bottom: 0;
}

/*- Notification Boxes -*/
.Error, .Notice, .Success {
	margin: 0 1.3em 1.3em 1.3em;
	border: 2px solid #ddd;
	padding: 0.8em;
}
.Error {
	border-color: #FBC2C4;
	color: #8a1f11;
	background: #FBE3E4;
}
.Notice {
	border-color: #FFD324;
	color: #514721;
	background: #FFF6BF;
}
.Success {
	border-color: #C6D880;
	color: #264409;
	background: #E6EFC2;
}
.Error a {
	color: #8a1f11;
}
.Notice a {
	color: #514721;
}
.Success a {
	color: #264409;
}

/*- Float clear -*/
.Clear {
	zoom: 1;
}
.Clear:after {
	display: block;
	visibility: hidden;
	height: 0;
	content: "";
	clear: both;
}

/*- Link button -*/
.LinkButton {
	cursor: pointer;
	border-width: 0;
	padding: 0;
	color: #000000;
	text-decoration: none;
	background-color: Transparent;
}
.LinkButton:hover {
	font-weight: bold;
	text-decoration: underline;
}

/*- Internet Explorer Fixes -*/
/*IE hasLayout Hack*/
.IELayout {
	zoom: 1;
}
/*IE float double margin fix*/
.IEFloatMargin {
	display: inline;
}


/*-- Tables --*/
table, caption, thead, th, tr, td {
	vertical-align: middle;
}
table {
	margin-bottom: 1.4em;
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
}
caption {
	background: #eee;
}
th, td, caption {
	text-align: center;
	font-weight: normal;
	padding: 0.4em;
}
thead {
	background: #c3d9ff;
}
th {
	font-weight: bold;
}
tr.Even {
	background: #e5ecf9;
}
tfoot {
	font-style: italic;
}

/*-- Forms --*/
input, select, textarea {
	font: 1em Arial, Helvetica Neue, Helvetica, sans-serif; /*Change*/
}
fieldset {
	margin: 0 1.3em 1.3em 1.3em;
	border: 1px solid #ccc;
	padding: 0.4em;
}
legend {
	margin: 0;
}
input.Title {
	font-size: 1.5em;
}
input.Title, input.Text {
	width: 300px;
	padding: 5px;
}
textarea {
	width: 40em;
	height: 25em;
	padding: 0.5em;
}
input[type=text], input[type=password], input.Title, input.Text, textarea, select {
	margin: 0.5em 0;
	background-color: #fff;
	border: 1px solid #bbb;
}
input[type=text]:focus, input[type=password]:focus, input.Title:focus, input.Text:focus, textarea:focus, select:focus {
	border-color: #666;
}
input[type=checkbox], input[type=radio], input.checkbox, input.radio {
	position: relative;
	top: .25em;
}

/*---End of CSS reset sheet---*/

/*-Copyright © Luke Franklin 2009. All Rights Reserved.-*/
/*-Built and adapted from BlogEngine.NET's standard theme by Mads Kristensen: http://blog.madskristensen.dk -*/

/*----Elements----*/
body {
	min-width: 700px;
	background-color: #7dbef3;
}


/*---Master page---*/
/*-Banner-*/
#Banner {
	position: relative;
	width: 100%;
	height: 200px;
	background-color: #c5e3fa;
	overflow: hidden;
}
#Banner h3, #Banner q, #BannerImage {
	display: block;
	position: absolute;
	left: 0px;
	width: 100%;
	text-align: center;
}
#Banner h3 {
	bottom: 50%;
}
#Banner q {
	top: 50%;
}
#BannerImage {
	bottom: 0px;
	height: 100%;
	background: transparent url( '../Images/Site-Banner.jpg' ) repeat scroll center bottom;
}

/*-Link bar-*/
#LinkBar {
	margin: 0px;
	padding: 0px;
	background: #ff7b05 url( '../Images/Horizontal-Backgrounds.gif' ) repeat-x scroll 0 -8px;
	list-style-type: none;
	font-size: 1.5em;
	line-height: normal;
}
#LinkBar li {
	position: relative;
	float: left;
	z-index: 902;
	margin: 0;
	border-right: solid 1px #925426;
	padding: 0;
	text-align: center;
	vertical-align: middle;
	list-style-position: outside; /*IE fix*/
}
#LinkBar li a {
	display: block;
	padding: 4px 30px;
	height: 100%; /*Another IE fix*/
	color: #000000;
}
#LinkBar li a:hover, #LinkBar li a:focus, #LinkBar li a:active {
	background: #ff4d10 url( '../Images/Horizontal-Backgrounds-2.gif' ) repeat-x scroll 0 -19px;
	color: #000000;
	text-decoration: underline;
}
/*Link bar shadow*/
#LinkBarShadow {
	display: block;
	height: 4px;
	font-size: 0em; /*Yet another IE fix*/
	background: transparent url( '../Images/Horizontal-Backgrounds-2.gif' ) repeat-x scroll 0 -15px;
}

/*-Header-*/
#Header {
	margin: 0.7%;
	color: white;
	text-align: right;
}
#Header h2 {
	margin: 0 2%;
	font: bold 6em Arial, Helvetica Neue, Helvetica, sans-serif;
	letter-spacing: 0.1333333333333333em;
}
#Header p {
	margin: 0 4px 4px 0;
	font: normal 1.3em Verdana, Geneva, Tahoma, sans-serif;
	letter-spacing: 4px;
}
#Header a {
	color: white;
}

/*--Content holders--*/
#PageContent {
	float: left;
	margin-left: 1.5%;
	width: 72.75%;
}
#widgetzone {
	float: right;
	margin-right: 1.5%;
	width: 22.75%;
	font-size: 1em;
}
#widgetzone p {
	font-size: 1em;
}


/*----Classes----*/
/*-Panel-*/
.Panel {
	padding-bottom: 2em; /*Padding used instead of margin as another IE fix*/
}
.Panel .Header {
	position: relative;
	z-index: 1;
	background: #ff7b05 url( '../Images/Horizontal-Backgrounds.gif' ) repeat-x scroll 0 -4px;
	overflow: hidden;
}
.Panel .Header h1, .Panel .Header h4 {
	position: relative;
	z-index: 1;
	margin: 0;
	margin-top: 4px;
	margin-bottom: 1px;
	width: 100%;
	min-height: 15px;
	text-align: center;
	vertical-align: middle;
	font-weight: normal;
	line-height: normal;
}
.Panel .Header h4 {
	line-height: 1.5;
}
.Panel .Header img {
	vertical-align: middle;
	border: solid 1px #000000;
}
.Panel .Header a {
	color: #000000;
}
.Panel .Header a:hover, .Panel .Header a:focus, .Panel .Header a:active {
	font-weight: normal;
	text-decoration: underline;
}
.Panel .Header .Left {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 29px;
	height: 100%;
	background: transparent url( '../Images/Vertical-Backgrounds.gif' ) repeat-y scroll 0 0;
}
.Panel .Header .Left .Corner {
	position: absolute;
	top: 0;
	left: 0;
	width: 29px;
	height: 29px;
	background: transparent url( '../Images/Non-Tiling-Backgrounds.gif' ) no-repeat scroll 0 0;
}
.Panel .Header .Right {
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	width: 29px;
	height: 100%;
	background: transparent url( '../Images/Vertical-Backgrounds.gif' ) repeat-y scroll -29px 0;
}
.Panel .Header .Right .Corner {
	position: absolute;
	top: 0;
	right: 0;
	width: 29px;
	height: 29px;
	background: transparent url( '../Images/Non-Tiling-Backgrounds.gif' ) no-repeat scroll -29px 0;
}
.Panel .ContentArea {
	position: relative;
	min-height: 25px;
	z-index: 0;
	padding: 6px 10px 10px 10px;
	background-color: #FFFFFF;
}
.Panel .ContentArea .Content {
	position: relative;
	z-index: 1;
	padding: 8px 9px 8px 9px;
	overflow: auto;
}
/*Content header*/
.Panel .ContentArea .Content .Header {
	position: static;
	margin-top: 0px;
	height: auto;
	background: none;
}
.Panel .ContentArea .Content a {
}
.Panel .ContentArea .Top, .Panel .ContentArea .Bottom, .Panel .ContentArea .Left, .Panel .ContentArea .Right {
	position: absolute;
	z-index: 0;
	top: 0;
}
.Panel .ContentArea .Top {
	right: 0;
	width: 100%;
	height: 4px;
	font-size: 0em; /*IE Fix*/
	background: #ff7b05 url( '../Images/Horizontal-Backgrounds.gif' ) repeat-x scroll 0 0;
}
.Panel .ContentArea .Left {
	left: 0;
	height: 100%;
	width: 19px;
	background: transparent url( '../Images/Vertical-Backgrounds.gif' ) repeat-y scroll -58px 0;
}
.Panel .ContentArea .Left .Top {
	left: 4px;
	width: 15px;
	height: 4px;
	background: transparent url( '../Images/Non-Tiling-Backgrounds.gif' ) no-repeat scroll -41px -33px;
}
.Panel .ContentArea .Left .Bottom {
	top: auto;
	bottom: 0;
	left: 0;
	width: 19px;
	height: 19px;
	background: transparent url( '../Images/Non-Tiling-Backgrounds.gif' ) no-repeat scroll 0 -29px;
}
.Panel .ContentArea .Right {
	right: 0;
	height: 100%;
	width: 19px;
	background: transparent url( '../Images/Vertical-Backgrounds.gif' ) repeat-y scroll -77px 0;
}
.Panel .ContentArea .Right .Top {
	right: 4px;
	width: 15px;
	height: 4px;
	background: transparent url( '../Images/Non-Tiling-Backgrounds.gif' ) no-repeat scroll -41px -41px;
}
.Panel .ContentArea .Right .Bottom {
	top: auto;
	bottom: 0;
	right: 0;
	width: 19px;
	height: 19px;
	background: transparent url( '../Images/Non-Tiling-Backgrounds.gif' ) no-repeat scroll -19px -29px;
}
.Panel .ContentArea .Bottom {
	top: auto;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 19px;
	background: transparent url( '../Images/Horizontal-Backgrounds-2.gif' ) repeat-x scroll 0 0;
}


/*-Post-*/
.post .Content {
	padding-top: 0.5em;
}
.post .text {
	padding-top: 1em;
}
.post .author, .post .pubDate {
	display: block;
	position: absolute;
	top: 0px;
	color: #666666;
}
.post .pubDate {
	right: 0px;
}
.post .author {
	left: 0px;
}
.post .author a {
	color: #666666;
	text-decoration: none;
}
/*Star rater*/
.rating {
	margin-bottom: 1em;
}
.rating p {
	font-size: 1em;
	line-height: 1.545454545454545em;
	display: inline;
	position: relative;
	top: 14px;
	left: 55px;
}
.star-rating {
	position: relative;
	width: 125px;
	height: 25px;
	overflow: hidden;
	list-style: none;
	margin: 0;
	padding: 0;
	background-position: left top;
}
.star-rating li {
	display: inline;
}
.star-rating a, .star-rating .current-rating {
	position: absolute;
	top: 0;
	left: 0;
	text-indent: -1000em;
	height: 25px;
	line-height: 25px;
	outline: none;
	overflow: hidden;
	border: none;
}
.star-rating a:hover, .star-rating a:active, .star-rating a:focus {
	background-position: left bottom;
}
.star-rating a.one-star {
	width: 20%;
	z-index: 6;
}
.star-rating a.two-stars {
	width: 40%;
	z-index: 5;
}
.star-rating a.three-stars {
	width: 60%;
	z-index: 4;
}
.star-rating a.four-stars {
	width: 80%;
	z-index: 3;
}
.star-rating a.five-stars {
	width: 100%;
	z-index: 2;
}
.star-rating .current-rating {
	z-index: 1;
	background-position: left center;
}
/*Smaller star*/
.small-star {
	width: 50px;
	height: 10px;
}
.small-star, .small-star a:hover, .small-star a:active, .small-star a:focus, .small-star .current-rating {
	background-image: url('../Images/Star.gif');
	line-height: 10px;
	height: 10px;
}
/*Bottom meta*/
div.post .tags {
	float: left;
	margin-bottom: 0.5em;
	font-size: 1em;
}
div.post .categories {
	float: right;
	margin-bottom: 0.5em;
	font-size: 1em;
}
div.post .footer {
	clear: both;
	padding-top: 0.5em;
	border-top: 1px dashed silver;
	text-align: right;
}


/*--Widgets--*/
#widgetzone ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-size: 1em;
}
#widgetzone li ul {
	margin-top: 0.5em;
	padding-left: 3em;
}
#widgetzone img.rssButton {
	margin-right: 0.3em;
}
/*-Widget controls-*/
.WidgetControls {
	text-align: right;
}
.WidgetControls .delete {
}

/*-Search box-*/
#searchbox input {
	margin: 0.3em;
}
#searchbox #searchfield {
	width: 60%;
}

/*-Recent posts-*/
ul.recentPosts li {
	margin: 0 0 1em 0;
}
ul.recentPosts li a {
	font-weight: bold;
}
ul.recentPosts li span {
	display: block;
	margin: 0.1em 0 0.1em 0;
	text-indent: 1.5em;
}
ul.recentComments li a.postTitle {
	font-weight: bold;
}

/*-Tag cloud-*/
.tagcloud {
	text-align: center;
}
.tagcloud li {
	display: inline;
}
.tagcloud li a {
	display: inline;
	margin-right: 0.25em;
	padding-right: 0.25em;
}
.tagcloud a.biggest {
	font-size: 1.9em;
	font-weight: bold;
}
.tagcloud a.big {
	font-size: 1.6em;
	font-weight: bold;
}
.tagcloud a.medium {
	font-size: 1.3em;
}
.tagcloud a.small {
	font-size: 0.9em;
	font-weight: bold;
}
.tagcloud a.smallest {
	font-size: 0.9em;
}

/*-Blogroll-*/
.blogroll li a {
	font-weight: bold;
}
.blogroll ul ul {
	margin: 0 0 1.6em 1.6em;
	list-style-type: square;
}
.blogroll li li a {
	font-weight: normal;
}
.blogroll ul li a img {
	margin-right: 0.3em;
}

/*-Month list-*/
ul#monthList {
	font-weight: bold;
}
ul#monthList ul {
	margin: 0 0 1.6em 1.6em;
}
ul#monthList li li {
	font-weight: normal;
}
ul#monthList li.year {
	cursor: pointer;
}
ul#monthList ul {
	display: none;
}
ul#monthList ul.open {
	display: block;
}

#calendarContainer {
	text-transform: capitalize;
	margin: 0 auto;
}

/*-Calender-*/
.calendar {
	border: none;
	margin: 0 auto;
}
.calendar .weekend {
	background-color: #F1F1F1;
}
.calendar .other {
	color: silver;
}
.calendar a.exist {
	display: block;
	font-weight: bold;
	background-color: #F1F1F1;
}
.calendar td {
	vertical-align: top;
	background: white;
}

/*-Newsletter-*/
.newsletter label {
	display: block;
	margin: 0.5em 0.5em 0 0.5em;
}
.newsletter input {
	width: 30em;
}

/*-Page Load Timer-*/
.PageLoadTime {
	text-align: center;
	margin-bottom: 5px;
}

/*--Pages--*/
/*--Post view--*/
#postnavigation .PrevPost, #postnavigation .NextPost {
	display: block;
	position: relative;
	float: left;
	margin: 0 14px;
}
#postnavigation .NextPost {
	float: right;
}

/*-Related posts-*/
#relatedPosts a {
	display: block;
	margin-top: 1em;
	font-weight: bold;
}
#relatedPosts span {
	color: #666666;
}

/*-Comments-*/
#commentlist {
}
.comment {
	clear: both;
	padding-top: 11px;
	min-width: 25em;
}
.comment .date {
	float: right;
	margin-bottom: 1px;
	color: #666666;
}
.comment .author {
	float: left;
	margin-bottom: 1px;
	font-weight: bold;
}
.comment .content {
	clear: both;
	margin: 0;
	border: 1px dashed silver;
	padding: 5px;
	background-color: #FFFFCC;
	overflow: auto;
}
.self .content {
	background-color: #E0EAEF;
}
.comment .content .Controls {
	display: block;
	float: right;
	margin: 5px 0 0 5px;
	font-size: 0.7692307692307692em;
	line-height: normal;
}
.comment-replies {
	clear: both;
	padding-left: 16px;
	background: transparent url(../Images/Reply-Arrow.gif) no-repeat left top;
}
.comment-replies .comment {
}
#cancelReply {
	margin-bottom: 10px;
}
#addcomment {
	font-weight: bold;
}
.comment cite {
	font-family: Monospace;
	font-style: normal;
}
.comment img.flag {
}
#commentCompose {
	width: 42em;
	position: relative;
}
.commentForm label {
	display: block;
	margin: 0.5em 0.5em 0 0.5em;
}
.commentForm input, .commentForm select {
	width: 35em;
	margin-right: 0.3em;
}
.commentForm textarea {
	height: 15em;
	width: 35em;
}
#commentMenu {
	margin: 0;
	padding: 0;
}
#commentMenu li {
	position: relative;
	float: left;
	top: 2px;
	margin: 0;
	border: 1px solid silver;
	border-bottom: transparent;
	margin-right: 5px;
	padding: 3px 8px;
	cursor: pointer;
	list-style: none;
	background: #d8d8d8;
}
#commentMenu li.selected {
	background: white;
	border-bottom: 1px solid white;
}
#commentPreview {
	display: none;
	min-height: 150px;
}
.success {
	color: green;
	font-weight: bold;
}
.commentForm .bbcode {
	position: absolute;
	top: 0px;
	right: 0;
	padding: 3px;
}
.bbcode a {
	margin: 1px;
	padding: 1px 3px 1px 3px;
	background: #fff;
	border: 1px solid #ccc;
}

/*--Archive--*/
#archive h2 {
	border-bottom: 1px solid silver;
	font-size: 1.2em;
}
#archive h2 img {
	margin-right: 3px;
}
#archive ul {
	list-style-type: square;
	margin: 0 1em;
	padding: 1em;
}
#archive ul li {
	margin-right: 2em;
}
#archive table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1em;
}
#archive table td {
	border-bottom: 1px solid #D8D8D8;
	padding: 0.3em 0;
	text-align: center;
}

/*--Contact page--*/
#contact label {
	display: block;
	padding-top: 5px;
}
#contact input.field {
	display: block;
	width: 20em;
}
#contact .Submit {
	display: block;
	position: relative;
	margin: 1em auto 0 auto;
	width: 10em;
}
#contact textarea {
	display: block;
	margin: 0;
	width: 75%;
	height: 15em;
	overflow: auto;
}

/*--Login--*/
.loginbox {
	margin: 0 auto;
}
.loginbox input {
	margin: 0.3em;
}

/*--Search--*/
#searchpage {
	margin-bottom: 1em;
}
#searchpage input#q {
	width: 30em;
}
#searchpage input {
	margin: 0.3em;
}
#searchpage input#comment {
	clear: both;
}
.searchresult {
	margin-bottom: 2em;
}
.searchresult a {
	font-weight: bold;
}
.searchresult span.text {
	display: block;
	clear: both;
	margin: 0.3em 0;
	padding: 0;
}
.searchresult span.type {
	display: block;
}
.searchresult span.url {
	color: Gray;
}
.searchpage ul.paging {
	list-style-type: none;
	margin: 0;
	margin-bottom: 2em;
	padding: 0;
}
.searchpage ul.paging li {
	display: inline;
	border: 1px solid gray;
	background: #f1f1f1;
	margin-right: 0.5em;
}
.searchpage ul.paging li a {
	padding: 0.5em 0.8em;
}
.searchpage ul.paging li.active {
	background: #f1f1f1;
	border: 1px solid black;
}

/*--Syntax highlighter--*/
.code {
	font-size: 1.2em;
	color: #000000;
	font-family: Consolas, "Courier New" , Courier, Monospace;
	background-color: #F1F1F1;
	line-height: normal;
}
.code p {
	padding: 0.5em;
}
.code .rem {
	color: #008000;
}
.code .kwrd {
	color: #0000ff;
}
.code .str {
	color: #006080;
}
.code .op {
	color: #0000c0;
}
.code .preproc {
	color: #0000ff;
}
.code .asp {
	background-color: #ffff00;
}
.code .html {
	color: #800000;
}
.code .attr {
	color: #ff0000;
}
.code .alt {
	background-color: #f4f4f4;
}
.code .lnum {
	color: #606060;
}

/*--XFN tags--*/
div.post .text a[rel] {
	background-repeat: no-repeat;
	background-position: right center;
}
div.post .text a[rel="me"] {
	background-image: url('../Images/xfn/me.gif');
}

/*-------- [ These should cascade to pick the correct icon for the contact ]--*/
/*-------- [ Normal contacts ]--*/
div.post .text a[rel~="contact"], div.post .text a[rel~="acquaintance"], div.post .text a[rel~="friend"] {
	background-image: url('../Images/xfn/contact.gif');
	padding-right: 1.1em;
}
/*-------- [ Normal contacts you've met ]--*/
div.post .text a[rel~="contact"][rel~="met"], div.post .text a[rel~="acquaintance"][rel~="met"], div.post .text a[rel~="friend"][rel~="met"] {
	background-image: url('../Images/xfn/contactMet.gif');
	padding-right: 1.1em;
}
/*-------- [ Colleague and co worker icon more important than contact ]--*/
div.post .text a[rel~="colleague"], div.post .text a[rel~="co-worker"] {
	background-image: url('../Images/xfn/colleague.gif');
	padding-right: 1.1em;
}
/*-------- [ Colleague and co worker icon when met ]--*/
div.post .text a[rel~="colleague"][rel~="met"], div.post .text a[rel~="co-worker"][rel~="met"] {
	background-image: url('../Images/xfn/colleagueMet.gif');
	padding-right: 1.1em;
}
/*-------- [ Sweethearts are more important than work!!! ]--*/
div.post .text a[rel~="muse"], div.post .text a[rel~="crush"], div.post .text a[rel~="date"], a[rel~="sweetheart"] {
	background-image: url('../Images/xfn/sweet.gif');
	padding-right: 1.1em;
}
/*-------- [ ...and if youve met them thats even better ]--*/
div.post .text a[rel~="muse"][rel~="met"], div.post .text a[rel~="crush"][rel~="met"], div.post .text a[rel~="date"][rel~="met"], div.post .text a[rel~="sweetheart"][rel~="met"] {
	background-image: url('../Images/xfn/sweetMet.gif');
	padding-right: 1.1em;
}
