/*
 * This stylesheet overlaps with some of the existing ones in Xyka.
 * Conflicting or repeated styles should be removed from existing stylesheets when implementing.
 */

body {
  margin:0;
  padding:0;
  background:#034889;
  font:85% Calibri,Arial,Helvetica,sans-serif;
  color:#222;
}
img {
  image-rendering:optimizeQuality; /* https://developer.mozilla.org/En/CSS/Image-rendering */
  -ms-interpolation-mode:bicubic; /* http://css-tricks.com/ie-fix-bicubic-scaling-for-images */
}

/* INLINE IMAGES */
img.alignLeft,
img.alignleft {
  margin:0 12px 1em 0;
  border-color:#444;
  float:left;
  clear:both;
}
img.alignRight,
img.alignright {
  margin:0 0 1em 12px;
  border-color:#444;
  float:right;
  clear:both;
}
img.alignCenter,
img.aligncenter {
  margin:0 0 .5em 0;
  border-color:#444;
}