The current size of you indexes can be worked out like this:

SQL> select sum(bytes)
2 from dba_segments
3 where segment_name = 'MY_INDEX_IDX';

SUM(BYTES)
----------
41943040

Cheers