In addition to what @Mikael has said...
It looks like your input is FASTQ format--except messed up. Can you paste 8 lines directly from the file into your question? From your input above, somehow it looks like the 4 lines are merged into a single line.
Did bowtie give an error when you tried to run it?
It should have been able to at least attempt to align 25% of the rows in your FASTQ file.
Maybe you'll also need to trim the tag from the left end of the read. You can do this with the --trim5 flag and specify the number of bases to skip in each read--likely 6 or so.
EDIT:
your data is not in FASTQ format.
Save this into a file named tofq.py
import sys
for line in open(sys.argv[1]):
header, seq, qual = line.rstrip().rsplit(":", 2)
print "@%s\n%s\n+\n%s" % (header, seq, qual)
then run it as:
python tofq.py yourfile.not.fastq > output.fastq
where yourfile.not.fastq is the name of the file where you got the reads above.
Then run output.fastq through bowtie.