/* Alignment Styles */

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.column-row {
  margin: 0px 0px 30px 0px;
}

.column-row::after {
  content: "."; 
  visibility: hidden; 
  display: block; 
  height: 0; 
  clear: both;
}

.column-two {
  width: 48%;
}

.column-three {
  width: 32%;
  margin-right: 2%;
}

.column-last {
  margin: 0;
}

/* Image Styles */

img.img-left {
  float: left;
  margin: 0px 20px 10px 0px;
}

img.img-right {
  float: right;
  margin: 0px 0px 10px 20px;
}

img.img-box {
  padding: 2px;
  border: 1px solid #333333;
}

.photo-frame {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.photo-frame img {
  display: block;
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  width: auto;
  max-height: 100%;
}

p.photo-frame-round {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 15px auto;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 2px 2px 5px #232323;
}

p.photo-frame-round img {
  display: block;
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  width: auto;
  max-height: 100%;
}

/* Button Styles */

a.button-orange {
  display: inline-block;
  padding: 8px 20px;
  color: #FFFFFF;
  text-decoration: none;
  background: #F79618;
  border-radius: 6px;
}

a.button-orange:hover {
  color: #000000;
}

a.button-blue {
  display: inline-block;
  padding: 8px 20px;
  color: #FFFFFF;
  text-decoration: none;
  background: #216398;
  border-radius: 6px;
}

a.button-blue:hover {
  color: #CCCCCC;
}

a.button-white {
  display: inline-block;
  padding: 8px 20px;
  color: #216398;
  text-decoration: none;
  background: #FCFCFC;
  border-radius: 6px;
}

a.button-white:hover {
  color: #000000;
}

a.button-block {
  display: block;
  text-align: center;
}

a.button-square {
  border-radius: 0px;
}

/* Table Styles */

table.table-responsive {
  margin: auto;
  border-collapse: collapse;
}

table.table-responsive-plain {
  border-collapse: collapse;
}

table.table-responsive-full {
  width: 100%;
}