/*This is my attempt to create a style sheet to correspond to MacTech's style sheet.  The idea is simple:  for my CR site, some folks can't do .pdf!  This way, I can reformat an article written with the MacTech styles as an HTML document -- and not lose any formatting!Wish me luck!! */

/*Body background has to be white; it's supposed to be a Word document, after all ...*/

body {
	background-color: white;
/*	margin: 10px 10px 10px 20px; */
width:  85%;
margin-right: auto;
margin-left:  auto; 
	}
	
/*Had to add some margins in there; these came from this article:  http://andrew-turner.com/screencasts/shorthand-css-margins  ... note that the numbers are as follows:  top, right, bottom, left */	

/*Some paragraph definitions ....*/

p.section {

font-family:helvetica, verdana, san-serif;
font-variant:  small-caps;
font-size: 12pt;
font-weight: bold;
line-height: .1px;
color:#111111;

}

p.author {

font-family: palatino, bookman, serif;
font-size:  12pt;
font-style: italic;
line-height: .1px;
color: #111111;
}

p.title {

font-family: palatino, bookman, serif;
font-size:  24pt;
line-height: .1px;
color: #111111;
}

/*Subtitle.*/ 

p.subhead {

font-family: palatino, bookman, serif;
font-size:  12pt;
font-style: italic;
line-height: .1px;
color: #111111;
}

/*For the occasional "Hot Tip(tm)":  Red text, bold, flush left.*/

p.hot {

font-family: palatino, bookman, serif;
font-size:  12pt;
font-weight: bold;
line-height: 1.5px;
color: red;
}


/*Wish to keep the main body's .css definitions compatible with the MacTech.css ones, so ...:  Red text, bold, flush left.*  Be sure to convert all "hot" references to "note" when found! */

p.note {

font-family: palatino, bookman, serif;
font-size:  12pt;
font-weight: bold;
line-height: 1.5px;
color: red;
}

p.body {

font-family: palatino, bookman, serif;
font-size:  12pt;
text-indent: 5%;
color: #111111;
}

/*Bold text, centered.*/

p.submajor {
font-family: palatino, bookman, serif;
font-size:  12pt;
font-weight: bold;
font-variant:  small-caps;
text-align: center;
color: #111111;
}

/*Bold text, flush left.*/

p.subminor {
font-family: palatino, bookman, serif;
font-size:  12pt;
font-weight: bold;
color: #111111;
}

p.picture {
text-align:  center;
border: 0;
}

p.caption {

font-family: palatino, bookman, serif;
font-size:  12pt;
text-align: center;
font-style: italic;
color: #111111;
}

p.foot {

font-family: palatino, bookman, serif;
font-size:  9pt;
color: #111111;
}

p.mono {

font-family: Courier, Courier New, Monaco, monospace;
font-size:  14px;
color: #111111;
}

/*  This one is p.mono with an indent:  */

p.new_mono {

font-family: Courier, Courier New, Monaco, monospace;
font-size:  14px;
color: #111111;
text-indent: 5%
}

/*For my intro to a guest writer's article ....*/

p.intro {

font-family: palatino, bookman, serif;
font-size:  12pt;
font-style: italic;
font-weight: bold;
text-indent: 5%;
color: #111111;

}

/*Ending symbol, Linda Rough style ....*/

p.end {

font-family: palatino, bookman, serif;
font-size: 15px;
color: #111111;
text-align: center
}


/* About box ...?!*/

p.about {
	
font-family: palatino, bookman, serif;
font-size:  12pt;
font-style: italic;
line-height: .1px;
color: #111111;
}

/*One for the table ....*/

td {

font-family: palatino, bookman, serif;
font-size:  12pt;
text-indent: 5%;
color: #111111;
}

/*Got Lists?*/

ul {
list-style-type: disc;
font-family: palatino, bookman, serif;
font-size:  12pt;
color: #111111;
}


ol {
list-style-type: decimal;
font-family: palatino, bookman, serif;
font-size:  12pt;
color: #111111;
}
h1, h2, h3, h4, h5{

color:#999999; text-align:center}  /* gray text, centered */
body { font-family:verdana, arial;
 }
 
 /* For the occasional time when I include Q&A in an article .....  */
 
 p.QA {

font-family: Courier, Courier New, Monaco, monospace;
font-size:  15pt;
text-indent: 10%;
color: #111111;
}


/*Link control ....*/

a:active {
color : lime;
font-weight : bold;
text-decoration : none;
}
a:link {
color : #996995;
font-weight : bold;
text-decoration : none;
}
a:visited {
color : fuchsia;

font-weight : bold;
text-decoration : none;
} 
a:hover {
color : #ffff00;
font-weight : bold;
text-decoration : none;
}


/*For a footnote, use a 200 pixel horizontal line and the Author class. */