/* <style> /**/

/* ***************************************
	RESET CSS
*************************************** */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
body {
	background-color: white;
}
html, body {
	height: 100%;
	margin-bottom: 1px;
}
img {
	border-width:0;
	border-color:transparent;
}
/* keep focus styles for a11y
:focus {
	outline: 0 none;
}*/
ol, ul {
	list-style: none;
}
em, i {
	font-style:italic;
}
ins {
	text-decoration:none;
}
strike, del {
	text-decoration:line-through;
}
strong, b {
	font-weight:bold;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: top;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a {
	text-decoration: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
[hidden] { 
	display: none !important;
}/* <style> /**/

/* Clearfix */
.clearfix:after,
.elgg-grid:after,
.elgg-layout:after,
.elgg-inner:after,
.elgg-page-header:after,
.elgg-page-footer:after,
.elgg-head:after,
.elgg-foot:after,
.elgg-col:after,
.elgg-col-alt:after,
.elgg-image-block:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;	
}

/* Fluid width container that does not wrap floats */
.elgg-body,
.elgg-col-last {
	display: block;
	width: auto;
	word-wrap: break-word;
	overflow: hidden;
}

.elgg-body:after,
.elgg-col-last:after {
	display: block;
	visibility: hidden;
	height: 0 !important;
	line-height: 0;
	overflow: hidden;
	
	/* Stretch to fill up available space */
	font-size: xx-large;
	content: " x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x ";
}

/* ***************************************
 * MENUS
 *
 * To add separators to a menu:
 * .elgg-menu-$menu > li:after {content: '|'; background: ...;}
 *************************************** */
/* Enabled nesting of dropdown/flyout menus */
.elgg-menu > li { position: relative; }

.elgg-menu > li:last-child::after {
	display: none;
}

/* Maximize click target */
.elgg-menu > li > a { display: block }

/* Horizontal menus w/ separator support */
.elgg-menu-hz > li,
.elgg-menu-hz > li:after,
.elgg-menu-hz > li > a,
.elgg-menu-hz > li > span {
	vertical-align: middle;
}

/* Allow inline image blocks in horizontal menus */
.elgg-menu-hz .elgg-body:after { content: '.'; }

/* Inline block */
.elgg-gallery > li,
.elgg-button,
.elgg-icon,
.elgg-menu-hz > li,
.elgg-menu-hz > li:after,
.elgg-menu-hz > li > a,
.elgg-menu-hz > li > span {
	/* Google says do this, but why? */
	position: relative;

	display: inline-block;
}

/* ***************************************
	Grid
*************************************** */

/*<style>/**/

.elgg-col {
	float: left;
}
.elgg-col-alt {
	float: right;
}
.elgg-col-1of1 {
	float: none;
}
.elgg-col-1of2 {
	width: 50%;
}
.elgg-col-1of3 {
	width: 33.33%;
}
.elgg-col-2of3 {
	width: 66.66%;
}
.elgg-col-1of4 {
	width: 25%;
}
.elgg-col-3of4 {
	width: 75%;
}
.elgg-col-1of5 {
	width: 20%;
}
.elgg-col-2of5 {
	width: 40%;
}
.elgg-col-3of5 {
	width: 60%;
}
.elgg-col-4of5 {
	width: 80%;
}
.elgg-col-1of6 {
	width: 16.66%;
}
.elgg-col-5of6 {
	width: 83.33%;
}
/* <style> /**/

/* ***************************************
	Typography
*************************************** */
body {
	color: #333;
	font-size: 85%;
	line-height: 1.4em;
	font-family: "Helvetica Neue", Helvetica, "Lucida Grande", Arial, sans-serif;
}

a {
	color: #019AA6;
}

a:hover,
a.selected { 	color: #555;
	text-decoration: underline;
}

p {
	margin-bottom: 15px;
}

p:last-child {
	margin-bottom: 0;
}

pre, code {
	font-family: Monaco, "Courier New", Courier, monospace;
	font-size: 12px;

	background:#EBF5FF;
	color: #000;
	overflow:auto;

	overflow-x: auto; /* Use horizontal scroller if needed; for Firefox 2, not needed in Firefox 3 */

	white-space: pre-wrap;
	word-wrap: break-word; /* IE 5.5-7 */

}

pre {
	padding:3px 15px;
	margin:0px 0 15px 0;
	line-height:1.3em;
}

code {
	padding:2px 3px;
}

.elgg-monospace {
	font-family: Monaco, "Courier New", Courier, monospace;
}

blockquote {
	line-height: 1.3em;
	padding: 10px 15px;
	margin: 0 0 15px 0;
	background: #E2F2FE;
	border: 1px solid #A1CBEA;
	border-radius: 3px;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	/*color: #444;*/

	text-rendering: optimizelegibility;
}

h1 { font-size: 1.8em; }
h2 { font-size: 1.5em; line-height: 1.1em; }
h3 {  font-weight:normal }
h4 { font-size: 1.0em; }
h5 { font-size: 0.9em; }
h6 { font-size: 0.8em; }

.elgg-heading-site, .elgg-heading-site:hover {
	font-family: Georgia, Times, "Times New Roman", serif;
	font-size: 2em;
	line-height: 1.2em;
	color: #FFF;
	text-shadow: 1px 1px 3px #333;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
	text-decoration: none;
}
.elgg-heading-main {
	display: inline-block;
	padding-top: 5px;
	margin-right: 10px;
}
.elgg-heading-basic {
	color: #0054A7;
	font-size: 1.2em;
	font-weight: bold;
}

.elgg-subtext {
	color: #539A9F;
	font-size: 85%;
	line-height: 1.4em;
	font-style: italic;
}

.elgg-text-help {
	display: block;
	font-size: 85%;
	font-style: italic;
}

.elgg-quiet {
	color: #666;
}

.elgg-loud {
	color: #0054A7;
}

/* ***************************************
	USER INPUT DISPLAY RESET
*************************************** */
.elgg-output {
        background-color:#FFFFFF;
	font-style:normal;
	padding:10px;
	margin-top: 10px;
}

.elgg-output dt { font-weight: bold }
.elgg-output dd { margin: 0 0 1em 1em }

.elgg-output ul, .elgg-output ol {
	margin: 0 1.5em 1.5em 0;
	padding-left: 1.5em;
}
.elgg-output ul {
	list-style-type: disc;
}
.elgg-output ol {
	list-style-type: decimal;
	list-style-position: inside;
	padding-left: .4em;
}
.elgg-output table {
	border: 1px solid #DCDCDC;
}
.elgg-output table td {
	border: 1px solid #DCDCDC;
	padding: 3px 5px;
}
.elgg-output img {
	max-width: 100%;
	height: auto;
}
/* <style> /**/

/* ***************************************
	Form Elements
*************************************** */
fieldset > div {
	margin-bottom: 15px;
}
fieldset > div:last-child {
	margin-bottom: 0;
}
.elgg-form-alt > fieldset > .elgg-foot {
	border-top: 1px solid #DCDCDC;
	padding: 10px 0;
}
label {
	font-weight: bold;
	color: #333;
	font-size: 110%;
}
label.elgg-state-disabled {
	opacity: 0.6;
}
input, textarea {
	border: 1px solid #DCDCDC;
	color: #666;
	font: 100% Arial, Helvetica, sans-serif;
	padding: 7px 6px;
	width: 100%;
	border-radius: 3px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
input[type=email]:focus,
input[type=password]:focus,
input[type=text]:focus,
input[type=url]:focus,
textarea:focus {
	border: solid 1px #C2C2C2;
	background: #F0F0F0;
	/* We remove outlines from specific input types so we can leave the browser
	   defaults (like glows) for everything else */
	outline: 0 none;
}
.elgg-longtext-control {
	float: right;
	margin-left: 14px;
	font-size: 80%;
	cursor: pointer;
}
.elgg-input-access {
	margin: 5px 0 0 0;
}

input[type="checkbox"],
input[type="radio"] {
	margin: 0 3px 0 0;
	padding: 0;
	border: none;
	width: auto;
}
.elgg-input-checkboxes.elgg-horizontal li,
.elgg-input-radios.elgg-horizontal li {
	display: inline;
	padding-right: 10px;
}
select {
	max-width: 100%;
	padding: 4px; 
}
.elgg-form-account {
	margin-bottom: 15px;
}
.elgg-form-login, .elgg-form-account {
	max-width: 475px;
	margin: 0 auto;
}

/* ***************************************
	FRIENDS PICKER
*************************************** */
.friends-picker-main-wrapper {
	margin-bottom: 15px;
}
.friends-picker-container h3 {
	font-size: 4em !important;
	text-align: left;
	margin: 10px 0 20px !important;
	color: #999 !important;
	background: none !important;
	padding:0 !important;
}
.friends-picker .friends-picker-container .panel ul {
	text-align: left;
	margin: 0;
	padding: 0;
}
.friends-picker-wrapper {
	margin: 0;
	padding: 0;
	position: relative;
	width: 720px;
}
.friends-picker {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	width: 720px;
	height: auto;
	background-color: #DEDEDE;
	border-radius: 3px;
}
.friendspicker-savebuttons {
	background: #FFF;
	border-radius: 3px;
	margin:0 10px 10px;
}
.friends-picker .friends-picker-container { /* long container used to house end-to-end panels. Width is calculated in JS  */
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	list-style-type: none;
}
.friends-picker .friends-picker-container .panel {
	float: left;
	height: 100%;
	position: relative;
	width: 730px;
	margin: 0;
	padding: 0;
}
.friends-picker .friends-picker-container .panel .wrapper {
	margin: 0;
	padding: 4px 10px 10px 10px;
	min-height: 230px;
}
.friends-picker-navigation {
	margin: 10px 0;
	padding: 0 0 10px;
	border-bottom: 1px solid #DCDCDC;
}
.friends-picker-navigation ul {
	list-style: none;
	padding-left: 0;
}
.friends-picker-navigation ul li {
	float: left;
	margin: 0;
	background: #FFF;
}
.friends-picker-navigation a {
	font-weight: bold;
	text-align: center;
	background: #FFF;
	color: #999;
	text-decoration: none;
	display: block;
	padding: 0;
	width: 20px;
	border-radius: 3px;
}
.tabHasContent {
	background: #FFF;
	color: #333 !important;
}
.friends-picker-navigation li a:hover {
	background: #333;
	color: #FFF !important;
}
.friends-picker-navigation li a.current {
	background: #5097CF;
	color: #FFF !important;
}
.friends-picker-navigation-l, .friends-picker-navigation-r {
	position: absolute;
	top: 46px;
	text-indent: -9000em;
}
.friends-picker-navigation-l a, .friends-picker-navigation-r a {
	display: block;
	height: 40px;
	width: 40px;
}
.friends-picker-navigation-l {
	right: 48px;
	z-index: 1;
}
.friends-picker-navigation-r {
	right: 0;
	z-index: 1;
}
.friends-picker-navigation-l {
	background: url("https://masphere.infodroits.org/_graphics/friendspicker.png") no-repeat left top;
}
.friends-picker-navigation-r {
	background: url("https://masphere.infodroits.org/_graphics/friendspicker.png") no-repeat -60px top;
}
.friends-picker-navigation-l:hover {
	background: url("https://masphere.infodroits.org/_graphics/friendspicker.png") no-repeat left -44px;
}
.friends-picker-navigation-r:hover {
	background: url("https://masphere.infodroits.org/_graphics/friendspicker.png") no-repeat -60px -44px;
}
.friendspicker-savebuttons .elgg-button-submit,
.friendspicker-savebuttons .elgg-button-cancel {
	margin: 5px 20px 5px 5px;
}
#friendspicker-members-table {
	margin: 10px 0 0;
	padding: 10px 10px 0;
}

/* ***************************************
	AUTOCOMPLETE
*************************************** */
.ui-autocomplete {
	position: absolute;
	cursor: default;
	z-index: 10000;
}
.elgg-autocomplete-item .elgg-body {
	max-width: 600px;
}
.ui-autocomplete {
	background-color: #FFF;
	border: 1px solid #DCDCDC;
	overflow: hidden;
	border-radius: 3px;
}
.ui-autocomplete .ui-menu-item {
	padding: 0px 4px;
	border-radius: 3px;
}
.ui-autocomplete .ui-menu-item:hover {
	background-color: #EEE;
}
.ui-autocomplete a:hover {
	text-decoration: none;
	color: #5097CF;
}
.ui-autocomplete a.ui-state-hover {
	background-color: #EEE;
	display: block;
}

/* ***************************************
	USER PICKER
*************************************** */
.elgg-user-picker-list li:first-child {
	border-top: 1px dotted #ccc;
	margin-top: 5px;
}
.elgg-user-picker-list > li {
	border-bottom: 1px dotted #ccc;
}
.elgg-user-picker.elgg-state-disabled > input,
.elgg-user-picker.elgg-state-disabled > label {
	display: none;
}
.elgg-user-picker-remove {
	cursor: pointer;
}

/* ***************************************
	DATE PICKER
**************************************** */
.ui-datepicker {
	display: none;

	margin-top: 3px;
	background-color: #FFF;
	border: 1px solid #0054A7;
	border-radius: 3px;
	overflow: hidden;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}
.ui-datepicker-inline {
	box-shadow: none;
}

.ui-datepicker-header {
	position: relative;
	background: #5097CF;
	color: #FFF;
	padding: 2px 0;
	border-bottom: 1px solid #0054A7;
}
.ui-datepicker-header a {
	color: #FFF;
}
.ui-datepicker-prev, .ui-datepicker-next {
	position: absolute;
	top: 3px;
	cursor: pointer;
	border: 1px solid #fff;
	border-radius: 3px;
	padding: 1px 7px;
}
.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
	text-decoration: none;
}
.ui-datepicker-prev {
	left: 3px;
}
.ui-datepicker-next {
	right: 3px;
}
.ui-datepicker-title {
	line-height: 1.8em;
	margin: 0 30px;
	text-align: center;
	font-weight: bold;
}
.ui-datepicker-calendar {
	margin: 4px;
}
.ui-datepicker th {
	color: #0054A7;
	border: none;
	font-weight: bold;
	padding: 5px 6px;
	text-align: center;
}
.ui-datepicker td {
	padding: 1px;
}
.ui-datepicker td span, .ui-datepicker td a {
	display: block;
	padding: 2px;
	line-height: 1.2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker-calendar .ui-state-default {
	border: 1px solid #DCDCDC;
	color: #5097CF;;
	background: #FAFAFA;
}
.ui-datepicker-calendar .ui-state-hover {
	border: 1px solid #AAA;
	color: #0054A7;
	background: #EEE;
}
.ui-datepicker-calendar .ui-state-active,
.ui-datepicker-calendar .ui-state-active.ui-state-hover {
	font-weight: bold;
	border: 1px solid #0054A7;
	color: #0054A7;
	background: #E4ECF5;
}

/* <style> /**/

/* **************************
	BUTTONS
************************** */
.elgg-button {
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	color: #FFF;
	width: auto;
	padding: 6px 12px;
	cursor: pointer;
	border-radius: 3px;
	box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.6);

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.elgg-button:hover,
.elgg-button:focus {
	text-decoration: none;
}
.elgg-button-submit {	
	border: 1px solid rgba(0, 0, 0, 0.2);
	background: #4787B8;
}
.elgg-button-submit:hover,
.elgg-button-submit:focus {
	background: #60B6F7;
}
.elgg-button-submit.elgg-state-disabled {
	background: #DEDEDE;
	cursor: default;
}
.elgg-button-cancel {
	border: 1px solid rgba(0, 0, 0, 0.2);
	background: #FAA51A;
}
.elgg-button-cancel:hover,
.elgg-button-cancel:focus {
	background: #E38F07;
}
.elgg-button-action {
	border: 1px solid rgba(0, 0, 0, 0.2);
	background: #F0F0F0;
	color: #333;
}
.elgg-button-action:hover,
.elgg-button-action:focus {
	background: #DEDEDE;
	color: #333;
}
.elgg-button-delete {
	border: 1px solid rgba(0, 0, 0, 0.2);
	background: #FF3300;
}
.elgg-button-delete:hover,
.elgg-button-delete:focus {
	background: #D63006;
}
.elgg-button-dropdown {
	background: none;
	text-decoration: none;
	display: block;
	position: relative;
	margin-left: 0;
	color: #FFF;
	border: none;
	box-shadow: none;
	border-radius: 0;
}
.elgg-button-dropdown:hover,
.elgg-button-dropdown:focus,
.elgg-button-dropdown.elgg-state-active {
	color: #FFF;
	background: #60B8F7;
	text-decoration: none;
}
.elgg-button-special {
	border: 1px solid rgba(0, 0, 0, 0.2);
	background: #42C5B8;
}
.elgg-button-special:hover,
.elgg-button-special:focus {
	background: #5ED9CD;
}
/* Use .elgg-size-small or .elgg-size-large for additional sizes */
.elgg-button.elgg-size-small {
	font-size: 12px;
	padding: 4px 8px;
}
.elgg-button.elgg-size-large {
	font-size: 20px;
	padding: 14px 20px;
	margin: 15px 0;
	border-radius: 5px;
}
/* <style> /**/

/* ***************************************
	ICONS
*************************************** */

.elgg-icon {
//	background: transparent url(https://masphere.infodroits.org/mod/jade_3Cgreen_theme/graphics/elgg_sprites.png) no-repeat left;
	width: 16px;
	height: 16px;
	margin: 0 2px;
}
.elgg-icon-arrow-left {
	background-position: 0 -0px;
}
.elgg-icon-arrow-right {
	background-position: 0 -18px;
}
.elgg-icon-arrow-two-head {
	background-position: 0 -36px;
}
.elgg-icon-attention-hover,
.elgg-icon-attention:hover,
:focus > .elgg-icon-attention {
	background-position: 0 -54px;
}
.elgg-icon-attention {
	background-position: 0 -72px;
}
.elgg-icon-calendar {
	background-position: 0 -90px;
}
.elgg-icon-cell-phone {
	background-position: 0 -108px;
}
.elgg-icon-checkmark-hover,
.elgg-icon-checkmark:hover,
:focus > .elgg-icon-checkmark {
	background-position: 0 -126px;
}
.elgg-icon-checkmark {
	background-position: 0 -144px;
}
.elgg-icon-clip-hover,
.elgg-icon-clip:hover,
:focus > .elgg-icon-clip {
	background-position: 0 -162px;
}
.elgg-icon-clip {
	background-position: 0 -180px;
}
.elgg-icon-cursor-drag-arrow {
	background-position: 0 -198px;
}
.elgg-icon-delete-alt-hover,
.elgg-icon-delete-alt:hover,
:focus > .elgg-icon-delete-alt {
	background-position: 0 -216px;
}
.elgg-icon-delete-alt {
	background-position: 0 -234px;
}
.elgg-icon-delete-hover,
.elgg-icon-delete:hover,
:focus > .elgg-icon-delete {
	background-position: 0 -252px;
}
.elgg-icon-delete {
	background-position: 0 -270px;
}
.elgg-icon-download-hover,
.elgg-icon-download:hover,
:focus > .elgg-icon-download {
	background-position: 0 -288px;
}
.elgg-icon-download {
	background-position: 0 -306px;
}
.elgg-icon-eye {
	background-position: 0 -324px;
}
.elgg-icon-facebook {
	background-position: 0 -342px;
}
.elgg-icon-grid-hover,
.elgg-icon-grid:hover,
:focus > .elgg-icon-grid {
	background-position: 0 -360px;
}
.elgg-icon-grid {
	background-position: 0 -378px;
}
.elgg-icon-home-hover,
.elgg-icon-home:hover,
:focus > .elgg-icon-home {
	background-position: 0 -396px;
}
.elgg-icon-home {
	background-position: 0 -414px;
}
.elgg-icon-hover-menu-hover,
.elgg-icon-hover-menu:hover,
:focus > .elgg-icon-hover-menu {
/*	background: transparent url(https://masphere.infodroits.org/mod/jade_3Cgreen_theme/graphics/avatar_menu_arrows.png) no-repeat;
	background-position: right bottom;
	width: 100%;
	height: 100%;*/
}
.elgg-icon-hover-menu {
/*	background: transparent url(https://masphere.infodroits.org/mod/jade_3Cgreen_theme/graphics/avatar_menu_arrows.png) no-repeat;
	background-position: right bottom;
	width: 100%;
	height: 100%;*/
}
.elgg-icon-info-hover,
.elgg-icon-info:hover,
:focus > .elgg-icon-info {
	background-position: 0 -468px;
}
.elgg-icon-info {
	background-position: 0 -486px;
}
.elgg-icon-link-hover,
.elgg-icon-link:hover,
:focus > .elgg-icon-link {
	background-position: 0 -504px;
}
.elgg-icon-link {
	background-position: 0 -522px;
}
.elgg-icon-list {
	background-position: 0 -540px;
}
.elgg-icon-lock-closed {
	background-position: 0 -558px;
}
.elgg-icon-lock-open {
	background-position: 0 -576px;
}
.elgg-icon-mail-alt-hover,
.elgg-icon-mail-alt:hover,
:focus > .elgg-icon-mail-alt {
	background-position: 0 -594px;
}
.elgg-icon-mail-alt {
	background-position: 0 -612px;
}
.elgg-icon-mail-hover,
.elgg-icon-mail:hover,
:focus > .elgg-icon-mail {
	background-position: 0 -630px;
}
.elgg-icon-mail {
	background-position: 0 -648px;
}
.elgg-icon-photo {
	background-position: 0 -666px;
}
.elgg-icon-print-alt {
	background-position: 0 -684px;
}
.elgg-icon-print {
	background-position: 0 -702px;
}
.elgg-icon-push-pin-alt {
	background-position: 0 -720px;
}
.elgg-icon-push-pin {
	background-position: 0 -738px;
}
.elgg-icon-redo {
	background-position: 0 -756px;
}
.elgg-icon-refresh-hover,
.elgg-icon-refresh:hover,
:focus > .elgg-icon-refresh {
	background-position: 0 -774px;
}
.elgg-icon-refresh {
	background-position: 0 -792px;
}
.elgg-icon-round-arrow-left {
	background-position: 0 -810px;
}
.elgg-icon-round-arrow-right {
	background-position: 0 -828px;
}
.elgg-icon-round-checkmark {
	background-position: 0 -846px;
}
.elgg-icon-round-minus {
	background-position: 0 -864px;
}
.elgg-icon-round-plus {
	background-position: 0 -882px;
}
.elgg-icon-rss {
	background-position: 0 -900px;
}
.elgg-icon-search-focus {
	background-position: 0 -918px;
}
.elgg-icon-search {
	background-position: 0 -936px;
}
.elgg-icon-settings-alt-hover,
.elgg-icon-settings-alt:hover,
:focus > .elgg-icon-settings-alt {
	background-position: 0 -954px;
}
.elgg-icon-settings-alt {
	background-position: 0 -972px;
}
.elgg-icon-settings {
	
    background-position: 0 -990px;
    /*display: none;*/
}
.elgg-icon-share-hover,
.elgg-icon-share:hover,
:focus > .elgg-icon-share {
	background-position: 0 -1008px;
}
.elgg-icon-share {
	background-position: 0 -1026px;
}
.elgg-icon-shop-cart-hover,
.elgg-icon-shop-cart:hover,
:focus > .elgg-icon-shop-cart {
	background-position: 0 -1044px;
}
.elgg-icon-shop-cart {
	background-position: 0 -1062px;
}
.elgg-icon-speech-bubble-alt-hover,
.elgg-icon-speech-bubble-alt:hover,
:focus > .elgg-icon-speech-bubble-alt {
	background-position: 0 -1080px;
}
.elgg-icon-speech-bubble-alt {
	background-position: 0 -1098px;
}
.elgg-icon-speech-bubble-hover,
.elgg-icon-speech-bubble:hover,
:focus > .elgg-icon-speech-bubble {
	background-position: 0 -1116px;
}
.elgg-icon-speech-bubble {
	background-position: 0 -1134px;
}
.elgg-icon-star-alt {
	background-position: 0 -1152px;
}
.elgg-icon-star-empty-hover,
.elgg-icon-star-empty:hover,
:focus > .elgg-icon-star-empty {
	background-position: 0 -1170px;
}
.elgg-icon-star-empty {
	background-position: 0 -1188px;
}
.elgg-icon-star-hover,
.elgg-icon-star:hover,
:focus > .elgg-icon-star {
	background-position: 0 -1206px;
}
.elgg-icon-star {
	background-position: 0 -1224px;
}
.elgg-icon-tag-hover,
.elgg-icon-tag:hover,
:focus > .elgg-icon-tag {
	background-position: 0 -1242px;
}
.elgg-icon-tag {
	background-position: 0 -1260px;
}
.elgg-icon-thumbs-down-alt-hover,
.elgg-icon-thumbs-down-alt:hover,
:focus > .elgg-icon-thumbs-down-alt {
	background-position: 0 -1278px;
}
.elgg-icon-thumbs-down-hover,
.elgg-icon-thumbs-down:hover,
:focus > .elgg-icon-thumbs-down,
.elgg-icon-thumbs-down-alt {
	background-position: 0 -1296px;
}
.elgg-icon-thumbs-down {
	background-position: 0 -1314px;
}
.elgg-icon-thumbs-up-alt-hover,
.elgg-icon-thumbs-up-alt:hover,
:focus > .elgg-icon-thumbs-up-alt {
	background-position: 0 -1332px;
}
.elgg-icon-thumbs-up-hover,
.elgg-icon-thumbs-up:hover,
:focus > .elgg-icon-thumbs-up,
.elgg-icon-thumbs-up-alt {
	background-position: 0 -1350px;
}
.elgg-icon-thumbs-up {
	background-position: 0 -1368px;
}
.elgg-icon-trash {
	background-position: 0 -1386px;
}
.elgg-icon-twitter {
	background-position: 0 -1404px;
}
.elgg-icon-undo {
	background-position: 0 -1422px;
}
.elgg-icon-user-hover,
.elgg-icon-user:hover,
:focus > .elgg-icon-user {
	background-position: 0 -1440px;
}
.elgg-icon-user {
	background-position: 0 -1458px;
}
.elgg-icon-users-hover,
.elgg-icon-users:hover,
:focus > .elgg-icon-users {
	background-position: 0 -1476px;
}
.elgg-icon-users {
	background-position: 0 -1494px;
}
.elgg-icon-video {
	background-position: 0 -1512px;
}


.elgg-avatar > .elgg-icon-hover-menu {
	display: none;
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 0;
	cursor: pointer;
}

.elgg-ajax-loader {
	background: #FFF url(https://masphere.infodroits.org/cache/1617879465/default/jade_theme/ajax_loader_bw.gif) no-repeat center center;
        
	min-height: 31px;
	min-width: 31px;
}

/* ***************************************
	AVATAR ICONS
*************************************** */
.elgg-avatar {
	position: relative;
	display: inline-block;
}
.elgg-avatar > a > img {
	display: block;
}
.elgg-avatar-tiny > a > img {
	width: 25px;
	height: 25px;

	/* remove the border-radius if you don't want rounded avatars in supported browsers */
	border-radius: 12px;

	background-clip:  border;
	background-size: 25px;
}
.elgg-avatar-small > a > img {
	width: 40px;
	height: 40px;

	/* remove the border-radius if you don't want rounded avatars in supported browsers */
	border-radius: 20px;

	background-clip:  border;
	background-size: 40px;
}
.elgg-avatar-medium > a > img {
	width: 100px;
	height: 100px;
}
.elgg-avatar-large {
	width: 100%;
}
.elgg-avatar-large > a > img {
	width: 100%;
	height: auto;
}
.elgg-state-banned {
	opacity: 0.5;
}
/* <style> /**/


/*Sprite Menu TopBar*/    
.elgg-jade_menu {
	background: transparent url(https://masphere.infodroits.org/cache/1617879465/default/jade_theme/jade/Sprite_menu.png) no-repeat left;
	width: 28px;
	height: 28px;
}

/*home*/
.elgg-icon-jade_menu_home {
	background-position: -56px -0px;
}
.elgg-icon-jade_menu_home-hover,
.elgg-icon-jade_menu_home:hover,
:focus > .elgg-icon-jade_menu_home {
	background-position: -28px -0px;
}

.elgg-icon-jade_menu_home:active {
	background-position: -0px -0px;
}

/*outils*/
.elgg-icon-jade_menu_outils {
	background-position: -56px -28px;
}
.elgg-icon-jade_menu_outils-hover,
.elgg-icon-jade_menu_outils:hover,
:focus > .elgg-icon-jade_menu_outils {
	background-position: -28px -28px;
}

.elgg-icon-jade_menu_outils:active {
	background-position: -0px -28px;
}
/*globe*/
.elgg-icon-jade_menu_globe {
	background-position: -56px -56px;
}
.elgg-icon-jade_menu_globe-hover,
.elgg-icon-jade_menu_globe:hover,
:focus > .elgg-icon-jade_menu_globe {
	background-position: -28px -56px;
}

.elgg-icon-jade_menu_globe:active {
	background-position: -0px -56px;
}

/*message*/
.elgg-icon-jade_menu_message {
	background-position: -56px -84px;
}
.elgg-icon-jade_menu_message-hover,
.elgg-icon-jade_menu_message:hover,
:focus > .elgg-icon-jade_menu_message {
	background-position: -28px -84px;
}

.elgg-icon-jade_menu_message:active {
	background-position: -0px -84px;
}

/*profile*/
.elgg-icon-jade_menu_profile {
	background-position: -56px -112px;
}
.elgg-icon-jade_menu_profile-hover,
.elgg-icon-jade_menu_profile:hover,
:focus > .elgg-icon-jade_menu_profile {
	background-position: -28px -112px;
}

.elgg-icon-jade_menu_profile:active {
	background-position: -0px -112px;
}

/*journal*/
.elgg-icon-jade_menu_journal {
	background-position: -56px -140px;
}
.elgg-icon-jade_menu_journal-hover,
.elgg-icon-jade_menu_journal:hover,
:focus > .elgg-icon-jade_menu_journal {
	background-position: -28px -140px;
}

.elgg-icon-jade_menu_journal:active {
	background-position: -0px -140px;
}

/*groupes*/
.elgg-icon-jade_menu_groupes {
	background-position: -56px -168px;
}
.elgg-icon-jade_menu_groupes-hover,
.elgg-icon-jade_menu_groupes:hover,
:focus > .elgg-icon-jade_menu_groupes {
	background-position: -28px -168px;
}

.elgg-icon-jade_menu_groupes:active {
	background-position: -0px -168px;
}

/*envoyer*/
.elgg-icon-jade_menu_envoyer {
	background-position: -56px -196px;
}
.elgg-icon-jade_menu_envoyer-hover,
.elgg-icon-jade_menu_envoyer:hover,
:focus > .elgg-icon-jade_menu_envoyer {
	background-position: -28px -196px;
}

.elgg-icon-jade_menu_envoyer:active {
	background-position: -0px -196px;
}

/*discussion*/
.elgg-icon-jade_menu_discussion {
	background-position: -56px -224px;
}
.elgg-icon-jade_menu_discussion-hover,
.elgg-icon-jade_menu_discussion:hover,
:focus > .elgg-icon-jade_menu_discussion {
	background-position: -28px -224px;
}

.elgg-icon-jade_menu_discussion:active {
	background-position: -0px -224px;
}

/*earth*/
.elgg-icon-jade_menu_earth {
	background-position: -56px -252px;
}
.elgg-icon-jade_menu_earth-hover,
.elgg-icon-jade_menu_earth:hover,
:focus > .elgg-icon-jade_menu_earth {
	background-position: -28px -252px;
}

.elgg-icon-jade_menu_earth:active {
	background-position: -0px -252px;
}

/*logout*/
.elgg-icon-jade_menu_logout {
	background-position: -56px -280px;
}
.elgg-icon-jade_menu_logout-hover,
.elgg-icon-jade_menu_logout:hover,
:focus > .elgg-icon-jade_menu_logout {
	background-position: -28px -280px;
}

.elgg-icon-jade_menu_logout:active {
	background-position: -0px -280px;
}

/*loupe*/
.elgg-icon-jade_menu_loupe {
	background-position: -56px -308px;
}
.elgg-icon-jade_menu_loupe-hover,
.elgg-icon-jade_menu_loupe:hover,
:focus > .elgg-icon-jade_menu_loupe {
	background-position: -28px -308px;
}

.elgg-icon-jade_menu_loupe:active {
	background-position: -0px -308px;
}

/*plus*/
.elgg-icon-jade_menu_plus {
	background-position: -56px -392px;
}
.elgg-icon-jade_menu_plus-hover,
.elgg-icon-jade_menu_plus:hover,
:focus > .elgg-icon-jade_menu_plus {
	background-position: -28px -392px;
}

.elgg-icon-jade_menu_plus:active {
	background-position: -0px -392px;
}

/*close*/
.elgg-icon-jade_menu_close {
	background-position: -56px -364px;
}
.elgg-icon-jade_menu_close-hover,
.elgg-icon-jade_menu_close:hover,
:focus > .elgg-icon-jade_menu_close {
	background-position: -28px -364px;
}

.elgg-icon-jade_menu_close:active {
	background-position: -0px -364px;
}

/*parametres*/
.elgg-icon-jade_menu_parametres {
	background-position: -56px -392px;
}
.elgg-icon-jade_menu_parametres-hover,
.elgg-icon-jade_menu_parametres:hover,
:focus > .elgg-icon-jade_menu_parametres {
	background-position: -28px -392px;
}

.elgg-icon-jade_menu_parametres:active {
	background-position: -0px -392px;
}
/*etoile*/
.elgg-icon-jade_menu_etoile {
	background-position: -56px -420px;
}
.elgg-icon-jade_menu_etoile-hover,
.elgg-icon-jade_menu_etoile:hover,
:focus > .elgg-icon-jade_menu_etoile {
	background-position: -28px -420px;
}

.elgg-icon-jade_menu_etoile:active {
	background-position: -0px -420px;
}

/*reglages*/
.elgg-icon-jade_menu_reglages {
	background-position: -56px -448px;
}
.elgg-icon-jade_menu_reglages-hover,
.elgg-icon-jade_menu_reglages:hover,
:focus > .elgg-icon-jade_menu_reglages {
	background-position: -28px -448px;
}

.elgg-icon-jade_menu_reglages:active {
	background-position: -0px -448px;
}

/* <style> /**/

/* ***************************************
	PAGINATION
*************************************** */
.elgg-pagination {
	margin: 20px 0 10px;
	display: block;
	text-align: center;
}
.elgg-pagination li {
	display: inline;
	text-align: center;
	margin-left: -1px;
}
.elgg-pagination li:first-child a,
.elgg-pagination li:first-child span {
	border-radius: 3px 0 0 3px;
}
.elgg-pagination li:last-child a,
.elgg-pagination li:last-child span {
	border-radius: 0 3px 3px 0;
}
.elgg-pagination li:first-child a:before,
.elgg-pagination li:first-child span:before {
	content: "\ab";
	margin-right: 6px;
}
.elgg-pagination li:last-child a:after,
.elgg-pagination li:last-child span:after {
	content: "\bb";
	margin-left: 6px;
}
.elgg-pagination a,
.elgg-pagination span {
	display: inline-block;
	padding: 6px 15px;
	color: #444;
	border: 1px solid #DCDCDC;
}
.elgg-pagination a:hover {
	color: #999;
	text-decoration: none;
}
.elgg-pagination .elgg-state-disabled span {
	color: #CCC;
}
.elgg-pagination .elgg-state-selected span {
	color: #999;
}

/* ***************************************
	TABS
*************************************** */
.elgg-tabs {
	margin-bottom: 0px;
	border-bottom: 1px solid #DCDCDC;
	display: table;
	width: 100%;
}
.elgg-tabs li {
	float: left;
	border: 1px solid #DCDCDC;
	border-bottom: 0;
	background: #eee;
	margin: 0 0 0 5px;
	border-radius: 3px 3px 0 0;
}
.elgg-tabs a {
	text-decoration: none;
	display: block;
	padding: 4px 15px 6px;
	text-align: center;
	height: auto;
	color: #666;
}
.elgg-tabs a:hover {
	background: #DEDEDE;
	color: #444;
}
.elgg-tabs .elgg-state-selected {
	border-color: #DCDCDC;
	background: #FFF;
}
.elgg-tabs .elgg-state-selected a {
	position: relative;
	top: 1px;
	background: #FFF;
}

/* ***************************************
	BREADCRUMBS
*************************************** */
.elgg-breadcrumbs {
	font-size: 100%;
	font-weight: normal;
	line-height: 1.4em;
	padding: 0 10px 1px 0;
	color: #BABABA;
        display: none;
}
.elgg-breadcrumbs > li {
	display: inline-block;
}
.elgg-breadcrumbs > li:after {
	content: "\003E";
	padding: 0 4px;
	font-weight: normal;
}
.elgg-breadcrumbs > li > a {
	display: inline-block;
	color: #999;
}
.elgg-breadcrumbs > li > a:hover {
	color: #0054a7;
	text-decoration: underline;
}
.elgg-main .elgg-breadcrumbs {
	position: relative;
	top: -1px;
	left: 0;
}

/* ***************************************
	TOPBAR MENU
*************************************** */
.elgg-menu-topbar {
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	float: left;
}

.elgg-menu-topbar > li {
	float: left;
	height: 33px;
}

.elgg-menu-topbar > li > a {
	padding-top: 2px;
	color: #EEE;
	margin: 0 15px;
}

.elgg-menu-topbar > li > a:hover {
	color: #60B8F7;
	text-decoration: none;
}

.elgg-menu-topbar-alt {
	float: right;
}

.elgg-menu-topbar .elgg-icon {
	vertical-align: middle;
	margin-top: -1px;
}

.elgg-menu-topbar > li > a.elgg-topbar-logo {
	margin-top: 0;
	padding-left: 5px;
	width: 38px;
	height: 20px;
}

/*CV icone ronde*/
.elgg-menu-topbar > li > a.elgg-topbar-avatar {
	width: 25px;
	height: 25px;
	padding-top: 3px;
}
.elgg-menu-topbar > li > a.elgg-topbar-avatar > img {
    border-radius: 12px;
}    

/* ***************************************
	SITE MENU
*************************************** */

.top_bar_menu_site:hover > .elgg-menu-site {
display: block;
}

.elgg-menu-site {
z-index: 10;
display: none;
position: absolute;
padding-top: 8px;
width: 150px;
/*-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
-moz-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);*/
opacity: 0.95;
}



.elgg-menu-site a {
background-color: #019aa6;
color: #fff;
border-bottom: 2px solid #ffffff;
font-weight: normal;
font-size: 0.8em;
height: 22px;
padding-bottom: 0;
padding-left: 10px;
padding-top: 4px;
text-align:left;
}

.elgg-menu-site a:hover {
text-decoration: none;
color: #fff;
background-color: #4C4843;
/*color: #E13E71;
background-color: #494B52;*/
}

/*.elgg-menu-site {
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	float: left;
	left: 0;
	top: 0;
	position: relative;
	z-index: 1;
}
.elgg-menu-site > li {
	float: left;
}
.elgg-menu-site > li > a {
	color: #FFF;
	padding: 14px 18px;
}
.elgg-menu-site > li > a:hover {
	text-decoration: none;
}
.elgg-menu-site > .elgg-state-selected > a,
.elgg-menu-site > li:hover > a {
	background-color: #60B8F7;
	color: #FFF;
}
.elgg-menu-site > li > ul {
	position: absolute;
	display: none;
	background-color: #FFF;
	border: 1px solid #DEDEDE;
	text-align: left;
	top: 47px;
	margin-left: 0;
	width: 180px;

	border-radius: 0 0 3px 3px;
	box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.25);
}
.elgg-menu-site > li:hover > ul {
	display: block;
}
.elgg-menu-site-more li {
	width: 180px;
}
.elgg-menu-site-more > li > a {
	padding: 10px 20px;
	background-color: #FFF;
	color: #444;
}
.elgg-menu-site-more > li:last-child > a,
.elgg-menu-site-more > li:last-child > a:hover {
	border-radius: 3px;
}
.elgg-menu-site-more > li.elgg-state-selected > a,
.elgg-menu-site-more > li > a:hover {
	background-color: #F0F0F0;
	color: #444;
}
.elgg-more {
	width: 182px;
}
.elgg-more > a:after {
	content: "\bb";
	margin-left: 6px;
}*/
/* ***************************************
	TITLE
*************************************** */
.elgg-menu-title {
	float: right;
	margin-top: -1px;
}
.elgg-menu-title > li {
	display: inline-block;
	margin-left: 4px;
}

/* ***************************************
	FILTER MENU
*************************************** */
.elgg-menu-filter {
	margin-bottom: 5px;
	border-bottom: 1px solid #DCDCDC;
	display: table;
	width: 100%;
}
.elgg-menu-filter > li {
	float: left;
	border: 1px solid #DCDCDC;
	border-bottom: 0;
	background: #eee;
	margin: 0 0 0 5px;
	border-radius: 3px 3px 0 0;
}
.elgg-menu-filter > li.elgg-state-selected a:hover {
	background: #FFFFFF;
}
.elgg-menu-filter > li > a {
	text-decoration: none;
	display: block;
	padding: 4px 15px 6px;
	text-align: center;
	height: auto;
	color: #666;
}
.elgg-menu-filter > li > a:hover {
	background: #DEDEDE;
	color: #444;
}
.elgg-menu-filter > .elgg-state-selected {
	border-color: #DCDCDC;
	background: #FFF;
}
.elgg-menu-filter > .elgg-state-selected > a {
	position: relative;
	top: 1px;
	background: #FFF;
}

/* ***************************************
	PAGE MENU
*************************************** */
.elgg-menu-page {
	margin-bottom: 15px;
}
.elgg-menu-page a {
	color: #444;
	display: block;
	margin: 3px 0 5px 0;
	padding: 2px 4px 2px 0;
}
.elgg-menu-page a:hover {
	color: #999;
}
.elgg-menu-page li.elgg-state-selected > a {
	color: #999;
	text-decoration: underline;
}
.elgg-menu-page .elgg-child-menu {
	display: none;
	margin-left: 15px;
}
.elgg-menu-page .elgg-state-selected > .elgg-child-menu {
	display: block;
}
.elgg-menu-page .elgg-menu-closed:before, .elgg-menu-opened:before {
	display: inline-block;
	padding-right: 4px;
}
.elgg-menu-page .elgg-menu-closed:before {
	content: "\25B8";
}
.elgg-menu-page .elgg-menu-opened:before {
	content: "\25BE";
}

/* ***************************************
	HOVER MENU
*************************************** */
.elgg-menu-hover {
	display: none;
	position: absolute;
	z-index: 10000;
	overflow: hidden;
	min-width: 180px;
	max-width: 250px;
	border: 1px solid #DEDEDE;
	background-color: #FFF;

	border-radius: 0 3px 3px 3px;
	box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.25);
}
.elgg-menu-hover > li {
	border-bottom: 1px solid #ddd;
}
.elgg-menu-hover > li:last-child {
	border-bottom: none;
}
.elgg-menu-hover .elgg-heading-basic {
	display: block;
}
.elgg-menu-hover > li a {
	padding: 6px 18px;
}
.elgg-menu-hover a:hover {
	background-color: #F0F0F0;
	text-decoration: none;
}
.elgg-menu-hover-admin a {
	color: #FF0000;
}
.elgg-menu-hover-admin a:hover {
	color: #FFF;
	background-color: #FF0000;
}

/* ***************************************
	SITE FOOTER
*************************************** */
.elgg-menu-footer > li,
.elgg-menu-footer > li > a {
	display: inline-block;
	color: #999;
}

.elgg-menu-footer > li:after {
	content: "\007C";
	padding: 0 6px;
}

.elgg-menu-footer-default {
	float: right;
}

.elgg-menu-footer-alt {
	float: left;
}

.elgg-menu-footer-meta {
	float: left;
}

/* ***************************************
	GENERAL MENU
*************************************** */
.elgg-menu-general > li,
.elgg-menu-general > li > a {
	display: inline-block;
	color: #999;
}

.elgg-menu-general > li:after {
	content: "\007C";
	padding: 0 6px;
}

/* ***************************************
	ENTITY AND ANNOTATION
*************************************** */
.elgg-menu-entity, .elgg-menu-annotation {
	float: right;
	margin-left: 15px;
	font-size: 90%;
	color: #AAA;
	line-height: 16px;
	height: auto;
}
.elgg-menu-entity > li, .elgg-menu-annotation > li {
	margin-left: 15px;
}
.elgg-menu-entity > li > a, .elgg-menu-annotation > li > a {
	color: #AAA;
}
.elgg-menu-entity > li > a, .elgg-menu-annotation > li > a {
	display: block;
}
.elgg-menu-entity > li > span, .elgg-menu-annotation > li > span {
	vertical-align: baseline;
}

/* ***************************************
	OWNER BLOCK
*************************************** */
.elgg-menu-owner-block li a {
	display: block;
	margin: 3px 0 5px 0;
	padding: 2px 4px 2px 0;
	color: #444;
}
.elgg-menu-owner-block li a:hover {
	color: #999;
}
.elgg-menu-owner-block li.elgg-state-selected > a {
	color: #999;
	text-decoration: underline;
}

/* ***************************************
	LONGTEXT
*************************************** */
.elgg-menu-longtext {
	float: right;
}

/* ***************************************
	RIVER
*************************************** */
.elgg-menu-river {
	float: right;
	margin-left: 15px;
	font-size: 90%;
	color: #AAA;
	line-height: 16px;
	height: 16px;
}
.elgg-menu-river > li {
	display: inline-block;
	margin-left: 5px;
}
.elgg-menu-river > li > a {
	color: #AAA;
	height: 16px;
}
.elgg-menu-river > li > a {
	display: block;
}
.elgg-menu-river > li > span {
	vertical-align: baseline;
}

/* ***************************************
	SIDEBAR EXTRAS (rss, bookmark, etc)
*************************************** */
.elgg-menu-extras {
	margin-bottom: 15px;
}
.elgg-menu-extras li {
	padding-right: 5px;
}

/* ***************************************
	WIDGET MENU
*************************************** */
.elgg-menu-widget > li {
	position: absolute;
	top: 8px;
	display: inline-block;
	width: 18px;
	height: 18px;
}
.elgg-menu-widget > .elgg-menu-item-collapse {
	left: 10px;
}
.elgg-menu-widget > .elgg-menu-item-delete {
	right: 10px;
}
.elgg-menu-widget > .elgg-menu-item-settings {
	right: 32px;
}
/*
<style> 
/**/

/* ***************************************
	Modules
*************************************** */
.elgg-module {
	overflow: hidden;
	margin-bottom: 20px;
}
.elgg-list>li{

	margin-bottom:4px
	}
.elgg-item-object{
	background-color:#FFFFFF
	
	
	}
#groups-tools > li{
	background-color:#FFFFFF;
	}
