/*
CSS Style sheet for entire Big Pond Association page.

*Validates as CSS level 2.1 according to W3C CSS Validation Service

Style rules defined here apply to ALL pages.

--Header, Navigation Pane, and Footer are same for all pages.
-- unique content for each page is styled via 'body' rules and
#main rules.

Author: Bharat Battu, for BigPondAssociation.com
Last Modified: 5/7/2008

*/

/*body rules apply to contents of article pages stored in /inc folder*/
body {
font-family:Arial, Helvetica, sans-serif;
color:#003399;
/*background:#FFFFFF; */
background: url(http://www.bigpondassociation.com/paper.gif);

}

/*blue color for any non-navigation hyperlinks */
a {
color:#001A00 ;
}



/* # allows for specific div IDs to have their own attributes!*/

/* navigation is ID set inside inc/navigation.shtml
*/

#navigation{
float:left;
border: solid black 1px;
/*background:#79B9E8; */
text-align:left;
margin-right:1em;
margin-bottom:1em;
background: url(http://www.bigpondassociation.com/nav_paper.gif);
}
	
/*headings (categories) inside navigation pane*/	
div.navHead {
font-size:14px;
font-weight:bold;
font-style:italic;
}	

/*hyperlinks within navigation pane*/
div.sublink {
margin-left:2em;
font-size:12px;
}

/*hyperlinks within nav. pane when mouse pointer is over them */
div.sublink A:hover{
background:#0066CC;
color:#FFFFFF ;
}


/* main (actual content pages inside /inc folder) */

/*Main page will not be scrollable, so footer will always be same place on screen */
#main{

	height:450px;  
	overflow:auto;
}



/*contents of footer (left and right) are separated*/
#footer {
height:1em;
}

/*first is the left portion*/
div#footer #first{
width:60%;
float:left;
}

/*second is the right portion*/
div#footer #second{
float:right;
text-align:right;
}

/*for attraction listings (berkshires/otis pages) */
div.place_name {
margin-top:0.75em;
font-size:16px;
font-weight:bold;
}

/*for event headings on annual events page */
div.annual_event {
margin-top:0.25em;
text-decoration:underline;
}

/* for contact info page*/
div.contact_title {
margin-top: 1em;
font-weight:bold;
}

#contacts_heading{
font-weight:bold;
text-decoration:underline;
font-size:24px;
text-align:center;
}

/*for any closing salutations (welcome page, adopt a boat letter) */
div.salutation {
font-style:italic;
font-size:14px;
}

/* for headings in 'Contacts' Tables */
div.categories {
text-decoration: underline;
}
