@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/open_sans/OpenSans-Regular') format('truetype');
}

@font-face {
  font-family: "Segoe Ui";
  src: url('https://kuleuven-kulak.be/solspanet/dev/static/solspanet/fonts/segoe-ui/segoeui.ttf');
}

body{
	background: #4F4F4F;
  font-family: "Segoe Ui";
  text-align: justify;
}

.floatRight {
  float: right;
}

.floatLeft {
  float: left;
}

.marginRight{
  margin-right: 10px;
}

.aligCenter{
  text-align:  center;
}

.dangerBackground {
  background: #d9534f;
}

.instituteContactList {
  list-style-type: none;
  padding-left: 0;
}

.modalB {
  cursor: pointer;
}

.inlineLabel {
  line-height: 34px;
  vertical-align: middle;
}

/* Logo Navbar */
.logoNavbar {
  z-index: 100;
  margin-bottom: 0;
  margin-top: -1px;
  border-radius: 0 !important;
  border-bottom: 1px solid #AF0700;
}

.navbarHeaderLogo {
  width: 77%;
}

.customBrand {
  display: none;
}

@media (max-width: 768px) {
  .navbarHeaderLogo {
    width: 100%;
  }
  .customBrand {
    display: inline-block;
  }
}


.slogan {
  font-size: 14px;
  font-weight: bold;
}

.logoNavbar .customNavbar {
  background: #f8f8f8;
  padding:15px 0;
}

.logoNavbar .customNavbar > .row{
  margin: 0;
}

.searchButton {
  margin-left: -40px;
}

img.navbarLogoSols {
}

@media screen and (max-width: 990px) {
  .slogan {
    font-size: 12px;
  }
}

.topMenu {
	background: #bf340E;
	border: 0;
	border-radius: 0;
	z-index: 100;
	margin-bottom: 0;
}

#fixed {
  height: 95px;
  margin: 0;
}

@media (max-width: 768px) {
  #fixed {
    height: 150px;
  }
}

.headerNav {
  position: relative;
}

.headerNav a{
	color: #fff !important;
}


ul.headerNav ul {
  display: none;
}

@media (max-width: 768px) {
  .firstLink {
    display: none !important;
  }
}

ul.headerNav li:hover > ul {
  display: inline-block;
  position: absolute;
  width: 200px;
  padding: 0;
  background: #f6f6f6;
  list-style-type: none;
}

.in > ul.headerNav li > ul{
  display: none;
}


ul.headerNav ul li{
  border-bottom: 1px solid #ddd;
  padding: 5px 0 5px 10px;
}

ul.headerNav ul li a{
  text-decoration: none;
  color: #000 !important;
}

ul.headerNav ul li a:hover{
  color: #000;
}

/* Slider */


.sliderContent{
}

.mainPageMenu{
	margin: 0 auto;
}

.footer{
	margin-bottom: 0;
}

.navbar-footer {
	background: #CB2400;	/* #bf340E*/
  border-width: 1px 0 0;
  min-height: 30px !important;
  border-radius: 0;
  margin-bottom: 0 !important;
}

.navbar-footer a{
	color: #fff !important;
}

.navbar-brand-footer {
	font-size: 14px !important;
	font-weight: normal;
}


/* Content Over */
.ch-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  text-align: center;
  width: 100%;
}

.ch-grid:after,
.ch-item:before {
  content: '';
    display: table;
}

.ch-grid:after {
  clear: both;
}

.ch-grid li {
  width: 250px;
  height: 250px;
  display: inline-block;
  margin: 0 auto;
}

.ch-item {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: relative;
  cursor: default;
    
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.ch-img-1 { 
  background-image: url(../images/mainPageMenu/1.jpg);
  background-size: cover;
}

.ch-img-2 { 
  background-image: url(../images/mainPageMenu/2.jpg);
  background-size: cover;
}

.ch-img-3 { 
  background-image: url(../images/mainPageMenu/3.jpg);
  background-size: cover;
}


.ch-info {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  opacity: 0;
  
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  
  -webkit-backface-visibility: hidden; /*for a smooth font */

}

.ch-item:hover {
  box-shadow: 
    inset 0 0 0 150px rgba(0,0,0, 0.4),
    inset 0 0 0 16px rgba(0,0,0,0.8),
    0 1px 2px rgba(0,0,0,0.1);
}

.ch-item:hover .ch-info {
  opacity: 1;
  
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);  
}