#groups-tools > li > div > div.elgg-body{
	padding:10px
	}
	
	
.elgg-item-object-groupforumtopic{
	background-color:#fff
	
	}	
	
.elgg-item-object-groupforumtopic a{
	color:#019aa6
	
	}	
	
/* Aside */
.elgg-module-aside .elgg-head {
	border-bottom: 1px solid #DCDCDC;

	margin-bottom: 5px;
	padding-bottom: 5px;
}

/* Info */
.elgg-module-info > .elgg-head {
	background-color: #019AA6;
	padding: 10px;
	margin-bottom: 10px;
	height: auto;
	overflow: hidden;
	box-shadow: inset 0 0 1px #FFFFFF;
}
.elgg-module-info > .elgg-head * {
	color: #fff;
}

/* Popup */
.elgg-module-popup {
	background-color: #FFF;
	border: 1px solid #DCDCDC;
	z-index: 9999;
	margin-bottom: 0;
	padding: 5px;
	border-radius: 3px;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}
.elgg-module-popup > .elgg-head {
	margin-bottom: 5px;
}
.elgg-module-popup > .elgg-head * {
	color: #0054A7;
}


/* Dropdown */
.elgg-module-dropdown {
	background-color: #FFF;
	border: 1px solid #DEDEDE;
	border-radius: 0 0 3px 3px;
	display:none;
	width: 240px;
	padding: 20px;
	margin-right: 0;
	z-index: 100;
	position: absolute;
	right: 0;
	top: 100%;
	box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.25);
}

