/*
NOTE:
This style sheet is used to style custom elements in specific parts of the web layout. For 
example this style sheet would be used to modify the font-family or font-size of the an 
eyebrow or paragraph in the article page, but not used to modify the layout of the site.

WARNING: 
Style declarations in this file will overwrite declarations in the style sheet web_global.css,
when writing new style declarations avoid making global declarations.


### EXAMPLE ###
This example covers how to modify the display for the bullets that appear in the article 
description on the scope jsp.

*** WRONG ***
- css
li {
	list-style: circle;
}
- html
<ul>
	<li>List Item One</li>
	<li>List Item Two</li>
	<li>List Item Three</li>
</ul>

*** CORRECT ***
-css
.scope li {
	list-style: circle;
}
- html
<ul class='scope'>
	<li>List Item One</li>
	<li>List Item Two</li>
	<li>List Item Three</li>
</ul>

The wrong method will impact all list items in the website and in this case it will impact 
declarations made in the web_global.css that handle the presentation and functionality of 
the navigation.

Most of the jsp page types have wrapper divs in place that can be leveraged to affect specific
parts of the website. For example the articledisplay.jsp wraps all article content in a div 
with an id of 'article'. In order to style all the paragraphs that appear in an article (but
the rest of the site) the declaration should look like the following;

#article p {
	... styling goes here ...
}

*/
<style type="text/css">

.Text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
}
.Head3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14pt;
	color: #993300;
}
.BoldLeadIn {
	color: #990000;
	font-weight: bold;
}
.QuickHead {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14pt;
	color: #FFFFFF;
}
.QuickText {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}
.QuickTakeHead {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14pt;
	color: #FFFFFF;
}
.Question {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
	color: #990000;
}
.tableheads {font-family: "Times New Roman", Times, serif; font-size: 12pt; color: #990000; font-style: italic; font-weight: bold; }
.Text {
	font-family: "Times New Roman", Times, serif;
	font-size: 12pt;
	color: #000000;
}
.Head4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
	color: #0000FF;
}
.SourceLine {font-size: 10pt; color: #000000; font-family: "Times New Roman", Times, serif;}

.authorcredit {font-family: "Times New Roman", Times, serif; font-size: 12pt; color: #000000; font-style: italic; }