/* Common classes
-----------------------------------------------------------------------------*/
.pa {
  position: absolute;
}
.pr {
  position: relative;
}
.clear {
  clear: both;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear_fix:after {
  content: '';
  clear: both;
  display: table;
  width: 100%;
}
.center {
  text-align: center;
}
/* Transitions
-----------------------------------------------------------------------------*/
.caption a {
  text-decoration: underline;
  color: #626262;
}
.content .title-link{color: #ffffff;}
.caption a:hover {
  text-decoration: none;
}

/*
This rule damages the slider

a,
a * {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
*/

/* Text content
-----------------------------------------------------------------------------*/
section.text_content {
  border: solid 1px #e9e9e9;
  background: #fff;
  padding: 15px 17px 1px;
  margin: 0 0 7px;
}
.text_content {
  color: #626262;
}
.text_content:after {
  content: '';
  clear: both;
  display: table;
  width: 100%;
}
.text_content .date {
  font-size: 18px;
}
.text_content p {
  margin: 0 0 13px;
}
.text_content h1 {
  font-size: 21px;
  font-weight: 400;
  color: #050505;
  margin: 0 0 7px;
}
.text_content h3 {
  color: #262626;
  font-size: 18px;
  font-weight: 400;
}
.text_content ol {
  list-style: decimal;
}
/* button
-----------------------------------------------------------------------------*/
.button {
  position: relative;
  display: inline-block;
}
.button:hover {
  text-decoration: underline;
}
.button input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity = 0);
  -webkit-appearance: button;
	cursor: pointer;
}