/* Featured */
.elgg-module-featured {
	border: 1px solid #DCDCDC;
	border-radius: 3px;
}
.elgg-module-featured > .elgg-head {
	background-color: #019AA6;
	padding: 10px;
	height: auto;
	overflow: hidden;
	border-bottom: 1px solid #DCDCDC;
	box-shadow: inset 0 0 1px #FFFFFF;
}
.elgg-module-featured > .elgg-head * {
	color: #666;
}
.elgg-module-featured > .elgg-body {
	padding: 10px;
}

/* ***************************************
	Widgets
*************************************** */
.elgg-widgets {
	min-height: 30px;
}
.elgg-widget-add-control {
	text-align: right;
	margin: 0 5px 15px;
}
.elgg-widget-add-control .elgg-button {
	display: inline;
}
.elgg-widgets-add-panel {
	padding: 10px;
	margin: 0 5px 15px;
	background: #DEDEDE;
	border: 2px solid #ccc;
}
.elgg-widgets-add-panel li {
	float: left;
	margin: 2px 10px;
	width: 200px;
	padding: 4px;
	background-color: #CCC;
	border: 2px solid #B0B0B0;
	font-weight: bold;
}
.elgg-widgets-add-panel li a {
	display: block;
}
.elgg-widgets-add-panel .elgg-state-available {
	color: #333;
	cursor: pointer;
}
.elgg-widgets-add-panel .elgg-state-available:hover {
	background-color: #BCBCBC;
}
.elgg-widgets-add-panel .elgg-state-unavailable {
	color: #888;
}

