@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
}

body  {
  font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
	font-size: 10pt;
	background: #EEEEEE;
	margin: 0; 
	padding: 0;
	text-align: center; 
	color: #000000;
}

a {
	color: #0033CC;
}

/* container */

#container { 
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}

#topcontainer {
	margin: 10px auto 0 auto; /* the auto margins (in conjunction with a width) center the page */
	width:950px;
	height: 14px;
	background: url(img/container_top.png) left top no-repeat;
  }
#bottomcontainer {
	margin: 0 auto 10px auto;
	width:950px;
	height: 16px;
	background: url(img/container_bottom.png) left top no-repeat;
  }

/* footer */

#footer { 
	width: 950px;  
	background: #363636;
	color: #FFFFFF;
	margin: 0 auto;
	text-align: left;
}

#footer p a {
	text-decoration: none;
	color: #FFFFFF;
}

#topfooter {
	margin: 10px auto 0 auto; 
	width:950px;
	height: 16px;
	background: url(img/footer_top.png) left top no-repeat;
  }
#bottomfooter {
	margin: 0 auto 10px auto;
	width:950px;
	height: 16px;
	background: url(img/footer_bottom.png) left top no-repeat;
  }

/* content & sidebars */


#sidebar, #footersidebar {
	float: right; 
	width: 360px; 
	padding: 0px 10px;
}

#sidebar, #footer {
	font-size: 8pt;
}

.sidebarnav a {
	text-decoration: none;
	color: #363636;
	clear: right;
	display: block;
}
.sidebarnav a:hover {
	color: #0033CC;
	text-decoration:underline;
}

.blogroll li {
	background: url(img/external.png) left 7px no-repeat;
	padding: 3px 2px 2px 16px;	
}


#content, #footercontent { 
	margin: 0; 
	padding: 0 15px; 
} 

#content, #footercontent p {
	width:500px;
}

.sidebarabout {
	clear: both;
	width: 355px;
	color: #fff;
	background: #363636;
}
.sidebarabout p {
	padding: 10px;
}
.sidebarabout a {
	text-decoration: none;
	color: #FFFFFF;
}
.sidebarabout a:hover {
	text-decoration: underline;

}

.sidebaraboutbottom {
  clear: both;
  width: 355px;
  height: 10px;
  margin-bottom:20px;
  background: url(img/about_bottom.png) left bottom no-repeat;
  }

.sidebarnav {
  width: 355px;
}

.sidebarnavleft {
 float: left;
  width: 165px;
}
.sidebarnavright {
 float: right;
  width: 165px;

}
.sidebarnav h2 {
	font-size: 12pt;
	padding: 6px 0;
}

.sidebarnav li {
	list-style: none;
}

.sidebarnav ul ul {
	margin: 0;
	border-bottom: 1px dotted #ccc;
	padding: 3px 2px 2px 0px;
	line-height: 17px;
}
.sidebarnav ul ul li {
	padding: 3px 2px 2px 16px;	

}
.blogroll li {
	background: url(img/external.png) left 7px no-repeat;
}

.tagcloud a {
	clear:none;
	display:inline;
}


.pagetitle {
	font-size: 28pt;
	padding-top: 20px;
	padding-bottom: 10px;
}
.pagetitle a {
	text-decoration:none;
	color: #000000;
}
.pagetitle a:hover {
	text-decoration:underline;
}

.pagetagline {
	color: #363636;
	font-size:10pt;
	padding-bottom: 40px;
	
}

.post {
	padding: 20px 0;
}

.post h2 a {
	color: #000000;
	font-size:14pt;
	text-decoration:none;
}

.post h2 a:hover {
	text-decoration:underline;
}

.postmeta {
	font-size:8pt;
}

#content img {
	border: 1px solid #AAAAAA;
	margin: -1px;
}

#content p {
	padding: 10px 0;
	color: #444444;
}




.clearfloat { 
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}






.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}