/* 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:#cfd1e6; 
font-family: Arial, Verdana, sans-serif;
font-size: 93%;
color: #000;
margin:auto;
padding:0;
text-align:center;
}





/* you have 3 more classes of horizontal rule, as well as the default version Change the attributes to 
get the look you want. The 3 classes are solid, dotted, and dashed. Add class="dashed" to your hr
tag on an HTML page, to get the dashed version of the hr. Change the colors to suit. */

.solid {	
   border-top: 1px solid #B35542;
   border-bottom: hidden;
   border-left: hidden; 
   border-right: hidden;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	
	
}

.dashed {
  border-bottom:1px dashed #B35542;
   border-top:hidden;
   border-left:hidden;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	
	
}

.dotted {
	border-bottom:1px dotted #B35542;
   border-top:hidden;
   border-left:hidden;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

/* this is a custom class for your bold tag. You can alter anything here, or remove
it completely to get the default bold*/
b{

color: #330066;
font-family: Arial;
font-size: 100%;
font-style: italic;
}


/* 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*/
 
ul {
list-style-type: none;
padding-left: 0;
margin-left: 10px;
}
 
li.custom {
background: url(https://www.alcoholism-and-drug-addiction-help.com/images/grey-bullet.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: #000099; text-decoration: underline;
}

a:hover { font-family: Arial, Verdana, sans-serif;
 font-size: 100%; 
 background-color: #B35542;
 color: #fff;
 }


h1 { font-family: Arial, Verdana, sans-serif; font-size: 140%;  color: #434663}
h2 { font-family: Arial, Verdana, sans-serif; font-size: 120%;  color: #434663}
h3 { font-family: Arial, Verdana, sans-serif; font-size: 110%;  color: #434663}
h4 { font-family: Arial, Verdana, sans-serif; font-size:  95%;  color: #434663}


/* 
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 1050px, change both occurences here
to 1050px 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!!*/

.main-table {
width:expression(document.body.clientWidth > 1052? "1050px": "auto" );
margin-top: 0px;
margin-right: auto;
margin-bottom: 0px;
margin-left: auto;
}


/*as we are using a table based layout, all your text is within a table. So this is the area to change the
size, color and font family .*/
table {
font-family: Arial, Verdana, sans-serif;
font-size: 93%;
color: #000;
padding-top: 0px;
padding-right: 2px;
padding-bottom: 2px;
padding-left: 2px;
}

/* if you change the fonts and sizes, etc above, make this the same, but leave the weight as bold
Its just here to give you the option of a bold type font, without the extra size.*/

.note {
font-family: Arial, Verdana, sans-serif;
background-color:#fff; 
font-size: 77%;
color: #666666;
font-weight: bold;
font-style: italic;
} 


/* 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.top-nav {
height: 30px;
background-color: none;
background-image: url('https://www.alcoholism-and-drug-addiction-help.com/images/ada-topnav.jpg');
background-repeat: repeat;

}

td.headerbg {
background-color:#fff;
background-image: 
url('https://www.alcoholism-and-drug-addiction-help.com/images/cp-backimage-1.jpg');
background-repeat: repeat;
}

td.spacerbg {
background-color:#fff;
background-image: url('https://www.alcoholism-and-drug-addiction-help.com/images/spacer.gif');
background-repeat: repeat-y;
width: 15%;
height: 1px; 
}

td.contentbg {
background-color:#fff; 
}

td.rightbg {
font-family: Arial, Verdana, sans-serif;
background-color:#fff; 
background-image: url('https://www.alcoholism-and-drug-addiction-help.com/images/right-column.gif');
background-repeat: repeat-y;
background-position: right; 
font-size: 93%;
color: #000;
width: 20%;
}

td.leftbg {
background-color:#fff; 
background-image: url('https://www.alcoholism-and-drug-addiction-help.com/images/left-column.gif');
background-repeat: repeat-y;
padding-left: 5px;
font-size: 93%;
margin-left: 3px;

}

td.footerbg {
font-size: 86%;
background-color:#ffffff; 
}

td.bottom {
font-size: 86%;
background-color: 434633;
color: #434663;
background-image: 
url('https://www.alcoholism-and-drug-addiction-help.com/images/footer-image.gif');
background-repeat: repeat;

}


/* This is for the heading background color....your H1, H2, and H3 tags*/
.hbg{
background-color: #434663;
color:#fff;
width: auto;
z-axis: 1;
}

/* This is for the heading background color....your H1, H2, and H3 tags*/
.dhbg{
background-color:#434663;
color:#fff;
font-size: 100%;
font-weight: bold;
text-align: center;
width: auto;
border:none;
padding: 3px;
}


/* this is for the horizontal nav*/

#nav ul { 
float: left; 
list-style: none; 
width: 100%; 
padding: 0; margin: 0 0 0 0px; 
height: 30px; 
display: inline;
 text-transform: uppercase;
 }
 #nav ul li { 
display: inline; 
margin: 0; padding: 0;
 } #nav ul li a { 
display: block; 
float: left; 
width: auto; 
margin: 0; 
padding: 0 15px; 
color: #fff;
font: bold 12px/30px Arial, Geneva, sans-serif; 
	text-transform: uppercase; 
text-decoration: none; 
letter-spacing: 1px; 
} #nav ul li a:hover, 
#nav ul li a:active { 

color: #F8E692; 
font: bold 12px/30px Arial, Geneva, sans-serif; 
}  

/*this is for the header slogan*/
.slogan {
	position: absolute;
	margin: 0;
	padding: 0;
	font: bold 20px 'Comic Sans MS', Arial, Sans-serif;
	text-transform: none;
	color: #ff6600; 
	left: 250px;
	top: 15px;
	
	clear: both;
}

/*this is for the header slogan*/
p.image{
	position: absolute;
	margin: 0;
	padding: 0;
	left: 350px;
	top: 10px;
	
	clear: both;
}

/* 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;
} 
/*this stylesheet is for you navigation panel*/

#navigator {

}

.housebutton {

}

.housebutton a {
font-size: 90%;

}

.housebutton a:hover {
font-size: 90%;

}


/* 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: none;

width: 140px;

margin-top: auto;

margin-left: 2px;

margin-right: auto;

padding: 5px;

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;
}


/* this part is for the colors of your buttons "at rest" so to speak. Notice the
top/left, and the bottom/right are colored in pairs? If you change the colors, you will need to do the same, to
maintain the illusion of 3D buttons. Make one set of sides a slightly darker shade than the other pair.
This will give the button a 3D look*/

.housebutton a {
font-family: Arial,sans-serif;
font-size: 85%;

padding: 4px;

text-decoration: none;

display: block;

color: #fff; /*this is where you change the button font color*/

background-color: none;

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. Same thing as above, but this time
the top/left colors should SWAP with the bottom/right, to give the correct effect.
Also the background color should go a shade darker, to make it seem as if it were now below the 
level of the page, and is not getting any light on it*/

.housebutton a:hover {

font-family: Arial,sans-serif;
font-size: 85%;

color: #fff; /*-----this is where you change the button font color, when the button is hovered over*/

background-color: #B35542;

border-top: none;

border-left: none;

border-bottom: none;

border-right:none;

}




