/* ********************************
Default style declarations for Action (green) website
******* */

a { /* defines how links look like */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	font-style: normal;
	font-weight: bold;
	color: #006600;
}

a:link, a:visited, a:active { /* Normally the links are not underlined (no text decoration) */
  text-decoration: none;
  	color: #006600;
}

a:hover { /* ...but links underline themselves when mouse points to them */
  text-decoration: underline;
}
	/* Heading style definitions for levels 1, and 2 */
h1 { 
	font-family:Verdana, sans-serif;
	font-size:16pt;
	color:#006600; /* a shade of green */
}
h2 { 
	font-family:Verdana, sans-serif;
	font-size:13pt;
	color:red;
}

body { 
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px
}

/* ********************************
Definitions (placement, margins, background, etc.) of specific sections 
******* */

#leftBar {
	background-color:#006600; /* a shade of green */
	float:left;	/* aligns to the left side */
	margin:0 3px 0 0; /* space between this section and its surroundings: top left bottom right */
}

#rightBar { /* Defines the right section of the website */
	background-color:#B7E7B7; /* a shade of green */
	float:right;
	margin:3px 0 0 3px;
}

#topBar { /* Defines the top section of the website */
	background-color:#F0FFF0;	/* very light green */
	height:150px;
	margin: 0 0 0 3px;
}

#mainPart { /* Defines the main (content) section of the website */
	background-color:#F0FFF0; /* very light green */
	margin: 3px 0 0 0;
	padding: 3px;
}

#bottom { /* Defines the bottom section of the website (copyright) and its style */
	background-color:#F0FFF0; /* very light green */
	height:50px;
	padding:10px;
		/* style of text and font */
	color:#666666;
	size:12pt;
	font-weight:700;
	line-height:20pt;
	text-align:center;
	vertical-align:bottom;
}

/* ********************************
Style declarations used throughout the Action website 
******* */

#contentLinks { /* Style used for a section with a list of links */
	background-color:white;
	text-align:left;
	color: #006600;
}

#contentLinks a { /* Style of a linked text */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11pt;
	font-style: normal;
	font-weight: normal;
	color: #006600;
	padding:5px;
}

#contentLinks h4 { /* style of a heading to be used in this section */
	font-family: sans-serif;
	font-size: 11pt;
	font-weight: bold;
	font-style: italic;
}

.content { /* used within table cells <td class="content"> to enable style definitions there */
	font-family: Verdana, sans-serif;
	font-size:9.0pt;
	color: #006600;
}

/* ********************************
Style declarations used within only one or few pages 
******* */

#leftLinks { /* background and default font style used in the left navigation bar (used in leftlinks.html document) */
	font-family: sans-serif;
	font-size:12pt;
	color: #006600;
}

#leftLinks a{ /* style of links used in the left navigation bar */
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9pt;
  font-style: normal;
  font-weight: bold;
  text-decoration: none; /* not underlined */
  color: white;
  line-height: 12px; /* fixes the height of a line of text, regardless of the font size*/
}

#rightLinks { /* background and default font style used in the right navigation bar (used in rightlinks.html document) */
	background-color: #B7E7B7;
	font-size: 9pt;
	font-weight: bold;
	color:navy;
}

#rightLinks a{ /* style of links used in the right navigation bar */
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8pt;
  font-style: normal;
  font-weight: bold;
  text-decoration: none; /* not underlined */
  color: 006600;
  line-height: 12px; /* fixes the height of a line of text, regardless of the font size*/
} 
