@import url(fonts.css);

.form-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

/* Mobile View */
@media screen and (max-width: 768px) {
	.form-container {
		grid-template-columns: 1fr;
	}

	.input-wrapper:nth-child(odd) {
		text-align: right; /* First input right-aligned */
	}

	.input-wrapper:nth-child(even) {
		text-align: left; /* Second input left-aligned */
	}
}


/**************/



/***************** */
/* **************************   css back-to-top **************************** */
.back-to-top {
	cursor: pointer;
	position: fixed;
	bottom: 20px;
	right: 200px;
	display:none;

	border-radius: 25px;
	background: rgba(0,0,0,0.2);
	width: 50px;
	height: 50px;
	padding: 15px 0px 0px 18px;
	color: #212121;
	padding-right: 15px;
	z-index: 1000;
}


.back-to-top:hover {
	background: #42a2c8;
	color: #fff;
}

/* **************************   css slide show **************************** */
/**{
    padding:0;
    margin:0;
    list-style-type:none;
}
#slider{
    background:url('../img/sidebar_img/background.png');
    width:100%;
    height:250px;
    margin:50px auto;
	 top: 20px;
    position:relative;
}
#mask{
    width:100%;
    height:100%;
    position:absolute;
    overflow:hidden;
}
.fleche{
    position:absolute;
    top:95px;
    cursor:pointer;
}
#fleche_gauche{
    left:-17px;
}
#fleche_droite{
    right: -17px;
}
#image_container{
    position:absolute;
    width:100%;
    height:100%;
	margin-right: 10px;
    /* La transition sur tout les navigateurs */
    /* Chrome * /
    -webkit-transition-property:all;
    -webkit-transition-duration:1s;

    /* Firefox * /
    -moz-transition-property:all;
    -moz-transition-duration:1s;

    /* Opera * /
    transition-property:all;
    transition-duration:1s;

}

/* Les différentes positions du slider * /
.image1 #image_container{
    left:0;
}
.image2 #image_container{
    left:-100%;
}
.image3 #image_container{
    left:-200%;
}
.image4 #image_container{
    left:-300%;
}

/* Les images * /
#image_container li{
    float:right;
}

/* L'encart Bleu  a supprimer
#encart{
    position:absolute;
    top:-15px;
    left:200px;
    background:url('../img/sidebar_img/text.png');
    width:328px;
    height:396px;
}

#bouton{
    position:relative;
    width:244px;
    height:55px;
    margin: 300px 0px 0px 40px;
    cursor:pointer;
}
*/
/* Les points de navigation * /
#dots{
    position:absolute;
    width:100%;
    height:15px;
    left:425px;
    bottom:-25px;
}

/* les points, avec leur background non selectionné * /
#dots li{
    float:left;
    margin: 0px 2px;
    width:12px;
    height:12px;
    background: url('../img/sidebar_img/empty-dot.png');
    cursor:pointer;
}
/* Point au survol * /
#dots li:hover{
    background: url('../img/sidebar_img/selected-dot.png');
}

/* Point "selectionné". De la même manière que l'image, on change en fonction de la classe de slider * /
.image1 #dots li.button1, .image2 #dots li.button2, .image3 #dots li.button3, .image4 #dots li.button4{
    background: url('../img/sidebar_img/selected-dot.png');
   /* cursor:normal;* /
}

/* Un eyecandy * /
#glass{
    position:absolute;
    top:0px;
    left:0px;
	width: 100%;

}*/
/*jssor slider loading skin spin css
.jssorl-009-spin img {
	animation-name: jssorl-009-spin;
	animation-duration: 1.6s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@keyframes jssorl-009-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/*jssor slider bullet skin 052 css* /
.jssorb052 .i {position:absolute;cursor:pointer;}
.jssorb052 .i .b {fill:#000;fill-opacity:0.3;}
.jssorb052 .i:hover .b {fill-opacity:.7;}
.jssorb052 .iav .b {fill-opacity: 1;}
.jssorb052 .i.idn {opacity:.3;}

/*jssor slider arrow skin 053 css* /
.jssora053 {display:block;position:absolute;cursor:pointer;}
.jssora053 .a {fill:none;stroke:#fff;stroke-width:640;stroke-miterlimit:10;}
.jssora053:hover {opacity:.8;}
.jssora053.jssora053dn {opacity:.5;}
.jssora053.jssora053ds {opacity:.3;pointer-events:none;}
*/


/* ************************** begin image modal *************************/

/* Style the Image Used to Trigger the Modal */
.ModalImg {
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
}

.ModalImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 5000; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content-img {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#captionImgGrand {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
	padding: 10px 0;
	height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content-img, #captionImgGrand {
	animation-name: zoom;
	animation-duration: 0.6s;
}

@keyframes zoom {
	from {transform:scale(0)}
	to {transform:scale(1)}
}

/* The Close Button */
.closeModalImg {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}

.closeModalImg:hover,
.closeModalImg:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}




