@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/OpenSans-Regular.ttf');
}

@font-face {
    font-family: 'Open Sans Bold';
    src: url('/fonts/OpenSans-Bold.ttf');
}


@font-face {
    font-family: 'Open Sans SemiBold';
    src: url('/fonts/OpenSans-SemiBold.ttf');
}

html {
    min-height: 100%;
    height: 100%;
    font-size: 100%;
}

body {
    min-width: 320px;
    min-height: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.25;
    color: #121212;
}

img, iframe {
    max-width: 100%;
    margin: 0 0 12px;
    border: 0;
}

h1, h2, h3, h4 {
    margin: 0 0 20px;
    padding: 0;
    line-height: 1.3;
    color: #222222;
    clear: both;
}

h1, h2 {
    font-size: 20px;
}

h3, h4 {
    font-size: 16px;
}

h1, h3 {
    font-family: 'Open Sans Bold', sans-serif;
}

h2, h4 {
    font-family: 'Open Sans SemiBold', sans-serif;
}

/*p+h2, p+h3, p+h4, ul+h2, ul+h3, ul+h4 {
    margin-top: 50px;
}*/

h1 a, h2 a, h3 a, h4 a {
    text-decoration: none;
    color: #222222;
    cursor: pointer;
}

p {
    margin: 0 0 15px;
}

a, a:hover {
    outline: none;
}

a {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    text-decoration: underline;
    color:#28274b;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

a:hover {
    text-decoration: none;
}

hr {
    margin: 25px 0;
    height: 4px;
    color: #e6e6e6;
    background-color: #e6e6e6;
    border-top: 1px solid #f8f8f8;
    border-bottom: 1px solid #f8f8f8;
}

ol {
    margin: 20px 0;
    padding: 0;
    list-style: none;
    counter-reset: item;
}

ol li {
    position: relative;
    margin-top: 13px;
    padding-left: 22px;
}

ol li:before {
    counter-increment: item;
    content: counter(item) ". ";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    padding: 0;
    font-family: 'Open Sans Bold', sans-serif;
}

ol ol, ul ul {
    margin: 0;
}

ul {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

ul li {
    margin-top: 13px;
    padding-left: 18px;
    background: url('/desimages/ul_li.png') left 7px no-repeat;
}

table {
    margin: 20px 0;
    border-collapse: collapse;
}

caption {
    padding-bottom: 7px;
    font-family: 'Open Sans Bold', sans-serif;
}

table tr:nth-of-type(odd) td {
    background: #edeef1;
}

table tr:nth-of-type(even) td {
    background: #ffffff;
}

table tr:last-child {
    border-bottom: 2px solid #c7c6c6;
}

table tr:hover {
   -webkit-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.3);
    position: relative;
    z-index: 999;
}

th, td {
    font-size: 14px;
    border: 1px solid #c7c6c6;
    border-top: none;
    border-bottom: none;
}

th {
    padding: 15px;
    font-weight: bold;
    color: #ffffff;
    background-color: #2454a9;
    border: none;
}

td {
    padding: 10px 15px;
    color: #222222;
}

blockquote {
    display: block;
    margin: 20px 0;
    padding: 15px;
    border-left: 10px solid #edeef1;
}

/*input[type="radio"], input[type="checkbox"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 0px 0 0 7px;
}

input[type="radio"] + label, input[type="checkbox"] + label {
  position: relative;
  padding: 0 0px 0 19px;
  cursor: pointer;
}

input[type="radio"] + label:before, input[type="checkbox"] + label:before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #d6d5d5;
  border-radius: 50%;
  background: #FFF;
}

input[type="checkbox"] + label:before {
    border-radius: 0;
}

input[type="radio"] + label:hover:before, input[type="checkbox"] + label:hover:before {
  background-color: #44428d;
}

input[type="radio"]:checked + label:before, input[type="checkbox"]:checked + label:before{
  background-color: #28274b;
  border-color: #d6d5d5;
}*/