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

/* notes:
used class names: (check here first before declare new classes!)
this file:
table
heading
title
menu
topbar
bottombar
link
oldlink
topic
member
month
td
list
sermontitle
row

announcements.html:
new
today
nweek

CSS code for table with thin line grid (need to set all four sides):
border-left: black 1px solid; 
border-right: black 1px solid; 
border-top: black 1px solid; 
border-bottom: black 1px solid"
border-collapse:collapse may do also

reserved code:
<!--<table align="right">
            <tr> church member area link (open a new window to church's facebook group) within a table, reserved
              <td style="border-left: black 1px solid; 
						 border-right: black 1px solid; 
						 border-top: black 1px solid; 
						 border-bottom: black 1px solid" class="member">
                         <p><a href="http://www.facebook.com/group.php?gid=7354098601" target="_blank" title="facebook account required">
                         church member area 會友區</a></p></td>
            </tr>
          </table>-->

*/
/*whole site table*/
.table {width:900; border-collapse:collapse;}

/*church title and phone number headers*/
h1,h2 {font-size:20px;}

/*church member area link*/
.member {font-family:Tahoma, Arial, Helvetica, sans-serif; font-size:14px;}
.member a:link {color:#6666FF; text-decoration:none;}
.member a:visited {color:#6666FF; text-decoration:none;}
.member a:hover {background-color:#FFFF99;}

/*heading cell*/
.heading {background-color:#66CCFF;}

/*mission statement title*/
.title {font-size:24px; color:#FF9966; text-align:center;}

/*top bar*/
.topbar {background-color:#6699CC;}

/*menu*/
.menu {width:750; font-family:Tahoma, Arial, Helvetica, sans-serif; font-weight:bold; text-align:center;}
.menu a:link {color:#FFFFFF; text-decoration:none;}
.menu a:visited {color:#FFFFFF; text-decoration:none;}
.menu a:hover {text-decoration:underline;}

/*bottom bar*/
.bottombar {background-color:#666666; color:#FFFFFF; font-family:Arial, Helvetica, sans-serif;}
.bottombar a:link {color:#FFFFFF;}
.bottombar a:visited {color:#FFFFFF;}

/* two sermon pages and workshop page*/
.sermontitle {background-color:#66CCCC;} /*background color of the sermon table title*/
.list {width:700; border-collapse:collapse;} /*sermon info table*/
.oldlink a:link {color:#000000; text-decoration:none;} /*link back and forth between two pages*/
.oldlink a:visited {color:#000000; text-decoration:none;}
.month {background-color:#999999; height:10;} /*seperation line for each month*/
td {vertical-align:top;} /*make content in each cell on top*/
.row {background-color:#FFFFCC;}

/*bold heading topic*/
.topic {font-weight:bold;}

/*announcement titles*/
.today {background-color:#66FFCC;}
.nweek {background-color:#FFFF66;}