---@charset "utf-8";
/* CSS Document */

/* chapter4styles.css */

/* Block all default margins and padding */
* {
	margin:0;
	padding:0;
	left: auto;
}

body
{
  background-color:#fffbdf; /* the "body" background-color colors the area around the wrapper NOT the background of the wrapper
  						*/
  font-family: Georgia, "Times New Roman", Times, serif; /* This sets the font for the whole page */
  color:#00f; /* Setting color (font color) in the "body" sets the font color for the whole page; web safe blue */
  font-size:large;
}

/* Wrapper contains the layout */
#wrapper
{
  width:50em;
  margin: 20px auto 0 auto; /* Places a 20px margin at the top; centers the wrapper */
  background-color:#fffbdf; /* the "wrapper" background-color colors only the background of the wrapper */
}

#leftcolumn
{
  width:10em;  /* One em equals the size of the letter m */
  float:left; /*This places the navbar next to (rather than below) the branding column */
  padding: 5px 10px;/*This pads inside the leftcolumn 5px (top and bottom) 10px (left and right margins */
  /* This worked on home page but caused problems on subsequent pages: margin-top: 120px; -- Brings "Our Counties" down to the middle of logo */
  text-align:center; /* This centers the text in the left column */
  font-size:small;
}

#leftcolumn h2
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:medium;
	font-weight:bold;
	font-style:italic;
	color:#f00; /* web safe red */	
}	

#leftcolumn img
{

}


/*Branding contains MTGS logo */
#branding img
{
	margin-left:5em; /*Moves logo to the right 5em*/
	/*This does not work with mtgs pages display:block;  /*Fixes the mysterious image gap Lesson 7 page5 */
}



#navbar
{
	background-color:#63f; /* Medium Blue */
	margin-left:10em; /*Left margin must match left column width */
	height:l.6em;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: medium;
	text-align: left;
}

#navbar ul
{
	list-style-type:none; /* This removes the bullets from the unordered list items */
}

#navbar li
{
	float:left; /*This makes the navbar list horizontal */
	/*Required for drop-down menus */
	position:relative; /*don't use fixed or static or inherit or absolute*/
}

/*Applies to drop-down menu styles */
#navbar li ul
{
	position:absolute;
	z-index:100;
	visibility:hidden;
}
	
/* Applies to navbar links, unvisited and visited */
#navbar a,
#navbar a:link,
#navbar a:visited
{
	text-decoration:none; /*This removes the underline from the link */
	font-size:80%; /*This prevents the text from getting too big */
	color:#ffc; /* Text color yellow*/
	background-color:#00f; /* background color of navbar -- medium blue*/
	display:block;
	height:2em;
	width:6em;
	border-right:solid 1px #9cf;
	text-align:center;
	line-height:2em;
	outline-style:none; 
}	

/* Navbar hover and active links */
#navbar a:hover,
#navbar a:active
{
	background-color:#9cf;
	color:#fff;
	left: auto;
}

/* Make drop=down visible on navbar hover */
#navbar li:hover ul
{
	visibility:visible;
}

/* Applies to links on the drop-down menu */
#navbar li:hover ul li a
{
	text-align:left;
	display:block;
	width:15em; /*The makes the drop-down menu wider for more explanation of what's available */
	padding:0 0 0 1em;
	height:auto;
}

/* Create section for special announcements */



/* Create Page Title section */

#pagetitle
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:large;
	font-weight:bold;
	font-style:normal;
	text-align:center;
	color:#f00; /* web safe red */
}

#pagetitle h4

{	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:large;
	font-weight:bold;
	font-style:normal;
	text-align:center;
	color:#f00; /* web safe blue */
	
}

#address
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:10px;
	/* font-weight:bold; */
	font-weight: bold;
	text-align:center;
	
}
/* End address section */


#announcement
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:medium;
	/* font-weight:bold; */
	font-style:normal;
	text-align:center;
	
}
/* End Announcement section */

