/* common styles */
/* turn a vertical un/ordered list into a horizontal list -- it might help to float the li elements too in your master.css; apply style to the ul/ol tag */
.horzlist,.horzlist li{
    display:inline;
    list-style-type:none;
}
/* end horizontal list */
/* remove the border from an element; typically used in images within anchor tags; apply style to the anchor tag */
.noborder,.noborder img{
    border:none!important;
    text-decoration:none!important;
}
/* end remove border */
/* hidden stuff; apply .veil to any element that needs to be hidden use .hide below if all else fails */
.veil{
    left:-10000px;
    position:absolute;
}
.hide{
    display:none!important; /* this is NOT a good technique; only use it as a last resort or for temporary means */
}
/* end hidden stuff */
/* bold stuff; apply to any element */
.vivid{
    font-weight:bold!important;
}
/* end bold stuff */
/* uppercase everything; apply to any element */
.intense{
    text-transform:uppercase!important;
}
/* end uppercase */