@charset "utf-8";
/* Common CSS */

*, *:before, *:after { 
  -webkit-box-sizing:border-box; 
	 -moz-box-sizing:border-box;
	      box-sizing:border-box; 
}
body { 
  margin:0; 
  padding:0; 
  font-family: 'Minion Pro';
  font-size:20px; 
  line-height:1.5; 
  color:#666667; 
}
input, button, select, textarea { 
  font-family:inherit; 
  font-size:inherit; 
  line-height:normal; 
  -webkit-appearance:none; 
     -moz-appearance:none;
	   -o-appearance:none;
		  appearance:none; 
}
:focus { 
  outline:none; 
}
a { 
  color:#394f94; 
  text-decoration:none; 
}
img { 
  vertical-align:middle; 
  border:none; 
  max-width:100%; 
  height:auto; 
}
hr { 
  margin:30px 0;
  border:0; 
  border-top:1px solid #d2d2d2; 
}
embed, iframe, object {	
  margin:0 0 20px; 
  max-width:100%; 
}
b, strong { 
  font-weight:700; 
}
h1, h2, h3, h4, h5, h6 { 
  margin:0 0 20px; 
  font-family:inherit;
  font-weight:normal; 
  line-height:1.5; 
  color:#666667;
  font-family: 'Bosis Std-Bold'; 
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { 
  color:inherit;
}
h1 { 
  font-size:30px; 
}
h2 { 
  font-size:24px;
}
h3 { 
  font-size:20px; 
}
h4 { 
  font-size:18px; 
}
h5 { 
  font-size:16px; 
}
h6 { 
  font-size:14px; 
}
p, ol, ul {
  margin:0; 
  margin-bottom:20px;
}
blockquote { 
  padding:20px; 
  margin:0 0 20px;
  background:#eee;
  color:#666667;
  font-size:24px; 
  font-weight:normal; 
  font-style:italic; 
  border-left:8px solid #394f94;
}
blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child { 
  margin-bottom:0; 
}
.row {
}
.row:before, .row:after { 
  content:""; 
  display:table; 
}
.row:after { 
  clear:both; 
}
.container { 
  width:1110px; 
  margin:0 auto; 
}
.container:before, .container:after { 
  content:""; 
  display:table; 
}
.container:after { 
  clear:both; 
}
input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]), select, textarea {
  display:block;
  width:100%;
  margin:0 0 15px;
  padding:12px 15px;
  background:#fff;
  color:#666667;
  border:1px solid #d2d2d2;
  border-radius:0;
  font-size:16px;
  font-weight:normal;
  resize:none;
}
select { 
  padding-right:40px; 
  background:url(../images/select.png) no-repeat center right 15px #fff; 
  border:none;
  width:90px;
}
button, input[type="button"], input[type="submit"], .btn {
  display:inline-block;
  max-width:100%;
  min-width:220px;
  margin:0;
  height: 43px;
  padding:11px 40px 9px 22px;
  background:url(../images/arrow-black.png) no-repeat center right 20px #FFF;
  color:#666667;
  border:1px solid #666667;
  border-radius:0;
  cursor:pointer;
  vertical-align:middle;
  line-height: 18px;
  text-align:left;
  font-size:18px;
  font-weight:normal;
  font-family: 'Bosis Std-Bold';
  -webkit-transition:all .2s ease-in-out;
     -moz-transition:all .2s ease-in-out;
	   -o-transition:all .2s ease-in-out;
	      transition:all .2s ease-in-out;
}
button:hover, button:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus, .btn:hover, .btn:focus {
  background:url(../images/arrow-white.png) no-repeat center right 20px #394f94;
  color:#fff;	
}
	
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */ color:#666667; opacity:1; /* Firefox */ }
:-ms-input-placeholder { /* Internet Explorer 10-11 */ color:#666667; }
::-ms-input-placeholder { /* Microsoft Edge */ color:#666667; }

::-moz-selection { background:#394f94; color:#fff; }
::selection { background:#394f94; color:#fff; }