/*
 * Button CSS 
 */
.canto-button{
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */

  *zoom: 1;
  padding: 2px 12px;
  vertical-align: middle;
  cursor: pointer;
  font-size: 18px;
  line-height: 26px;
  font-family: "Source Sans Pro";
  background: #1cc6da;
  color: #fff;
  border-style: solid;
  text-decoration: none;
  -webkit-transition: background 0.5s, color 0.5s, background-color 0.5s, top 0.5s;
  -moz-transition: background 0.5s, color 0.5s, background-color 0.5s, top 0.5s;
  -o-transition: background 0.5s, color 0.5s, background-color 0.5s, top 0.5s;
  transition: background 0.5s, color 0.5s, background-color 0.5s, top 0.5s;
  outline: #fff dotted 0;
  *margin-left: .3em;
  margin: 3px 3px 3px 0;
  border-width: 0;
}
.canto-button:first-child {
  *margin-left: 0;
}
.canto-button:hover{
  color: #fff;
  background: #18aebe;
}
.canto-button:active{
  color: #fff;
  position: relative;
  top: 1px;
}
.canto-button.large {
  padding: 7px 20px;
  font-size: 21px;
  line-height: 29px;
}
.canto-button.mini {
  padding: 3px 6px;
  font-size: 14px;
  line-height: 22px;
}
.canto-button.aqua {
  background: #1cc6da;
}
.canto-button.aqua:hover {
  background: #18aebe;
}
.canto-button.green {
  background: #1fd143;
}
.canto-button.green:hover {
  background: #1bb73b;
}
.canto-button.blue {
  background: #1f62d1;
}
.canto-button.blue:hover {
  background: #1b56b7;
}
.canto-button.aquamarine {
  background: #20d398;
}
.canto-button.aquamarine:hover {
  background: #1cb984;
}
.canto-button.red {
  background: #e25050;
}
.canto-button.red:hover {
  background: #de3636;
}
.canto-button.orange {
  background: #ff9b0f;
}
.canto-button.orange:hover {
  background: #f08c00;
}
.canto-button.black {
  background: #3b3b3b;
}
.canto-button.black:hover {
  background: #424242;
}
.canto-button.pink {
  background: #e41b88;
}
.canto-button.pink:hover {
  background: #c91778;
}
.canto-button.white {
  background: #f3f3f3;
  color: #ababab !important;
}
.canto-button.white:hover {
  background: #e8e8e8;
}
a.canto-button {
  text-decoration: none !important;
  color: #fff !important;
}
/*
 * Button CSS End
 */


/*
 * Box Style CSS 
 */
.box {
  padding: 25px 25px;
  border-width: 1px;
  border-style: solid;
  margin-bottom: 10px;
  position: relative;
}
.box a.close {
  position: absolute;
  right: 8px;
  top: 3px;
  text-decoration: none;
}
.box h4 {
  font-size: 18px !important;
  line-height: 27px !important;
  margin: 0 0 10px !important;
}
.box p {
  margin-bottom: 0 !important;
}
.box h4 i{
  margin-right: 7px;
}
.box.success {
  background: #dff0d8;
  color: #468847;
  border-color: #d6e9c6;
}
.box.success h4,
.box.success a.close {
  color: #468847;
}
.box.info {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.box.info h4,
.box.info a.close {
  color: #3a87ad;
}
.box.error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}
.box.error h4,
.box.error a.close {
  color: #b94a48;
}
.box.warning {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #fbeed5;
}
.box.warning h4,
.box.warning a.close {
  color: #c09853;
}
.box.download {
  color: #43ad00;
  background-color: #ecffe0;
  border-color: #dcffc6;
}
.box.download h4,
.box.download a.close {
  color: #43ad00;
}
.box.normal {
  color: #878787;
  background-color: #fafafa;
  border-color: #ededed;
}
.box.normal h4,
.box.normal a.close {
  color: #878787;
}
/*
 * Box Style CSS End
 */
/*
 * jQuery UI Tabs CSS
 */