.ch-info .hoverBtnCon{
  width: 200px;
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);

}

.ch-info .hoverBtnCon p{
  border-top: none;

}

.ch-info .hoverBtnCon .mybutton {
  display: block;
  padding: 5px 10px;
  background: #bf340E;
  color: #fff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 992px){
  .ch-grid li {
    width: 200px;
    height: 200px;
    display: inline-block;
    margin: 0 auto;
  }

  .ch-info .hoverBtnCon{
    width: 140px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);

  }

  .ch-info .hoverBtnCon p a{
    font-size: 12px !important;
  }

}


@media (max-width: 768px){
  .ch-grid li {
    width: 170px;
    height: 170px;
    display: inline-block;
    margin: 0 auto;
  }

  .ch-info .hoverBtnCon{
    width: 140px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);

  }

  .ch-info .hoverBtnCon p a{
    font-size: 12px !important;
  }

}

@media (max-width: 768px){
  .ch-grid li {
    width: 170px;
    height: 170px;
    display: inline-block;
    margin: 0 auto;
  }

  .ch-info .hoverBtnCon{
    width: 140px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);

  }

  .ch-info .hoverBtnCon p a{
    font-size: 12px !important;
  }

}
@media (max-width: 576px){
  .col-cos {
    width: 50%;
  }

}

/* institutes hover */

.ch-grid li.inst {
  width: 130px;
  height: 130px;
  display: inline-block;
  margin: 20px;
}

.ch-item-inst {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  cursor: default;
    
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.ch-img-kuleuven { 
  background: url(../images/mainPageMenu/kuleuven.jpg) no-repeat center;
}

.ch-img-stand { 
  background: url(../images/mainPageMenu/sand.jpg) no-repeat center;
}

.ch-img-oaw { 
  background: url(../images/mainPageMenu/oaw.png) no-repeat center;
}

.ch-img-shamakhy { 
  background: url(../images/mainPageMenu/shamakhy.jpg) no-repeat center;
}

.ch-img-ilia { 
  background: url(../images/mainPageMenu/ilia.jpg) no-repeat center;
}

.ch-img-nasu { 
  background: url(../images/mainPageMenu/nasu.gif) no-repeat center;
}

.ch-info-inst {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  
  -webkit-backface-visibility: hidden; /*for a smooth font */

}

.ch-item-inst:hover {
  box-shadow: 
    inset 0 0 0 110px rgba(0,0,0, 0.4),
    inset 0 0 0 16px rgba(0,0,0,0.8),
    0 1px 2px rgba(0,0,0,0.1);
  cursor: pointer;
}

.ch-item-inst:hover .ch-info-inst {
  opacity: 1;
  
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);  
}

.ch-info-inst .hoverBtnCon{
  width: 130px;
  height: 130px;
  border-radius: 50%;
  padding-top: 20%;
  text-align: center;
  background: rgba(0,0,0,0.6);

}

.ch-info-inst .hoverBtnCon .textContainer{
  color: #ddd;
}

.ch-info-inst .hoverBtnCon p{
  border-top: none;

}

.ch-info-inst .hoverBtnCon .mybutton {
  display: block;
  padding: 5px 10px;
  background: rgba(60,150,50,0.6);
  color: #fff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 50%;
  text-align: center;
  font-size: 10px;
}


/* Slider */


.rslides {
  margin: 0 auto;
  }

.rslides_container {
  margin-bottom: 50px;
  position: relative;
  float: left;
  width: 100%;
  }

.centered-btns_nav {
  z-index: 3;
  position: absolute;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  top: 50%;
  left: 0;
  opacity: 0.7;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  height: 61px;
  width: 38px;
  background: transparent url(../images/arrows.gif) no-repeat left top;
  margin-top: -45px;
  }

.centered-btns_nav:active {
  opacity: 1.0;
  }

.centered-btns_nav.next {
  left: auto;
  background-position: right top;
  right: 0;
  }

.transparent-btns_nav {
  z-index: 3;
  position: absolute;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  top: 0;
  left: 0;
  display: block;
  background: #fff; /* Fix for IE6-9 */
  opacity: 0;
  filter: alpha(opacity=1);
  width: 48%;
  text-indent: -9999px;
  overflow: hidden;
  height: 91%;
  }

