.countryOption {
/* Style ignoré par IE8 dans <select> (OK car IE ignore également les background-image dans <select> *
	padding-left: 20px;
	background-repeat: no-repeat;
*/
}

.searchedText {
	background-color: yellow;
}
.errorField {
	background-color:#FFAAAA;
}
.errorMessage {
	color:red;
}
.validMessage {
	color:green;
}
select.flagIcon  {
	background-repeat:no-repeat;
	background-position:6px 6px;
	padding: 0px 0px 0px 22px !important;
}
option.flagIcon  {
	background-repeat:no-repeat;
	background-position:3px 3px;
	padding-left: 22px;
}
select.flagIconGender  {
	background-repeat:no-repeat;
	background-position:6px 3px;
	padding: 0px 0px 0px 22px !important;
}
option.flagIconGender  {
	background-repeat:no-repeat;
	background-position:3px 3px;
	padding: 4px 0px 4px 22px;
}

td.longRow, th.longRow {
	padding-top : 10px;
	vertical-align: top;
	border-top: 1px solid #EFEFEF;
}

del {
	color: #AA0000;
	background-color: #FFCCCC;
	text-decoration: line-through;
	border: 1px solid #EEAAAA;
	padding: .05em .2em .05em;
	border-radius: .25em;
}
ins {
	color: #007700;
	background-color: #AAFFAA;
	border: 1px solid #AAEEAA;
	text-decoration: none;
	padding: .02em .1em .02em;
	border-radius: .25em;
}
ins.adsbygoogle {
	color: transparent;
	background-color: transparent;
	border: 0px none #FFFFFF;
	text-decoration: none;
	padding: 0px;
	border-radius: 0px;
}

/************/
/* Messages */
/************/

.conversationElement {
	background-image:linear-gradient(to bottom, #F0F0FF 25px, white 30px, white);
}
.conversationElement:hover {
	background-image:linear-gradient(to bottom, #E0E0FF 25px, #F0F0FF 30px, #F0F0FF);
}
.unreadConversationElement {
	background-image:linear-gradient(to bottom, #F0F0B0 25px, #FDFDF0 30px, #FDFDF0);
}
.unreadConversationElement:hover {
	background-image:linear-gradient(to bottom, #E7E7A7 25px, #F7F7D0 30px, #F7F7D0);
}

.messageElement {
	background-image:linear-gradient(to bottom, #F0F0FF 35px, white 40px, white);
}
.unreadMessageElement {
	background-image:linear-gradient(to bottom, #F0F0B0 35px, #FDFDF0 40px, #FDFDF0);
	/*background-image:linear-gradient(to bottom, #D0D0FF 35px, #E8E8FF 40px, #E8E8FF);*/
}

/************/
/* Index    */
/************/

.memberProposalContent {
	margin-left:10px;
	padding-left:10px;
	height:165px;
	background-image:linear-gradient(to bottom, #EAEAEA, #FFFFFF);
	overflow:hidden;
	max-width:720px;
}

.memberProposalElement {
	float:left;
	width:110px;
	height:155px;
	text-align:center;
	line-height:200%;
	padding:2px;
	overflow:hidden;
}

.memberProposalNext {
	float:right;
	width:20px;
	height:100%;
	text-align:center;
	line-height:200%;
}

.memberProposalNext img {
	margin:65px 0px 0px -10px;
}


/****************/
/* Members List */
/****************/

@media screen and (min-width: 640px) {
	.blockResult1 {
		float: left;
		width: 230px;
	}
	.blockResult2 {
		padding-left:230px;
	}
	.floatifnotmobile {
		float:left;
	}
	.onlyvisiblewithmobile {
		display:none
	}
}
@media screen and (max-width: 640px) {
	.novisiblewithmobile {
		display:none
	}
}


/*****************/
/* Modal Picture */
/*****************/

/* The Modal (background) */
.bpModal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.bpModalContent {
  margin: auto;
  display: block;
  /*width: 80%;*/
  /*max-width: 80%;*/
  height: 80%;
}

/* Caption of Modal Image */
#bpCaption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  /*height: 150px;*/
}

/* Add Animation */
.bpModalContent, #bpCaption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.bpClose {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.bpClose:hover,
.bpClose:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .bpModalContent {
    width: 100%;
  }
}