


 


/*
** based on...
** Plone Print style sheet for CSS2-capable browsers.
** Copyright Alexander Limi, 2001-2003 - http://www.plonesolutions.com
** thanks Alexander.
*/


/* blanked this one (#1 on the list) */
#content a:link:after, 
#content a:visited:after {
    content: "";
}

/* changed font size (#2 on the list) */
#content,
.documentDescription,
.group,
li,
.stx,
p {
    font-size: 9pt;
}

/* no text decoration (#3 on the list) */
a:link, a:visited {
    text-decoration: none;
}

/* added some calendar elements to the display none list (#4 on the list) */
DIV.calTabs,  /* the tabs for each view across the top */
TABLE.calheader TD.left,                /* previous view */
TABLE.calheader TD.right,               /* next view */
TABLE.calheader TD.choosedate,          /* Jump To Date widget */
TABLE.caltabs TR.subjectlinksrow,       /* subjectlinks */
DIV.calxcopyright,                      /* the copyright macro */
.visualNoPrint {
    /* Hides all the elements irrelevant for presentations */
    display: none;
}

/* add a top border after removing calTabs (#5 on the list) */
TABLE.caltabs TD.body {
    BORDER-TOP: #436976 1px solid;
}
TABLE.calheader TD {
    PADDING: 0px;
    HEIGHT:  0px;
}

/* shrinks the header/footer calendar date (#6 on the list)*/
TABLE.calheader {
    MARGIN-BOTTOM: 0px;
    MARGIN-TOP: 0px;
}

/* height of day cells on weekbyday (#7 on the list) */
TABLE.cal TD {
    HEIGHT: 30px;
}

/* width of day cells on weekbyday (#8 on the list) */
TABLE.cal {
    WIDTH: 600px;
}

/*  remove the border around the event icons in the event listings (#9)*/
img {
    border: none;
}
 





