/* comment lines are declared like this */

/* body is the default - if nothing is declared for the rest then the body definition is the one used */
BODY
{
    MARGIN: 0px;								/* if only a single value is specified then it applies to all margins */
    BACKGROUND-IMAGE: none;          /* can also be a url - url (../images/backgroundimage.jpg) */
    BACKGROUND-REPEAT: repeat;		/* other values no-repeat, repeat-x (horizontal), repeat-y (vertical)*/
	BACKGROUND-ATTACHMENT: fixed;  /* other value scroll */
	BACKGROUND-POSITION: 0% 0%;		/* values can be a percentage or a fixed length or one of top centre bottom/left centre right */
    BACKGROUND-COLOR: white;	/* background colour should be specified even with an image incase the image doesn't load other value is transparent */
	font-family: tahoma, san-serif;
	font-size: x-small !important;
	font-size: xx-small;
	color: black;
	min-width: 1000px;
	text-align: center;
}
/* definition of a paragraph */
TD
{
	FONT-FAMILY: "Arial", Tahoma, sans-serif; /* tahoma is the font family and sans-serif is a generic family */
	FONT-STYLE: normal;                    /* other values are italic and oblique */
	FONT-VARIANT: normal;               /* other values are small-caps */
	FONT-WEIGHT: normal;                 /* other values are  bold, bolder, lighter, 100, 200, 300, 400, 500, 600, 700, 800, 900  */
	font-size: small !important;
	font-size: x-small;
	line-height: 105%;

}
/* definition for all cells */
h1
{
	font-size: 36px !important;
	font-size: 36px;
	font-family: Arial, Helvetica, sans-serif;
	color: #007A75;
	line-height: 140%;
	background-color: transparent;
}

h2
{
	font-size: small !important;
	font-size: x-small;
	font-family: Arial, Helvetica, sans-serif;
	color: black;
	padding-left: 15px;
}

h3
{
	font-size: medium !important;
	font-size: medium;
	font-family: Arial, Helvetica, sans-serif;
	color: #007A75;
	background-color: transparent;
}
h4
{
	font-size: medium !important;
	font-size: medium;
	font-family: Arial, Helvetica, sans-serif;
	color: #007A75;
	background-color: transparent;
	line-height: 120%;
}
OL li
{
	list-style-type:decimal;
	list-style-image:none;
	padding: 12px 0px 5px 0px;
	margin: -15px;
}
/* menu row coloration and spacing */
.menu
{
	background-color: #007A75;
	color: white;
	line-height: 240%;
	border-right: solid white 1px;
	font-size: small !important;
	font-size: x-small;
	font-weight: bold;
}

/* menu class - to define the drop down menu */
#nav, #nav ul { 
	padding-left: 0; 
	margin: 0; 
	list-style-type: none; 
	list-style-image: none;
	min-width: 140px !important;
	min-width: 200px;
	line-height: 240%;
} 
#nav a { 
	display: block; 
	color: white;
	background-color: transparent;
	width: 140px !important;
	width: 140px;
	border-right: solid white 1px;
	font-family:Arial, Helvetica, sans-serif;
	font-size: small !important;
	font-size: x-small;
	font-weight: bold;
} 
#nav a:hover {
	color: black;
	background-color:#FFFFFF;
	display: block; 
	width: 140px !important;
	width: 140px; 
} 
#nav li { 
	float: left; 
	width: 8em; 
	color: black;
	list-style-type: none;
	list-style-image: none;
	width: 140px !important;
	width: 140px;
	line-height: 240%;
}
#nav li ul { 
	position: absolute; 
	width: 140px !important;
	width: 140px; 
	left: -999em; 
	color: black;
	list-style-type: none;
	list-style-image: none;
} 
#nav li:hover ul { 
	color: black;
	left: auto; 
	background-color: #CCCCCC;
	width:inherit;
}
#nav li:hover ul, #nav li.sfhover ul { 
	color: black;
	left: auto; 
	background-color:#CCCCCC;
	width:inherit;
}

/* Fix IE. Hide from IE Mac \*/
* html #nav ul li { float: left; }
* html #nav ul li a { height: 1%; }
/* End */

