.img-responsive{
	max-width: 90%;
	height: auto;
	padding:20px;
}

.domaine1{color:#839740; font-weight: bold;}
.domaine2{color:#54ADCD; font-weight: bold;}
.domaine3{color:#CA3F28; font-weight: bold;}
.domaine4{color:#0A889E; font-weight: bold;}
.domaine5{color:#B68F28; font-weight: bold;}

form label.required:after
{
	color:red;
	content:'*';
}

.cpt{
width: auto;
height: auto;

border: 1px rgb(110, 144, 100) solid;

padding: 5px;
margin: 2px;
background: rgb(255,255,255);

color: rgb(25,25,25);
font-size: inherit;
font-weight: inherit;
font-family: inherit;
font-style: inherit;
text-decoration: inherit;
text-align: left;

line-height: 1.3em;
-moz-box-shadow:  0px 0px 6px 0px rgb(128,128,128);
-webkit-box-shadow:  0px 0px 6px 0px rgb(128,128,128);
box-shadow:  0px 0px 6px 0px rgb(128,128,128);
}

.cpt:hover{
border: 1px rgb(89,89,89) solid;

background: rgba(98, 255, 0, 0.13);

-moz-box-shadow:  0px 0px 7px 0px rgb(74, 168, 75);
-webkit-box-shadow:  0px 0px 7px 0px rgb(74, 168, 75);
box-shadow:  0px 0px 7px 0px rgb(74, 168, 75);
}

.imgdisc{
height:30px;
}

.imglink{
height:100px;
border-radius: 50px;
}

.imglink:hover{
-moz-box-shadow:  0px 0px 15px 0px rgb(218, 0, 30);
-webkit-box-shadow:  0px 0px 15px 0px rgb(218, 0, 30);
box-shadow:  0px 0px 15px 0px rgb(218, 0, 30);
}

.center-block {
text-align:center;
}

.checkbox{
padding-bottom:8px;
}
.form-group{
	
margin-bottom:5px;	
}

.btn-sq-lg {
width: 150px !important;
height: 150px !important;
}

.btn-sq {
width: 100px !important;
height: 100px !important;
font-size: 10px;
}

.btn-sq-sm {
width: 50px !important;
height: 50px !important;
font-size: 10px;
}

.btn-sq-xs {
width: 25px !important;
height: 25px !important;
padding: 2px;
}

hr{
	margin-top:2px;
	margin-bottom:2px;
}

.well{
	background: #DDD;
	box-shadow: 1px 1px 12px #555;
	padding:10px;
	border-radius:0;
}

/*
.btn-default:active, .btn-default.active{
	color: red;
	font-weight:bold;
}
*/
/*formulaire*/

#formulaire form {
    /* Pour le centrer dans la page : margin: 0 auto;*/
    margin: 10px;
    width: 90%;
    /* Pour voir les limites du formulaire */
    padding: 1em;
    border: 1px solid #CCC;
    border-radius: 1em;
	background-color: #ddd;
}

#formulaire form div + div {
    margin-top: 1em;
}

#formulaire label {
    /* Afin de s'assurer que toutes les Ã©tiquettes aient la mÃªme dimension et soient alignÃ©es correctement */
    display: inline-block;
    width: 150px;
    text-align: right;
}

#formulaire input {
    /* Afin de s'assurer que tous les champs textuels utilisent la mÃªme police
       Par dÃ©faut, textarea utilise une police Ã  espacement constant */
    font: 1em sans-serif;

    /* Pour donner la mÃªme dimension Ã  tous les champs textuels */
    /*width: 400px;*/
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    /* Pour harmoniser l'apparence des bordures des champs textuels */
    border: 1px solid #999;
}

#formulaire input[type="submit"] {

}

#formulaire textarea {
    /* Pour aligner correctement les champs multilignes et leurs Ã©tiquettes */
    vertical-align: top;
	border: 1px solid #999;
	-moz-box-sizing: border-box;
    box-sizing: border-box;
    /* Pour donner assez d'espace pour entrer du texte */
    height: 6em;
	width: 100%;
    /* Pour permettre aux utilisateurs de redimensionner un champ textuel horizontalement
       Cela ne marche pas avec tous les navigateurs  */
    /*resize: vertical;*/
}

#formulaire input[type="checkbox"]:checked,input[type="checkbox"] {
	
	width: 20px;
	-moz-box-sizing: border-box;
    box-sizing: border-box;

    /* Pour harmoniser l'apparence des bordures des champs textuels */
    border: 1px solid #999;
}

