@charset "UTF-8";

/* 

OUTLINE  -----------------------------------------------------------------------------------------------

- CSS RESET, CLEARFIX, & UTILITY CLASSES
- BASE BLOCK ELEMENTS & GLOBAL STYLES
- PAGE HEADER
- PAGE CONTENT


COLOR PALETTE  -----------------------------------------------------------------------------------------

#000000 Black (Background)
#b4b3b3 Light Gray (Body Text)
#ffffff White (Headings)
#9e2926 Red (Headings, Menus, Links, and Button Highlights)


*/



/* @group CSS RESET & CLEARFIX, & UTILITY CLASSES  ------------------------------------------------------------------*/


html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header, 
hgroup, menu, nav, section, menu,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

article, aside, figure, footer, header, hgroup, nav, section {display: block;}          

table { border-collapse:collapse; border-spacing:0; }  /* (NOTE: tables still need cellspacing="0" in the markup) */
html { overflow-y: scroll; }  /* Add this in to always generate vertical scrolls (and avoid page shift on centered layouts) */
html { -webkit-font-smoothing: antialiased; }  /* Cleaner typography in Safari/Chrome */

:focus, a:active, a:selected	{ outline: 0; border: 0; ie-dummy: expression(this.hideFocus=true); }  /* Gets rid of broswer generated outlines around elements */
a:active, a:selected, a:visited { border: none; outline: none; -moz-outline-style: none }  /* Remove dotted line around selected elements */



/* @end */
/* @group BASE BLOCK ELEMENTS & GLOBAL STYLES ------------------------------------------------------------------*/

html {
  font-family: "Helvetica Condensed Bold", Helvetica, Arial, sans-serif;
  font-size: 100%; 
}

body { 
  margin: 0;
  padding: 0;
  color: #b4b3b3;
  background: #000;
}


#wrapper2 {
	position: relative;
	width: 960px;
	min-height: 528px; /* height of bg image */
	margin: 60px auto;
	padding: 0 15px;
	background: url(/Chuck-Bartell-website.jpg) no-repeat 0 0;}

/* @end */
/* @group PAGE HEADER  ----------------------------------------------------------------------------------------*/



#page-header2 {
	position: relative;
	top: 455px;
	background-color:#9E2926;
}

a#show-link {
  position: absolute;
  top: 0;
  right: 550px;
}




/* @end */
/* @group PAGE CONTENT  ----------------------------------------------------------------------------------------*/


#content { 
  position: relative;
}

/* All general content-based text styles */
																					
h1 {
  font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
  font-weight: 800;
	font-size: 22px;
	line-height: 28px;
	padding: 0;
	margin: 0 0 20px;
	color: #fff;
}


h2 {
	font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
	font-weight: 800;
	font-size: 18px;
	line-height: 20px;
	padding: 0;
	margin: 0 0 13px;
	color: #9e2926;
	letter-spacing: .03em;
}

h3 {
	font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	padding: 0;
	margin: 0 0 18px 0;
	color: #9e2926;
}

h4 {
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	letter-spacing: .03em;
	padding: 0;
	margin: 0 0 6px 0;
	color: #fff;
}

h5 {
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	letter-spacing: .03em;
	padding: 0;
	margin: 0 0 6px 0;
	color: #b4b3b3;
}

p {
	font-weight: 400;
	font-size: 13px;
	line-height: 20px;
	margin: 0 0 20px 0;
}

small {
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
  margin: 0 0 10px 0;
}

ul {
 	list-style-type: none;
	padding: 0 0 0 8px;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-size: 13px;
	line-height: 20px;
}

/* Topics: Need to do text as an image to match supplied layout */
ul#topics {
  position: relative;
  top: 87px;
  left: -8px;
  width: 582px;
  height: 473px;
  text-indent: -50000px;
  background: url(../images/txt-topics.gif) no-repeat;
}
ul#topics li {
  display: none;
}

ul li {
	margin: 0 0 8px 0;
	padding-left: 12px;
}

ul li ul    { margin-top: 6px; } 	/* extra spacing for nested <ul>s */
ul li ul li { margin: 0 0 6px 0; } /* Slightly tighter for nested <ul>s */

ol {
 	list-style-type: decimal;
	padding: 0 0 0 4px;
	margin: 0 0 15px 5px;
	font-weight: 400;
	font-size: 13px;
	line-height: 20px;
}

ol li {
	margin: 8px 0 4px 21px;
	padding-left: 0;
}

th, td {
	font-weight: 400;
	font-size: 13px;
	line-height: 20px;
}

hr { 
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #b4b3b3;
	margin: 1.7em 0 1.6em 0;
	padding:0
}

sup {
  font-size: xx-small;
  vertical-align: top;
}


/* Link Styles */

a:link		{ color: #fff; text-decoration: none; }
a:visited { color: #fff; text-decoration: none; }
a:hover	  { color: #fff; text-decoration: underline; }
a:active	{ color: #fff; text-decoration: underline; }


/* Selection Highlight Styles */

::-moz-selection {
  color: #fff;
  background: #9e2926;
}
::selection { 
  color: #fff;
  background: #9e2926;
}


/* Global button styles */

a.button {
	padding: 3px 7px;
	margin: 0;
	font: 800 14px/14px "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
	font: 800 14px/14px Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;
	color: #9E2926;
	background: #000;
}
a.button:link		{ color: #fff; text-decoration: none; }
a.button:visited	{ color: #fff; text-decoration: none; }
a.button:hover,
a.button:active	{ 
  color: #000;
  text-decoration: none;
  background: #fff;
}

/* @end */