/*
 * Copyright (c) 2003 - 2007 OpenSubsystems s.r.o. Slovak Republic. All rights reserved.
 * 
 * Project: OpenSubsystems
 * 
 * $Id: message.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 containing styles for error, info and other messages.
 *
 * @version $Id: message.css,v 1.2 2007/01/07 06:14:08 bastafidli Exp $
 * @author Miro Halas
 * @code.reviewer Miro Halas
 * @code.reviewed 1.3 2005/01/16 07:45:41 bastafidli
 */

.clsMessages {
   position: relative;
   width: 100%;
   text-align: left;
   color: Black;
   background-color: #FFF4D6;
   border-top: 1px solid White;
   border-left: 1px solid White;
   border-bottom: 1px solid #999999;
   border-right: 1px solid #999999;
   padding: 5px 5px 5px 5px;
   margin-bottom: 5px;
}
div > .clsMessages {
  width: auto;
}
/* Regquired e.g. by login dialog */
form > .clsMessages {
  width: auto;
}

/* This style will be used when there are no messages but
   we still want to include the message area in the page */
.clsMessagesEmpty {
   position: relative;
   width: 100%;
   text-align: left;
   color: Black;
   background-color: #FFF4D6;
   border-top: 1px solid White;
   border-left: 1px solid White;
   border-bottom: 1px solid #999999;
   border-right: 1px solid #999999;
   padding: 5px 5px 5px 5px;
   margin-bottom: 5px;
   display: none;
}
div > .clsMessages {
  width: auto;
}
/* Regquired e.g. by login dialog */
form > .clsMessages {
  width: auto;
}

/* This style is created from clsMessages by appending Error in MessageTag */
.clsMessagesError {
	color: Red;	
}

/* This style is created from clsMessages by appending Info in MessageTag */
.clsMessagesInfo {
	color: Black;	
}

