what is wrong with this find command

i am trying to find the files which are more than 100MB and it was created 10 days ago.
find /lola/loaded -size +102400 -mtime -10 -print | xargs ls -ltr
-rw-rw-r-- 1 lola_adm gdrmp 82054170 Jun 23 06:17 /lola/loaded/ILMEMBER20090622.txt
-rw-rw-r-- 1 lola_adm gdrmp 652080494 Jun 24 03:10 /lola/loaded/web_monthly_0_d0905
-rw-rw-r-- 1 lola_adm gdrmp 652080494 Jun 24 03:24 /lola/loaded/web_monthly_1_d0905
-rw-rw-r-- 1 lola_adm gdrmp 652080494 Jun 24 03:36 /lola/loaded/web_monthly_2_d0905
-rw-rw-r-- 1 lola_adm gdrmp 652080000 Jun 24 03:50 /lola/loaded/web_monthly_3_d0905

But when i tried to find the files which are more than 10 MB and it was created 10 days ago.. using the below command, the produces an output with all the files in that directory. is there anything wrong with the find command.

find /lola/loaded -size +10240 -mtime -10 -print | xargs ls -ltr

please help...

It's finding the directory file.
Confine the search to files only.

find /lola/loaded -type f -size +10240 -mtime -10 -print | xargs ls -ltr

how do we use the depth and max depth in the find command.

-d <depth>

or

-depth <depth>