/* Applies to content section */

#content
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:medium;
	text-align:left;
	
}

#content p
{
	text-indent:3em;
	font-size:small; /* This control the font size for the paragraph (content p) */
}

#content h1
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:medium;
	font-weight:bold;
	font-style:italic;
	color:#f00; /* web safe red */
}

#content h2
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:medium;
	font-weight:bold;
	color:#f00; /* web safe red */	
	
}	

#content h3
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:large;
	font-weight:bold;
	font-style:italic;
	color:#f00; /* web safe red */	
	
}



#rightcolumn
{
  width:10em;
  float:right;
  padding: 5px 5px;/*This pads rightcol 10px (top and bottom) 10px (left and right margins) */
  border-color:#00f;
  border-style:double;
  text-align:center;
  font-size:small;
  /* background-color:#00f;  medium blue background matches blue of nav bar */
  color:#00f; /* blue text */
  
}  

/*rightcolumn contains image */
#rightcolumn img
{
	margin-left:1em; /*Moves logo to the right 5em*/
	/*Trying to get ESM photo in right column  /*Fixes the mysterious image gap Lesson 7 page5 */
}


#rightcolumn h1
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:medium;
	font-weight:bold;
	font-style:italic;
	color:#f00; /* web safe red */	
}	

#rightcolumn h2
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:medium;
	font-weight:bold;
	font-style:italic;
	color:#f00; /* web safe red */	
}	

/*Trying to create definitions for an XHTML table*/

#table  /*Use these settings for general tables i.e. mtgsnewdate page*/

{
	
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:small;
	text-align:left;
	color:#00f; /* web safe blue for text*/
	border-color:#00F;
	
}

#table p

{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:small;
	text-align:left;
	font-weight:lighter;
	font-style:normal;
	color:#00F; /* web safe blue for text*/
	
}

#table tbody p

{
	
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:small;
	text-align:left;
	font-weight:lighter;
	font-style:normal;
	color:#00f; /* web safe blue for text*/
}

{
	
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:small;
	text-align:left;
	font-weight:lighter;
	font-style:normal;
	color:#00f; /* web safe blue for text*/
	
}

#table tbody p

{
	
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:small;
	text-align:left;
	font-weight:lighter;
	font-style:normal;
	color:#00f; /* web safe blue for text*/
}

{
	
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:small;
	text-align:left;
	font-weight:lighter;
	font-style:normal;
	color:#00f; /* web safe blue for text*/
	
}



#table1 /* Use these setting for ABC index at top of Articles pages */

{
	
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:medium;
	text-align:center;
	color:#00f; /* web safe blue for text*/ 
	
}

#table1 p

{
	
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:medium;
	text-align:left;
	font-weight:lighter;
	font-style:normal;
	color:#00f; /* web safe blue for text*/
	
}

#table1 tbody p

{
	
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:small;
	text-align:left;
	font-weight:lighter;
	font-style:normal;
	color:#00f; /* web safe blue for text*/
}

{
	
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:small;
	text-align:left;
	font-weight:lighter;
	font-style:normal;
	color:#00f; /* web safe blue for text*/
	
}

#table h2  /* definitions for heading 2 in Articles tables only */

{
	
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:medium;
	font-weight:bold;
	text-align:center;
	color:#f00; /* web safe red for text*/
	border-width:3;
	border:color=#00F;
	
}


#table2 /* Use these settings for Articles Table */

{
	
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:small;
	text-align:left;
	color:#00f; /* web safe blue for text*/
	border-width:"3"; /* this does not seem to work */
	border-color:#00F; /* this does not seem to work I have to put this info in the table tag */

	
}

#table2 p

{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:medium;
	text-align:left;
	font-weight:bold;
	font-style:normal;
	color:#00f; /* web safe blue for text*/
	
}



#table h2  /* definitions for heading 2 in tables only */

