/*      FONTS       */
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700|Roboto:400,500);

/*      BASICS      */
body {
  font-family: roboto,sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.4;
}

/*      STRUCTURE       */
#container {
  border-top: 3px solid #333;
  width: 680px;
  margin: 48px auto;
}
main {
	width: 420px;
	float: right;
	padding-bottom: 1em;
}
main p {
	padding-bottom: 0.5em;
}
main li {
	list-style-type: square;
	margin-left: 1.2em;
}
figure, img {
	width: 100%;
}
figure {
	border-bottom: 3px solid #333;
	margin-bottom: 0.5em;
}
figcaption p {
	font-size: 90%;
	color: #aaa;
}
figcaption h1 {
	position: relative;
	text-indent: 1.3em;
}
figcaption h1:before {
	content: '';
	background: #666;
	height: 0.75em;
	width: 0.75em;
	display: block;
	position: absolute;
	top: 0.25em;
	left: 0;
}

/*		HEADER		*/
header h1 {
	text-indent: 260px;
	font-size: 4em;
  font-family: 'roboto condensed',sans-serif;
  padding-bottom: 18px;
}
header h1 i {
	color: #aaa;
}

/*		ASIDE		*/
aside h1 {
	font-weight: 700;
	padding-bottom: 0.5em;
	line-height: 1.5;
}
aside p {
	padding-bottom: 0.5em;
}

aside {
	padding-bottom: 1em;
	font-size: 92%;
	width: 120px;
}

/*      FORM        */
form {
	clear: both;
  display: block;
  padding-left: 260px;
  padding-bottom: 3em;
  border-top: 3px solid #333;
  border-bottom: 3px solid #333;
}
legend {
  font-family: 'roboto condensed',sans-serif;
	font-weight: 700;
  font-size: 20px;
  display: block;
}
form h1 {
  font-family: 'roboto condensed',sans-serif;    
  font-weight: 700;
  font-size: 18px;
}
form h3 {
  color: #999;
  font-size: 92%;
}
form label {
  display: block;
  border-bottom: 2px solid #ccc;
  margin: 0.5em 0;
  padding: 0.5em 0;    
}
form input[type=text]{
  background: #eee;
  border: 0;
  border-bottom: 2px solid #555;
  font-size: 16px;
  padding: 3px;
  width: 100%;
  margin: 0.5em 0;
	font-family: monospace;
	color: brown;
}
form input[type=text]:focus {
	outline: none;
	background: #ffc;
}
form input[type=submit] {
  font-family: 'roboto condensed',sans-serif;
  padding: 0.25em 0.75em; 
	border: 2px solid #555;
	font-size: 1.1em;
	font-weight: 300;
	margin-top: 0.5em;
	height: 1.75em;
	line-height: 1em;
	background: white;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
form input[type=submit]:hover {
	cursor: pointer;
	background: #222;
	color: #fff;
	border-color: #222;
}
#main_column form input:focus {
	background: orange;
	outline: none;
}

form label[for=userfile] {
	position: relative;
	height: 3em;
}
form label[for=userfile] input {
  font-family: 'roboto condensed',sans-serif;
  padding: 0 0.75em; 
	border: 2px solid #555;
	font-size: 1.1em;
	font-weight: 300;
	margin-top: 0.5em;
	height: 1.75em;
	line-height: 1em;
	background: white;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	top: 0;
	left: 0;
	position: absolute;
	width: 8em;
}
form label[for=userfile] input:hover {
	cursor: pointer;
	background: #222;
	color: #fff;
	border-color: #222;
}
form label[for=userfile] p {
	position: absolute;
	top: 0.5em;
	left: 11.5em;
	height: 3.4em;
	line-height: 1;
}
form input[type=file]{
	margin: 0.5em 0;
	font-family: roboto,sans-serif;
	font-size: 16px;
	border: 0;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
form .erreur span {
  display: block;
  border-top: 3px solid maroon;
  padding: 0.5em;
  margin: 0.5em 0;
  background: coral url( '../m/circle-x-4x.png' ) no-repeat 4px 3px;
  padding-left: 48px;
  margin-top: -0.65em;
}
form .valide span {
  display: block;    
  border-top: 3px solid green;
  padding: 0.5em;
  margin: 0.5em 0;
  background: chartreuse url( '../m/circle-check-4x.png' ) no-repeat 4px 3px;
  padding-left: 48px;
}

/*      GENERIC     */
b {
  font-weight: bolder;
}
tt {
	font-family: monospace;
	color: brown;
}