/* ************************** end image modal *************************/
#404page{
	/*background:url("404.img");
	background-image:url(http://localhost/transanit/public_html/img/images/404.jpg);*/
	background-image: url("../img/images/404.jpg");
	width: 994px;
	height: 513px;
}
.img_slider{
	display: block;
	width: 100%;

	/*max-width:1390px ;*/

	height: 450px; /*100%  450px*/

}
.carousel-inner{
	width:100%;

	margin-top: 10px;
	max-height: 450px !important;
}

.carousel-control {
	position: absolute;
	top: 0;

	bottom: 0;
	width: 15%;
	opacity: 0.9;
	filter: alpha(opacity=50);
	font-size: 20px;
	color: #ffffff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.carousel-control:hover, .carousel-control:focus {
	outline: 0;
	color: #ffffff;
	text-decoration: none;
	opacity: 20.9;
	filter: alpha(opacity=90);
}

.item .container-fluid {
	padding-right: 0px;
	padding-left: 0px;
	margin-right: 0;
	margin-left: 0;
}
.carousel-indicators {
	bottom: 0px;
}
#myCarousel{
	margin-top:10px;max-height:450px
}
.carousel-caption a{
	color:#fff;text-decoration:none
}
.item .carousel-caption{
	right: 0px;
	left: 0px;
	bottom: 30px;
	padding-bottom: 5px;
	padding-top: 5px;
	background-color:rgba(0,0,0,0.5)}
#CollegeCarousel{margin-top:10px}
#CollegeCarousel .caption h4,#CollegeCarousel .caption p,#CollegeCarousel .caption .thumbnail{text-align:center}
#CollegeCarousel .carousel-inner > .item > img,#CollegeCarousel .carousel-inner > .item > a > img{margin:0 auto}
.news-item img{width:43%}
.news-caption{margin-right:45%}
.news-item{padding-bottom:20px}

.panel-primary {
    border-color: #42a2c8 ;
}
.btn-primary{
    background-color:#42a2c8 ;
}
.btn-primary:hover{
    background-color:#148dbd ;
}
/*#wrap > header > nav > div > ul.navbar-social-top{
#wrap > header > nav >  ul.navbar-social-top{*/
.main-footer .navbar-social-top {
	list-style: none;
}

#navbar-social-top {
	list-style: none;

	display: flex;
	justify-content: center;
}
/* ************************** begin news bar *************************/
#news-bar {
    width: 100%;
    background: #89c5dc1f;
    box-shadow: 0 2px 2px black, 0 0 1px black inset;
    border-radius: 15px;
    font: 17px bold;
    padding: 1px;
    padding-left: 20px;
    padding-right: 20px;

}

#news-bar:hover {
    transition: 0.37s;
}

#news-bar a {
    padding: 2px 12px;
    color: #3d80ba;
    text-decoration: none;
    font-weight: bold;
}

#news-bar a:hover {
    transition: 0.37s;
    color: red;
}


/* Pop */

@-webkit-keyframes hvr-pop {
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@keyframes hvr-pop {
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

.hvr-pop {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}

.hvr-pop:hover,
.hvr-pop:focus,
.hvr-pop:active {
    -webkit-animation-name: hvr-pop;
    animation-name: hvr-pop;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}


/* Float */

.hvr-float {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-float:hover,
.hvr-float:focus,
.hvr-float:active {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}


/* slideUp */

.slideUp {
    animation-name: slideUp;
    -webkit-animation-name: slideUp;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important;
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
    }
    50% {
        transform: translateY(-8%);
    }
    65% {
        transform: translateY(4%);
    }
    80% {
        transform: translateY(-4%);
    }
    95% {
        transform: translateY(2%)
    }
    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(100%);
    }
    50% {
        -webkit-transform: translateY(-8%);
    }
    65% {
        -webkit-transform: translateY(4%);
    }
    80% {
        -webkit-transform: translateY(-4%);
    }
    95% {
        -webkit-transform: translateY(2%);
    }
    100% {
        -webkit-transform: translateY(0%);
    }
}


/* ************************** end news bar *************************/






/* ************************** end slide show *************************/
.right-line-p {
	border-right: solid 1px #ccc;
}
 .actItem {
	position: relative;
	min-height: 250px;
	/*height: 100%;*/
	background-color: #F2F2F2;
	margin-top: 20px;
	margin-bottom: 30px;
	 border-radius: 15px;

	 box-shadow: 1px 1px 12px #555;
}

.actualite-img {
	position: relative;
	padding: 0;
	margin: 0;
	display: block;

	border-top: solid 7px #4f91af;
}
.actualite-img:hover {
	background-color: #7C9C49;
}
.actualite-img span {
	position: absolute;
	display: inline-block;
	color: #fff;
	top: 10px;
	right: 10px;
	font-size: 15px;
	text-transform: uppercase;
	text-shadow: 0px 0px 7px #000;
	font-family: 'Kufi';
	text-decoration: none;
	color: #4f91af;
}
.actualite-txt p {
	font-size: 14px;
	line-height: 20px;
	padding: 10px;
	color: #555;
	height: 90px;
	/*font-family: tahoma, arial;*/
}

.actualite-thumb {
	opacity: 0.5;
	padding: 0;
	height: 150px;
	margin: 0;
	width: 100%;
	-webkit-transition: opacity 0.7s ease;
	-moz-transition: opacity 0.7s ease;
	-o-transition: opacity 0.7s ease;
	-ms-transition: opacity 0.7s ease;
	transition: opacity 0.7s ease;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.actualite-footer {
	display: block;
	padding: 0 10px;
	position: absolute;
	bottom: 10px;
	right: 10px;
	left: 10px;
}
.views {
	color: #8c806f;
	font-size: 13px;
}
.actualite-details, .actualite-details:hover {
	float: left;
	color: #555;
	margin: 0;
	padding: 0;
	font-size: 12px;
	text-transform: uppercase;
}





/* ***************************  begin navebar **********************************/
#nav2{
	margin-top:0px;
	margin-left:50px;
}
#drop2{
	width:20%;
	margin-top:20px;
	border-radius:4px;
	box-shadow:none;
}

