/* Highlandpolice.com style sheet */
/* Created by: Burgz */
/* Mantianed by: Burgz */

/* ------------Tags------------ */

/* Body */
/* Adds backround image */
/* Sets image to fixed */
/* Repeats image down */
/* Changes font color to dark blue */
/* Removes top margin */

body {
	background-image: url(images/background115.gif);
	background-attachment: fixed;
	background-repeat: repeat-y;
	color: #0000CC;
	margin-top: 0; 
		}

/* Heading 1,2,3,4,5,6 */
/* Changes text to bold */
/* Changes text to Arial */

h1, h2, h3, h4, h5, h6#font-family {
	font-weight: bold;
	font-family: Arial;
		}

/* Paragarph */
/* Changes text to bold */
/* Changes text to Arial */
/* Changes text to 10 points */

p {
	font-weight: bold;
	font-family: Arial;
	font-size: 10pt;
		}

/* Tables */
/* Changes borders */
/* Remove borders */

table {
	border-collapse: collapse;
	border-style: none;
		}

/* Links table */
/* Allows boarder */

table.links {
	border-style: solid;
		}

/* Images */
/* Remove Borders */

img	{
	border: none;
		}

/* Linked Images */
/* Remove Borders */
	
:link img {
  border: none;
		}


/* -----------Links-------------- */

/* Changes links to black */
/* Removes Underline */

a:link {
	color: #000000;
	text-decoration: none;
		}

/* Changes visited links to black */
/* Removes Underline */

a:visited {
	color: #000000;
	text-decoration: none;
		}

/* Changes active links to red */
/* Removes Underline */

a:active {
	color: #FF0000;
	text-decoration: none;
		}

/* Changes hover links to yellow */
/* Removes Underline */

a:hover {
	color: #FFFF00;
	text-decoration: none;
		}

/* ----------Classes--------- */

/* Class Links */
/* Changes text to bold */
/* Changes text to 10 points */
/* Changes text to Arial */
/* Changes backround to blue */
/* Changes borders */

.links {
	font-weight: bold;
	font-size: 10pt;
	font-family: Arial;
	background: #0066CC;
	border-collapse: collapse;
		}

/* Class Small */
/* Changes text to Small-Caps */
/* Changes text to 9 points */
/* Changes text to Arial */
/* Changes text to bold */

.small {
	font-variant: small-caps;
	font-size: 9pt;
	font-family: Arial;
	font-weight: bold;
		}