/* ------------------------------------------------

   'Site' Template > 'Message' Stylesheet
   
   * This stylesheet is loaded by any page that calls 
     the include 'message.php'     

--------------------------------------------------- */

/* ------------------------------------------------
	=CONTENT STRUCTURE
   ------------------------------------------------ */
   
	#message-container {
		position: fixed;
		top: 10px;
		text-align: center;
		width: 100%;
	}
		#message-container #message {
			position: relative;
			width: 330px;
			height: 100px;
			background-color: #000000;
			text-align: center;
			padding: 10px;
			margin: auto;
		}
			
			#message-container #message a.close {
				position: absolute;
				top: 5px;
				right: 5px;
			}
			#message-container #message p {
				margin-top:3px;
			}
			
		#message-container .general {
			color: #333333;
			font-size:14px;
			line-height:18px;
		}
		#message-container .success {
			color: #a0eea0;
			font-size:14px;
			line-height:18px;
		}
		#message-container .failure {
			color: #ff9999;
			font-size:14px;
			line-height:18px;
		}
