<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
CSS-file for Strictly CSS three column layout 2006
http://www.strictlycss.com
Developed by Eivind Savio
*/
* /*Set's border, padding and margin to 0 for all values*/ {
	padding: 0;
	margin: 0;
	/*border: 0;*/
}
body, html {
	color: #000;
	font-family: Verdana, Arial, Tahoma, sans-serif;
	background-color: #eee;
	text-align: center; /*** Centers the design in old IE versions ***/
	background-color:#003366;
}
body {
	font-size: 70%;
}
p {padding: 7px 0 7px 0;}
p.signature {padding-left:20px;}
p.centerme {text-align:center;}

a {color: #000099; outline: none;}
a:hover {
	color: #0000FF;
	text-decoration: none;
}
a:active {outline: none; }


h1, h2, h3, h4, h5 {
	font-weight: bold;
	padding-bottom: 5px;
}
h1 {font-size: 2em;}
h2 {font-size: 1.4em;}
h3 {font-size: 1.3em;}
h4 {
	font-size: 1.2em; 
	text-align:center; 
	color:#ff6600;
	margin:.5em 0;
}
h1 a, #header h2 {
	color: #fff;
}
.clear {
	clear: both;
}

.error, .message {
	margin:0em auto;
	width:420px;
	font-weight:bold;
	text-align:left;
	display:block;
}
.error { 
	background: #f0e4e2 url(/images/exclamation.gif) 0 7px no-repeat;
	border:1px solid #921b00;
	color: #921b00;
	padding:1em 2em 1em 4em;
}

.message {
	background: #cceec0 url(/images/notification.gif) 4px 7px no-repeat;
	border: 1px solid #2f7018;	
	padding:1em 2em 1em 5em;
	color: #2f7018;
}

.highlight {
	background: transparent url(/images/highlighter_lrg.gif) repeat-x top left;
	margin: 0 -10px 0 -5px;
	padding: 0 10px 0 5px;
}

#mainContainer {
	width: 910px;
	margin: 0 auto; /*** Centers the design ***/
	min-height: 300px;
	/*background: #FFF;*/
	text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
	margin-top:5px;
	border-top:1px solid white;
}
* html #mainContainer {
	height: 100%; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
	background: #FFF url(/images/top-grid.gif) top right repeat-y;
	position:relative;
	height:140px;
	border-top:1px solid #FFF;
	/*border:1px solid transparent;*/
	margin-top:4px;
}


#header a {text-decoration:none;}
#header a:hover {color:White;}
#header ul a:hover {color: #FFF; text-decoration:underline;}

#header h1 {
	top:0;
	left:0;
	display: block;	
	position:absolute;
	z-index: 100; 
	background: #FFF url(/images/logo.gif) 0 0 no-repeat;
	text-indent:-2000px;
	height:100px;
	width:100px;
	margin-left:10px;
}
#header h1 a {
	display:block;
}

#header h2 {
	font-family : Arial Narrow, sans-serif; 
	font-size : 20px; 
	font-style:italic;
	margin-left:300px;
	margin-top:30px;
	color : #005588;
}
#header h3 {
	margin-top:20px;
	margin-left:650px;
	font-size : 15px; 
	font-family : Arial, sans-serif; 
	color: #003366;
}


#header ul {
	list-style: none;
	font-weight:bold;
	background: transparent url(/images/nav-background.gif) 0 0 repeat-x;
	margin-top:3px;
	height:35px;
	padding-top:9px;
	font-size : 12px;
}

#header li.home {background-color:#009980;}
#header li {
	display: inline;
	padding: 0px 15px 0;
	border-left:1px solid #fff;
}
#header li.home { border:0;}

#header li a {color:#fff; text-decoration:underline;}
#header li a:hover {color:Yellow;}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
	padding-left: 165px;
	padding-right: 220px;
	background:#fff;
}
* html .outer {
}
.inner {
	width: 745px; /*** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
}
* html .inner {
	width: 100%;
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
	float: left;
	width: 680px;
	margin-left: -165px; /*** Same length as .outer padding-left but with negative value ***/
}
* html .float-wrap {
	/*** No need for hacking IE on this layout ***/
}
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#content {
	float: right;
	width: 520px;
	background: #fff;
	position: relative; /*** IE needs this  ***/
	/*border:1px solid green;*/
}
* html #content {
}
.contentWrap {
	padding: 5px;
}
.contentWrap ol, .contentWrap ul {
	margin: 3px 0 5px 35px;
}
.contentWrap li {
	padding-bottom: 2px;
}

