/*

   This style sheet defines a few simple default styles (like
   font-face, default link style etc.)

*/

body {
  font-family: Verdana, Arial, sans-serif;
  font-style: normal;
  font-size: 12px;
  background-color: white;
  color: black;
}

/* for those browsers with flawed inheritance */
form, table, caption {
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
  color: black;
}

/* using Arial for Arabic */
body.lang-ar, body.lang-ar form,
body.lang-ar table, body.lang-ar caption {
  font-family: Arial, Verdana, sans-serif;
  font-size: 16px;
}

strong { font-weight: bold; }
em     { font-style: italic; }
small  { font-size: 11px; }
center { text-align: left; }
font   { color: black; }

/*
   Horizontal rulers in the HTML source are used as a fallback
   for non-CSS browsers to separate individual parts of the document.
   For CSS browsers this is achieved by page layout and therefore the
   rulers must not be displayed. If rulers should be used in the
   content section an appropriate style contents.css needs to be
   defined.
*/
hr { display: none; }

/* other elements not to display in CSS browsers */
.textmode { display: none; }


/* definition lists */

dl { margin: 1em 0; }

dt { margin-top: 1em; }

dd { margin: .3em 0 0 2em;}

/* blockquote is not for indentation */
blockquote { margin-left: 0; margin-right: 0; padding: 0; }

