html, body
 {
	height: 100%;
	margin: 0;
	padding: 0;
	
	font-family: verdana;
	font-weight: normal;
	color: #EFEFEF;
	background: black url("http://johnnylml.com/img/metal.png");
}

#container
{
	width: 900px;
	margin: auto;
}

/* HEADER */
#header
{
	width: 900px;
    height: 100px;
	
	background: url("http://johnnylml.com/img/header.png");
	font-size: 250%;
    font-weight: 600;
    color: lawngreen;
	text-align: center;
	letter-spacing: 10px;
    line-height: 100px;
}

/* NAVIGATION */
#nav 
{
	float: left;
	width: 170px;
	margin-top: 10px;
	padding-left: 10px;
	border-right: 2px solid #005C7E;
	color: lime;
}

#current{
	background: url("http://johnnylml.com/img/green_bullet.png") no-repeat 0 5px;
	text-indent: 20px;
	margin: 0;
	padding: 0;
}

#current .nav_link:hover
{
	background: url("http://johnnylml.com/img/green_bullet.png") no-repeat 0 5px;
}

/* NAVIGATION LINKS*/
#nav a
{
	color: lime;
	font-style: normal;
}

#nav a:visited 
{
	color: green;
	text-decoration: none;
	outline: none;
}

#nav a:hover 
{
	color: red;
	outline: none;
}

#nav .nav_link
{
	padding-left: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	font-weight: normal;
	font-size: 100%;
	margin: 0;
	display: block;
}

#nav .nav_link:hover 
{
	background-color: #202020;
}

/* CONTENT */
#content
{
	float: right;
	width: 710px;
	font-size: 70%;
}

#content b
{
	color: #96A1C6;
}

#content .indent
{
	padding-left: 6%;
	display: block;
}



/* LINKS */
a{
	color: #00B7EE;
	text-decoration: none;
	font-style: italic;
}
a:visited {
	color: green;
	text-decoration: none;
	font-style: italic;
}

a:active {
	font-weight: bold;
}

a:hover {
	color: red;
	text-decoration : none;
}

