"Stealth" means that a port is closed and any packets directed to that port are simply dropped. The client receives no notification of what happened to its packet(s). It is as if the system does not exist.
This is in contrast to a closed port, where packets directed to the port are denied. The denial is communicated back to the client, so though the client may not be able to access that port, it does know that a server exists at that address.
"Stealth" (or drop) is preferred over deny because it does not say to a potentially malicious client -- Here I am, come hack at me.
You could stealth ports 25, 113, and 443, but then your SMTP, AUTH, and HTTPS services would not be accessible from the outside.
Are you sure that is what you want?