#navbar	{  /*ok*/
	position:fixed;
	right:100px;
	/*	top:300px;
    */	height: 50px;
	display:block;
}
/*#navbar_menu{ /* a supprimer * /
	position:fixed;
	right:0px;
	top:230px;
	height: 40px;
	display:block;
}*/

#navbar li{
	float:left;
	list-style:none;
}

/*#navbar li a
{
	display:block;
	color:#FFF;
	text-decoration:none;
	height:25px;
	padding-left:26px;
	font:20pt ayman22;
}
#navbar li a:hover
{
	background:#FFF;
	color:#24485c;
}*/
.navbar-notifs-top .user-img-top {
	float: right;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	margin-left: 6px;
}
/*ok cu */ .social-img-top {
			   height: 30px;
			   float: right;
			   padding-left: 5px;
			   width: 40px;
			   border-radius: 50%;
			   margin-left: 10px;
			   padding-right: 5px;
			   margin-top: 10px;
}

/*ok cu */ .logo-univ-img-top {
    height: 50px;
    float: right;
    padding: 5px;
	width: 50px;
	border-radius: 50%;
	margin-left: 10px;
}

.main-header .navbar-static-top {
	margin-right: 0px;
	background-color: #42a2c8;
/*a	background-color: #6493B5;*/
	/*background-color: #acbdd0 ;*/
	border-bottom: 1px solid #acbdd0 ;
	height: 50px;
	margin-bottom:0;

}
.main-header .navbar-fixed-top {
	margin-right: 0px;
	/*padding-right: 230px;*/
	padding: 0px;
	/*a background-color: #6493B5;*/
	background-color: #42a2c8;
	/*background-color: #acbdd0 ;*/
	border-bottom: 1px solid #acbdd0 ;
	height: 50px;
	margin-bottom:0;

	top:200px;
	z-index: 4;

}


/*
#navbar-static-middel {    /* a supprimer * /
   margin-right: 0px;
   background-color: #acbdd0 ;
   border-bottom: 1px solid #acbdd0 ;
   height: 50px;
   float: right;
    top :000px;
   width: 100%;
   z-index: 5;

}
#navbar-static-middel .navbar-menu-top  .dropdown a{   /* a supprimer * /
   LEFT: 210px;
}
*/

.navbar-notifs-top li a.btn-nav {
	color: #fff !important;
}

.navbar-notifs-top .dropdown a.dropdown-toggle:hover , .navbar-notifs-top .dropdown.open a.dropdown-toggle {
	background-color: #1e8db9;
	/*a background-color: #6493B5;*/
}

 .navbar-notifs-top  a span.label{ /* ok  */
					   position: absolute;
					   top: 8px;
					   right: 6px;
					   padding: 2px;
					   font-size: 10px;
					   border-radius: 25%;
					   min-width: 15px;
					   box-shadow: 2px 2px 2px #333;
				   }

.dropdown-user .user-header {
	text-align: center !important;
	padding: 10px;
	margin: 0;
	height: 150px;
	background-color: #72b9d6 ;
/*a	background-color: #acbdd0 ;*/
	color: #f7f7f7;
}


.navbar-notifs-top1 .dropdown-menu{    /* a supprimer */
	min-width: 230px;
	border: 1px solid #ddd;
	float: right;
	/*display: inline-block;
		max-width: 300px;
/	position: static;*/
}
.navbar-notifs-top .dropdown-menu.open .dropdown-menu{    /* a supprimer */
	/*min-width: 230px;
		max-width: 300px;
	border: 1px solid #ddd;*/
	position: absolute;
	right: auto;
	left: 1%;
}
.menu-msg {
	margin: 0;

	padding: 0;
}




.navbar .navbar-menu-top {
	display: inline-block;
	float: none ;

}

.navbar .navbar-collapse {
	text-align: center;
}








/* ok cu 2*/.navbar-menu-top  a span.label{

	 padding: 2px;
		font-family: 'droid-naskh', tahoma, arial, serif;
	 font-size: 14PX ;
	/*top: 8px;
	color: inherit;
	right: 6px; cu


	min-width: 15px;

	 border-radius: 5%;*/
/*position: absolute;
box-shadow: 2px 2px 2px #333;
box-shadow: 8px 11px 4px #333;*/
	/* */
 }
