﻿/* $ID:$
15/2-2011
Mails shouldn't be centered therefore I'm moving 
this part of body declaration to a seperate file.
*/
body{
  /* MSIE 5 doesn't center based on auto left/right margins,
     but 'text-align:center' does center top-level divs: */
  text-align: center;
  /* Specify a min-width for the body as wide as the 'wrapper'
     element itself. This prevents negative (i.e. inaccessible)
     left-margins in narrow browser windows when using 
     Navigator 6+/Mozilla on Win32: */
  /* min-width: 1550px; */
  min-width: 1250px;
}
#wrapper {
  /* Reset alignment to compensate for 'text-align:center': */
  text-align: left;
  /* Specify the width of the element. This should be the same
     as 'body min-width': */
  width: 1000px;
  /* Set left and right margins to auto,thus centering the 
     element in the containing (body) tag: */
  margin-left: auto;
  margin-right: auto;
}

