/* start of siw_ymes.css */

/*----------------------------------------------------------------------*/
/*  FILENAME 	:  siw_ymes.css  										*/
/*  DESC		:  Error Messages StyleSheet							*/
/*----------------------------------------------------------------------*/
/*  REVISIONS:															*/
/*	Date		Name		Reason										*/
/*	---------	----------	--------------------------------			*/
/*  29-APR-13   FELP1		Created File, Defined Base Styles		    */
/*----------------------------------------------------------------------*/


/******************************************************/
/* Message box definitions                            */
/******************************************************/
#sitsmessagebox {
	margin:				20px;
	border-radius: 		8px;
    padding: 			5px;
}

p.sitsmessagetitleicon {            
	float:				left;
	margin:				0px;
	padding:			3px;
}

.msghint{
	border:				1px solid #BDDFFF;
	-webkit-box-shadow: 4px 4px 5px rgba(189, 223, 255, 0.5);
	-moz-box-shadow:    4px 4px 5px rgba(189, 223, 255, 0.5);
	box-shadow:         4px 4px 5px rgba(189, 223, 255, 0.5);
}

.msginfo{
	border:				1px solid #A5EBBD;
	-webkit-box-shadow: 4px 4px 5px rgba(165, 235, 189, 0.5);
	-moz-box-shadow:    4px 4px 5px rgba(165, 235, 189, 0.5);
	box-shadow:         4px 4px 5px rgba(165, 235, 189, 0.5);
}

.msgwarn{
	border:				1px solid #FFF373;
	-webkit-box-shadow: 4px 4px 5px rgba(255, 243, 115, 0.5);
	-moz-box-shadow:    4px 4px 5px rgba(255, 243, 115, 0.5);
	box-shadow:         4px 4px 5px rgba(255, 243, 115, 0.5);
}

.msgerror{
	border:				1px solid #FF4040;
	-webkit-box-shadow: 4px 4px 5px rgba(255, 64, 64, 0.5);
	-moz-box-shadow:    4px 4px 5px rgba(255, 64, 64, 0.5);
	box-shadow:         4px 4px 5px rgba(255, 64, 64, 0.5);
}

#sitsmessagetitlesection{                    
	font-weight: 	bold;
	color: 			#FFFFFF;
	height: 		25px;
	border-width: 	0px;
	width:			100%;
}

.msghint #sitsmessagetitlesection{
	border-radius: 	5px;
	background-color: 	#BDDFFF;
}

.msginfo #sitsmessagetitlesection{
	border-radius: 	5px;
	background-color: 	#A5EBBD;
}

.msgwarn #sitsmessagetitlesection{
	border-radius: 	5px;
	background-color: 	#FFF373;
}

.msgerror #sitsmessagetitlesection{
	border-radius: 	5px;
	background-color: 	#FF4040;
}

#sitsmessagecode{                    
	float:	right;
}

#sitsmessagecontentsection {
	width: 			100%;
	border:			0px;                   
	font-weight: 	bold;
} 

#sitsmessagecontenticon {
	float:			left;
	padding-left:	5px;
	padding-top:	5px;
	margin:			0px;
}

.msghint #sitsmessagecontentsection{
	color: 	#BDDFFF;
}

.msginfo #sitsmessagecontentsection{
	color: 	#A5EBBD;
}

.msgwarn #sitsmessagecontentsection{
	/*color: 	#FFF373;*/
}

.msgerror #sitsmessagecontentsection{
	color: 	#FF4040;
}

#sitsmessagecontent {
	font-family: 	'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;
	font-weight:	bold;
	margin:			3px;
	padding-left:	15px; 
}