.navbar-menu-top2 .dropdown a.dropdown-toggle.span.label:hover , .navbar-menu-top .dropdown.open a.dropdown-toggle.span.label {
	background-color: #1e8db9;
	 color: black;
	/*a background-color: #6493B5;*/
}
/* ok cu 2*/.navbar-menu-top .dropdown a.dropdown-toggle:hover   {
	background-color: #1e8db9;
	/*a background-color: #6493B5; .navbar-menu-top .dropdown.open a.dropdown-toggle*/
}
/* ok cu 2*/.navbar-menu-top .dropdown .list-group-item  {
	display: inline-block;
	width: 100%;
}
/* ok cu 2*/.navbar-menu-top .dropdown .list-group-item:hover  {
	display: inline-block;
	width: 100%;
	background-color: #78b0d8;
}

/* ok cu 2*/.navbar-menu-top .dropdown .list-group-item a {
	text-align: center;
}

/* ok cu 2*/.dropdown-header{
	float: right;
	text-align: center;
	width: 100%;
	background-color:#a5c8d6 ;
}

/* ok cu 2 spr*/.navbar-menu-top1  a{  /* ok */
	color: whitesmoke;
	padding-left: 10px;
	/* */
 }
/*.navbar-menu-top .dropdown a.dropdown-toggle:hover , .navbar-menu-top .dropdown.open a.dropdown-toggle {
	background-color: #6493B5;
 } */

/* ok cu 2 spr*/.navbar-menu-top1  .dropdown:hover  a:hover{
	background-color: #eeeeee;

	color: whitesmoke;

}

/* ok cu 2 spr*/.navbar-menu-top1  .dropdown:hover .dropdown-menu a:hover{ /* ok cu */
	background-color: #42a2c8;
/*a	background-color: #6493b5;*/

}
/* ok cu 2 spr*/.navbar-menu-top1  .dropdown:hover .dropdown-menu{
	background-color: #f7f7f7;
	display: block;
}
/* ok cu 2 spr*/.navbar-menu-top1  .dropdown-menu{

	min-width: 230px;
	max-width: 300px;
	padding-bottom: 0;
	padding-top: 0;
	text-align: right;
	display: none;
	border: 1px solid #ddd; /*a supprimer */
}
/* ok cu 2 spr*/.navbar-menu-top1  .dropdown-menu .dropdown-header{


	padding-bottom: 6px;
	padding-top: 6px;
	font-size: inherit;
	background-color: #efeeec;

	/*border: 1px solid #ddd; a supprimer */
}

.menu-msg .list-group-item:first-child, .menu-msg .list-group-item:last-child{
	 border-radius: 0;
 }
.navbar-menu-top1 .list-group-item:first-child, .menu-msg .list-group-item:last-child{
	 border-radius: 0;
 }

.navbar-menu-top1 .list-group-item:first-child ,.navbar-menu-top1  li .list-group-item:last-child {

	border-radius: 0;
}




/* ok cu 2 SPR*/.navbar-notifs-top1 .dropdown a.dropdown-toggle {
	background-color: inherit;
}




/*.thumb-dropdown .dropdown-menu > li {
	position: relative;
}
.thumb-dropdown .dropdown-menu > li > a .thumbnail {
	position: absolute;
	left: 100%;
	top: -10px;
	display: none;
	width: 350px;
	height: auto;
	margin-left: 5px;
}
.thumb-dropdown .dropdown-menu > li > a:hover .thumbnail  {
	display: block;
}*/


/*.navbar-menu-top li a.btn-nav {
	color: #fff !important;
 }*/



/*
box-shadow: 2px 2px 2px #333;
position: absolute;
	top: 10px;
min-width: 15px;
*/



/* .navbar-menu-top .dropdown-menu{
	min-width: 230px;
	max-width: 300px;
	border: 1px solid #ddd;
 }*/

/*  .navbar-menu-top .dropdown-menu li{
	text-align: right;
}*/
/* .navbar-menu-top   li a {
     float: right;
}*/

/* .navbar-menu-top .user-img-top {
	float: right;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	margin-left: 10px;
 }*/
.dropdown-user  {
	padding: 0;
	z-index: 200000;
}

