/*#region global*/
body {
    margin: 0px;
    background-color: #483838;
    font-family: 'Microsoft JhengHei', 'Segoe UI', 'Trebuchet MS', 'Verdana';
    /* font-family: 'Microsoft JhengHei Light'; */
    color: #484848;
    font-size: 16px;
}
div {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
}
h1 {
    font-size: 40px;
    font-weight: normal;
    text-align: center;
}
h2 {
    font-size: 30px;
    font-weight: normal;
    margin:10px 0px 10px 0px;
}
img {
    max-width: 100%;
    height: auto;
}
a {
    color: #EE6983;
    text-decoration: none;
}
a:visited {
    color: #EE6983;
}
a:hover {
    color: #FFC4C4;
}
/*#endregion*/
/*#region wrapper layout*/
div.root {
    padding: 30px 5px 50px 5px;
}

div.pageBorder {
    box-shadow: 0px 0px 5px #000;
    width: 1500px;
    max-width: 100%;
    margin: auto;
    padding: 10px;
    background-color: #484848;
    color: #DDDDDD;
    /*
    border: solid 1px #000;
    */
}

div.page {
    width: 1200px;
    max-width: 100%;
    margin: auto;
}

div.clientArea {
}

div.menu {
    padding: 5px 15px 5px 15px;
    font-weight: bold;
    white-space: nowrap;
    display: inline-block
}
div.pageBorder {
}
/*#endregion*/

/*#region photo*/
div.photoStack{
    flex-shrink: 0;
    position: relative;
    width: 230px;
    height: 200px;
    margin: 10px;
    /*
    border: dotted 1px #FFF;
    */
}
div.photoStack:hover{
    transform: scale(1.1);
    z-index: 9999;
}
div.photoWrap{
    position: absolute;
    display: inline-block;
    width: 140px;
    height: 175px;
    background-color: #FFF;
    padding-top: 5px;
    text-align: center;
    font-size: 14px;
    color: #484848;
    box-shadow: 0px 0px 10px #000;
    /*
    cursor:pointer;
    */
}
img.photoImage{
    width: 128px;
    height: 128px;
    object-fit: cover;
    /*
    border-radius: 5px;
    */
}
div.photoLabel{
    height: 40px;
    width: 140px;
    padding: 0px 5px;
    vertical-align: middle;
    display: table-cell;
    text-align: center;
    overflow: hidden;
}
/*#endregion*/
/*#region album*/
div.albumWrap{
    width: 192px;
    margin: 10px;
    max-width: 40%;
    display: inline-block;
    vertical-align: top;
}
div.albumWrap:hover{
    transform: scale(1.1);
}
img.albumImage{
    position:absolute;
    left:0px;
    top:0px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #000;
    width: 100%;
    height:100%;
    object-fit: cover;
}
div.albumLabel{
    padding-top: 5px;
    text-align: center;
    font-size: 16px;
    color: #DDDDDD;
}
div.albumDesc{
    text-align: center;
    font-size: 14px;
    color: #AAA;
}
div.crumtailNode{
    vertical-align:middle;
    display: inline-block;
    white-space: nowrap;
    margin: 3px 0px;
}
div.crumbtailLabel{
    vertical-align:middle;
    display: inline-block;
    padding: 5px 10px;
    border: solid 1px #383838;
    background-color: #444;
    border-radius: 5px;
    font-size: 12px;
}
div.crumbtailLabel a{
    color: #DDDDDD;
}
div.crumbtailLabel:hover{
    background-color: #383838;
    /*
    border: solid 1px #000;
    */
}
div.crumbtailLabelSelected{
    vertical-align:middle;
    font-weight: bold;
    display: inline-block;
    padding: 5px 10px;
    border: solid 1px #DDDDDD;
    background-color: #383838;
    border-radius: 5px;
    font-size: 14px;
}
div.crumbtailArrow{
    vertical-align:middle;
    display: inline-block;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 8px;
}
/*#endregion*/