/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}


/*-------------------------- my code ---------------------------------------*/

html{
	background-color: #e6e6e6;
	font-weight: 300;
	font-family: 'Noto Sans HK', sans-serif;
}

body{
	background-color: #ddd;
	margin-top: 62px;
}

.desktopHeader {
	width: 99.9%;
	border: 1px solid #636e72;
	height: 60px;
	background-color: #ffffff;
	position: absolute;
	top: 0px;
	left: 0px;
	border: 1px solid #636e72;

}


.logo{
	width: 60px;
	margin: 5px;
	margin-left: 10px;
	border: 1px solid #636e72;
}
.mobileLogo{
	display: none;
}

header ul{
	width: 350px;
	position: absolute;
	top: 10px;
	left: 70px;
	display: flex;
	flex-flow: row norap;
	align-items: center;
	justify-content: space-evenly;
	padding-left: 0px;
}

header li{
	list-style-type: none;
	border: 1px solid #636e72;
	padding: 10px;
	background-color: #bfbfbf;
}

header li:hover {
	background-color: #666666;
}

header a{
	text-decoration: none;
	color: black;
/*	display: inline-block;*/
}

.wrapper-main{
	/*text-align: center;*/
	background-color: #ffffff;
	width: 70%;
	margin-left: 15%;
}

.wrapper-main h1{
    padding-left: 10px;
    padding-top: 10px;
    font-size: 20px;
    font-weight: bolder;
}

.wrapper-main h2{
    padding-bottom: 7px;
    padding-left: 10px;
    font-weight: 400;
}

.wrapper-main p{
    padding-left: 10px;
    padding-bottom: 7px;
    display: inline-block;
    line-height: 20px;
}

.wrapper-main ul {
    /*used in gallery*/
    list-style-position: inside;
}

.wrapper-main ul li{
    /*used in gallery*/
    margin-bottom: 7px;
}

body #img-main-div {
	display: flex;
    justify-content: center;
}

.img-main {
    width: 70%;
    margin: 10px;
    max-width: 500px;
}

body ul{
    margin-left: 15px;
}













/*Gallery*/

.galleryPhoto{
	background-repeat: no-repeat;
	border: 0 solid #636e72;
	width: 100%;
	background-size: contain;
	padding: 0px;
	margin-top: -3px;
	background-position: left bottom;
}

.galleryVideo{
	background-repeat: no-repeat;
	border: 0 solid #636e72;
	width: 100%;
	background-size: contain;
	padding: 0px;
	margin-top: -3px;
	background-position: left bottom;
	min-height: 300px;
}


.galleryEntryContainer{
	width: 32%;
	margin-top: 8px;
	word-wrap: break-word;
}


.galleryEntryContainer p{
    line-height: 1.15;
    font-size: 16.5px;
}

.galleryPhotoContainerLarge{
	display: flex;
	flex-flow: row wrap;
	width: 99.9%;
	justify-content: space-evenly;
	flex-direction: reverse;

}

.galleryPhotoContainerLarge a{
	text-decoration: none;
	color: black;
	width: 100%;
}

.galleryPhotoContainerLarge h3{
	margin-top: 5px;
	margin-bottom: 4px;
	font-size: 20px;
}

.galleryPhotoContainerLarge p{
	margin-bottom: 15px;
}



@media screen and (max-width: 1200px) {

.galleryEntryContainer{
	width: 48%;
}
}


@media screen and (max-width: 800px) {

.galleryEntryContainer{
	width: 98%;
}
}

