/*formats the appearance of the whole page*/
body {
    background:white;
    margin:0;
    padding:40px 20px;
    font-family:Tahoma, Geneva, sans-serif;
    color:black;
    font-size: 10pt;
}

/*formats the block that sits on the page and makes it blue*/
#page {
    width:70%;
    min-width: 500px;
    margin-left:auto;
    margin-right:auto;
    background-color: #335599;
    color:black;
}

/*formatting for header banner*/
#header {
    width:100%;
    min-width: 500px;
    margin:0 auto 0px;
    border-bottom:9px double #777777;
    background-color: white;
    color: black;
}

/*formatting for the content sections--contains main and sidebar divs*/
#content {
    width:100%;
    min-width: 500px;
    margin:0 auto;
    padding:0;
    text-align:left;
}

/*formatting of the main content section (left column)*/
#main {
    width:74%;
    min-height: 500px;
    float:left;
    background-color: white;
    color:black;
    border-right: 3px solid #777777;
}

/*div for the navigation bar*/
#sidebar {
    width:25%;
    float:right;
    background-color: #335599;
    color:black;
}

/*formatting for the footer*/
#footer {
    width:100%;
    min-width: 500px;
    clear:both;
    margin:0 auto;
    border-top:9px double #777777;
    text-align:center;
    font-size:.8em;
    background-color: white;
    color:black;
}

/*text formatting inside of footer*/
#footer p {
    margin:0;
    padding-top:15px;
    text-transform:uppercase;
    text-align: center;
    letter-spacing:.1em;
}

/*used to keep logo aligned left*/
#leftalignpic {
    text-align: left;
}

/*aligns the portrait on homepage to the left*/
#portrait {
    text-align: left;
    margin-top: 10px;
}

/*alters the font size for home page*/
.intro {
    font-size: 12pt;
}

/*formatting for the navigation text*/
.nav {
    margin-left: 15px;
    margin-top: 10px;
    font-size: 12pt;
}

/*formats all links on the page to black*/
a:link {
    text-decoration: none;
    color:black;
    font-family: Tahoma, Geneva, sans-serif;
}
a:visited {
    color:black;
    text-decoration: none;
    font-family: Tahoma, Geneva, sans-serif;
}
a:hover {
    text-decoration: underline;
}


/*provides color and positioning for page headers*/
h2 {
    color: #335599;
    margin-top: 10px;
}

/*div to create the line in the navigation bar*/
.line {
    background-color: #777777;
    margin-right:15px;
    height: 3px;
}

/*fixes positioning of education navigation link*/
.education {
    padding-top: 15px;
}

p {margin-right: 10px;
}

/*change link to Dawn Aronson to make it visible*/
a.visible_link:link {
    text-decoration: underline;
    color:black;
    font-family: Tahoma, Geneva, sans-serif;
}
a.visible_link:visited {
    color:black;
    text-decoration: underline;
    font-family: Tahoma, Geneva, sans-serif;
}
a.visible_link:hover {
    text-decoration: underline;
}