.transparent-btns_nav.next {
  left: auto;
  right: 0;
  }

.large-btns_nav {
  z-index: 3;
  position: absolute;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  opacity: 0.6;
  text-indent: -9999px;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  background: #000 url(../images/arrows.gif) no-repeat left 50%;
  width: 38px;
  }

.large-btns_nav:active {
  opacity: 1.0;
  }

.large-btns_nav.next {
  left: auto;
  background-position: right 50%;
  right: 0;
  }

.centered-btns_nav:focus,
.transparent-btns_nav:focus,
.large-btns_nav:focus {
  outline: none;
  }

.centered-btns_tabs,
.transparent-btns_tabs,
.large-btns_tabs {
  margin-top: 10px;
  text-align: center;
  }

.centered-btns_tabs li,
.transparent-btns_tabs li,
.large-btns_tabs li {
  display: inline;
  float: none;
  _float: left;
  *float: left;
  margin-right: 5px;
  }

.centered-btns_tabs a,
.transparent-btns_tabs a,
.large-btns_tabs a {
  text-indent: -9999px;
  overflow: hidden;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  background: #ccc;
  background: rgba(0,0,0, .2);
  display: inline-block;
  _display: block;
  *display: block;
  -webkit-box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
  -moz-box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
  box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
  width: 9px;
  height: 9px;
  }

.centered-btns_here a,
.transparent-btns_here a,
.large-btns_here a {
  background: #222;
  background: rgba(0,0,0, .8);
}

.rslides_container .rslides .rslidesText{
    position: absolute;
    bottom: 10%;
    left: -100%;
    width: 60%;
    color: #fff;
    background: rgba(0,0,0,0.5);
    border-radius: 0 4px 4px 0;
    padding: 20px;
    -webkit-animation: slide 1s forwards;
    -webkit-animation-delay: 0s;
    animation: slide 1s forwards;
    animation-delay: 0s;
}


@-webkit-keyframes slide {
    100% { left: 0; }
}

@keyframes slide {
    100% { left: 0; }
}


/* Content Hover */

.contenthover { padding:25% 20px 10px 20px;}
.contenthover a.mybutton {
  display:block; 
  padding:5px 10px; 
  background:#3c9632; 
  color:#fff; 
  -moz-border-radius: 4px; 
  -webkit-border-radius: 4px; 
  border-radius: 4px;
  text-align: center;
  font-size: 18px;
}
.contenthover a.mybutton:hover { background:#34742d }

/* centerContent */

.centerContent {
  margin-top: 144px;
}

@media (max-width: 768px) {
  .centerContent {
    margin-top: 194px;
  }
}


.panel-content {
  border-radius: 0 !important;
  margin-bottom: 0;
}

.panel-body .centerContentText {
  text-align: justify;
}

.contentContainer{
  position: relative;
}

#heightPicker {
  margin-left: 302px;
  min-height: 500px;
}

/* Left Menu */


#leftMenu {
  position: absolute;
  left: 0;
  width: 300px;
}

#sidebarButton{
  font-size: 18px;
  text-decoration: none;
  color: #337AB7;
}

#leftMenu ul ul{
  list-style-type: none;
  margin-left: 20px;
  font-size: 13px;
}

/* Partners */

.partners {
  list-style-type: none;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0 auto;

}

.partners li{
  margin-bottom: 10px;
}

.partners li img{
  width: 200px;
  border: 1px solid #ccc;
  border-radius: 10px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.partners li img:hover{
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(191, 52, 14, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(191, 52, 14, .6);
}

/* Institutes */

.intitutesLinksCon {
  width: 200px;
  height: 150px;
}

.institutesLink
{
  text-decoration: none;
  text-align: center;
}

.institutesLink:hover
{
  text-decoration: none;
}

.hvr-radial-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  background: #F6F6F6;
  border-radius: 50%;
  padding: 20px;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-radial-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-radial-out:hover, .hvr-radial-out:focus, .hvr-radial-out:active {
  color: white;
}
.hvr-radial-out:hover:before, .hvr-radial-out:focus:before, .hvr-radial-out:active:before {
  -webkit-transform: scale(2);
  transform: scale(2);
}


/* Catalogue */

.filterForm {
  padding: 15px;
}

.filterTable table tr td{
  padding-left: 30px;
}

#advancedFilter {
  position: relative;
  padding: 10px;
}

.advnacedFilterTitle {
  height: 40px;
}

#advancedFilterToggle {
  cursor: pointer;
}

