
    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_ba78c6cdf03c546a85d75049.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972656;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_d2ad5a8c6c7c3d3a31c978dc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.820801;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_89430cb6d8131b80e7ce72b6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.820801;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_db298c9a7c95b8e8a043e8f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.820801;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_99596ab7b2df62573677d34f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_619bc6f409428bef356702f4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_410f5d5438040e3ca77a4ee5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.925293;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_f3b6dd383c473a0e7a3faab3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937988;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_f9d3d90214a4672f7365019a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.862793;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_407484bf311836664572ecd2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.102051;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_eb5bf04b8bfcf9cbce9935dc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_04980697f3f9199a69e68120.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_0af32c8d42e5d8ba9dcefa1b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.871094;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_039ab2d9a594dd8410f5a021.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.080078;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_45f7c200ac890fb64433811c.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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);}
.m2{transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.900200px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.344334px;}
.ls3{letter-spacing:0.722220px;}
.ls5{letter-spacing:2.330975px;}
.ls0{letter-spacing:40.528044px;}
.ls8{letter-spacing:45.433182px;}
.ls7{letter-spacing:45.433972px;}
.ls4{letter-spacing:72.751171px;}
.ls2{letter-spacing:72.777571px;}
.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;}
}
.ws1{word-spacing:-63.342000px;}
.ws5{word-spacing:-37.938000px;}
.ws0{word-spacing:-34.761408px;}
.ws2{word-spacing:-18.453084px;}
.ws6{word-spacing:-16.613273px;}
.ws8{word-spacing:-16.559993px;}
.ws7{word-spacing:-14.970234px;}
.wsa{word-spacing:-13.844328px;}
.ws9{word-spacing:-13.499995px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:34.722000px;}
._0{margin-left:-1855.337741px;}
._4{margin-left:-4.926642px;}
._19{margin-left:-3.885984px;}
._1{margin-left:-2.753311px;}
._5{margin-left:-1.217430px;}
._2{width:1.610952px;}
._3{width:2.964130px;}
._16{width:4.175549px;}
._18{width:5.540471px;}
._1a{width:6.723472px;}
._a{width:7.871904px;}
._1d{width:9.149024px;}
._f{width:10.155672px;}
._17{width:11.303392px;}
._20{width:12.784498px;}
._1b{width:14.601848px;}
._1c{width:18.146029px;}
._c{width:19.666800px;}
._d{width:20.961000px;}
._1e{width:22.792481px;}
._22{width:24.577394px;}
._1f{width:25.656876px;}
._25{width:28.303134px;}
._24{width:29.519409px;}
._8{width:30.840390px;}
._23{width:32.603715px;}
._21{width:34.598079px;}
._b{width:89.289210px;}
._14{width:97.672421px;}
._13{width:147.651730px;}
._10{width:173.805624px;}
._e{width:187.296150px;}
._9{width:197.881200px;}
._7{width:701.236837px;}
._6{width:709.309908px;}
._12{width:746.298000px;}
._11{width:761.329908px;}
._15{width:846.093350px;}
.fc1{color:transparent;}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(13,13,13);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:30.239988px;}
.fs10{font-size:41.759983px;}
.fsf{font-size:53.999978px;}
.fs3{font-size:54.306000px;}
.fsb{font-size:59.759976px;}
.fs6{font-size:59.760000px;}
.fsa{font-size:66.239974px;}
.fs9{font-size:66.240000px;}
.fs5{font-size:66.378000px;}
.fsc{font-size:71.999971px;}
.fs8{font-size:72.000000px;}
.fse{font-size:107.999957px;}
.fs7{font-size:120.240000px;}
.fs4{font-size:137.699999px;}
.fs1{font-size:168.959999px;}
.fs2{font-size:197.508000px;}
.fs0{font-size:247.403999px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.045000px;}
.y31{bottom:57.479677px;}
.y30{bottom:76.379669px;}
.y15{bottom:76.379700px;}
.y2f{bottom:94.919662px;}
.y2e{bottom:113.819654px;}
.y14{bottom:113.819700px;}
.y2d{bottom:132.359947px;}
.yb{bottom:140.709004px;}
.y2c{bottom:152.519939px;}
.y11c{bottom:179.699928px;}
.yee{bottom:180.419928px;}
.yb9{bottom:181.679927px;}
.ye9{bottom:182.939927px;}
.y58{bottom:186.899925px;}
.yed{bottom:195.899922px;}
.y11b{bottom:198.779920px;}
.yb8{bottom:200.759920px;}
.ye8{bottom:201.839919px;}
.y88{bottom:203.099919px;}
.yec{bottom:211.559915px;}
.y26{bottom:217.679850px;}
.y11a{bottom:217.679913px;}
.yb7{bottom:219.659912px;}
.y57{bottom:220.919912px;}
.y87{bottom:221.999911px;}
.yeb{bottom:227.039909px;}
.y119{bottom:236.759905px;}
.yb6{bottom:238.739905px;}
.ye7{bottom:239.819904px;}
.y86{bottom:240.899904px;}
.y25{bottom:241.439850px;}
.yea{bottom:242.519903px;}
.y56{bottom:245.579902px;}
.y118{bottom:255.659898px;}
.yb5{bottom:257.639897px;}
.ye6{bottom:258.899896px;}
.y85{bottom:259.979896px;}
.y7{bottom:260.838750px;}
.y24{bottom:265.199850px;}
.y55{bottom:270.239892px;}
.y117{bottom:274.559890px;}
.yb4{bottom:276.539889px;}
.ye5{bottom:277.799889px;}
.y84{bottom:278.879888px;}
.y116{bottom:293.639883px;}
.y54{bottom:294.899882px;}
.yb3{bottom:295.619882px;}
.ye4{bottom:296.699881px;}
.y83{bottom:297.959881px;}
.y115{bottom:312.539875px;}
.y23{bottom:312.899850px;}
.yb2{bottom:314.519874px;}
.ye3{bottom:315.779874px;}
.y82{bottom:316.859873px;}
.y53{bottom:319.739872px;}
.y114{bottom:331.799867px;}
.yb1{bottom:333.599867px;}
.ye2{bottom:334.679866px;}
.y81{bottom:335.759866px;}
.y22{bottom:336.659850px;}
.y52{bottom:344.399862px;}
.y113{bottom:352.319859px;}
.yb0{bottom:352.499859px;}
.ye1{bottom:353.759858px;}
.y80{bottom:354.839858px;}
.y21{bottom:360.419850px;}
.y51{bottom:369.059852px;}
.y112{bottom:371.219852px;}
.yaf{bottom:371.579851px;}
.ye0{bottom:372.659851px;}
.y7f{bottom:373.739851px;}
.y20{bottom:384.179850px;}
.y111{bottom:389.759844px;}
.yae{bottom:390.479844px;}
.ydf{bottom:391.559843px;}
.y7e{bottom:392.819843px;}
.y50{bottom:393.719843px;}
.y110{bottom:407.039837px;}
.y1f{bottom:408.119700px;}
.yad{bottom:409.379836px;}
.yde{bottom:410.639836px;}
.y7d{bottom:411.719835px;}
.y4f{bottom:418.379833px;}
.y10f{bottom:425.579830px;}
.yac{bottom:428.459829px;}
.ydd{bottom:429.539828px;}
.y7c{bottom:430.619828px;}
.y4e{bottom:443.039823px;}
.y10e{bottom:445.739822px;}
.yab{bottom:447.359821px;}
.ydc{bottom:448.619821px;}
.y7b{bottom:449.699820px;}
.y1e{bottom:459.239700px;}
.y10d{bottom:464.999814px;}
.yaa{bottom:466.439813px;}
.ydb{bottom:467.519813px;}
.y4d{bottom:467.699813px;}
.y7a{bottom:468.599813px;}
.y1d{bottom:482.999700px;}
.ya9{bottom:485.339806px;}
.yda{bottom:486.419805px;}
.y79{bottom:487.679805px;}
.y4c{bottom:492.359803px;}
.y10c{bottom:499.199800px;}
.ya8{bottom:504.239798px;}
.yd9{bottom:505.499798px;}
.y78{bottom:506.579797px;}
.y1c{bottom:506.759700px;}
.y4b{bottom:517.019793px;}
.y10b{bottom:519.899792px;}
.ya7{bottom:523.319791px;}
.yd8{bottom:524.399790px;}
.y77{bottom:525.479790px;}
.y6{bottom:526.408652px;}
.y1b{bottom:530.699700px;}
.y10a{bottom:540.599784px;}
.y4a{bottom:541.679783px;}
.ya6{bottom:542.219783px;}
.yd7{bottom:543.479783px;}
.y76{bottom:544.559782px;}
.y1a{bottom:554.459700px;}
.ya5{bottom:561.299775px;}
.yd6{bottom:562.379775px;}
.y75{bottom:563.459775px;}
.y49{bottom:566.519773px;}
.y5{bottom:573.174152px;}
.ya4{bottom:580.199768px;}
.yd5{bottom:581.459767px;}
.y74{bottom:582.539767px;}
.y48{bottom:591.179764px;}
.y109{bottom:595.859762px;}
.ya3{bottom:599.099760px;}
.yd4{bottom:600.359760px;}
.y73{bottom:601.439759px;}
.y108{bottom:611.519755px;}
.y19{bottom:614.039700px;}
.y47{bottom:615.839754px;}
.ya2{bottom:618.179753px;}
.yd3{bottom:619.259752px;}
.y72{bottom:620.519752px;}
.ya1{bottom:637.079745px;}
.y18{bottom:637.799700px;}
.yd2{bottom:638.339745px;}
.y71{bottom:639.419744px;}
.y46{bottom:640.499744px;}
.y107{bottom:643.019743px;}
.y4{bottom:654.382652px;}
.ya0{bottom:656.159738px;}
.yd1{bottom:657.239737px;}
.y70{bottom:658.319737px;}
.y17{bottom:661.559700px;}
.y106{bottom:662.819735px;}
.y45{bottom:665.159734px;}
.y9f{bottom:675.059730px;}
.yd0{bottom:676.319729px;}
.y6f{bottom:677.399729px;}
.y44{bottom:689.819724px;}
.y9e{bottom:693.959722px;}
.y105{bottom:694.319722px;}
.ycf{bottom:695.219722px;}
.y6e{bottom:696.299721px;}
.y3{bottom:710.200651px;}
.y9d{bottom:713.039715px;}
.yce{bottom:714.119714px;}
.y43{bottom:714.479714px;}
.y6d{bottom:715.379714px;}
.y13{bottom:728.589001px;}
.y104{bottom:729.959708px;}
.y9c{bottom:731.939707px;}
.ycd{bottom:733.199707px;}
.y6c{bottom:734.279706px;}
.y42{bottom:739.139704px;}
.y12{bottom:748.501501px;}
.y103{bottom:750.659700px;}
.y9b{bottom:751.019700px;}
.ycc{bottom:752.099699px;}
.y6b{bottom:753.179699px;}
.y41{bottom:763.799694px;}
.y2{bottom:766.017151px;}
.y11{bottom:768.415501px;}
.y9a{bottom:769.919692px;}
.y102{bottom:770.279692px;}
.ycb{bottom:771.179692px;}
.y6a{bottom:772.259691px;}
.y101{bottom:785.939686px;}
.y10{bottom:788.328001px;}
.y40{bottom:788.459685px;}
.y99{bottom:788.819684px;}
.yca{bottom:790.079684px;}
.y69{bottom:791.159684px;}
.y100{bottom:801.419679px;}
.y98{bottom:807.899677px;}
.yf{bottom:808.240501px;}
.yc9{bottom:808.979676px;}
.y67{bottom:810.239676px;}
.y3f{bottom:813.299675px;}
.yff{bottom:816.899673px;}
.y68{bottom:817.079673px;}
.y97{bottom:826.799669px;}
.yc8{bottom:828.059669px;}
.ye{bottom:828.154501px;}
.y66{bottom:830.039668px;}
.yfe{bottom:832.379667px;}
.y3e{bottom:837.959665px;}
.y96{bottom:845.879662px;}
.yc7{bottom:846.959661px;}
.yfd{bottom:848.039661px;}
.yd{bottom:848.067001px;}
.y65{bottom:849.299660px;}
.y3d{bottom:858.299657px;}
.yfc{bottom:863.519655px;}
.y95{bottom:864.779654px;}
.yc6{bottom:866.039654px;}
.yc{bottom:867.981001px;}
.y64{bottom:868.199653px;}
.y3c{bottom:878.999648px;}
.y94{bottom:883.859646px;}
.yc5{bottom:884.939646px;}
.y63{bottom:887.279645px;}
.yfb{bottom:894.479642px;}
.y3b{bottom:899.699640px;}
.y93{bottom:902.759639px;}
.yc4{bottom:903.839638px;}
.y62{bottom:906.179638px;}
.yfa{bottom:910.139636px;}
.y3a{bottom:920.399632px;}
.y92{bottom:921.659631px;}
.yc3{bottom:922.919631px;}
.y60{bottom:925.259630px;}
.yf9{bottom:925.619630px;}
.y61{bottom:932.099627px;}
.y91{bottom:940.739624px;}
.y39{bottom:941.099624px;}
.yc2{bottom:941.819623px;}
.y5f{bottom:944.159622px;}
.yf8{bottom:956.579617px;}
.y90{bottom:959.639616px;}
.yc1{bottom:960.899616px;}
.y38{bottom:961.799615px;}
.y5e{bottom:963.959614px;}
.ya{bottom:965.028000px;}
.yf7{bottom:972.239611px;}
.y8f{bottom:978.719609px;}
.yc0{bottom:979.799608px;}
.y8{bottom:981.552000px;}
.y5d{bottom:982.499607px;}
.y9{bottom:983.130000px;}
.y37{bottom:985.559606px;}
.yf6{bottom:987.719605px;}
.y8e{bottom:997.619601px;}
.ybf{bottom:998.699601px;}
.y5c{bottom:999.059600px;}
.yf5{bottom:1003.199599px;}
.y36{bottom:1009.499596px;}
.y8d{bottom:1016.519593px;}
.ybe{bottom:1017.779593px;}
.yf4{bottom:1018.679593px;}
.y5b{bottom:1021.739591px;}
.y35{bottom:1030.199588px;}
.yf3{bottom:1034.339586px;}
.y8c{bottom:1035.599586px;}
.ybd{bottom:1036.679585px;}
.yf2{bottom:1049.819580px;}
.y34{bottom:1050.899580px;}
.y5a{bottom:1052.699579px;}
.y8b{bottom:1054.499578px;}
.ybc{bottom:1055.759578px;}
.yf1{bottom:1065.299574px;}
.y33{bottom:1071.599571px;}
.y8a{bottom:1073.579571px;}
.ybb{bottom:1074.659570px;}
.yf0{bottom:1080.779568px;}
.y16{bottom:1080.959550px;}
.y59{bottom:1083.839566px;}
.y32{bottom:1092.299563px;}
.y89{bottom:1093.379563px;}
.yba{bottom:1093.739563px;}
.yef{bottom:1096.439561px;}
.y2b{bottom:1113.539555px;}
.y2a{bottom:1133.519547px;}
.y29{bottom:1153.679539px;}
.y28{bottom:1173.839530px;}
.y27{bottom:1193.999522px;}
.h15{height:20.155070px;}
.h1a{height:36.050611px;}
.h1c{height:37.625962px;}
.h11{height:43.506897px;}
.hb{height:43.506914px;}
.h12{height:44.149201px;}
.h10{height:45.345919px;}
.h1d{height:45.895763px;}
.h16{height:46.154513px;}
.h18{height:47.276348px;}
.h6{height:48.684480px;}
.h13{height:50.167949px;}
.hd{height:50.167969px;}
.hf{height:50.168569px;}
.h1e{height:52.319159px;}
.h19{height:57.183727px;}
.h1b{height:57.992321px;}
.h8{height:59.506840px;}
.h14{height:63.035131px;}
.he{height:63.035156px;}
.h17{height:75.251923px;}
.hc{height:83.780508px;}
.h7{height:103.275000px;}
.h4{height:148.747499px;}
.h5{height:178.780534px;}
.h3{height:217.807329px;}
.h2{height:1054.440000px;}
.h0{height:1054.485000px;}
.h1{height:1054.500000px;}
.h9{height:1262.835000px;}
.ha{height:1263.000000px;}
.w1{width:761.250000px;}
.w0{width:761.521500px;}
.w2{width:892.920000px;}
.w3{width:893.250000px;}
.xa{left:-573.915451px;}
.x0{left:0.000000px;}
.xd{left:106.200000px;}
.x9{left:107.429547px;}
.x12{left:114.840131px;}
.x4{left:116.179197px;}
.x1f{left:133.199947px;}
.x17{left:138.240650px;}
.x18{left:148.674381px;}
.x11{left:151.919939px;}
.x1e{left:160.200007px;}
.x1{left:163.153196px;}
.x14{left:164.879934px;}
.x8{left:177.754046px;}
.x2{left:206.717696px;}
.x3{left:235.876196px;}
.xc{left:251.639850px;}
.x5{left:257.593046px;}
.x1b{left:262.799895px;}
.x1d{left:280.077867px;}
.x13{left:294.478895px;}
.x15{left:313.379875px;}
.x1a{left:384.299916px;}
.x19{left:401.398808px;}
.x16{left:415.620014px;}
.xf{left:446.399821px;}
.x7{left:450.730045px;}
.x6{left:511.010550px;}
.x1c{left:629.999748px;}
.x10{left:769.859692px;}
.xb{left:778.334900px;}
.xe{left:786.597198px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.355733pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.306074pt;}
.ls3{letter-spacing:0.641973pt;}
.ls5{letter-spacing:2.071978pt;}
.ls0{letter-spacing:36.024928pt;}
.ls8{letter-spacing:40.385051pt;}
.ls7{letter-spacing:40.385753pt;}
.ls4{letter-spacing:64.667707pt;}
.ls2{letter-spacing:64.691174pt;}
.ws1{word-spacing:-56.304000pt;}
.ws5{word-spacing:-33.722667pt;}
.ws0{word-spacing:-30.899029pt;}
.ws2{word-spacing:-16.402741pt;}
.ws6{word-spacing:-14.767354pt;}
.ws8{word-spacing:-14.719994pt;}
.ws7{word-spacing:-13.306875pt;}
.wsa{word-spacing:-12.306069pt;}
.ws9{word-spacing:-11.999995pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:30.864000pt;}
._0{margin-left:-1649.189103pt;}
._4{margin-left:-4.379237pt;}
._19{margin-left:-3.454208pt;}
._1{margin-left:-2.447388pt;}
._5{margin-left:-1.082160pt;}
._2{width:1.431958pt;}
._3{width:2.634782pt;}
._16{width:3.711599pt;}
._18{width:4.924863pt;}
._1a{width:5.976420pt;}
._a{width:6.997248pt;}
._1d{width:8.132466pt;}
._f{width:9.027264pt;}
._17{width:10.047459pt;}
._20{width:11.363998pt;}
._1b{width:12.979421pt;}
._1c{width:16.129804pt;}
._c{width:17.481600pt;}
._d{width:18.632000pt;}
._1e{width:20.259984pt;}
._22{width:21.846573pt;}
._1f{width:22.806112pt;}
._25{width:25.158341pt;}
._24{width:26.239474pt;}
._8{width:27.413680pt;}
._23{width:28.981080pt;}
._21{width:30.753848pt;}
._b{width:79.368186pt;}
._14{width:86.819930pt;}
._13{width:131.245982pt;}
._10{width:154.493888pt;}
._e{width:166.485466pt;}
._9{width:175.894400pt;}
._7{width:623.321633pt;}
._6{width:630.497696pt;}
._12{width:663.376000pt;}
._11{width:676.737696pt;}
._15{width:752.082978pt;}
.fsd{font-size:26.879989pt;}
.fs10{font-size:37.119985pt;}
.fsf{font-size:47.999981pt;}
.fs3{font-size:48.272000pt;}
.fsb{font-size:53.119979pt;}
.fs6{font-size:53.120000pt;}
.fsa{font-size:58.879976pt;}
.fs9{font-size:58.880000pt;}
.fs5{font-size:59.002666pt;}
.fsc{font-size:63.999974pt;}
.fs8{font-size:64.000000pt;}
.fse{font-size:95.999962pt;}
.fs7{font-size:106.880000pt;}
.fs4{font-size:122.400000pt;}
.fs1{font-size:150.186666pt;}
.fs2{font-size:175.562667pt;}
.fs0{font-size:219.914666pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.040000pt;}
.y31{bottom:51.093046pt;}
.y30{bottom:67.893040pt;}
.y15{bottom:67.893067pt;}
.y2f{bottom:84.373033pt;}
.y2e{bottom:101.173026pt;}
.y14{bottom:101.173067pt;}
.y2d{bottom:117.653286pt;}
.yb{bottom:125.074670pt;}
.y2c{bottom:135.573279pt;}
.y11c{bottom:159.733269pt;}
.yee{bottom:160.373269pt;}
.yb9{bottom:161.493269pt;}
.ye9{bottom:162.613268pt;}
.y58{bottom:166.133267pt;}
.yed{bottom:174.133264pt;}
.y11b{bottom:176.693263pt;}
.yb8{bottom:178.453262pt;}
.ye8{bottom:179.413262pt;}
.y88{bottom:180.533261pt;}
.yec{bottom:188.053258pt;}
.y26{bottom:193.493200pt;}
.y11a{bottom:193.493256pt;}
.yb7{bottom:195.253255pt;}
.y57{bottom:196.373255pt;}
.y87{bottom:197.333254pt;}
.yeb{bottom:201.813253pt;}
.y119{bottom:210.453249pt;}
.yb6{bottom:212.213248pt;}
.ye7{bottom:213.173248pt;}
.y86{bottom:214.133248pt;}
.y25{bottom:214.613200pt;}
.yea{bottom:215.573247pt;}
.y56{bottom:218.293246pt;}
.y118{bottom:227.253242pt;}
.yb5{bottom:229.013242pt;}
.ye6{bottom:230.133241pt;}
.y85{bottom:231.093241pt;}
.y7{bottom:231.856667pt;}
.y24{bottom:235.733200pt;}
.y55{bottom:240.213237pt;}
.y117{bottom:244.053236pt;}
.yb4{bottom:245.813235pt;}
.ye5{bottom:246.933235pt;}
.y84{bottom:247.893234pt;}
.y116{bottom:261.013229pt;}
.y54{bottom:262.133228pt;}
.yb3{bottom:262.773228pt;}
.ye4{bottom:263.733228pt;}
.y83{bottom:264.853227pt;}
.y115{bottom:277.813222pt;}
.y23{bottom:278.133200pt;}
.yb2{bottom:279.573222pt;}
.ye3{bottom:280.693221pt;}
.y82{bottom:281.653221pt;}
.y53{bottom:284.213220pt;}
.y114{bottom:294.933215pt;}
.yb1{bottom:296.533215pt;}
.ye2{bottom:297.493214pt;}
.y81{bottom:298.453214pt;}
.y22{bottom:299.253200pt;}
.y52{bottom:306.133211pt;}
.y113{bottom:313.173208pt;}
.yb0{bottom:313.333208pt;}
.ye1{bottom:314.453208pt;}
.y80{bottom:315.413207pt;}
.y21{bottom:320.373200pt;}
.y51{bottom:328.053202pt;}
.y112{bottom:329.973201pt;}
.yaf{bottom:330.293201pt;}
.ye0{bottom:331.253201pt;}
.y7f{bottom:332.213200pt;}
.y20{bottom:341.493200pt;}
.y111{bottom:346.453195pt;}
.yae{bottom:347.093194pt;}
.ydf{bottom:348.053194pt;}
.y7e{bottom:349.173194pt;}
.y50{bottom:349.973193pt;}
.y110{bottom:361.813189pt;}
.y1f{bottom:362.773067pt;}
.yad{bottom:363.893188pt;}
.yde{bottom:365.013187pt;}
.y7d{bottom:365.973187pt;}
.y4f{bottom:371.893185pt;}
.y10f{bottom:378.293182pt;}
.yac{bottom:380.853181pt;}
.ydd{bottom:381.813181pt;}
.y7c{bottom:382.773180pt;}
.y4e{bottom:393.813176pt;}
.y10e{bottom:396.213175pt;}
.yab{bottom:397.653174pt;}
.ydc{bottom:398.773174pt;}
.y7b{bottom:399.733173pt;}
.y1e{bottom:408.213067pt;}
.y10d{bottom:413.333168pt;}
.yaa{bottom:414.613167pt;}
.ydb{bottom:415.573167pt;}
.y4d{bottom:415.733167pt;}
.y7a{bottom:416.533167pt;}
.y1d{bottom:429.333067pt;}
.ya9{bottom:431.413161pt;}
.yda{bottom:432.373160pt;}
.y79{bottom:433.493160pt;}
.y4c{bottom:437.653158pt;}
.y10c{bottom:443.733156pt;}
.ya8{bottom:448.213154pt;}
.yd9{bottom:449.333154pt;}
.y78{bottom:450.293153pt;}
.y1c{bottom:450.453067pt;}
.y4b{bottom:459.573150pt;}
.y10b{bottom:462.133148pt;}
.ya7{bottom:465.173147pt;}
.yd8{bottom:466.133147pt;}
.y77{bottom:467.093146pt;}
.y6{bottom:467.918802pt;}
.y1b{bottom:471.733067pt;}
.y10a{bottom:480.533141pt;}
.y4a{bottom:481.493141pt;}
.ya6{bottom:481.973141pt;}
.yd7{bottom:483.093140pt;}
.y76{bottom:484.053140pt;}
.y1a{bottom:492.853067pt;}
.ya5{bottom:498.933134pt;}
.yd6{bottom:499.893133pt;}
.y75{bottom:500.853133pt;}
.y49{bottom:503.573132pt;}
.y5{bottom:509.488135pt;}
.ya4{bottom:515.733127pt;}
.yd5{bottom:516.853127pt;}
.y74{bottom:517.813126pt;}
.y48{bottom:525.493123pt;}
.y109{bottom:529.653121pt;}
.ya3{bottom:532.533120pt;}
.yd4{bottom:533.653120pt;}
.y73{bottom:534.613119pt;}
.y108{bottom:543.573116pt;}
.y19{bottom:545.813067pt;}
.y47{bottom:547.413114pt;}
.ya2{bottom:549.493114pt;}
.yd3{bottom:550.453113pt;}
.y72{bottom:551.573113pt;}
.ya1{bottom:566.293107pt;}
.y18{bottom:566.933067pt;}
.yd2{bottom:567.413106pt;}
.y71{bottom:568.373106pt;}
.y46{bottom:569.333106pt;}
.y107{bottom:571.573105pt;}
.y4{bottom:581.673468pt;}
.ya0{bottom:583.253100pt;}
.yd1{bottom:584.213100pt;}
.y70{bottom:585.173099pt;}
.y17{bottom:588.053067pt;}
.y106{bottom:589.173098pt;}
.y45{bottom:591.253097pt;}
.y9f{bottom:600.053093pt;}
.yd0{bottom:601.173093pt;}
.y6f{bottom:602.133092pt;}
.y44{bottom:613.173088pt;}
.y9e{bottom:616.853087pt;}
.y105{bottom:617.173086pt;}
.ycf{bottom:617.973086pt;}
.y6e{bottom:618.933086pt;}
.y3{bottom:631.289468pt;}
.y9d{bottom:633.813080pt;}
.yce{bottom:634.773079pt;}
.y43{bottom:635.093079pt;}
.y6d{bottom:635.893079pt;}
.y13{bottom:647.634668pt;}
.y104{bottom:648.853074pt;}
.y9c{bottom:650.613073pt;}
.ycd{bottom:651.733073pt;}
.y6c{bottom:652.693072pt;}
.y42{bottom:657.013071pt;}
.y12{bottom:665.334668pt;}
.y103{bottom:667.253066pt;}
.y9b{bottom:667.573066pt;}
.ycc{bottom:668.533066pt;}
.y6b{bottom:669.493066pt;}
.y41{bottom:678.933062pt;}
.y2{bottom:680.904134pt;}
.y11{bottom:683.036001pt;}
.y9a{bottom:684.373060pt;}
.y102{bottom:684.693059pt;}
.ycb{bottom:685.493059pt;}
.y6a{bottom:686.453059pt;}
.y101{bottom:698.613054pt;}
.y10{bottom:700.736001pt;}
.y40{bottom:700.853053pt;}
.y99{bottom:701.173053pt;}
.yca{bottom:702.293052pt;}
.y69{bottom:703.253052pt;}
.y100{bottom:712.373048pt;}
.y98{bottom:718.133046pt;}
.yf{bottom:718.436001pt;}
.yc9{bottom:719.093046pt;}
.y67{bottom:720.213045pt;}
.y3f{bottom:722.933044pt;}
.yff{bottom:726.133043pt;}
.y68{bottom:726.293043pt;}
.y97{bottom:734.933039pt;}
.yc8{bottom:736.053039pt;}
.ye{bottom:736.137334pt;}
.y66{bottom:737.813038pt;}
.yfe{bottom:739.893037pt;}
.y3e{bottom:744.853035pt;}
.y96{bottom:751.893033pt;}
.yc7{bottom:752.853032pt;}
.yfd{bottom:753.813032pt;}
.yd{bottom:753.837334pt;}
.y65{bottom:754.933031pt;}
.y3d{bottom:762.933028pt;}
.yfc{bottom:767.573026pt;}
.y95{bottom:768.693026pt;}
.yc6{bottom:769.813025pt;}
.yc{bottom:771.538667pt;}
.y64{bottom:771.733025pt;}
.y3c{bottom:781.333021pt;}
.y94{bottom:785.653019pt;}
.yc5{bottom:786.613019pt;}
.y63{bottom:788.693018pt;}
.yfb{bottom:795.093015pt;}
.y3b{bottom:799.733013pt;}
.y93{bottom:802.453012pt;}
.yc4{bottom:803.413012pt;}
.y62{bottom:805.493011pt;}
.yfa{bottom:809.013010pt;}
.y3a{bottom:818.133006pt;}
.y92{bottom:819.253006pt;}
.yc3{bottom:820.373005pt;}
.y60{bottom:822.453004pt;}
.yf9{bottom:822.773004pt;}
.y61{bottom:828.533002pt;}
.y91{bottom:836.212999pt;}
.y39{bottom:836.532999pt;}
.yc2{bottom:837.172998pt;}
.y5f{bottom:839.252998pt;}
.yf8{bottom:850.292993pt;}
.y90{bottom:853.012992pt;}
.yc1{bottom:854.132992pt;}
.y38{bottom:854.932991pt;}
.y5e{bottom:856.852991pt;}
.ya{bottom:857.802667pt;}
.yf7{bottom:864.212988pt;}
.y8f{bottom:869.972985pt;}
.yc0{bottom:870.932985pt;}
.y8{bottom:872.490667pt;}
.y5d{bottom:873.332984pt;}
.y9{bottom:873.893334pt;}
.y37{bottom:876.052983pt;}
.yf6{bottom:877.972982pt;}
.y8e{bottom:886.772979pt;}
.ybf{bottom:887.732978pt;}
.y5c{bottom:888.052978pt;}
.yf5{bottom:891.732977pt;}
.y36{bottom:897.332974pt;}
.y8d{bottom:903.572972pt;}
.ybe{bottom:904.692971pt;}
.yf4{bottom:905.492971pt;}
.y5b{bottom:908.212970pt;}
.y35{bottom:915.732967pt;}
.yf3{bottom:919.412966pt;}
.y8c{bottom:920.532965pt;}
.ybd{bottom:921.492965pt;}
.yf2{bottom:933.172960pt;}
.y34{bottom:934.132960pt;}
.y5a{bottom:935.732959pt;}
.y8b{bottom:937.332958pt;}
.ybc{bottom:938.452958pt;}
.yf1{bottom:946.932955pt;}
.y33{bottom:952.532952pt;}
.y8a{bottom:954.292952pt;}
.ybb{bottom:955.252951pt;}
.yf0{bottom:960.692949pt;}
.y16{bottom:960.852933pt;}
.y59{bottom:963.412948pt;}
.y32{bottom:970.932945pt;}
.y89{bottom:971.892945pt;}
.yba{bottom:972.212944pt;}
.yef{bottom:974.612943pt;}
.y2b{bottom:989.812937pt;}
.y2a{bottom:1007.572930pt;}
.y29{bottom:1025.492923pt;}
.y28{bottom:1043.412916pt;}
.y27{bottom:1061.332909pt;}
.h15{height:17.915618pt;}
.h1a{height:32.044987pt;}
.h1c{height:33.445299pt;}
.h11{height:38.672797pt;}
.hb{height:38.672812pt;}
.h12{height:39.243734pt;}
.h10{height:40.307484pt;}
.h1d{height:40.796234pt;}
.h16{height:41.026234pt;}
.h18{height:42.023421pt;}
.h6{height:43.275094pt;}
.h13{height:44.593732pt;}
.hd{height:44.593750pt;}
.hf{height:44.594283pt;}
.h1e{height:46.505919pt;}
.h19{height:50.829980pt;}
.h1b{height:51.548729pt;}
.h8{height:52.894969pt;}
.h14{height:56.031228pt;}
.he{height:56.031250pt;}
.h17{height:66.890598pt;}
.hc{height:74.471562pt;}
.h7{height:91.800000pt;}
.h4{height:132.219999pt;}
.h5{height:158.916030pt;}
.h3{height:193.606515pt;}
.h2{height:937.280000pt;}
.h0{height:937.320000pt;}
.h1{height:937.333333pt;}
.h9{height:1122.520000pt;}
.ha{height:1122.666667pt;}
.w1{width:676.666667pt;}
.w0{width:676.908000pt;}
.w2{width:793.706667pt;}
.w3{width:794.000000pt;}
.xa{left:-510.147067pt;}
.x0{left:0.000000pt;}
.xd{left:94.400000pt;}
.x9{left:95.492930pt;}
.x12{left:102.080116pt;}
.x4{left:103.270397pt;}
.x1f{left:118.399953pt;}
.x17{left:122.880578pt;}
.x18{left:132.155006pt;}
.x11{left:135.039946pt;}
.x1e{left:142.400007pt;}
.x1{left:145.025063pt;}
.x14{left:146.559941pt;}
.x8{left:158.003597pt;}
.x2{left:183.749063pt;}
.x3{left:209.667730pt;}
.xc{left:223.679867pt;}
.x5{left:228.971596pt;}
.x1b{left:233.599907pt;}
.x1d{left:248.958104pt;}
.x13{left:261.759017pt;}
.x15{left:278.559889pt;}
.x1a{left:341.599925pt;}
.x19{left:356.798941pt;}
.x16{left:369.440013pt;}
.xf{left:396.799841pt;}
.x7{left:400.648929pt;}
.x6{left:454.231600pt;}
.x1c{left:559.999776pt;}
.x10{left:684.319726pt;}
.xb{left:691.853244pt;}
.xe{left:699.197510pt;}
}




    .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; }
  