/*
OU CAMPUS CALENDAR 2012 CSS
***Print CSS Pulled out of calendar.css and put here.  Within calendar.js is 
oucalconstructor.prototype.enablePrintButton = function() which now includes this css file.
It is included using css.jsp which is under page_calendar node
A more system-wide standard is in development***
*/

/* Printable CSS - Begin */

/* Whole page print when using media="print" - Begin */
.row-fluid [class*="span"]:first-child {
    margin-left: 0;
    width: 0;
    height: 0;
    display: none;
}
.row-fluid .span8 {
    width: 680px;
}
.header, .footer {
    display: none;
}
.eventdate, 
.mdeventdate, 
.eventmoreless, 
#eventspager {
    display: none;
}
/* .eelinks, cannot wrap links in this div class as it breaks print link */
.eventprint, 
.eventpermalink, 
.icallink {
    display: none;
}
.eventtitleml {
    padding: 0;
}
.eventtitle, 
.eventdaterange, 
.eventlocation, 
.eventdescription {
    width: 100%;
    padding-left: 0;
}
/* Whole page print - End */

/* Below is for specific event printable window */
#printableevent {
    background-color: #FFFFFF;
    background-image: none;
    color: black;
    font-size: 0.82em;
}
#printableevent #printlink {
    display: none;
}
#printableevent .eventdaterange {
    color: #660000;
    line-height: 2em;
    display: block;
    padding-bottom: 1em;
}
#printableevent .eventlocation {
    font-weight: bold;
}
#printableevent .eventmoreless img {
    display: none;
}
.eventsummary {
    clear: right;
    cursor: pointer;
    display: block;
    float: left;
    width: 670px;
    /* trbl */
    padding: 0 0 0.25em 0.5em;
    font-family: Georgia,serif;
}
#printableevent .eventtimerange {
    color: #660000;
}
.eventextended {
    float: left;
    padding-left: 0.5em;
    width: 670px;
}
#printableevent .eventdescription {
    display: block;
    padding-bottom: 10px;
}
#printableevent .eventlink {
    display: block;
}
#printableevent .eventcontact {
    display: block;
    padding-bottom: 10px;
}
#printableevent .eventcalviewpath {
    display: block;
}
h3 {
    padding-left: 0;
    margin-left: 0;
    font-size: 1.8em;
    font-weight: normal;
    line-height: 0.9em;
}
.externallink {
    background-image: url("../../../common/images/calendar/leaving_site.gif");
    background-position: right top;
    background-repeat: no-repeat;
    padding-right: 15px;
}
a:link {
    color: #333333;
}
a:hover {
    text-decoration: underline;
    color: #298AC4;
}
/* Printable CSS - End */



null
