/************************/
/* University of Wisconsin Law School Stylesheet */
/* Copyright 2005, Board of Regents of the University of Wisconsin */
/************************/
/* Comments:  This is the print stylesheet for the new layout. */
/* Last Validated: 9/8/05 with W3C CSS Validator (http://jigsaw.w3.org/css-validator/) */
/* Validation Note: (from http://www.alistapart.com/articles/goingtoprint/) "^= is a CSS3 selector. The W3C CSS validator can only test for compliance with CSS1 and CSS2. Unable to understand the CSS3 selector, the W3C validator will report it as an error, even though it is perfectly valid per the CSS3 Selectors Candidate Recommendation." See line 57 */
/* This document deals with all styles for print media, including things that are ordinarily in the separate basic_style.css */
/************************/
/************************/
/* This is basic stuff for the whole page */
html {
 margin: 0;
}
body {
 margin: 0;
 background: #FFFFFF;
 font-size: 12pt;
}
/************************/
/* The header will show only the Law School logo */
#header {
 width: 100%;
 display: block;
}
#law_logo {
 margin: 0pt;
 padding: 0pt;
 display: block;
}
#law_logo img {
 border: none;
}
/************************/
/* These selectors shouldn't show up in the print version at all-- mainly navigation elements */
#uw_links, #uw_links ul, #uw_links li, #banner_image, #skip_nav, #left_nav, #sidebar, #footer {
 display: none;
}
/************************/
/* These selectors have to be visible-- the main content is inside them. */
/* In the HTML, each successive selector is nested inside the previous one, e.g. wrapper inside outer_wrapper */
#outer_wrapper, #wrapper, #container, #content {
 float: none;
 width: 100%;
}
#main {
 width: 100%;
}
/************************/
/* The first declaration shows link URLs in parentheses after the linked text */
/* The second one prefixes partial links within the law school site with http://www.law.wisc.edu */
/*#main a:link:after, #main a:visited:after {
 content: " ("attr(href)")";
 margin-left: 0;
}
#main a[href^="/"]:after {
 content: " (http://www.law.wisc.edu"attr(href)")";
 margin-left: 0;
}*/
/************************/
/* These selectors are normally all declared in basic_style.css, but this set is unique to print media */
/* Everything should be in points or percentages-- this is print! */
h1,h2,h3,h4,sup,sub,p,ol,ul,li,strong,b,small {
 font-family: "Times New Roman", serif;
 font-style: normal;
 font-weight: bold;
 margin-top: 10pt;
 color: #000000;
}
h1 {
 font-size: 130%;
}
h2 {
 font-size: 120%;
}
h3 {
 font-size: 115%;
 margin-top: 5pt;}
h4 {
 font-size: 90%;
 margin-top: 5pt;
}
sup {
 font-size: 9pt;
 font-weight: normal; 
 margin-left: 0pt;
 }
sub {
 font-size: 9pt;
 font-weight: normal; 
 margin-left: 0pt;
}
p {
 font-size: 100%;
 font-weight: normal;
}
em {
 margin: auto 0pt auto 0pt;
 font-weight: normal;
 font-style: italic;
}
ol, ul, li { 
 margin-left: 15pt;
 margin-top: 0pt;
 font-weight: normal; 
}
table,th,td {
 font-weight: normal;
 font-family: "Times New Roman", serif;
}
hr {
 border: 0pt;
 width: 80%;
 text-align: center;
 margin: 0pt auto 0pt auto;
 color: #000000;
 background-color: #000000;
 height: 1pt;
}
.underline {
 text-decoration: underline;
}
.center {
 text-align: center;
}
.special_note {
 text-align: center;
 border: thin solid #000000;
 display: block;
 padding: 10pt;
 width: 75%;
}
/************************/
/* This is a workaround to target the old table-based layout & law.css stylesheet */
a.top, td.bgred, tr.bgblack, td.bgblack, td.spacer_cell, tr.logo {
 display: none;
}
table.below_header {
 width: 100%;
 page-break-before: never;
}