.dropdown-user .user-header  img{
	height: 90px;
	width: 90px;
	border: 5px solid;
	border-color: transparent;
	border-color: rgba(120, 166, 199, 0.75);
}
.dropdown-user .user-body {
	height: 50px;
	padding: 10px;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
.dropdown-user .user-footer {
	height: 50px;
	padding: 10px;
}
.navbar-notifs-top .user-name-top {
	color: #f7f7f7;
}
/* *************************** end navebar **********************************/

/* *************************** begin header **********************************/

#img_header /*ok*/
{
	background-color: #ccc;
	position: fixed;
	right: 0;
	top:50px;
	width:100%;
	min-height: 50px;
	max-height: 250px;
	z-index: 4;
	/* 	background:#627fad url(../img/thumbs/articles/8.jpg) repeat-x top;
     /*	width:966px;
            height:1px;
            /*	right:185px;
                top:130px;
                position:relative;*/
}

#img_logo img /*ok                    right:7px;*/
{
	position:fixed;
	top:50px;
	float:right;
	BACKGROUND-COLOR: #b1c2e5;
	width: 100%;
	height: 150px; !important;

}
/*#entete_pic img  /*ok* /
{
	position:absolute;
	top:50px;

	float:right  !important;
	right:888px;
	width: 100%;
	height: 200px;
	width: 342px;
		max-height:200px ;
	background-color: #31b0d5;
}*/

.main-header{
	/*	background-color: #ccc;*/
	position: fixed;
	right: 0;
	top:0;
	width:100%;
	min-height: 50px;
	max-height: 250px;
	z-index: 4;
	BACKGROUND-COLOR: #b1c2e5;
	/* background-color: #BFBFBF;
	 background-color: #acbdd0 ;

	background:#627fad url(../img/header.png) repeat-x top;
	*/}

.main-header .entete_pic {
	display:block;
	float: left;
	width: 50%;
	height: 200px;
	line-height: 50px;
	text-align: left;
	/*	background-color: GREEN;
        background-color: #acbdd0 ;*/
	color: #f7f7f7;

	-webkit-transition: width .3s ease-in-out;
	-o-transition: width .3s ease-in-out;
	transition: width .3s ease-in-out;
}

.main-header .glyphicon, .main-header .fa{
	color: #f7f7f7;
}

#btn-navbar-header-collapse {
	padding-left: 15px;
	padding-right: 15px;
	float: right;
	/*height: 20px;
    margin-top: 10px;*/
	margin-right: 0;
	background-color:#42a2c8 ;
/*a	background-color:#6493B5 ;*/
	color: #f7f7f7;

}
#btn-navbar-header-collapse:hover{
	background-color: #1e8db9;
}



/* *************************** end header  **********************************/

.main-sidebar .sidebar ul.navig {
	top: 0;
	background-color: #ddd;
	list-style: none;
	margin: 0;
	padding: 0;
}
.main-sidebar .sidebar ul.navig li {
	padding: 10px;
	border: 1px solid #ccc;
}
.main-sidebar .sidebar ul.navig li:hover {
	background-color: #42a2c8;
/*a	background-color: #ccc;*/
}
/* *************************** begin sidebar **********************************/
#btn-sidebar-collapse {
	padding: 15px;
	float: right;

/*a	background-color: #6493B5;*/
background-color: #42a2c8;
	color: #f7f7f7;
}

#btn-sidebar-collapse:hover {
	background-color: #1e8db9;
	/*aa background-color: #6493B5;*/
}



a.toggle-lang {
	color : #f7f7f7 !important;
}

.main-sidebar input {
	color: #42a2c8;
	/*a color: #6493b5;*/
	margin: 10px;
	border-radius: 6px;
	line-height: normal;
	background-color: #f3f3ff;
	border: 0;
	/*margin-bottom: -20px;float: unset;*/
	box-shadow: none;
	width: 185px;
}


/* *************************** end sidebar **********************************/
.main-sidebar{
	top: 200px;
	position: absolute;
	right:0;
	width:225px;
	height:100%;
	z-index: 3;
	/*background-color: #69b3d0;*/

	webkit-transition: -webkit-transform .3s ease-in-out,width .3s ease-in-out;
	-moz-transition: -moz-transform .3s ease-in-out,width .3s ease-in-out;
	-o-transition: -o-transform .3s ease-in-out,width .3s ease-in-out;
	transition: transform .3s ease-in-out,width .3s ease-in-out;
}
/*.main-sidebar .sidebar {
	max-height: 900px;
	overflow-y: scroll;
}*/
.main-sidebar .sidebar ul.navig {
	top: 0;
	background-color: #ddd;
	list-style: none;
	margin: 0;
	padding: 0;
}
.main-sidebar .sidebar ul.navig li {
	padding: 10px;
	border: 1px solid #ccc;
}
.main-sidebar .sidebar ul.navig li:hover {
	background-color: #ccc;
}


body{
	direction: rtl;
	background-color: #42a2c89e ;
/*a	background-color: #acbdd0 ;*/
	font-family: 'droid-naskh', tahoma, arial, serif;

/*	padding-top: 3.5rem;

}
select.form-control{ /* ok */
	padding: 3px 12px;
}
a:hover {
	text-decoration: none;
}
hr {
	border-color: #ccc;
	border-width: 2px;
}

/* .main-header .logo {                  /* a suprimer * /
	display:block;
	float: right;
	width: 230px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	 !*	background-color: GREEN;
         background-color: #acbdd0 ;*!
	color: #f7f7f7;

	 -webkit-transition: width .3s ease-in-out;
    -o-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
}*/


 /*.main-header .logo .logo-mini {
	display: none;
	font-size: 18px;
	padding-left: 5px;
	padding-right: 5px;
 }
  .main-header .logo .logo-lg {
	display: block;
	font-size: 26px;
	padding-left: 10px;
	padding-right: 10px;

 }*/



 .main-header ul.navig{
	float: left;
	display: block;
	margin:0;
	height: 50px;
 }
  .main-header ul.navig li{
	display: inline-block;
	padding:10px;
	line-height:26px;
  }

  .content-wrapper {
	min-height:1320px; /* transanit V1.0 */
	margin-top: 200px;
	background-color: #eee;
 }
 .content-wrapper .content-header {
	border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
	padding-bottom: 5px;
	 box-shadow: 0 3px 3px -3px #999;
 }
 .content-wrapper .content-header span.content-title{
	margin:0;
	 font-size: 24px;
	 font-weight:bold;
	 color: #1e8db9 ;
	 /*aa color: #6493B5 ;*/
 }
 .content-header ul.header-btns{
	 margin: 0;
	 padding: 0;
	 float: left;
 }