.filterResults {
  list-style-type: none;
  margin-top: 10px;
  padding: 0;
}


.filterResults li{
  float: left;
  padding:0 10px;
  border-right: 1px solid #777;
  color: #777;
}

.filterResults li:first{
  padding-left:0;
}

.filterResults li:last-child{
  padding-right: 0;
  border-right: 0;
}

.multipleSelect {
  width: 100% !important;
}

.catalogueTable td{
  vertical-align: middle !important;
}

#scrolling {
}

.wrapper1, .wrapper2{border: none;
overflow-x: scroll; overflow-y:hidden;}
.wrapper1{height: 20px; }
.wrapper2{ }
.table1 {height: 20px; }
.table2 {overflow: auto;}


.scrollX {
  position: fixed;
  top: 41px;
  z-index: 11;
}

@media (max-width: 767px) {
  .scrollX {
    width: 91.5%;
    top: 41px;
  }

}

@media (min-width: 768px) {
  .scrollX {
    width: 687px;
    top: 90px;
  }

}
@media (min-width: 992px) {
  .scrollX {
    width: 907px;
    top: 41px;
  }
}
@media (min-width: 1200px) {
  .scrollX {
    width: 1107px;
    top: 41px;
  }
}


.catalogTable {
}

.catalogTable tbody tr td{
  border-left: 1px solid #ddd;
  text-align: center;
}

.catalogTable thead {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.catalogTable thead th{
  text-align: center;  
  border-right: 1px solid #ddd;
  vertical-align: middle !important;
}

.catalogTable tbody tr:nth-child(odd){
  background-color: #F5F5F5;
}

.catalogTable tbody tr td .link{
  color: #333;
  text-decoration: none;
}
.catalogTable tbody tr td .link:hover{
  color: #337ab7;
}

input[list="pages"] {
  width: 50px;
}

.customTooltip{
  max-width: 380px;
  padding: 2px 5px;
}

#dscr {
  display: none;
}

.desctValue {
  display: none;
}

.catalogListing label{
  font-weight: normal;
}


.graphic a{
  font-size: 24px;
  font-color: #333;
}

li.disabledLink {
  list-style-type: none;
  cursor: not-allowed;
}
a.disabledLink {
  pointer-events: none;
  color: #000;
  opacity: 0.4;
}

.hgc, .hgs {
  display: none;
}

.hpc {
  display: inline-block;
}

/* Catalog Pagination */

.costumPagination {
  margin: 0;
}

/* Details */

.eventTable 
{ 
  overflow:auto;
}

.eventTable .catalogTable td
{ 
  text-align: left;
}

/* report for bugs */

.modalDialog {
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  z-index: 99999;
  opacity:0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;
}

.modalDialog:target {
  opacity:1;
  pointer-events: auto;
}

.modalDialog > div {
  width: 600px;
  position: relative;
  margin: 10% auto;
  padding: 20px 20px 13px 20px;
  border-radius: 10px;
  background: #fff;
}

.modalDialog > div.video {
  background: transparent;
}

.close {
  background: #606061;
  color: #FFFFFF;
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 24px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -moz-box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
  opacity: 1;
}

.close:hover { opacity: 1; background: #AF0700; }

.clockpicker input {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    padding: 5px;
    text-align: center;
}

#coordSys {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    padding: 4px;
    text-align: center;
}

/*Authorization*/
.panel-login {
  min-height: 500px;
}

#register-form {
  display: none;
}

