
#cv {
	width: 100%;
	max-width: 800px;
	margin: 30px auto;
	padding: 20px 30px;
	border: 2px dashed #aaa;
}

#cv_header {
	padding: 0 0 15px 0;
	border-bottom: 1px solid #ddd;
}

#cv_header #cv_name {
	padding: 80px 0 0 25px;
	font-size: 35px;
	font-weight: bold;
	border-left: 15px solid #494755;
}

#cv_header #cv_name strong {
	font-size: 40px;
}
	
#cv_header h1 {
	font-size: 20px;
	text-align: right;
}
	
#cv_header #infos {
	margin: 0 0 30px 0;
	padding: 10px;
	background: #f4f4f4;
	text-align: right;
}
	
#cv_content {
	margin: 20px 0;
}
	
#cv_content h2 {
	clear: both;
	padding: 8px 0;
}

#cv_content h2:first-letter {
	font-size: 35px;
}
	
#cv_content .bloc {
	clear: both;
	padding: 10px 0;
}

#cv_content .bloc .date {
	text-align: right;
	font-size: 17px;
	font-style: italic;
}
	
#cv_content .bloc .bloc_content {
	padding: 3px 10px;
	background: #f4f4f4;
}

#cv_content .bloc .bloc_content p {
	margin: 5px 0;
}

#cv_content .bloc .bloc_content .boite {
	font-style: italic;
}
	
@media (min-width: 600px) {

	#cv_header #cv_name {
		float: left;
		width: 250px;
	}

	#cv_header #infos {
		float: right;
		width: 300px;
	}

	#cv_header h1 {
		float: right;
		width: 450px;
	}

	#cv_content .bloc .date {
		float: left;
		width: 170px;
	}

	#cv_content .bloc .bloc_content {
		float: right;
		width: 550px;
	}

}


@media print {

	header, footer {
		display: none;
	}

	#cv {
		max-width: none;
		margin: 30px 20px;
	}

}