/*
 * Copyright (c) 2003 - 2007 OpenSubsystems s.r.o. Slovak Republic. All rights reserved.
 * 
 * Project: OpenSubsystems
 * 
 * $Id: basicwebsite.css,v 1.2 2007/01/07 06:14:24 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 
 */

/*
 * CSS file containing default look and feel and layout for the basicwebsite 
 * layout. The look and feel specified in this file for classes of elements 
 * can be customized in individual pages by specifying CSS style for the IDs 
 * of the elements.
 *
 * @version $Id: basicwebsite.css,v 1.2 2007/01/07 06:14:24 bastafidli Exp $
 * @author Miro Halas
 * @code.reviewer Miro Halas
 * @code.reviewed Initial revision
 */

/* DIV covering entire HTML body. It is initially hidden until fully loaded. */
.clsWholePage {
   position: relative;
   display: none;

   width: 100%;

   margin-top: 0px;
   margin-left: 0px;
   margin-bottom: 0px;
   margin-right: 0px;
   padding-top: 0px;
   padding-left: 0px;
   padding-bottom: 0px;
   padding-right: 0px;
   border-top: 0px solid White;
   border-left: 0px solid White;
   border-bottom: 0px solid White;
   border-right: 0px solid White;
}

/* DIV representing header of the website. I want to have border around 
   the content therefore I specify padding here */
.clsHeader {
   position: relative;

   padding-left: 5px;
   padding-right: 5px;
}

/* DIV representing body (betwen header and footer) of the website. */
.clsBody {
   position: relative;

   padding-left: 0px;
   padding-right: 0px;
}

/* DIV inside of body (betwen header and footer) of the website containing
   the actual content of the page. */
.clsBodyContent {
   position: relative;
}

/* DIV representing footer of the website. I want to have
   border around the content therefore I specify padding here */
.clsFooter {
   position: relative;

   padding-left: 5px;
   padding-right: 5px;
}

