
    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_e4420c4a2497f0c304530fa2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.153556;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_2def480ef9ddf2d171e70898.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.174316;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_d008d2f2f15559886810079d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.206055;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_12b7001063a7f14bda28f2e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_9e72799bcef91bd209539c2e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.995117;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_9d187d8476c3672b141f6f8c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.183594;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_0d609a423e325b461106a6b6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.173828;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_8480f88a5beacc7a112ead28.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.186523;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_cfb46530e9a75d841be18138.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.912000;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_03128810ff2f839312983975.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.174316;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_8f1011feb6f71a9026c346fb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.730957;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_eeb68f59068996e18ef63135.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000488;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_28d597eab08e05d353d81bd1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.174316;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_c05eba5eba53cacf6b4ee92f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.206055;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_09b3297093c3d0e0074fde69.woff2')format("woff");}.fff{font-family:fff;line-height:1.174316;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_2e29c3e9ce3130b6efd44b62.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.206055;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.262501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262501,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.262501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262501,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-13.986000px;}
.v3{vertical-align:-5.924400px;}
.v5{vertical-align:-3.502760px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.055000px;}
.v4{vertical-align:53.871600px;}
.ls9{letter-spacing:-3.120000px;}
.ls14{letter-spacing:-1.056000px;}
.ls19{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.285000px;}
.lsc{letter-spacing:-0.270000px;}
.lsa{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.063113px;}
.ls15{letter-spacing:0.240000px;}
.lsf{letter-spacing:0.270000px;}
.ls5{letter-spacing:0.285000px;}
.ls12{letter-spacing:0.314400px;}
.ls18{letter-spacing:0.371989px;}
.ls7{letter-spacing:0.420000px;}
.lse{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.750000px;}
.ls8{letter-spacing:0.840000px;}
.ls16{letter-spacing:0.960000px;}
.ls2{letter-spacing:1.140000px;}
.lsd{letter-spacing:1.170000px;}
.ls0{letter-spacing:1.560000px;}
.ls10{letter-spacing:1.620000px;}
.ls1{letter-spacing:2.280000px;}
.ls11{letter-spacing:2.340000px;}
.ls4{letter-spacing:2.400000px;}
.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;}
}
.ws2e{word-spacing:-19.578000px;}
.ws11{word-spacing:-14.040000px;}
.ws10{word-spacing:-13.770000px;}
.ws1{word-spacing:-10.122000px;}
.ws14{word-spacing:-9.552000px;}
.ws23{word-spacing:-8.355600px;}
.ws24{word-spacing:-8.355450px;}
.ws32{word-spacing:-7.889100px;}
.ws12{word-spacing:-6.121500px;}
.ws9{word-spacing:-2.793000px;}
.ws5{word-spacing:-2.400000px;}
.ws18{word-spacing:-2.340000px;}
.ws2{word-spacing:-2.028000px;}
.ws21{word-spacing:-1.998000px;}
.ws3b{word-spacing:-1.938000px;}
.ws3{word-spacing:-1.482000px;}
.ws15{word-spacing:-1.014000px;}
.ws4{word-spacing:-0.975000px;}
.ws3a{word-spacing:-0.960000px;}
.ws1a{word-spacing:-0.702000px;}
.wse{word-spacing:-0.546000px;}
.wsa{word-spacing:-0.540000px;}
.wsf{word-spacing:-0.486000px;}
.ws27{word-spacing:-0.480000px;}
.ws16{word-spacing:-0.432000px;}
.wsd{word-spacing:-0.420000px;}
.ws8{word-spacing:-0.285000px;}
.ws17{word-spacing:-0.270000px;}
.ws35{word-spacing:-0.240000px;}
.ws1c{word-spacing:-0.054000px;}
.ws13{word-spacing:-0.048000px;}
.ws34{word-spacing:-0.033817px;}
.ws7{word-spacing:0.000000px;}
.wsc{word-spacing:0.270000px;}
.wsb{word-spacing:0.285000px;}
.ws38{word-spacing:0.540000px;}
.ws2c{word-spacing:0.594000px;}
.ws39{word-spacing:1.674000px;}
.ws19{word-spacing:2.484000px;}
.ws2a{word-spacing:3.456000px;}
.ws22{word-spacing:3.570000px;}
.ws1f{word-spacing:3.726000px;}
.ws37{word-spacing:3.996000px;}
.ws2b{word-spacing:4.158000px;}
.ws29{word-spacing:4.266000px;}
.ws1b{word-spacing:5.346000px;}
.ws2d{word-spacing:7.290000px;}
.ws6{word-spacing:7.923000px;}
.ws20{word-spacing:8.910000px;}
.ws28{word-spacing:10.368000px;}
.ws36{word-spacing:14.526000px;}
.ws1e{word-spacing:15.120000px;}
.ws1d{word-spacing:24.192000px;}
.ws0{word-spacing:75.050400px;}
.ws25{word-spacing:89.954327px;}
.ws30{word-spacing:90.343200px;}
.ws2f{word-spacing:161.575200px;}
.ws31{word-spacing:192.055200px;}
.ws26{word-spacing:271.891224px;}
.ws33{word-spacing:277.767419px;}
._14{margin-left:-2357.291400px;}
._18{margin-left:-319.811710px;}
._16{margin-left:-13.398600px;}
._17{margin-left:-9.536400px;}
._2{margin-left:-8.424000px;}
._0{margin-left:-4.992000px;}
._3{margin-left:-3.329400px;}
._4{margin-left:-2.293200px;}
._1{margin-left:-1.092000px;}
._5{width:1.115400px;}
._7{width:2.954400px;}
._a{width:4.115400px;}
._b{width:5.540400px;}
._6{width:7.130700px;}
._8{width:8.988900px;}
._9{width:10.926900px;}
._e{width:12.231000px;}
._10{width:14.508000px;}
._f{width:16.529400px;}
._12{width:17.760600px;}
._d{width:19.524600px;}
._c{width:21.267600px;}
._15{width:23.190600px;}
._11{width:27.027000px;}
._13{width:43.260000px;}
.fc6{color:transparent;}
.fc5{color:rgb(79,76,77);}
.fc4{color:rgb(4,6,6);}
.fc3{color:rgb(63,65,67);}
.fc2{color:rgb(52,88,176);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:24.486000px;}
.fs15{font-size:27.298200px;}
.fs9{font-size:31.482000px;}
.fs11{font-size:31.556400px;}
.fse{font-size:31.613400px;}
.fsd{font-size:33.421800px;}
.fsc{font-size:33.422400px;}
.fs14{font-size:33.817200px;}
.fs12{font-size:38.709600px;}
.fs13{font-size:39.046200px;}
.fsf{font-size:39.163200px;}
.fs7{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fs10{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:75.000000px;}
.fs8{font-size:78.000000px;}
.fs1{font-size:114.000000px;}
.fs3{font-size:120.000000px;}
.fs0{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y11d{bottom:1.687500px;}
.y124{bottom:1.901250px;}
.y14a{bottom:4.575150px;}
.y13c{bottom:6.366900px;}
.y11c{bottom:10.734000px;}
.y123{bottom:10.947750px;}
.y12d{bottom:11.676750px;}
.y138{bottom:11.677050px;}
.y102{bottom:11.680050px;}
.y10e{bottom:11.681400px;}
.y134{bottom:11.682150px;}
.y10a{bottom:11.687250px;}
.y106{bottom:11.777250px;}
.y112{bottom:11.779500px;}
.y11a{bottom:11.780400px;}
.y126{bottom:11.780850px;}
.y116{bottom:11.781000px;}
.y118{bottom:11.781750px;}
.y12a{bottom:11.782650px;}
.y121{bottom:11.783400px;}
.y100{bottom:11.783700px;}
.y108{bottom:11.784000px;}
.y132{bottom:11.784750px;}
.y114{bottom:11.787900px;}
.y110{bottom:11.788800px;}
.y11f{bottom:11.886150px;}
.y10c{bottom:11.886600px;}
.y130{bottom:11.887650px;}
.y12b{bottom:11.890500px;}
.y136{bottom:11.892150px;}
.y128{bottom:11.892900px;}
.y104{bottom:11.893050px;}
.y13a{bottom:12.312000px;}
.y14b{bottom:18.947652px;}
.y14c{bottom:33.313330px;}
.y14d{bottom:47.774552px;}
.y14e{bottom:62.228948px;}
.y149{bottom:70.611030px;}
.y146{bottom:73.542600px;}
.y148{bottom:80.756190px;}
.y147{bottom:90.901350px;}
.y89{bottom:96.944850px;}
.y21{bottom:97.018200px;}
.y1f{bottom:101.128950px;}
.y141{bottom:107.562000px;}
.y1e{bottom:117.628950px;}
.y142{bottom:122.023221px;}
.yfe{bottom:126.181650px;}
.yb9{bottom:126.181800px;}
.y88{bottom:127.244850px;}
.y1d{bottom:134.128950px;}
.y143{bottom:136.388899px;}
.y1c{bottom:150.628950px;}
.y144{bottom:150.850121px;}
.y145{bottom:165.215798px;}
.y87{bottom:167.952750px;}
.yaa{bottom:168.873900px;}
.yfd{bottom:168.874050px;}
.y1b{bottom:170.128950px;}
.y140{bottom:172.901490px;}
.y58{bottom:174.873900px;}
.y13e{bottom:176.622450px;}
.y86{bottom:178.452750px;}
.yfc{bottom:182.374050px;}
.y13f{bottom:183.046650px;}
.ya9{bottom:185.373900px;}
.y1a{bottom:186.628950px;}
.y85{bottom:188.952750px;}
.y57{bottom:191.373900px;}
.yfb{bottom:195.874050px;}
.y84{bottom:199.452750px;}
.ya8{bottom:201.873900px;}
.y19{bottom:203.128950px;}
.y56{bottom:207.873900px;}
.y83{bottom:213.449250px;}
.ya7{bottom:218.373900px;}
.ydb{bottom:219.873900px;}
.y18{bottom:222.628950px;}
.y55{bottom:224.373900px;}
.ya6{bottom:234.873900px;}
.y17{bottom:239.128950px;}
.y54{bottom:240.873900px;}
.yda{bottom:249.873900px;}
.ya5{bottom:251.373900px;}
.y16{bottom:255.628950px;}
.y53{bottom:257.373900px;}
.yd9{bottom:264.873900px;}
.ya4{bottom:267.873900px;}
.y15{bottom:272.128950px;}
.y52{bottom:273.873900px;}
.yd8{bottom:279.873900px;}
.ya3{bottom:284.373900px;}
.y82{bottom:290.373900px;}
.y14{bottom:291.628950px;}
.y51{bottom:294.873900px;}
.ya2{bottom:300.873900px;}
.y81{bottom:306.873900px;}
.y13{bottom:308.128950px;}
.yd7{bottom:309.873900px;}
.y50{bottom:311.373900px;}
.ya1{bottom:317.373900px;}
.y12{bottom:320.365200px;}
.y80{bottom:323.373900px;}
.yd6{bottom:324.873900px;}
.y4f{bottom:327.873900px;}
.yfa{bottom:330.873900px;}
.ya0{bottom:333.873900px;}
.y139{bottom:339.412500px;}
.y7f{bottom:339.873900px;}
.y4e{bottom:344.373900px;}
.yf9{bottom:347.233200px;}
.y9f{bottom:350.373900px;}
.y7e{bottom:356.373900px;}
.y11{bottom:358.375050px;}
.y12f{bottom:359.820000px;}
.y129{bottom:359.925000px;}
.y4d{bottom:360.873900px;}
.y120{bottom:361.081500px;}
.y137{bottom:361.818000px;}
.yf8{bottom:364.014450px;}
.y9e{bottom:366.873900px;}
.y119{bottom:369.391500px;}
.y127{bottom:369.813000px;}
.y113{bottom:369.918000px;}
.y11e{bottom:370.443000px;}
.y7d{bottom:372.873900px;}
.y10{bottom:375.625050px;}
.y125{bottom:376.650000px;}
.y4c{bottom:377.373900px;}
.y12e{bottom:377.596500px;}
.y111{bottom:378.226500px;}
.y135{bottom:378.648000px;}
.y9d{bottom:383.373900px;}
.y117{bottom:386.538000px;}
.y12c{bottom:386.643000px;}
.y133{bottom:387.589500px;}
.y10f{bottom:388.537500px;}
.y7c{bottom:389.373900px;}
.yf7{bottom:389.422200px;}
.yf{bottom:392.875050px;}
.y4b{bottom:393.873900px;}
.y131{bottom:394.951500px;}
.y115{bottom:395.373000px;}
.y122{bottom:395.898000px;}
.y11b{bottom:396.529500px;}
.y10d{bottom:397.054500px;}
.y9c{bottom:399.873900px;}
.yf6{bottom:403.181550px;}
.y7b{bottom:405.873900px;}
.yff{bottom:409.573500px;}
.ye{bottom:410.125050px;}
.y4a{bottom:410.373900px;}
.y13b{bottom:411.573000px;}
.y9b{bottom:416.373900px;}
.yf5{bottom:416.941050px;}
.y7a{bottom:422.373900px;}
.y49{bottom:426.873900px;}
.yd{bottom:427.375050px;}
.yf4{bottom:430.700400px;}
.yb8{bottom:432.873900px;}
.y101{bottom:435.871500px;}
.y9a{bottom:435.873900px;}
.y79{bottom:438.873900px;}
.y48{bottom:443.373900px;}
.yf3{bottom:444.459750px;}
.yc{bottom:444.625050px;}
.yb7{bottom:449.373900px;}
.y99{bottom:452.373900px;}
.y78{bottom:455.373900px;}
.yf2{bottom:458.219100px;}
.y47{bottom:459.873900px;}
.y103{bottom:461.853000px;}
.yb{bottom:461.875050px;}
.yb6{bottom:465.873900px;}
.y98{bottom:468.873900px;}
.y77{bottom:471.873900px;}
.yf1{bottom:478.356450px;}
.ya{bottom:479.125050px;}
.yb5{bottom:482.373900px;}
.y97{bottom:485.373900px;}
.y105{bottom:488.149500px;}
.y76{bottom:491.373900px;}
.yf0{bottom:492.115800px;}
.y46{bottom:494.373900px;}
.y9{bottom:496.375050px;}
.y96{bottom:501.873900px;}
.yef{bottom:505.875150px;}
.y75{bottom:507.873900px;}
.y8{bottom:513.625050px;}
.y107{bottom:514.234500px;}
.y95{bottom:518.373900px;}
.yee{bottom:519.634500px;}
.y74{bottom:524.373900px;}
.yed{bottom:533.393850px;}
.y94{bottom:534.873900px;}
.y45{bottom:537.873900px;}
.y109{bottom:540.532500px;}
.y73{bottom:540.873900px;}
.y6{bottom:545.373900px;}
.yec{bottom:547.153350px;}
.y93{bottom:551.373900px;}
.y44{bottom:554.373900px;}
.y72{bottom:557.373900px;}
.y10b{bottom:566.514000px;}
.yeb{bottom:567.290700px;}
.y92{bottom:567.873900px;}
.y43{bottom:570.873900px;}
.y71{bottom:573.873900px;}
.yea{bottom:581.050050px;}
.y5{bottom:582.873900px;}
.y91{bottom:584.373900px;}
.y42{bottom:587.373900px;}
.y70{bottom:593.373900px;}
.ye9{bottom:594.809400px;}
.y90{bottom:600.873900px;}
.y41{bottom:603.873900px;}
.ye8{bottom:608.568750px;}
.y6f{bottom:609.873900px;}
.y4{bottom:614.373900px;}
.yb4{bottom:617.373900px;}
.y40{bottom:620.373900px;}
.ye7{bottom:622.328100px;}
.y6e{bottom:626.373900px;}
.yb3{bottom:633.873900px;}
.ye6{bottom:636.087450px;}
.ye5{bottom:636.379050px;}
.y3f{bottom:636.873900px;}
.y6d{bottom:642.873900px;}
.y3{bottom:645.873900px;}
.yb2{bottom:650.373900px;}
.ye4{bottom:650.779050px;}
.y3e{bottom:653.373900px;}
.y6c{bottom:659.373900px;}
.yd5{bottom:666.873900px;}
.y3d{bottom:669.873900px;}
.y6b{bottom:675.873900px;}
.ye3{bottom:676.186950px;}
.yd4{bottom:683.373900px;}
.y3c{bottom:686.373900px;}
.y2{bottom:690.873900px;}
.y6a{bottom:692.373900px;}
.ye2{bottom:692.386950px;}
.yd3{bottom:699.873900px;}
.y8f{bottom:702.873900px;}
.y3b{bottom:704.373900px;}
.ye1{bottom:708.586950px;}
.y69{bottom:708.873900px;}
.yd2{bottom:716.373900px;}
.y8e{bottom:719.373900px;}
.y3a{bottom:720.873900px;}
.ye0{bottom:724.786950px;}
.y68{bottom:725.373900px;}
.y1{bottom:732.873900px;}
.yb1{bottom:735.873900px;}
.y39{bottom:737.373900px;}
.ydf{bottom:742.468050px;}
.yd1{bottom:749.373900px;}
.y8d{bottom:750.873900px;}
.yb0{bottom:752.373900px;}
.y38{bottom:753.873900px;}
.y67{bottom:758.373900px;}
.y8c{bottom:765.873900px;}
.yaf{bottom:768.873900px;}
.y37{bottom:770.373900px;}
.y8b{bottom:780.873900px;}
.yae{bottom:785.373900px;}
.y36{bottom:786.873900px;}
.yd0{bottom:795.873900px;}
.y20{bottom:798.873900px;}
.yad{bottom:801.873900px;}
.y35{bottom:803.373900px;}
.yc9{bottom:805.596750px;}
.yac{bottom:818.373900px;}
.y34{bottom:819.873900px;}
.yc8{bottom:822.908310px;}
.yc7{bottom:832.935030px;}
.y33{bottom:836.373900px;}
.ycf{bottom:839.373900px;}
.yc6{bottom:842.961750px;}
.yc5{bottom:842.961900px;}
.y32{bottom:852.873900px;}
.yce{bottom:854.373900px;}
.yba{bottom:862.906200px;}
.y31{bottom:869.373900px;}
.ycd{bottom:884.373900px;}
.y30{bottom:885.873900px;}
.yab{bottom:887.373900px;}
.ybb{bottom:888.265446px;}
.ycc{bottom:899.373900px;}
.y66{bottom:902.373900px;}
.y2f{bottom:903.873900px;}
.ybc{bottom:913.624692px;}
.ycb{bottom:914.373900px;}
.y65{bottom:918.873900px;}
.y2e{bottom:920.373900px;}
.yca{bottom:922.807050px;}
.y13d{bottom:934.686000px;}
.y64{bottom:935.373900px;}
.y2d{bottom:936.873900px;}
.ybd{bottom:938.866960px;}
.y63{bottom:951.873900px;}
.y2c{bottom:953.373900px;}
.ybe{bottom:964.226206px;}
.y62{bottom:968.373900px;}
.y2b{bottom:969.873900px;}
.yde{bottom:972.873900px;}
.y61{bottom:984.873900px;}
.y2a{bottom:986.373900px;}
.ydd{bottom:989.373900px;}
.ybf{bottom:989.593807px;}
.y60{bottom:1001.373900px;}
.y29{bottom:1002.873900px;}
.ydc{bottom:1005.873900px;}
.yc0{bottom:1014.953053px;}
.y28{bottom:1019.373900px;}
.y5f{bottom:1022.373900px;}
.y27{bottom:1035.873900px;}
.y5e{bottom:1038.873900px;}
.yc1{bottom:1040.320655px;}
.y26{bottom:1052.373900px;}
.y5d{bottom:1055.373900px;}
.y7{bottom:1062.874050px;}
.yc2{bottom:1065.679901px;}
.y25{bottom:1068.873900px;}
.y5c{bottom:1071.873900px;}
.y24{bottom:1085.373900px;}
.y5b{bottom:1088.373900px;}
.y22{bottom:1090.403250px;}
.yc3{bottom:1091.047502px;}
.y5a{bottom:1104.873900px;}
.yc4{bottom:1116.398393px;}
.y23{bottom:1118.373900px;}
.y59{bottom:1121.373900px;}
.y8a{bottom:1195.757400px;}
.h23{height:18.196500px;}
.h24{height:18.303000px;}
.h1d{height:19.248000px;}
.h21{height:19.249500px;}
.h1f{height:19.353000px;}
.h20{height:19.354500px;}
.h22{height:19.356000px;}
.h26{height:21.457500px;}
.h2d{height:24.379105px;}
.hf{height:24.855797px;}
.h1e{height:28.181961px;}
.h25{height:29.183507px;}
.h16{height:29.847887px;}
.h15{height:29.848423px;}
.h2c{height:30.201005px;}
.h2b{height:31.274305px;}
.h27{height:34.570243px;}
.h2a{height:34.870850px;}
.h17{height:34.975338px;}
.h1b{height:36.706055px;}
.h10{height:37.508789px;}
.hb{height:37.884000px;}
.ha{height:38.841797px;}
.h14{height:42.867188px;}
.h13{height:43.828125px;}
.h18{height:44.390625px;}
.h12{height:45.098667px;}
.h1c{height:45.546387px;}
.h1a{height:47.165039px;}
.he{height:48.225586px;}
.h11{height:49.306641px;}
.h9{height:49.939453px;}
.hd{height:50.736000px;}
.h6{height:50.904785px;}
.h7{height:52.713867px;}
.h8{height:66.994453px;}
.h4{height:70.466667px;}
.hc{height:73.285333px;}
.h19{height:101.036639px;}
.h3{height:107.109333px;}
.h5{height:112.746667px;}
.h2{height:146.570667px;}
.h28{height:179.449500px;}
.h29{height:193.623000px;}
.h0{height:1288.347000px;}
.h1{height:1288.500000px;}
.w15{width:13.464000px;}
.w5{width:15.357000px;}
.w11{width:21.037500px;}
.w18{width:21.669000px;}
.w8{width:25.455000px;}
.wc{width:27.664500px;}
.wd{width:27.666000px;}
.w2{width:28.086000px;}
.w12{width:28.926000px;}
.w16{width:29.031000px;}
.w6{width:35.134500px;}
.wb{width:41.655000px;}
.w10{width:42.600000px;}
.w9{width:43.021500px;}
.w4{width:49.123500px;}
.w17{width:52.909500px;}
.wa{width:54.384000px;}
.w7{width:55.330500px;}
.w3{width:57.960000px;}
.we{width:64.480500px;}
.wf{width:66.585000px;}
.w13{width:66.690000px;}
.w14{width:70.162500px;}
.w19{width:357.165000px;}
.w0{width:918.424500px;}
.w1{width:918.750000px;}
.x0{left:0.000000px;}
.x37{left:4.185150px;}
.x1b{left:6.416400px;}
.x36{left:9.177600px;}
.x23{left:17.876100px;}
.x8{left:33.764100px;}
.x32{left:59.114238px;}
.x1a{left:68.670000px;}
.x17{left:70.712850px;}
.x10{left:80.374148px;}
.x9{left:84.325200px;}
.xe{left:88.440900px;}
.x1c{left:97.491000px;}
.x1d{left:100.122000px;}
.xf{left:101.196900px;}
.x1e{left:110.851500px;}
.x1{left:120.178050px;}
.x3{left:128.409450px;}
.x1f{left:155.767500px;}
.x11{left:159.653400px;}
.x22{left:161.236500px;}
.x20{left:168.493500px;}
.x21{left:173.332500px;}
.x12{left:208.359000px;}
.x24{left:214.146000px;}
.x16{left:220.391400px;}
.x26{left:222.034500px;}
.x25{left:226.453500px;}
.x5{left:231.307050px;}
.x4{left:248.314950px;}
.x2a{left:258.747000px;}
.x27{left:260.323500px;}
.x38{left:263.177400px;}
.x3a{left:264.401550px;}
.x28{left:273.051000px;}
.x29{left:280.941000px;}
.x39{left:282.005550px;}
.x14{left:285.458069px;}
.x13{left:292.117482px;}
.x2b{left:309.342000px;}
.x2c{left:321.334500px;}
.x2f{left:326.802000px;}
.x2d{left:330.906000px;}
.x2e{left:334.062000px;}
.x30{left:366.247500px;}
.x31{left:371.191500px;}
.x35{left:384.445500px;}
.x33{left:385.918500px;}
.x34{left:389.916000px;}
.x15{left:400.531392px;}
.xa{left:477.236250px;}
.x2{left:482.085300px;}
.x18{left:485.658600px;}
.xb{left:494.244150px;}
.xd{left:554.137200px;}
.x19{left:592.724400px;}
.x6{left:636.944850px;}
.xc{left:828.020250px;}
.x7{left:891.486000px;}
@media print{
.v2{vertical-align:-12.432000pt;}
.v3{vertical-align:-5.266133pt;}
.v5{vertical-align:-3.113565pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.160000pt;}
.v4{vertical-align:47.885867pt;}
.ls9{letter-spacing:-2.773333pt;}
.ls14{letter-spacing:-0.938667pt;}
.ls19{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.253333pt;}
.lsc{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.056100pt;}
.ls15{letter-spacing:0.213333pt;}
.lsf{letter-spacing:0.240000pt;}
.ls5{letter-spacing:0.253333pt;}
.ls12{letter-spacing:0.279467pt;}
.ls18{letter-spacing:0.330657pt;}
.ls7{letter-spacing:0.373333pt;}
.lse{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.666667pt;}
.ls8{letter-spacing:0.746667pt;}
.ls16{letter-spacing:0.853333pt;}
.ls2{letter-spacing:1.013333pt;}
.lsd{letter-spacing:1.040000pt;}
.ls0{letter-spacing:1.386667pt;}
.ls10{letter-spacing:1.440000pt;}
.ls1{letter-spacing:2.026667pt;}
.ls11{letter-spacing:2.080000pt;}
.ls4{letter-spacing:2.133333pt;}
.ws2e{word-spacing:-17.402667pt;}
.ws11{word-spacing:-12.480000pt;}
.ws10{word-spacing:-12.240000pt;}
.ws1{word-spacing:-8.997333pt;}
.ws14{word-spacing:-8.490667pt;}
.ws23{word-spacing:-7.427200pt;}
.ws24{word-spacing:-7.427067pt;}
.ws32{word-spacing:-7.012533pt;}
.ws12{word-spacing:-5.441333pt;}
.ws9{word-spacing:-2.482667pt;}
.ws5{word-spacing:-2.133333pt;}
.ws18{word-spacing:-2.080000pt;}
.ws2{word-spacing:-1.802667pt;}
.ws21{word-spacing:-1.776000pt;}
.ws3b{word-spacing:-1.722667pt;}
.ws3{word-spacing:-1.317333pt;}
.ws15{word-spacing:-0.901333pt;}
.ws4{word-spacing:-0.866667pt;}
.ws3a{word-spacing:-0.853333pt;}
.ws1a{word-spacing:-0.624000pt;}
.wse{word-spacing:-0.485333pt;}
.wsa{word-spacing:-0.480000pt;}
.wsf{word-spacing:-0.432000pt;}
.ws27{word-spacing:-0.426667pt;}
.ws16{word-spacing:-0.384000pt;}
.wsd{word-spacing:-0.373333pt;}
.ws8{word-spacing:-0.253333pt;}
.ws17{word-spacing:-0.240000pt;}
.ws35{word-spacing:-0.213333pt;}
.ws1c{word-spacing:-0.048000pt;}
.ws13{word-spacing:-0.042667pt;}
.ws34{word-spacing:-0.030060pt;}
.ws7{word-spacing:0.000000pt;}
.wsc{word-spacing:0.240000pt;}
.wsb{word-spacing:0.253333pt;}
.ws38{word-spacing:0.480000pt;}
.ws2c{word-spacing:0.528000pt;}
.ws39{word-spacing:1.488000pt;}
.ws19{word-spacing:2.208000pt;}
.ws2a{word-spacing:3.072000pt;}
.ws22{word-spacing:3.173333pt;}
.ws1f{word-spacing:3.312000pt;}
.ws37{word-spacing:3.552000pt;}
.ws2b{word-spacing:3.696000pt;}
.ws29{word-spacing:3.792000pt;}
.ws1b{word-spacing:4.752000pt;}
.ws2d{word-spacing:6.480000pt;}
.ws6{word-spacing:7.042667pt;}
.ws20{word-spacing:7.920000pt;}
.ws28{word-spacing:9.216000pt;}
.ws36{word-spacing:12.912000pt;}
.ws1e{word-spacing:13.440000pt;}
.ws1d{word-spacing:21.504000pt;}
.ws0{word-spacing:66.711467pt;}
.ws25{word-spacing:79.959402pt;}
.ws30{word-spacing:80.305067pt;}
.ws2f{word-spacing:143.622400pt;}
.ws31{word-spacing:170.715733pt;}
.ws26{word-spacing:241.681088pt;}
.ws33{word-spacing:246.904372pt;}
._14{margin-left:-2095.370133pt;}
._18{margin-left:-284.277075pt;}
._16{margin-left:-11.909867pt;}
._17{margin-left:-8.476800pt;}
._2{margin-left:-7.488000pt;}
._0{margin-left:-4.437333pt;}
._3{margin-left:-2.959467pt;}
._4{margin-left:-2.038400pt;}
._1{margin-left:-0.970667pt;}
._5{width:0.991467pt;}
._7{width:2.626133pt;}
._a{width:3.658133pt;}
._b{width:4.924800pt;}
._6{width:6.338400pt;}
._8{width:7.990133pt;}
._9{width:9.712800pt;}
._e{width:10.872000pt;}
._10{width:12.896000pt;}
._f{width:14.692800pt;}
._12{width:15.787200pt;}
._d{width:17.355200pt;}
._c{width:18.904533pt;}
._15{width:20.613867pt;}
._11{width:24.024000pt;}
._13{width:38.453333pt;}
.fsa{font-size:21.765333pt;}
.fs15{font-size:24.265067pt;}
.fs9{font-size:27.984000pt;}
.fs11{font-size:28.050133pt;}
.fse{font-size:28.100800pt;}
.fsd{font-size:29.708267pt;}
.fsc{font-size:29.708800pt;}
.fs14{font-size:30.059733pt;}
.fs12{font-size:34.408533pt;}
.fs13{font-size:34.707733pt;}
.fsf{font-size:34.811733pt;}
.fs7{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fs10{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:66.666667pt;}
.fs8{font-size:69.333333pt;}
.fs1{font-size:101.333333pt;}
.fs3{font-size:106.666667pt;}
.fs0{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y11d{bottom:1.500000pt;}
.y124{bottom:1.690000pt;}
.y14a{bottom:4.066800pt;}
.y13c{bottom:5.659467pt;}
.y11c{bottom:9.541333pt;}
.y123{bottom:9.731333pt;}
.y12d{bottom:10.379333pt;}
.y138{bottom:10.379600pt;}
.y102{bottom:10.382267pt;}
.y10e{bottom:10.383467pt;}
.y134{bottom:10.384133pt;}
.y10a{bottom:10.388667pt;}
.y106{bottom:10.468667pt;}
.y112{bottom:10.470667pt;}
.y11a{bottom:10.471467pt;}
.y126{bottom:10.471867pt;}
.y116{bottom:10.472000pt;}
.y118{bottom:10.472667pt;}
.y12a{bottom:10.473467pt;}
.y121{bottom:10.474133pt;}
.y100{bottom:10.474400pt;}
.y108{bottom:10.474667pt;}
.y132{bottom:10.475333pt;}
.y114{bottom:10.478133pt;}
.y110{bottom:10.478933pt;}
.y11f{bottom:10.565467pt;}
.y10c{bottom:10.565867pt;}
.y130{bottom:10.566800pt;}
.y12b{bottom:10.569333pt;}
.y136{bottom:10.570800pt;}
.y128{bottom:10.571467pt;}
.y104{bottom:10.571600pt;}
.y13a{bottom:10.944000pt;}
.y14b{bottom:16.842358pt;}
.y14c{bottom:29.611849pt;}
.y14d{bottom:42.466268pt;}
.y14e{bottom:55.314621pt;}
.y149{bottom:62.765360pt;}
.y146{bottom:65.371200pt;}
.y148{bottom:71.783280pt;}
.y147{bottom:80.801200pt;}
.y89{bottom:86.173200pt;}
.y21{bottom:86.238400pt;}
.y1f{bottom:89.892400pt;}
.y141{bottom:95.610667pt;}
.y1e{bottom:104.559067pt;}
.y142{bottom:108.465086pt;}
.yfe{bottom:112.161467pt;}
.yb9{bottom:112.161600pt;}
.y88{bottom:113.106533pt;}
.y1d{bottom:119.225733pt;}
.y143{bottom:121.234577pt;}
.y1c{bottom:133.892400pt;}
.y144{bottom:134.088996pt;}
.y145{bottom:146.858487pt;}
.y87{bottom:149.291333pt;}
.yaa{bottom:150.110133pt;}
.yfd{bottom:150.110267pt;}
.y1b{bottom:151.225733pt;}
.y140{bottom:153.690213pt;}
.y58{bottom:155.443467pt;}
.y13e{bottom:156.997733pt;}
.y86{bottom:158.624667pt;}
.yfc{bottom:162.110267pt;}
.y13f{bottom:162.708133pt;}
.ya9{bottom:164.776800pt;}
.y1a{bottom:165.892400pt;}
.y85{bottom:167.958000pt;}
.y57{bottom:170.110133pt;}
.yfb{bottom:174.110267pt;}
.y84{bottom:177.291333pt;}
.ya8{bottom:179.443467pt;}
.y19{bottom:180.559067pt;}
.y56{bottom:184.776800pt;}
.y83{bottom:189.732667pt;}
.ya7{bottom:194.110133pt;}
.ydb{bottom:195.443467pt;}
.y18{bottom:197.892400pt;}
.y55{bottom:199.443467pt;}
.ya6{bottom:208.776800pt;}
.y17{bottom:212.559067pt;}
.y54{bottom:214.110133pt;}
.yda{bottom:222.110133pt;}
.ya5{bottom:223.443467pt;}
.y16{bottom:227.225733pt;}
.y53{bottom:228.776800pt;}
.yd9{bottom:235.443467pt;}
.ya4{bottom:238.110133pt;}
.y15{bottom:241.892400pt;}
.y52{bottom:243.443467pt;}
.yd8{bottom:248.776800pt;}
.ya3{bottom:252.776800pt;}
.y82{bottom:258.110133pt;}
.y14{bottom:259.225733pt;}
.y51{bottom:262.110133pt;}
.ya2{bottom:267.443467pt;}
.y81{bottom:272.776800pt;}
.y13{bottom:273.892400pt;}
.yd7{bottom:275.443467pt;}
.y50{bottom:276.776800pt;}
.ya1{bottom:282.110133pt;}
.y12{bottom:284.769067pt;}
.y80{bottom:287.443467pt;}
.yd6{bottom:288.776800pt;}
.y4f{bottom:291.443467pt;}
.yfa{bottom:294.110133pt;}
.ya0{bottom:296.776800pt;}
.y139{bottom:301.700000pt;}
.y7f{bottom:302.110133pt;}
.y4e{bottom:306.110133pt;}
.yf9{bottom:308.651733pt;}
.y9f{bottom:311.443467pt;}
.y7e{bottom:316.776800pt;}
.y11{bottom:318.555600pt;}
.y12f{bottom:319.840000pt;}
.y129{bottom:319.933333pt;}
.y4d{bottom:320.776800pt;}
.y120{bottom:320.961333pt;}
.y137{bottom:321.616000pt;}
.yf8{bottom:323.568400pt;}
.y9e{bottom:326.110133pt;}
.y119{bottom:328.348000pt;}
.y127{bottom:328.722667pt;}
.y113{bottom:328.816000pt;}
.y11e{bottom:329.282667pt;}
.y7d{bottom:331.443467pt;}
.y10{bottom:333.888933pt;}
.y125{bottom:334.800000pt;}
.y4c{bottom:335.443467pt;}
.y12e{bottom:335.641333pt;}
.y111{bottom:336.201333pt;}
.y135{bottom:336.576000pt;}
.y9d{bottom:340.776800pt;}
.y117{bottom:343.589333pt;}
.y12c{bottom:343.682667pt;}
.y133{bottom:344.524000pt;}
.y10f{bottom:345.366667pt;}
.y7c{bottom:346.110133pt;}
.yf7{bottom:346.153067pt;}
.yf{bottom:349.222267pt;}
.y4b{bottom:350.110133pt;}
.y131{bottom:351.068000pt;}
.y115{bottom:351.442667pt;}
.y122{bottom:351.909333pt;}
.y11b{bottom:352.470667pt;}
.y10d{bottom:352.937333pt;}
.y9c{bottom:355.443467pt;}
.yf6{bottom:358.383600pt;}
.y7b{bottom:360.776800pt;}
.yff{bottom:364.065333pt;}
.ye{bottom:364.555600pt;}
.y4a{bottom:364.776800pt;}
.y13b{bottom:365.842667pt;}
.y9b{bottom:370.110133pt;}
.yf5{bottom:370.614267pt;}
.y7a{bottom:375.443467pt;}
.y49{bottom:379.443467pt;}
.yd{bottom:379.888933pt;}
.yf4{bottom:382.844800pt;}
.yb8{bottom:384.776800pt;}
.y101{bottom:387.441333pt;}
.y9a{bottom:387.443467pt;}
.y79{bottom:390.110133pt;}
.y48{bottom:394.110133pt;}
.yf3{bottom:395.075333pt;}
.yc{bottom:395.222267pt;}
.yb7{bottom:399.443467pt;}
.y99{bottom:402.110133pt;}
.y78{bottom:404.776800pt;}
.yf2{bottom:407.305867pt;}
.y47{bottom:408.776800pt;}
.y103{bottom:410.536000pt;}
.yb{bottom:410.555600pt;}
.yb6{bottom:414.110133pt;}
.y98{bottom:416.776800pt;}
.y77{bottom:419.443467pt;}
.yf1{bottom:425.205733pt;}
.ya{bottom:425.888933pt;}
.yb5{bottom:428.776800pt;}
.y97{bottom:431.443467pt;}
.y105{bottom:433.910667pt;}
.y76{bottom:436.776800pt;}
.yf0{bottom:437.436267pt;}
.y46{bottom:439.443467pt;}
.y9{bottom:441.222267pt;}
.y96{bottom:446.110133pt;}
.yef{bottom:449.666800pt;}
.y75{bottom:451.443467pt;}
.y8{bottom:456.555600pt;}
.y107{bottom:457.097333pt;}
.y95{bottom:460.776800pt;}
.yee{bottom:461.897333pt;}
.y74{bottom:466.110133pt;}
.yed{bottom:474.127867pt;}
.y94{bottom:475.443467pt;}
.y45{bottom:478.110133pt;}
.y109{bottom:480.473333pt;}
.y73{bottom:480.776800pt;}
.y6{bottom:484.776800pt;}
.yec{bottom:486.358533pt;}
.y93{bottom:490.110133pt;}
.y44{bottom:492.776800pt;}
.y72{bottom:495.443467pt;}
.y10b{bottom:503.568000pt;}
.yeb{bottom:504.258400pt;}
.y92{bottom:504.776800pt;}
.y43{bottom:507.443467pt;}
.y71{bottom:510.110133pt;}
.yea{bottom:516.488933pt;}
.y5{bottom:518.110133pt;}
.y91{bottom:519.443467pt;}
.y42{bottom:522.110133pt;}
.y70{bottom:527.443467pt;}
.ye9{bottom:528.719467pt;}
.y90{bottom:534.110133pt;}
.y41{bottom:536.776800pt;}
.ye8{bottom:540.950000pt;}
.y6f{bottom:542.110133pt;}
.y4{bottom:546.110133pt;}
.yb4{bottom:548.776800pt;}
.y40{bottom:551.443467pt;}
.ye7{bottom:553.180533pt;}
.y6e{bottom:556.776800pt;}
.yb3{bottom:563.443467pt;}
.ye6{bottom:565.411067pt;}
.ye5{bottom:565.670267pt;}
.y3f{bottom:566.110133pt;}
.y6d{bottom:571.443467pt;}
.y3{bottom:574.110133pt;}
.yb2{bottom:578.110133pt;}
.ye4{bottom:578.470267pt;}
.y3e{bottom:580.776800pt;}
.y6c{bottom:586.110133pt;}
.yd5{bottom:592.776800pt;}
.y3d{bottom:595.443467pt;}
.y6b{bottom:600.776800pt;}
.ye3{bottom:601.055067pt;}
.yd4{bottom:607.443467pt;}
.y3c{bottom:610.110133pt;}
.y2{bottom:614.110133pt;}
.y6a{bottom:615.443467pt;}
.ye2{bottom:615.455067pt;}
.yd3{bottom:622.110133pt;}
.y8f{bottom:624.776800pt;}
.y3b{bottom:626.110133pt;}
.ye1{bottom:629.855067pt;}
.y69{bottom:630.110133pt;}
.yd2{bottom:636.776800pt;}
.y8e{bottom:639.443467pt;}
.y3a{bottom:640.776800pt;}
.ye0{bottom:644.255067pt;}
.y68{bottom:644.776800pt;}
.y1{bottom:651.443467pt;}
.yb1{bottom:654.110133pt;}
.y39{bottom:655.443467pt;}
.ydf{bottom:659.971600pt;}
.yd1{bottom:666.110133pt;}
.y8d{bottom:667.443467pt;}
.yb0{bottom:668.776800pt;}
.y38{bottom:670.110133pt;}
.y67{bottom:674.110133pt;}
.y8c{bottom:680.776800pt;}
.yaf{bottom:683.443467pt;}
.y37{bottom:684.776800pt;}
.y8b{bottom:694.110133pt;}
.yae{bottom:698.110133pt;}
.y36{bottom:699.443467pt;}
.yd0{bottom:707.443467pt;}
.y20{bottom:710.110133pt;}
.yad{bottom:712.776800pt;}
.y35{bottom:714.110133pt;}
.yc9{bottom:716.086000pt;}
.yac{bottom:727.443467pt;}
.y34{bottom:728.776800pt;}
.yc8{bottom:731.474053pt;}
.yc7{bottom:740.386693pt;}
.y33{bottom:743.443467pt;}
.ycf{bottom:746.110133pt;}
.yc6{bottom:749.299333pt;}
.yc5{bottom:749.299467pt;}
.y32{bottom:758.110133pt;}
.yce{bottom:759.443467pt;}
.yba{bottom:767.027733pt;}
.y31{bottom:772.776800pt;}
.ycd{bottom:786.110133pt;}
.y30{bottom:787.443467pt;}
.yab{bottom:788.776800pt;}
.ybb{bottom:789.569285pt;}
.ycc{bottom:799.443467pt;}
.y66{bottom:802.110133pt;}
.y2f{bottom:803.443467pt;}
.ybc{bottom:812.110837pt;}
.ycb{bottom:812.776800pt;}
.y65{bottom:816.776800pt;}
.y2e{bottom:818.110133pt;}
.yca{bottom:820.272933pt;}
.y13d{bottom:830.832000pt;}
.y64{bottom:831.443467pt;}
.y2d{bottom:832.776800pt;}
.ybd{bottom:834.548409pt;}
.y63{bottom:846.110133pt;}
.y2c{bottom:847.443467pt;}
.ybe{bottom:857.089961pt;}
.y62{bottom:860.776800pt;}
.y2b{bottom:862.110133pt;}
.yde{bottom:864.776800pt;}
.y61{bottom:875.443467pt;}
.y2a{bottom:876.776800pt;}
.ydd{bottom:879.443467pt;}
.ybf{bottom:879.638940pt;}
.y60{bottom:890.110133pt;}
.y29{bottom:891.443467pt;}
.ydc{bottom:894.110133pt;}
.yc0{bottom:902.180492pt;}
.y28{bottom:906.110133pt;}
.y5f{bottom:908.776800pt;}
.y27{bottom:920.776800pt;}
.y5e{bottom:923.443467pt;}
.yc1{bottom:924.729471pt;}
.y26{bottom:935.443467pt;}
.y5d{bottom:938.110133pt;}
.y7{bottom:944.776933pt;}
.yc2{bottom:947.271023pt;}
.y25{bottom:950.110133pt;}
.y5c{bottom:952.776800pt;}
.y24{bottom:964.776800pt;}
.y5b{bottom:967.443467pt;}
.y22{bottom:969.247333pt;}
.yc3{bottom:969.820002pt;}
.y5a{bottom:982.110133pt;}
.yc4{bottom:992.354127pt;}
.y23{bottom:994.110133pt;}
.y59{bottom:996.776800pt;}
.y8a{bottom:1062.895467pt;}
.h23{height:16.174667pt;}
.h24{height:16.269333pt;}
.h1d{height:17.109333pt;}
.h21{height:17.110667pt;}
.h1f{height:17.202667pt;}
.h20{height:17.204000pt;}
.h22{height:17.205333pt;}
.h26{height:19.073333pt;}
.h2d{height:21.670316pt;}
.hf{height:22.094042pt;}
.h1e{height:25.050632pt;}
.h25{height:25.940895pt;}
.h16{height:26.531455pt;}
.h15{height:26.531931pt;}
.h2c{height:26.845338pt;}
.h2b{height:27.799382pt;}
.h27{height:30.729105pt;}
.h2a{height:30.996311pt;}
.h17{height:31.089190pt;}
.h1b{height:32.627604pt;}
.h10{height:33.341146pt;}
.hb{height:33.674667pt;}
.ha{height:34.526042pt;}
.h14{height:38.104167pt;}
.h13{height:38.958333pt;}
.h18{height:39.458333pt;}
.h12{height:40.087704pt;}
.h1c{height:40.485677pt;}
.h1a{height:41.924479pt;}
.he{height:42.867188pt;}
.h11{height:43.828125pt;}
.h9{height:44.390625pt;}
.hd{height:45.098667pt;}
.h6{height:45.248698pt;}
.h7{height:46.856771pt;}
.h8{height:59.550625pt;}
.h4{height:62.637037pt;}
.hc{height:65.142519pt;}
.h19{height:89.810346pt;}
.h3{height:95.208296pt;}
.h5{height:100.219259pt;}
.h2{height:130.285037pt;}
.h28{height:159.510667pt;}
.h29{height:172.109333pt;}
.h0{height:1145.197333pt;}
.h1{height:1145.333333pt;}
.w15{width:11.968000pt;}
.w5{width:13.650667pt;}
.w11{width:18.700000pt;}
.w18{width:19.261333pt;}
.w8{width:22.626667pt;}
.wc{width:24.590667pt;}
.wd{width:24.592000pt;}
.w2{width:24.965333pt;}
.w12{width:25.712000pt;}
.w16{width:25.805333pt;}
.w6{width:31.230667pt;}
.wb{width:37.026667pt;}
.w10{width:37.866667pt;}
.w9{width:38.241333pt;}
.w4{width:43.665333pt;}
.w17{width:47.030667pt;}
.wa{width:48.341333pt;}
.w7{width:49.182667pt;}
.w3{width:51.520000pt;}
.we{width:57.316000pt;}
.wf{width:59.186667pt;}
.w13{width:59.280000pt;}
.w14{width:62.366667pt;}
.w19{width:317.480000pt;}
.w0{width:816.377333pt;}
.w1{width:816.666667pt;}
.x0{left:0.000000pt;}
.x37{left:3.720133pt;}
.x1b{left:5.703467pt;}
.x36{left:8.157867pt;}
.x23{left:15.889867pt;}
.x8{left:30.012533pt;}
.x32{left:52.545989pt;}
.x1a{left:61.040000pt;}
.x17{left:62.855867pt;}
.x10{left:71.443687pt;}
.x9{left:74.955733pt;}
.xe{left:78.614133pt;}
.x1c{left:86.658667pt;}
.x1d{left:88.997333pt;}
.xf{left:89.952800pt;}
.x1e{left:98.534667pt;}
.x1{left:106.824933pt;}
.x3{left:114.141733pt;}
.x1f{left:138.460000pt;}
.x11{left:141.914133pt;}
.x22{left:143.321333pt;}
.x20{left:149.772000pt;}
.x21{left:154.073333pt;}
.x12{left:185.208000pt;}
.x24{left:190.352000pt;}
.x16{left:195.903467pt;}
.x26{left:197.364000pt;}
.x25{left:201.292000pt;}
.x5{left:205.606267pt;}
.x4{left:220.724400pt;}
.x2a{left:229.997333pt;}
.x27{left:231.398667pt;}
.x38{left:233.935467pt;}
.x3a{left:235.023600pt;}
.x28{left:242.712000pt;}
.x29{left:249.725333pt;}
.x39{left:250.671600pt;}
.x14{left:253.740506pt;}
.x13{left:259.659984pt;}
.x2b{left:274.970667pt;}
.x2c{left:285.630667pt;}
.x2f{left:290.490667pt;}
.x2d{left:294.138667pt;}
.x2e{left:296.944000pt;}
.x30{left:325.553333pt;}
.x31{left:329.948000pt;}
.x35{left:341.729333pt;}
.x33{left:343.038667pt;}
.x34{left:346.592000pt;}
.x15{left:356.027904pt;}
.xa{left:424.210000pt;}
.x2{left:428.520267pt;}
.x18{left:431.696533pt;}
.xb{left:439.328133pt;}
.xd{left:492.566400pt;}
.x19{left:526.866133pt;}
.x6{left:566.173200pt;}
.xc{left:736.018000pt;}
.x7{left:792.432000pt;}
}




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