.content-header ul.header-btns li{
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline;
}
.content-wrapper .content {
	border: 1px solid #ccc;
	/*	min-height: 1800px;
*/	height: 100%
;
	 background-color: #f7f7f7;
	 border-radius: 3px;
	 padding: 10px;
 }

  .main-footer{
	border-top: 1px solid #f7f7f7;
	background-color: #f7f7f7;
  }

 .content-wrapper, .main-footer{
	margin-right: 230px;
	padding:10px;
	z-index: 1;
 }

/* .has-mini-sidebar .main-header .navbar-static-top  {
	margin-right: 50px;
}
 */
 .has-mini-sidebar .main-header  .navbar-static-middel {
	margin-right: 50px;
}
 .has-mini-sidebar .main-header .logo {
	width: 50px;
}
 .has-mini-sidebar .main-header .logo .logo-lg {
	display: none;
}
 .has-mini-sidebar .main-header .logo .logo-mini{
	display: block;
}
 .has-mini-sidebar .main-sidebar {
	width: 10px;
 }

 .has-mini-sidebar .content-wrapper,
 .has-mini-sidebar .main-footer {
	margin-right: 50px;
 }


.has-mini-sidebar .gnav-header a span.hidden-on-collapse,
.has-mini-sidebar .gnav-header a:after,
.has-mini-sidebar .gnav .subnav a span.hidden-on-collapse {
    display: none;
}
 .gnav .gnav-header {
	/*a background-color: #6493B5;*/
	background-color: #42a2c8;
}
/* mini sidebar end */
/* ************************ body posts  ************************************************ */
.post{
	/*a border-bottom:2px #6493B5; */
	border-bottom:2px #42a2c8;
	padding-bottom:10px;
	overflow:hidden;
	float:right;
	min-height: 120px;
}
.modele_post h2{

	margin:5px;
	 font-weight:  bold;
	font-size: 18px  ;

}
.textpost
{
	float:right;
	/*width:90%;*/
	margin:5px;
	margin-right:20px;
	text-align:justify;
}

.post_image{
	width: 100px;

	max-height: 120px;
		margin-left:5px;/*float:left; !important;
        margin-right:5px;*/
	height: 150px;
}
.text_post{

	float:right;
	width: 75%;/*	margin-left:5px;*/
        margin-right:10px;
}
/*.download_post_image{  / * a supprimer * /
	width: 30px;
	float:left;
	margin-left:5px;
	margin-right:10px;
}*/
/*.image_next_post{ a supprimer
	width: 20px;
	float:right;
	margin-right:5px;
	margin-top:3px;

}
	margin:5px;*/

/*.image_prev_post{
	width: 20px;
	float:left;
	margin-left:5px;
	margin-top:3px;

	/ *
	margin:5px;* /
}*/


.readmore a
{

	background:url(../img/images/readmore.png) no-repeat;
	font:12pt bold Verdana, Geneva, sans-serif;
	text-decoration:none;
	margin-bottom: 5px;
/*	width:20%;
	padding-top:3px;
	height:30px;
	*/
	float:left;
	padding:5px;
	text-align:left;
	color:#FFF;
}

.readmore a:hover
{
	color: #42a2c8;
/*a	color: #6493b5;*/
	font:13pt bold Verdana, Geneva, sans-serif;
/*	text-decoration:underline;*/

}
.post-info
{
	margin:5px;
	margin-top: 10px;
	padding:5px;
	background:#b1c3e5;
	border:1px solid #339;
	overflow:hidden;
	/*width: 100%;*/

}

.row-fluid {
	margin-top: 10px;
}


.panel-heading h3 {
	font-size: 18px  ;
	font-weight: 800;
}

/* ************************ end body posts  ************************************************ */



/* ************************ gnav sidebar  ************************************************ */
.gnav{    /* ok */
	float:right;
	width:200px;
	/*margin-right:5px;*/

}
.has-mini-sidebar .wrapper .main-sidebar .sidebar .gnav{ /* ok */
	float:right;
		width:10px; ;   !important	/**/
	margin-right:5px;

}
.has-mini-sidebar .wrapper .main-sidebar .sidebar .gnav .gnav-header .search{  /* ok */
	display: none;

}


.gnav ul li
{
	list-style: none;
	text-align: right;
}
.gnav  ul li a
{
	color:#39C;
	/*font:Tahoma, Geneva, sans-serif;*/
	text-decoration:none;
	margin-right:15px;
	padding-right:10px;
	text-align:right;
}

