@charset "utf-8";
/* CSS Document */
/* bobfergusonsongs.com standard page css layout */

/* 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;
  font-size: 100%;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	border-color: #FFFFFF
}
/* 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 {
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	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; /* Centers the page content container in IE 5 browsers. */
	background-image: url(images/grad-back-blue-black-1-mini.jpg);
	background-repeat: repeat-x;
	background-color: #000000;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
}
/* Commonly used to style page titles. */
h1 {
	color: #0EC0E7;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: bold;
	line-height: 14px;
	text-decoration: underline;
}
/* Commonly used to style section titles. */
h2 {
	color: #0EC0E7;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: bold;
	line-height: normal;
	text-decoration: underline;
}
/* Sets the style for the h3 header. */
h3 {
  color: #0EC0E7;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-style: normal;
  line-height: normal;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
  color: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #0EC0E7;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #0EC0E7;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #0EC0E7;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: bold;
  text-decoration: underline;
}
/* 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 {
	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: 830px;
}
#outerWrapper #header {
	font-size: 18px;
	font-weight: bold;
	line-height: 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image: url(images/BF-darksky-header6.jpg);
	height: 181px;
	margin-top: 10px;
	border: 5px double #FFFFFF;
}
#outerWrapper #topNavigation {
	border-bottom: solid 1px #666; /* Sets the bottom border properties for an element using shorthand notation */
	height: 25px;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	color: #FFFFFF;
	vertical-align: middle;
}
#outerWrapper #contentWrapper {
	overflow: hidden;
}
#outerWrapper #contentWrapper #contentHeader {
	margin-left: 220px;
	padding-left: 10px;
	
}
#outerWrapper #contentWrapper2 {
	overflow: hidden;
}
#outerWrapper #contentWrapper #leftColumn1 {
	border-right: 1px solid #666; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 0px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 200px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
}
#outerWrapper #contentWrapper #leftColumn2 {
	border-right: solid 1px #666; /* Alternative column width. Use with content2. Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 0px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 250px;
}
#outerWrapper #contentWrapper #leftColumn3 {
	border-right: solid 1px #666; /* Alternative column width. Use with content3. Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 0px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 200px;
}
#outerWrapper #contentWrapper #leftColumn4 {
	border-right: solid 1px #666; /* Alternative column width. Use with content4. Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 0px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 200px;
}
/* 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 0px 0 220px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #rightColumn1 { /* contains the settings for the right column */
	float: right;
	padding: 10px;
	width: 300px;
	margin-top: 18px;
}
#rightColumn1 a:link, #rightColumn1 a:visited, #rightColumn1 a:active{ /* change right column link properties */
  color: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: bold;
  text-decoration: none;
}
#rightColumn1 a:hover{ /* change right column link properties */
  color: #0EC0E7;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: bold;
  text-decoration: none;
}
#outerWrapper #contentWrapper #content #contactForm {
	margin: 0 0px 0 10px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

/* 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 #content2 {
	margin: 0 0px 0 270px; /* Alternative content width. Use with leftcolumn2. Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
/* 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 #content3 {
	margin: 10 0px 20 10px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper2 #content3 #flashcontent { /* holder for main content with full sized flash area */
	height: 500px;
	overflow: hidden;
	border: medium solid #FFFFFF;
	margin-top: 10px;
}
/* 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 #content4 {
	margin: 0px 0px 0 220px; /* Alternative content width. Use with leftcolumn4. Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 265px;
	float: none;
}
/* 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. */
#content4 a:link, #content4 a:visited, #content4 a:active{ /* content4 link properties */
  color: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: bold;
  text-decoration: none;
}
#content4 a:hover{ /* content4 link properties */
  color: #0EC0E7;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: bold;
  text-decoration: none;
}
/* 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 #content5 {
	padding: 0px 10px 10px 180px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #666;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 220px;
	text-align: left;
}
/* 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 #content6 {
	padding: 0px 10px 10px 100px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #666;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 220px;
	text-align: left;
}
#outerWrapper #footer {
	border-top: solid 1px #666; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	font-size: 12px;
	font-weight: bold;
	text-align: center;
}
/* end of css code page */
