@import url("layout.css");
body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 80%;
    background-color: #f2f2f7;
    background-image: url("../images/background.gif");
    background-repeat: repeat;
    background-attachment: scroll;
}
#container {
    /* because the rest of the pieces of the page are dependent on this width,
     * they will also change when the font size changes.  I think. */
    width: 59em; /* note that em's seem equivalent to % at default? */
    margin: 0 auto;
}
#masthead {
    text-align: center;
    width: 100%;
    border-top: 1px solid #dcdcdc;
    border-right: 1px solid #a9a9a9;
    border-bottom: 1px solid #808080;
    border-left: 1px solid #a9a9a9;
    background-color: #fafaff;
}
#navigation {
    position: relative;
    float: left;
    width: 30%;
    margin-top: 10px;
    margin-bottom: 10px;
    /* padding: 1% 1% 80%;*/
    border-top: 1px solid #dcdcdc;
    border-right: 1px solid #a9a9a9;
    border-bottom: 1px solid #808080;
    border-left: 1px solid #a9a9a9;
    background-color: #fff;
    /* I'm going to try to see if I can specifiy list styles in here. */
    list-style-type: none;
}
#content {
    float: right;
    width: 64%;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    padding: 10px;
    border-top: 1px solid #dcdcdc;
    border-right: 1px solid #a9a9a9;
    border-bottom: 1px solid #808080;
    border-left: 1px solid #a9a9a9;
    background-color: #fff;
}
#footer {
    text-align: center;
    /*clear: both;*/
    float: right;
    /*width: 100%;*/
    width: 64%; /*I'm making it match the content box.*/
    padding-top: 5px;
    padding-bottom: 5px;
    border-top: 1px solid #dcdcdc;
    border-right: 1px solid #a9a9a9;
    border-bottom: 1px solid #808080;
    border-left: 1px solid #a9a9a9;
    background-color: #fefeff;
}
/* Masthead Styles */
#masthead h1 {
	color: #3d6c87;
}
#masthead h3 {
	color: #5f8ea9;
}
/* Navigation Styles */
/*#navigation ul, #navigation li {*/
#navigation ul {
/* I wish there was a shorthand for what I have specified above. */
    display: block;
    margin: 0;
    padding: 0;
}

/* for subsections */
#navigation li ul {
    list-style-type: none;
    display: block;
    margin: 0;
    padding: 0 0 0 3em;
}

/* #navigation li {
	display: block;
	margin: 0;
	padding: 0;
	border: 1px solid #fff;
	background-color: #fff;
} */
/* For indication of current page */
#navigation .currentpage {
        color: #3d6c87;
	text-decoration: none;
	display: block;
	padding: 5px;
	border: 1px solid #fff;
	background-color: #abf;
}

#navigation a {
	color: #3d6c87;
	text-decoration: none;
	display: block;
	padding: 5px;
	border: 1px solid #fff;
	background-color: #fff;
}
#navigation a:hover {
	color: #fff;
	text-decoration: none;
	border: 1px solid #5f8ea9;
	background-color: #5f8ea9;
}
/* Content Styles */
#content h1,h2,h3,h4,h5,h6 {
	color: #3d6c87;
}
#content img {
	/* padding: 5px; */
	border: 1px solid #808080;
}

/* For better readability of the text */
#content p { line-height: 1.5 }

/* Styling blockquotes so that they stand out from
 * the normal text */
#content blockquote { font-style: italic; }

/* For better readibility of unordered lists */
/* 0 for left and right, non-zero for top and bottom*/
#content li { 
    padding: 0.25em 0em; 
    line-height: 1.5; /* same as p element */
}

/* For a bigger difference in heading sizes */
/*#content h1 { font-size: 2em}
#content h2 {font-size:  1.5em}*/

/* Footer Styles */
#footer p {
	color: #3D6C87;
	margin-top: 5px;
}
#footer a {
	color: #5f8ea9;
	text-decoration: underline;
}
#footer a:hover {
	color: #33627d;
	text-decoration: none;
}
a {
	color: #5f8ea9;
	text-decoration: underline;
        font-weight: bold
}
a:hover {
	color: #33627d;
	text-decoration: underline;
}
.style_bold {
	font-weight: bold;
}
.style_italic {
	font-style: italic;
}
