
    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_86f55c2a53a5d91732db618b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_560c8fd9a454d484b15af133.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.968262;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_649161566d4959c5295eb610.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.963379;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_2ea6b2cafdc9c4a007265b4f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976111;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_ac4b996032dce046eaedad2e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_711b4ce2db73320e882cd990.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.862305;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_81f8433b707e11c372b1a04f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.032715;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_85411dcd4d4ea15d99c9779b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976210;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_54a2962e26245a688c3aeab8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.026855;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_aa047959ff2bfb96b6f82b94.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.011230;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_2a3a938128ad07e4408e8bc5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.976607;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_46372d17892133123d6cbb30.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969881;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_503d9c71051ec7f764a351e2.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a5204ecbb932793d9cddd0fa.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.970703;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_b9bef1651426bda451211303.woff2')format("woff");}.fff{font-family:fff;line-height:0.976599;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_3ecaec9998e419d14689ddce.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.976562;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_45bc5b53050b843d9555e3fc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.973633;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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(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);}
.v3{vertical-align:-19.980600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls9{letter-spacing:-4.380000px;}
.ls10{letter-spacing:-3.840000px;}
.ls13{letter-spacing:-3.000000px;}
.ls17{letter-spacing:-2.646000px;}
.ls14{letter-spacing:-1.200000px;}
.ls18{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.780000px;}
.lsd{letter-spacing:-0.660000px;}
.lsc{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.480000px;}
.lsa{letter-spacing:-0.454740px;}
.lse{letter-spacing:-0.240000px;}
.ls4{letter-spacing:-0.204000px;}
.ls1a{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.139920px;}
.ls19{letter-spacing:-0.120000px;}
.ls1b{letter-spacing:-0.054000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.682440px;}
.ls6{letter-spacing:0.683040px;}
.ls5{letter-spacing:1.200000px;}
.ls1c{letter-spacing:1.944000px;}
.ls15{letter-spacing:2.052000px;}
.ls16{letter-spacing:2.376000px;}
.ls12{letter-spacing:8.436000px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.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;}
}
.ws0{word-spacing:-25.398000px;}
.ws8{word-spacing:-17.928000px;}
.ws3d{word-spacing:-16.434000px;}
.ws14{word-spacing:-15.900000px;}
.ws28{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.880000px;}
.ws9{word-spacing:-14.700000px;}
.ws3a{word-spacing:-14.580000px;}
.ws3c{word-spacing:-14.520000px;}
.ws22{word-spacing:-14.460000px;}
.ws1d{word-spacing:-14.400000px;}
.ws1e{word-spacing:-14.220000px;}
.ws20{word-spacing:-14.100000px;}
.ws17{word-spacing:-13.920000px;}
.ws35{word-spacing:-13.446000px;}
.ws3e{word-spacing:-13.392000px;}
.ws40{word-spacing:-13.338000px;}
.ws3f{word-spacing:-13.230000px;}
.wsa{word-spacing:-12.366000px;}
.ws42{word-spacing:-12.312000px;}
.wsc{word-spacing:-12.150000px;}
.wsb{word-spacing:-12.042000px;}
.ws27{word-spacing:-11.880000px;}
.ws4{word-spacing:-11.596800px;}
.ws5{word-spacing:-10.896000px;}
.ws11{word-spacing:-10.704000px;}
.ws6{word-spacing:-9.892800px;}
.ws3{word-spacing:-9.618000px;}
.ws2{word-spacing:-9.542544px;}
.ws13{word-spacing:-8.675040px;}
.ws21{word-spacing:-8.535120px;}
.ws18{word-spacing:-8.220300px;}
.ws31{word-spacing:-3.672000px;}
.ws38{word-spacing:-3.240000px;}
.ws2e{word-spacing:-2.376000px;}
.ws37{word-spacing:-2.160000px;}
.ws2c{word-spacing:-2.052000px;}
.ws15{word-spacing:-1.200000px;}
.ws33{word-spacing:-1.080000px;}
.ws29{word-spacing:-0.600000px;}
.ws36{word-spacing:-0.594000px;}
.wsf{word-spacing:-0.540000px;}
.wsd{word-spacing:0.000000px;}
.ws41{word-spacing:0.054000px;}
.ws16{word-spacing:0.120000px;}
.ws32{word-spacing:0.162000px;}
.ws3b{word-spacing:0.180000px;}
.wse{word-spacing:0.204000px;}
.ws25{word-spacing:0.240000px;}
.ws1c{word-spacing:0.454740px;}
.ws1f{word-spacing:0.480000px;}
.ws23{word-spacing:0.600000px;}
.ws24{word-spacing:0.660000px;}
.ws19{word-spacing:0.780000px;}
.ws34{word-spacing:0.810000px;}
.ws2d{word-spacing:1.026000px;}
.ws39{word-spacing:1.080000px;}
.ws2a{word-spacing:1.200000px;}
.ws2f{word-spacing:2.376000px;}
.ws30{word-spacing:2.646000px;}
.ws10{word-spacing:3.294000px;}
.ws1b{word-spacing:3.600000px;}
.ws26{word-spacing:3.840000px;}
.ws1a{word-spacing:4.380000px;}
.ws2b{word-spacing:5.724000px;}
.ws43{word-spacing:6.858000px;}
.ws1{word-spacing:33.651135px;}
._2{margin-left:-10.441200px;}
._11{margin-left:-8.434800px;}
._7{margin-left:-6.746634px;}
._8{margin-left:-5.721966px;}
._13{margin-left:-4.499922px;}
._3{margin-left:-3.444078px;}
._6{margin-left:-2.176566px;}
._0{margin-left:-1.122000px;}
._5{width:1.147200px;}
._1{width:2.458200px;}
._e{width:4.282200px;}
._c{width:6.026400px;}
._d{width:7.462800px;}
._a{width:9.277200px;}
._9{width:10.281600px;}
._f{width:12.306600px;}
._12{width:13.392000px;}
._b{width:15.113478px;}
._19{width:16.189122px;}
._1a{width:17.776800px;}
._1b{width:18.856800px;}
._1c{width:20.817000px;}
._14{width:24.219600px;}
._10{width:25.466400px;}
._17{width:31.557600px;}
._4{width:36.369600px;}
._16{width:43.018200px;}
._15{width:44.089800px;}
._18{width:46.661400px;}
.fc1{color:rgb(81,126,140);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y39{bottom:71.212050px;}
.y3a{bottom:75.040050px;}
.y12d{bottom:112.790850px;}
.y9a{bottom:113.078700px;}
.y6c{bottom:113.078850px;}
.y10{bottom:117.205050px;}
.y2a{bottom:117.212550px;}
.yf{bottom:131.601450px;}
.y12c{bottom:133.796850px;}
.yfd{bottom:134.048850px;}
.y99{bottom:134.078700px;}
.y6b{bottom:134.078850px;}
.y29{bottom:138.212550px;}
.ydb{bottom:139.529250px;}
.ye{bottom:145.997850px;}
.y12b{bottom:154.802850px;}
.yfc{bottom:155.054850px;}
.y98{bottom:155.078700px;}
.y6a{bottom:155.078850px;}
.y28{bottom:159.212550px;}
.y12a{bottom:175.808850px;}
.y13d{bottom:176.018850px;}
.yfb{bottom:176.060850px;}
.ya8{bottom:176.078700px;}
.y69{bottom:176.078850px;}
.y27{bottom:180.212550px;}
.y36{bottom:189.047550px;}
.y97{bottom:189.513450px;}
.y129{bottom:196.814850px;}
.y13c{bottom:197.024850px;}
.yfa{bottom:197.066850px;}
.ya7{bottom:197.078700px;}
.y68{bottom:197.078850px;}
.y26{bottom:201.212550px;}
.yda{bottom:202.936950px;}
.y35{bottom:207.043050px;}
.y128{bottom:217.820850px;}
.y13b{bottom:218.030850px;}
.yf9{bottom:218.072850px;}
.ya6{bottom:218.078700px;}
.y67{bottom:218.078850px;}
.y96{bottom:221.811000px;}
.y25{bottom:222.212550px;}
.y34{bottom:225.038550px;}
.yd9{bottom:232.440900px;}
.y127{bottom:238.826850px;}
.y13a{bottom:239.036850px;}
.ya5{bottom:239.078700px;}
.y66{bottom:239.078850px;}
.y33{bottom:243.034050px;}
.y24{bottom:256.944450px;}
.y126{bottom:259.832850px;}
.y139{bottom:260.042850px;}
.ya4{bottom:260.078700px;}
.y65{bottom:260.078850px;}
.y32{bottom:261.029550px;}
.yd5{bottom:273.092550px;}
.yf8{bottom:274.440900px;}
.ybb{bottom:276.664800px;}
.y31{bottom:279.025050px;}
.y125{bottom:280.838850px;}
.y138{bottom:281.048850px;}
.y95{bottom:281.078700px;}
.y64{bottom:281.078850px;}
.yd4{bottom:292.897050px;}
.yba{bottom:296.469300px;}
.y30{bottom:297.020550px;}
.y124{bottom:301.844850px;}
.y137{bottom:302.054850px;}
.y94{bottom:302.078700px;}
.y63{bottom:302.078850px;}
.yd3{bottom:312.701550px;}
.y2f{bottom:315.016050px;}
.yc4{bottom:315.026550px;}
.yb9{bottom:316.273800px;}
.ya3{bottom:316.432050px;}
.y9d{bottom:316.441050px;}
.y123{bottom:322.850850px;}
.yf7{bottom:323.060850px;}
.y93{bottom:323.078700px;}
.y62{bottom:323.078850px;}
.yb2{bottom:330.483450px;}
.yd2{bottom:332.506050px;}
.yb8{bottom:336.078300px;}
.ya2{bottom:337.436550px;}
.yd8{bottom:337.440900px;}
.y122{bottom:343.856850px;}
.yf6{bottom:344.066850px;}
.y92{bottom:344.078700px;}
.y61{bottom:344.078850px;}
.y2e{bottom:350.021550px;}
.y23{bottom:350.223450px;}
.yb1{bottom:350.287950px;}
.ycb{bottom:355.475100px;}
.yb7{bottom:355.882800px;}
.ya1{bottom:358.441050px;}
.yc3{bottom:362.243550px;}
.y121{bottom:364.862850px;}
.yf5{bottom:365.072850px;}
.y91{bottom:365.078700px;}
.y60{bottom:365.078850px;}
.y2d{bottom:368.021550px;}
.y22{bottom:370.027950px;}
.yb0{bottom:370.092450px;}
.yca{bottom:375.279600px;}
.yb6{bottom:375.687300px;}
.yc2{bottom:382.048050px;}
.y120{bottom:385.868850px;}
.y2c{bottom:386.021550px;}
.y90{bottom:386.078700px;}
.y5f{bottom:386.078850px;}
.yaf{bottom:389.896950px;}
.yc9{bottom:395.084100px;}
.yb5{bottom:395.491800px;}
.yc1{bottom:401.852550px;}
.y2b{bottom:404.021550px;}
.y11f{bottom:406.874850px;}
.y8f{bottom:407.078700px;}
.y5e{bottom:407.078850px;}
.yae{bottom:409.701450px;}
.y21{bottom:411.024750px;}
.yf4{bottom:412.529400px;}
.yc8{bottom:414.888600px;}
.yb4{bottom:415.296300px;}
.y136{bottom:420.513600px;}
.yc0{bottom:421.657050px;}
.y11e{bottom:427.880850px;}
.y8e{bottom:428.078700px;}
.y5d{bottom:428.078850px;}
.yad{bottom:429.505950px;}
.y20{bottom:430.829250px;}
.yc7{bottom:434.693100px;}
.yb3{bottom:435.100800px;}
.ybf{bottom:441.461550px;}
.y9e{bottom:442.441050px;}
.y11d{bottom:448.886850px;}
.yf3{bottom:449.072850px;}
.y8d{bottom:449.078700px;}
.y5c{bottom:449.078850px;}
.yac{bottom:449.310450px;}
.y1f{bottom:450.633750px;}
.y135{bottom:452.811150px;}
.yc6{bottom:454.497600px;}
.ybe{bottom:461.266050px;}
.ya0{bottom:462.513600px;}
.yab{bottom:469.114950px;}
.y11c{bottom:469.892850px;}
.yf2{bottom:470.072850px;}
.y8c{bottom:470.078700px;}
.y5b{bottom:470.078850px;}
.y1e{bottom:470.438250px;}
.yc5{bottom:474.302100px;}
.ybd{bottom:481.070550px;}
.yaa{bottom:488.919450px;}
.y1d{bottom:490.242750px;}
.y11b{bottom:490.898850px;}
.yf1{bottom:491.072850px;}
.y8b{bottom:491.078700px;}
.y5a{bottom:491.078850px;}
.y9f{bottom:494.811150px;}
.ybc{bottom:500.875050px;}
.ya9{bottom:508.723950px;}
.y1c{bottom:510.047250px;}
.y11a{bottom:511.904850px;}
.y134{bottom:512.030850px;}
.yf0{bottom:512.072850px;}
.y8a{bottom:512.078700px;}
.y59{bottom:512.078850px;}
.y1b{bottom:529.851750px;}
.y119{bottom:532.910850px;}
.y133{bottom:533.036850px;}
.yef{bottom:533.072850px;}
.y89{bottom:533.078700px;}
.y58{bottom:533.078850px;}
.y1a{bottom:549.656250px;}
.y118{bottom:553.916850px;}
.y132{bottom:554.042850px;}
.y88{bottom:554.078700px;}
.y57{bottom:554.078850px;}
.y19{bottom:569.460750px;}
.y117{bottom:574.922850px;}
.y131{bottom:575.048850px;}
.y87{bottom:575.078700px;}
.y56{bottom:575.078850px;}
.yee{bottom:580.529400px;}
.y18{bottom:589.265250px;}
.y116{bottom:595.928850px;}
.y130{bottom:596.054850px;}
.y86{bottom:596.078700px;}
.y55{bottom:596.078850px;}
.y17{bottom:609.069750px;}
.y115{bottom:616.934850px;}
.yed{bottom:617.060850px;}
.y85{bottom:617.078700px;}
.y54{bottom:617.078850px;}
.y16{bottom:628.874250px;}
.y114{bottom:637.940850px;}
.yec{bottom:638.066850px;}
.y84{bottom:638.078700px;}
.y53{bottom:638.078850px;}
.y15{bottom:648.678750px;}
.y113{bottom:658.946850px;}
.yeb{bottom:659.072850px;}
.y83{bottom:659.078700px;}
.y52{bottom:659.078850px;}
.y14{bottom:668.483250px;}
.y112{bottom:679.952850px;}
.y82{bottom:680.078700px;}
.y51{bottom:680.078850px;}
.y13{bottom:688.287750px;}
.y9c{bottom:694.441050px;}
.y111{bottom:700.958850px;}
.y81{bottom:701.078700px;}
.y50{bottom:701.078850px;}
.yd1{bottom:705.679950px;}
.yea{bottom:706.529400px;}
.y12f{bottom:714.513600px;}
.y12{bottom:719.385150px;}
.y110{bottom:721.964850px;}
.y80{bottom:722.078700px;}
.y4f{bottom:722.078850px;}
.yd0{bottom:725.484450px;}
.y10f{bottom:742.970850px;}
.ye9{bottom:743.018850px;}
.y7f{bottom:743.078700px;}
.y4e{bottom:743.078850px;}
.ycf{bottom:745.288950px;}
.y12e{bottom:746.811150px;}
.y10e{bottom:763.976850px;}
.ye8{bottom:764.024850px;}
.y7e{bottom:764.078700px;}
.y4d{bottom:764.078850px;}
.yce{bottom:765.093450px;}
.ycd{bottom:784.897950px;}
.y10d{bottom:784.982850px;}
.ye7{bottom:785.030850px;}
.y7d{bottom:785.078700px;}
.y4c{bottom:785.078850px;}
.yd{bottom:798.666900px;}
.ycc{bottom:804.702450px;}
.y10c{bottom:805.988850px;}
.ye6{bottom:806.036850px;}
.y7c{bottom:806.078700px;}
.y4b{bottom:806.078850px;}
.yc{bottom:816.666900px;}
.y10b{bottom:826.994850px;}
.ye5{bottom:827.042850px;}
.y7b{bottom:827.078700px;}
.y4a{bottom:827.078850px;}
.yb{bottom:834.666900px;}
.y10a{bottom:848.000850px;}
.ye4{bottom:848.048850px;}
.y7a{bottom:848.078700px;}
.y49{bottom:848.078850px;}
.ya{bottom:852.666900px;}
.y109{bottom:869.006850px;}
.ye3{bottom:869.054850px;}
.y79{bottom:869.078700px;}
.y48{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.y8{bottom:888.666900px;}
.y108{bottom:890.012850px;}
.ye2{bottom:890.060850px;}
.y78{bottom:890.078700px;}
.y47{bottom:890.078850px;}
.y7{bottom:906.666900px;}
.y107{bottom:911.018850px;}
.ye1{bottom:911.066850px;}
.y77{bottom:911.078700px;}
.y46{bottom:911.078850px;}
.y6{bottom:924.666900px;}
.y106{bottom:932.024850px;}
.ye0{bottom:932.072850px;}
.y76{bottom:932.078700px;}
.y45{bottom:932.078850px;}
.y105{bottom:953.030850px;}
.y75{bottom:953.078700px;}
.y44{bottom:953.078850px;}
.y5{bottom:959.674800px;}
.y9b{bottom:967.441050px;}
.y104{bottom:974.036850px;}
.y74{bottom:974.078700px;}
.y43{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.ydf{bottom:979.529250px;}
.yd6{bottom:988.441050px;}
.y103{bottom:995.042850px;}
.y73{bottom:995.078700px;}
.y42{bottom:995.078850px;}
.y102{bottom:1016.048850px;}
.yde{bottom:1016.072850px;}
.y72{bottom:1016.078700px;}
.y41{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y101{bottom:1037.054850px;}
.y71{bottom:1037.078700px;}
.y40{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.y100{bottom:1058.060850px;}
.y70{bottom:1058.078700px;}
.y3f{bottom:1058.078850px;}
.ydd{bottom:1063.529250px;}
.yff{bottom:1079.066850px;}
.y6f{bottom:1079.078700px;}
.y3e{bottom:1079.078850px;}
.yfe{bottom:1100.072850px;}
.y6e{bottom:1100.078700px;}
.y3d{bottom:1100.078850px;}
.y11{bottom:1109.815500px;}
.yd7{bottom:1111.570800px;}
.y6d{bottom:1121.078700px;}
.y3c{bottom:1121.078850px;}
.ydc{bottom:1125.451800px;}
.y38{bottom:1159.189500px;}
.y37{bottom:1178.689500px;}
.y3b{bottom:1178.692050px;}
.h9{height:34.446094px;}
.h8{height:34.657031px;}
.h7{height:36.542039px;}
.h12{height:38.273438px;}
.h2{height:38.507812px;}
.h6{height:38.531250px;}
.ha{height:40.500000px;}
.h11{height:41.053711px;}
.h10{height:43.057617px;}
.hf{height:43.321289px;}
.h16{height:45.615234px;}
.hc{height:47.118164px;}
.h15{height:47.142164px;}
.hb{height:47.343750px;}
.h14{height:50.176758px;}
.h13{height:52.078125px;}
.he{height:52.353516px;}
.hd{height:56.812500px;}
.h5{height:57.588867px;}
.h3{height:77.545898px;}
.h4{height:77.647510px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.987750px;}
.xb{left:107.067450px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.x5{left:300.189000px;}
.xd{left:317.196000px;}
.x4{left:396.050700px;}
.xc{left:469.959450px;}
.xa{left:649.167600px;}
.x9{left:667.143600px;}
.xe{left:806.443650px;}
.x1{left:813.005250px;}
@media print{
.v3{vertical-align:-17.760533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls9{letter-spacing:-3.893333pt;}
.ls10{letter-spacing:-3.413333pt;}
.ls13{letter-spacing:-2.666667pt;}
.ls17{letter-spacing:-2.352000pt;}
.ls14{letter-spacing:-1.066667pt;}
.ls18{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.693333pt;}
.lsd{letter-spacing:-0.586667pt;}
.lsc{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.426667pt;}
.lsa{letter-spacing:-0.404213pt;}
.lse{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:-0.181333pt;}
.ls1a{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.124373pt;}
.ls19{letter-spacing:-0.106667pt;}
.ls1b{letter-spacing:-0.048000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.606613pt;}
.ls6{letter-spacing:0.607147pt;}
.ls5{letter-spacing:1.066667pt;}
.ls1c{letter-spacing:1.728000pt;}
.ls15{letter-spacing:1.824000pt;}
.ls16{letter-spacing:2.112000pt;}
.ls12{letter-spacing:7.498667pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ws0{word-spacing:-22.576000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws3d{word-spacing:-14.608000pt;}
.ws14{word-spacing:-14.133333pt;}
.ws28{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.226667pt;}
.ws9{word-spacing:-13.066667pt;}
.ws3a{word-spacing:-12.960000pt;}
.ws3c{word-spacing:-12.906667pt;}
.ws22{word-spacing:-12.853333pt;}
.ws1d{word-spacing:-12.800000pt;}
.ws1e{word-spacing:-12.640000pt;}
.ws20{word-spacing:-12.533333pt;}
.ws17{word-spacing:-12.373333pt;}
.ws35{word-spacing:-11.952000pt;}
.ws3e{word-spacing:-11.904000pt;}
.ws40{word-spacing:-11.856000pt;}
.ws3f{word-spacing:-11.760000pt;}
.wsa{word-spacing:-10.992000pt;}
.ws42{word-spacing:-10.944000pt;}
.wsc{word-spacing:-10.800000pt;}
.wsb{word-spacing:-10.704000pt;}
.ws27{word-spacing:-10.560000pt;}
.ws4{word-spacing:-10.308267pt;}
.ws5{word-spacing:-9.685333pt;}
.ws11{word-spacing:-9.514667pt;}
.ws6{word-spacing:-8.793600pt;}
.ws3{word-spacing:-8.549333pt;}
.ws2{word-spacing:-8.482261pt;}
.ws13{word-spacing:-7.711147pt;}
.ws21{word-spacing:-7.586773pt;}
.ws18{word-spacing:-7.306933pt;}
.ws31{word-spacing:-3.264000pt;}
.ws38{word-spacing:-2.880000pt;}
.ws2e{word-spacing:-2.112000pt;}
.ws37{word-spacing:-1.920000pt;}
.ws2c{word-spacing:-1.824000pt;}
.ws15{word-spacing:-1.066667pt;}
.ws33{word-spacing:-0.960000pt;}
.ws29{word-spacing:-0.533333pt;}
.ws36{word-spacing:-0.528000pt;}
.wsf{word-spacing:-0.480000pt;}
.wsd{word-spacing:0.000000pt;}
.ws41{word-spacing:0.048000pt;}
.ws16{word-spacing:0.106667pt;}
.ws32{word-spacing:0.144000pt;}
.ws3b{word-spacing:0.160000pt;}
.wse{word-spacing:0.181333pt;}
.ws25{word-spacing:0.213333pt;}
.ws1c{word-spacing:0.404213pt;}
.ws1f{word-spacing:0.426667pt;}
.ws23{word-spacing:0.533333pt;}
.ws24{word-spacing:0.586667pt;}
.ws19{word-spacing:0.693333pt;}
.ws34{word-spacing:0.720000pt;}
.ws2d{word-spacing:0.912000pt;}
.ws39{word-spacing:0.960000pt;}
.ws2a{word-spacing:1.066667pt;}
.ws2f{word-spacing:2.112000pt;}
.ws30{word-spacing:2.352000pt;}
.ws10{word-spacing:2.928000pt;}
.ws1b{word-spacing:3.200000pt;}
.ws26{word-spacing:3.413333pt;}
.ws1a{word-spacing:3.893333pt;}
.ws2b{word-spacing:5.088000pt;}
.ws43{word-spacing:6.096000pt;}
.ws1{word-spacing:29.912120pt;}
._2{margin-left:-9.281067pt;}
._11{margin-left:-7.497600pt;}
._7{margin-left:-5.997008pt;}
._8{margin-left:-5.086192pt;}
._13{margin-left:-3.999931pt;}
._3{margin-left:-3.061403pt;}
._6{margin-left:-1.934725pt;}
._0{margin-left:-0.997333pt;}
._5{width:1.019733pt;}
._1{width:2.185067pt;}
._e{width:3.806400pt;}
._c{width:5.356800pt;}
._d{width:6.633600pt;}
._a{width:8.246400pt;}
._9{width:9.139200pt;}
._f{width:10.939200pt;}
._12{width:11.904000pt;}
._b{width:13.434203pt;}
._19{width:14.390331pt;}
._1a{width:15.801600pt;}
._1b{width:16.761600pt;}
._1c{width:18.504000pt;}
._14{width:21.528533pt;}
._10{width:22.636800pt;}
._17{width:28.051200pt;}
._4{width:32.328533pt;}
._16{width:38.238400pt;}
._15{width:39.190933pt;}
._18{width:41.476800pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y39{bottom:63.299600pt;}
.y3a{bottom:66.702267pt;}
.y12d{bottom:100.258533pt;}
.y9a{bottom:100.514400pt;}
.y6c{bottom:100.514533pt;}
.y10{bottom:104.182267pt;}
.y2a{bottom:104.188933pt;}
.yf{bottom:116.979067pt;}
.y12c{bottom:118.930533pt;}
.yfd{bottom:119.154533pt;}
.y99{bottom:119.181067pt;}
.y6b{bottom:119.181200pt;}
.y29{bottom:122.855600pt;}
.ydb{bottom:124.026000pt;}
.ye{bottom:129.775867pt;}
.y12b{bottom:137.602533pt;}
.yfc{bottom:137.826533pt;}
.y98{bottom:137.847733pt;}
.y6a{bottom:137.847867pt;}
.y28{bottom:141.522267pt;}
.y12a{bottom:156.274533pt;}
.y13d{bottom:156.461200pt;}
.yfb{bottom:156.498533pt;}
.ya8{bottom:156.514400pt;}
.y69{bottom:156.514533pt;}
.y27{bottom:160.188933pt;}
.y36{bottom:168.042267pt;}
.y97{bottom:168.456400pt;}
.y129{bottom:174.946533pt;}
.y13c{bottom:175.133200pt;}
.yfa{bottom:175.170533pt;}
.ya7{bottom:175.181067pt;}
.y68{bottom:175.181200pt;}
.y26{bottom:178.855600pt;}
.yda{bottom:180.388400pt;}
.y35{bottom:184.038267pt;}
.y128{bottom:193.618533pt;}
.y13b{bottom:193.805200pt;}
.yf9{bottom:193.842533pt;}
.ya6{bottom:193.847733pt;}
.y67{bottom:193.847867pt;}
.y96{bottom:197.165333pt;}
.y25{bottom:197.522267pt;}
.y34{bottom:200.034267pt;}
.yd9{bottom:206.614133pt;}
.y127{bottom:212.290533pt;}
.y13a{bottom:212.477200pt;}
.ya5{bottom:212.514400pt;}
.y66{bottom:212.514533pt;}
.y33{bottom:216.030267pt;}
.y24{bottom:228.395067pt;}
.y126{bottom:230.962533pt;}
.y139{bottom:231.149200pt;}
.ya4{bottom:231.181067pt;}
.y65{bottom:231.181200pt;}
.y32{bottom:232.026267pt;}
.yd5{bottom:242.748933pt;}
.yf8{bottom:243.947467pt;}
.ybb{bottom:245.924267pt;}
.y31{bottom:248.022267pt;}
.y125{bottom:249.634533pt;}
.y138{bottom:249.821200pt;}
.y95{bottom:249.847733pt;}
.y64{bottom:249.847867pt;}
.yd4{bottom:260.352933pt;}
.yba{bottom:263.528267pt;}
.y30{bottom:264.018267pt;}
.y124{bottom:268.306533pt;}
.y137{bottom:268.493200pt;}
.y94{bottom:268.514400pt;}
.y63{bottom:268.514533pt;}
.yd3{bottom:277.956933pt;}
.y2f{bottom:280.014267pt;}
.yc4{bottom:280.023600pt;}
.yb9{bottom:281.132267pt;}
.ya3{bottom:281.272933pt;}
.y9d{bottom:281.280933pt;}
.y123{bottom:286.978533pt;}
.yf7{bottom:287.165200pt;}
.y93{bottom:287.181067pt;}
.y62{bottom:287.181200pt;}
.yb2{bottom:293.763067pt;}
.yd2{bottom:295.560933pt;}
.yb8{bottom:298.736267pt;}
.ya2{bottom:299.943600pt;}
.yd8{bottom:299.947467pt;}
.y122{bottom:305.650533pt;}
.yf6{bottom:305.837200pt;}
.y92{bottom:305.847733pt;}
.y61{bottom:305.847867pt;}
.y2e{bottom:311.130267pt;}
.y23{bottom:311.309733pt;}
.yb1{bottom:311.367067pt;}
.ycb{bottom:315.977867pt;}
.yb7{bottom:316.340267pt;}
.ya1{bottom:318.614267pt;}
.yc3{bottom:321.994267pt;}
.y121{bottom:324.322533pt;}
.yf5{bottom:324.509200pt;}
.y91{bottom:324.514400pt;}
.y60{bottom:324.514533pt;}
.y2d{bottom:327.130267pt;}
.y22{bottom:328.913733pt;}
.yb0{bottom:328.971067pt;}
.yca{bottom:333.581867pt;}
.yb6{bottom:333.944267pt;}
.yc2{bottom:339.598267pt;}
.y120{bottom:342.994533pt;}
.y2c{bottom:343.130267pt;}
.y90{bottom:343.181067pt;}
.y5f{bottom:343.181200pt;}
.yaf{bottom:346.575067pt;}
.yc9{bottom:351.185867pt;}
.yb5{bottom:351.548267pt;}
.yc1{bottom:357.202267pt;}
.y2b{bottom:359.130267pt;}
.y11f{bottom:361.666533pt;}
.y8f{bottom:361.847733pt;}
.y5e{bottom:361.847867pt;}
.yae{bottom:364.179067pt;}
.y21{bottom:365.355333pt;}
.yf4{bottom:366.692800pt;}
.yc8{bottom:368.789867pt;}
.yb4{bottom:369.152267pt;}
.y136{bottom:373.789867pt;}
.yc0{bottom:374.806267pt;}
.y11e{bottom:380.338533pt;}
.y8e{bottom:380.514400pt;}
.y5d{bottom:380.514533pt;}
.yad{bottom:381.783067pt;}
.y20{bottom:382.959333pt;}
.yc7{bottom:386.393867pt;}
.yb3{bottom:386.756267pt;}
.ybf{bottom:392.410267pt;}
.y9e{bottom:393.280933pt;}
.y11d{bottom:399.010533pt;}
.yf3{bottom:399.175867pt;}
.y8d{bottom:399.181067pt;}
.y5c{bottom:399.181200pt;}
.yac{bottom:399.387067pt;}
.y1f{bottom:400.563333pt;}
.y135{bottom:402.498800pt;}
.yc6{bottom:403.997867pt;}
.ybe{bottom:410.014267pt;}
.ya0{bottom:411.123200pt;}
.yab{bottom:416.991067pt;}
.y11c{bottom:417.682533pt;}
.yf2{bottom:417.842533pt;}
.y8c{bottom:417.847733pt;}
.y5b{bottom:417.847867pt;}
.y1e{bottom:418.167333pt;}
.yc5{bottom:421.601867pt;}
.ybd{bottom:427.618267pt;}
.yaa{bottom:434.595067pt;}
.y1d{bottom:435.771333pt;}
.y11b{bottom:436.354533pt;}
.yf1{bottom:436.509200pt;}
.y8b{bottom:436.514400pt;}
.y5a{bottom:436.514533pt;}
.y9f{bottom:439.832133pt;}
.ybc{bottom:445.222267pt;}
.ya9{bottom:452.199067pt;}
.y1c{bottom:453.375333pt;}
.y11a{bottom:455.026533pt;}
.y134{bottom:455.138533pt;}
.yf0{bottom:455.175867pt;}
.y8a{bottom:455.181067pt;}
.y59{bottom:455.181200pt;}
.y1b{bottom:470.979333pt;}
.y119{bottom:473.698533pt;}
.y133{bottom:473.810533pt;}
.yef{bottom:473.842533pt;}
.y89{bottom:473.847733pt;}
.y58{bottom:473.847867pt;}
.y1a{bottom:488.583333pt;}
.y118{bottom:492.370533pt;}
.y132{bottom:492.482533pt;}
.y88{bottom:492.514400pt;}
.y57{bottom:492.514533pt;}
.y19{bottom:506.187333pt;}
.y117{bottom:511.042533pt;}
.y131{bottom:511.154533pt;}
.y87{bottom:511.181067pt;}
.y56{bottom:511.181200pt;}
.yee{bottom:516.026133pt;}
.y18{bottom:523.791333pt;}
.y116{bottom:529.714533pt;}
.y130{bottom:529.826533pt;}
.y86{bottom:529.847733pt;}
.y55{bottom:529.847867pt;}
.y17{bottom:541.395333pt;}
.y115{bottom:548.386533pt;}
.yed{bottom:548.498533pt;}
.y85{bottom:548.514400pt;}
.y54{bottom:548.514533pt;}
.y16{bottom:558.999333pt;}
.y114{bottom:567.058533pt;}
.yec{bottom:567.170533pt;}
.y84{bottom:567.181067pt;}
.y53{bottom:567.181200pt;}
.y15{bottom:576.603333pt;}
.y113{bottom:585.730533pt;}
.yeb{bottom:585.842533pt;}
.y83{bottom:585.847733pt;}
.y52{bottom:585.847867pt;}
.y14{bottom:594.207333pt;}
.y112{bottom:604.402533pt;}
.y82{bottom:604.514400pt;}
.y51{bottom:604.514533pt;}
.y13{bottom:611.811333pt;}
.y9c{bottom:617.280933pt;}
.y111{bottom:623.074533pt;}
.y81{bottom:623.181067pt;}
.y50{bottom:623.181200pt;}
.yd1{bottom:627.271067pt;}
.yea{bottom:628.026133pt;}
.y12f{bottom:635.123200pt;}
.y12{bottom:639.453467pt;}
.y110{bottom:641.746533pt;}
.y80{bottom:641.847733pt;}
.y4f{bottom:641.847867pt;}
.yd0{bottom:644.875067pt;}
.y10f{bottom:660.418533pt;}
.ye9{bottom:660.461200pt;}
.y7f{bottom:660.514400pt;}
.y4e{bottom:660.514533pt;}
.ycf{bottom:662.479067pt;}
.y12e{bottom:663.832133pt;}
.y10e{bottom:679.090533pt;}
.ye8{bottom:679.133200pt;}
.y7e{bottom:679.181067pt;}
.y4d{bottom:679.181200pt;}
.yce{bottom:680.083067pt;}
.ycd{bottom:697.687067pt;}
.y10d{bottom:697.762533pt;}
.ye7{bottom:697.805200pt;}
.y7d{bottom:697.847733pt;}
.y4c{bottom:697.847867pt;}
.yd{bottom:709.926133pt;}
.ycc{bottom:715.291067pt;}
.y10c{bottom:716.434533pt;}
.ye6{bottom:716.477200pt;}
.y7c{bottom:716.514400pt;}
.y4b{bottom:716.514533pt;}
.yc{bottom:725.926133pt;}
.y10b{bottom:735.106533pt;}
.ye5{bottom:735.149200pt;}
.y7b{bottom:735.181067pt;}
.y4a{bottom:735.181200pt;}
.yb{bottom:741.926133pt;}
.y10a{bottom:753.778533pt;}
.ye4{bottom:753.821200pt;}
.y7a{bottom:753.847733pt;}
.y49{bottom:753.847867pt;}
.ya{bottom:757.926133pt;}
.y109{bottom:772.450533pt;}
.ye3{bottom:772.493200pt;}
.y79{bottom:772.514400pt;}
.y48{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.y8{bottom:789.926133pt;}
.y108{bottom:791.122533pt;}
.ye2{bottom:791.165200pt;}
.y78{bottom:791.181067pt;}
.y47{bottom:791.181200pt;}
.y7{bottom:805.926133pt;}
.y107{bottom:809.794533pt;}
.ye1{bottom:809.837200pt;}
.y77{bottom:809.847733pt;}
.y46{bottom:809.847867pt;}
.y6{bottom:821.926133pt;}
.y106{bottom:828.466533pt;}
.ye0{bottom:828.509200pt;}
.y76{bottom:828.514400pt;}
.y45{bottom:828.514533pt;}
.y105{bottom:847.138533pt;}
.y75{bottom:847.181067pt;}
.y44{bottom:847.181200pt;}
.y5{bottom:853.044267pt;}
.y9b{bottom:859.947600pt;}
.y104{bottom:865.810533pt;}
.y74{bottom:865.847733pt;}
.y43{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.ydf{bottom:870.692667pt;}
.yd6{bottom:878.614267pt;}
.y103{bottom:884.482533pt;}
.y73{bottom:884.514400pt;}
.y42{bottom:884.514533pt;}
.y102{bottom:903.154533pt;}
.yde{bottom:903.175867pt;}
.y72{bottom:903.181067pt;}
.y41{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y101{bottom:921.826533pt;}
.y71{bottom:921.847733pt;}
.y40{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.y100{bottom:940.498533pt;}
.y70{bottom:940.514400pt;}
.y3f{bottom:940.514533pt;}
.ydd{bottom:945.359333pt;}
.yff{bottom:959.170533pt;}
.y6f{bottom:959.181067pt;}
.y3e{bottom:959.181200pt;}
.yfe{bottom:977.842533pt;}
.y6e{bottom:977.847733pt;}
.y3d{bottom:977.847867pt;}
.y11{bottom:986.502667pt;}
.yd7{bottom:988.062933pt;}
.y6d{bottom:996.514400pt;}
.y3c{bottom:996.514533pt;}
.ydc{bottom:1000.401600pt;}
.y38{bottom:1030.390667pt;}
.y37{bottom:1047.724000pt;}
.y3b{bottom:1047.726267pt;}
.h9{height:30.618750pt;}
.h8{height:30.806250pt;}
.h7{height:32.481812pt;}
.h12{height:34.020833pt;}
.h2{height:34.229167pt;}
.h6{height:34.250000pt;}
.ha{height:36.000000pt;}
.h11{height:36.492188pt;}
.h10{height:38.273438pt;}
.hf{height:38.507812pt;}
.h16{height:40.546875pt;}
.hc{height:41.882812pt;}
.h15{height:41.904146pt;}
.hb{height:42.083333pt;}
.h14{height:44.601562pt;}
.h13{height:46.291667pt;}
.he{height:46.536458pt;}
.hd{height:50.500000pt;}
.h5{height:51.190104pt;}
.h3{height:68.929688pt;}
.h4{height:69.020009pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.878000pt;}
.xb{left:95.171067pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.x5{left:266.834667pt;}
.xd{left:281.952000pt;}
.x4{left:352.045067pt;}
.xc{left:417.741733pt;}
.xa{left:577.037867pt;}
.x9{left:593.016533pt;}
.xe{left:716.838800pt;}
.x1{left:722.671333pt;}
}




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