.gnav ul li a:hover
{
	/*color: #acbdd0 ;;
	font: Tahoma, Geneva, sans-serif;*/
	text-decoration: underline;
	margin-left: 20px;
	text-align: right;
}

.gnav  h2
{
	/*background: url(images/sidebar-bg.png) no-repeat;*/
	width: 273px;
	height: 57px;
	/*font: 14pt bold "Arial Black", Gadget, sans-serif;*/
	color: #FFF;
	margin-left: 0px;
	margin-top: 10px;
	padding-left: 10px;
	padding-top: 5px;
	text-align: right;

}


.gnav  ul
{
	margin-bottom:30px;
}

.gnav-header{
    padding:0;
}

.gnav-header a{
    display:block;
    color: #eee;
    padding: 10px;
}

.gnav-header a.has-childs:after {  /* ok */
    font-family: 'Glyphicons Halflings';
    content: "\e114";
    float: left;
    color:inherit;
}

.gnav-header a.collapsed:after { /* ok */
    content: "\e079";
}

.gnav .subnav{
    padding: 0;
    margin: 0;
}
.gnav .subnav li{
    display:block;
    padding: 0;
    margin: 0;

}
.gnav .subnav a{
    display:block;
    margin: 0;
    padding: 10px;
    background-color: #42a2c899;/*42a2c854 ;42a2c8b3;*/
  /*a  background-color: #acbdd0 ;;*/
    color: #eee;
}
.gnav .subnav .gnav-header a{
	background-color: #72b9d6 ;;
	/*a background-color: #6493B5 ;;*/
}

.gnav-header a, .gnav .subnav li a{
    border-right: 5px solid transparent;
}
.gnav-header a:hover,.gnav-header a.has-childs, .gnav .subnav a:hover {
    /*border-right-color: #59ABE3;*/
	border-right-color: #42a2c8;
/*aa	border-right-color: #337ab7;*/
    color: #fff;
    transition-duration:0.3s;

}

.gnav .subnav a:hover, .gnav .subnav a:focus {/*,.gnav .subnav li:hover, .gnav .subnav li:focus*/
    color: #fff;
    background-color: #42a2c8;
 /*aa   background-color: #6493B5;*/
}

.gnav-header a .glyphicon, .subnav a .glyphicon{
    margin-left: 5px;
}

/* ************************ gnav sidebar  ************************************************ */
.rtl_table th{
	text-align: right;
}
/* ok cu */ .content-page{
	color: black;
	font-family: 'droid-naskh', tahoma, arial, serif;
	font-size: 15px;
}
.content-page .head-page{  /* ok cu */
	background-color: #42a2c8;
	/*a background-color: #6493b5;*/
	color: #fff;
	text-align: center;
 	padding-left: 8px;
 	padding-right: 5px;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: bold;
}
.content-page  .sub-head-page{  /* ok cu */
	background-color: #42a2c8;
	/*a background-color: #6493b5;*/
	color: #fff;
	text-align: center;
 	padding-left: 8px;
 	padding-right: 5px;
 	margin-right: 25px;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: bold;
}
.content-page  .sub-sub-head-page{  /* ok cu */
	/*background-color: #42a2c8;
	a background-color: #6493b5;*/
	color: red;
	text-align: center;
 	padding-left: 8px;
 	padding-right: 5px;
 	margin-right: 25px;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: bold;
}
.content-page .descr-page {  /* ok cu */
	color: black;;
 	padding-left: 80px;
 	padding-right: 5px;
	margin: 15px;

}

/* ok cu */.content-page .descr-page a{

	color: black;
text-justify: distribute ;
	text-align: justify;
	font-size: 14px;
	line-height: 40px;

}

/* ok cu */.content-page  .content-page-img img{
	float: right;
	/*width: 250px;
	*/width: 75%;

	height: 200px;
	border-radius: 10%;
	margin-right: 13%;
	padding: 5px; !important;
	position: center;
	margin-top: 10px;
	margin-bottom: 10px;

}


.data-table tr th{  /* ok cu */
	background-color: #42a2c8;
/*a	background-color: #6493b5;*/
	color: #fff;
	text-align: center;
}
.data-table tr td{  /* ok cu */
	/*	background-color: #42a2c8;
a	background-color: #6493b5;
	color: #fff;*/
	text-align: center;
}
.data-table tr td.table-actions{ /* ok cu */
	width: 150px;
	vertical-align: middle;
}
.data-table tr td.table-actions .btn{ /* ok cu */
	margin-bottom: 5px;
	display: inline-block;
}
.thumb-preview{
	height: 250px;
	/*width: 400px;*/
	width: 100%;
	border-radius: 5px;
}
.thumbresidence-preview{
	height: 250px;
	/*width: 400px;*/
	width: 100%;
	border-radius: 5px;
}
.thumbprise_en_charge-preview{
	height: 250px;
	/*width: 400px;*/
	width: 100%;
	border-radius: 5px;
}

.DocPdf-preview{
	height: 250px;
	/*width: 400px;*/
	width: 100%;
	border-radius: 5px;
}