.elgg-module-widget {
	border: 1px solid #DCDCDC;
	margin: 0 10px 15px;
	position: relative;
        box-shadow: 4px 4px 10px #888;
}
.elgg-module-widget:hover {
	/*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
        box-shadow: 2px 2px 10px #888;
}
.elgg-module-widget > .elgg-head {
	background-color: #019AA6;
	padding: 10px 0;
	height: auto;
	overflow: hidden;
	box-shadow: inset 0 0 1px #FFFFFF;
}
.elgg-module-widget > .elgg-head h3 {
	float: left;
	padding: 0 45px 0 30px;
    color: white;
    font-size: 1.25em;
    line-height: 1.2em;
}
.elgg-module-widget > .elgg-head h3 a{
	text-decoration:underline;
    color: white;
}

.elgg-module-widget.elgg-state-draggable .elgg-widget-handle {
	cursor: move;
}
a.elgg-widget-collapse-button {
	color: #C5C5C5;
}
a.elgg-widget-collapse-button:hover,
a.elgg-widget-collapsed:hover {
	color: #9D9D9D;
	text-decoration: none;
}
a.elgg-widget-collapse-button:before {
	content: "\25BC";
}
a.elgg-widget-collapsed:before {
	content: "\25BA";
}
.elgg-module-widget > .elgg-body {
	background-color: #FFF;
	width: 100%;
	overflow: hidden;
	border-top: 1px solid #DCDCDC;
}
.elgg-widget-edit {
	display: none;
	width: auto;
	padding: 10px;
	border-bottom: 1px solid #DCDCDC;
	background-color: #F9F9F9;
}
.elgg-widget-content {
	padding: 10px;
}
.elgg-widget-placeholder {
	border: 1px dashed #DEDEDE;
	margin-bottom: 15px;
}
/* <style> /**/

/* ***************************************
	Image Block
*************************************** */
.elgg-image-block {
	padding: 10px 0;
}
.elgg-image-block .elgg-image {
	float: left;
	margin-right: 8px;
}
.elgg-image-block .elgg-image-alt {
	float: right;
	margin-left: 8px;
}

/* ***************************************
	List
*************************************** */
.elgg-list {
	margin: 0;
	clear: both;
}
.elgg-list > li {
	background-color:#fff;
	border-bottom: 1px solid #DCDCDC;
	padding:0px 4px 0px 4px;
}
.elgg-item h3 a {
	padding-bottom: 4px;
}
.elgg-item > .elgg-subtext {
	margin-bottom: 4px;
}
.elgg-item .elgg-content {

	margin: 10px 0;
}
.elgg-content {
	clear: both;
}

/* ***************************************
	Gallery
*************************************** */
.elgg-gallery {
	border: none;
	margin-right: auto;
	margin-left: auto;
}
.elgg-gallery td {
	padding: 5px;
}
.elgg-gallery-fluid > li {
	float: left;
}
.elgg-gallery-users > li {
	margin: 0 2px;
}

/* ***************************************
	Tables
*************************************** */
.elgg-table {
	width: 100%;
	border-top: 1px solid #DCDCDC;
}
.elgg-table td, .elgg-table th {
	padding: 4px 8px;
	border: 1px solid #DCDCDC;
}
.elgg-table th {
	background-color: #DDD;
}
.elgg-table tr:nth-child(odd), .elgg-table tr.odd {
	background-color: #FFF;
}
.elgg-table tr:nth-child(even), .elgg-table tr.even {
	background-color: #F0F0F0;
}
.elgg-table-alt {
	width: 100%;
	border-top: 1px solid #DCDCDC;
}
.elgg-table-alt th {
	background-color: #EEE;
	font-weight: bold;
}
.elgg-table-alt td, .elgg-table-alt th {
	padding: 6px 0;
	border-bottom: 1px solid #DCDCDC;
}
.elgg-table-alt td:first-child {
	width: 200px;
}
.elgg-table-alt tr:hover {
	background: #E4E4E4;
}

/* ***************************************
	Owner Block
*************************************** */
.elgg-owner-block {
	margin-bottom: 20px;
}

/* ***************************************
	Messages
*************************************** */
.elgg-message {
	color: #FFF;
	display: block;
	padding: 10px 20px;
	cursor: pointer;
	opacity: 0.9;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
	border-radius: 3px;
}
.elgg-state-success {
	background-color: #090;
}
.elgg-state-error {
	background-color: #F00;
}
.elgg-state-notice {
	background-color: #5097CF;
}
.elgg-box-error {
	margin-top: 10px;
	padding: 20px;
	color: #B94A48;
	background-color: #F8E8E8;
	border: 1px solid #E5B7B5;
	border-radius: 5px;
}
.elgg-box {
	margin: 10px 0;
	padding: 20px;
	border-radius: 5px;
	box-sizing: border-box;
}
.elgg-box.elgg-state-error {
	color: #B94A48;
	background-color: #F8E8E8;
	border: 1px solid #E5B7B5;
}
.elgg-box.elgg-state-notice {
	color: #3B8BC9;
	background-color: #E7F1F9;
	border: 1px solid #B1D1E9;
}
.elgg-box.elgg-state-success {
	color: #397F2E;
	background-color: #EAF8E8;
	border: 1px solid #AADEA2;
}
.elgg-box.elgg-state-warning {
	color: #6B420F;
	background-color: #FCF8E4;
	border: 1px solid #EDDC7D;
}

/* ***************************************
	River
*************************************** */
.elgg-river-layout .elgg-list-river {
	border-top: 1px solid #DCDCDC;
}
.elgg-list-river > li {
	border-bottom: 1px solid #DCDCDC;
}
.elgg-river-item .elgg-pict {
	margin-right: 20px;
}
.elgg-river-timestamp {
	color: #666;
	font-size: 85%;
	font-style: italic;
	line-height: 1.2em;
}

.elgg-river-attachments,
.elgg-river-message,
.elgg-river-content {
	border-left: 1px solid #DCDCDC;
	margin: 8px 0 5px 0;
	padding-left: 8px;
}
.elgg-river-attachments .elgg-avatar,
.elgg-river-attachments .elgg-icon {
	float: left;
}
.elgg-river-attachments .elgg-icon-arrow-right {
	margin: 3px 8px 0;
}
.elgg-river-layout .elgg-input-dropdown {
	float: right;
	margin: 10px 0;
}

.elgg-river-comments {
	position: relative;
	margin: 20px 0 0 0;
	border-top: 1px solid #DCDCDC;
}
.elgg-river-comments > li {
    border-color: #DCDCDC;
    border-style: solid;
    border-width: 0 1px 1px 1px;
	padding: 4px 10px;
}
.elgg-river-comments li .elgg-output {
	padding-right: 5px;
}
.elgg-river-comments .elgg-media {
	padding: 0;
}
.elgg-river-more {
    border-color: #DCDCDC;
    border-style: solid;
    border-width: 0 1px 1px 1px;	
	padding: 5px 10px;
	font-size: 85%;
}

.elgg-river-item form {
    border-color: #DCDCDC;
    border-style: solid;
    border-width: 0 1px 1px 1px;
	padding: 6px;
	height: auto;
}
.elgg-river-item input[type=text] {
	width: 78%;
}
.elgg-river-item input[type=submit] {
	margin: 0 0 0 10px;
}

/* **************************************
	Comments (from elgg_view_comments)
************************************** */
.elgg-comments {
	margin-top: 25px;
}
.elgg-comments .elgg-list {
	position: relative;
    border-top: 1px solid #DCDCDC;
}
.elgg-comments .elgg-list > li {
    border-color: #DCDCDC;
    border-style: solid;
    border-width: 0 1px 1px 1px;
	padding: 4px 10px;
}
.elgg-comments > form {
	margin-top: 15px;
}

/* Comment highlighting that automatically fades away */
.elgg-comments .elgg-state-highlight {
	-webkit-animation: comment-highlight 5s; /* Chrome, Safari, Opera */
	animation: comment-highlight 5s;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes comment-highlight {
	from {background: #dff2ff;}
	to {background: white;}
}
/* Standard syntax */
@keyframes comment-highlight {
	from {background: #dff2ff;}
	to {background: white;}
}

/* **************************************
	Comments triangle
************************************** */
.elgg-comments .elgg-list:after,
.elgg-comments .elgg-list:before,
.elgg-river-comments:after,
.elgg-river-comments:before {
	bottom: 100%;
	left: 30px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.elgg-comments .elgg-list:after,
.elgg-river-comments:after {
	border-color: rgba(238, 238, 238, 0);
	border-bottom-color: #FFF;
	border-width: 8px;
	margin-left: -8px;
}
.elgg-comments .elgg-list:before,
.elgg-river-comments:before {
	border-color: rgba(220, 220, 220, 0);
	border-bottom-color: #DCDCDC;
	border-width: 9px;
	margin-left: -9px;
}

/* ***************************************
	Image-related
*************************************** */
.elgg-photo {
	border: 1px solid #DCDCDC;
	padding: 3px;
	background-color: #FFF;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
	max-width: 100%;
	height: auto;
}

/* ***************************************
	Tags
*************************************** */
.elgg-tags {
	font-size: 85%;
}
.elgg-tags > li {
	float:left;
	margin-right: 5px;
}
.elgg-tags li.elgg-tag:after {
	content: ",";
}
.elgg-tags li.elgg-tag:last-child:after {
	content: "";
}
/* <style> /**/

/* ***************************************
	PAGE LAYOUT
*************************************** */
/***** DEFAULT LAYOUT ******/

body {
      background-image : url(https://masphere.infodroits.org/cache/1617879465/default/jade_theme/jade/Texture_fond_1.png);
 }

.elgg-page-default {
	min-width: 800px;
        margin-top: 45px;
}
.elgg-page-default .elgg-page-header > .elgg-inner {
	max-width: 1366px;
	margin: 0 auto;
	min-height: 65px;
}
.elgg-page-default .elgg-page-navbar > .elgg-inner {
	max-width: 1366px;
	margin: 0 auto;
	height: auto;
}
.elgg-page-default .elgg-page-body > .elgg-inner {
	max-width: 1366px;
	margin: 0 auto;
	
}
.elgg-page-default .elgg-page-footer > .elgg-inner {
	max-width: 1366px;
	margin: 0 auto;
	padding: 5px 0;
	border-top: 1px solid #DEDEDE;
}

#elgg-widget-col-2 > .elgg-module-widget > .elgg-head {
	background-color: #82BB26;
	padding: 10px 0;
	height: auto;
	overflow: hidden;
	box-shadow: inset 0 0 1px #FFFFFF;
}
#elgg-widget-col-3 > .elgg-module-widget > .elgg-head {
	background-color: #A0176C;
	padding: 10px 0;
	height: auto;
	overflow: hidden;
	box-shadow: inset 0 0 1px #FFFFFF;
}

/***** TOPBAR ******/
.elgg-page-topbar {
/*	background: #424242;
	border-top: 1px solid #424242;
	border-bottom: 1px solid #000000;
	padding: 0 20px;
	position: relative;
	height: 32px;
	z-index: 9000;*/
        
        height: 40px;
        background-color: #FFFFFF;
        padding-top: 3px;
        color: #494B52;
        font-size: 1em;
        box-shadow: 2px 2px 4px #888;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
}

.elgg-page-topbar > .elgg-inner { 
    max-width : 1366px;
    margin : auto;
    padding-top: 3px;/*ajustement sur la hauteur 40px */
}    

/***** PAGE MESSAGES ******/
.elgg-system-messages {
	position: fixed;
	top: 32px;
	right: 20px;
	max-width: 500px;
	z-index: 2000;
}
.elgg-system-messages li {
	margin-top: 10px;
}
.elgg-system-messages li p {
	margin: 0;
}

/***** PAGE HEADER ******/
.elgg-page-header {
	padding: 5px 20px 10px;
	position: relative;
	background: #60B8F7;
        
        height: 86px;
        background-color: rgba(255,255,255,0.3);
        background-image: url(https://masphere.infodroits.org/cache/1617879465/default/jade_theme/jade/logo_infodroits.png);
        background-repeat: no-repeat;
        background-position: center;
}
.elgg-page-header > .elgg-inner {
	position: relative;
}

.elgg-page-header > .elgg-inner > h1{
	display: none;
}

/***** PAGE NAVBAR ******/
.elgg-page-navbar {
	padding: 0 20px;
	position: relative;
	background: #4787B8;
}
.elgg-page-navbar > .elgg-inner {
	position: relative;
}

/***** PAGE BODY LAYOUT ******/
.elgg-page-body {
	padding: 10px 20px;
	background-color:#E1E1E1;
}

.elgg-layout {
	min-height: 360px;
}
.elgg-layout-widgets > .elgg-widgets {
	float: right;
}
.elgg-sidebar {
	position: relative;
	padding: 32px 0px 20px 30px;
	float: right;
	width: 21.212121%;
	margin: 0;
	border-left: 1px solid #EBEBEB;
	background-color:#019AA6;
	color:white;
	box-shadow: 4px 4px 15px #888;
}
.elgg-sidebar >  ul > li > a, .elgg-sidebar >.elgg-module li a{
	color:white
	}
.elgg-sidebar h3 a	{
	color:white
	}
	.elgg-sidebar a	{
	color: #E7FBDE
	}
	
.group-tools-status-open{
	color:#CFCA01}
	
.elgg-sidebar-alt {
	position: relative;
	padding: 32px 30px 20px 0;
	float: left;
	width: 16.161616%;
	margin: 0 30px 0 0;
	border-right: 1px solid #EBEBEB;
}
.elgg-main {
	position: relative;
	min-height: 360px;
	padding: 12px 0 10px 0;
}


.elgg-main > .elgg-head {
	padding-bottom: 5px;
	border-bottom: 1px solid #EBEBEB;
	margin-bottom: 10px;
}
.elgg-layout-one-sidebar .elgg-main {
	float: left;
	padding:5px;
	width: 72%;
	box-shadow: 4px 4px 15px #888;
}
.elgg-layout-two-sidebar .elgg-main {
	float: left;
	width: 50.101010%;
}

/***** PAGE FOOTER ******/
.elgg-page-footer {
	color: #999;
	padding: 0 10px;
	position: relative;
}

.elgg-page-footer a:hover {
	color: #666;
}
/* <style> /**/

/* ***************************************
	MISC
*************************************** */
#login-dropdown {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;
}
#login-dropdown a {
	padding: 14px 18px;
}

/* ***************************************
	AVATAR UPLOADING & CROPPING
*************************************** */

#current-user-avatar {
	border-right: 1px solid #EBEBEB;
}
#avatar-croppingtool {
	border-top: 1px solid #DCDCDC;
}
#user-avatar-cropper {
	float: left;
}
#user-avatar-preview {
	float: left;
	position: relative;
	overflow: hidden;
	width: 100px;
	height: 100px;
}

