/* external CSS file  */
/* filename masterstyle.css */
/* NO HTML MARKUP ALLOWED */

/* Note: earlier version had no BODY attribute, this was taken from the .normal attribute */

body { 
    background: white; 
    color: black;
    font-family: Arial, Geneva, Helvetica, sans-serif; 
    font-size: .9em;
    font-style: normal; 
    font-weight: normal; 
} 

/* all anchored items are black */
a { 
    color: #000000; 
}

a:link {  
    color: #0000FF; 
} /* hypertext, unvisited hotlinks are blue */

a:visited { 
    color: #000000; } 
/* hypertext, main text visited links are teal, non-websafe color */

A.navlink:visited, A.navlink:link { 
    color: #000000; 
    font-family: "Times New Roman", "New York", Times, serif; 
} /* navlink (visited and not) are black */

/* hypertext, navbar (visited and non) links are black */
.navlink { 
    font-style: normal; 
    font-weight: bold; 
    color: #000000; 
    font-family: "Times New Roman", "New York", Times, serif; 
    font-size: .9em;
} 

/* hypertext, navbar (visited and non) links are black */
A.navlink-large:visited, A.navlink-large:link {  
    color: #000000; 
    font-family: "Times New Roman", "New York", Times, serif; 
} 

/* The "Active" Directory/link ie breadcrumb
   The size is usually in relatetion to .navlink which is relation to body ...*/
.activenav { 
    color: #FF0000; 
    font-family: "Times New Roman", "New York", Times, serif; 
    font-size: 1.3em;
}

/* hypertext, navbar (visited and non) links are black 
   Large links used in end of sidebar (mostly Evaluate this site) */
.navlink-large { 
    font-style: normal; 
    font-weight: bold; 
    color: #000000; 
    font-size: 1.1em;
    font-family: "Times New Roman", "New York", Times, serif; 
} 

/* all mail link items are blueish, add this to insure netscape 4.x compatibility */
.maillink, A.maillink:link, A.maillink:visited, A.maillink:active { 
    color: #000099; 
} 

/* button like link for Did You Know's Back Button */
.nyaplink { 
    border-style: groove; 
    font-size: 1.3em; 
    padding: 3px; 
} 

/* Did You Know Links, black */
a.nyaplink:link, A.nyaplink:visited { 
    color: #000000; 
}

/* The Did you Know fact  */
cite.nyap { 
    font-family: "Times New Roman", "New York", Times, serif; 
    font-size: .9em;
}

/* Generic Header settings, specific over-rides below */
h1, h2, h3, h4, h5, h6  {  
    font-family: "Times New Roman", "New York", Times, serif; 
    font-style: normal; 
    font-weight: normal; 
}

/* H1 settings "The Faculty Room "*/
h1 {  
    font-size: 3.1em;
    color: #FFFFFF; 
    margin-top: 0; 
    margin-bottom: 0; 
} 

/* The "Disabilities, Opportunities, Internetworking, and Technology" 
   before TFR H1 */
b.pre-h1 { 
    font-size: .75em;
    font-family: "Times New Roman", "New York", Times, serif; 
}

/* H1 "The Faculty Room" Link Setting */
h1 a:link, h1 a:visited { 
    color: #FFFFFF;
    text-decoration: none;
    font-family: "Times New Roman", "New York", Times, serif; 
}

/* for pagetitle items, be sure to check that the margin-bottom, 
   margin-top and padding are not too large for levels 2 and 3 of template */
h2 {  
    font-size: 1.8em;
    color: #000000; 
    margin-bottom: 0em; 
} 

/* This shouldn't be necessary, all of it is defined in the body tag */
p {  
    font-weight: normal; 
    font-style: normal; 
} 

/* The first introductory paragraph of a page is 14px bold text, indented, 
   this style was h3 on Woodard's stylesheet and is used for 
   Faculty/index.html */
.intro { 
    font-weight: bold; 
    font-style: normal; 
    padding-left: 2em; 
    padding-right: 2em; 
} 

/* Holdover from crappy style-sheet definitions not really needed but
   will leave in just in case */
td.maintext {  
    font-style: normal; 
    font-weight: normal; 
    vertical-align: top;
} 

/* in Faculty/incs/footer.inc the copy right statement is in a td
   class="footer" that is a child of a td class="footer" some browsers
   apply both font sizes when this was defined with just td.footer some
   don't so it was changed to td.footer td.footer .*/
td.footer td.footer {  
    font-size: .75em; 
    font-style: normal; 
    font-weight: normal; 
}


/* list items are 14px, different font set 
   Used to be the case but was removed */
li {  
    font-style: normal; 
    font-weight: normal; 
} 

cite { 
    font-size: .9em;; 
    font-style: normal; 
    font-weight: normal; 
}

/* used for distance learning course lessons to increase default text size */
pre.larger { 
    font-size: 1.1em;
} 

/* similar to blockquote, must be used in a div or other block level element */
.p-indent { 
    margin-right: 5%; 
    margin-left: 5%; } 

/* Used in the webpage page to differentiate code blocks */

div.sidebar {
    margin-top: 1em;
    margin-bottom: 1em;
    margin-right: 5%; 
    margin-left: 5%; 
    padding: .5em;
    border: 1px solid black;
} 

/* the following are (mostly) SPAN attributes */

.padfooter { 
    padding-top: 2px; 
    padding-right: 2px; 
    padding-bottom: 2px; 
    padding-left: 2px; 
    border-color: #000000; 
    border-top-width: 2px; 
}


.borders {  
    border: 2px double; 
    border-color: #000000; 
    border-style: solid; 
    padding-top: 0px; 
    padding-right: 0px; 
    padding-bottom: 0px; 
    padding-left: 0px; 
}

.padding { 
    padding-top: 10px; 
    padding-right: 10px; 
    padding-bottom: 10px; 
    padding-left: 10px; 
}

/* Would have been easier to do this as class="padding center", oh well */
.paddingcenter { 
    padding-top: 10px; 
    padding-right: 10px; 
    padding-bottom: 10px; 
    padding-left: 10px ; 
    text-align: center; 
}

.center { 
    text-align: center; 
} 

.paddingheader { 
    padding-top: 2px; 
    padding-right: 2px; 
    padding-bottom: 2px; 
    padding-left: 2px; 
}

/* These are for the Case Study | FAQ | Resource set of links in
   Strategies/Academics/ and Strategies/Disability/ */

.res-link { 
    font-size: larger; 
    font-weight: bold; 
} 

.under { 
    text-decoration: underline; 
}

/* For some statistics tables in 
   doit/Faculty/Rights/Background/statistics.html
   doit/Faculty/Strategies/Disability/index.html
   */

div.stat { 
    margin-left: 10%;
    margin-right: 10%;
    margin-top: .5em;
    margin-bottom: .5em;
}

table.stat { 
    font-family: "Times New Roman", Times, serif; 
    font-weight: normal;
    font-style: normal; 
}

table.stat tr { 
    vertical-align: top;
}

td.stat {  
    width: 83%;
    text-align: left; 
    padding: 1px;
    margin: 1px;
    font-weight: normal;
    font-style: normal; 
} 

td.stat-right { 
    width: 17%;
    text-align: right; 
    padding: 1px;
    margin: 1px;
    font-weight: normal;
    font-style: normal; 
} 

.stat-footer {  
    font-size: .8em; 
    font-style: normal; 
    font-weight: normal; 
}

/* Used to add space after list items */
ul.double li, ol.double li, dl.double dd, dd.double, li.double { 
    padding-bottom: 1em;

}

/* This is a test, unfortunately Mac IE 5.1 which is what really needs these
   print changes doesn't seem to support @media print  */
@media print { 
    .activnav {
        color: #000000;
        font-size: 1.2em;
    }

    h1 { 
        color: #000000;
    }
}

/* For Site Map */

#sitemap h1, #sitemap h2, #sitemap h3, #sitemap h4, #sitemap h5, #sitemap h6 {
	color: black;
	font-weight: bold;
	font-size: normal;
	margin-bottom: 0;
}


#sitemap h1 + ul , #sitemap h2 + ul, #sitemap h3 + ul, #sitemap h4 + ul, #sitemap h5 + ul , #sitemap h6 + ul {
	margin-top: 0;
}