/*************************
CENTER COLUMN
**************************/
#content h1 {
	text-align:center;
	color:#005588;	
	font: bold 2em Arial, "Verdana", sans-serif; 
	padding-top:.5em;
}
#content h2{
	text-align:center;
	color:#005588;
	font: bold 1.6em Arial, "Verdana", sans-serif; 
	padding-top:1em;
	letter-spacing:-.5px;
}

#content h3 {text-align:center;padding-top:1em;}

#content p, #content dl, #content ul, #content ol{
	font: normal 1.4em "Times", "Times New Roman", sans-serif; 
	
}
#content dl ul {font-size:1em;}

#successes div {
	width:200px; 
	float:left;
	border:1px solid #444;
	padding:1em;
	margin:1em;
	color:#444;
}


/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left {
	float: left;
	width: 150px;
	min-height: 250px;
	padding: 5px;
	position: relative; /*** IE needs this  ***/
	margin-top:10px;
}
* html #left {
	/*height: 250px;*/
	position: relative;  /*** IE needs this  ***/
	margin:0px;
}
#left ul {
	padding-bottom: 4px;
	padding-left:20px;
	text-align:left;
}
#left li {
	padding: 2px 0;
}
#left p {color:#444;}
#left div {margin:1em 0; text-align:center;}
#left img {border:0;}

/*************************
RIGHT COLUMN
**************************/
#right {
	float: right;
	width: 200px;
	/*background: #cfc;*/
	padding: 10px;
	min-height: 250px;
	position: relative; /*** IE needs this  ***/
	border-left:1px solid #009980;
	color:#444;
	margin-top:10px;

}
* html #right {
	margin-right: -220px; /*** IE gets this margin. ***/
	height: 250px;
}
#right ul {
	list-style: none;
	padding-bottom: 4px;
}
#right li {
	padding-bottom: 2px;
}
.quote {margin-bottom:10px;}

/**************************
FOOTER
**************************/
#footer {
	width: 910px;
	margin: 0 auto;
	text-align: center;
	text-align: center;
	font-size:.9em;
	background-color:#fff;
}

#footer {
	height: 120px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 30px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
	/*margin-top: -21px;*/ /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
}
#footer ul {
	list-style: none;
	font-weight:bold;
	padding-top:.4em;
}
#footer li {
	display: inline;
	padding:0 .4em;
	border-left:1px solid #fff;
}
#footer li a {
	font: normal 1em "Lucida Grande", "Verdana", sans-serif; 
}
#footer p {padding:1em 0 0;}

/**************************
ONE COLUMN
**************************/

.oneColumn #left{display:none;}
.oneColumn #right{display:none;}
.oneColumn .outer {padding:0; padding-left:5px;}
.oneColumn .inner {width:100%;}
.oneColumn .float-wrap {margin:0; width:100%;}
.oneColumn #content {float:none; margin:0 auto; width:80%;}
.oneColumn #content table { font-size:1.1em;}
.oneColumn #mainContainer {width:710px;}
.oneColumn #header {height: 55px; width:710px; background-image:none;/*border-bottom:3px solid #003366;*/}
.oneColumn #header h1 {display:none;}
.oneColumn #header h2 {text-align:center;margin: 10px 0;/*margin-top:13px; margin-left:200px;*/ font-size:1.5em;}
.oneColumn #header h3{/*display:none;*/}
.oneColumn #header ul{display:none;}
.oneColumn #footer {width:710px;}
/*
 

.oneColumn #content{border:1px solid blue; width:800px; float:inherit;}
.oneColumn .outer {padding:0; width:800px;}

#oneColum .float-wrap {width:800px; float:inherit;}*/




/*----------------------------
					 Posts
----------------------------*/
div.post {
	/*border-bottom: 1px solid #000;*/
	padding: 3px 10px;
	margin-bottom: 0;
	background-color: White;
	line-height: 17px;
	outline:0;
}

#content div.post h1 {
	margin: 1em 0 7px 0;
	position: relative;
	top: 5px;
	text-align:left;
	display:inline;
}
div.post h1 a {
	color:#000;
	text-decoration:none;
	text-align:left;
}

div.post .author {
	color: #666666;
	font-size: 10px;
	float: left;
	text-transform: capitalize;
}

div.post .pubDate {
	color: #666666;
	font-size: 10px;
	float: right;
}

div.post .text {
	margin-top: 30px;
}

div.post .text h2 {
	margin-bottom: -10px;
}

div.post .footer {
	text-align: right;
	border-top: 1px dashed silver;
	padding-top: 4px;
	padding-bottom: 2px;
}

div.post .bottom {
	margin-bottom: 45px;
	clear: both;
}

div.post .categories {
	margin-bottom: 5px;
	float: right;
}

div.post .tags {
	float: left;
	margin-bottom: 5px;
}

