/*************************************************************************
   
RULES:
   1. Use as low number of rules as possible!
   2. Use selectors with low priority (selectors that are not specific - preferably element and class selectors)

Ad 2.- Problem:
   Author stylesheets <link>, <style> share the same priority. Selector that is more specific wins.
   This can result in fact that user cannot overide with element selectors rules in this stylesheet
   that are written for example using class selectors.

@package    Server
@author     Daniel Sevcik <daniel.sevcik@dev.webdevelopers.cz>
@version    $Revision: 1.27 $
@copyright  2005 Daniel Sevcik
@since      2005-04-04
@access     public
   
************************************************************************/

/*************************************************************************
   QUIRKS
*/

* { /* content-box sizind is not natural in my opinion */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
}

img {
      border: none;
}

abbr, acronym { 
  cursor: help;
}

a abbr, a acronym { /* Avoid displaying other cursor on A links */
  cursor: inherit;
}

.wikipedia {
  cursor: pointer;            
}

/*************************************************************************
   COMMON DEFAULTS
*/

.error {
  color: red;
}

.warning {
  color: orange;
}

.powered {
 }

.noCSS {
  display: none;
}
.area {
  width: 720px;
  margin: 0px auto;
}

.extra {
  width: 6px;
  height: 6px;
  margin: auto 8px;
  position: absolute;
}

/************************************************************************/
@media print {
  /* style sheet for print goes here */
  * {
    background-color: white;
    color: black;
  }
}

