/**
 * Main CSS
 * 
 * @project	garage schaeffer
 * @author	Brice Gassmann
 * @colordef #003c79; Bleu foncé Ford
 * @colordef #1ca7df; Bleu clair Ford
 */


/* ------------------------------- */
/* =       Useful classes          */
/* ------------------------------- */

.clear {
	zoom: 1; /* For IE 6 and 7 (formating context) */
}
.clear:after {
	content: "\0020";		/* Adding a space after the element */
	clear: both;			/* The space must be placed below any float element */
	dispaly: block;
	visibility: hidden;
	height: 0;
	font-size: 0;
}



/* ------------------------------- */
/* =        Base style             */
/* ------------------------------- */

html, body, form, ul, ol, blockquote {
	margin: 0;
	padding: 0;
}
html {
	font-size: 100%;
}
body {
	font-family: Verdana, sans-serif;
	font-size: 62.5%;
	line-height: 1.4em;
	background: #000;
	color: #363636;
}

/*      Links      */
a {
	text-decoration: none;
	color: #003c79;
	cursor: pointer;
}
a:hover {
	color: #1ca7df;
}
a.pdf {
	display: inline-block;
	height: 24px;
	padding-left: 28px;
	line-height: 20px;
	background: url("../img/pdf.png") no-repeat;
}

/*     Titles      */
h1 {
	height: 65px;
	margin: 0 0 20px 0;
	padding: 0 10px 0 30px;
	font-size: 2.2em;
	line-height: 1.8em;
	text-align: left;
	color: #000;
	background: url("../img/h1.png") no-repeat;
}
h2 {
	margin: 20px 0 10px 0;
	font-size: 1.4em;
	text-align: left;
	color: #116cc8;
}
h3 {
	height: 36px;
	margin: 30px 0 20px 0;
	padding: 0 10px 0 30px;
	font-size: 1.5em;
	font-weight: normal;
	line-height: 33px;
	text-align: left;
	color: #000066;
	background: url("../img/h3.png") no-repeat;
}

/*      Lists       */
ul {
	margin-left: 40px;
}
ul, ul ul {
	list-style-type: none;
}
	ul li {
		margin-bottom: 4px;
	}
	ul > li, ul > ul > li {
		padding-left: 20px;
	}
	ul > li {
		background: url("../img/puce-list.jpg") no-repeat left 0.45em;
	}
	ul > ul > li {
		background: url("../img/puce-list.jpg") no-repeat left 0.45em;
	}
	ul > ul {
		margin-left: 26px;
	}

/*      Forms      */
input, select, textarea {
	padding: 5px;
	background: #fdfdfd;
	border: 1px solid #ddd;
}
select {
	padding-bottom: 1px;
	padding-top: 1px;
}
input[type=button], input[type=submit] {
    margin: 10px 0;
    padding: 3px 8px;
    font-weight: bold;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.15);
    color: #fff;
    background: #0c4c8e;
    background: -moz-linear-gradient(top, #116cc8, #0c4c8e);
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#116cc8), to(#0c4c8e));
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#116cc8', endColorstr='#0c4c8e');
    border: 1px solid #116cc8;
    border-radius: 10px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}