/* */
.paddedleft
{
	padding-left: 15px;
	padding-right: 0;
	padding-bottom: 0;
	padding-top: 0;
	font-size: small !important;
	font-size: x-small;
	line-height: 110%;
}
.tagline
{
	text-align: right;
	position: relative;
	top: 97px;
	padding-right: 10px;
	font-family: verdana, tahoma, san-serif;
	color: #F8ECDC;
	font-weight: bold;
	font-size: small !important;
	font-size: x-small;
}
/* definition of a class with borders set all round to thin */
.withborders
{
	BORDER-WIDTH: 1px;		/* other values are medium, thick or a length */
	BORDER-COLOR: #333333;					/* colour of all borders or can set individually as width above */
	BORDER-STYLE:  solid;				/* other values are dotted, dashed, solid, double, groove, ridge, inset, outset */
}
/* definition of image format  with uneven border and relative padding */
IMG
{
	BORDER:0;

}
/* list item decalration - bullet points*/
LI
{ 
	DISPLAY: list-item;			/* other values are block, inline, none */
	WHITE-SPACE: normal;		/* other values are  pre, nowrap */
	LIST-STYLE-TYPE: disc;		/* other values are circle, square, decimal, lower-roman, upper-roman, lower-alpha, upper-alpha, none */
	LIST-STYLE-IMAGE: none;	/* other values are the image url */
	LIST-STYLE-POSITION: outside; /* other value is inside */
	font-size: small !important;
	font-size: x-small;
	line-height: 130%;
}

/* standard menu options */
A {
  color: #000000;
  text-decoration: none;
  font-family: "arial narrow", tahoma, san-serif;
  font-weight: bold;
  font-size: small !important;
  font-size: x-small;
}

A:visited
{
	color: #babcbe;
	}
A:link
{
    color: #babcbe;
}
A:hover
{
    color: #007A75;
	background-color: transparent;
}
A:active
{
	color: #babcbe;
}
A.extra  {
  font-size: small !important;
  font-size: x-small;
  line-height: 130%;
}
.extraspaced
{
	line-height: 140%;
	font-size: small !important;
	font-size: x-small;
}
.extraspacedplus
{
	line-height: 140%;
	font-size: small !important;
	font-size: x-small;
}
.bold
{
	font-weight: bold;
	font-size: small !important;
	font-size: x-small;
	line-height: 110%;
}
.greenbold
{
	font-weight: bold;
	font-size: medium !important;
	font-size: medium;
	line-height: 110%;
	color: #007975;
}
/* declaration of the background images required for the individual pages and the masthead */
/* masthead */
.background
{
	BACKGROUND-color: transparent;
	background-image: url(../images/greenfieldvalley-title.jpg);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: top;
}

.tickerbackground
{
	background-image: url(../images/ticker-background.jpg);
	background-repeat: no-repeat;
	height: 104px !important;
	height: 54px;
	line-height: 150% !important;
	line-height: 170%;
}

/* heritage parke map */
.heritagepark
{
	BACKGROUND-color: transparent;
	background-image: url(../images/heritage-park.gif);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: top;
}
/* museum and farm amp */
.museum
{
	BACKGROUND-color: transparent;
	background-image: url(../images/museum.gif);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: top;
}

.footertext
{ font-size: x-small !important;
font-size: xx-small;}

#footermenu A
{ 
	font-weight: normal;
	font-family:Arial, Helvetica, sans-serif;
	font-size: x-small !important;
	font-size: xx-small;
}
#footermenu A:active
{
	color: black;
}
#footermenu A:visited
{
	color: black;
	}
#footermenu A:link
{
    color: black;
}
#footermenu A:hover
{
    color: #007A75;
	background-color: transparent;
}
/* using extra word and line spaces */
.spaced
{
	WORD-SPACING: normal;		/* other value is addition to normal space between each word e.g. 2em adds 2em to the normal space */
	LETTER-SPACING: normal;		/* other value is addition to normal space between characters e.g. 1em adds 1em to normal letter spacing */
}
/* this is to handle the little pop-up tool tips for the maps areas */
#tooltip a.info{
    position:relative; /*this is the key*/
    z-index:24; background-color: transparent;
    color:#000;
    text-decoration:none;}

#tooltip a.info:hover{z-index:25; background-color: transparent;}

#tooltip a.info span{display: none;}

#tooltip a.info:hover span{ /*the span will display just on :hover state*/
    display:block;
    position:relative;
    top: -50px; left: inherit; width: inherit;
    border:1px solid #007A75;
    background-color: #CCCCCC; color:  #000000;
    text-align: left;}

/* These relative units are supported:

H1 { margin: 0.5em }       ems, the height of the element's font  e.g. if font is 12pt then this margin is 6pt
H1 { margin: 1ex }         x-height, ~ the height of the letter 'x' 
P  { font-size: 12px }     pixels, relative to canvas 

Absolute length units are only useful when the physical properties of the output medium are known. These absolute units are supported:

H1 { margin: 0.5in }       inches, 1in = 2.54cm 
H2 { line-height: 3cm }    centimeters 
H3 { word-spacing: 4mm }   millimeters 
H4 { font-size: 12pt }     points, 1pt = 1/72 in 
H4 { font-size: 1pc }      picas, 1pc = 12pt 

*/

