﻿/* ===========================================================================
FILE: calendar_styles.css
DESC: style sheet for Shaw Islanders website
NOTE: See notes at end of this file
HIST: 10 Dec 2005 - RKG
      02 Nov 2009 - Colors for 2010
============================================================================ */
/* --------------------------------------------------------------------------- 
                               S T Y L E S
h = Header                               
ci = Calendar Item
sci = Selected Calendar Item                               
--------------------------------------------------------------------------- */

body { font-family: Times New Roman, Times;
       color:#000000; 
     }
       
p {
	margin-bottom: 0px;
	margin-top: 0px;
	color: #000000;
}

h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: xx-large;
	font-weight: bold;
	color: #336699;
}
td 	{
	font-size: 10pt;
	width: 120px;
	vertical-align: top;
	color: #FFFFFF;
	font-family: "times New Roman", Times, serif;
	text-align: left;
}

td.h {
	background-color: #336699;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}

td.ci {
		border-width: 1px;
	height: 120px;
        	background-color: #FFFFFF; 
        	color:black;       
        	padding: 5px;
	width: 120px;
}
td.sci {s
	height: 120px;
	background-color: #98BADC;
	color: black;
	padding: 5px;
	font-weight: bold;
}

a {
	font-family: "Times New Roman", Times, serif;
	font-size: inherit;
	color: #336699;
}


/* ========================================================================= 
                                 M E D I A
============================================================================ */
/*
 @media print {
      .screenonly { display: none; }
    }
 @media screen {
      .printonly { display: none }
    }
*/
/* ========================================================================== 
                                     M E N U S
============================================================================= */
  
/* ============================================================================
                             C O M M E N T S
-------------------------------------------------------------------------------                               
  Color safe colors do not get dithered
  Color safe colors are made of rgb values 00, 33, 66, 99, cc or ff. 
-------------------------------------------------------------------------------
                                 C S S 
-------------------------------------------------------------------------------                                 
Generally speaking we can say that all the styles will "cascade" into a new 
"virtual" style sheet by the following rules, where number four has the 
highest priority:

   1. Browser default
   2. External style sheet
   3. Internal style sheet (inside the <head> tag)
   4. Inline style (inside an HTML element)
-------------------------------------------------------------------------------
                                T A G S
-------------------------------------------------------------------------------   
margin: 1px 2 3 4;  corresponds to:
	margin-top: 1px;
	margin-right: 2px;
	margin-bottom: 3px;
	margin-left: 4px;   

the same applies to padding.  My comment t r b l is a reminder
========================================================================= */
