
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_1c20571e91479c3645774462.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b5452feaf76459074b9b9869.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ea8928a887eff09f6af177e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.188000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4acb6cd6b7ecf6319a14f093.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b9cf5840f232579f0a9db998.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_79e7267426cacd53eb333672.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8cf9f5390483abb4bf1f9071.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d986fc93abe700208d1f2e5f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.107910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f844c896b099961bc8558f77.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.107910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_28f63709327cbeaae5f4f44a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b9ded2b1da08609ce4106895.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.107910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c77de124452fafca73b3e449.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.878906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f72ed25fc0fe45551848c086.woff2')format("woff");}.fff{font-family:fff;line-height:1.022949;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_05ab11d4986596b14cd5898e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ee0882efe2599d9bdc3d82e9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f5303f878f8308575874b3eb.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.230000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.383311px;}
.v1{vertical-align:4.080539px;}
.v3{vertical-align:12.242074px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000006px;}
.ls13{letter-spacing:0.000012px;}
.ls3{letter-spacing:0.000066px;}
.ls4{letter-spacing:0.000186px;}
.ls12{letter-spacing:0.148244px;}
.ls16{letter-spacing:0.283090px;}
.ls15{letter-spacing:1.477657px;}
.ls1{letter-spacing:1.778178px;}
.ls14{letter-spacing:11.802124px;}
.ls2{letter-spacing:19.038201px;}
.ls10{letter-spacing:21.217686px;}
.ls6{letter-spacing:21.217746px;}
.lsd{letter-spacing:21.217866px;}
.ls11{letter-spacing:21.260346px;}
.lse{letter-spacing:21.260526px;}
.lsf{letter-spacing:21.260706px;}
.ls7{letter-spacing:21.260766px;}
.ls8{letter-spacing:21.260826px;}
.lsa{letter-spacing:21.260886px;}
.lsc{letter-spacing:21.260946px;}
.ls9{letter-spacing:67.957026px;}
.lsb{letter-spacing:67.957146px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-38.256000px;}
.wse{word-spacing:-38.255400px;}
.ws9{word-spacing:-24.230394px;}
.wsf{word-spacing:-21.538128px;}
.wsb{word-spacing:-21.270336px;}
.ws5{word-spacing:-14.011436px;}
.ws8{word-spacing:-13.437589px;}
.ws6{word-spacing:-12.610134px;}
.ws1{word-spacing:-12.375441px;}
.wsa{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.208832px;}
.ws3{word-spacing:-10.759500px;}
.wsd{word-spacing:-9.563850px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:1.484811px;}
.ws4{word-spacing:15.842965px;}
._3{margin-left:-17.343592px;}
._d{margin-left:-12.652422px;}
._b{margin-left:-4.524663px;}
._a{margin-left:-3.403891px;}
._4{margin-left:-1.626836px;}
._2{width:1.283088px;}
._1{width:2.363418px;}
._0{width:3.365065px;}
._7{width:4.553420px;}
._6{width:5.844560px;}
._5{width:7.036713px;}
._e{width:8.472020px;}
._9{width:9.795449px;}
._8{width:11.297475px;}
._10{width:12.801575px;}
._c{width:20.318240px;}
._f{width:29.854401px;}
.fc2{color:rgb(12,118,159);}
.fc1{color:rgb(33,150,209);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:26.761800px;}
.fs9{font-size:38.255400px;}
.fse{font-size:38.256000px;}
.fsa{font-size:41.842200px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:42.237000px;}
.fsb{font-size:43.038000px;}
.fsc{font-size:47.820600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:63.362400px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:80.697000px;}
.fsd{font-size:83.685000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y95{bottom:53.099940px;}
.y5{bottom:66.525004px;}
.y57{bottom:81.675015px;}
.yec{bottom:84.194931px;}
.y92{bottom:84.198034px;}
.yc2{bottom:84.282915px;}
.y56{bottom:96.030030px;}
.yeb{bottom:96.100012px;}
.y4{bottom:97.125005px;}
.y91{bottom:99.844934px;}
.yc1{bottom:100.015892px;}
.y55{bottom:108.015015px;}
.yea{bottom:108.090210px;}
.y90{bottom:115.577911px;}
.yc0{bottom:115.662793px;}
.ye9{bottom:119.995291px;}
.y53{bottom:122.456736px;}
.y8f{bottom:131.224812px;}
.ybf{bottom:131.394575px;}
.ye8{bottom:131.986446px;}
.y52{bottom:136.828200px;}
.y21{bottom:139.264499px;}
.ye7{bottom:143.891527px;}
.y8e{bottom:146.956593px;}
.ybe{bottom:147.041475px;}
.ye6{bottom:155.881725px;}
.y8d{bottom:162.603494px;}
.ybd{bottom:162.774452px;}
.ye5{bottom:167.871924px;}
.y4e{bottom:168.208036px;}
.y8c{bottom:178.336471px;}
.ybc{bottom:178.421353px;}
.ye4{bottom:179.777961px;}
.y4d{bottom:182.494500px;}
.ye3{bottom:191.768160px;}
.y8b{bottom:193.983371px;}
.ybb{bottom:194.153135px;}
.y18{bottom:196.933500px;}
.ye2{bottom:203.673240px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y8a{bottom:209.715153px;}
.yba{bottom:209.800035px;}
.ye1{bottom:215.664395px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y89{bottom:225.362054px;}
.yb9{bottom:225.533012px;}
.ye0{bottom:227.654594px;}
.y4c{bottom:231.904198px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.ydf{bottom:239.559674px;}
.y88{bottom:241.095031px;}
.yb8{bottom:241.179913px;}
.y4b{bottom:247.635980px;}
.yde{bottom:251.549873px;}
.y87{bottom:256.741931px;}
.yb7{bottom:256.911695px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y4a{bottom:263.284076px;}
.ydd{bottom:263.455910px;}
.y86{bottom:272.473713px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yb6{bottom:272.558595px;}
.ydc{bottom:275.446109px;}
.y49{bottom:279.015858px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.ydb{bottom:287.436308px;}
.y85{bottom:288.120614px;}
.yb5{bottom:288.290377px;}
.y48{bottom:294.662758px;}
.yda{bottom:299.341388px;}
.y84{bottom:303.853591px;}
.yb4{bottom:303.938473px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y47{bottom:310.394540px;}
.yd9{bottom:311.332543px;}
.y83{bottom:319.500491px;}
.yb3{bottom:319.670254px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yd8{bottom:323.237624px;}
.y46{bottom:326.042636px;}
.yd7{bottom:335.227822px;}
.y82{bottom:335.232273px;}
.yb2{bottom:335.317155px;}
.y45{bottom:341.774417px;}
.yd6{bottom:347.132903px;}
.yf{bottom:348.133500px;}
.y81{bottom:350.879174px;}
.yb1{bottom:351.048937px;}
.y44{bottom:357.421318px;}
.yd5{bottom:359.124058px;}
.y80{bottom:366.610955px;}
.yb0{bottom:366.697032px;}
.yd4{bottom:371.114257px;}
.y7f{bottom:382.259051px;}
.yaf{bottom:382.428814px;}
.yd3{bottom:383.019337px;}
.ye{bottom:386.785499px;}
.y43{bottom:388.800000px;}
.yd2{bottom:395.010492px;}
.y7e{bottom:397.990833px;}
.yae{bottom:398.075715px;}
.yd1{bottom:406.915573px;}
.yd{bottom:408.044999px;}
.y7d{bottom:413.637733px;}
.yad{bottom:413.807497px;}
.yd0{bottom:418.905772px;}
.y7c{bottom:429.369515px;}
.yac{bottom:429.455592px;}
.ycf{bottom:430.895970px;}
.yce{bottom:442.802007px;}
.y42{bottom:444.588038px;}
.y7b{bottom:445.017611px;}
.yab{bottom:445.187374px;}
.ycd{bottom:454.792206px;}
.y41{bottom:458.959502px;}
.y7a{bottom:460.749393px;}
.yaa{bottom:460.834275px;}
.ycc{bottom:466.697286px;}
.y40{bottom:473.330966px;}
.y79{bottom:476.396293px;}
.ya9{bottom:476.566057px;}
.ycb{bottom:478.687485px;}
.y3f{bottom:487.617430px;}
.yca{bottom:490.593522px;}
.y78{bottom:492.128075px;}
.ya8{bottom:492.212957px;}
.y3e{bottom:501.988894px;}
.yc9{bottom:502.583721px;}
.yc{bottom:502.864502px;}
.y77{bottom:507.774976px;}
.ya7{bottom:507.945934px;}
.yc8{bottom:514.573920px;}
.y3d{bottom:516.360359px;}
.yb{bottom:520.864502px;}
.y76{bottom:523.507953px;}
.ya6{bottom:523.592835px;}
.yc7{bottom:526.479000px;}
.y3c{bottom:530.646823px;}
.ya{bottom:538.864499px;}
.ya5{bottom:539.154853px;}
.y98{bottom:539.324616px;}
.y3b{bottom:545.018287px;}
.yc6{bottom:554.036624px;}
.y75{bottom:554.886635px;}
.y97{bottom:554.971517px;}
.y9{bottom:556.864499px;}
.y3a{bottom:559.389751px;}
.ya4{bottom:570.619613px;}
.y96{bottom:570.704494px;}
.y39{bottom:573.676215px;}
.y32{bottom:584.136419px;}
.yc5{bottom:585.840910px;}
.ya3{bottom:586.266513px;}
.y74{bottom:586.351394px;}
.y38{bottom:588.047679px;}
.y31{bottom:597.062919px;}
.yc4{bottom:601.572691px;}
.ya2{bottom:601.998295px;}
.y73{bottom:602.083176px;}
.y37{bottom:602.419143px;}
.y30{bottom:609.903344px;}
.y36{bottom:616.790608px;}
.ya1{bottom:617.645195px;}
.y72{bottom:617.730077px;}
.y2f{bottom:622.743769px;}
.y35{bottom:631.077072px;}
.yc3{bottom:632.952569px;}
.ya0{bottom:633.376977px;}
.y71{bottom:633.463054px;}
.y2e{bottom:635.585150px;}
.y34{bottom:645.448536px;}
.y8{bottom:645.510000px;}
.y2d{bottom:648.425575px;}
.y9f{bottom:649.025073px;}
.y70{bottom:649.194836px;}
.y33{bottom:659.820000px;}
.y2c{bottom:661.266000px;}
.y9e{bottom:664.756855px;}
.y6f{bottom:664.841736px;}
.y7{bottom:666.771000px;}
.y9d{bottom:680.403755px;}
.y6e{bottom:680.573518px;}
.y2b{bottom:689.074500px;}
.y9c{bottom:696.135537px;}
.y6d{bottom:696.221614px;}
.y9b{bottom:711.783633px;}
.y6c{bottom:711.953396px;}
.y6{bottom:726.298500px;}
.y6b{bottom:727.600296px;}
.y2a{bottom:738.567000px;}
.y106{bottom:740.441174px;}
.y29{bottom:742.818000px;}
.y9a{bottom:743.162315px;}
.y6a{bottom:743.332078px;}
.y28{bottom:751.408075px;}
.y105{bottom:752.346255px;}
.y3{bottom:752.599495px;}
.y69{bottom:758.978978px;}
.y27{bottom:764.248500px;}
.y104{bottom:764.337410px;}
.y26{bottom:768.501000px;}
.y99{bottom:774.542193px;}
.y68{bottom:774.711956px;}
.y103{bottom:776.327609px;}
.y102{bottom:788.232689px;}
.y24{bottom:788.910000px;}
.y67{bottom:790.358856px;}
.y25{bottom:795.969000px;}
.y101{bottom:800.222888px;}
.y66{bottom:806.090638px;}
.y100{bottom:812.128925px;}
.y65{bottom:821.737538px;}
.yff{bottom:824.119124px;}
.y23{bottom:826.412716px;}
.yfe{bottom:836.109322px;}
.y64{bottom:837.470516px;}
.yfd{bottom:848.014403px;}
.y22{bottom:852.264000px;}
.y63{bottom:853.117416px;}
.yfc{bottom:860.005558px;}
.y62{bottom:868.849198px;}
.yfb{bottom:871.910638px;}
.y2{bottom:879.369000px;}
.yfa{bottom:883.900837px;}
.y61{bottom:884.496098px;}
.yf9{bottom:895.806874px;}
.y60{bottom:900.229076px;}
.yf8{bottom:907.797073px;}
.y5f{bottom:915.875976px;}
.yf7{bottom:919.787272px;}
.y51{bottom:931.096500px;}
.y5e{bottom:931.607758px;}
.yf6{bottom:931.692352px;}
.yf5{bottom:943.683507px;}
.y5d{bottom:947.254658px;}
.yf4{bottom:955.588588px;}
.y5c{bottom:962.987636px;}
.y1{bottom:966.726000px;}
.yf3{bottom:967.578786px;}
.y50{bottom:971.490000px;}
.y5b{bottom:978.634536px;}
.yf2{bottom:979.568985px;}
.yf1{bottom:991.475022px;}
.y5a{bottom:994.366318px;}
.yf0{bottom:1003.465221px;}
.y59{bottom:1010.013218px;}
.y4f{bottom:1014.009000px;}
.yef{bottom:1015.370301px;}
.y58{bottom:1025.745000px;}
.yee{bottom:1027.360500px;}
.y54{bottom:1054.634955px;}
.yed{bottom:1055.077771px;}
.y107{bottom:1055.082276px;}
.y93{bottom:1055.083500px;}
.y94{bottom:1055.100030px;}
.hf{height:23.521113px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h10{height:33.622910px;}
.h16{height:33.623438px;}
.h15{height:34.478653px;}
.h11{height:36.775371px;}
.he{height:37.122363px;}
.h12{height:37.826367px;}
.h13{height:42.029824px;}
.h17{height:45.620852px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h2{height:55.152000px;}
.hd{height:55.689609px;}
.hc{height:70.925098px;}
.h14{height:73.551270px;}
.h5{height:78.132000px;}
.h4{height:119.055004px;}
.hb{height:1113.750000px;}
.ha{height:1114.015500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:816.378000px;}
.w4{width:816.750000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:58.507050px;}
.xc{left:64.800000px;}
.x12{left:66.075450px;}
.x25{left:74.833498px;}
.x11{left:76.449339px;}
.x20{left:83.422778px;}
.x18{left:86.143707px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x6{left:139.037492px;}
.x1d{left:140.483514px;}
.x21{left:141.504299px;}
.x19{left:147.456593px;}
.x7{left:163.446000px;}
.x24{left:170.587721px;}
.xd{left:173.308573px;}
.x26{left:176.879778px;}
.xe{left:189.976451px;}
.x8{left:192.613500px;}
.x14{left:194.910000px;}
.x4{left:203.484001px;}
.x9{left:213.361518px;}
.x16{left:249.450000px;}
.x15{left:258.859500px;}
.xf{left:296.617500px;}
.xa{left:304.098059px;}
.x22{left:305.799143px;}
.x10{left:308.607887px;}
.xb{left:329.782500px;}
.x1e{left:338.453624px;}
.x23{left:377.911412px;}
.x28{left:402.570000px;}
.x1b{left:405.254970px;}
.x13{left:445.601749px;}
.x3{left:454.959000px;}
.x1a{left:490.140015px;}
.x1c{left:515.163892px;}
.x27{left:535.997563px;}
.x17{left:690.683427px;}
.x1f{left:729.120430px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.118499pt;}
.v1{vertical-align:3.627145pt;}
.v3{vertical-align:10.881843pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000005pt;}
.ls13{letter-spacing:0.000011pt;}
.ls3{letter-spacing:0.000059pt;}
.ls4{letter-spacing:0.000165pt;}
.ls12{letter-spacing:0.131772pt;}
.ls16{letter-spacing:0.251636pt;}
.ls15{letter-spacing:1.313472pt;}
.ls1{letter-spacing:1.580602pt;}
.ls14{letter-spacing:10.490777pt;}
.ls2{letter-spacing:16.922845pt;}
.ls10{letter-spacing:18.860165pt;}
.ls6{letter-spacing:18.860219pt;}
.lsd{letter-spacing:18.860325pt;}
.ls11{letter-spacing:18.898085pt;}
.lse{letter-spacing:18.898245pt;}
.lsf{letter-spacing:18.898405pt;}
.ls7{letter-spacing:18.898459pt;}
.ls8{letter-spacing:18.898512pt;}
.lsa{letter-spacing:18.898565pt;}
.lsc{letter-spacing:18.898619pt;}
.ls9{letter-spacing:60.406245pt;}
.lsb{letter-spacing:60.406352pt;}
.wsc{word-spacing:-34.005333pt;}
.wse{word-spacing:-34.004800pt;}
.ws9{word-spacing:-21.538128pt;}
.wsf{word-spacing:-19.145003pt;}
.wsb{word-spacing:-18.906965pt;}
.ws5{word-spacing:-12.454610pt;}
.ws8{word-spacing:-11.944523pt;}
.ws6{word-spacing:-11.209008pt;}
.ws1{word-spacing:-11.000392pt;}
.wsa{word-spacing:-10.626800pt;}
.ws2{word-spacing:-9.963406pt;}
.ws3{word-spacing:-9.564000pt;}
.wsd{word-spacing:-8.501200pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:1.319832pt;}
.ws4{word-spacing:14.082635pt;}
._3{margin-left:-15.416526pt;}
._d{margin-left:-11.246597pt;}
._b{margin-left:-4.021922pt;}
._a{margin-left:-3.025681pt;}
._4{margin-left:-1.446077pt;}
._2{width:1.140523pt;}
._1{width:2.100816pt;}
._0{width:2.991169pt;}
._7{width:4.047485pt;}
._6{width:5.195165pt;}
._5{width:6.254856pt;}
._e{width:7.530685pt;}
._9{width:8.707066pt;}
._8{width:10.042200pt;}
._10{width:11.379177pt;}
._c{width:18.060658pt;}
._f{width:26.537245pt;}
.fs8{font-size:23.788267pt;}
.fs9{font-size:34.004800pt;}
.fse{font-size:34.005333pt;}
.fsa{font-size:37.193067pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:37.544000pt;}
.fsb{font-size:38.256000pt;}
.fsc{font-size:42.507200pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:56.322133pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:71.730667pt;}
.fsd{font-size:74.386667pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:47.199947pt;}
.y5{bottom:59.133337pt;}
.y57{bottom:72.600013pt;}
.yec{bottom:74.839939pt;}
.y92{bottom:74.842696pt;}
.yc2{bottom:74.918147pt;}
.y56{bottom:85.360027pt;}
.yeb{bottom:85.422233pt;}
.y4{bottom:86.333337pt;}
.y91{bottom:88.751052pt;}
.yc1{bottom:88.903016pt;}
.y55{bottom:96.013347pt;}
.yea{bottom:96.080187pt;}
.y90{bottom:102.735921pt;}
.yc0{bottom:102.811371pt;}
.ye9{bottom:106.662481pt;}
.y53{bottom:108.850432pt;}
.y8f{bottom:116.644277pt;}
.ybf{bottom:116.795177pt;}
.ye8{bottom:117.321285pt;}
.y52{bottom:121.625067pt;}
.y21{bottom:123.790666pt;}
.ye7{bottom:127.903579pt;}
.y8e{bottom:130.628083pt;}
.ybe{bottom:130.703533pt;}
.ye6{bottom:138.561534pt;}
.y8d{bottom:144.536439pt;}
.ybd{bottom:144.688402pt;}
.ye5{bottom:149.219488pt;}
.y4e{bottom:149.518254pt;}
.y8c{bottom:158.521308pt;}
.ybc{bottom:158.596758pt;}
.ye4{bottom:159.802632pt;}
.y4d{bottom:162.217333pt;}
.ye3{bottom:170.460586pt;}
.y8b{bottom:172.429664pt;}
.ybb{bottom:172.580564pt;}
.y18{bottom:175.052000pt;}
.ye2{bottom:181.042880pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y8a{bottom:186.413470pt;}
.yba{bottom:186.488920pt;}
.ye1{bottom:191.701685pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y89{bottom:200.321825pt;}
.yb9{bottom:200.473789pt;}
.ye0{bottom:202.359639pt;}
.y4c{bottom:206.137065pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.ydf{bottom:212.941933pt;}
.y88{bottom:214.306694pt;}
.yb8{bottom:214.382145pt;}
.y4b{bottom:220.120871pt;}
.yde{bottom:223.599887pt;}
.y87{bottom:228.215050pt;}
.yb7{bottom:228.365951pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y4a{bottom:234.030289pt;}
.ydd{bottom:234.183031pt;}
.y86{bottom:242.198856pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yb6{bottom:242.274307pt;}
.ydc{bottom:244.840986pt;}
.y49{bottom:248.014096pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.ydb{bottom:255.498940pt;}
.y85{bottom:256.107212pt;}
.yb5{bottom:256.258113pt;}
.y48{bottom:261.922451pt;}
.yda{bottom:266.081234pt;}
.y84{bottom:270.092081pt;}
.yb4{bottom:270.167531pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y47{bottom:275.906258pt;}
.yd9{bottom:276.740038pt;}
.y83{bottom:284.000437pt;}
.yb3{bottom:284.151337pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yd8{bottom:287.322332pt;}
.y46{bottom:289.815676pt;}
.yd7{bottom:297.980287pt;}
.y82{bottom:297.984243pt;}
.yb2{bottom:298.059693pt;}
.y45{bottom:303.799482pt;}
.yd6{bottom:308.562580pt;}
.yf{bottom:309.452000pt;}
.y81{bottom:311.892599pt;}
.yb1{bottom:312.043499pt;}
.y44{bottom:317.707838pt;}
.yd5{bottom:319.221385pt;}
.y80{bottom:325.876405pt;}
.yb0{bottom:325.952918pt;}
.yd4{bottom:329.879339pt;}
.y7f{bottom:339.785823pt;}
.yaf{bottom:339.936724pt;}
.yd3{bottom:340.461633pt;}
.ye{bottom:343.809333pt;}
.y43{bottom:345.600000pt;}
.yd2{bottom:351.120438pt;}
.y7e{bottom:353.769629pt;}
.yae{bottom:353.845080pt;}
.yd1{bottom:361.702731pt;}
.yd{bottom:362.706666pt;}
.y7d{bottom:367.677985pt;}
.yad{bottom:367.828886pt;}
.yd0{bottom:372.360686pt;}
.y7c{bottom:381.661791pt;}
.yac{bottom:381.738304pt;}
.ycf{bottom:383.018640pt;}
.yce{bottom:393.601784pt;}
.y42{bottom:395.189367pt;}
.y7b{bottom:395.571210pt;}
.yab{bottom:395.722110pt;}
.ycd{bottom:404.259739pt;}
.y41{bottom:407.964002pt;}
.y7a{bottom:409.555016pt;}
.yaa{bottom:409.630466pt;}
.ycc{bottom:414.842032pt;}
.y40{bottom:420.738637pt;}
.y79{bottom:423.463372pt;}
.ya9{bottom:423.614272pt;}
.ycb{bottom:425.499987pt;}
.y3f{bottom:433.437716pt;}
.yca{bottom:436.083131pt;}
.y78{bottom:437.447178pt;}
.ya8{bottom:437.522628pt;}
.y3e{bottom:446.212351pt;}
.yc9{bottom:446.741085pt;}
.yc{bottom:446.990669pt;}
.y77{bottom:451.355534pt;}
.ya7{bottom:451.507497pt;}
.yc8{bottom:457.399040pt;}
.y3d{bottom:458.986985pt;}
.yb{bottom:462.990669pt;}
.y76{bottom:465.340403pt;}
.ya6{bottom:465.415853pt;}
.yc7{bottom:467.981333pt;}
.y3c{bottom:471.686065pt;}
.ya{bottom:478.990666pt;}
.ya5{bottom:479.248758pt;}
.y98{bottom:479.399659pt;}
.y3b{bottom:484.460699pt;}
.yc6{bottom:492.476999pt;}
.y75{bottom:493.232565pt;}
.y97{bottom:493.308015pt;}
.y9{bottom:494.990666pt;}
.y3a{bottom:497.235334pt;}
.ya4{bottom:507.217433pt;}
.y96{bottom:507.292884pt;}
.y39{bottom:509.934413pt;}
.y32{bottom:519.232372pt;}
.yc5{bottom:520.747475pt;}
.ya3{bottom:521.125789pt;}
.y74{bottom:521.201240pt;}
.y38{bottom:522.709048pt;}
.y31{bottom:530.722594pt;}
.yc4{bottom:534.731281pt;}
.ya2{bottom:535.109595pt;}
.y73{bottom:535.185046pt;}
.y37{bottom:535.483683pt;}
.y30{bottom:542.136305pt;}
.y36{bottom:548.258318pt;}
.ya1{bottom:549.017951pt;}
.y72{bottom:549.093401pt;}
.y2f{bottom:553.550017pt;}
.y35{bottom:560.957397pt;}
.yc3{bottom:562.624506pt;}
.ya0{bottom:563.001757pt;}
.y71{bottom:563.078270pt;}
.y2e{bottom:564.964578pt;}
.y34{bottom:573.732032pt;}
.y8{bottom:573.786667pt;}
.y2d{bottom:576.378289pt;}
.y9f{bottom:576.911176pt;}
.y70{bottom:577.062076pt;}
.y33{bottom:586.506667pt;}
.y2c{bottom:587.792000pt;}
.y9e{bottom:590.894982pt;}
.y6f{bottom:590.970432pt;}
.y7{bottom:592.685334pt;}
.y9d{bottom:604.803338pt;}
.y6e{bottom:604.954238pt;}
.y2b{bottom:612.510667pt;}
.y9c{bottom:618.787144pt;}
.y6d{bottom:618.863657pt;}
.y9b{bottom:632.696562pt;}
.y6c{bottom:632.847463pt;}
.y6{bottom:645.598667pt;}
.y6b{bottom:646.755819pt;}
.y2a{bottom:656.504000pt;}
.y106{bottom:658.169933pt;}
.y29{bottom:660.282667pt;}
.y9a{bottom:660.588724pt;}
.y6a{bottom:660.739625pt;}
.y28{bottom:667.918289pt;}
.y105{bottom:668.752227pt;}
.y3{bottom:668.977329pt;}
.y69{bottom:674.647981pt;}
.y27{bottom:679.332000pt;}
.y104{bottom:679.411031pt;}
.y26{bottom:683.112000pt;}
.y99{bottom:688.481949pt;}
.y68{bottom:688.632850pt;}
.y103{bottom:690.068986pt;}
.y102{bottom:700.651279pt;}
.y24{bottom:701.253333pt;}
.y67{bottom:702.541205pt;}
.y25{bottom:707.528000pt;}
.y101{bottom:711.309234pt;}
.y66{bottom:716.525012pt;}
.y100{bottom:721.892378pt;}
.y65{bottom:730.433367pt;}
.yff{bottom:732.550332pt;}
.y23{bottom:734.589081pt;}
.yfe{bottom:743.208287pt;}
.y64{bottom:744.418236pt;}
.yfd{bottom:753.790580pt;}
.y22{bottom:757.568000pt;}
.y63{bottom:758.326592pt;}
.yfc{bottom:764.449385pt;}
.y62{bottom:772.310398pt;}
.yfb{bottom:775.031679pt;}
.y2{bottom:781.661334pt;}
.yfa{bottom:785.689633pt;}
.y61{bottom:786.218754pt;}
.yf9{bottom:796.272777pt;}
.y60{bottom:800.203623pt;}
.yf8{bottom:806.930731pt;}
.y5f{bottom:814.111979pt;}
.yf7{bottom:817.588686pt;}
.y51{bottom:827.641333pt;}
.y5e{bottom:828.095785pt;}
.yf6{bottom:828.170980pt;}
.yf5{bottom:838.829784pt;}
.y5d{bottom:842.004141pt;}
.yf4{bottom:849.412078pt;}
.y5c{bottom:855.989009pt;}
.y1{bottom:859.312000pt;}
.yf3{bottom:860.070032pt;}
.y50{bottom:863.546667pt;}
.y5b{bottom:869.897365pt;}
.yf2{bottom:870.727987pt;}
.yf1{bottom:881.311131pt;}
.y5a{bottom:883.881171pt;}
.yf0{bottom:891.969085pt;}
.y59{bottom:897.789527pt;}
.y4f{bottom:901.341333pt;}
.yef{bottom:902.551379pt;}
.y58{bottom:911.773333pt;}
.yee{bottom:913.209333pt;}
.y54{bottom:937.453293pt;}
.yed{bottom:937.846908pt;}
.y107{bottom:937.850912pt;}
.y93{bottom:937.852000pt;}
.y94{bottom:937.866693pt;}
.hf{height:20.907656pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h10{height:29.887031pt;}
.h16{height:29.887500pt;}
.h15{height:30.647691pt;}
.h11{height:32.689219pt;}
.he{height:32.997656pt;}
.h12{height:33.623437pt;}
.h13{height:37.359844pt;}
.h17{height:40.551869pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h2{height:49.024000pt;}
.hd{height:49.501875pt;}
.hc{height:63.044531pt;}
.h14{height:65.378906pt;}
.h5{height:69.450667pt;}
.h4{height:105.826671pt;}
.hb{height:990.000000pt;}
.ha{height:990.236000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:725.669333pt;}
.w4{width:726.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:52.006267pt;}
.xc{left:57.600000pt;}
.x12{left:58.733733pt;}
.x25{left:66.518665pt;}
.x11{left:67.954968pt;}
.x20{left:74.153581pt;}
.x18{left:76.572184pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x6{left:123.588882pt;}
.x1d{left:124.874234pt;}
.x21{left:125.781599pt;}
.x19{left:131.072527pt;}
.x7{left:145.285333pt;}
.x24{left:151.633530pt;}
.xd{left:154.052065pt;}
.x26{left:157.226469pt;}
.xe{left:168.867956pt;}
.x8{left:171.212000pt;}
.x14{left:173.253333pt;}
.x4{left:180.874667pt;}
.x9{left:189.654683pt;}
.x16{left:221.733333pt;}
.x15{left:230.097333pt;}
.xf{left:263.660000pt;}
.xa{left:270.309386pt;}
.x22{left:271.821461pt;}
.x10{left:274.318122pt;}
.xb{left:293.140000pt;}
.x1e{left:300.847666pt;}
.x23{left:335.921255pt;}
.x28{left:357.840000pt;}
.x1b{left:360.226640pt;}
.x13{left:396.090444pt;}
.x3{left:404.408000pt;}
.x1a{left:435.680013pt;}
.x1c{left:457.923460pt;}
.x27{left:476.442279pt;}
.x17{left:613.940824pt;}
.x1f{left:648.107049pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  