/* style.css by H.J. Davey 02/2007 For use with the html file "tutorial.html"
/* Normalizes margin, padding */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, th, td 
{ margin : 0; padding : 0; }

/* Normalizes font-size for headers */
h1,h2,h3,h4,h5,h6 { font-size : 100%; }

/* Removes list-style from lists */
ol,ul { list-style : none; }

/* Normalizes font-style and font-weight to normal */
address, caption, cite, code, dfn, em, strong, th, var
{ font-style : normal; font-weight : normal; }

/* Removes list-style from lists */
table { border-collapse : collapse; border-spacing : 0; }

/* Removes border from fieldset and img */
fieldset,img { border : 0; }

/* Left-aligns text in caption and th */
caption,th { text-align : left; }

/* Removes quotation marks from q */
q:before, q:after { content :''; }

/* This sets the font weight to start with.*/

h1,h2,h3,h4,p,a,li{
	font-weight:normal;
}
/* Try insofar as possible to set all font sizes here. 
----- use em rather than px to allow more flexable font size changes in the browser */
h1{font-size: 2.0em;}
h2{font-size: 1.0em;}
h3{font-size: 0.8em;}
h4{font-size: 0.7em;}
p{font-size: 0.8em;}
li{font-size: 0.8em;}


html{
	/* This sets the font styles for the entire html file.*/
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}
body{
	width:770px; /* this sets the overall page width to a fixed 770px */
	margin-left: 10px; */
	text-align:left;
	background:#CCCCFF; /* the sets the background color */
	color: Black; /* this sets the type color for this div and it's children
	 */
}	

/* ===== BRANDING ===== */
div#branding{
	height:155px;
	background: url(../images/thebanner2.jpeg) no-repeat bottom;
	}
	
/***************************************************
  Header Menu
 ***************************************************/

#menu {/* this 'box' holds the menu */
   text-align: left; /* all the menu items are left aligned in the 'box' */
}
#menu ul li {
	width: auto; /* lets the menu item buttons be sized as needed for menu title*/
/*width: 3em; */   /* if un-commented will set menu buttons to fixed width */
  display: inline; /* make this a horizontal menu */
  float: left; /* holds the menu 'box' to the left edge of the body div. Not really needed here.*/
  list-style: none; /* no decoration on menu items.*/
  text-align: center; /* place the menu titles in the center of the button.*/
  text-transform: uppercase;
  font-size: 0.6em; 
  padding: 0 1em; /* spacing between menu items  experiment with this*/
  color:Black; /* font color for the menu items */
}
#menu ul li a:hover{
 color: Red; /* color of menu items when mouse-over */
}
	/* ===== Navigation-side (Vertical orientation - defaults to block) ===== */
	
	/* ===== Navigation-side ===== */

#navigation ul {
	list-style: none;
	margin: 6px 0;
}
#navigation li {
	background-color: #ccccff;
	text-align: right;
	margin: 3px auto;
	font-size: 13px;
	padding:5px;
	width: 80%;
}
#navigation a{
	text-decoration: none;
}
#navigation a:hover {
	color: Black;
	border-left-color: #ccccff;
	border-left-width: 2px;
	border-right-color: #ccccff;
	border-right-width: 1px;
	background-color: #ffffff;
}
/* ===== CONTENT ===== */

div#content-main{
	float:left;
	width:520px;
	margin:0 4px 10px 0;
	}
div#content-sub{
	float:right;
	width:242px;
	margin:0 0 10px 4px;
	}
	
div#content-sub{
	background: #ccccff;
	}
div#content-main h2{
	background: #ccccff;
	}
div#content-sub h2{
	background: #ccccff;
	}
div#content-main h2, div#content-sub h2{
	/*text-transform:uppercase;*/
	padding: 8px 0 8px;
	text-align:center;
	letter-spacing: 0.1em;
	font-size: 1.0em;
	color: White;
	}
	div#content-main h3, div#content-sub h3{
	text-transform:uppercase;
	padding: 8px 0;
	text-align:center;
	letter-spacing: 0.1em;
	background: #ccccff;
	font-size: 0.8em;
	color: Black;
	
	margin: 0 40px;
	/*padding: 0 30px;*/
	}
div#content-main p,div#content-sub p{
	margin:0;
	padding:5px 8px 15px;
	/*font-size: 0.7em;*/
	}
/* ===== comments ===== */
div.comments div{
	background: #ccccff;
	padding: 4px 3px;
	margin-bottom:10px;
	}
