/* CSS Document */

/* This style sheet allows a user to highligh text by applying a bold or italics style */

/* In the context of the IPTS Intranet development policy and from the point of view of web editing,
a content editor is granted the role of content provider only, and therefore they should not
create nor change styles. Hence, a content editor shall use only standard html tags to edit their
contents. Through Macromedia Contribute, a web editor should not be able to modify the style of the
text being edited. This is the reason why there is a separate css file providing additional features such
as the ones described in this document */

.highlight {
font-weight:bolder;
}
.reference {
font-style:italic;
}

.darkred{
color:darkred;
}

.darkred_bold{
color:darkred;
font-weight:bold;
}
