/*
*
* slogan.css
*
*/

/** Slogan + bouton d'inscription **/
#page-head {
	background-color:#f1efee;/*Couleur de fond*/
	clear: both;
	width: 100%;/*Largeur*/
	height: 85px;/*Hauteur*/
	transition: margin-top 0.3s ease 0s;
}

	#page-head .slogan {
		position: relative;
		max-width: 1240px;
		min-width: 940px;
		margin-right: auto;
		margin-left: auto;
		padding: 0 40px;
	}
		#page-head .slogan .row .left-col {
			max-width: 920px;
			min-width: 620px;
			padding-right: 10px;
		}
		
		#page-head .slogan .row .left-col h1 {
			font-family: "Kozuka Gothic Pro L", Open Sans, Helvetica, Tahoma, Verdana, Arial, sans-serif;
			color: #d85454;
			display: inline-block;
			font-size: 28px;
			font-weight: 300;
			margin: 25px 0;
			float: left;
			transition: all 0.3s ease 0s;
		}
		
		#page-head .slogan .row .right-col {
			position: absolute;
			right: 0;
			top: 0;
			width: 300px;
		}
			
			#page-head .slogan .row .right-col .register-controls {
				position: absolute;
				padding: 20px 0;
				vertical-align: middle;
				width: 300px;
				height: auto;
			}
			
				#page-head .slogan .row .right-col .register-controls #button{
					background-color: #d85454;
					width: auto;
					height: auto;
					float: left;
					border: 0 none;
					border-radius: 5px;
					color: #ffffff;
					cursor: pointer;
					font-family: "Lucida Grande", Tahoma, Verdana, Arial, sans-serif;
					font-size: 12px;
					font-weight: bold;
					outline: none;
					text-align: center;
					text-decoration: none;
					transition: box-shadow 0.2s ease 0s, background-color 0.2s ease 0s;
				}
					
					#page-head .slogan .row .right-col .register-controls #button:hover{ 
						background-color: #e85a57;
					}
				
					#page-head .slogan .right-col .register-controls #button a{
						float: left;
						padding: 14px 22px;
						text-decoration: none;
						color: #ffffff;
					}
