Which stats to trust: Google analytics, Host or WordPress Blog Stats?

I'm using Google Analytics, awstats from cpanel, and a few plugins for wordpress (statpress, wassup). Except Google Analytics they all have unreadable interfaces with a lot of info, that I do not understand.

They all give me different results. I would like to know which one is correct or at least close to the truth. Another problem is Ghostery, which I use - a browser plugin that can block Google Analytics which automatically make its statistics wrong. Recently I was bombarded with requests from Russia and StatPress says Russia is the place where I get most of the requests, which is not right. Until I get an unambiguous answer I'll keep them all running.

What do you think - which gives the best (closest to the truth) stats?

WordPress, images and align="right"

Note to self: put this code in every theme's css if it doesn't have it.

img.centered {
display: block;
margin-left: auto;
margin-right: auto;
}
img.alignright {
padding: 4px;
margin: 0 0 2px 7px;
display: inline;
}
img.alignleft {
padding: 4px;
margin: 0 7px 2px 0;
display: inline;
}
.alignright {
float: right;
}
.alignleft {
float: left;
}