div.comments div.odd{
	background:#ccccff;
}
div.comments p{
	padding: 10px;
	margin:0;
}		
	/* =====================================================
div#content-main-title div,div#content-sub-title div{
	border:2px solid #1FA8EF;
	}	====================================================*/	
/* ===== Site Info ===== */
div#site-info{
	clear:both;
	width: 100%;
	background: #ccccff;
	padding:15px 0;
	text-align:center;
	}
div#site-info p{
	/*font-size: 0.6em;*/
}	
/* ===== navbar ===== */
#navbar {

	margin-top: 10px;
}
/* ===== Breadcrumbs ===== */
#breadcrumbs {
	width: auto;
	height: .8em;
	font-size: .8em;
	color: Black;
}
/* ===== Journal post template styles ===== */

#post-style {
  float: left;
  width: 460px;
  margin: 20px 0 0 0;
  padding: 0 0 0 1em;
  line-height: 1.5em;
  background-color: #ccccff;
  word-wrap: break-word; 
  overflow: hidden;    
  }
h2.date-header {
  margin-top: 0;
  padding-left: 14px;
  font-size: 90%;
  color: #ff9933;
  }
.post-text h3 {
  margin-top: 0;
  font: normal bold 130% 'Lucida Grande','Trebuchet MS';
  letter-spacing: -1px;
  color: #ff6633;
  }
.post-text {
  margin: 0 0 1.5em 0;
  padding: 0 0 1.5em 14px;
  border-bottom: 1px solid #ddd;
  }
.post-text h3 a,
.post-text h3 a:visited { 
  color: #ff6633;
  text-decoration: none;
 }
.post-footer {
  margin: 0;
  padding: 0 0 0 14px;
  font-size: 88%;
  color: #999999;
  }

.comment {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    position: relative;
    padding: 10px;
    overflow: hidden;
}
.commentAlt {
    background-color: #f4f4f4;
}
.commentAuthor {
    background-color: #ffc;    
}
.commentMe {
    background-color: #ccf !important;
    padding-top: 5px;
}
.commentNum {
    font-family: Arial, sans-serif;
    font-size: 50px;
    line-height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    color: #f2f2f2;
    font-weight: bold;
    letter-spacing: -4px;
    z-index: 1;
}
.commentAlt .commentNum {
    color: #eaeaea;
}
.commentMe .commentNum {
    color: #b0b0ff;
}
.commentAuthor .commentNum {
    color: #f3f3bb;
}
.commentTitle {
    position: relative;
    z-index: 10;
    color: #999;
}
.commentTitle span {
    text-transform: uppercase;
    font-size: 86%;
}
.commentTitle strong {
    color: #693;
    font-size: 110%;
    text-transform: none;
    font-weight: normal;
    margin-right: 6px;
}
.comment .content {
    position: relative;
    z-index: 10;
}
 
.nl_summaryPost h3 {
border-bottom: 1px solid #CCCCCC;
margin: 0px !important;
padding: 5px !important;
color: black;
}
 
.nl_summaryPost .nl_info {
background-color: #F8F8F8;
padding: 5px !important;
font-size: 0.8em;
color: black;
}
 
.nl_link {
font-size: 76%;
text-align: right;
}
 
.nl_paging {
    border-top: 1px solid #ccc;
    padding: 10px; 
    font-size: 86%;
    color: #618100;
}
#nl_pages #nl_currentpage {
    border: 1px solid #618100;
    padding: 1px 5px 2px; 
    margin-right: 1px;
    background-color: #9c0; 
    color: #fff;
} 
#nl_pages .nl_off {
    border: 1px solid #ccc;
    padding: 1px 5px 2px; 
    margin-right: 1px;
    color: #ccc;
}
#nl_pages a, #nl_pages a:link, #nl_pages a:visited {
    border: 1px solid #9c0; 
    padding: 1px 5px 2px; 
    margin-right: 1px; 
    text-decoration: none !important; 
    color: #618100;
} 
#nl_pages a:hover {
    background-color: #fff;
    color: #000;
}
#nl_archivelist ul {
    list-style-type: none; 
    margin-left: 15px; 
    padding-left: 0;
}
#nl_archivelist ul ul{
    list-style-type: square;
    margin-left: 35px;
} 
#nl_archivelist .nl_month {
    font-weight: bold;
}
/* ========== End of CSS Styling ========== */

