/**
 * Master Stylesheet
 * 
 * @project Pemaquid Solutions web site
 * @site http://pemaquidsolutions.com
 * @copyright 2009
 * @author Colin Michael <grassyhillsoftware@gmail.com>
 * @date 2009-02-22
 * @version 2009.02.22.1
 * @cssdoc version 1.0-pre
 * @colordef #ffffff; white (Background)
 * @colordef #1e1e1e; light black (Content)
 * @colordef #1e1e1e; light black (h1)
 * @colordef #2f2f2f; pale black (h2, h3, a:all)
 * @fontdef "Palatino Linotype", "Lucida Grande", Lucida, serif
 */

/**
 * Reset
 * 
 * @section reset
 * @see http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-weight:inherit;
	font-style:inherit;
	font-size:100%;
	font-family:inherit;
	vertical-align:baseline;
}
:focus {
	outline:0;
}
body {
	line-height:1;
	color:black;
	background:white;
}
ol, ul {
	list-style:none;
}
table {
	border-collapse:separate;
	border-spacing:0;
}
caption, th, td {
	text-align:left;
	font-weight:normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content:"";
}
blockquote, q {
	quotes:"" "";
}
 

/**
 * HTML Tag Selectors
 * 
 * General tags and pseudos only
 * 
 * @section tags
 */
body {
	background:#ffffff;
	color:#1e1e1e;
	font:1.0em/1.3em "Palatino Linotype", "Lucida Grande", Lucida, serif;
	margin:10px;
}
a {
	color:#2f2f2f;
}
a img {
	text-decoration:none;
}
h1 {
	color:#1e1e1e;
	font-size:1.5em;
	font-variant:small-caps;
	margin:10px;
	
}
h2 {
	color:#2f2f2f;
	font-size:1.3em;
	font-variant:small-caps;
	margin:10px;
}
h3 {
	color:#2f2f2f;
	font-size:1em;
	font-variant:small-caps;
	margin:10px;
}
p {
	margin:10px;
	text-align:justify;
}
p:first-letter {
	margin-left:25px;
}

/**
 * ID Selectors
 * 
 * @section id
 */
#bkgnd {
	background-image: url(images/background-3.jpg);
}
#inset {
	float:left;
	margin:0 10px 10px 0;
}

/**
 * Class Selectors
 * 
 * @section class	
 */
.alc {
	text-align:center;
}
.alr {
	text-align:right;
}
.b {
	font-weight:bold;
}
.border1 {
	border:1px solid black;
	padding:4px;
}
.clear {
	clear:both;
}
.i {
	font-style:italic;
}
.indent5 {
	margin-left:5px;
}
.indent10 {
	margin-left:10px;
}
.indent25 {
	margin-left:25px;
}
.indent100 {
	margin-left:100px;
}
.justify {
	text-align:justify;
}
.m5 {
	margin:5px;
}
.m10 {
	margin:10px;
}
.m25 {
	margin:25px;
}
.mauto {
	margin-left:auto;
	margin-right:auto;
}
.right {
	float:right;
}
.small {
	font-size:0.9em;
}
.tagline {
	font-size:0.85em;
	font-style:italic;
}
.u {
	text-decoration:underline;
}
.xsmall {
	font-size:0.8em;
}

