/* this first section sets the background color....thats the color surround OUTSIDE
your main table. The same with the fonts, this applies only to any text you place outside the
main content table. Which will probably be nothing. The max-width is for Firefox, to let it know how wide you
want your page to be. This will be the maximum width of your main content table.
If you set it to perhaps 1050px, and view it on a 1024x768 monitor, it will appear full width. But to someone 
viewing on a 1200x1024 monitor, it will appear as 1050 wide, with your choice of a colored background either
 side, taking up the extra 150px. (75px each side)*/

body {
max-width: 1050px;
background-color:#660000; 
/* background-image: url(../images/bkgrd-image.jpg);
background-repeat: repeat; */
font-family: Arial, Verdana,  sans-serif;
font-size: 93%; /*leave this...it sets the overall size of your fonts.*/
color: #000;
margin:auto;
padding:0;
text-align:center;
}

/* 
Notice the width:expression part? That's for internet explorer, which doesnt understand max-width commands.
So this works WITH the max-width at the top of this page. If you change that to say 1250px, change it here
to 1250px as well. Otherwise Those using IE wont get the width constraint....their page would expand indefinitely.
Firefox will ignore this part, and IE will ignore the max-width part....you need both of them.
BUT DONT TOUCH THIS PART BELOW UNLESS YOU HAVE READ THE PDF THAT EXPLAINS HOW, AND YOU ARE SURE YOU UNDERSTAND IT!!*/

.max-width {
width:expression(document.body.clientWidth > 1052? "1050px": "auto" );
}

/*the font size is 100% of the body font setting So while it says 100%, that is actually 100% of 93%. No need to touch this if you dont want to */
table {
font-size:100%; /*leave this font size, change the individual cells below, if the default size isnt to your liking*/
color:inherit;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
}


/*class to set thinner horizontal rule. Change color if you like.*/
hr{
border: 0;
color:inherit;
background-color: #999900;
height: 1px;
width: 80%;
text-align: center;
}



/* this is a custom class for using graphics as bullets.  Upload a custom graphic to your 
graphics library in the usual way. Then replace my URL with your own. 
Note there are no speech marks around the URL Change center to top, if you want bullets to line up 
with the top line of yr text*/
 
ul {
list-style-type: none;
padding-left: 0;
margin-left: 10px;
}


  
li.custom {
background: url(http://www.gingerbread-house-heaven.com/image-files/kelbullet.jpg) left center no-repeat; 
padding-left: 20px;
margin-bottom: 10px;

 }

li.nobullet {
background: none;
padding-left: 20px;
margin-bottom: 10px;

 }
 
/* this area below is for your  Link-text and headings (Kelly:  not NavBar, interior Links.) You can change the font type and size, 
the color of each of them as well as the a:hover, which is the text for a link, once the pointer passes over it*/

a { font-family: Arial, Verdana, sans-serif; 
font-size: 100%; color: #003399; 
text-decoration: underline;
}

a:hover { font-family: Arial, Verdana, sans-serif;
 font-size: 100%; 
 background-color: #666600;
 color: #fff;
 }




h1 { font-family: Arial, Verdana, sans-serif; font-size: 150%;  color: #000; text-align:center;}
h2 { font-family: Arial, Verdana, sans-serif; font-size: 116%;  color: #000; text-align:center;}
h3 { font-family: Arial, Verdana, sans-serif; font-size: 108%;  color: #660000; text-align:center;}
h4 { font-family: Arial, Verdana, sans-serif; font-size: 108%;  color: #660000; text-align:left;}




/* -- Header Navbar:  Kelly Added for Header Template Links -- */

#Header {
position:relative;
}

#Header .ExtraNav  {
font-size: 85%;

}

#Header .ExtraNav ul {
	margin: 5px;
	padding: 0;
	list-style: none;
	line-height: normal;
}

#Header .ExtraNav  li {
	margin: 5px;
	padding: 0;
	display: inline;
}


#Header .ExtraNav a:link {
color: #ffffcc;
text-decoration:none;
}

#Header .ExtraNav a:visited {
color: #ffffcc;
}

#Header .ExtraNav a:hover {
color: #ffffcc;
text-decoration:underline;
}




/* Below, is the background colors for your table cells. originally, they were on the actual page, so why
move them to the stylesheet? Well, if you decide to do a site-wide color scheme change, you now change here, 
rather than on every page. A big improvement. Also, the less styling on the page, the better.

Suppose you prefer to have a tiled image rather than a solid color?
Replace the background-color:#fff;  with this, and upload your image to the graphics library....
background-image: 
url('http://www.your-site.com/images/your-image.gif');
background-repeat: repeat; */

td.logo {
background-color:#ffffcc;
font-size: 100%; 
}