.ui-tabs .ui-tabs-panel {
  background: #f2f5f7;
  padding: 10px 20px;
  color: #848a96;
}
.ui-tabs .ui-tabs-nav {
  margin: 0;
  list-style: none;
  background: #424a59;
  *zoom: 1;
}
.ui-tabs .ui-tabs-nav:before,
.ui-tabs .ui-tabs-nav:after {
  display: table;
  content: "";
  line-height: 0;
}
.ui-tabs .ui-tabs-nav:after {
  clear: both;
}
.ui-tabs .ui-tabs-nav li {
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  *display: inline;
  /* Fix for IE7 */

  float: left;
  border-right: 1px solid #4d5668;
}
.ui-tabs .ui-tabs-nav li a {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  padding: 12px 15px;
  display: block;
  text-decoration: none;
  outline: #fff dotted 0;
  border-top-width: 3px;
  border-top-color: #424a59;
  border-top-style: solid;
  
  -webkit-transition: color .25s;
  -moz-transition: color .25s;
  -ms-transition: color .25s;
  -o-transition: color .25s;
  transition: color .25s;
}
.ui-tabs .ui-tabs-nav li a:hover {
  color: #1cc6da;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a {
  background: #f2f5f7;
  color: #424a59;
  position: relative;
  border-top-color: #1cc6da;
}
/*
 * jQuery UI Tabs CSS End
 */
/*
 * jQuery UI Accordion CSS
 */
.ui-accordion .ui-accordion-header {
  font-size: 18px;
  line-height: 26px;
  padding: 7px 15px;
  color: #fff;
  background: #424a59;
  border-left: 3px solid #424a59;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  margin: 10px 0 0;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  padding: 10.5px 15px;
  background: #1cc6da;
  position: absolute;
  right: 0;
  top: 0;
}
.ui-accordion .ui-accordion-header.ui-accordion-header-active {
  color: #fff;
  background: #424a59;
  border-left-color: #1cc6da;
}
.ui-accordion .ui-accordion-header.ui-accordion-header-active:after {
  background: #1cc6da;
  top: 50%;
  left: -1.5px;
  content: '';
  display: block;
  height: 5px;
  margin: -2.5px 0 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  width: 5px;
}
.ui-accordion .ui-accordion-header:hover {
  color: #fff;
}
.ui-accordion .ui-accordion-content {
  background: #f2f5f7;
  padding: 10px 20px;
  border-top-width: 0;
}
/*
 * jQuery UI Accordion CSS End
 */
.author-info {
  background: #424a59;
  color: #f2f5f7;
}
.author-info img {
  margin: 0;
  float: left;
}
.author-info p {
  margin: 0 0 10px 170px;
}
.author-info h4 {
  background: #1cc6da;
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  *display: inline;
  /* Fix for IE7 */

  margin: 0 0 20px 20px;
  padding: 5px 10px;
}
.author-info h4 a {
  color: #fff;
}

/*--------------------*/
/*  Column Styles
/*--------------------*/
.clear{
  clear: both;
}
.canto-one-half { width: 48%; }
.canto-one-third { width: 30.66%; }
.canto-two-third { width: 65.33%; }
.canto-one-fourth { width: 22%; }
.canto-three-fourth { width: 74%; }
.canto-one-fifth { width: 16.8%; }
.canto-two-fifth { width: 37.6%; }
.canto-three-fifth { width: 58.4%; }
.canto-four-fifth { width: 79.2%; }
.canto-one-sixth { width: 13.33%; }
.canto-five-sixth { width: 82.67%; }

.canto-one-half,
.canto-one-third,
.canto-two-third,
.canto-three-fourth,
.canto-one-fourth,
.canto-one-fifth,
.canto-two-fifth,
.canto-three-fifth,
.canto-four-fifth,
.canto-one-sixth,
.canto-five-sixth {
  position: relative;
  margin-right: 4%;
  margin-bottom: 2em;
  float: left;
}
.canto-column-last {
  margin-right: 0!important;
  clear: right;
}
/*
 * highlight text
 */
.highlight{
  color: #fff;
  padding: 0 4px;
  border-radius: 2px;
}
/* dropcap */
.dropcap {
  font-size: 45px;
  line-height: 45px;
  text-transform: uppercase;
  float: left;
  position: relative;
  margin-right: 5px;
}
hr{
  background-color: #f2f5f7;
  width: 100%;
  height: 1px;
}
/*
 * Google Map CSS
 */
.google-map,
.shortcode-google-map {
  height: 400px;
}
.google-map img,
.shortcode-google-map img {
  max-width: none !important;
}
/*
 * Google Map CSS End
 */
/* responsive design */
@media (max-width: 767px) {
  .canto-one-half,
  .canto-one-third,
  .canto-two-third,
  .canto-three-fourth,
  .canto-one-fourth,
  .canto-one-fifth,
  .canto-two-fifth,
  .canto-three-fifth,
  .canto-four-fifth,
  .canto-one-sixth,
  .canto-five-sixth {
    position: relative;
    margin-right: 0;
    margin-bottom: 2em;
    float: none;
    width: 100%;
  }
  .ui-tabs .ui-tabs-nav li {
    display: block;
    float: none;
  }
}