/* ***************************************
	FRIENDS COLLECTIONS
*************************************** */

#friends_collections_accordian li {
	color: #666;
}
#friends_collections_accordian li h2 {
	border-radius: 3px;
	background: none repeat scroll 0 0 #F0F0F0;
	color: #444;
	cursor: pointer;
	font-size: 1.2em;
	margin: 10px 0;
	padding: 10px;
}
#friends_collections_accordian li h2:hover {
	background-color: #E5E5E5;
}
#friends_collections_accordian .friends_collections_controls {
	float: right;
	font-size: 70%;
}
#friends_collections_accordian .friends-picker-main-wrapper {
	background: none repeat scroll 0 0 #FFF;
	display: none;
	padding: 0;
}
/* ***************************************
	FIXED POSITION AJAX INDICATOR
*************************************** */

.elgg-spinner {
    /* general spinner styles */
    background: #fff;
    padding: 10px;
    border: 1px solid #CCC;
    border-top: 0;
    border-radius: 0 0 15px 15px;
    /* negative half the width for proper centering */
    margin-left: -25.5px;

    position: fixed;
    top: 0;
    z-index: 10000;

    /* transitioned values */
    left: -10000px;
    opacity: 0;

    /* fade out over 300ms, then jump offscreen */
    -webkit-transition: opacity 300ms ease-in-out, left 0s linear 300ms;
    transition: opacity 300ms ease-in-out, left 0s linear 300ms;
}

.elgg-spinner-active .elgg-spinner {
    left: 50%;
    opacity: 1;

    /* set values immediately */
    -webkit-transition: opacity 0s, left 0s;
    transition: opacity 0s, left 0s;
}
/**
 * Hack that reduces size inconsistencies within Font awesome icons
 */

.fa-mobile-phone:before,
.fa-mobile:before,
.fa-remove:before,
.fa-close:before,
.fa-times:before,
.fa-caret-down:before,
.fa-caret-down:before {
	font-size: larger !important;
}/* <style> /**/

.clearfloat { 
	clear: both;
}

.hidden,
.elgg-page .hidden,
.elgg-menu > li.hidden {
	display: none;
}

.centered {
	margin: 0 auto;
}

.center,
.elgg-justify-center {
	text-align: center;
}

.elgg-justify-right {
	text-align: right;
}

.elgg-justify-left {
	text-align: left;
}

.float {
	float: left;
}

.float-alt {
	float: right;
}

.link {
	cursor: pointer;
}

.elgg-discover .elgg-discoverable {
	display: none;
}

.elgg-discover:hover .elgg-discoverable {
	display: block;
}

.elgg-transition:hover,
.elgg-transition:focus,
:focus > .elgg-transition {
	opacity: .7;
}

/* ***************************************
	BORDERS AND SEPARATORS
*************************************** */
.elgg-border-plain {
	border: 1px solid #eeeeee;
}
.elgg-border-transition {
	border: 1px solid #eeeeee;
}
.elgg-divide-top {
	border-top: 1px solid #CCCCCC;
}
.elgg-divide-bottom {
	border-bottom: 1px solid #CCCCCC;
}
.elgg-divide-left {
	border-left: 1px solid #CCCCCC;
}
.elgg-divide-right {
	border-right: 1px solid #CCCCCC;
}

/* ***************************************
	Spacing (from OOCSS)
*************************************** */
/* Padding */
.pan{padding:0}
.prn, .phn{padding-right:0}
.pln, .phn{padding-left:0}
.ptn, .pvn{padding-top:0}
.pbn, .pvn{padding-bottom:0}

.pas{padding:5px}
.prs, .phs{padding-right:5px}
.pls, .phs{padding-left:5px}
.pts, .pvs{padding-top:5px}
.pbs, .pvs{padding-bottom:5px}

.pam{padding:10px}
.prm, .phm{padding-right:10px}
.plm, .phm{padding-left:10px}
.ptm, .pvm{padding-top:10px}
.pbm, .pvm{padding-bottom:10px}

.pal{padding:20px}
.prl, .phl{padding-right:20px}
.pll, .phl{padding-left:20px}
.ptl, .pvl{padding-top:20px}
.pbl, .pvl{padding-bottom:20px}

/* Margin */
.man{margin:0}
.mrn, .mhn{margin-right:0}
.mln, .mhn{margin-left:0}
.mtn, .mvn{margin-top:0}
.mbn, .mvn{margin-bottom:0}

.mas{margin:5px}
.mrs, .mhs{margin-right:5px}
.mls, .mhs{margin-left:5px}
.mts, .mvs{margin-top:5px}
.mbs, .mvs{margin-bottom:5px}

.mam{margin:10px}
.mrm, .mhm{margin-right:10px}
.mlm, .mhm{margin-left:10px}
.mtm, .mvm{margin-top:10px}
.mbm, .mvm{margin-bottom:10px}

.mal{margin:20px}
.mrl, .mhl{margin-right:20px}
.mll, .mhl{margin-left:20px}
.mtl, .mvl{margin-top:20px}
.mbl, .mvl{margin-bottom:20px}/* <style> /**/
/* ***************************************
	Profile
*************************************** */
.profile {
	float: left;
	margin-bottom: 15px;
}
.profile .elgg-inner {
	border: 1px solid #DCDCDC;
	border-radius: 3px;
}
#profile-details {
	padding: 15px;
}

/*** ownerblock ***/
#profile-owner-block {
	width: 200px;
	float: left;
	border-right: 1px solid #DCDCDC;
	padding: 15px;
}
#profile-owner-block .large {
	margin-bottom: 10px;
}
#profile-owner-block a.elgg-button-action {
	margin-bottom: 4px;
	display: table;
}
.profile-admin-menu {
	display: none;
}
.profile-admin-menu-wrapper a {
	display: block;
	margin: 3px 0 5px 0;
	padding: 2px 4px 2px 16px;
}
.profile-admin-menu-wrapper:before {
	content: "\00BB";
	float: left;
	padding-top: 1px;
}
.profile-admin-menu-wrapper li a {
	color: #FF0000;
	margin-bottom: 0;
}
.profile-admin-menu-wrapper a:hover {
	color: #000;
}
/*** profile details ***/
#profile-details .wire-status {
	margin-top: 10px;
}
#profile-details .odd {
	border-bottom: 1px solid #DCDCDC;
	margin: 0;
	padding: 5px 0;
}
#profile-details .even {
	border-bottom: 1px solid #DCDCDC;
	margin: 0;
	padding: 5px 0;
}
.profile-aboutme-title {
	margin: 0;
	padding: 5px 4px 2px 0;
}
.profile-aboutme-contents {
	padding: 0;
}
.profile-banned-user {
	margin: 10px 0;
	padding: 20px;
	color: #B94A48;
	background-color: #F8E8E8;
	border: 1px solid #E5B7B5;
	border-radius: 5px;
}
.profile-banned-user h4 {
	color: #B94A48;
}/*<style>*/
/*** Elgg Developer Tools ***/
#developers-iframe {
	width: 100%;
	height: 600px;
	border: none;
}
#developer-settings-form label {
	margin-right: 5px;
}
.developers-log {
	background-color: #EBF5FF;
	border: 1px solid #999;
	color: #666;
	padding: 20px;
}
.developers-gear {
	position: fixed;
	z-index: 1000;
	bottom: 0;
	right: 0;
	cursor: pointer;
	padding: 5px 8px;
}
.developers-gear-popup {
	text-align: right;
}
.developers-gear-popup > section {
	display: inline-block;
	width: 16em;
	padding: 0 20px 20px 0;
	text-align: left;
	vertical-align: top;
}
.developers-gear-popup > section.developers-form {
	width: 20em;
}
.developers-gear-popup h2 {
	margin-bottom: 10px;
}
.developers-gear-popup .elgg-child-menu {
	margin-left: 20px;
	margin-bottom: 10px;
}
.developers-gear-popup .elgg-menu-parent,
.developers-gear-popup .elgg-menu-parent:hover {
	color: #000;
	text-decoration: none;
	cursor: default;
}
.developers-gear-popup .elgg-text-help {
	display: none;
}
.developers-gear-popup label {
	font-weight: inherit;
	font-size: inherit;
}
.developers-gear-popup fieldset > div {
	margin-bottom: 10px;
}
.developers-gear-popup #developer-settings-form  label .elgg-icon-info,
.developers-gear-popup #developer-settings-form  label .elgg-text-help {
	margin-left: 10px;
	vertical-align: text-top;
	cursor: pointer;
}
.developers-gear-popup #developer-settings-form .elgg-foot {
	margin-top: 15px;
	margin-bottom: 0;
}.elgg-icon-bookmark {
	background: transparent url(https://masphere.infodroits.org/cache/1617879465/default/bookmarks/bookmark.gif);
}/* CKEditor */

.cke {
	clear: right;
}

.cke_bottom .cke_wordcount {
	float: left;
}

.cke_bottom .cke_path {
	float: right;
}

#dashboard-info {
	border: 2px solid #dedede;
	margin-bottom: 15px;
}
.embed-wrapper {
	width: 730px;
	min-height: 400px;
}
.embed-wrapper h2 {
	color: #333333;
	margin-bottom: 10px;
}
.embed-wrapper .elgg-item {
	cursor: pointer;
}

/* ***************************************
	EMBED TABBED PAGE NAVIGATION
*************************************** */
.embed-wrapper .elgg-tabs a:hover {
	color: #666;
}

.embed-wrapper p {
	color: #333;
}
.embed-item {
	padding-left: 5px;
	padding-right: 5px;
}
.embed-item:hover {
	background-color: #eee;
}
.file-photo {
	text-align: center;
	margin: 15px 0;
}
.file-gallery-item {
	text-align: center;
	width: 165px;
}
.groups-profile > .elgg-image {
	margin-right: 20px;
}
.groups-stats {
	padding:5px;
	/*margin-top: 10px;*/
	background-color:#E9E9E9;
}
.groups-stats p {
	margin-bottom: 2px;
}
.groups-profile-fields div:first-child {
	padding-top: 0;
}

.groups-profile-fields .odd,
.groups-profile-fields .even {
	border-bottom: 1px solid #DCDCDC;
	padding: 5px 0;
	margin-bottom: 0;
}

.groups-profile-fields .elgg-output {
	margin: 0;
}

#groups-tools > li {
	width: 48%;
	min-height: 200px;
	margin-bottom: 40px;
}

#groups-tools > li:nth-child(odd) {
	margin-right: 4%;
}

.groups-widget-viewall {
	float: right;
	font-size: 85%;
}

.groups-latest-reply {
	float: right;
}

.elgg-menu-groups-my-status li a {
	color: #444;
	display: block;
	margin: 3px 0 5px 0;
	padding: 2px 4px 2px 0;
}
.elgg-menu-groups-my-status li a:hover {
	color: #999;
}
.elgg-menu-groups-my-status li.elgg-state-selected > a {
	color: #999;
}

/* ***************************************
	Likes
*************************************** */
.elgg-likes-popup {
	width: 345px;
}

.elgg-menu .elgg-menu-item-likes-count {
	margin-left: 3px;
}

.messageboard-input {
	height: 100px;
}

.messages-container {
	min-height: 200px;
}
.message.unread a {
	color: #D40005;
}
.messages-buttonbank {
	text-align: right;
}
.messages-buttonbank input {
	margin-left: 10px;
}

/*** message metadata ***/
.messages-owner {
	float: left;
	width: 20%;
	margin-right: 2%;
}
.messages-subject {
	float: left;
	width: 55%;
	margin-right: 2%;
}
.messages-timestamp {
	float: left;
	width: 14%;
	margin-right: 2%;
}
.messages-delete {
	float: left;
	width: 5%;
}
/*** topbar icon ***/
.messages-new {
	color: #FFF;
	background-color: #FF0000;
	border-radius: 10px;
	box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.50);
	position: absolute;
	text-align: center;
	line-height: 14px;
	top: 4px;
	left: 26px;
	min-width: 16px;
	height: 16px;
	font-size: 10px;
	font-weight: bold;
}