.panel-group {
	margin-bottom:10px;
}
	
	
.projet {
	width:80%;
	margin:auto;
	margin-top:-20px;
	padding-top: 5px;
	padding-left: 10px;
	background-color:#B7B8B9;
	height:25px;
	box-shadow: 0px 0px 5px #555;
	margin-bottom:15px;
	border-radius:0px;
}

.projet a {
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:0px solid #dcdcdc;
	display:inline-block;
	cursor:pointer;
	color:#666666;
	font-family:Arial;
	font-size:11px;
	font-weight:bold;
	padding:0px 5px;
	text-decoration:none;

}
.projet a:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f6f6f6), color-stop(1, #ffffff));
	background:-moz-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
	background:-webkit-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
	background:-o-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
	background:-ms-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
	background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#ffffff',GradientType=0);
	background-color:#f6f6f6;
}
.projet a:active {
	position:relative;
	top:1px;
}


.CSSTableGenerator {
	margin:0px;padding:0px;
	width:100%;
	border:1px solid #000000;
	
	-moz-border-radius-bottomleft:0px;
	-webkit-border-bottom-left-radius:0px;
	border-bottom-left-radius:0px;
	
	-moz-border-radius-bottomright:0px;
	-webkit-border-bottom-right-radius:0px;
	border-bottom-right-radius:0px;
	
	-moz-border-radius-topright:0px;
	-webkit-border-top-right-radius:0px;
	border-top-right-radius:0px;
	
	-moz-border-radius-topleft:0px;
	-webkit-border-top-left-radius:0px;
	border-top-left-radius:0px;
}.CSSTableGenerator table{
    border-collapse: collapse;
        border-spacing: 0;
	width:100%;
	height:100%;
	margin:0px;padding:0px;
}.CSSTableGenerator tr:last-child td:last-child {
	-moz-border-radius-bottomright:0px;
	-webkit-border-bottom-right-radius:0px;
	border-bottom-right-radius:0px;
}
.CSSTableGenerator table tr:first-child td:first-child {
	-moz-border-radius-topleft:0px;
	-webkit-border-top-left-radius:0px;
	border-top-left-radius:0px;
}
.CSSTableGenerator table tr:first-child td:last-child {
	-moz-border-radius-topright:0px;
	-webkit-border-top-right-radius:0px;
	border-top-right-radius:0px;
}.CSSTableGenerator tr:last-child td:first-child{
	-moz-border-radius-bottomleft:0px;
	-webkit-border-bottom-left-radius:0px;
	border-bottom-left-radius:0px;
}.CSSTableGenerator tr:hover td{
	background-color:#d3e9ff;
		

}
.CSSTableGenerator td{
	vertical-align:middle;
		background:-o-linear-gradient(bottom, #ffffff 5%, #d3e9ff 100%);	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #d3e9ff) ); 
	background:-moz-linear-gradient( center top, #ffffff 5%, #d3e9ff 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#d3e9ff");	background: -o-linear-gradient(top,#ffffff,d3e9ff);

	background-color:#ffffff;

	border:1px solid #000000;
	border-width:0px 1px 1px 0px;
	text-align:left;
	padding:7px;
	font-size:11px;
	font-family:Arial,Comic Sans MS;
	font-weight:bold;
	color:#000000;
}.CSSTableGenerator tr:last-child td{
	border-width:0px 1px 0px 0px;
}.CSSTableGenerator tr td:last-child{
	border-width:0px 0px 1px 0px;
}.CSSTableGenerator tr:last-child td:last-child{
	border-width:0px 0px 0px 0px;
}
.CSSTableGenerator tr:first-child td{
	background:-o-linear-gradient(bottom, #0057af 5%, #007fff 100%);	
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #0057af), color-stop(1, #007fff) );
	background:-moz-linear-gradient( center top, #0057af 5%, #007fff 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#0057af", endColorstr="#007fff");	background: -o-linear-gradient(top,#0057af,007fff);

	background-color:#0057af;
	border:0px solid #000000;
	text-align:center;
	border-width:0px 0px 1px 1px;
	font-size:14px;
	font-family:Arial,Comic Sans MS;
	font-weight:bold;
	color:#ffffff;
}
.CSSTableGenerator tr:first-child:hover td{
	background:-o-linear-gradient(bottom, #0057af 5%, #007fff 100%);	
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #0057af), color-stop(1, #007fff) );
	background:-moz-linear-gradient( center top, #0057af 5%, #007fff 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#0057af", endColorstr="#007fff");	
	background: -o-linear-gradient(top,#0057af,007fff);
	background-color:#0057af;
}
.CSSTableGenerator tr:first-child td:first-child{
	border-width:0px 0px 1px 0px;
}
.CSSTableGenerator tr:first-child td:last-child{
	border-width:0px 0px 1px 1px;
}

.shadow1{
  text-shadow: skyblue 0px 2px, skyblue 2px 0px, skyblue -2px 0px;
}

.shadow2{
  text-shadow: 0 0 7px rgba(0,0,0, 0.5);
}

.shadow3{
	text-shadow: 1px 2px 3px rgba(0,0,0, 0.5);
	font-family: Verdana, "Bitstream Vera Sans", "Lucida Grande", sans-serif; /* 3 */
	font-size: 1.1em;
	display:block;
	color: black;
text-decoration: underline;	
padding-bottom:2px;
}
.shadow4{ 
  color: black; 
  font-size: 1.1em;
  text-shadow: skyblue 0px 2px, skyblue 2px 0px, skyblue -2px 0px, 
    skyblue 0px -2px, skyblue -1.4px -1.4px, skyblue 1.4px 1.4px, 
    skyblue 1.4px -1.4px, skyblue -1.4px 1.4px; 
	text-decoration: underline;
}

.row{margin:0;}

.center{ 
text-align:center;
}

.tabtitre
{ 
	background:-o-linear-gradient(bottom, #0057af 5%, #007fff 100%);	
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #0057af), color-stop(1, #007fff) );
	background:-moz-linear-gradient( center top, #0057af 5%, #007fff 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#0057af", endColorstr="#007fff");	
	background: -o-linear-gradient(top,#0057af,007fff);
	background-color:#0057af;
border: 1px solid #999;
	font-size:14px;
	font-family:Arial,Comic Sans MS;
	font-weight:bold;
	color:#ffffff;
}
.tab{
	background-color:#ffffff;
	border:0px solid #DDD;
}

/* Toggle Styles */

#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled {
    padding-left: 250px;
}

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 250px;
    width: 0;
    height: 100%;
    margin-left: -250px;
    overflow-y: auto;
    background: #000;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.panel-group .panel{
	margin-bottom:4px;
}

/* Sidebar Styles */

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}


hr.style1{
	border-top: 1px solid #8c8b8b;
}


hr.style2 {
	border-top: 3px double #8c8b8b;
}

hr.style3 {
	border-top: 1px dashed #8c8b8b;
}

hr.style4 {
	border-top: 1px dotted #8c8b8b;
}

hr.style5 {
	background-color: #fff;
	border-top: 2px dashed #8c8b8b;
}


hr.style6 {
	background-color: #fff;
	border-top: 2px dotted #8c8b8b;
}

hr.style7 {
	border-top: 1px solid #8c8b8b;
	border-bottom: 1px solid #fff;
}


hr.style8 {
	border-top: 1px solid #8c8b8b;
	border-bottom: 1px solid #fff;
}
hr.style8:after {
	content: '';
	display: block;
	margin-top: 2px;
	border-top: 1px solid #8c8b8b;
	border-bottom: 1px solid #fff;
}

hr.style9 {
	border-top: 1px dashed #8c8b8b;
	border-bottom: 1px dashed #fff;
}

hr.style10 {
	border-top: 1px dotted #8c8b8b;
	border-bottom: 1px dotted #fff;
}


hr.style11 {
	height: 6px;
	background: url(http://ibrahimjabbari.com/english/images/hr-11.png) repeat-x 0 0;
    border: 0;
}


hr.style12 {
	height: 6px;
	background: url(http://ibrahimjabbari.com/english/images/hr-12.png) repeat-x 0 0;
    border: 0;
}

hr.style13 {
	height: 10px;
	border: 0;
	box-shadow: 0 10px 10px -10px #8c8b8b inset;
}


#tuilprj {
box-shadow: 1px 1px 1px #948686;
font-size: 0.9em; 
font-family: Lucida Grande, Verdana, Arial, Sans-Serif,Century Gothic ; 
font-weight:bold; 
color: #000000;
background: #FFFFF;
display:block;
float:left;
margin:10px;
padding:0px;
margin-bottom:20px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border : 2px solid grey;
width : 200px;
/*height: 250px;*/
}

.tuilprjimg {
position: relative;
float: left;
margin-right: 0px;
}

.tuilprj {
/*position: relative;*/
float: right;
z-index:100;
margin-right: 0px;
}

#tuilprj:hover {
background: #D6D6D6;
}