div.post .text a[href^="http:"] {
	background: url(../../pics/remote.gif) right top no-repeat;
	padding-right: 10px;
}

div.post p.code, div.post pre {
	line-height: 12px;
	background: #D8D8D8;
	padding: 3px;
}
div.post img {float:right;padding:2px; border:1px solid #666;}

/*----------------------------
			Related Posts
----------------------------*/

#relatedPosts {
	background: white;
	padding: 5px 10px 10px 10px;
	border: 1px solid silver;
}

#relatedPosts h1 {
	margin: 0px;
}

#relatedPosts a {
	display: block;
	margin-top: 5px;
}

#relatedPosts span {
	color: #666666;
	text-indent: 10px;
	font-size: 10px;
}

/*----------------------------
			Social bookmarks
----------------------------*/

.bookmarks {
	float: left;
}

.bookmarks a img {
	filter: alpha(opacity=35);
	-moz-opacity: .35;
	opacity: .35;
}

.bookmarks a:hover img {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

/*----------------------------
					Comments
----------------------------*/

.comment {
	border: 1px solid silver;
	background-color: White;
	padding: 3px 10px;
	margin-bottom: 10px;
}

.comment .date {
	font-size: 10px;
	color: #666666;
	text-align: right;
	margin: 0;
	padding: 3px 0px;
	border-bottom: 1px dashed silver;
}

.comment .author {
	margin: 0;
	padding: 3px 0px;
	border-top: 1px dashed silver;
}

.self {
	border: 1px solid black;
}

.comment .gravatar {
	float: left;
	clear: both;
	margin: 5px 10px 5px 0;
}

.comment .gravatar img {
	height: 80px;
	width: 80px;
}

.comment .content {
	min-height: 85px;
	margin: 5px;
}

.comment img.flag{
	position: relative;
	top : 2px;
}

.commentForm {
	padding: 5px;
}

.commentForm label {
	float: left;
	display: block;
	width: 80px;
	margin-top: 4px;
}

.commentForm input {
	width: 300px;
}

.commentForm textarea {
	width: 100%;
	height: 150px;
}

.success{
	color:Green;
	font-weight: bold;
}

/*.commentForm #preview {
	background-color: white;
	min-height: 100px;
	border: 1px solid silver;
	padding: 5px;
	margin-bottom: 20px;
}*/

/*----------------------------
					Archive
----------------------------*/

#archive {
	background-color: White;
	border: 1px solid silver;
	padding: 10px;
}

#archive h1 {
	margin: 0;
	border-bottom: 1px dashed silver;
	padding-bottom: 9px;
}

#archive h2 {
	border-bottom: 1px solid silver;
	padding-bottom: 4px;
	font-size: 12px;
	margin-bottom: 10px;
}

#archive h2 img {
	margin-right: 3px;
}

#archive ul {
	list-style-type: square;
	margin: 0 10px;
	padding: 10px;
}

#archive ul li {
	margin-right: 20px;
}

#archive span {
	display: block;
	margin-bottom: 3px;
}

#archive span a {
	margin-left: 4px;
}

/*----------------------------
					 Search
----------------------------*/

#searchbox {
	margin-top: 3em;
	font-size: 10px;
	padding-left:10px;
}

#searchbox input {
	font-size: 10px;
}

#searchbox #searchbutton {
	margin-left: 5px;
}

#searchbox #searchfield {
	width: 100px;
}

#searchbox label {display: block; width:100px;}

/*----------------------------
			Search on search
----------------------------*/

#searchonsearch {
	background: white;
	padding: 5px 10px;
	margin-bottom: 20px;
	border: 1px solid silver;
}

#searchonsearch h3 {
	margin: 3px;
	font-size: 13px;
}

#searchonsearch ol li {
	margin: 2px 0;
}

/*----------------------------
				 Tag cloud
----------------------------*/

#tagcloud {
	margin-bottom: 10px;
	white-space: normal;
	border:1px solid red;
}

#tagcloud a {
	margin-right: 3px;
	display: inline;
	color:#eee;
}

#tagcloud a.biggest {
	font-size: 1.4em;
}

#tagcloud a.big {
	font-size: 1.2em;
}

#tagcloud a.medium {
	font-size: 1em;
}

#tagcloud a.small {
	font-size: .8em;
}

#tagcloud a.smallest {
	font-size: .7em;
}

.termsAndConditionsBox {
	width:550px;
	height:100px;
	overflow: auto;
	border:1px solid #D3D3D3;
	font-size:.8em;
	color:#333;
	margin:0 auto;
	padding:0;
}

.termsAndConditionsBox h2, .termsAndConditionsBox p {padding:1em; margin:0;}
.termsAndConditionsBox h2 {font-size:14px;}
</pre></body></html>