#content-wrapper .guide-record {
  display: inline-block;
  visibility: hidden; //not visible by default (only when min-width 1320px)
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.5;
  filter: alpha(opacity=50);
  width: 145px;
  font-size:14px;
  cursor:pointer;
}

@media (min-width: 1320px){
  #content-wrapper .guide-record {
    visibility: visible;
  }
}

#content-wrapper .guide-record img {
  width: 76px;
  height: 76px;
  overflow: hidden;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  transform: scale(0.8);
  
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
  
  border: 3px solid #FFFFFF;
  display:  block;
  margin: 0 auto;
}
#content-wrapper .guide-record .name {
  position: relative;
  float: left;
  clear: left;
  width: 100%;
  text-align: center;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #999999;
}
#content-wrapper .guide-record .link {
  position: relative;
  float: left;
  clear: left;
  width: 100%;
  text-align: center;
  margin-top: 3px;
  color: #999999;
  text-decoration: underline;
  margin-bottom: 15px;
}
#content-wrapper .guide-record .link:hover,
#content-wrapper .guide-record.mark .link{
  text-decoration: none;
}
#content-wrapper .guide-record.stick {
  position: absolute;
  left: -190px;
  margin-top: -50px;
}
#content-wrapper .guide-record.mark {
  opacity: 0.9;
  filter: alpha(opacity=50);
  background: none; /*bootstrap override*/
  padding: 0; /*bootstrap override*/
}
#content-wrapper .guide-record.mark img{
  -webkit-filter: none;
  -moz-filter: none;
  filter: none;
}
#content-wrapper .guide-record.mark .name,
#content-wrapper .guide-record.mark .link{
  color: #000000;
}

@media (min-width: 1320px){
  #content-wrapper .guide-record-link.has-profile{
    text-decoration: underline;
  }
}

#content-wrapper .guide-record-link.has-profile.mark{
  text-decoration: none !important;
  background: #fcf103;
  padding: 0; /*bootstrap override*/
}