td.headerbg {
background-color:#fff;
/*<!-- background-image: url(../image-files/gingerbread-header.jpg); */
/* background-image: url(../image-files/header-logo-on-top.jpg); */
background-image: url(../image-files/header-tall.jpg);
background-repeat: no-repeat;
} 

td.spacerbg {
background-color:#ffffcc;
 font-size: 93%;  
}
/*  Kelly:  Border colors used to be gray #cccccc */
td.contentbg {
background-color:#ffffcc;
border-left: 1px solid #999900;
border-right: 1px solid  #999900;
border-top: 1px solid  #999900;
border-bottom: 1px solid  #999900;
font-size: 93%; 
color:inherit;
padding:10px;
}

td.rightbg {
font-family: Arial, Verdana, sans-serif;
font-size: 86%;
color:inherit;
background-color:#ffffcc; 
padding:5px;
}

td.leftbg {
font-size: 86%;
color:inherit;
margin-left: 5px;
background-color:#ffffcc;
padding:5px; 
}

td.footerbg {
font-size: 86%;
color:inherit;
background-color:#ffffcc;
padding:5px; 
}

/* This is for the heading background color....your H1, H2, and H3 tags*/
.hbg{
background-color:#003300; 
/*background-color:#003300; */
color:#fff;
/* padding: 4px; */
width: auto;

}


/* information below is to remove the link styling for anchor links.
Just leave this as it is....it works fine, and shouldn't be modified */
a.jumplink{
text-decoration: none;
font-size: 100%; 
background-color: transparent;
color: #000;
}

a:hover.jumplink  {
text-decoration: none;
font-size: 100%; 
background-color: transparent;
color: #000;
} 


/* Kelly Added for Top Horizontal NavBar */

.Caption {
font-size: 85%;
font-weight: bold;
display: block;
}



/* Kelly Added for Classy Block Quotes */

blockquote {
  font: 14px/20px italic Times, serif;
  padding: 8px;
  background-color: #faebbc;
  border-top: 1px solid #e1cc89;
  border-bottom: 1px solid #e1cc89;
  margin: 5px;
  background-image: url(images/openquote1.gif);
  background-position: top left;
  background-repeat: no-repeat;
  text-indent: 23px;
  }
  blockquote span {
     display: block;
     background-image: url(images/closequote1.gif);
     background-repeat: no-repeat;
     background-position: bottom right;
   }

/*this stylesheet is for you navigation panel*/

#navigator {

}

.housebutton {
line-height: 90%;
}

.housebutton a {
font-size: 93%;
font-family:  Verdana, sans-serif;
}

.housebutton a:hover {
font-size: 93%;
font-family:  Verdana, sans-serif;
}

.sectionbutton {
line-height: 90%;
}

.sectionbutton a {
font-size: 108%;
font-family:  Arial, Verdana, sans-serif; 
}

.sectionbutton a:hover {
font-size: 108%;
font-family:  Arial, Verdana, sans-serif;
}

/* this part below is for the color on the background, surrounding the buttons. Change the color, and the 
border, if you like. For the border, you can use solid, dashed, or dotted, for different border styles*/

#navigator {

background-color: transparent;

border: transparent;


width: auto;

margin-top: auto;

margin-left: 5px;

margin-right: auto;

padding: 2px;

text-align: left;


}

/* want more space between your buttons? just increase the margins
from 1px. Font weight can be bold if you prefer.*/

.housebutton {

font-weight: bold;
text-align: left;
margin-bottom: 2px;
margin-top: 2px;
}

.sectionbutton {

font-weight: bold;
text-align: center;
margin-bottom: 2px;
margin-top: 2px;
}

/* this part is for the colors of your buttons "at rest" so to speak.*/

.housebutton a {
padding: 4px;
text-decoration: none;
display: block;
color: #26410a; /*this is where you change the button font color*/
background-color: transparent;
border-top: none;
border-left: none;
border-bottom: none;
border-right: none;
}

.sectionbutton a {
padding: 4px;
text-decoration: none;
display: block;
color: #ffffcc; /*this is where you change the button font color*/
font-size: 108%; 
background-color:#003300; 
border-top: none;
border-left: none;
border-bottom: none;
border-right: none;
}


/*this part is how the buttons look, once the pointer passes over them. */


.housebutton a:hover {
color: #000000; /*-----this is where you change the button font color, when the button is hovered over - Was 333300*/
background-color: #736435;
border-top:  none;
border-left: none;
border-bottom:  none;
border-right: none;
}

.sectionbutton a:hover {
color: #000000; /*-----this is where you change the button font color, when the button is hovered over - Was 333300*/
background-color: #736435;
border-top:  none;
border-left: none;
border-bottom:  none;
border-right: none;
}