#notificationstable td.namefield {
	width:250px;
	text-align: left;
	vertical-align: middle;
}
#notificationstable td.namefield p {
	margin:0;
	vertical-align: middle;
	line-height: 1.1em;
	padding:5px 0 5px 0;
}
#notificationstable td.namefield p.namefieldlink {
	margin:5px 0 0 0;
}
#notificationstable td.namefield a img {
	float:left;
	width:25px;
	height:25px;
	margin:5px 10px 5px 5px;
}
#notificationstable td.emailtogglefield,
#notificationstable td.smstogglefield {
	width:50px;
	text-align: center;
	vertical-align: middle;
}
#notificationstable td.spacercolumn {
	width:30px;
}
#notificationstable td {
	border-bottom: 1px solid #DCDCDC;
	padding: 6px 0;
}
#notificationstable td.emailtogglefield input {
	margin-right:36px;
	margin-top:5px;
}
#notificationstable td.emailtogglefield a {
	width:46px;
	height:24px;
	cursor: pointer;
	display: block;
}
#notificationstable td.sitetogglefield {
	width:50px;
	text-align: center;
	vertical-align: middle;
}
#notificationstable td.sitetogglefield input {
	margin-right:36px;
	margin-top:5px;
}
#notificationstable td.sitetogglefield a {
	width:46px;
	height:24px;
	cursor: pointer;
	display: block;
}
#notificationstable td.emailtogglefield a.emailtoggleOff {
	background: url(https://masphere.infodroits.org/mod/notifications/graphics/icon_notifications_email.gif) no-repeat right 2px;
}
#notificationstable td.emailtogglefield a.emailtoggleOn {
	background: url(https://masphere.infodroits.org/mod/notifications/graphics/icon_notifications_email.gif) no-repeat right -36px;
}
#notificationstable td.sitetogglefield a.sitetoggleOff {
	background: url(https://masphere.infodroits.org/mod/notifications/graphics/icon_notifications_site.gif) no-repeat right 2px;
}
#notificationstable td.sitetogglefield a.sitetoggleOn {
	background: url(https://masphere.infodroits.org/mod/notifications/graphics/icon_notifications_site.gif) no-repeat right -37px;
}
.notification_friends,
.notification_personal,
.notifications_per_user {
	margin-bottom: 25px;
}




.pages-nav a {
	color: #444;
}
.pages-nav.treeview ul {
	background-color: transparent;
}
.pages-nav.treeview a.selected {
	color: #999;
	background: none;
}
.pages-nav.treeview .hover {
	color: #999;
}
/* <style> */
/* REPORTED CONTENT */

.elgg-icon-report-this:before {
	content: "\f071";
}

/**********************************
Search plugin
***********************************/
.elgg-search {
        display: none; 
}
.elgg-search-header {
	display: block;
	position: relative;
	margin-bottom: 15px;
}
.elgg-search input[type=text] {
	width: 100%;
}
.elgg-search input[type=submit] {
	display: none;
}
.search-list li {
	padding: 5px 0 0;
}
.search-heading-category {
	margin-top: 20px;
	color: #666;
}

.search-highlight {
	background-color: #BBDAF7;
}
.search-highlight-color1 {
	background-color: #BBDAF7;
}
.search-highlight-color2 {
	background-color: #A0FFFF;
}
.search-highlight-color3 {
	background-color: #FDFFC3;
}
.search-highlight-color4 {
	background-color: #CCC;
}
.search-highlight-color5 {
	background-color: #08A7E7;
}
/********************************
The Wire
*********************************/
#thewire-textarea {
	padding: 6px;
}
#thewire-characters-remaining {
	text-align: right;
	float: right;
	font-weight: bold;
	color: #333333;
}
.thewire-characters-remaining {
	color:#333333;
	border:none;
	font-size: 100%;
	font-weight: bold;
	padding:0 2px 0 0;
	margin:0;
	text-align: right;
	background: white;
}
.thewire-characters-remaining-warning {
	color: #D40D12 !important;
}
.thewire-parent {
	margin-left: 40px;
}
.thewire-post .elgg-content {
	margin: 10px 5px;
}

.login-as-arrow {
	vertical-align: top;
	color: white;
	font-weight: bold;
}

.login-as-arrow:hover {
	color: white;
}
.file-tools-icon-tiny {
	max-width: 25px;
	max-height: 25px;
}

.elgg-menu-file-tools-folder-breadcrumb > li:after {
	padding: 0 4px;
	content: ">";
}

#file_tools_list_files_container {
	position: relative;
	min-height: 50px;
}

#file_tools_list_files_container .elgg-ajax-loader {
	background-color: white;
	opacity: 0.85;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
}

#file_tools_list_files .ui-draggable,
.file-tools-file.ui-draggable {
	cursor: move;
	background: white;
}

#file-tools-folder-tree .file-tools-tree-droppable-hover {
	border: 1px solid red;
}

.elgg-widget-instance-file_tree .elgg-widget-content .elgg-list .elgg-list li:last-child {
	border-bottom: none;
}
/** Group tools CSS */
#invite_to_group .ui-helper-hidden-accessible {
	display: none;
}

#group_tools_group_invite_autocomplete_autocomplete_results .group_tools_group_invite_autocomplete_autocomplete_result {
	border: 1px solid transparent;
	border-radius: 5px;
}

#group_tools_group_invite_autocomplete_autocomplete_results .group_tools_group_invite_autocomplete_autocomplete_result:hover {
	border: 1px solid #CCCCCC;
}

#group_tools_group_invite_autocomplete_autocomplete_results .elgg-avatar {
	position: static;
}

.ui-autocomplete .group_tools_group_invite_autocomplete_autocomplete_result .elgg-icon-delete-alt.elgg-discoverable {
	display: none;
}

.group_tools_group_invite_autocomplete_autocomplete_result .elgg-icon-delete-alt {
	cursor: pointer;
}

.group-tools-status-open {
	color: green;
}

.group-tools-status-closed {
	color: orange;
}

.group-tools-suggested-groups .elgg-item {
	width: 33%;
	text-align: center;
}

.group-tools-suggested-groups .elgg-item:hover {
	background: #EFEFEF;
}

.group-tools-suggested-groups .elgg-item h3 {
	padding-bottom: 5px;
}
.group-tools-suggested-groups .elgg-item > div {
	padding: 10px;
}

#group-tools-related-groups-form input.elgg-input-autocomplete {
	width: 80%;
}

#group-tools-group-edit-tabbed ~ div {
	display: none;
}

.group-tools-group-edit-section > div {
	margin-bottom: 15px;
}

/* groups simplified access */
.group-tools-simplified-access-container,
.group-tools-simplified-access-container > .elgg-col {
	display: flex;
}
	
.group-tools-simplified-access-button {
	background: #f0f0f0;
	border: 1px solid rgba(0, 0, 0, 0.2);
	color: #333;
	padding: 20px;
	margin: 20px;
	cursor: pointer;
	width: 100%;
	
	border-radius: 3px;
	box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.6);
}

.group-tools-simplified-access-button.elgg-state-active {
	color: #FFF;
	background: #4787b8;
}
.group-tools-simplified-access-button.elgg-state-active h3 {
	color: inherit;
}

/* sort menu options */
.group-tools-group-sort-menu .elgg-menu-item-sorting {
	float: right;
	background: none;
	border-left: 1px solid transparent;
	border-top: 1px solid transparent;
	border-right: 1px solid transparent;
}
.group-tools-group-sort-menu .elgg-menu-item-sorting > a {
	top: 0;
}
.group-tools-group-sort-menu .elgg-menu-item-sorting > a:hover {
	background: none;
}
.group-tools-group-sort-menu .elgg-menu-item-sorting > .elgg-child-menu {
	background: white;
    display: none;
    position: absolute;
    right: 0;
    white-space: nowrap;
    z-index: 1;
	border: 1px solid #ccc;
	border-radius: 0 0 3px 3px;
	box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.25);
}

.group-tools-group-sort-menu .elgg-menu-item-sorting:hover > .elgg-child-menu {
	display: block;
}
.group-tools-group-sort-menu .elgg-menu-item-sorting > .elgg-child-menu a {
	color: #444;
	padding: 5px 10px;
	text-decoration: none;
	white-space: nowrap;
}
.group-tools-group-sort-menu .elgg-menu-item-sorting > .elgg-child-menu a:hover {
	color: #444;
	background: #f0f0f0;
}
.group-tools-group-sort-menu .elgg-menu-item-sorting > .elgg-child-menu li.elgg-state-selected a {
    font-weight: bold;
}

#group-tools-stale-message.elgg-message {
	cursor: default;
}
.widget_group_news_navigator {
	border-top: 1px dotted #CCCCCC;
	padding-top: 5px;
	text-align: center;
}

.widget_group_news_navigator > span {
	border: 1px solid #CCCCCC;
	cursor: pointer;
	padding: 2px 4px;
	margin: 0 2px;
}

.widget_group_news_navigator > span.active,
.widget_group_news_navigator > span:hover {
	background: #CCCCCC;
}

.widget_group_news_navigator > span.active {
	cursor: auto;
}
.widget_manager_hide_header > .elgg-head,
.widget_manager_hide_header_admin > .elgg-head {
	display: none;
}

.widget_manager_hide_header_admin:hover > .elgg-head {
	display: block;
}

.widget_manager_hide_header_admin:hover > .elgg-body {
	border-top-width: 2px;
}

.elgg-module-widget.widget_manager_disable_widget_content_style > .elgg-body,
.widget_manager_hide_header_admin > .elgg-body,
.widget_manager_hide_header > .elgg-body {
	border-top-width: 0px;
}

.elgg-module-widget.widget_manager_disable_widget_content_style {
	background: none;
	padding: 0px;
}

.elgg-module-widget.widget_manager_disable_widget_content_style .elgg-widget-content {
	padding: 0px;
}

.elgg-module-widget.widget_manager_disable_widget_content_style > .elgg-head {
	border: 2px solid #DEDEDE;
}

.widget-manager-groups-widgets-top-row {
	width: 100%;
	min-height: 0px !important;
}

.widget-manager-groups-widgets-top-row-highlight {
	min-height: 50px !important;
}

.widget-manager-widget-access .elgg-text-help {
	display: none;
}/* lightbox */
#widget_manager_widgets_select {
	margin: 0;
}

#widget_manager_widgets_select .widget_manager_widgets_lightbox_wrapper {
	margin-bottom: 5px;
	border: 1px solid transparent;
}

#widget_manager_widgets_select .widget_manager_widgets_lightbox_wrapper:hover {
	border: 1px solid #CCCCCC;
}

#widget_manager_widgets_select .widget_manager_widgets_lightbox_actions {
	float: right;
	padding: 6px;
}

#widget_manager_widgets_select .widget_manager_widgets_lightbox_actions li.elgg-state-available span,
#widget_manager_widgets_select .widget_manager_widgets_lightbox_actions li.elgg-state-unavailable input {
	display: none;
}

#widget_manager_widgets_select .widget_manager_widgets_lightbox_actions .submit_button {
	margin: 5px 0;
}

#widget_manager_widgets_search {
	float: right;
    margin-top: -2px;
}

#widget_manager_widgets_search input {
	padding: 0;
	margin: 0;
	font-size: 100%;
	height: 100%;
}

.elgg-module-widget .elgg-menu-widget .elgg-menu-item-settings,
.elgg-module-widget .elgg-menu-widget .elgg-menu-item-delete {
	display: none;
}
.elgg-module-widget:hover .elgg-menu-widget .elgg-menu-item-settings,
.elgg-module-widget:hover .elgg-menu-widget .elgg-menu-item-delete {
	display: inline-block;
}#custom_fields_more_info_tooltip {
	position: absolute;
	border: 1px solid #333333;
	background: #e4ecf5;
	color: #333333;
	padding: 5px;
	display: none;
	width: 250px;
	line-height: 1.2em;
	font-size: 90%;
	z-index: 20000;
}

.ui-multiselect-menu {
	z-index:10000;
	background: white;
	border: 1px solid #CCCCCC;
}

.ui-multiselect-checkboxes .ui-state-hover {
	background: #CCCCCC;
}

.profile-manager-multiselect {
	visibility: hidden;
	display: inline-block !important;
	width: 0;
	height: 0;
	padding: 0;
	margin: 0 -2px 0 0;
}
/* widgets */
#widget_profile_completeness_container {
	border: 1px solid #AAAAAA;
	position: relative;
}

#widget_profile_completeness_progress {
	position: absolute;
	line-height: 20px;
	font-weight: bold;
	width: 100%;
	text-align: center;
}

#widget_profile_completeness_progress_bar {
	background: #00FF00;
	height: 20px;
}

#custom_fields_userdetails.ui-accordion {
	margin-bottom: 10px;
}

#custom_fields_userdetails .ui-accordion-header {
	color: #666666;
	background: #EEEEEE;
	border: 2px solid #DEDEDE;
	cursor: pointer;
	margin-top: 5px;
	margin-bottom: 0px;
	padding: 5px;
}

#custom_fields_userdetails .ui-accordion-content {
	border-style: solid;
	border-color: #DEDEDE;
	border-width: 0 2px 2px 2px;
	padding: 5px;
}

#custom_fields_userdetails .ui-accordion-header:hover {
	border-color: #CCCCCC;
}

/* fix for max-height multi-select drop down*/
.ui-dropdownchecklist-dropcontainer {
	max-height: 150px;
}
/* end fix */

.profile_manager_profile_edit_tab_content,
li.custom_fields_edit_profile_category {
	display: none;
}

/* registration form */
.elgg-form-register {
	max-width: 100%;
}

.profile_manager_register_input_container {
	white-space:nowrap; /* required for outlining in IE7 */
}

.profile_manager_register_input_container > input {
	padding-right: 25px;
}

.elgg-icon.profile_manager_validate_icon {
	margin-left: -22px;
    margin-top: 8px;
    position: absolute;
}

/* register form */
.elgg-form-register .mandatory > label:after {
	content: "*";
}

/* registration field */
#profile_manager_register_left {
	float: left;
	width: 450px;
}

#profile_manager_register_right {
	float: right;
	width: 450px;
}

#profile_manager_register_right > fieldset {
	margin-top: 10px;
}

/* registration form mandatory fields */

.profile_manager_register_missing {
	border: 1px solid red !important;
}

/* Account Username Change */
.profile-manager-account-change-username.elgg-state-active {
	display: none;
}

#profile_manager_username {
	position: relative;
}

/* End Account Username Change */
/* ***************************************
	SIMPLEPIE
*************************************** */
.simplepie-heading {
	text-align: center;
	margin-bottom: 8px;
}

.simplepie-list img {
	max-width: 100%;
}

#notificationstable td.notifiertogglefield {
	width: 50px;
	text-align: center;
	vertical-align: middle;
}

#notificationstable td.notifiertogglefield input {
	margin-right: 10px;
}

#notificationstable td.notifiertogglefield a {
	font-family: 'FontAwesome';
	font-size: 20px;
}

#notificationstable td.notifiertogglefield a:hover {
	text-decoration: none;
}

#notificationstable td.notifiertogglefield a:after {
	content: "\f0ac";
}

#notificationstable td.notifiertogglefield a.notifiertoggleOff {
	color: #cccccc;
}

#notificationstable td.notifiertogglefield a.notifiertoggleOn {
	color: #4690D6;
}

/* Style the popup module */
#notifier-popup {
	width: 345px;
	position: absolute;
}

.elgg-notifier-unread {
	background: #EDF5FF;
}

/* Count of unread notifications in topbar icon */
#notifier-new {
	color: white;
	background-color: red;

	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;

	-webkit-box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.50);
	-moz-box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.50);
	box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.50);

	position: absolute;
	text-align: center;
	top: 0px;
	left: 26px;
	min-width: 16px;
	height: 16px;
	font-size: 10px;
	font-weight: bold;
}

/* Lightbox */
.notifier-lightbox-wrapper {
	width: 570px;
	min-height: 410px;
	margin: 20px 15px;
}
#elggchat_toolbar {
	position: fixed;
	bottom: 0px;
	left: 0px;
	min-height: 25px;
	background: #DEDEDE;
	z-index: 9999;
}

*html #elggchat_toolbar {
	position: fixed;
	bottom: 0px;
	left: 0px;
	min-height: 25px;
	background: #DEDEDE;
	z-index: 9999;
}

#elggchat_toolbar_right {
	float: right;
}

