Set border color for <fieldset> and <legend>

Is possible to alter the border color of the <fieldset> or <legend> tag? You can see them in action here: http://www.foodsfortrade.com/foodtraderpass/register.php.

I want to change that black border to gray one? Is this possible and what CSS would I need to use? Thank you.

bizarrely enough, it’s the “border” css property :wink:
e.g.


fieldset {
border: #ff0000 3px solid;
}

Thank you. I also found another property for the fieldset and that is the

display: block
What other values are available instead of block, I wonder?

http://www.w3.org/TR/CSS1#display