@charset "utf-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #4E5869;
	background-image:url(../clipart/theme_northbay/tabbkgnd.jpg);
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

h1 {
	text-align:center;
	font-family:"Times New Roman", Times, serif;
	font-size: 30px;
	color:#663333;	
}
h2 {
	text-align:center;
	font-family:"Times New Roman", Times, serif;	
	font-size: 24px;
	color:#663333;	
}
h3 {
	text-align:center;
	font-family:"Times New Roman", Times, serif;	
	font-size: 20px;
	color:#663333;	
}
h4 {
	text-align:center;
	font-family:"Times New Roman", Times, serif;	
	font-size: 16px;
	color:#663333;	
}
h5 {
	text-align:center;
	font-family:"Times New Roman", Times, serif;	
	font-size: 14px;
	color:#663333;	
}
h6 {
	text-align:center;
	font-family:"Times New Roman", Times, serif;	
	font-size: 12px;
	color:#663333;	
}

hr {
	margin-top:1.6em;
	margin-bottom:1.6em;
} /* used to set the hr line element to have same padding as a standard paragraph */

p {
	text-indent:1.25em;
	margin:1.6em, 1.6em;
} /* p is used to set the default paragraph in the html, here I have set it to have the first line put in some, and also the above and below text margins  */

p.indented {
	margin:0px;
	padding:0px;
	text-indent:1.25em;
} /* this used to help get a break function inside the default paragraph in the html where the first line is put in some, had to set the above and below text margins to zero to gain that look */

p.indented_firstline {
	margin-top:1.6em;
	margin-left:0em;
	margin-right:0em;
	margin-bottom:0em;
	padding:0px;
	text-indent:1.25em;
} /* this is to fix up a side effect of the above rule, p.indented, as that set all text below each other, and I needed a normal paragrah line, so this rule gives me that look by putting a margin below the text as in a normal paragrahp, while keeping the zero margin above the text and also the the first line put in some  */

p.indented_lastline {
	margin-top:0em;
	margin-left:0em;
	margin-right:0em;
	margin-bottom:1.6em;
	padding:0px;
	text-indent:1.25em;
} /* this is to fix up a side effect of the above rule, p.indented, as that set all text below each other, and I needed a normal paragrah line, so this rule gives me that look by putting a margin below the text as in a normal paragrahp, while keeping the zero margin above the text and also the the first line put in some  */

p.date {
	margin-top:1.6em;
	margin-bottom:0em;
	margin-left:0em;
	margin-right:0em;	
	text-indent:1.3em;
	font-size:larger;
	font-weight:bold;
	text-decoration:underline;
} /* this is used to format a date when writing for instance a project log.  */





a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#414958;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #4E5869;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 98%;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}

/* ~~the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo~~ */
.header {
	background-color: #C8DCB4;
	font-size:xx-large;
	font-weight:bold;
	text-align:center;
	width:520px;
	margin-left:-260px;
	margin-right:0;
	margin-bottom:0;
	margin-top:0;
	border-style:solid;
	border-width:1px;
	border-radius:25px;
	position:relative;
	left:50%;
}

.nav { /* this class is used to help generate centered navigation links horizontal on the screen */
	position:relative;
	left:50%;
	margin-left:-50%;
	margin-right:0;
	margin-bottom:0;
	margin-top:0;
	width:100%;
	text-align:center;
	font-size:small;
	font-weight:bolder;
	padding-bottom:9px;
	padding-top:9px;
	padding-left:0;
	padding-right:0;			
}

#toplft { /* this ID is used to place a link, or image at top left of the screen */
	position:fixed;
	top:3px;
	left:3px;
}
#toprght { /* this ID is used to place a link, or image at top right of the screen */
	position:absolute;
	top:3px;
	right:3px;
}


.LastUpdate {
	float:left;
	text-align:left;
	padding:8px, 8px;
	font-size:9px;
	font-weight:bold;
	color:#990000;		
}


/* ~~ This is the layout information. ~~ */
.content {
	padding-left:15px;
	padding-right:15px;
	padding-top:10px;
	padding-bottom:5px;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The footer ~~ */
.footer {
	position:relative;
	bottom:1%;
	left:50%;
	margin-left:-260px;
	margin-right:0;
	margin-bottom:0;
	margin-top:9px;
	width:520px;
	padding-left:10px;
	padding-right:10px;
	padding-top:10px;
	padding-bottom:5px;
	background-color: #FAE6C8;
	border-style:outset;
	border-width:1px;
	border-radius:9px;
	text-align:center;
	font-size:x-small;
}

/* ~~ miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}

.fltright-150 { /* this class can be used to float an element right with a max width of 150px. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
	text-align:center;
	font-size:9px;
	padding:3px;
	max-width:150px;	
}

.fltleft-150 { /* this class can be used to float an element left with a max width of 150px */
	float: left;
	margin-right: 8px;
	text-align:center;
	font-size:9px;
	padding:3px;
	max-width:150px;	
}

.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

ul.lst_checkm {
	list-style-position:inside;
	list-style-image:url(../clipart/bull_checkm.gif);
	padding-left:3em;
} /* this is used to setup a special icon/bullet to be used everytime I have a list using the Class lst_checkm - in this case a icon of a checkmark */