.session {
	float: right;
	background: #E4ECF5;
	padding: 3px 3px 0 3px;
	margin: 1px 3px 0px 3px;
	height: 23px;
	/* ie fix */
	max-width:200px;
	font-family: "Lucida Grande",Arial,Tahoma,Verdana,sans-serif;
	text-decoration: none;
	text-shadow: none;
	color: black;
	border: 1px solid #4690D6;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.session a {
	color: #4690D6;
}

.session a:hover {
	color: #4690D6;
	text-decoration: underline;
}

.elggchat_session_new_messages {
	background: #333333;
}

.elggchat_session_new_messages.elggchat_session_new_messages_blink {
	background: #E4ECF5;
}

.elgg-icon-elggchatdelete:before {
	font-size: large !important;
	cursor: pointer;
	content: "\f057";
}

.elgg-icon-elggchatsessiontoggle:before {
	cursor: pointer;
	content: "\f205";
}

#elggchat_extensions {
	float: left;
	height: 25px;
	padding: 0 3px 0 3px;
}

#elggchat_friends {
	position: relative;
	float: right;
	width: 120px;
	height: 23px;
	padding: 3px 3px 0 3px;
	margin: 1px 3px 0px 3px;
	background: white;
	border: 1px solid #CCCCCC;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

#elggchat_friends a {
	color: #4690D6;
	font-family: "Lucida Grande",Arial,Tahoma,Verdana,sans-serif;
	text-decoration: none;
	text-shadow: none;
}

#elggchat_friends a:hover {
	text-decoration: underline;
}

#elggchat_friends_picker {
	display: none;
	position: absolute;
	bottom: 25px;
	right: -1px;
	width: 120px;
	background: white;
	color: black;
	padding: 3px 3px 2px 3px;
	overflow-x: hidden;
	max-height: 300px;
	overflow-y: auto;
	white-space: nowrap;
	font-family: "Lucida Grande",Arial,Tahoma,Verdana,sans-serif;
	text-decoration: none;
	text-shadow: none;
	border: 1px solid #CCCCCC;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

#elggchat_friends_picker a {
	color: #4690D6;
	font-family: "Lucida Grande",Arial,Tahoma,Verdana,sans-serif;
	text-decoration: none;
	text-shadow: none;
}

#elggchat_friends_picker a:hover {
	text-decoration: underline;
}


#elggchat_friends_picker .settings {
	font-size: 90%;
	background-color: #DEDEDE;
	color: #0054A7;
	padding: 2px 2px 2px 2px;
	font-family: "Lucida Grande",Arial,Tahoma,Verdana,sans-serif;
	font-weight: bold;
	text-decoration: none;
	text-shadow: none;
	vertical-align: middle;
}

.toggle_elggchat_toolbar {
	color: #CCC;
}

.toggle_elggchat_toolbar:before {
	float:left;
	background: #FFF;
	cursor: pointer;
	content: "\f100";
	width: 16px;
	height: 23px;
	padding: 3px 3px 0px;
	margin: 1px 0px 0px;
	font-size: 21px;
	border-top: 1px solid #CCC;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
	border-top-right-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

:focus > .toggle_elggchat_toolbar,
.toggle_elggchat_toolbar:hover,
.toggle_elggchat_toolbar-hover {
	color: #4690D6;
}

.minimizedToolbar {
}

.minimizedToolbar:before {
	float:left;
	background: #FFF;
	cursor: pointer;
	content: "\f101";
	width: 16px;
	height: 23px;
	padding: 3px 3px 0px;
	margin: 1px 0px 0px;
	font-size: 21px;
	border-top: 1px solid #CCC;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
	border-top-right-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.messageWrapper {
	background: white;
	color: black;
	padding: 10px;
	margin: 0 5px 5px 5px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}

.messageWrapper table {
	background: white;
	height: 0px;
	font-size: 11px;
}

.systemMessageWrapper {
	padding: 3px;
	margin: 0 5px 5px 5px;
	color: red;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}

.messageIcon {
	margin-right: 7px;
}

.messageName {
	border-bottom: 1px solid #DDDDDD;
	width: 100%;
	font-weight: bold;
	color: #4690D6;
}

.chatsessiondatacontainer {
	position: relative;
	width: 200px;
	display: none;
}

.chatsessiondata {
	position: absolute;
	bottom: 19px;
	width: 206px;
	margin: 0 -4px;
	max-height: 600px;
	border: 1px solid #4690D6;
	border-bottom: 0px;
	background: #E4ECF5;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.chatmembers {
	border-bottom: 1px solid #DEDEDE;
	max-height: 154px;
	overflow-y: auto;
	padding-top: 2px;
	padding-left: 2px;
}

.chatmembers a {
	color: #0054A7;
	font-family: "Lucida Grande",Arial,Tahoma,Verdana,sans-serif;
	font-weight: bold;
	text-decoration: none;
	text-shadow: none;
}

.chatmembers a:hover {
	color: #0054A7;
	text-decoration: underline;
}

.chatmember td {
	vertical-align: middle;
}

.chatmembers .chatmemberinfo {
	width: 100%;
}

.chatmembersfunctions {
	text-align: right;
	padding-right: 2px;
	height: 20px;
	border-bottom: 1px solid #DEDEDE;
	font-size: 10px;
}

.chatmembersfunctions a {
	color: #0054A7;
}

.chatmembersfunctions a:hover {
	color: #0054A7;
	text-decoration: underline;
}

.chatmembersfunctions_invite {
	display: none;
	text-align: left;
	position: absolute;
	background: #333333;
	width: 100%;
	opacity: 0.8;
	filter: alpha(opacity=80);
	max-height: 250px;
	overflow-x: hidden;
	overflow-y: auto;
}

.chatmembersfunctions_invite a {
	color: #FFFFFF;
	padding: 3px;
}

.online_status_chat {
	width: 24px;
	height: 24px;
	background: transparent url(https://masphere.infodroits.org/cache/1617879465/default/elggchat/online_status.png) no-repeat 0 0;
}

.online_status_idle {
	background-position: 0 -24px;
}

.online_status_inactive {
	background-position: 0 -48px;
}

.chatmessages {
	min-height: 250px;
	max-height: 400px;
	overflow-y: auto;
}

.elggchatinput {
	height: 22px;
	background: #FFFFFF url(https://masphere.infodroits.org/cache/1617879465/default/elggchat/chatwindow/chat_input.png) no-repeat 1px 50%;
	color: black;
	padding: 2px 2px 2px 18px;
	border-top: 1px solid #DEDEDE;
	border-bottom: 1px solid #DEDEDE;
}

.elggchatinput input {
	border: none;
	color: black;
	font-size: 100%;
	padding: 2px;
}

.elggchatinput input:focus {
	border: none;
	background: none;
}

.last_annonce {
	margin: 0px;
}

.annonce_content {
	margin: 0;
	padding: 0px;
}

.annonce_content .usericon {
	margin: 0 5px 5px 0;
}

.annonce-post {
	background-color:white;
}

.annonce_extra .note_date {
    font-size: 85%;
    color: #939393;
    padding: 0;
}

.annonce_options {
    float: right;
}

.annonce_content .delete_note a {
    display: block;
    cursor: pointer;
    width: 14px;
    height: 14px;
    background: url("https://masphere.infodroits.org/_graphics/icon_customise_remove.png") no-repeat 0 0;
    text-indent: -9000px;
}

.annonce_icon {
	float: left;
}

.annonce_summary {
    margin-left: 10px;
    font-size: 12px;
}

.annonce_summary h3 a {
    /*color: #ef7c11;*/
}

.annonce_summary .note_date {
	color: #e1b700;
    font-size: 11px;
    font-style: italic;
    line-height: 1.2em;
	font-weight: normal;
}

.annonce_message {
    /*border-left: 1px solid white;*/
    font-size: 85%;
    line-height: 1.5em;
    margin: 8px 0px 5px 5px;
    padding: 0px 5px 0px 5px;
    font-size: 13px;
    font-weight: normal;
}

.annonce_content h3 {
    font-weight: bold;
    
    font-size: 12px;
    width: 240px;
}

.elgg-widget-instance-annonce_type1 .elgg-widget-content, .elgg-widget-instance-annonce_type2 .elgg-widget-content {
	padding: 0px;
}

.elgg-widget-instance-annonce_type1 .shares_widget_wrapper a, .elgg-widget-instance-annonce_type2 .shares_widget_wrapper a {
	margin: 6px;
	display: block;
}

.elgg-widget-instance-annonce_type1 .elgg-widget-more a, .elgg-widget-instance-annonce_type2 .elgg-widget-more a {
	margin-top: 0px;
}

.elgg-widget-instance-annonce_type1 .elgg-list > li, .elgg-widget-instance-annonce_type2 .elgg-list > li  {
    padding: 0px;
    margin-bottom: -1px;
    border: none;
}

.elgg-widget-instance-annonce_type1 .annonce-post {
    /*padding: 6px 6px 10px 6px;*/
    background: #DE0064;
    border-bottom: solid 2px #bfbfbf;
}
.elgg-widget-instance-annonce_type2 .annonce-post {
    /*padding: 6px 6px 10px 6px;*/
    background: #82BB26;
    border-bottom: solid 2px #bfbfbf;
}

.elgg-widget-instance-annonce_type1  .annonce_content {
	margin: 0;
	padding: 0px;
        background: white;
        box-shadow: 1px 1px 2px rgb(184, 184, 184);
}

.elgg-widget-instance-annonce_type2 .annonce_content {
	margin: 0;
	padding: 0px;
        background: white;
        box-shadow: 1px 1px 2px rgb(184, 184, 184);
}

.annonce_message_text{
    width:100%;
}

.annonce_message_read {
float:right;
}
.annonce_message_icon, .annonce_message_text, .annonce_message_subtitle  {
float:left;
}

.annonce_message_icon {
 margin:0px 5px 5px 0px;
}

.annonce_vue_widget .annonce_message_icon {
    width: 80px;
}
.annonce_vue_widget h3 {
    width: 240px;
}
.annonce_vue_widget .annonce_message {
    <!--font-size: 95%;-->
    color: #000;
}

.annonce_vue_list h3, .annonce_vue_full h3 {
    width: auto;
}

.annonce_type_type1 .annonce_message_icon {
 border: 1px solid #666666;
}

.annonce_type_type2 .annonce_message_icon {
 border: 1px solid #666666;
}


.annonce_message_text {
color: #666666;
font-size: 100%;
line-height: 1.2em;
font-style: normal;
}

.annonce_vue_full .annonce_message_text {
line-height: normal;
}

.annonce_widget_footer{
	width: 100%;
    }
    .annonce_categ {
	display: inline-block;
	width:30%;		
    }
    .annonce_type {
	display: inline-block;
	width:30%;
	text-align: center;	
    }
    .annonce_read {
	display: inline-block;
	width:30%;
	text-align: right;	
    }/* <style> /**/

#messages_flash_banner {
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #dcdcdc;
    /*height: 19px;*/
    position: relative;
}

#messages_flash_btn {
    //font-size: 16px;
    line-height: 30px;
    padding: 0px 5px;
    color: #AAA;
    position: absolute;
    right: 0px;
    z-index: 1;
    }
    
  #messages_flash_btn > .fa-cog {
    color: #aaa;
    font-size: 18px;
    padding-top: 7px;
  }/****************************************************************************
Copyright (C) 2018 Jade <http://www.jade.fr>

Christophe VIBERT <c.vibert@jade.fr>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.
 * *************************************************************************/
/* 
    Created on : 26 janv. 2018, 09:34:51
    Author     : Christophe VIBERT <c.vibert@jade.fr>
*/

    /*Plus de notion de contacts afficher
    /*User-picker
    Enlever l'affichage du selecteur de contacts dans le user-picker*/
    .elgg-user-picker>label{
        display:none;
    }
    .elgg-user-picker>input[name="match_on"] {
        display:none;
    }
    /*tab*/
    li.elgg-menu-item-friend{
     display:none;   
    }/* <style> /**/

/* ***************************************
	MISC
*****************************************/
#dashboard-info {
	border: 1px solid #DCDCDC;
	margin: 0 10px 15px;
}
.elgg-sidebar input[type=text],
.elgg-sidebar input[type=password] {
	box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.1);
	width:80%
}
.elgg-module .elgg-list-river {
	border-top: none;
}
.elgg-module > .elgg-body > .elgg-list, /* margin for group modules */
.elgg-module .elgg-widget-content > .elgg-list { /* margin for profile and dashboard widgets */
    margin-top: 0;
	
	
}

/*ajustement des marges */
.elgg-sidebar {
    padding: 32px 15px 20px 15px;
}
/*Gestion des couleurs dans le sidebar*/
.elgg-sidebar>.elgg-module li .elgg-subtext > a {
    color: #999;
}
.elgg-sidebar>.elgg-module li .elgg-subtext {
    color: #539A9F;
}
.elgg-sidebar .elgg-module .elgg-subtext {
    color: white;
}
.elgg-sidebar h3 {
    color: white;
}

.elgg-sidebar a {
    color: white;
}
.elgg-menu-page li.elgg-state-selected > a,
.elgg-sidebar .elgg-menu-owner-block li.elgg-state-selected > a,
.elgg-menu-groups-my-status li.elgg-state-selected > a {
    color: white;
}
/*** uniformisation des notification du topbar (**-new)***/
.messages-new, .friend-request-new, #notifier-new  {
	color: #FFF;
	background-color: #FF0000;
	border-radius: 10px;
	box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.50);
	position: absolute;
	text-align: center;
	line-height: 14px;
	top: 0px;
	left: 32px;
	min-width: 16px;
	height: 16px;
	font-size: 10px;
	font-weight: bold;
}

/* ***************************************
	TOPBAR MENU DROPDOWN
*****************************************/
.elgg-topbar-dropdown {
	padding-bottom: 8px; /* forces button to reach bottom of topbar */
}
.elgg-menu-topbar > li > .elgg-topbar-dropdown:hover {
	color: #EEE;
	cursor: default;
}
.elgg-menu-topbar-alt ul {
	position: absolute;
	display: none;
	background-color: #FFF;
	border: 1px solid #DEDEDE;
	text-align: left;
	top: 33px;
	margin-left: -100px;
	width: 180px;

	border-radius: 0 0 3px 3px;
	box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.25);
}
.elgg-menu-topbar-alt li ul > li > a {
	text-decoration: none;
	padding: 10px 20px;
	background-color: #FFF;
	color: #444;
}
.elgg-menu-topbar-alt li ul > li > a:hover {
	background-color: #F0F0F0;
	color: #444;
}
.elgg-menu-topbar-alt > li:hover > ul {
	display: block;
}
.elgg-menu-item-account > a:after {
	content: "\bb";
	margin-left: 6px;
}

/*****************************************
            owner_block_icon
    ******************************************/
    .owner_block_icon_icon {
        width:25px;
    }
    .owner_block_icon_icon >span {
        /*font-size:20px;*/
    }
    
/* ***************************************
	RESPONSIVE
*****************************************/
html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
.elgg-button-nav {
	display: none;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	color: #FFF;
	float: left;
	padding: 14px 18px;
}
.elgg-button-nav:hover {
	color: #FFF;
	text-decoration: none;
	background-color: #60B8F7;
}
/* .icon-bar elements had to be removed in 1.12.6 because they did not show up in Firefox/Android.
 * The .icon-bar CSS is deprecated and will be removed in 2.0
 */
