DD_roundies.addRule('#navbar_container', '6px 6px 6px 6px', true);

DD_roundies.addRule('#dialog1', '10px 10px 10px 10px', true);

DD_roundies.addRule('#staff_container', '10px 10px 10px 10px', true);


/*
Specifically regarding the second argument in the addRule(), values for the topleft, topright, bottomright, and bottomleft are implied, in that order.

This is modeled after how CSS border-width is implied (where one value sets all, two values sets the top/bottom and right/left, etc):

    * '10px' sets all corner radii to 10px.
    * '10px 5px' sets the top-left and bottom-right corner radii to 10px, and the other corners to 5px.
    * '10px 5px 3px' sets the top-left to 10px, the top-right to 5px, the bottom-right to 3px, and the bottom-left to 5px.
    * '10px 5px 3px 0' sets the top-left to 10px, the top-right to 5px, the bottom-right to 3px, and the bottom-left to 0px.
*/
