/* CSS Document */

/* makes the back ground of the page yellow */
body {
	background-color: #FFFF00;
}

/* make the hyper links blue */
a:link {
	color: #0000FF;
}

/* makes visited hyperlinks purple */
a:visited {
	color: #FF00FF;
}

/* the font and size of hyperlinks */
a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

/* style for the titles at the top of the pages */
.maintitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 50px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	color: #000000;
	text-align: left;
}

/* same as "maintile" (above) except centred horozontaly. Used on the home page */
.maintitle_centred {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 50px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	color: #000000;
	text-align: center;
	padding: 5px;
}


/* style for the titles at the begining of new sections within pages */
.subtitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	color: #000000;
	text-align: left;
	vertical-align: top;
}

/* same as subtitle (above) except centred horozontaly. Used on the home page */
.subtitle_centrerd {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	color: #000000;
	text-align: center;
	vertical-align: top;
}


/* style for the standard text in the pages */
.text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	text-align: left;
	vertical-align: top;
}

/* same as "text" (above) except bold */
.subsubtitle {

	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	color: #000000;
	text-align: left;
	vertical-align: top;
}

/* same as "subsubtitle" (above) except centred horozontaly. Used on the home page */
.subsubtitle_centred {

	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	color: #000000;
	text-align: center;
	vertical-align: top;
}

/* same as "text" (2 above) except in italics */
.textitalics {

	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: italic;
	font-weight: normal;
	color: #000000;
	text-align: left;
	vertical-align: top;
}

/* same as "textitalics" (above) except centred horozontaly. Used on the home page */
.textitalic_centred {

	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: italic;
	font-weight: normal;
	color: #000000;
	padding: 5px;
	text-align: center;
}

/* same as "text" (5 above) except centered. Used on the home page */
.text_centred {

	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	text-align: center;
	vertical-align: top;
}

/* same as "text_centred" (above) except centered verticaly as well. Used in photo gallery page for the captions */
.text_centredx2 {


	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	text-align: center;
	vertical-align: middle;
}


/* style for "NPiS" in the header */
.npistitle {
	font-size: 45px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFF00;
	text-align: center;
}

/* style for "New Plymouth injury Safe" in the header */
.npissub {
	font-size: 18px;
	color: #FFFF00;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
}





