/* 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:#663300; 
  font-family: Arial, Verdana, sans-serif;
  font-size: 86%; /*leave this...it sets the overall size of your fonts.  AJ had it at 93%; changed to small then to 86%*/
  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: #CC9966;
  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: disc;
  padding-left: 30px;
  margin-left: 20px;
  }
   
  li.custom {
  background: url(http://www.love-of-roses.com/images/bullet2.gif) left center no-repeat; 
  padding-left: 20px;
  margin-bottom: 10px;
  
   }
   
  /* this area below is for your  Link-text and headings. 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: #660000; 
  text-decoration: underline;
  }
  
  a:hover { font-family: Arial, Verdana, sans-serif;
  font-size: 100%; 
  color: #996600;
  }
  
  a:visited { font-family: Arial, Verdana, sans-serif;
  font-size: 100%; 
  color: #990000;
  }
  
  h1 { font-family: Arial, Verdana, sans-serif; font-size: 200%;  color: #000; text-align:center;}
  h2 { font-family: Arial, Verdana, sans-serif; font-size: 150%;  color: #000; text-align:center;}
  h3 { font-family: Arial, Verdana, sans-serif; font-size: 125%;  color: #000; text-align:left;}
  
  
  /* 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; 
  Background color of SBI nav bar #b9ad9f*/
  
  td.logo {
  background-color:#FFCC33;
  font-size: 100%; 
  }
  
  td.headerbg {
  background-color:#FFCC33;
   font-size: 93%; 
  }
  
  td.spacerbg {
  background-color:#CC9966;
  font-size: 93%;  
  }
  
  td.contentbg {
  background-color:#fff;
  border-left: 1px solid #cccccc;
  border-right: 1px solid  #cccccc;
  border-top: none;
  border-bottom: 1px solid  #cccccc;
  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:#CC9966;
  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:transparent; 
  color:#330000;
  width: auto;
  padding: 15px 2px 5px 1px 
  
  }
  
/* This is for small text, blue*/
  .stl {
  font-family: Arial, Verdana, sans-serif;
  background-color:transparent; 
  font-size: 85%; 
  color:#333366; 
  
  
  }
  
    /* This is for small text, blue, centered*/
  .stb {
  font-family: Arial, Verdana, sans-serif;
  background-color:transparent; 
  font-size: 85%; 
  color:#333366; 
  text-align:center;
  
  } 
    
  /* 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;
  } 
  
/* the following are font definitions for the multicultural stories*/ 
.teaser {
     font-family: Verdana, Arial, Helvetica, sans-serif;
     text-decoration: none;
     font-size: 1.15em
  }

.review {
     font-family: Verdana, Arial, Helvetica, sans-serif;
     color: blue;
     text-decoration: none;
     text-align:center;
}

.story {
     font-family: "Georgia", "Times New Roman", times, serif;
     text-indent: 2em;
     text-decoration: none;
     font-size: 1.2em
}

.story2 {
     font-family: "Georgia", "Times New Roman", times, serif;     text-decoration: none;     font-size: 1.2em
}

.firstletter {
     float: left;
     font-size: 3em;
     line-height: 1;
     font-weight: bold;
     margin-right: 0.2em;
}

.photoCredit {
     font-family: Verdana, Arial, Helvetica, sans-serif;
     font-size: 9px;	color: #666666;
     text-decoration: none;
}
/*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;
}


/* 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: 10px;

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: 0px;
margin-top: 0px;
}


/* this part is for the colors of your buttons "at rest" so to speak.*/




.housebutton a {

padding: 4px;

text-decoration: none;

display: block;

color: #663300; /*this is where you change the button font color*/

background-color: transparent;

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: #990000; /*-----this is where you change the button font color, when the button is hovered over*/

background-color: #FFFFCC;

border-top:  none;

border-left: none;

border-bottom:  none;

border-right: none;

}





/*This style sheet controls how the textboxes will look
The only thing that you might want to change will be the color
of the borders. They are set at #000066 at the moment.
The background color is set to ffffff (white), however if you
decide to change it you can. Just remember, if you do, it will affect EVERY
textbox on your site. To change only one, copy and paste the class here in the style sheet,
and alter the color. Change the name also... so the new class may be called
full-width-box-blue for eg. Then the new color can be called with your new class name.
*/



/*** right column Full width box.
Change the colors to suit. The standard box has a white background, and the
box2 has a colored background ***

IE has difficulty with dashed and dotted. Dotted will show as dashed, and dashed can be dodgy anyway. 
So you are far better to use the solid property, as I have done here. At least you know you will get the same display in
every browser. Maybe Microsoft will produce a decent standards compliant browser ones day...but I doubt it*/


div.full-width-box {
   background-color: #ffffff;
	margin: 15px 0px 10px 0px;
	padding: 15px;
   border: 1px solid #000066;
	
}

div.center-box {
   width: 50%;
   background-color: #ffffff;
	margin-left:auto;
	margin-right:auto;
	padding: 15px;
   border: 1px solid #000066;
	
}

/*** full width box yellow background ***/
div.full-width-box2 {
   background-color: #ffffaa;
	margin: 15px 0px 10px 0px;
	padding: 15px;
   border: 1px solid #000066;
	
}


/*** full width box beige background for multicultural stories***/	
div.full-width-box3 {
	background-color: #FFFFCC;
	margin: 15px 0px 10px 0px;
	padding: 15px;
	border: 1px solid #006633;

}

/*** photo box for multicultural stories***/	
div.mcs-photo-box-left {
	background-color: inherit;
	margin: 0px 10px 10px 0px;
	padding: 5px;
	border: 1px solid #006633;
	float: left;
	
}

/*** left column half width box left  ***/
div.half-width-box-left {
   background-color: #ffffff;
	margin: 5px 5px 5px 5px;
	border: 1px solid #000066;
	padding: 10px;
	width: 50%;
	float: left;
	
}
/*** right column half width box right ***/
div.half-width-box-right {
   background-color: #ffffff;
	margin: 5px 5px 5px 5px;
	border: 1px solid #000066;
	padding: 10px;
	width: 50%;
	float: right;
	
}

/*** 300 width box left  ***/
div.three-hund-left {
  background-color: inherit;
	margin: 5px 5px 5px 5px;
	padding: 10px;
	width: 300px;
	float: left;
	
}
/*** 300 width box right ***/
div.three-hund-right {
  background-color: inherit;
	margin: 5px 5px 5px 5px;
	padding: 10px;
	width: 300px;
	float: right;
	
}
/*** left column half width blue box left  ***/
div.half-width-blue-left {
   background-color: #CCCCCC;
	margin: 5px 5px 5px 5px;
	border: 1px solid #000066;
	padding: 10px;
	width: 50%;
	float: left;
	
}
/*** right column half width blue box right ***/
div.half-width-blue-right {
   background-color: #CCCCCC;
	margin: 5px 5px 5px 5px;
	border: 1px solid #000066;
	padding: 10px;
	width: 50%;
	float: right;
	
}

div.small-box-blue-left {
  background-color: #CCCCCC;
	margin: 5px 5px 5px 5px;
	border: 1px solid #000066;
	padding: 10px;
	width: 150px;
	float: left;
	
}

div.small-box-blue-right {
  background-color: #CCCCCC;
	margin: 5px 5px 5px 5px;
	border: 1px solid #000066;
	padding: 10px;
	width: 150px;
	float: right;
	
}


/* the border of the image inside your half width textbox can be changed.
Its set to #5F8B8C at the moment. You can also change the solid
to either dashed or dotted if you want to*/

/*** Picture inside the text ***/
.img-float-left {
	float: left;
	padding: 0px;
	margin-right: 10px;
	border: 1px solid #663300;
}
.img-float-right {
	float: right;
	padding: 0px;
	margin-left: 10px;
	border: 1px solid #663300;
}
.img-center {
	padding: 0px;
	margin: 10 px;
	border: 1px solid  #663300;
	display: block; 
  margin-left: auto; 
  margin-right: auto; 
}

/*** Picture inside the text no border ***/
.img-float-left-no-border {
	float: left;
	padding: 0px;
	margin-right: 10px;
	border: 0px;
}
.img-float-right-no-border {
	float: right;
	padding: 0px;
	margin-left: 10px;
	border: 0px;
}	
.img-center-no-border {
	padding: 0px;
	margin: 10 px;
	border: 0px;
	display: block; 
  margin-left: auto; 
  margin-right: auto; 
}
/*** Picture inside the text no border transparent backgroun ***/
.img-float-left-no-border {
	float: left;
	padding: 0px;
	margin-right: 10px;
	border: 0px;
}
.img-float-right-no-border {
	float: right;
	padding: 0px;
	margin-left: 10px;
	border: 0px;
}	
.img-center-trans-no-border {
	padding: 0px;
	margin: 10 px;
	border: 0px;
	display: block; 
  margin-left: auto; 
  margin-right: auto; 
  background-color: transparent; 
}

/*** Clearing of a float ***/
div.clear {
	clear: both;
	width: 100%;
	height: 1px;
}


