/**
 * @file
 * Overall specifications for V1p.
 */

html {
  height: 100%;
}
body {
  min-height: 100%;
  line-height: 28px;
  word-wrap: break-word;
  font-family: 'Istok Web', sans-serif; 
  font-weight: normal;
  font-style: normal;
  margin: 0;
  color: #191d31;
  font-size: 20px;
}
a{
  text-decoration: none;
  color: #a18400;
  font-weight: 700;
}
a:hover,
a:active,
a:focus,
.link:hover,
.link:active,
.link:focus {
  text-decoration: none;
  color: #191d31;
}
a img{
    border: 0px;
}
/**
 * Reusable heading classes are included to help modules change the styling of
 * headings on a page without affecting accessibility.
 */
h1{
  font-weight: normal;
  font-size: 40px;
  line-height: 1em;
  margin: 0 0 10px;
  font-weight: 700;
  color: #fff;
}
h2 {
  margin: 0 0 10px;
  font-size: 45px;
  line-height: 1em;
  font-weight: 700;
  color: #a18400;
}
h3 {
  margin: 0 0 20px;
  font-weight: inherit;
  font-size: 33px;
  line-height: 30px;
  font-weight: 700;
}
h4 {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}
p {
  margin: 0;
}
.main-content p {
  margin: 0 0 1.2em;
}

blockquote {
  background: #f7f7f7;
  border-left: 1px solid #bbb; /* LTR */
  font-style: italic;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
}
[dir="rtl"] blockquote {
  border-left: none;
  border-right: 1px solid #bbb;
}
blockquote:before {
  color: #bbb;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em; /* LTR */
  vertical-align: -0.4em;
}
[dir="rtl"] blockquote:before {
  content: "\201D";
  margin-left: 0.2em;
  margin-right: 0;
}
blockquote:after {
  color: #bbb;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
}
[dir="rtl"] blockquote:after {
  content: "\201C";
}
blockquote > p:first-child {
  display: inline;
}
img {
  max-width: 100%;
  height: auto;
  width: 100%;
}
ul, ol {
  margin: 0;
  padding: 0; /* LTR */
}
[dir="rtl"] ul,
[dir="rtl"] ol {
  padding: 0 1em 0.25em 0;
}
ol ol,
ul ul {
  margin: 0;
  padding: 0 0 0.25em 1em; /* LTR */
}
[dir="rtl"] ol ol,
[dir="rtl"] ul ul {
  padding: 0 1em 0.25em 0;
}
ul.plain{
	padding:0;
	list-style: none;
}
/* resets */
*,
*:before,
*:after {
  box-sizing: border-box;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
*:focus {
    outline: none;
}
table {
   border-spacing: 0;
}
/* Form Elements */
textarea,
input { 
    width: 100%;
    padding: 10px 15px;
    border: none;
    font-size: 18px;
    font-family: 'Istok Web', sans-serif; 
}
input[type="text"]{
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius:0px;
}
a.action-link,
input[type="submit"]{
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius:0px;
    background: #191d31;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700; 
    width: auto;
}
a.action-link:hover,
input[type="submit"]:hover {
    background: #a18400;
}
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder { color: #999999; }
::-moz-placeholder { /* Firefox 19+ */
  color: #999999;
}
:-ms-input-placeholder { /* IE 10+ */
 color: #999999;
}
:-moz-placeholder { /* Firefox 18- */
 color: #999999;
}
a.action-link {
    padding: 10px 30px;
    font-size: 16px;
    display: inline-block;
}
.noscroll {
    overflow: hidden;
}
@media all and ( max-width: 800px ) {
    body{ 
	font-size: 17px; 
	line-height: 26px;
    }
    h1 {
	font-size: 28px; 
	line-height: 26px;		
    }	
    h2 {
	font-size: 32px; 
	line-height: 30px;		
    }	
    h3 {
	font-size: 18px; 
	line-height: 25px;		
    }
    a.action-link {font-size: 13px;}
}