To make all elements with the ID "nav" have a light blue text color (#ADD8E6), which CSS property would you apply?
* { color: #AAA; }
#nav { color: rgb(173, 216, 230); }
.nav { color: lightblue; }
nav { color: #ADD8E6; }