/* Fonts */
@import url('https://fonts.googleapis.com/css?family=Lato|Noto+Sans+HK:400,700&display=swap');

/* Basic Styles
================================================== */
body {
	background-color: #E7E4D3;
	color: #454545;
	font: 16px/20px "Noto Sans HK", Arial, Helvetica, sans-serif;
	font-weight: 400;
	padding: 0;
	margin: 0;
}
#mainnav ul li a {
	font: 14px "Lato", Arial, Helvetica, sans-serif;
}

/* Type
================================================== */
h1, h2, h3, h4, h5, h6 {
	color: #454545;
	font-family: "Lato", Arial, Helvetica, sans-serif;
	font-weight: 400;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
h1 { font-size: 22px; line-height: 24px; }
h2 { font-size: 20px; line-height: 22px; }
h3 { font-size: 18px; line-height: 20px; }
h4 { font-size: 16px; line-height: 18px; }
h5 { font-size: 14px; line-height: 16px; }
h6 { font-size: 14px; line-height: 16px; }

p { margin: 0 0 15px 0; }
p img { margin: 0; }
p.lead { font-size: 21px; line-height: 27px; color: #FFF;  }

em { font-style: italic; }
strong { font-weight: 700; }
small { font-size: 80%; }

/*	Blockquote  */
blockquote, blockquote p {
	font-size: 14px;
	color: #F5F5F5;
	font-style: italic;
}
blockquote {
	border-left: none;
	border-bottom: 1px solid #C59E5C;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 19px;
	padding-right: 20px;
	padding-bottom: 19px;
	padding-left: 19px;
	quotes: none;
}
blockquote cite { display: block; font-size: 12px; color: #555; }
blockquote cite:before { content: "\2014 \0020"; }
blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #555; }

q {
	display: block;
	clear: both;
	color: #FFF; 
	quotes: none;
	font-weight: 600;
}

/* Links */
a {
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	-ms-transition: all 0.1s linear;
	transition: all 0.1s linear;
}
a:link, a:visited {
	color: #206BA4;
	text-decoration: none;
}
a:hover {
	color: #206BA4;
	text-decoration: underline;
}
p a, p a:visited { line-height: inherit; }

/* Lists */
ul, ol {
	list-style: none;
	padding: 0;
	margin: 0;
}
ul.square, ul.circle, ul.disc, ol.numeric { margin-left: 22px; margin-bottom: 20px; }
ul.square { list-style: square outside; }
ul.circle { list-style: circle outside; }
ul.disc { list-style: disc outside; }
ol.numeric { list-style: decimal-leading-zero outside; }

/* Images */
img.scale-with-grid {
	width: 100%;
	height: auto;
}

/* Buttons */
.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
	color: #444;
	background: #EBF1D3;
	border: none;
	display: inline-block;
	padding: 8px 10px;
	font-family: "Lato", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 400;
	min-width: 100px;
	text-decoration: none;
	cursor: pointer;
	line-height: normal;
	outline: none;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
	color: #FFF;
	background: #929F5F;
}
.button:active, button:active, input[type="submit"]:active, input[type="reset"]:active, input[type="button"]:active {
	color: #FFF;
	background: #F2F2F2;
}
.button.full-width, button.full-width, input[type="submit"].full-width, input[type="reset"].full-width, input[type="button"].full-width {
	width: 100%;
	padding-left: 0 !important;
	padding-right: 0 !important;
	text-align: center;
}
button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* Forms */
fieldset {
	margin-bottom: 10px;
}
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="search"], textarea, select {
	color: #777;
	background: #FFF;
	border: 2px solid #FFF;
	outline: none;
	display: inline-block;
	width: 100%;
	padding: 6px;
	font: 13px "Lato", Arial, Helvetica, sans-serif;
	font-weight: 400;
	margin-top: 0;
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 10px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
 	-moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
	box-shadow:  0 0 3px rgba(0,0,0,.2);
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="search"]:focus, textarea:focus {
	color: #444;
	border: 2px solid #929F5F;
}
input.frmerror, textarea.frmerror, select.frmerror {
	border: 2px solid #800000;
}
textarea {
	min-height: 80px;
	resize: vertical;
}
label, legend {
	display: block;
	font-size: 15px;
	margin-bottom: 5px;
}
input[type="checkbox"] {
	display: inline;
}
label span, legend span {
	font-weight: normal;
	font-size: 13px;
	color: #444;
}

/* Misc */
hr {
	border: solid #E5E5E5;
	border-width: 1px 0 0;
	clear: both;
	height: 0;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
}
.clear {
	display: block;
	clear: both;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

.capitals {
	text-transform: capitalize;
}
.uppercse {
	text-transform: uppercase;
}
.lowercse {
	text-transform: lowercase;
}

.remove-bottom { margin-bottom: 0 !important; }
.half-bottom { margin-bottom: 10px !important; }
.add-bottom { margin-bottom: 20px !important; }
.remove-top { margin-top: 0 !important; }
.half-top { margin-top: 10px !important; }
.add-top { margin-top: 20px !important; }
.add-left { margin-left: 10px !important; }
.remove-left { margin-left: 0 !important; }
.add-right { margin-right: 10px !important; }
.remove-right { margin-right: 0 !important; }
.remove-all { margin: 0 !important; }
.right-float { float: right; }
.left-float { float: left; }
.no-float { float: none; }
.right-align { text-align: right; }
.left-align { text-align: left; }
.center-align { text-align: center; }

/* No JS */
.js {
	display: none;
}
.nojs {
	display: block;
}

/* CMS */
.bold { font-weight: 700; }
.italic { font-style: italic; }
.underline { text-decoration: underline; }
