/* style for navigation. also, very basic styling of content div */
@import url("/pga-nav.css");


/* background: #E8EEF7; /* google lighter blue */
/* background: #C3D9FF; /* google light blue */

/* for IE compatibility (see:
 * http://css-discuss.incutio.com/?page=UsingEms )
 */
html
{
    font-size: 76%;
}

body
{
    font-family: verdana, arial, sans-serif;
    font-size: 1em;
    margin: 0;
    margin-bottom: 20px;
    /* background is set in pga-nav.css */
}

/* below (rules for h1 thru p) taken from:
 * http://www.thenoodleincident.com/tutorials/typography/template.html */
h1 {
	font-size: 2.0em;
	font-weight: normal;
	margin-top: 0em;
	margin-bottom: 0em;/*both set to zero and padding in header div is used intead to deal with compound ie pc problems that are beyound summary in a simple comment.*/
    text-align: center;
	}
h2 {
	font-size: 1.7em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: normal;
    text-align: center;
	}
h3 {
	font-size: 1.4em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: normal;
    text-align: center;
	}
h4 {
	font-size: 1.2em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;
    text-align: center;
	}
h5 {
	font-size: 1.0em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;
	}
h6 {
	font-size: 0.8em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;
	}
li {
	font-size: 1.0em;
	line-height: 1.5em;
    margin: .8em 0em .8em 0em;
	}

p {
	font-size: 1.0em;
	line-height: 1.8em;
	margin: 1.2em 0em 1.2em 0em;
	}

h3#heading
{
	margin: 1.2em 0em 1em 0em;
}

#heading-links
{
    text-align: center;
    margin-bottom: 2em;
}

#heading-links :link,
#heading-links :visited
{
    text-decoration: none;
}

/* old style, scileg and brandeis links on one line
h3#heading .links
{
    word-spacing: 5em;
    font-size: 1.0em;
}

h3#heading .links :link,
h3#heading .links :visited
{
    text-decoration: none;
}
*/

div#contact
{
    line-height: 1.3em;
    margin-bottom: 2.0em;
}

div#expertise ul
{
    list-style-position: inside;
}

/* for debugging purposes... (set to 1px) */ 
div
{
    border: 0px solid;
}

/* for captioned and credited divs, must specify the width
 * (use a width class, or inline style="width: 320px") */
/* to credit and caption an image:
 * <div class="captioned left|right"><div class="credited">
 * <img> credit here</div> caption here</div> */
div.captioned, div.credited
{
    font-family: arial, sans-serif;
    color: #555555;
}

div.captioned /* a captioned photo */
{
    font-size: 1em;
    line-height: 1.3em;
}

div.credited /* a credited photo */
{
    font-size: .9em;
    line-height: 1em;
    padding-bottom: .3em; /* pad betw. credit and caption */
    font-style: italic;
    text-align: right;
}

div.captioned img {
    padding-bottom: .5em;
    background-color: white; /* override :hover highlighting */
}

div.credited img {
    padding-bottom: 0;
}

img
{
    border: none;
    margin: 0 0 0 0;
}

img.left,
div.left
{
    float: left;
    clear: left;
    margin: 0px 25px 25px 0px;
}

img.right,
div.right
{
    float: right;
    clear: right;
    margin: 0px 0px 25px 25px;
}

div.book-covers
{
    width: 750px;
    float: left;
    margin-bottom: 1em;
}

div.book-covers h2
{
    margin-bottom: 2em;
}

/* div.book-covers > div */
/* don't use child selector--doesn't seem to be supported by IE 6 */
/* a child div of "book-covers" is a book entry */
div.book-covers div {
    width: 240px;
    float: left;
}

div.book-covers img {
}

div.book-covers p {
    line-height: 1.3em;
}

#projects {
    clear: both;
}

.address {
}

small.subtitle {
}

ol.schedule li {
    list-style-type: none;
}

ol.schedule li span {
    /* the text within a "span" in each list item is the time */
    font-weight: bold;
}

.note /* a note to the reader */
{
    font-style: italic;
}

/* a[href]:hover /* href specified so, e.g. <a name=""> tags don't get hightlighted */
/* a[href] doesn't work in IE 6. instead, do this: (a 'name' tag isn't a link or visited) */
a:link:hover,
a:visited:hover
{
/*    background-color: #FFFF60; a stronger yellow */
    background-color: #FFFFAA;
}

/* primarily for the scileg and brandeis URLs at top of home page */
h3 :link, h3 :visited {
    color: #0000cc; /* slightly darker blue */
}

img.pdficon {
    position: relative;
    left: 3px;
    top: 3px;
    padding-right: 4px;
    margin-top: -0.5em;
    height: 1.2em;
    width: 1.2em;
}

/*
.pdf
{
    background: url("images/pdf2.gif") center right no-repeat;
    background: url("images/pdf2.gif") bottom right no-repeat;
    padding-right: 18px;
    margin-right: 3px;
}
*/

/* can be used with inline styles, use sparingly */
.no-text-decor :link,
.no-text-decor :visited
{
    text-decoration: none;
}

br.clear
/* use this at the end of a div to make it contain all floating elements */
{
    clear: both;
}

cite, .cite {
    font-style: italic;
}

.center {
    text-align: center;
}

strong, .strong {
    font-weight: bold;
}

em, .em {
    font-style: italic;
}


