/*
	Style created for EastCoast911.com by:
	Lead Out Web Design
	Contact Lead Out Webdesign at LeadOutWeb@aol.com
*/

/* General Page Look */
BODY {
	FONT-FAMILY: "Times New Roman", Arial;
	COLOR: #FFFFFF;
	BACKGROUND-COLOR: #000000;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
}

.blockIMG
(
display:block;
margin:0;
) 

#top {
	width: 100%;
  background: #000000;
  margin-left: auto;
  margin-right: auto;
  }

#page {
  margin-top: 0px;
  margin-bottom: 0px;
  overflow: auto;
  height: 100%;
  }

#bottom {
  width: 100%;
  background: #333333;
  margin-left: auto;
  margin-right: auto;
  }

A:LINK, A:VISITED, A:HOVER, A:ACTIVE {
	COLOR: #ffcc00;
	TEXT-DECORATION: underline;
}
.navigation {
	color:#000000;
	text-decoration:none;
}
.RED {
	FONT-WEIGHT: BOLD;
	COLOR: #ff0000;
}
.YELLOW {
	FONT-WEIGHT: BOLD;
	COLOR: #ffcc00;
}

.urgent {
	padding-left: 20px;
	COLOR: #000000;
	background: url(/images/error.gif) no-repeat 4px 4px;
	background-color: #FFE0DF;
	border: solid 1px #F00;
	}

.LeadOutLink {
		color:#3366ff;
	}
	
/*
Capitalisation
There are two properties that allow you to automatically set the capitalisation of your text. First, font-variant allows you to set all your characters in small versions of capital letters.
p {font-variant: small-caps; }
That would create text like this. It looks cool, and works well for acronyms, like NATO. The second property is text-transform.
div {text-transform: uppercase; }
Possible values are uppercase, which makes all the letters capitals; lowercase, which makes them all small characters; capitalize, which will capitalize the first letter in every word; and none, which will override any inherited transformation.
*/