
/* MAIN PARTS OF PAGES */

body {
	font-family:arial,helvetica,sans-serif;
	margin: 0;
	padding: 0;
}

div.nav {
/*The main left side panel with logo and navigation */
	font-family: arial,helvetica,sans-serif;
 	position: relative;
	float: left;	
	width: 25%;	
	text-align: right;
	line-height: 2;
	font-size: 110%;
	color: red;
	z-index: 1;
}

div.content {
/*The main right side panel with top line and content */

	font-family: georgia,helvetica,sans-serif;
	float: left;
	position: relative;
	left: 2%;
	font-size: medium;
	width: 50%;
}

div.footer {
	/* Page footer */
	padding-top: 0.5cm;	
	text-align: center;
	font-size: 75%;	
}


div.topline {
	/*The line of page heading just under the Shanti Sadan name on each page. Comes at the top of content*/
	font-family: georgia,helvetica,sans-serif;
	font-size: 130%;
	color: #3333ff;
	line-height: 150%;
	background-color: yellow;
	padding-left: 0.1cm;
}


div.padContent {
	/* creates a space above and below coloured background in content */
	padding-top: 0.2cm;
	padding-bottom: 0.2cm;
}

div.parchment {
	/*Section where most words on a page appear*/
	background-color: #FFE4C4;	
	padding-top: 0.05cm;
	padding-left: 0.4cm;
	padding-right: 0.4cm; 
	padding-bottom: 0.6cm;		
}

div.parchmentFront {
	/*For use of the front page*/
	background-color: #FFE4C4;
	font-size: 110%;		
	padding-top: 0.05cm;
	padding-left: 0.4cm;
	padding-right: 0.4cm; 
	padding-bottom: 0.2cm;		
}

div.moreFront {
	/*Also on the front page*/
	background-color: white;
	font-size: 100%;
	padding-top: 0.5cm;
	padding-left: 0.4cm;
	padding-right: 0.4cm; 
	padding-bottom: 0.2cm;		
}

div.moreFrontSpring {
	/*Also on the front page*/
	background-color: #6AFB92;
	font-size: 100%;
	padding-top: 0.5cm;
	padding-left: 0.4cm;
	padding-right: 0.4cm; 
	padding-bottom: 0.2cm;
	font-weight: bold;			
}

div.moreFrontNotice {
	/*Also on the front page*/
	background-color: lightgreen;
	font-size: 100%;
	padding-top: 0.2cm;
	padding-left: 0.4cm;
	padding-right: 0.4cm; 
	padding-bottom: 0.2cm;
	font-weight: bold;
	color: crimson;			
}


/* HYPERLINKS */

a:link {
	color: #6666FF;
	text-decoration: none;
}

a:visited {
	color: #6666FF;
	text-decoration: none;	
}

a:hover {
	color: #6666FF;
	text-decoration: underline;
	}

a:active {
	color: #6666FF;
	text-decoration: none;
}



/* SPECIFICS */


/* TEXT */

.ital {
	font-style: italic;
}

.boldcenterred {
	/*used by events.htm */
	font-weight: bold;
	text-align: center;
	color: red;	
}

.boldcenter{
	/*used by books.htm */
	font-weight: bold;
	text-align: center;	
}

.bold{
	/*used by books.htm */
	font-weight: bold;	
}

.italbold {
	font-style: italic;
	font-weight: bold;	
}



.center{
	/*used by books.htm */
	text-align: center;	
}

.alignright {
	float: right;
}

.smaller {
	font-size: 80%;
}

.nobreak { 
	white-space:nowrap;
}

.noticeRed{
	font-weight: bold;
	text-align: center;
	color: crimson;	
}

.noticeGreen{
	font-weight: bold;
	text-align: center;
	color: green;	
}



.quote {
	/*used in articles */
	font-family: arial,helvetica,sans-serif;
	font-size: 92%;
	padding-left: 5%;
	padding-right: 5%;		
}

.inabit {
	/*used in articles */
	padding-left: 10%;
	padding-right: 10%;		
}




/* GRAPHICS */ 

.floater {
	/* Container for graphics, used by about.htm */
	float: left;
	border: solid 1px black;
	padding: 5px;
	margin: 5px;	
}


.imgleft {
	/* Container for graphics, used by about.htm */
	float: left;
	padding-left: 0.2cm;	
	padding-right: 0.5cm;
	border: none;		
}

.imgleftfull {
	/* Container for graphics, used by about.htm */
	float: left;
	padding-left: 0.0cm;	
	padding-right: 0.5cm;
	border: none;		
}



/* LISTS */

.decimal {   
	/* List style, used by about.htm */
	list-style-type: decimal;
}





/*Below,  drafts and notes




#pg {
	margin-right:auto;
	margin-left:auto;
	border: 0px solid white;
	padding: 0px;	
	width: 100%;	

}


#nav2 {
 	position: relative;
	float: left;	
	width: 20%;	
	text-align: right;
	line-height: 2;
	font-size: 110%;
}



.footer {
	text-align: center;
	font-size: 70%;	
}



img.topname {
	position:absolute;
	left: 22%;
	top: 35px;
	height: 52px;
	width: 385px;
}

span.toptext {
	position: absolute;
	left: 22%;
	top: 90px;
	color: #3333ff;
	font-size: 125%;
}






body {
	font-family: Arial, Helvetica, sans-serif;
}

td {
	font-family: Arial, Helvetica, sans-serif;
}

th {
	font-family: Arial, Helvetica, sans-serif;
}



NOTES

this works
div.content {
	float: left;
	font-size: medium;
}

with
<div class='content'>

The alternative is 
#content {
	float: left;
	font-size: medium;
}

with
<div id='content'>



*/



