/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	background-color: #000000;
	background-image: url(blue-stripes.gif);
}
/* Commonly used to style page titles. */
h1 {
	color: #777890;
	font-size: 16px;
	font-weight: bold;
	line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
	color: #FFFFFF;
	font-size: 14px;
	font-weight: normal;
	line-height: 16px;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	font-weight: bold;
}
p {
	font-family: Arial, Helvetica, sans-serif;
	color: #777890;
	font-size: 16px;
	padding-left: 5px;
	margin-left: 5px;
	line-height: normal;
	padding-right: 5px;
}


/* Sets the style for visited links. */
a:visited {
  color: #FFFFFF;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #6699FF;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #6699FF;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #383644;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #0E0F14;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 900px;
	border: thin solid #333333;
}
#outerWrapper #header {
	border-bottom: solid 1px #767a7f; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold;
	line-height: 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 85px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 131px;
	background-image: url(blueish-stripe.gif);
	background-repeat: repeat;
}
.fltright {
	float: right;
}


#outerWrapper #contentWrapper {
	background-color: #0E0F14;
}
#outerWrapper #contentWrapper #leftColumn1 {
	float: left; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 150px;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
	background-repeat: repeat;
	background-color: #000000;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	padding: 10px;
	margin-right: 7px;
}
#outerWrapper #contentWrapper #rightColumn1 {
	background-color: #000000; /* Sets the left border properties for an element using shorthand notation */
	float: right; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
	padding-top: 8px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 6px;
	background-repeat: repeat-x;
	text-align: right;
	background-position: center top;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #FFFFFF;
	border-left-color: #9ea3aa;
	margin-left: 5px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  margin: 0 170px 0 170px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}
.divider {
	background-image: url(blue-stripes.gif);
	background-repeat: repeat;
	height: 15px;
	width: 140px;
	border: thin solid #02203A;
	margin: 1px;
	padding: 1px;
	float: none;
	background-position: top;
}

#outerWrapper #footer {
	padding: 10px;
	background-repeat: repeat;
	height: 50px;
	background-color: #000000;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #333333;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #333333;
	background-image: url(blueish-stripe.gif);
}
#content-top-img {
	background-image: url(black-blue-stripes.gif);
	background-repeat: repeat-x;
	background-position: center top;
}
.stripe-background {
	background-image: url(black-blue-stripes.gif);
	background-repeat: repeat;
	background-position: center top;

}
/*This is the main navigation container in the left column*/
.navcontainer {
	width: 150px;
	position: inherit;
	left: 5px;
	top: 236px;
	padding: 0px 0px 35px;
	border-top: 0px none;
	border-right: 0px none;
	border-bottom: 0px none;
	border-left: 0px none;
	display: block;
	height: 435px;
	list-style-type: none;
	background-image: none;
	margin-top: 1px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}


.navcontainer a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #003366;
	text-decoration: none;
	background-image: none;
	display: block;
	padding: 3px;
	width: 135px;
	border: 1px solid #02203A;
	margin: 5px 5px 5px 2px;
	height: 20px;
	text-indent: 5px;
}
.navcontainer a:link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
	
}
.navcontainer a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	color: #FFFFFF;
}
.navcontainer a:active {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
}
.navcontainer a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
	border: thin solid #FFFFFF;
	background-image: url(blue-stripes.gif);
	background-repeat: repeat;
	background-position: top;
}
h3 {
	color: #FFFFFF;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	font-family: "Times New Roman", Times, serif;
}
/*this divider is the symbol that divides the quotes and the picture of JD. */
.divider-rc {
	background-image: url(black-blue-stripes.gif);
	background-repeat: repeat;
	height: 25px;
	width: 175px;
	border: thin ridge #0089C5;
	float: none;
	padding-top: 1px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 1px;
	margin-top: 1px;
	margin-right: 1px;
	margin-bottom: 1px;
	margin-left: 4px;
}
/*This style is for the larger header fonts within the conent box*/
.header {
	color: #FFFFFF;
	font-size: 24px;
	font-weight: bold;
	text-indent: 5px;
	padding: 5px;
	line-height: 14px;
}
.larger-font {
	color: #FFFFFF;
	font-size: 16px;
	font-weight: bold;
	line-height: normal;
	text-align: left;
}
.white {
	color: #FFFFFF;
	font-size: 16px;
	font-weight: normal;
	font-style: italic;
}
.colum1 {
	color: #FFFFFF;
	font-size: 18px;
	font-weight: normal;
	font-style: italic;
	line-height: 20px;
}
.quotes {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #FFFFFF;
	font-size: 12px;
	font-style: italic;
}
.content-writing {
	font-family: Arial, Helvetica, sans-serif;
	color: #777890;
	font-size: 14px;
	text-indent: 5px;
	font-weight: bold;
	margin-left: 5px;
	border-bottom-color: #777890;
}

#blueblock{
	width: 150px;
	margin-bottom: 1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #000000;
	color: #333;
	background-image: none;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 1px;
	padding-left: 0;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
}

* html #blueblock{ /*IE 6 only */
w\idth: 147px; /*Box model bug: 180px minus all left and right paddings for #blueblock */
}

#blueblock ul{
list-style: none;
margin: 0;
padding: 0;
border: none;
}

#blueblock li {
	margin: 0;
	border-bottom-width: 1px;
	border-bottom-style: none;
	border-bottom-color: #90bade;
}

#blueblock li a{
	display: block;
	padding: 5px 5px 5px 8px;
	background-color: #000000;
	color: #fff;
	text-decoration: none;
	width: 100%;
	border-right-width: 10px;
	border-left-width: 5px;
	border-right-style: none;
	border-left-style: solid;
	border-right-color: #0E0F14;
	border-left-color: #02203A;
}

html>body #blueblock li a{ /*Non IE6 width*/
width: auto;
}

#blueblock li a:hover{
	color: #777890;
	background-image: url(blueish-stripe.gif);
	background-repeat: repeat;
	border-right-width: 10px;
	border-left-width: 5px;
	border-right-style: none;
	border-left-style: solid;
	border-right-color: #777890;
	border-left-color: #777890;
}
h4 {
	font-family: Arial, Helvetica, sans-serif;
	color: #777890;
	font-size: 15px;
	padding-left: 5px;
	line-height: 1.3;
}
.quotesname {
	font-family: Arial, Helvetica, sans-serif;
	color: #777890;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
}
.whitesmallerheader {
	color: #FFFFFF;
	font-size: 18px;
	font-weight: bold;
}
.business {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #777890;
	
}


.business a {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #717289;
	
}
.business a:link {
	font-family: "Times New Roman", Times, serif;
	font-size: 16px;
	color: #777890;
	
	
}
.business a:visited {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #777890;
	
}
.business a:active {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #777890;
	
}
.business a:hover {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #3399FF;
	
}
