/*
Theme Name: blank1
*/
 

body, table, tr, th, td, p {
  font-family: arial, helvetica;
}
/* Font used throughout. */


h2 {
  font-size: x-large;
  margin-top: 0px;
}
/* Compensate for reduction in
   font size throughout text.
   Also, space gets added above
   unless I have the explicit
   0px for margin-top. Maybe
   something else is styling
   it.
*/


td.side > img, td.jip-side > img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* Centre the first image in
   the sidebar.

   Here and elsewhere, I've got
   pairs of classes C and jip-C.
   The jip-C ones are added later,
   after I decided to prefix with
   my initials to avoid clashes.
   The shortcodes in functions.php
   use these. I've kept the 
   unprefixed ones in case there's
   any manually added old code
   on individual pages that
   refers to them.
*/


td.side > br, td.jip-side > br {
  display: none;
}
/* Disable a <br> that WordPress
   inserts after that image.
*/


img.sun, img.jip-sun {
  margin-bottom: -18px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* Remove spurious space under the
   sun image. This only matters if
   the user has a supplementary
   paragraph under it.
   Also centre it.
*/


p.credits, p.jip-credits {
  font-size: x-small;
}
/* In the credits, make the text
   extra small (size=-2). 
*/


p.center, p.jip-center {
  text-align: center;
}
/* For centering paragraphs,
   including the credits.
*/


p.sidep, p.jip-sidep {
  font-size: small;
}
/* If Mike puts any other text
   in the sidebar, just small
   (size=-1). 
*/


td.main, td.jip-main {
  vertical-align: top;
}


td.main, td.jip-main, p.main, p.jip-main {
  font-size: small;
}
/* In the main text, small
   (size=-1).
*/


span.jip-caption {
  font-size: x-small;
}
/* In image captions. 
*/


p.mainend, p.jip-mainend {
  font-size: x-small;
}
/* In the credits at the end
   of the main text, extra 
   small.
*/


p:empty {
  display: none;
}
/* Try to switch off empty
   paragraphs, as they're
   probably inserted by
   WordPress.
*/







