@charset "utf-8";
/* CSS Document */
body {
			background: #f5f5f5;
			font-family: Arial, Verdana, sans-serif;
		}
		#container {
	background: #fff;
	border: 1px solid #cecece;
	max-width: 1170px;
	margin: 20px auto 0 auto;
	padding: 20px;
	text-align: center;
		}
		h1 {
	color: #096198;
		}
		a {
			color: #9fcd32;
			text-decoration: none;
		}
		a:hover {
			text-decoration: underline;
		}
		form {
			max-width: 500px;
			margin: 0 auto;
		}
		form fieldset {
			background: #f5f5f5;
		}
		form legend {
			color: red;
			font-size: 20px;
			font-weight: bold;
			text-transform: uppercase;
		}
		form ul {
			padding: 0px;
		}
		form ul li {
			list-style-type: none;
			text-align: left;
			margin-top: 10px;
		}
		form ul li:last-child {
			text-align: center;
		}
		form ul li input[type="text"],form ul li input[type="email"], form ul li textarea {
			border: 1px solid #cecece;,
			border-radius: 3px;
			-webkit-border-radius: 3px;
			-moz-border-radius: 3px;
			-o-border-radius: 3px;
			padding: 7px;
			width: 96%;
		}
		form ul li input[type="submit"] {
			background: red;
			border: none;
			color: #fff;
			cursor: pointer;
			font-size: 16px;
			font-weight: bold;
			padding: 10px;
			text-transform: uppercase;
			width: 50%;
		}
		.msn-ok, .msn-ko {
		    color: #fff;
		    padding: 10px;
		    text-align: center;
		    width: 65%;
		    margin: 20px auto;
		}
		.msn-ok {
			background: #22AF22;
		}
		.msn-ko {
			background: #CC2F2F;
		}
