/* CT CSS Framework over Bootstrap */

/* SS Form */
input, textarea, select {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -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;
}
input:focus, textarea:focus, select:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
textarea{
  height: auto;
}
input[type=checkbox], input[type=radio]{
  background-color: transparent;
  border: none;
  width: auto;
}
.optionset,
.checkboxset{
  padding: 0;
}  
.checkboxset li,
.optionset li{
  list-style: none;
  margin: 0 20px 0 0;
  padding-top: 0;
}
.optionset li input,
.checkboxset li input{
  display: inline-block;
  margin: 0 5px 5px 0;
  vertical-align: middle;
  width: auto;
}

.Actions .action,
.Actions button,
.Actions .button{
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  width: auto;
  
  color: #333;
  background-color: #fff;
  border-color: #ccc;
  text-shadow: 0 1px 0 #fff;
  background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);
  background-image:      -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0));
  background-image:         linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #dbdbdb;
  border-color: #ccc;
}
.Actions .action:hover,
.Actions button:hover,
.Actions .button:hover{
  color: #333;
  text-decoration: none;    
  border-color: #adadad;
  background-color: #e0e0e0;
  background-position: 0 -15px;
}
.Actions .action:focus,
.Actions button:focus,
.Actions .button:focus{
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  background-color: #e0e0e0;
  border-color: #dbdbdb;
}
input.day, input.month, input.year{
  width: auto;
}
/* END SS Form */

/* CMS Content Image */
img.right{
  float: right;
  margin-left: 10px;
}
  img.left{
    float: left;
    margin-right: 10px;
  }
  img.leftAlone{
    float: left;
    margin-right: 100%;
  }
  img.center{
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
/* END CMS Content Image */  
  

/* SS Form Message */
.info{
  color: #337ab7;  
}
.success, .green{
  color: #3c763d;  
}
.warning, .notice{
  color: #8a6d3b;  
}
.required, .bad, .validation, .red, .error{
  color: #a94442;  
}
/* END SS Form Message */

/* CT Pagination */
.pagination > a {
  display: inline;
}
.pagination > a,
.pagination > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #412000;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > a:first-child{
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > a:last-child{
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > a:hover,
.pagination > a:focus{
  color: #FFF;
  background-color: #009681;
  border-color: #037c6a;
}
.pagination > a.active,
.pagination > a.active:hover,
.pagination > a.active:focus{
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #009681;
  border-color: #037c6a;
}
/* END CT Pagination */

.clear{
  clear: both;
  float: none;
}