input[type=button]:hover, input[type=submit]:hover {
	background: -moz-linear-gradient(top, #0c4c8e, #116cc8);
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#0c4c8e), to(#116cc8));
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0c4c8e', endColorstr='#116cc8');
}
input:-webkit-input-placeholder {
    color: #999;
}
input:-moz-placeholder {
    color: #777;
}

.jforms-label {
	float: right;
	margin-right: 5px;
}

.jforms-table th, .jforms-table td {
	padding: 4px 0;
}

/*      Tables      */
table {
	border-collapse: collapse;
}



/* ------------------------------- */
/* =          Library              */
/* ------------------------------- */

/*      Action links      */
.lightAction {
	display: inline-block;
	width: 24px;
	height: 24px;
}
	.lightAction.edit {
		background: url("../img/icons/file-text.png") no-repeat;
	}
	.lightAction.delete {
		background: url("../img/icons/ko-red.png") no-repeat;
	}
	
.action {
	display: inline-block;
	padding-left: 30px;
}
	.action.basic {
		padding-left: 16px;
		background: url("../img/icons/puce.png") no-repeat 0 center;
	}
	.action.add {
		background: url("../img/icons/plus-blue.png") no-repeat 0 center;
	}

.actions {
	margin-top: 10px;
	list-style-type: none;
}
	.actions > li {
		display: inline-block;
		margin-right: 20px;
	}
	
/*       Pagination       */
.pagination {
	padding: 1px 5px;
	overflow: auto;
}
.pagelinks {
	float: right;
	margin: 5px 0;
	list-style-type: none;
}
	.pagelinks li {
        float: left;
        padding: 0;
        margin: 0 3px;
        background: none;
    }
    .pagelinks li a, .pagelinks .pagelinks-current, .pagelinks .pagelinks-disabled {
    	display: block;
    	padding: 2px 5px;
    	border-radius: 6px;
    }
    .pagelinks li a:hover {
    	color: inherit;
    	background: #ebebeb;
		background: -moz-linear-gradient(top, #ebebeb, #f8f8f8);
		background: -webkit-gradient(linear, 0 0, 0 100%, from(#ebebeb), to(#f8f8f8));
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb', endColorstr='#f8f8f8');
    }
    .pagelinks .pagelinks-current {
    	color: #fff;
    	background: #0c4c8e;
    	background: -moz-linear-gradient(top, #116cc8, #0c4c8e);
		background: -webkit-gradient(linear, 0 0, 0 100%, from(#116cc8), to(#0c4c8e));
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#116cc8', endColorstr='#0c4c8e');
    }
    .pagelinks .pagelinks-disabled {
    	color: #bbb;
    }
	
/*        Onglets        */
.tab {
	overflow: auto;
	padding-left: 20px;
	margin-bottom: 8px;
	list-style-type: none;
	border-bottom: solid 1px #e3e3e3;
}
	.tab > li {
		float: left;
		margin-right: 5px;
	}
	.tab > li > a {
		display: block;
		padding: 5px 8px;
		background: #e2e2e2;
		background: -moz-linear-gradient(left, #e3e3e3, #f5f5f5);
		background: -webkit-gradient(linear, 0 0, 0 100%, from(#e3e3e3), to(#f5f5f5));
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e3e3e3', endColorstr='#f5f5f5');
	}
	.tab > li.selected > a, .tab > li > a:hover {
		color: #fff;
		background: #0c4c8e;
		background: -moz-linear-gradient(left, #0c4c8e, #116cc8);
		background: -webkit-gradient(linear, 0 0, 0 100%, from(#0c4c8e), to(#116cc8));
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0c4c8e', endColorstr='#116cc8');
	}
	
/*        Toggle         */
.toggleOpen, .toggleClose {
	display: inline-block;
	padding-left: 16px;
}
.toggleOpen {
	background: url(../img/icons/flecheBas.png) no-repeat 0 center;
}
.toggleClose {
    background: url(../img/icons/flecheDroite.png) no-repeat 0 center;
}



/* ------------------------------- */
/* =          Header               */
/* ------------------------------- */

header {
	width: 800px;
	margin: 30px auto 10px;
}
	header #headerLogo {
		
	}
	


/* ------------------------------- */
/* =        Navigation             */
/* ------------------------------- */

nav {
	position: absolute;
	top: 50px;
	left: 10px;
}
	nav > ul {
		overflow: auto;
		margin: 0 auto;
		list-style-type: none;
	}
	nav > ul > li {
		display: block;
		margin: 0;
		padding: 0;
		background: none;
	}
	nav > ul > li > a {
		display: inline-block;
	}
	nav > ul > li.selected > a, nav > ul > li > a:hover {
		
	}



/* ------------------------------- */
/* =          Content              */
/* ------------------------------- */

body > section {
	width: 780px;
	margin: 10px auto;
	padding: 10px 10px 20px 10px;
	font-size: 1.3em;
	line-height: 1.3em;
	color: #fff;
	background: url("../img/page-background.jpg");
}


/* ------------------------------- */
/* =          Footer               */
/* ------------------------------- */

footer {
	width: 800px;
	margin: 15px auto 10px;
	text-align: center;
	font-size: 1.2em;
	color: #fff;
}
	footer a {
		color: #b1b1b1;
		text-decoration: underline;
	}
	footer a:hover {
		color: #b1b1b1;
		text-decoration: none;
	}



/* ------------------------------- */
/* =          Bandeau              */
/* ------------------------------- */

#bandeau {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 1.2em;
}
	#bandeau a {
		color: #999;
		text-decoration: underline;
	}
	#bandeau a:hover {
		color: #999;
		text-decoration: none;
	}



/* ------------------------------- */
/* =          Accueil              */
/* ------------------------------- */

#carteIdentite {
	position: relative;
	width: 500px;
	height: 349px;
	margin: 0 auto;
	color: #333;
	background: url(../img/etat_civil_grd_vierge_small.png) no-repeat;
}
    #carteIdentite .infos {
        margin: 0;
        position: absolute;
        bottom: 15px;
        left: 160px;
        line-height: 1.5;
    }



/* ------------------------------- */
/* =          Items CV             */
/* ------------------------------- */

.cvItemsContainer {
	width: 675px;
}
.cvItemBox {
	border-bottom: 3px solid #343399;
}
	.cvItem {
		border-left: 5px solid rgba(255, 255, 255, 0.3);
		margin-bottom: 10px;
	}
	.cvItem .periode, .cvItem .content {
		display: table-cell;
		padding: 10px;
		vertical-align: top;
	}
	.cvItem .periode {
		width: 120px;
		font-weight: bold;
		text-align: right;
	}
	.cvItem .content {
		
	}
	.cvItem .content p {
		margin-top: 0;
	}
	.cvItem .logo {
		float: right;
		margin-left: 20px;
	}
	.cvItem .etp {
		display: block;
		margin-bottom: 12px;
		color: #99ffff;
		font-weight: bold;
	}
		.cvItem .etp .nom {
			font-size: 1.4em;
		}
	.cvItem .secteur {
		font-style: italic;
	}
	.cvItem .fonction {
		font-weight: bold;
	}

.cvItem.sousCat {
	margin-left: 40px;
	border-left: 5px solid rgba(255, 255, 255, 0.1);
}