{
	
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:medium;
	font-weight:bold;
	text-align:center;
	color:#f00; /* web safe red for text*/
	
}

#semtable  /*Use these settings for annual seminar tables on mtgsnewdate page*/

{
	
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:small;
	text-align:left;
	color:#00f; /* web safe blue for text*/
	border-color:#00F;
	cellpadding:"5";
	
}

#semtable p

{
	
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:small;
	text-align:left;
	font-weight:lighter;
	font-style:normal;
	color:#00f; /* web safe blue for text*/
	
}

/*Trying to define how M... T... G... S... will be formatted -- this is a CLASS*/
.mtgsname
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:bold;
	font-style:italic;
	color:#f00; /* web safe red */
}

.journalname
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:bold;
	font-style:italic;
	color:#f00; /* web safe red */
}

.address
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:bold;
	font-size:10px;
	text-align:center;
	color:#00f; /* web safe red */
}

.meetingtitle
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:bold;
	text-align:center;
	font-style:normal;
	color:#f00; /* web safe red */
}

.meetingtitle2
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:bold;
	font-style:normal;
	color:#f00; /* web safe red */
}

.meetingdate
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:bold;
	text-align:center;
	font-style:normal;
	color:#00f; /* web safe blue for text*/
}

.meetingspeaker
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:bold;
	text-align:center;
	font-style:normal;
	color:#00f; /* web safe blue for text*/
}
.meetingtime
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:bold;
	text-align:center;
	font-style:normal;
	color:#f00; /* web safe red */
}


.semspeaker
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:bold;
	text-align:center;
	font-style:italics;
	color:#f00; /* web safe red */
}

.news
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:bold;
	text-align:center;
	font-weight:bold;
	color:#fffbdf; /* background color */
}

.PageTitleCenter
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:bold;
	text-align:center;
	font-style:normal;
	color:#f00; /* web safe red for text*/
	font-size: large;
}

.BlueTextCenter
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:lighter;
	text-align:center;
	font-style:normal;
	color:#00f; /* web safe blue for text*/
}


.BlueTextSmall
{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:200;
	font-style:oblique;
	color:#00f; /* web safe blue for text*/
}

#2011semtable
{
	margin-left:10em; /*Left margin must match left column width */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: medium;
	table-width: 60%;
}

#footer
{
	
	clear:both; /* clears all other floats */
	border-top: groove #00f;
	padding:0.5em;
	font-family:Georgia, "Times New Roman", Times, serif;
	text-align:center;
	font-size:small;
	font-style:normal;
	border-bottom:groove #00f;
}

td hr 
{
	color:#F00;
}
.booktitle {
	font-style: italic;
}
.booktitle {
	font-style: italic;
	color: #F00;
}
redbold {
	color: #F00;
}
Seminar Blue Heading {
	color: #00F;
}
font color for seminar title {
	color: #00F;
}
#announcement #announcement div table tr td {
	color: #FFF;
}

#announcement #content #table table tr .meetingdate {
	color: #0000A0;
}
#announcement #content #table table tr .meetingdate {
	color: #00F;
}
#announcement #content #table table tr td div strong {
	color: #00F;
}
.newspapertitle {
	color: #F00;
}
#announcement #rightcolumn div strong {
	color: #F00;
}
.SEMINAR {
	color: #F00;
}
#wrapper #content #table table tr td center h2 strong {
	color: #0080FF;
}
#wrapper #content #table table tr td center strong {
	color: #F00;
}
.Brentaname {
	color: #F00;
}
news {
	color: #FBF8B5;
}
.SpeakerNameRTCol {
	color: #F00;
}

#tslaannouncement {
	color: #FBF8B5;
}
#announcement div table tr td .news {
	font-family: Verdana, Geneva, sans-serif;
}
#announcement div table tr td .news {
	font-family: Lucida Sans Unicode, Lucida Grande, sans-serif;
}
.Fee {
	color: #F00;
}

