/* TeX.css: Defaults für TeX-rendering in HTML
   wolfk 12/2015 
*/

body { 
    margin-left:3%;
    margin-right:3%;
    background-color:#ffffff;
    font-family: Arial; 
    font-size:100%; /* 3/2015 wolfk: empfohlene Methode, default 100% = 16px, hier etwas kleiner, ~14px */
}

a:link { color:#005BB7; text-decoration:none; }
a:visited { color:#005BB7; text-decoration:none; }
a:hover { color:#005BB7; text-decoration:underline; }
a:active { color:gold; text-decoration:underline; }

tt { font-family:"Courier New", Courier; font-size:1em;} 

h1 { text-align:center; font-size:2.0em; text-shadow:black 0.03em 0.03em 0.03em; letter-spacing:0.01em; color:#0058b0; }
h2 { font-size:1.6em; text-shadow:#888 0.03em 0.03em 0.03em; letter-spacing:0.01em;
     font-weight:bold; margin-top:0.2em; margin-bottom:0.1em;}
h3 { font-size:1.2em; text-shadow:#888 0.03em 0.03em 0.03em;  font-weight:bold; margin-top:0.2em; margin-bottom:0.1em;}
h4 { font-size:1.0em; font-weight:bold; margin-left:0em; margin-bottom:0em; margin-top:0.2em;}
h5 { font-size:1em;  font-weight:bold; margin-left:0em;  margin-bottom:0em; margin-top:0.1em;}

p { margin-left:0em; margin-right:0em; margin-top:0em; }
ol,ul,li { margin:0.1em 0.1em 0em 1em; padding: 0; }

code { color:blue; cursor:pointer; }
eq { font-size:1.2em;  font-weight:bold; font-style:italic; margin-left:0.1em; margin-right:0.1em; } /* Gleichungen ohne $$, zB mit Fraktur-Zeichen */
pre { margin-left:1em; margin-right:0em; margin-bottom:0em; margin-top:0em; }
table,th,td { border: 1px solid black;}
table { border-collapse: collapse;}

.right { text-align: right; }

/* ausklappbarer Text */
details { 
    background-color: #ffffff;
}

details > summary {
  padding:  4px;
  background-color: #ffeecc;
  border: none;
  box-shadow: 2px 2px 4px #888888;
  cursor:pointer;
}
