/*
 * Copyright (c) 2006 - 2007 OpenSubsystems s.r.o. Slovak Republic. All rights reserved.
 * 
 * Project: OpenSubsystems
 * 
 * $Id: tabtoolbar.css,v 1.2 2007/01/07 06:14:08 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 look and feel and layout for the application toolbar
 * layout. It is initialized and used by core:moduleinit tag.
 *
 * @version $Id: tabtoolbar.css,v 1.2 2007/01/07 06:14:08 bastafidli Exp $
 * @author Julian Legeny
 * @code.reviewer Miro Halas
 * @code.reviewed 1.4 2006/04/19 14:20:39 bastafidli
 */

/* Styles for web module tags that will be generated by WebModuleTag */
#module1 {
   left: 0px;
   width: 100px;
}
div > #module1 {
   left: 0px;
} 
#module2 {
   left: 100px;
   width: 100px;
}
div > #module2 {
   left: 100px;
}
#module3 {
   left: 200px;
   width: 100px;
}
div > #module3 {
   left: 200px;
}
#module4 {
   left: 300px;
   width: 100px;
}
div > #module4 {
   left: 300px;
}
/* TODO: Everybody: add here more module IDs if neccessary */

.clsToolbarButtonActive {
   position: absolute;

   top: 12px;
   height: 27px;
   padding-top: 3px;
   border-top: 1px solid White;
   border-left: 1px solid White;
   border-bottom: 1px solid #99CCFF;
   border-right: 1px solid #999999;

   background-color: #99CCFF;
   background-image: url(/core/images/toptabactivebg.gif);
   background-repeat: repeat-x;
   background-position: top;   

   text-align: center;
   vertical-align: middle;
   font-weight: Bold;
   cursor: pointer;
}
div > .clsToolbarButtonActive
{
   height: 22px;
}

.clsToolbarButton {
   position: absolute;

   top: 12px;
   height: 27px;
   padding-top: 3px;
   border-top: 1px solid White;
   border-left: 1px solid White;
   border-bottom: 1px solid White;
   border-right: 1px solid #999999;

   background-color: #C1E1FF;
   background-image: url(/core/images/toptabbg.gif);
   background-repeat: repeat-x;
   background-position: top;   

   text-align: center;
   vertical-align: middle;
   cursor: pointer;
}
div > .clsToolbarButton
{
   height: 22px;
} 

