@charset "utf-8";

/* -------- color guide ----------
#1a347d : Lapis Lazuli background blue
#111232 : Dark Navy blue in header
#c00    : Black letters (dark green)
#fff    : White letter (hover)
#cc3300 : Red letters
#445da0 : Blue lines
#ff66ff : Pink letters (hover)
#99ccff : Paragraph letter color
*/

/* to jump to a specific section search for the unique character pair at the front of each TOC section 
	<<<tip, highlight the special character and use the shortcut for Find Selection Cntr/Cmd + Shift + G >> */

/* ----- Style sheet TOC ----------------
	^1 Global constants
	^2 CSS reset
	^3 Element Tag Selector set-up
	^4 HTML5 Global set-up
	^5 Header
	^6 Content <div>
	  ^6a aside
	  ^6b Navigation - not on this page. See nav.css page.
	  ^6c Section - main content
	^7 Footer
	^8 Text Styles
	^9 Functional classes
*/

/* ^1 --------------------------- global constants -------------------------*/
@font-face {
  font-family: "DragonwickFGRegular";
  src: url(fonts/dragwifg-webfont.ttf) format("truetype");
}

/* @font-face {
  font-family: 'DragonwickFGRegular';
  src: url('fonts/dragwifg-webfont.eot');
  src: local('!'),
  	url('fonts/dragwifg-webfont.woff') format ('woff'),
	urt('fonts/dragwifg-webfont.ttf') format('truetype');
} */

html, body {
	margin: 0px;
	padding: 0px;
}
body {
	text-align:center;
	font: 62.5% Georgia, "Times New Roman", Times, serif;
	background-image:url(images/band.png);
	background-repeat:repeat-x; 
	background-color:#1a347d;
	margin-top: 0px;
}
header, section, footer, aside, nav, article, figure {
	display: block;
}

/* ^2 --------------- CSS reset ---------------- */
address, blockquote, div, ul, ol, li {
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. 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 blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}

/* ^3 ---------- Element/tag selector baselines -------- */
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;
}
a:link { /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
	color: #FFF;
	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: #FFF;
	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;
	color: #C00;
}

/* ^4 ---- HTML5 Global blocks ----- */
#wrapper {
	position:relative;
	width: 1000px;
	background-color:#1a347d;
	margin: 0 auto;
}

/* ^5 ------ Detail rules for header ~~ 

1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the block itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the block element and place a second block element within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar blocks could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.
*/

header {
	widows:1000px;
	height:140px;
	background-color:#111232;
}
header h1 {
	font: normal 2.8em 'DragonwickFGRegular', Verdana, Geneva, sans-serif;
	text-align:right;
	color:#CC3300;
	margin:0;
	padding:30px 300px 0 0px; 
}
header h2 {
	font: normal 1.8em Verdana, Geneva, sans-serif normal;
	text-align:right;
	color:#CC3300;
	margin:0 260px 0 0;
	padding:0 55px 0 0; 
}
#banner_pic {
	float:left;
	margin:0;
	padding:0;
}
.bigRed {
	height:2px;
	background-color:red;
	margin-bottom:2px;
}
.littleRed {
	height:1px;
	background-color:red;
}


/* ^6 Content container for sidebar and main section ----- */
#content {
	position:relative;
	overflow:auto;
	height:400px;
	margin:0;
	padding:0;
}
/* ^6a the aside sidebar that contains nav and info ----*/
aside {
	float: left;
	width: 180px;
	margin:0;
	padding:0;
}

#blueline {
	position:absolute;
	margin-left:100px;
	left: 100px;
	top: 10px;
	width: 1.5px;
	height: 260px;
	z-index:1;
	background:#445DA0;
	}
	
/* ^6c Main content area -----*/
section {
	float: right;
	width: 780px;
	padding: 0px 0px;
}
#author_list {
	margin:10px 0 0 75px;
	padding:0;
}
.caption {
	
	margin:5px 0px;
	padding:0;
}
.list {
	margin:5px 0 5px 0;
	padding:0;
	color:#fff;	
}

/* ^7 ---------- The footer --------------- */

#wire { /* footer separator line rule  */
	color:#FFF;
	margin:0 10px 5px 10px;
	width: 100%;
	height: 1.5px;
	background:#445DA0;
}

footer {
	position: relative;
	width:1000px;
	margin:10px;
	background-color:#1a347d;
}

.box1 {
	float:left;
	width:550px;
	height: 130px;
	margin:0;
	padding:0;
}

.box2 {
	float:right;
	width:400px;
	height: 130px;
	margin:0;
	padding:0;
}

.riff {
	float:right;
	padding-left:20px;
	
}


/* ^8 ---------- Text Styes ------------*/
h1 {
	font-family: 'DragonwickFGRegular', Verdana, Geneva, sans-serif;
	font-size: 2.0em;
	font-style: normal;
	color: #CC3300;
	text-align: center;
	margin:10px 0px 5px 0px;
	padding: 0px;
}
h2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1.2em;
	font-style: normal;
	color: #CC3300;
	text-align:center;
	margin:5px 0px 5px 20px;
	padding: 0px;
}

/* Text Styles */
.pageName1{
	font:22px georgia;
	color: #CC3300;
	line-height:30px;
	letter-spacing:0.1em;
	margin:5px 0px 0px 0px;
	}
	
.pageName2{
	font:22px georgia;
	color: #CC3300;
	line-height:30px;
	letter-spacing:0.1em;
	margin:40px 0px 0px 0px;
	}
	
.bodyText {
	font:normal 1.4em arial;
	color:#99CCFF;
	letter-spacing:0.1em;
	text-align:justify;
	margin:-5px 0px 0px 0px;
	}
	
.blockText {
	font:normal 1.4em arial;
	color:#99CCFF;
	letter-spacing:0.1em;
	text-align:left;
	margin:0px 0px 0px 0px;
	}
	
.centerText {
	font:normal 1.4em arial;
	color:#99CCFF;
	letter-spacing:0.1em;
	text-align:center;
	margin:0px 0px 0px 0px;
	}
	
.logo {
	font:24px georgia;
	color: #CC3300;
	line-height:24px;
	letter-spacing:.4em;
	margin:44px 0px 0px 5px;
	background-color:#111232;
	}

.tagline {
	font:18px georgia;
	color: #CC3300;
	background-color:#131234;
	line-height:18px;
	letter-spacing:.4em;
	margin:0px 0px 0px 5px;
	}

/* Book Covers and text area */	
	
.subHeader {
	font:16px georgia;
	color: #CC3300;
	font-weight:bold;
	letter-spacing:.1em;
	line-height:16px;
	}	
	
.sidebarHeader {
	font:14px georgia;
	color: #99CCFF;
	font-weight:bold;
	letter-spacing:.1em;
	line-height:16px;
	padding: 0px 4px 10px 4px;
	text-align:center;
	}	
	
.smallText {
	font:12px arial;
	color:#99CCFF;
	padding: 1px 1px 1px 1px;
	text-align:center;
	}

.medText {
	font:14px arial;
	color:#CC3300;
	padding: 1px 1px 1px 1px;
	text-align:center;
	}

/* ^9 Functional classes ----- */
.clear {
	clear:both;
}
.fltLeft {
	float:left;
}
.fltRight {
	float:right;
}