.panel-login {
  border-color: #ccc;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2);
}
.panel-login>.panel-heading {
  color: #00415d;
  background-color: #fff;
  border-color: #fff;
  text-align:center;
}
.panel-login>.panel-heading a{
  text-decoration: none;
  color: #666;
  font-weight: bold;
  font-size: 15px;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.panel-login>.panel-heading a.active{
  color: #029f5b;
  font-size: 18px;
}
.panel-login>.panel-heading hr{
  margin-top: 10px;
  margin-bottom: 0px;
  clear: both;
  border: 0;
  height: 1px;
  background-image: -webkit-linear-gradient(left,rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.15),rgba(0, 0, 0, 0));
  background-image: -moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
  background-image: -ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
  background-image: -o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
}
.panel-login input[type="text"],.panel-login input[type="email"],.panel-login input[type="password"] {
  height: 45px;
  border: 1px solid #ddd;
  font-size: 16px;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.panel-login input:hover,
.panel-login input:focus {
  outline:none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: #ccc;
}
.btn-login {
  background-color: #59B2E0;
  outline: none;
  color: #fff;
  font-size: 14px;
  height: auto;
  font-weight: normal;
  padding: 14px 0;
  text-transform: uppercase;
  border-color: #59B2E6;
}
.btn-login:hover,
.btn-login:focus {
  color: #fff;
  background-color: #53A3CD;
  border-color: #53A3CD;
}
.forgot-password {
  text-decoration: underline;
  color: #888;
}
.forgot-password:hover,
.forgot-password:focus {
  text-decoration: underline;
  color: #666;
}

.btn-register {
  background-color: #1CB94E;
  outline: none;
  color: #fff;
  font-size: 14px;
  height: auto;
  font-weight: normal;
  padding: 14px 0;
  text-transform: uppercase;
  border-color: #1CB94A;
}
.btn-register:hover,
.btn-register:focus {
  color: #fff;
  background-color: #1CA347;
  border-color: #1CA347;
}

#register-form label {
  color: #a94442;
}

label.showpassword{
  color: #9e9e9e !important;
  float: right;
  margin-top: -45px;
  margin-right: 10px;
  font-size: 30px;
}


/* Team */
.content .team {
    }

        .content .team > h1 {
            font-size: 26px;
            padding-left: 10px;
        }

        .content .team .team-one {
            margin: 10px 0 40px 0;
            min-height: 280px;
        }

            .content .team .team-one a img {
                width: 210px;
                height: 280px;
                float: left;
                border: 2px solid #c0c0c0;
            }

            .content .team .team-one h1 {
                font-size: 20px;
                margin-top: 0;
                margin-bottom: 20px;
            }

            .content .team .team-one h2 {
                font-size: 14px;
                margin-top: 0;
            }

            .content .team .team-one .desc {
                margin-top: 20px;
                color: #333;
                text-align: justify;
                font-size: 16px;
            }


    .content .team-full {
        padding: 0 15px;
        min-height: 200px;
    }

        .content .team-full .team-header {
            margin-bottom: 30px;
        }

            .content .team-full .team-header h1 {
                font-size: 20px;
                margin-top: 0;
                margin-bottom: 20px;
            }

            .content .team-full .team-header h2 {
                font-size: 18px;
                margin-top: 0;
            }

        .content .team-full .desc {
            margin-top: 10px;
            text-align: justify;
        }

        .content .team-full img {
            border: solid #CCC 1px;
            padding: 6px;
            width: 80%;
            margin-left: 3px;
            box-shadow: 1px 0px 10px 1px rgba(221,221,221,1);
            -webkit-box-shadow: 1px 0px 10px 1px rgba(221,221,221,1);
            -moz-box-shadow: 1px 0px 10px 1px rgba(221,221,221,1);
        }

        .content .team-full .img-shadow {
            width: 80%;
            height: 40px;
            margin-left: 3px;
            background: url(../images/team_img_bottom.png);
            background-position: 0 -1px;
            background-size: 100%;
            background-repeat: no-repeat;
        }

/* File Upload BTN */

.fileinput-button {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.fileinput-button input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  -ms-filter: 'alpha(opacity=0)';
  font-size: 200px;
  direction: ltr;
  cursor: pointer;
}

/* Fixes for IE < 8 */
@media screen\9 {
  .fileinput-button input {
    filter: alpha(opacity=0);
    font-size: 100%;
    height: 100%;
  }
}


/* Gallery */

  .gallery-item {
            padding: 5px;        }

            .gallery-item a {
                width: 100%;
                display: block
            }

                .gallery-item a > img {
                    width: 100%;
                    height: 200px;
                }

        .gallery-title {
            background: #BF340E;
            width: 100%;
            text-align: center;
            color: #FFF;
            height: 40px;
            line-height: 20px;
        }