/* Florenzo Law website ///////////////////////////////////////////*/

html
	{
	  height:100%;
	  margin-bottom:1px;
	}
	
body {
	font-family: Helvetica, Arial, Geneva, sans-serif;
	font-size: 12px;
	color: #333333;
	margin: 0;
	padding: 0;
	background-color : #B7BB75;
height: 100%;
}

p {
/*
font size defined in the body tag, only need to redefine if you change the size. FONT WEIGHT is spelled wrong, but do not need to define if normal.
font-size: 12px;
font-wieght: normal;*/
color: #886C44;
}

li {
/*
font size defined in the body tag, only need to redefine if you change the size. FONT WEIGHT is spelled wrong, but do not need to define if normal.
font-size: 12px;
font-wieght: normal;*/
color: #886C44;
}

h1 {
font-size:14px;
/* FONT WEIGHT is spelled wrong */
font-weight: bold;
color: #B7BB75;
}

/*
a and a:link are the same thing

a {
text-decoration: none;
color: #B7BB75;
font-weight: bold;
}*/

a:link, a:visited {
text-decoration: none;
color: #B7BB75;
font-weight: bold;
}
/* just code the differences here */
a:hover, a:active {
color: #886C44;

}
a:active, a:focus {
      outline: 0;
}
#wrapper {
	margin: 0 auto 0;
	padding: 0;
	width: 600px;
	/* need to define a height if using a width, and also set as block.  this fixes the box shape in IE.  In FF, if you have floated boxes inside this div, then you will need to clear it.  */
	height: auto;
	display: block;
}


#headerpic
{
position: relative;
height: 700px;
width: 400px;
background: #B7BB75 url('images/fl_index_image.jpg') no-repeat top left;
}
/* The use of the relative & the margin left here were causing issues.  No need for this code. */
#headerpic_other
{
/*position: relative;*/
height: 179px;
width: 600px;
background: #B7BB75 url('images/fl_header.gif') no-repeat top left;
margin-top: 35px;
/*margin-left:2px;*/
}
/* NO REASON TO FLOAT THIS.  ADDED CLEAR TO CLEAR THE PREVIOUSLY FLOATED DIV */
#text {
	/*float: left;*/
	clear: both;
	width:525px;
	height: auto;
	background-color: #ffffff;
	margin-left: 3px;
	/*remove this top margin, not needed with change of div position
	margin-top: 23px;*/
	padding: 30px;
	line-height: 2em;
}

/* MAIN NAV BAR ///////////////////////////////////////*/
/* CHANGE NAV TO UL / LI */
/*#mainNav {
	float: left;
	width: 400px;
	height: auto;
	text-decoration:none;
	font-family:Helvetica, Geneva, Arial, sans-serif;
	font-size: 12px;
	font-weight:bold;
	list-style: none;
	margin-top: 40px;
	margin-left: 80px;
	border: 1px dotted #FF0000;
}*/
#logo {
	float: left;
	margin-top: 20px;
	display: block;
}

ul#mainNav
{
	list-style: none;
	height: auto;
	width: 300px;
	margin: 0px 0px 0px 220px;
	padding: 40px 0px 0px;
}
ul#mainNav li
{
	padding-bottom: 10px;
}
#mainNav a:link, #mainNav a:visited {
	/*width: 400px;*/
	/*text-indent: 130px;*/
	/*display: block;*/
	color:#FFFFFF;
	text-decoration:none;
}
/* just code differences */
#mainNav a:hover, #mainNav a:visited:hover {
	color:#886C44;
	/*text-decoration:none;
	width: 400px;
	padding-top: 7px;
	padding-bottom: 7px;*/
	/*text-indent: 130px;*/
	/*display: block;*/
}
/* ADD ID TO LINK, DON'T WRAP IN DIV */
#mainNav a#selected:link, #mainNav a#selected:visited {
	/*width: 400px;
	padding-top: 7px;
	padding-bottom: 7px;*/
	/*text-indent: 130px;*/
	/*display: block;
	text-decoration:none;*/
	color:#886C44;
}



/* footer nav ///////////////////////////////////////*/
#bottom {
	float: left;
	height: 179px;
	width: 600px;
	background: #B7BB75 url(images/fl_bottom.gif) no-repeat left top;
}
/* FONT SIZE LOOKED REALLY TINY, SUGGEST 10px as the smallest used, 11px is better usability. Added a bit of line-height.  */
#footer {
	background: #B7BB75 url(images/fl_bottom.gif) no-repeat left top;
	/*float: left;*/
	/*
	set height to auto, this was too small
	height: 1em;*/
	width: 588px;
	font-size: 10px;
	color: #886C44;
	text-align: center;
	/*padding: 30px 10px 0px 80px;*/
	
	font-weight: bold;
	/* this moves the text to below your background graphic */
	padding-top: 35px;
	line-height: 12px;
}

/* COMBINE LIKE CSS USING A COMMA */
#footer a:link, #footer a:visited {
text-decoration: none;
color: #ffffff;
font-weight: bold;
}
/* BE SURE TO DEFINE HOVER & ACTIVE. SINCE IT CASCADES, ONLY NEED TO DEFINE WHAT CHANGES */
#footer a:hover, #footer a:active {
color: #886C44;
}