.elgg-button-nav .icon-bar {
	background-color: #F5F5F5;
	border-radius: 1px 1px 1px 1px;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
	display: block;
	height: 2px;
	width: 22px;
}
.elgg-button-nav .icon-bar + .icon-bar {
	margin-top: 3px;
}
.elgg-button-nav > img {
	display: block;
}
@media (max-width: 1030px) {
	.elgg-menu-topbar-default > li:first-child a {
		/*margin-left: 0;*/
	}
	.elgg-menu-topbar-alt > li > a.elgg-topbar-dropdown {
		margin-right: 0;
	}
	.elgg-page-footer {
		padding: 0 20px;
	}
}
@media (max-width: 820px) {
	.elgg-page-default {
		min-width: 0;
	}
	.elgg-page-body {
		padding: 0;
	}
	.elgg-main {
        padding: 12px 20px 10px;
		
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
    }
    .elgg-layout-one-sidebar .elgg-main,
	.elgg-layout-two-sidebar .elgg-main {
        width: 100%;
    }
	.elgg-sidebar {
		border-left: none;
		border-top: 1px solid #DCDCDC;
		border-bottom: 1px solid #DCDCDC;
		background-color: #FAFAFA;
		width: 100%;
		float: left;
		padding: 27px 20px 20px;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05) inset;

		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
        .elgg-sidebar>ul>li>a, .elgg-sidebar>.elgg-module li a {
            color: #019aa6;
        }
        
        .elgg-sidebar h3, .elgg-sidebar h3 a {
            color: #444;
        }
        
        .elgg-sidebar a {
            color: #444;
        }
        
        .elgg-sidebar .elgg-subtext {
            color: #333;
        }
	.elgg-sidebar-alt {
		display: none;
	}
	.elgg-page-default .elgg-page-footer > .elgg-inner {
		border-top: none;
	}
	.elgg-menu-footer {
		float: none;
		text-align: center;
	}
	.elgg-menu-page,
	.elgg-sidebar .elgg-menu-owner-block,
	.elgg-menu-groups-my-status {
		border-bottom: 1px solid #DCDCDC;
	}
	.elgg-menu-page a,
	.elgg-sidebar .elgg-menu-owner-block li a,
	.elgg-menu-groups-my-status li a {
		border-color: #DCDCDC;
		border-style: solid;
		border-width: 1px 1px 0 1px;
		margin: 0;
		padding: 10px;		
		background-color: #FFFFFF;
	}
	.elgg-menu-page a:hover,
	.elgg-sidebar .elgg-menu-owner-block li a:hover,
	.elgg-menu-groups-my-status li a:hover,
	.elgg-menu-page li.elgg-state-selected > a,
	.elgg-sidebar .elgg-menu-owner-block li.elgg-state-selected > a,
	.elgg-menu-groups-my-status li.elgg-state-selected > a {
		color: #444;
		background-color: #F0F0F0;
		text-decoration: none;
	}
	.elgg-river-item input[type=text] {
		width: 100%;
	}
	.elgg-river-item input[type=submit] {
		margin: 5px 0 0 0;
	}
	/***** CUSTOM INDEX ******/
	.elgg-col-1of2 {
		float: none;
		width: 100%;
	}
	.prl {
		padding-right: 0;
	}
	/***** WIDGETS ******/
	.elgg-col-1of3,
	.elgg-col-2of3,
	#elgg-widget-col-1,
	#elgg-widget-col-2,
	#elgg-widget-col-3 {
		float: none;
		min-height: 0 !important;
		width: 100%;
	}
	
#elgg-widget-col-1 > .elgg-module-widget > .elgg-head {
	background-color: #019aa6;
	padding: 10px 0;
	height: auto;
	overflow: hidden;
	box-shadow: inset 0 0 1px #FFFFFF;
}
	.elgg-module-widget {
		margin: 0 0 15px;
	}
	.custom-index-col1 > .elgg-inner,
	.custom-index-col2 > .elgg-inner {
		padding: 0;
	}
	#dashboard-info {
		margin: 0 0 15px;
	}
}
@media (min-width: 767px) {
	.elgg-nav-collapse {
		display: block !important;
	}
}
@media (max-width: 766px) {
	.elgg-page-header > .elgg-inner h1 {
		padding-top: 10px;
	}
	.elgg-heading-site, .elgg-heading-site:hover {
		font-size: 1.6em;
	}
	.elgg-button-nav {
		cursor: pointer;
		display: block;
	}
	.elgg-nav-collapse {
		clear: both;
		display: none;
		width: 100%;
	}
	#login-dropdown a {
		padding: 10px 18px;
	}
/*	.elgg-menu-site {
		float: none;
	}
	.elgg-menu-site > li > ul {
		position: static;
		display: block;
		left: 0;
		margin-left: 0;
		border: none;
		box-shadow: none;
		background: none;
	}
	.elgg-more,
	.elgg-menu-site-more li,
	.elgg-menu-site > li > ul {
		width: auto;
	}
	.elgg-menu-site ul li {
		float: none;
		margin: 0;
	}
	.elgg-more > a {
		border-bottom: 1px solid #294E6B;
	}
	.elgg-menu-site > li {
		border-top: 1px solid #294E6B;
		clear: both;
		float: none;
		margin: 0;
	}
	.elgg-menu-site > li:first-child {
		border-top: none;
	}
	.elgg-menu-site > li > a {
		padding: 10px 18px;
	}
	.elgg-menu-site-more > li > a {
		color: #FFF;
		background: none;
		padding: 10px 18px 10px 30px;
	}
	.elgg-menu-site-more > li:last-child > a,
	.elgg-menu-site-more > li:last-child > a:hover {
		border-radius: 0;
	}
	.elgg-menu-site-more > li.elgg-state-selected > a,
	.elgg-menu-site-more > li > a:hover {
		background-color: #60B8F7;
		color: #FFF;
	}*/
}
@media (max-width: 600px) {
	.groups-profile-fields {
		float: left;
		padding-left: 0;
	}
	#profile-owner-block {
		border-right: none;
		width: auto;
	}
	#profile-details {
		display: block;
		float: left;
	}
	#groups-tools > li {
		width: 100%;
		margin-bottom: 20px;
	}
	#groups-tools > li:nth-child(odd) {
		margin-right: 0;
	}
	#groups-tools > li:last-child {
		margin-bottom: 0;
	}
	.elgg-menu-entity, .elgg-menu-annotation {
		margin-left: 0;
	}
	.elgg-menu-entity > li, .elgg-menu-annotation > li {
		margin-left: 0;
		margin-right: 15px;
	}
	.elgg-subtext {
		float: left;
		margin-right: 15px;
	}
        
        /*Ajustement des icones du topbar*/
        .elgg-menu-topbar>li>a {
            margin: 0px 5px;
        }    
        .messages-new, .friend-request-new, #notifier-new  {
            left: 24px;
        }    
}

@media (max-width: 320px) {
    /***** PAGE HEADER ******/
    .elgg-page-header {
        background-size: contain; 
    }
}    

/* <style>/**/

/*

#4690D6 -> #a0a0a0  : bleu clair -> cool gray 7
#E4ECF5 -> #FFFFFF  : fond bleu très clair -> blanc
#0054A7 -> #019aa6  : bleu foncé -> bleu canard
*/
    
#elggchat_toolbar {
	position: fixed;
	bottom: 0px;
	left: 0px;
	min-height: 25px;
	background: rgba(122,122,122,0.5); /*cv*/
	z-index: 9999;
}

#elggchat_toolbar_right {
	float: right;
}

.session {
	float: right;
	background: #FFFFFF;
	padding: 3px 3px 0 3px;
	margin: 1px 3px 0px 3px;
	height: 23px;
	/* ie fix */
	max-width:200px;
	font-family: "Lucida Grande",Arial,Tahoma,Verdana,sans-serif;
	text-decoration: none;
	text-shadow: none;
	color: black;
	border: 1px solid #a0a0a0;
	-moz-border-radius: 0px; /*cv 0px radius */
	-webkit-border-radius: 0px;
	border-radius: 0px;
}

.session a {
	color: #a0a0a0;
}

.session a:hover {
	color: #a0a0a0;
	text-decoration: underline;
}

.elggchat_session_new_messages {
	background: #333333;
}

.elggchat_session_new_messages.elggchat_session_new_messages_blink {
	background: #FFFFFF;
}

.elgg-icon-elggchatdelete:before {
	font-size: large !important;
	cursor: pointer;
	content: "\f057";
}

.elgg-icon-elggchatsessiontoggle:before {
	cursor: pointer;
	content: "\f205";
}

#elggchat_extensions {
	float: left;
	height: 25px;
	padding: 0 3px 0 3px;
}

#elggchat_friends {
	position: relative;
	float: right;
	width: 120px;
	height: 23px;
	padding: 3px 3px 0 3px;
	margin: 1px 3px 0px 3px;
	background: white;
	border: 1px solid #a0a0a0; /*cv*/
	-moz-border-radius: 0px; /* cv 0px radius */
	-webkit-border-radius: 0px;
	border-radius: 0px;
}

#elggchat_friends a {
	color: #a0a0a0;
	font-family: "Lucida Grande",Arial,Tahoma,Verdana,sans-serif;
	text-decoration: none;
	text-shadow: none;
}

#elggchat_friends a:hover {
	text-decoration: underline;
}

#elggchat_friends_picker {
	display: none;
	position: absolute;
	bottom: 25px;
	right: -1px;
	width: 120px;
	background: white;
	color: black;
	padding: 3px 3px 2px 3px;
	overflow-x: hidden;
	max-height: 300px;
	overflow-y: auto;
	white-space: nowrap;
	font-family: "Lucida Grande",Arial,Tahoma,Verdana,sans-serif;
	text-decoration: none;
	text-shadow: none;
	border: 1px solid #CCCCCC;
	-moz-border-radius-topleft: 0px; /*cv  0px radius */
	-moz-border-radius-topright: 0px;
	-webkit-border-top-left-radius: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

#elggchat_friends_picker a {
	color: #a0a0a0;
	font-family: "Lucida Grande",Arial,Tahoma,Verdana,sans-serif;
	text-decoration: none;
	text-shadow: none;
}

#elggchat_friends_picker a:hover {
	text-decoration: underline;
}


#elggchat_friends_picker .settings {
	font-size: 90%;
	background-color: #DEDEDE;
	color: #019aa6;
	padding: 2px 2px 2px 2px;
	font-family: "Lucida Grande",Arial,Tahoma,Verdana,sans-serif;
	font-weight: bold;
	text-decoration: none;
	text-shadow: none;
	vertical-align: middle;
}

.toggle_elggchat_toolbar {
	color: #0D8D98;
}

.toggle_elggchat_toolbar:before {
	float:left;
	background: none;/*cv*/
	cursor: pointer;
	content: "\f100";
	width: 16px;
	height: 23px;
	padding: 3px 3px 0px;
	margin: 1px 0px 0px;
	font-size: 21px;
	border: 0px;/*cv*/
	
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
	border-top-right-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

:focus > .toggle_elggchat_toolbar,
.toggle_elggchat_toolbar:hover,
.toggle_elggchat_toolbar-hover {
	color: #a0a0a0;
}

.minimizedToolbar {
}

.minimizedToolbar:before {
	float:left;
	background: none; /*cv*/
	cursor: pointer;
	content: "\f101";
	width: 16px;
	height: 23px;
	padding: 3px 3px 0px;
	margin: 1px 0px 0px;
	font-size: 21px;
	border: 0px;/*cv*/
	
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
	border-top-right-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.messageWrapper {
	background: white;
	color: black;
	padding: 10px;
	margin: 0 5px 5px 5px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}

.messageWrapper table {
	background: white;
	height: 0px;
	font-size: 11px;
}

.systemMessageWrapper {
	padding: 3px;
	margin: 0 5px 5px 5px;
	color: red;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}

.messageIcon {
	margin-right: 7px;
}

.messageName {
	border-bottom: 1px solid #DDDDDD;
	width: 100%;
	font-weight: bold;
	color: #a0a0a0;
}

.chatsessiondatacontainer {
	position: relative;
	width: 200px;
	display: none;
}

.chatsessiondata {
	position: absolute;
	bottom: 19px;
	width: 206px;
	margin: 0 -4px;
	max-height: 600px;
	border: 1px solid #a0a0a0;
	border-bottom: 0px;
	background: #FFFFFF;
	-moz-border-radius-topright: 0px; /*cv 0px radius*/
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-left-radius: 0px;
	-webkit-border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

.chatmembers {
	border-bottom: 1px solid #DEDEDE;
	max-height: 154px;
	overflow-y: auto;
	padding-top: 2px;
	padding-left: 2px;
}

.chatmembers a {
	color: #019aa6;
	font-family: "Lucida Grande",Arial,Tahoma,Verdana,sans-serif;
	font-weight: bold;
	text-decoration: none;
	text-shadow: none;
}

.chatmembers a:hover {
	color: #019aa6;
	text-decoration: underline;
}

.chatmember td {
	vertical-align: middle;
}

.chatmembers .chatmemberinfo {
	width: 100%;
}

.chatmembersfunctions {
	text-align: right;
	padding-right: 2px;
	height: 20px;
	border-bottom: 1px solid #DEDEDE;
	font-size: 10px;
}

.chatmembersfunctions a {
	color: #019aa6;
}

.chatmembersfunctions a:hover {
	color: #019aa6;
	text-decoration: underline;
}

.chatmembersfunctions_invite {
	display: none;
	text-align: left;
	position: absolute;
	background: #333333;
	width: 100%;
	opacity: 0.8;
	filter: alpha(opacity=80);
	max-height: 250px;
	overflow-x: hidden;
	overflow-y: auto;
}

.chatmembersfunctions_invite a {
	color: #FFFFFF;
	padding: 3px;
}

.online_status_chat {
	width: 16px;
	height: 16px;
	/*background: transparent url(https://masphere.infodroits.org/cache/1617879465/default/elggchat/online_status.png) no-repeat 0 0;*/
        background: transparent url(https://masphere.infodroits.org/cache/1617879465/default/jade_theme/elgg_sprites.png)no-repeat 0 0 ;
        background-position: 0 -127px;
}

.online_status_idle {
	background-position: 0 -145px;
}

.online_status_inactive {
	background-position: 0 -54px;
}

.chatmessages {
	min-height: 250px;
	max-height: 400px;
	overflow-y: auto;
}

.elggchatinput {
	height: 20px;
	background: #FFFFFF url(https://masphere.infodroits.org/cache/1617879465/default/jade_theme/elgg_sprites.png) no-repeat 0 0 ;
        background-position: 0 -1007px;
	color: black;
	padding: 0px 2px 0px 18px;
	border-top: 1px solid #DEDEDE;
	border-bottom: 1px solid #DEDEDE;
        margin : 5px; 
}

.elggchatinput input {
	border: none;
	color: black;
	font-size: 100%;
	padding: 2px;
}

.elggchatinput input:focus {
	border: none;
	background: none;
}
#back-top {
	position: fixed;
	bottom: 70px;
	right: 0px;
        opacity: 0.5;
}

#back-top a {
	/*width: 108px;*/
	display: block;
	text-align: center;
	font-size: 24px;
	text-transform: uppercase;
	text-decoration: none;
	color: #33AEB8;
	
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}


/* arrow icon (span tag) */
#back-top span {
/*	width: 50px;
	height: 50px;*/
	display: block;
	margin-bottom: 7px;
	/*background: #ddd url(up-arrow.png) no-repeat center center;*/
	/*background-size: 30px 30px;*/

        background-color: #D2D0CD;
        
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;

	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
        
        padding: 5px
}

#back-top a:hover {
	color: #0D8D98;
}

#back-top a:hover span {
	background-color: #8A8A8D;
}