/* reset everything */

@import url("reset.css");
	
/* .clear {clear: both;} */

body {
	width: 640px;
	background: white repeat-x;
	font: 12px 'Lucida Grande', 'Lucida Sans Unicode', 'Gill Sans', Geneva, Verdana, Arial, Helvetica, sans-serif;
	color: #292929;
	margin: 50px 30px 30px;
}

/* create the header at the very top of the page */

#header {
	background-color: #f2f2f2;
	border-bottom: 1px solid #bfbfbf;
	padding: 3px 50px 3px 10px;
	font-weight: normal;
	position: fixed;
	top: 0;
	display: block;
	margin: 0;
	left: 0;
	z-index: 1;
	text-align: left;
	right: 0;
	font-size: 0.9em;
}

#header::after {
	background-repeat: no-repeat;
	display: block;
	width: 40px;
	height: 56px;
	content: '';
	background-image: url(../images/we.png);
	margin-top: 2px;
	position: fixed;
	top: 0;
	right: 0;
}

/* other headerlines */

h1 { 
	margin-bottom: 20px; 
	margin-top: 20px; 
	font-weight: bold;
	font-size: 1.3em; 
}

h2 {
	margin-bottom: 20px;
	margin-top: 20px;
	font-weight: bold;
	font-size: 1.2em;
}

h3 {
	margin-bottom: 20px;
	margin-top: 20px;
	font-weight: bold;
	font-size: 1.1em;
}

/* set link behavior */

a:link, a:visited, a:active {
	color: rgb(255, 127, 0);
	text-decoration: none;
	outline-color: invert;
	outline-style: none;
	outline-width: medium;
}

a:hover {
	text-decoration: underline;
	color: rgb(255, 127, 0);
	cursor: pointer;
}

/* paragraph */

p {
	margin-top: 20px;
	font-size: 12px;
	color: #333;
	margin-bottom: 20px;
}


/* lists */

ol {
	padding-bottom: 4px;
	padding-top: 4px;
	list-style-type: decimal;
	list-style-position: outside;
}

li {
	padding-bottom: 8px;
	list-style-position: outside;
}

ul {
	margin-top: 10px;
	margin-left: 40px;
	list-style-position: outside;
	list-style-type: circle;
}

ul li {
	padding-bottom: 8px;
}

strong {
	font-weight: bold;
}

/* notes, instructions, and tables */

.instructions {
	padding-left: 10px;
	padding-bottom: 10px;
	padding-right: 10px;
	padding-top: 10px;
	background-color: #e7edfc;
	border: 1px solid #8c97ac;
}

ul.instructions, ol.instructions {
	margin-left: 10px;
	padding-left: 30px;
}


/* blue/white alternating tables */

table.alternate {
	width: auto;
	margin-right: 60px;
	margin-left: 60px;
	margin-bottom: 20px;
	margin-top: 20px;
	border: 1px solid #bfbfbf;
	/*
	font: 11px 'Lucida Grande', 'Lucida Sans Unicode', 'Gill Sans', Geneva, Verdana, Arial, Helvetica, sans-serif;
	*/
	font-size: 12px;
}

tr.blue {
	background-color: #e7edfc;
}

tr.white {
	background-color: #fff;
}

td {
	padding: 8px;
}

/* "new" boxes */

.feature {
	border: 1px dotted #bfbfbf;
	margin: 0 0 20px;
}

.feature::after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.feature h2 {
	background-color: #e7edfc;
	margin: 2px;
	padding: 2px 8px;
	font-size: 1em;
}

.feature p {
	margin: 7px 2px;
	padding: 2px 8px;
}

.feature ul {
	list-style-type: square;
	margin-bottom: 2px;
	margin-top: 4px;	
}

/* notes */

.note {
	margin-left: 60px;
	margin-bottom: 20px;
	margin-right: 60px;
	margin-top: 0;
	border: 1px dotted #bfbfbf;

}

.note::after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.note h2 {
	background-color: #e7edfc;
	margin: 2px;
	padding: 2px 8px;
	font-size: 1em;
}

.note p {
	margin: 7px 2px;
	padding: 2px 8px;
}

/* table of contents */

ul#toc {
	list-style-type: none;
}

/* copyright div, always at bottom of page */

#copyright {
	font-size: 0.75em;
	background-color: #f2f2f2;
	border-top: 1px solid #bfbfbf;
	padding: 3px 50px 3px 10px;
	font-weight: normal;
	position: fixed;
	bottom: 0;
	display: block;
	left: 0;
	z-index: 1;
	text-align: center;
	right: 0;
}		
			

