@charset "utf-8";
/*----------------------------------------------*/
/* layout */
/* notes: margin and padding shorthand goes: 
2 numbers: 10px 5px; top/bottom=10px right/left=5px
3 numbers: 1px 5px 10px; top=1px right/left=5px bottom=10px 
4 numbers: 1px 5px 10px 2px; clockwise top=1px right=5px bottom=10px left=2px
*/

body {
	background-color: #000000;
	margin: 0;
	padding: 0;
}

#container {
	clear: both;
	background: #000000;
/*		border: 1; */
/*    border-color: #FFFFFF;*/
	margin: 0em 2em 2em 2em; 
}

#header {
	padding: 0 0 0em 0; 
}

#header h1{
	text-align: right;
}

#header p{
  text-align: right;
}

#nav {
  float: left;
margin: 0em 0 1em 0;
}

#nav img{
  width:60px;
  height:60px;
	padding-right:1em;
	border:0;
}

#pagedetail {
}

.title {
  text-align: left;
  margin:0em 2em 1em 0em;
}

.subtitle {
  float:left;
  text-align: left;
	width:34%;
}

#blogpost{
	width:635px;
	margin-top:1.0em;
	margin-bottom:1.0em;
	padding:1em;
	padding-bottom:3em;
	text-align:left;
	border-bottom:#ccc solid 1px;
	border-color: #666666;
	background-color: #191919;
	float:left;
}

#blogpost h3{
  padding-bottom:0.8em;
	border-bottom:#ccc solid 1px;
	border-color: #666666;
  }
  
#blogpost p{
  }
  


.description{
	width:635px;
	margin-top:0.25em;
	padding:1em;
	padding-bottom:3em;
	text-align:left;
	border-bottom-width: 1px;
	border-color: #666666;
	/*background-color: #191919;
	*/
}

.sandbag{

}

.imageset {
  float:left;
  text-align:left;
	width:1050px;
  margin:0;
}
.imgwrap {
  float:left;
  padding-right:1.5em;
}
.imgwrap img {
  width: 320px;
  height:240px;
}


#footer { 
margin:0; /*avoid margin collapse*/
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
/*	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.clearfloat { 
/* 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: 0px;
}




/*----------------------------------------------*/
/* text styles */

.headerSep {
    color:#FF6600;
}

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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: #FFFFFF;
  font-size: 62.5% /*this is a trick that resets the font sizes for the entire site so that 1.0em is the same as 10em.  so 12em = 1.2em*/
}

p, li {
	font-size: 1.2em;
	margin-top:0em;
}


h1{
	font-size: 2.2em;
	font-weight: bold;
	margin-bottom:0.2em;
}

h2{
	font-size: 2.0em;
	font-weight: bold;
	margin-bottom:0em;
}


h3{
	font-size: 1.4em;
	margin:0em;
}

h4{
	font-size: 1.2em;
	font-weight: bolder;
  margin:0em;
}

h5 {
	font-size: 1.2em;
	font-weight: bold;
  margin:0em;
}

h6 {
	font-size: 1.0em;
	margin:0em;
}

li {
	text-indent: 0em;
	list-style-position: outside;
}

.smgrey {
	font-size: 0.9em;
	font-weight: bold;
	color: #999999;
	margin:0;
}

.smgrey a{
	color: #999999;
}

.light{
  font-weight:lighter;
	font-size:smaller;
}


/*----------------------------------------------*/
/* links and images*/

a, #blogpost .title a, #blogpost .feedback a {
	color: #FFFFFF;
}
#blogpost a{
	color: #FF6600;
}
a:link {
	text-decoration:none;
}

a:visited {
	text-decoration:none;
}

a:active {
	color: #FF6600;
}
a:hover {
	color: #FF6600;
}

#blogpost a:hover {
	text-decoration:underline;
}



img {
	border: 0;
	padding: 0;
}

/*
#nav a:hover 





























{
  border:1px; 
  border-color:#FF6600;
}
*/





