/*
 * Copyright (c) 2003 - 2007 OpenSubsystems s.r.o. Slovak Republic. All rights reserved.
 * 
 * Project: OpenSubsystems
 * 
 * $Id: html.css,v 1.2 2007/01/07 06:14:52 bastafidli Exp $
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License. 
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
 */

/*
 * Global CSS file included by every page specifying default behaviour and look 
 * of HTML elements for this project.
 *
 * @version $Id: html.css,v 1.2 2007/01/07 06:14:52 bastafidli Exp $
 * @author Miro Halas
 * @code.reviewer Miro Halas
 * @code.reviewed Initial revision
 */

/* This resets any borders around the whole page */
body {
   margin: 0px 0px 0px 0px;
   padding: 0px 0px 0px 0px;
   border: 0px solid White;
   font: normal normal normal 12px Verdana, Geneva, Arial, Helvetica, sans-serif;
   text-align: center;
}

/* H1 used for title of the page is by default surrounded by white space so remove it */
h1 {
   margin-bottom: 0em;
   margin-top: 0em;

   font: normal normal normal 24px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* H2 used for sub title of the page is by default surrounded by white space 
   so remove it */
h2 {
   margin-bottom: 0em;
   margin-top: 0em;

   font: normal normal normal 20px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* Hyperlinks are by default not underlined */
a {
   text-decoration: none;
}

/* Hyperlinks are underlined only when mouse is over them*/
a:hover {
   text-decoration: underline;
}

/* Form by default surrounded by white space so remove it */
form {
   margin: 0px 0px 0px 0px;
}

/* Labels used especially for dialog controls should use bold font */
label {
   font-weight: bold;
}

/* Buttons have to use the same font as the rest of the page */
button {
   padding-top: 2px;
   padding-bottom: 2px;
   
   background-color: #DEDEDE;
   font: normal normal normal 12px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* Unordered list has no space around it's items */
ul {
   margin-left: 10px;
   margin-top: 0px;
   margin-bottom: 0px;
   border-top: 0px;
   border-bottom: 0px;
   padding-left: 10px;
   padding-top: 0px;
   padding-bottom: 0px;
}

/* Paragrap makes space only before the paragraph, not after 
   (only if there is another paragraph). This also makes it 
   consistent between IE and Mozilla */
p {
   margin-bottom: 0px;
   border-bottom: 0px;
   padding-bottom: 0px;
}

hr {
   margin-top: 0px;
   margin-left: 0px;
   margin-bottom: 0px;
   margin-right: 0px;
   padding-top: 0px;
   padding-left: 0px;
   padding-bottom: 0px;
   padding-right: 0px;
}

