/* DEBUG */
p,div,ul,ol,li,h1,h2,h3,h4,h5,h6,a,td
{
	/*border: 1px solid black;*/
}

/* default style */
/* for printing, we want black text (assume printer is black + white) and consistent 
* amount of left + right margin */
body {
	font-size: 9pt;
	/*position: relative;*/
	width: 6in;
	margin-left: 0.75in;
	margin-right: 0.5in;
	color: black;
	margin-top: 0;
}

/* large document title */
.docTitle{
	font-size: 16pt;
}

/* large noticeable headers for topics 
*  the default h1...h6 headers add too much extra space, and modifying their 
*	behavior is not compatible across all browsers, so we make our own heading class
*/

.docTitle, .header, h1, h2, h3, h4, h5, h6
{
	color:black;
}

.header{
	font-size: 12pt;
}

/* less space between bulleted lists and text */
/*
ul{
	margin-top: 0px;
	margin-bottom: 0px;
}
*/
/* less space between blocks of text */
/*
p{
	margin-top: 8pt;
	margin-bottom: 8pt;
}
*/
/* make links interact with user */
a:link,a:visited,a:hover,a:active {
	color: #500;
	font-weight: bold;
}


/* frame pictures */
/*
img{
	margin: 5px;
	border: medium ridge #3366FF;
}
*/

.pagebreak{
	page-break-after: always;
}


.contact{
	margin-bottom: 48pt;
	margin-left: 0;
}
	
/* because of centered 'RESUME' title, we need to change the spacing after
the first contact header */	
#firstContact{
	margin-bottom: 0;
}

/* Some element's aren't supposed to get printed... */
.noprint{
	display: none;
}




