/* 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. So just leave this section alone.*/

body {
background-color:#44443f; 
font-family: Verdana, Georgia, Arial;
font-size: 13px;
color: #000;
}





/* 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-bottom:1px solid #5f8b8c;
   border-top:hidden;
   border-left:hidden;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	
	
}

.dashed {
  border-bottom:1px dashed #5F8B8C;
   border-top:hidden;
   border-left:hidden;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	
	
}

.dotted {
	border-bottom:2px dotted #5F8B8C;
   border-top:hidden;
   border-left:hidden;
	width: 90%;
	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: #000000;
font-family: Verdana;
font-size: 13px;
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(http://www.small-biz-marketing-tips.com/images/bullet3.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: Verdana, Georgia, Arial; font-size: 13px; color: #330099; text-decoration: underline}

a:hover { font-family: Verdana, Georgia, Arial;
 font-size: 13px; 
 font-style: bold;
 background-color: #ffffff;
 color: #810541;
 }

h1 { font-family: Verdana, Georgia, Arial; font-size: 20px;  color: #000000}
h2 { font-family: Verdana, Georgia, Arial; font-size: 15px;  color: #000000}
h3 { font-family: Verdana, Georgia, Arial; font-size: 13px;  color: #000000}



/* 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: Verdana, Georgia, Arial;
font-size: 13px;
border: 1px solid #595454;
background-color:#ffffff; 
color: #000000;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
padding-top: 2px;
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: Verdana, Georgia, Arial;
background-color:#fff; 
font-size: 11px;
color: #666666;
font-weight: bold;
font-style: italic;
} 

/* This is for the heading background color....your H1, H2, and H3 tags*/
.hbg{
background-color:#000066; 
color:#fff;
width: auto;
z-axis: 1;
}
