So you have a Wireless network connected to the DMZ and you want to allow access from the DMZ to the Internet?
sidewinds, if what ikon said is what you want to do then, try fixing or even removing the
dmz_access_in ACL in the following lines:
[code:1]access-list dmz_access_in extended permit icmp any any
access-list dmz_access_in extended permit tcp 192.168.1.0 255.255.255.0 65.xxx.xxx.64 255.255.255.224 eq www
access-list dmz_access_in extended permit udp 192.168.1.0 255.255.255.0 any [/code:1]
The implicit deny prevents any TCP connection destined to internet addresses from going in the dmz interface. Try temporarily removing the line:
[code:1]access-group dmz_access_in in interface dmz [/code:1]
I just had a quick look. There might be other issues too.