/* 
    Document   : exceptions
    Created on : 31.03.2011, 17:55:30
    Author     : Schoenmann Guenter
    Description:	This stylesheet is used to customize the output of Exceptions.
					These css is used with the class inoplugs_exceptions. 
					There are basic values defined in this stylesheet on a template basis.

					Do not alter any values here, because this file can be updated by any
					future release version !!!!!!!!

					Instead take the file multiselect_custom.css, which will automatically be
					loaded, if it exists.

					There you can override the standard settings from this file.
					Additionally you can customize the output by adding the extension
					you set in the parameter CSS-ID (eg. xy) to the classes imps-*
					(eg. will become ipms-*-xy).

					You can define CSS-ID for every query or reuse it in different queries.

   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

/*
=========================================================================
	START OF DEFAULT CLASSES - start copying from here
=========================================================================
*/

/*	classes for displaying Errors	*/

.inoplugs-exception-container {
	width: 100%;
    text-align: left;
    background-color: white;
	
    border-right-style: solid;
    border-left-style: solid;
    border-bottom-style: solid;
    border-top-style: solid;
    border-right-width: 2px;
    border-left-width: 2px;
    border-bottom-width: 2px;
    border-top-width: 2px;

}

.inoplugs-exception-container .inoplugs-exception-head-div {
	width: 100%;
    text-align: center;
	background-color: white;
	padding-top: 10px;
}
.inoplugs-exception-container .inoplugs-exception-head-p {
	width: 100%;
    text-align: center;
    font-weight: bolder;
	font-size: 1.5em;
}

.inoplugs-exception-container .inoplugs-exception-div {
	width: 100%;
	padding-top: 10px;
}

.inoplugs-exception-container inoplugs-exception-p {
	width: 100%;
    text-align: left;
}

.inoplugs-info-error {
    color: red;
    font-weight: bold;
}
.inoplugs-info-ok {
    color: green;
    font-weight: bold;
}
.inoplugs-info-normal {
    color: black;
    font-weight: bold;
}

/*
 *	preformatted text eg. for sourcecode and datastructures
 *	=======================================================
 */

.inoplugs-exception-pre {
	white-space: pre-wrap;
    font-family: 'Courier New',Courier,monospace;
}

/*	output of text when parsing content of shortcode handler <span>  */
.inoplugs-exception-pre .inoplugs-pre-error {
    color: red;
}

.inoplugs-exception-pre .inoplugs-pre-normal {
    color: blue;
}

.inoplugs-exception-pre .inoplugs-pre-ok {
    color: green;
}



/*
=========================================================================
	END OF DEFAULT CLASSES - Add your classes after this point
=========================================================================
*/