/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxx Base Stylesheet xxxxxxxxxxxxxxxxxxxxxxxxxxxx
This is my basic stylesheet that contains resets and styles I tend to use on all websites. No site-specific styles should be put here -- this is a sheet that can be picked up and copied to the top of the cascade on any website.
   xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx  xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

@-ms-viewport {
	zoom: 1.0;
	width: auto;
}
@-o-viewport {
	zoom: 1.0;
	width: auto;
}
@viewport {
	zoom: 1.0;
	width: auto;
}

body {
	font-family: sans-serif;
}

h1 {
	font-size: 2em;
}
h2 {
	font-size: 1.8em;
}
h3 {
	font-size: 1.6em;
}
h4 {
	font-size: 1.4em;
}
h5 {
	font-size: 1.2em;
}
h6 {
	font-size: 1em;
}
h1, h2, h3, h4, h5, h6 {
	margin: 1em 0;
	font-weight: bold;
}

p {
	margin: 1em 0;
}

img {
	border: none;
}

ul, ol {
	margin-left: 2em;
}
ul {
	list-style-type: disc;
}
ol {
	list-style-type: decimal;
}
ol ol {
	list-style-type: lower-alpha;
}
ol ol ol {
	list-style: lower-roman;
}
li {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}
strong {
	font-weight: bold;
}
em {
	font-style: italic;
}
cite {
	font-style: italic;
}

.external {
	
}
.strong {
	font-weight: bold;
}
.em {
	font-style: italic;
}
.shout {
	text-transform: uppercase;
}
.turbo {
	color: #C00;
}
.note {
	font-style: italic;
	font-size: smaller;
}
.strike {
	text-decoration: line-through;
}
.illus-right {
	float: right;
	margin: 0 0 1em 1em;
}