Question : navigation bumps down in ie

Trying to fix this low budget website.  The nav structure in ie 6 bumps down by 1/2"

I tried fixing it but nothing i am doing is working.  I know it is an ie issue.  Any ideas?
http://nsitedesigns.com/nsitedesigns/sttom/test2.html
http://nsitedesigns.com/nsitedesigns/sttom/sttom.css

I think it has something to do with the coding for the address line in the yellow box in the header.

.thrColFixHdr #header p {
      padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
      color:#000; /*dark green*/
      margin:20px 0px 20px 20px;
      
}
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
#navigation {
	width: 90px;
	float:left;
	display:inline; /*needed to push navigation bar away from content*/
	padding-left: 40px;
	margin-bottom:50px; /* pushes nail photo down*/
	font-size:.9em;
	margin-right:20px;
	
	
}

#navigation ul {
	list-style: none;
	padding: 0px;
	font-size: 1.1em;
	margin:0px;
	
}

#navigation li {
padding-top:0px;
	margin-top:0px;
	float:left;/*needed for nav to fit in ie6 and to keep the hours on the left*/
	width:100%;/*needed for nav to fit in ie6 and to keep the hours on the left*/}
	
	
	
#navigation li a:link, #navigation li a:visited  {
	display: block;
	text-decoration: none;
	padding: 3px 0px 3px 0px;
		color:#000;
	border-top: 1px solid #ffffff; /*invisible border to compenstate for mouseover jiggle*/
	border-bottom: 1px solid #ffffff; /*invisible border to compenstate for mouseover jiggle*/}
	

#navigation li a:hover {
	background-color:#ebebc2;
	border-top: 1px solid #314c5e; /*mouseover*/
	border-bottom: 1px solid #314c5e; /*mouseover*/
	
}

.thrColFixHdr #header p { 
	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color:#000; /*dark green*/
	margin:20px 0px 20px 20px;
	
}

Answer : navigation bumps down in ie

Look in the conditional comment.

P.S. Normally the main stylesheet comes before the IE-only stylesheets.
1:
2:
3:
4:
5:
6:
7:
8:
<!--[if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
.thrColFixHdr #sidebar2, .thrColFixHdr #sidebar1 { padding-top: 30px; }
.thrColFixHdr #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]-->
Random Solutions  
 
programming4us programming4us