/*
 This style sheet is for TMC information that fits one one screen.
 It is presented as a rectangle with a width = 750px
 and a height of 450px. Content marigins are 10px all round.
*/
html{
 /* default white background */
 background:white;
 margin:0px;
 }
a:link{
 color:#ff4444
 }
a:visited{
 color:#882222
 }
a:active{
 color:#ff44ff
 }
body{
 /* 750px * 450px rectangle centred on screen */
 width:750px;
 height:450px;
 background-color:white;
 /* Centre on the canvas using L & R AUTO margins */
 margin:0 auto;
 border:0;
 padding:10px;
 /* Basic font is Times Roman in black */
 font-family:Times-Roman, times, serif;
 color:#black;
 font-size:normal;
 text-align:center;
 }
h3{
 /* Used for title row */
 margin:0;
 padding-top:10px;
 color:#4488ff;
 font-weight:normal;
 }
img{
 border:0;
 }
.xref{
 margin:0;
 padding:5px;
 color:black;
 text-align:center;
 font-size:small;
 }
.footer{
 margin:0;
 padding:5px;
 color:black;
 text-align:center;
 font-size:xx-small;
 font-style:italic;
 }
.map{
 margin:0 auto;
 border:0 none;
 text-align:center;
 }