.col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
	float: right;/**/
}
.form-add-top{
	margin-bottom: 20px;
}

.box-infos-header{
	padding: 5px;
	background-color: #42a2c8;
/*a	background-color: #6493b5;*/
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	margin-bottom: 0 !important;
}
.box-infos-header .content-title{
	color: #fff !important;
}
.box-infos-header .btn-search,.box-infos-header .btn-add, .box-infos-header .btn-deleteFollower{
	float: left;
	margin-top: 4px;
}
.box-infos{
	//border: 1px solid #acbdd0 ;
	border-top: 0;
	padding: 10px;
	margin-top: 0;
	margin-bottom: 20px;
	//min-height: 200px;
}
.modal-header .close{
	float: left;
}
.modal-footer{
	text-align: left;
}
.form-search-wrap{ /* ok cu */
	display: none;
	padding: 0 10px;
}

input[type=file].hidden-input-file{
	display: none;
}
.thumb-reset{
	display: none;
	/*width: 260px;*/

	width: 80%;
	position: relative;
	height: 30px;
	line-height: 24px;
	top:-35px;
}
.thumbresidence-reset{
	display: none;
	/*width: 260px;*/

	width: 80%;
	position: relative;
	height: 30px;
	line-height: 24px;
	top:-35px;
}
.thumbprise_en_charge-reset{
	display: none;
	/*width: 260px;*/

	width: 80%;
	position: relative;
	height: 30px;
	line-height: 24px;
	top:-35px;
}
.DocPdf-reset{
	display: none;
	width: 260px;
	position: relative;
	height: 30px;
	line-height: 24px;
	top:-35px;
}
.login-header h3{
	margin: 0;
	text-align: center;
}
.panel .login-header {
	background-color: #42a2c8;
	border-color: #42a2c8;
}
.avatar{
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: 1px solid #cccccc;
}
.avatar-lg{
	width: 128px;
	height: 128px;
	border: 5px solid #f7f7f7;
}
.profile-side .nav-pills{
	margin: 0;
	padding: 0;
}
.profile-side .nav-pills li{
	display: block;
	margin: 0;
	width: 100%;
}
.panel .panel-heading h3{
	margin: 0;
}
.fa-roles-true .fa, .fa-roles-false .fa{
	color: #fff;
	padding: 3px;
	border-radius: 3px;
}
.fa-roles-true .fa{
	background: #5cb85c;
}
.fa-roles-false .fa{
	background: red;
}
.td-roles p span:first-child{
	min-width: 200px;
	display: inline-block;
}

/* a supprimer  */.currency {
	direction: rtl !important;
/*	direction: ltr !important;*/
	text-align: center;
}

.table tr.periode15 {
	background-color: #ffcda2!important;
}
.table tr.periode30 {
	background-color: #ffbc75 !important;
}
.table tr.insc-ended {
	background-color: #f69568 !important;
}

/*************************** pagination ********************************************** */

.pagination {
	margin: 0;
	padding: 0;
	float: right;
	direction: rtl;
}
.pagination li a{
	background-color: rgba(66,139,202,0.05);
 padding: 6px 8px;

}
.pagination li{

	float: right;
}
.pagination li.cur_page a {
	background-color: #42a2c8;
/*aa	background-color: #428bca;*/
	color: #fff;
	cursor: default;
}

.pagination li.cur_page input {
	width: 35px;
	display: inline;
	position: relative;
	float: right;
	padding :5px 2px;
	border: 2px solid #ddd;
	margin-right: -1px;
	text-align: center;
	outline: none;
}
.pagination li.disabled a {
	background-color: #eee;
	color: #cccccc;
}
.pagination li.total a {
	background-color: #eee;
	color: #cccccc;
}
.pagination li.enabled a {
	padding: 6px 10px;
}
.pagination .pagination-error {
	margin-top:  20px;
}/**/



/* ************************   footer  ************************************************ */



/*
#footer
{
	!*background:url(../img/images/footer.png) repeat-x center bottom;*!
	height:212px;
	width:966px;margin-bottom:15px;
}

#footer-1
{
	width:500px;
	float:right;
	margin-top:20px;
	margin-right:15px;
	margin-bottom:15px;
}
#footer-1 h3
{   float:right;
	margin-right:10px;
	margin-bottom:15px;
	color:#FFF;
	!*font:bold Tahoma, Geneva, sans-serif;*!
}
#footer-1 p
{
	float: right;
	margin-right: 10px;
	font-family: Traditional Arabic;
	font-size: 17px;
	text-align: right;
	color: #CCC;
}
#socialmedia
{
	float:left;
	text-align:right;
	margin-left:170px;
	margin-top:30px;
}
#socialmedia h3
{

	margin-right:180px;
	color:#FFF;
	!*font:bold Tahoma, Geneva, sans-serif;*!

}

#socialmedia p
{

	font-family:Traditional Arabic;
	font-size:17px;
	text-align:justify;
	color:#CCC;
}

#footer-2
{
	padding-top:180px;
	padding-left:230px;
	color:#FFF;
	font-weight:bold;
}
*/


/* ************************ end footer  ************************************************ */