/**
 * Print-specific styles
 *
 * @author:   Rob Newman <robertlnewman@gmail.com>
 * @version:  0.1
 * @created:  2013-03-14
 * @modified: 2013-03-14
 * @notes:    1. Spec: http://www.w3.org/TR/CSS2/media.html
 *            2. Guide: http://bit.ly/9N9ECo
 *            3. Twitter-Bootstrap has a print block
 *              defined as @media print {}
 *            4. Hide CSS2 link embedding
 *            5. Some DMC specific widgets hidden
 *              (Disqus comments, ShareThis)
 */

/* START: HTML tags */
body { background:white;}
nav { display: none; }
table { border:1px solid #666;font-family:Georgia,'Times New Roman',serif; }
table th { border:1px solid #666;background:gray; }
table td { border:1px solid #666;background:white; }
/* END: HTML tags */

/* START: Typography */
h1,
h2,
h3,
h4,
h5,
h6,
p,
small,
strong,
li { font-family:Georgia,'Times New Roman',serif; }
/* END: Typography */

/* START: ID-based content block divs */
#header, #footer, #breadcrumbs { display:none; }
#page-content { width:100%;background:transparent; }
/* END: ID-based content block divs */

/* START: Class-based content styles */
/* END: Class-based content styles */

/* START: Links */
a:link, a:visited {
  color: blue;
  background: transparent;
  font-weight: bold;
  text-decoration: underline;
}
a:link:after, #page-content a:visited:after {
  display: none;
}
/* END: Links */

/* START: Third-party widgets */
/* Disqus comment thread */
#disqus_thread { display:none; }

/* Special Event ShareThis */
.specialevent-share-this { display:none; }
/* END: Third-party widgets */
