/*

Examples of GSS look customization according to taskType extref 

*/

/*change color for all appointment event with taskType havingextref "MyTaskTypeExtref" */
.gssevt.app.ttgMyTaskTypeExtref
{
    background-color: navy;
}
/*change color for all appointment event with taskType havingextref "MyTaskTypeExtref" and having status 99 */
.gssevt.app.ttgMyTaskTypeExtref.st99
{
    background-color: navy;
    opacity:0.6;
    filter:alpha(opacity=60);
}
