
    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_aee13bd5620050c27add5619.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_a88b3c586a6900a94f977397.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_d1ecf8f051e08cbf19f72ba0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_68df694db9f7c08f570644a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_01832a33c010a10126af0e3a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916016;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_d5ff412fc659fd0421fefaa0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916016;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_fd122dd7cbab358daea852dc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_b94036207b5752f24572f3f8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_b7d73953b603bcae5819f425.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874023;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_3adabb95cae81f987cfaf512.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971191;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_cd3ce07bb142749f72113edb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;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_021b18baa2732b05dca1abe6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;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_930b2287e2f0afa98d50316c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.916016;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_2ddde5fd901822be81cbe93b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.986816;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_921f1f4bdfe301f6218a65ab.woff2')format("woff");}.fff{font-family:fff;line-height:0.916016;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_ae76182b67f1d04ccfdcf360.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;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;}
.m3{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);}
.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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-3.510000px;}
.ls9{letter-spacing:-1.404000px;}
.lsd{letter-spacing:-1.296000px;}
.ls4{letter-spacing:-1.170000px;}
.lsf{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.546000px;}
.lsb{letter-spacing:-0.390000px;}
.ls6{letter-spacing:-0.330000px;}
.ls5{letter-spacing:-0.312000px;}
.lse{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.078000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.312000px;}
.ls10{letter-spacing:1.170000px;}
.ls2{letter-spacing:24.480000px;}
.ls1{letter-spacing:45.672000px;}
.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;}
}
.ws4{word-spacing:-45.672000px;}
.ws3{word-spacing:-25.764000px;}
.ws5{word-spacing:-24.480000px;}
.ws12{word-spacing:-20.340000px;}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.678320px;}
.wsc{word-spacing:-14.586000px;}
.ws6{word-spacing:-12.204000px;}
.ws18{word-spacing:-1.170000px;}
.wsa{word-spacing:-0.792000px;}
.ws11{word-spacing:-0.312000px;}
.ws1{word-spacing:0.000000px;}
.ws14{word-spacing:0.078000px;}
.ws16{word-spacing:0.270000px;}
.ws9{word-spacing:0.312000px;}
.wsd{word-spacing:0.330000px;}
.ws13{word-spacing:0.390000px;}
.ws7{word-spacing:0.546000px;}
.wsf{word-spacing:0.936000px;}
.ws17{word-spacing:1.080000px;}
.ws8{word-spacing:1.170000px;}
.ws15{word-spacing:1.296000px;}
.ws10{word-spacing:1.404000px;}
.wse{word-spacing:3.510000px;}
.wsb{word-spacing:6.270000px;}
._f{margin-left:-26.448000px;}
._11{margin-left:-14.975400px;}
._1d{margin-left:-13.008600px;}
._1c{margin-left:-11.711400px;}
._19{margin-left:-7.161000px;}
._14{margin-left:-5.512800px;}
._d{margin-left:-4.435200px;}
._10{margin-left:-2.976600px;}
._e{margin-left:-1.465200px;}
._8{width:1.885704px;}
._b{width:3.092555px;}
._1{width:4.978259px;}
._12{width:6.485400px;}
._6{width:7.542816px;}
._4{width:8.825095px;}
._13{width:9.983194px;}
._7{width:11.540508px;}
._3{width:12.860501px;}
._18{width:13.879800px;}
._15{width:16.038000px;}
._1a{width:17.295873px;}
._9{width:18.555327px;}
._1b{width:20.176200px;}
._5{width:21.723310px;}
._c{width:28.210132px;}
._17{width:31.112400px;}
._16{width:37.224000px;}
._a{width:46.199748px;}
._2{width:47.444313px;}
._0{width:769.805658px;}
.fc5{color:rgb(76,142,165);}
.fc2{color:rgb(65,160,17);}
.fc3{color:rgb(0,94,126);}
.fc1{color:rgb(255,101,0);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:36.000000px;}
.fs3{font-size:37.714080px;}
.fs6{font-size:41.485488px;}
.fs4{font-size:42.428340px;}
.fs2{font-size:47.142600px;}
.fs1{font-size:51.856860px;}
.fs5{font-size:52.799712px;}
.fsf{font-size:54.000000px;}
.fs12{font-size:60.000000px;}
.fs0{font-size:65.999640px;}
.fsa{font-size:66.000000px;}
.fs10{font-size:72.000000px;}
.fsc{font-size:78.000000px;}
.fs11{font-size:90.000000px;}
.fsb{font-size:114.000000px;}
.fse{font-size:126.000000px;}
.fs7{font-size:252.000000px;}
.fs9{font-size:288.000000px;}
.fs8{font-size:519.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.298365px;}
.y34{bottom:46.346400px;}
.y20{bottom:50.265797px;}
.y1f{bottom:63.630724px;}
.y1e{bottom:76.995651px;}
.y1d{bottom:90.360579px;}
.y1c{bottom:101.780873px;}
.y33{bottom:102.047250px;}
.yf2{bottom:102.286650px;}
.yb6{bottom:102.421350px;}
.y69{bottom:102.994350px;}
.y135{bottom:103.471950px;}
.y123{bottom:104.547450px;}
.y166{bottom:106.564350px;}
.yda{bottom:107.776200px;}
.y111{bottom:108.397650px;}
.y45{bottom:109.248450px;}
.y90{bottom:114.383850px;}
.y134{bottom:119.820450px;}
.yb5{bottom:122.897850px;}
.y165{bottom:122.912850px;}
.yf1{bottom:122.994150px;}
.y1b{bottom:123.419327px;}
.y68{bottom:123.701850px;}
.y122{bottom:125.254950px;}
.y44{bottom:125.448450px;}
.yd9{bottom:128.483700px;}
.y110{bottom:129.105150px;}
.y8f{bottom:135.091350px;}
.y133{bottom:136.168950px;}
.y21{bottom:136.778700px;}
.y164{bottom:139.261350px;}
.y28{bottom:142.439400px;}
.yb4{bottom:143.374350px;}
.yf0{bottom:143.701650px;}
.y67{bottom:144.409350px;}
.y43{bottom:145.900950px;}
.y121{bottom:145.962450px;}
.yd8{bottom:149.191200px;}
.y10f{bottom:149.812650px;}
.y132{bottom:152.517450px;}
.y163{bottom:155.609850px;}
.y8e{bottom:155.798850px;}
.y42{bottom:162.100950px;}
.yb3{bottom:163.850850px;}
.yef{bottom:164.409150px;}
.y120{bottom:166.669950px;}
.y10e{bottom:170.520150px;}
.y162{bottom:171.958350px;}
.y8d{bottom:176.506350px;}
.y41{bottom:178.300950px;}
.yd7{bottom:178.820250px;}
.y66{bottom:182.967600px;}
.yb2{bottom:184.327350px;}
.y27{bottom:184.431900px;}
.yee{bottom:185.116650px;}
.y131{bottom:186.725850px;}
.y11f{bottom:187.377450px;}
.y161{bottom:188.306850px;}
.y10d{bottom:191.227650px;}
.y1a{bottom:192.612878px;}
.y40{bottom:194.500950px;}
.y8c{bottom:197.213850px;}
.y19{bottom:202.630680px;}
.y160{bottom:204.655350px;}
.yb1{bottom:204.803850px;}
.y26{bottom:205.436400px;}
.yed{bottom:205.824150px;}
.y11e{bottom:208.084950px;}
.y3f{bottom:210.700950px;}
.y10c{bottom:211.935150px;}
.y18{bottom:212.648483px;}
.y8b{bottom:217.921350px;}
.yd6{bottom:218.961000px;}
.y15f{bottom:221.003850px;}
.y17{bottom:222.678071px;}
.yb0{bottom:225.280350px;}
.y25{bottom:226.440900px;}
.yec{bottom:226.531650px;}
.y3e{bottom:226.900950px;}
.y11d{bottom:228.792450px;}
.y10b{bottom:232.642650px;}
.y16{bottom:232.695874px;}
.y15e{bottom:237.352350px;}
.y8a{bottom:238.628850px;}
.yd5{bottom:239.668500px;}
.y15{bottom:242.725462px;}
.y3d{bottom:243.100950px;}
.y65{bottom:245.466600px;}
.yaf{bottom:245.756850px;}
.yeb{bottom:247.239150px;}
.y130{bottom:249.419850px;}
.y11c{bottom:249.499950px;}
.y14{bottom:252.743264px;}
.y10a{bottom:253.350150px;}
.y15d{bottom:253.700850px;}
.y3c{bottom:259.300950px;}
.y89{bottom:259.336350px;}
.yd4{bottom:260.376000px;}
.y13{bottom:262.761067px;}
.y64{bottom:266.174100px;}
.yae{bottom:266.233350px;}
.yea{bottom:267.946650px;}
.y12f{bottom:269.962350px;}
.y15c{bottom:270.049350px;}
.y11b{bottom:270.207450px;}
.y12{bottom:272.790655px;}
.y109{bottom:274.057650px;}
.y3b{bottom:275.500950px;}
.yd3{bottom:281.083500px;}
.y11{bottom:282.808457px;}
.y88{bottom:284.284350px;}
.y32{bottom:284.425200px;}
.y15b{bottom:286.397850px;}
.yad{bottom:286.709850px;}
.y63{bottom:286.881600px;}
.y12e{bottom:290.504850px;}
.y11a{bottom:290.914950px;}
.y10{bottom:292.838046px;}
.y108{bottom:294.765150px;}
.ye9{bottom:297.575850px;}
.yd2{bottom:301.791000px;}
.y15a{bottom:302.746350px;}
.yf{bottom:302.855848px;}
.y87{bottom:304.991850px;}
.y31{bottom:305.429700px;}
.y62{bottom:307.589100px;}
.y12d{bottom:311.047350px;}
.yac{bottom:311.443350px;}
.y119{bottom:311.622450px;}
.ye{bottom:312.873651px;}
.y107{bottom:315.472650px;}
.y159{bottom:319.094850px;}
.yd1{bottom:322.498500px;}
.y86{bottom:325.699350px;}
.y30{bottom:326.434200px;}
.y61{bottom:328.296600px;}
.yd{bottom:330.893909px;}
.y12c{bottom:331.589850px;}
.yab{bottom:331.919850px;}
.y118{bottom:332.329950px;}
.y158{bottom:335.443350px;}
.y106{bottom:336.180150px;}
.ye8{bottom:337.859100px;}
.yd0{bottom:343.206000px;}
.y85{bottom:346.406850px;}
.y2f{bottom:347.438700px;}
.y60{bottom:349.004100px;}
.y157{bottom:351.791850px;}
.y12b{bottom:352.132350px;}
.yaa{bottom:352.396350px;}
.y117{bottom:353.037450px;}
.ye7{bottom:358.566600px;}
.ycf{bottom:363.913500px;}
.y156{bottom:368.140350px;}
.y2e{bottom:368.443200px;}
.y5f{bottom:369.711600px;}
.y84{bottom:371.354850px;}
.y12a{bottom:372.674850px;}
.ya9{bottom:372.872850px;}
.y116{bottom:373.744950px;}
.y105{bottom:374.738400px;}
.ye6{bottom:379.274100px;}
.y155{bottom:384.488850px;}
.yce{bottom:384.621000px;}
.y2d{bottom:389.447700px;}
.y5e{bottom:390.419100px;}
.y83{bottom:392.062350px;}
.y129{bottom:393.217350px;}
.ya8{bottom:393.349350px;}
.y115{bottom:394.452450px;}
.ye5{bottom:399.981600px;}
.y154{bottom:400.837350px;}
.ycd{bottom:405.328500px;}
.y2c{bottom:410.452200px;}
.y5d{bottom:411.126600px;}
.y82{bottom:412.769850px;}
.y128{bottom:413.759850px;}
.ya7{bottom:413.825850px;}
.y114{bottom:415.159950px;}
.y153{bottom:417.185850px;}
.ye4{bottom:420.689100px;}
.ycc{bottom:426.036000px;}
.y2b{bottom:431.456700px;}
.y5c{bottom:431.834100px;}
.y81{bottom:433.477350px;}
.y152{bottom:433.534350px;}
.ya6{bottom:434.302350px;}
.y113{bottom:435.867450px;}
.y104{bottom:437.454900px;}
.yc{bottom:440.641882px;}
.ye3{bottom:441.396600px;}
.ycb{bottom:446.743500px;}
.y151{bottom:449.882850px;}
.y5b{bottom:452.541600px;}
.y80{bottom:454.184850px;}
.ya5{bottom:454.778850px;}
.y127{bottom:454.844850px;}
.y103{bottom:456.504900px;}
.y17e{bottom:461.399250px;}
.ye2{bottom:462.104100px;}
.y150{bottom:466.231350px;}
.yca{bottom:467.451000px;}
.y5a{bottom:473.249100px;}
.y112{bottom:474.425850px;}
.y7f{bottom:474.892350px;}
.ya4{bottom:475.255350px;}
.y126{bottom:475.387350px;}
.y102{bottom:475.554900px;}
.y14f{bottom:482.579850px;}
.ye1{bottom:482.811600px;}
.yc9{bottom:488.158500px;}
.y17d{bottom:492.624750px;}
.y59{bottom:493.956600px;}
.y7e{bottom:495.599850px;}
.y125{bottom:495.929850px;}
.y14e{bottom:498.928350px;}
.ya3{bottom:499.988850px;}
.y101{bottom:503.451600px;}
.ye0{bottom:503.519100px;}
.yc8{bottom:508.866000px;}
.y17c{bottom:511.106250px;}
.y58{bottom:514.664100px;}
.y14d{bottom:515.276850px;}
.y7d{bottom:516.307350px;}
.y124{bottom:516.472350px;}
.y2a{bottom:519.056700px;}
.ya2{bottom:520.465350px;}
.y100{bottom:524.159100px;}
.ydf{bottom:524.226600px;}
.y17b{bottom:527.454750px;}
.yc7{bottom:529.573500px;}
.y14c{bottom:531.625350px;}
.y57{bottom:535.371600px;}
.y7c{bottom:537.014850px;}
.ya1{bottom:540.941850px;}
.y17a{bottom:543.803250px;}
.yff{bottom:544.866600px;}
.yde{bottom:544.934100px;}
.y14b{bottom:547.973850px;}
.yc6{bottom:550.281000px;}
.y29{bottom:553.256700px;}
.y56{bottom:556.079100px;}
.y7b{bottom:557.722350px;}
.y179{bottom:560.151750px;}
.ya0{bottom:561.418350px;}
.y14a{bottom:564.322350px;}
.yfe{bottom:565.574100px;}
.yc5{bottom:570.988500px;}
.ydd{bottom:574.563150px;}
.y178{bottom:576.500250px;}
.y55{bottom:576.786600px;}
.y7a{bottom:578.429850px;}
.y149{bottom:580.670850px;}
.y9f{bottom:581.894850px;}
.yfd{bottom:586.281600px;}
.yc4{bottom:591.696000px;}
.y177{bottom:592.848750px;}
.ydc{bottom:593.613150px;}
.y148{bottom:597.019350px;}
.y54{bottom:597.494100px;}
.y79{bottom:599.137350px;}
.y9e{bottom:602.371350px;}
.yb{bottom:602.824212px;}
.yfc{bottom:606.989100px;}
.yc3{bottom:612.403500px;}
.ydb{bottom:612.663150px;}
.y147{bottom:613.367850px;}
.y53{bottom:618.201600px;}
.y78{bottom:619.844850px;}
.y176{bottom:621.954750px;}
.y9d{bottom:622.847850px;}
.ya{bottom:623.578742px;}
.yfb{bottom:627.696600px;}
.y146{bottom:629.716350px;}
.yc2{bottom:633.111000px;}
.y9{bottom:636.931883px;}
.y52{bottom:638.909100px;}
.y175{bottom:640.436250px;}
.y77{bottom:640.552350px;}
.y9c{bottom:643.324350px;}
.y145{bottom:646.064850px;}
.yfa{bottom:648.404100px;}
.y3a{bottom:650.992350px;}
.yc1{bottom:653.818500px;}
.y174{bottom:656.784750px;}
.y24{bottom:657.176850px;}
.y51{bottom:659.616600px;}
.y76{bottom:661.259850px;}
.y144{bottom:662.413350px;}
.y8{bottom:662.954598px;}
.y9b{bottom:663.800850px;}
.yf9{bottom:669.111600px;}
.y173{bottom:673.133250px;}
.yc0{bottom:674.526000px;}
.y7{bottom:676.319525px;}
.y143{bottom:678.761850px;}
.y50{bottom:680.324100px;}
.y75{bottom:681.967350px;}
.y9a{bottom:684.277350px;}
.y39{bottom:688.792350px;}
.y172{bottom:689.481750px;}
.y6{bottom:689.684452px;}
.yf8{bottom:689.819100px;}
.y142{bottom:695.110350px;}
.ybf{bottom:695.233500px;}
.y4f{bottom:701.031600px;}
.y74{bottom:702.674850px;}
.y5{bottom:703.049379px;}
.y99{bottom:704.753850px;}
.y171{bottom:705.830250px;}
.y6a{bottom:709.428900px;}
.yf7{bottom:710.526600px;}
.y141{bottom:711.458850px;}
.ybe{bottom:715.941000px;}
.y4e{bottom:721.739100px;}
.y170{bottom:722.178750px;}
.y23{bottom:723.200850px;}
.y73{bottom:723.382350px;}
.y98{bottom:725.230350px;}
.y140{bottom:727.807350px;}
.yf6{bottom:731.234100px;}
.ybd{bottom:736.648500px;}
.y16f{bottom:738.527250px;}
.y4d{bottom:742.446600px;}
.y72{bottom:744.089850px;}
.y13f{bottom:744.155850px;}
.y97{bottom:745.706850px;}
.ybc{bottom:757.356000px;}
.y13e{bottom:760.504350px;}
.yf5{bottom:760.863300px;}
.y4c{bottom:763.154100px;}
.y38{bottom:764.392350px;}
.y71{bottom:764.797350px;}
.y4{bottom:765.336540px;}
.y96{bottom:766.183350px;}
.y16e{bottom:767.633250px;}
.y13d{bottom:776.852850px;}
.ybb{bottom:778.063500px;}
.yf4{bottom:779.913300px;}
.y4b{bottom:783.861600px;}
.y3{bottom:785.148217px;}
.y70{bottom:785.504850px;}
.y16d{bottom:786.114750px;}
.y95{bottom:786.659850px;}
.y13c{bottom:793.201350px;}
.yba{bottom:798.771000px;}
.yf3{bottom:798.963300px;}
.y37{bottom:802.192350px;}
.y16c{bottom:802.463250px;}
.y4a{bottom:804.569100px;}
.y6f{bottom:806.212350px;}
.y94{bottom:807.136350px;}
.y2{bottom:808.542733px;}
.y13b{bottom:809.549850px;}
.y22{bottom:811.700850px;}
.y16b{bottom:818.811750px;}
.yb9{bottom:819.478500px;}
.y49{bottom:825.276600px;}
.y13a{bottom:825.898350px;}
.y6e{bottom:826.919850px;}
.y93{bottom:827.612850px;}
.y16a{bottom:835.160250px;}
.y36{bottom:839.992350px;}
.y139{bottom:842.246850px;}
.y48{bottom:845.984100px;}
.y6d{bottom:847.627350px;}
.y92{bottom:848.089350px;}
.y169{bottom:851.508750px;}
.yb8{bottom:858.036750px;}
.y138{bottom:858.595350px;}
.y168{bottom:867.857250px;}
.y6c{bottom:868.334850px;}
.y91{bottom:868.565850px;}
.y137{bottom:874.943850px;}
.y35{bottom:877.792350px;}
.y167{bottom:884.205750px;}
.y47{bottom:884.542350px;}
.yb7{bottom:885.036750px;}
.y6b{bottom:889.042350px;}
.y136{bottom:891.292350px;}
.y46{bottom:952.015800px;}
.h6{height:27.946133px;}
.h12{height:28.546875px;}
.h7{height:31.439400px;}
.h5{height:34.932667px;}
.h4{height:38.425933px;}
.h8{height:39.124587px;}
.h16{height:42.820312px;}
.h15{height:43.664062px;}
.h1c{height:47.578125px;}
.he{height:48.694336px;}
.h3{height:48.905733px;}
.hf{height:52.335938px;}
.h19{height:53.121094px;}
.h11{height:54.272461px;}
.h17{height:57.093750px;}
.h1b{height:58.218750px;}
.h1d{height:63.070312px;}
.h1a{height:65.522461px;}
.h18{height:72.773438px;}
.h13{height:87.670898px;}
.h10{height:90.398438px;}
.h14{height:99.914062px;}
.hb{height:172.265625px;}
.hd{height:212.484375px;}
.hc{height:354.785156px;}
.h2{height:992.222088px;}
.h0{height:992.820000px;}
.h1{height:993.000000px;}
.ha{height:999.000000px;}
.h9{height:999.213000px;}
.w1{width:701.250000px;}
.w3{width:701.575500px;}
.w2{width:701.576173px;}
.w0{width:701.580000px;}
.x0{left:0.000000px;}
.x3{left:36.747657px;}
.x1{left:43.430120px;}
.x15{left:46.771650px;}
.x1b{left:60.271650px;}
.x1a{left:76.535400px;}
.x8{left:80.205750px;}
.x13{left:86.049900px;}
.x1c{left:97.787400px;}
.x14{left:114.182400px;}
.x2{left:116.925434px;}
.x9{left:135.959250px;}
.x17{left:161.574750px;}
.x10{left:179.027400px;}
.x1d{left:182.834550px;}
.x11{left:188.646900px;}
.x7{left:190.392750px;}
.xe{left:197.655900px;}
.xb{left:209.128800px;}
.xc{left:215.769300px;}
.x12{left:218.775900px;}
.xf{left:229.038900px;}
.x28{left:231.176100px;}
.x21{left:253.545600px;}
.xa{left:281.522250px;}
.xd{left:307.133400px;}
.x24{left:309.489600px;}
.x23{left:315.591600px;}
.x1f{left:321.855600px;}
.x4{left:344.105623px;}
.x2a{left:346.074600px;}
.x22{left:354.282600px;}
.x27{left:365.096100px;}
.x1e{left:381.566100px;}
.x26{left:387.398100px;}
.x16{left:407.083800px;}
.x25{left:428.208600px;}
.x20{left:433.797600px;}
.x5{left:449.502150px;}
.x29{left:465.806100px;}
.x6{left:481.152750px;}
.x2b{left:533.900100px;}
.x18{left:635.323200px;}
.x19{left:641.303100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-3.120000pt;}
.ls9{letter-spacing:-1.248000pt;}
.lsd{letter-spacing:-1.152000pt;}
.ls4{letter-spacing:-1.040000pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.485333pt;}
.lsb{letter-spacing:-0.346667pt;}
.ls6{letter-spacing:-0.293333pt;}
.ls5{letter-spacing:-0.277333pt;}
.lse{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.069333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.277333pt;}
.ls10{letter-spacing:1.040000pt;}
.ls2{letter-spacing:21.760000pt;}
.ls1{letter-spacing:40.597333pt;}
.ws4{word-spacing:-40.597333pt;}
.ws3{word-spacing:-22.901333pt;}
.ws5{word-spacing:-21.760000pt;}
.ws12{word-spacing:-18.080000pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-13.047395pt;}
.wsc{word-spacing:-12.965333pt;}
.ws6{word-spacing:-10.848000pt;}
.ws18{word-spacing:-1.040000pt;}
.wsa{word-spacing:-0.704000pt;}
.ws11{word-spacing:-0.277333pt;}
.ws1{word-spacing:0.000000pt;}
.ws14{word-spacing:0.069333pt;}
.ws16{word-spacing:0.240000pt;}
.ws9{word-spacing:0.277333pt;}
.wsd{word-spacing:0.293333pt;}
.ws13{word-spacing:0.346667pt;}
.ws7{word-spacing:0.485333pt;}
.wsf{word-spacing:0.832000pt;}
.ws17{word-spacing:0.960000pt;}
.ws8{word-spacing:1.040000pt;}
.ws15{word-spacing:1.152000pt;}
.ws10{word-spacing:1.248000pt;}
.wse{word-spacing:3.120000pt;}
.wsb{word-spacing:5.573333pt;}
._f{margin-left:-23.509333pt;}
._11{margin-left:-13.311467pt;}
._1d{margin-left:-11.563200pt;}
._1c{margin-left:-10.410133pt;}
._19{margin-left:-6.365333pt;}
._14{margin-left:-4.900267pt;}
._d{margin-left:-3.942400pt;}
._10{margin-left:-2.645867pt;}
._e{margin-left:-1.302400pt;}
._8{width:1.676181pt;}
._b{width:2.748937pt;}
._1{width:4.425119pt;}
._12{width:5.764800pt;}
._6{width:6.704725pt;}
._4{width:7.844529pt;}
._13{width:8.873950pt;}
._7{width:10.258230pt;}
._3{width:11.431557pt;}
._18{width:12.337600pt;}
._15{width:14.256000pt;}
._1a{width:15.374109pt;}
._9{width:16.493624pt;}
._1b{width:17.934400pt;}
._5{width:19.309609pt;}
._c{width:25.075673pt;}
._17{width:27.655467pt;}
._16{width:33.088000pt;}
._a{width:41.066443pt;}
._2{width:42.172722pt;}
._0{width:684.271696pt;}
.fsd{font-size:32.000000pt;}
.fs3{font-size:33.523627pt;}
.fs6{font-size:36.875989pt;}
.fs4{font-size:37.714080pt;}
.fs2{font-size:41.904533pt;}
.fs1{font-size:46.094987pt;}
.fs5{font-size:46.933077pt;}
.fsf{font-size:48.000000pt;}
.fs12{font-size:53.333333pt;}
.fs0{font-size:58.666347pt;}
.fsa{font-size:58.666667pt;}
.fs10{font-size:64.000000pt;}
.fsc{font-size:69.333333pt;}
.fs11{font-size:80.000000pt;}
.fsb{font-size:101.333333pt;}
.fse{font-size:112.000000pt;}
.fs7{font-size:224.000000pt;}
.fs9{font-size:256.000000pt;}
.fs8{font-size:461.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.265213pt;}
.y34{bottom:41.196800pt;}
.y20{bottom:44.680709pt;}
.y1f{bottom:56.560644pt;}
.y1e{bottom:68.440579pt;}
.y1d{bottom:80.320514pt;}
.y1c{bottom:90.471887pt;}
.y33{bottom:90.708667pt;}
.yf2{bottom:90.921467pt;}
.yb6{bottom:91.041200pt;}
.y69{bottom:91.550533pt;}
.y135{bottom:91.975067pt;}
.y123{bottom:92.931067pt;}
.y166{bottom:94.723867pt;}
.yda{bottom:95.801067pt;}
.y111{bottom:96.353467pt;}
.y45{bottom:97.109733pt;}
.y90{bottom:101.674533pt;}
.y134{bottom:106.507067pt;}
.yb5{bottom:109.242533pt;}
.y165{bottom:109.255867pt;}
.yf1{bottom:109.328133pt;}
.y1b{bottom:109.706068pt;}
.y68{bottom:109.957200pt;}
.y122{bottom:111.337733pt;}
.y44{bottom:111.509733pt;}
.yd9{bottom:114.207733pt;}
.y110{bottom:114.760133pt;}
.y8f{bottom:120.081200pt;}
.y133{bottom:121.039067pt;}
.y21{bottom:121.581067pt;}
.y164{bottom:123.787867pt;}
.y28{bottom:126.612800pt;}
.yb4{bottom:127.443867pt;}
.yf0{bottom:127.734800pt;}
.y67{bottom:128.363867pt;}
.y43{bottom:129.689733pt;}
.y121{bottom:129.744400pt;}
.yd8{bottom:132.614400pt;}
.y10f{bottom:133.166800pt;}
.y132{bottom:135.571067pt;}
.y163{bottom:138.319867pt;}
.y8e{bottom:138.487867pt;}
.y42{bottom:144.089733pt;}
.yb3{bottom:145.645200pt;}
.yef{bottom:146.141467pt;}
.y120{bottom:148.151067pt;}
.y10e{bottom:151.573467pt;}
.y162{bottom:152.851867pt;}
.y8d{bottom:156.894533pt;}
.y41{bottom:158.489733pt;}
.yd7{bottom:158.951333pt;}
.y66{bottom:162.637867pt;}
.yb2{bottom:163.846533pt;}
.y27{bottom:163.939467pt;}
.yee{bottom:164.548133pt;}
.y131{bottom:165.978533pt;}
.y11f{bottom:166.557733pt;}
.y161{bottom:167.383867pt;}
.y10d{bottom:169.980133pt;}
.y1a{bottom:171.211447pt;}
.y40{bottom:172.889733pt;}
.y8c{bottom:175.301200pt;}
.y19{bottom:180.116160pt;}
.y160{bottom:181.915867pt;}
.yb1{bottom:182.047867pt;}
.y26{bottom:182.610133pt;}
.yed{bottom:182.954800pt;}
.y11e{bottom:184.964400pt;}
.y3f{bottom:187.289733pt;}
.y10c{bottom:188.386800pt;}
.y18{bottom:189.020874pt;}
.y8b{bottom:193.707867pt;}
.yd6{bottom:194.632000pt;}
.y15f{bottom:196.447867pt;}
.y17{bottom:197.936063pt;}
.yb0{bottom:200.249200pt;}
.y25{bottom:201.280800pt;}
.yec{bottom:201.361467pt;}
.y3e{bottom:201.689733pt;}
.y11d{bottom:203.371067pt;}
.y10b{bottom:206.793467pt;}
.y16{bottom:206.840777pt;}
.y15e{bottom:210.979867pt;}
.y8a{bottom:212.114533pt;}
.yd5{bottom:213.038667pt;}
.y15{bottom:215.755966pt;}
.y3d{bottom:216.089733pt;}
.y65{bottom:218.192533pt;}
.yaf{bottom:218.450533pt;}
.yeb{bottom:219.768133pt;}
.y130{bottom:221.706533pt;}
.y11c{bottom:221.777733pt;}
.y14{bottom:224.660679pt;}
.y10a{bottom:225.200133pt;}
.y15d{bottom:225.511867pt;}
.y3c{bottom:230.489733pt;}
.y89{bottom:230.521200pt;}
.yd4{bottom:231.445333pt;}
.y13{bottom:233.565393pt;}
.y64{bottom:236.599200pt;}
.yae{bottom:236.651867pt;}
.yea{bottom:238.174800pt;}
.y12f{bottom:239.966533pt;}
.y15c{bottom:240.043867pt;}
.y11b{bottom:240.184400pt;}
.y12{bottom:242.480582pt;}
.y109{bottom:243.606800pt;}
.y3b{bottom:244.889733pt;}
.yd3{bottom:249.852000pt;}
.y11{bottom:251.385295pt;}
.y88{bottom:252.697200pt;}
.y32{bottom:252.822400pt;}
.y15b{bottom:254.575867pt;}
.yad{bottom:254.853200pt;}
.y63{bottom:255.005867pt;}
.y12e{bottom:258.226533pt;}
.y11a{bottom:258.591067pt;}
.y10{bottom:260.300485pt;}
.y108{bottom:262.013467pt;}
.ye9{bottom:264.511867pt;}
.yd2{bottom:268.258667pt;}
.y15a{bottom:269.107867pt;}
.yf{bottom:269.205198pt;}
.y87{bottom:271.103867pt;}
.y31{bottom:271.493067pt;}
.y62{bottom:273.412533pt;}
.y12d{bottom:276.486533pt;}
.yac{bottom:276.838533pt;}
.y119{bottom:276.997733pt;}
.ye{bottom:278.109912pt;}
.y107{bottom:280.420133pt;}
.y159{bottom:283.639867pt;}
.yd1{bottom:286.665333pt;}
.y86{bottom:289.510533pt;}
.y30{bottom:290.163733pt;}
.y61{bottom:291.819200pt;}
.yd{bottom:294.127919pt;}
.y12c{bottom:294.746533pt;}
.yab{bottom:295.039867pt;}
.y118{bottom:295.404400pt;}
.y158{bottom:298.171867pt;}
.y106{bottom:298.826800pt;}
.ye8{bottom:300.319200pt;}
.yd0{bottom:305.072000pt;}
.y85{bottom:307.917200pt;}
.y2f{bottom:308.834400pt;}
.y60{bottom:310.225867pt;}
.y157{bottom:312.703867pt;}
.y12b{bottom:313.006533pt;}
.yaa{bottom:313.241200pt;}
.y117{bottom:313.811067pt;}
.ye7{bottom:318.725867pt;}
.ycf{bottom:323.478667pt;}
.y156{bottom:327.235867pt;}
.y2e{bottom:327.505067pt;}
.y5f{bottom:328.632533pt;}
.y84{bottom:330.093200pt;}
.y12a{bottom:331.266533pt;}
.ya9{bottom:331.442533pt;}
.y116{bottom:332.217733pt;}
.y105{bottom:333.100800pt;}
.ye6{bottom:337.132533pt;}
.y155{bottom:341.767867pt;}
.yce{bottom:341.885333pt;}
.y2d{bottom:346.175733pt;}
.y5e{bottom:347.039200pt;}
.y83{bottom:348.499867pt;}
.y129{bottom:349.526533pt;}
.ya8{bottom:349.643867pt;}
.y115{bottom:350.624400pt;}
.ye5{bottom:355.539200pt;}
.y154{bottom:356.299867pt;}
.ycd{bottom:360.292000pt;}
.y2c{bottom:364.846400pt;}
.y5d{bottom:365.445867pt;}
.y82{bottom:366.906533pt;}
.y128{bottom:367.786533pt;}
.ya7{bottom:367.845200pt;}
.y114{bottom:369.031067pt;}
.y153{bottom:370.831867pt;}
.ye4{bottom:373.945867pt;}
.ycc{bottom:378.698667pt;}
.y2b{bottom:383.517067pt;}
.y5c{bottom:383.852533pt;}
.y81{bottom:385.313200pt;}
.y152{bottom:385.363867pt;}
.ya6{bottom:386.046533pt;}
.y113{bottom:387.437733pt;}
.y104{bottom:388.848800pt;}
.yc{bottom:391.681673pt;}
.ye3{bottom:392.352533pt;}
.ycb{bottom:397.105333pt;}
.y151{bottom:399.895867pt;}
.y5b{bottom:402.259200pt;}
.y80{bottom:403.719867pt;}
.ya5{bottom:404.247867pt;}
.y127{bottom:404.306533pt;}
.y103{bottom:405.782133pt;}
.y17e{bottom:410.132667pt;}
.ye2{bottom:410.759200pt;}
.y150{bottom:414.427867pt;}
.yca{bottom:415.512000pt;}
.y5a{bottom:420.665867pt;}
.y112{bottom:421.711867pt;}
.y7f{bottom:422.126533pt;}
.ya4{bottom:422.449200pt;}
.y126{bottom:422.566533pt;}
.y102{bottom:422.715467pt;}
.y14f{bottom:428.959867pt;}
.ye1{bottom:429.165867pt;}
.yc9{bottom:433.918667pt;}
.y17d{bottom:437.888667pt;}
.y59{bottom:439.072533pt;}
.y7e{bottom:440.533200pt;}
.y125{bottom:440.826533pt;}
.y14e{bottom:443.491867pt;}
.ya3{bottom:444.434533pt;}
.y101{bottom:447.512533pt;}
.ye0{bottom:447.572533pt;}
.yc8{bottom:452.325333pt;}
.y17c{bottom:454.316667pt;}
.y58{bottom:457.479200pt;}
.y14d{bottom:458.023867pt;}
.y7d{bottom:458.939867pt;}
.y124{bottom:459.086533pt;}
.y2a{bottom:461.383733pt;}
.ya2{bottom:462.635867pt;}
.y100{bottom:465.919200pt;}
.ydf{bottom:465.979200pt;}
.y17b{bottom:468.848667pt;}
.yc7{bottom:470.732000pt;}
.y14c{bottom:472.555867pt;}
.y57{bottom:475.885867pt;}
.y7c{bottom:477.346533pt;}
.ya1{bottom:480.837200pt;}
.y17a{bottom:483.380667pt;}
.yff{bottom:484.325867pt;}
.yde{bottom:484.385867pt;}
.y14b{bottom:487.087867pt;}
.yc6{bottom:489.138667pt;}
.y29{bottom:491.783733pt;}
.y56{bottom:494.292533pt;}
.y7b{bottom:495.753200pt;}
.y179{bottom:497.912667pt;}
.ya0{bottom:499.038533pt;}
.y14a{bottom:501.619867pt;}
.yfe{bottom:502.732533pt;}
.yc5{bottom:507.545333pt;}
.ydd{bottom:510.722800pt;}
.y178{bottom:512.444667pt;}
.y55{bottom:512.699200pt;}
.y7a{bottom:514.159867pt;}
.y149{bottom:516.151867pt;}
.y9f{bottom:517.239867pt;}
.yfd{bottom:521.139200pt;}
.yc4{bottom:525.952000pt;}
.y177{bottom:526.976667pt;}
.ydc{bottom:527.656133pt;}
.y148{bottom:530.683867pt;}
.y54{bottom:531.105867pt;}
.y79{bottom:532.566533pt;}
.y9e{bottom:535.441200pt;}
.yb{bottom:535.843744pt;}
.yfc{bottom:539.545867pt;}
.yc3{bottom:544.358667pt;}
.ydb{bottom:544.589467pt;}
.y147{bottom:545.215867pt;}
.y53{bottom:549.512533pt;}
.y78{bottom:550.973200pt;}
.y176{bottom:552.848667pt;}
.y9d{bottom:553.642533pt;}
.ya{bottom:554.292215pt;}
.yfb{bottom:557.952533pt;}
.y146{bottom:559.747867pt;}
.yc2{bottom:562.765333pt;}
.y9{bottom:566.161674pt;}
.y52{bottom:567.919200pt;}
.y175{bottom:569.276667pt;}
.y77{bottom:569.379867pt;}
.y9c{bottom:571.843867pt;}
.y145{bottom:574.279867pt;}
.yfa{bottom:576.359200pt;}
.y3a{bottom:578.659867pt;}
.yc1{bottom:581.172000pt;}
.y174{bottom:583.808667pt;}
.y24{bottom:584.157200pt;}
.y51{bottom:586.325867pt;}
.y76{bottom:587.786533pt;}
.y144{bottom:588.811867pt;}
.y8{bottom:589.292976pt;}
.y9b{bottom:590.045200pt;}
.yf9{bottom:594.765867pt;}
.y173{bottom:598.340667pt;}
.yc0{bottom:599.578667pt;}
.y7{bottom:601.172911pt;}
.y143{bottom:603.343867pt;}
.y50{bottom:604.732533pt;}
.y75{bottom:606.193200pt;}
.y9a{bottom:608.246533pt;}
.y39{bottom:612.259867pt;}
.y172{bottom:612.872667pt;}
.y6{bottom:613.052847pt;}
.yf8{bottom:613.172533pt;}
.y142{bottom:617.875867pt;}
.ybf{bottom:617.985333pt;}
.y4f{bottom:623.139200pt;}
.y74{bottom:624.599867pt;}
.y5{bottom:624.932782pt;}
.y99{bottom:626.447867pt;}
.y171{bottom:627.404667pt;}
.y6a{bottom:630.603467pt;}
.yf7{bottom:631.579200pt;}
.y141{bottom:632.407867pt;}
.ybe{bottom:636.392000pt;}
.y4e{bottom:641.545867pt;}
.y170{bottom:641.936667pt;}
.y23{bottom:642.845200pt;}
.y73{bottom:643.006533pt;}
.y98{bottom:644.649200pt;}
.y140{bottom:646.939867pt;}
.yf6{bottom:649.985867pt;}
.ybd{bottom:654.798667pt;}
.y16f{bottom:656.468667pt;}
.y4d{bottom:659.952533pt;}
.y72{bottom:661.413200pt;}
.y13f{bottom:661.471867pt;}
.y97{bottom:662.850533pt;}
.ybc{bottom:673.205333pt;}
.y13e{bottom:676.003867pt;}
.yf5{bottom:676.322933pt;}
.y4c{bottom:678.359200pt;}
.y38{bottom:679.459867pt;}
.y71{bottom:679.819867pt;}
.y4{bottom:680.299146pt;}
.y96{bottom:681.051867pt;}
.y16e{bottom:682.340667pt;}
.y13d{bottom:690.535867pt;}
.ybb{bottom:691.612000pt;}
.yf4{bottom:693.256267pt;}
.y4b{bottom:696.765867pt;}
.y3{bottom:697.909527pt;}
.y70{bottom:698.226533pt;}
.y16d{bottom:698.768667pt;}
.y95{bottom:699.253200pt;}
.y13c{bottom:705.067867pt;}
.yba{bottom:710.018667pt;}
.yf3{bottom:710.189600pt;}
.y37{bottom:713.059867pt;}
.y16c{bottom:713.300667pt;}
.y4a{bottom:715.172533pt;}
.y6f{bottom:716.633200pt;}
.y94{bottom:717.454533pt;}
.y2{bottom:718.704651pt;}
.y13b{bottom:719.599867pt;}
.y22{bottom:721.511867pt;}
.y16b{bottom:727.832667pt;}
.yb9{bottom:728.425333pt;}
.y49{bottom:733.579200pt;}
.y13a{bottom:734.131867pt;}
.y6e{bottom:735.039867pt;}
.y93{bottom:735.655867pt;}
.y16a{bottom:742.364667pt;}
.y36{bottom:746.659867pt;}
.y139{bottom:748.663867pt;}
.y48{bottom:751.985867pt;}
.y6d{bottom:753.446533pt;}
.y92{bottom:753.857200pt;}
.y169{bottom:756.896667pt;}
.yb8{bottom:762.699333pt;}
.y138{bottom:763.195867pt;}
.y168{bottom:771.428667pt;}
.y6c{bottom:771.853200pt;}
.y91{bottom:772.058533pt;}
.y137{bottom:777.727867pt;}
.y35{bottom:780.259867pt;}
.y167{bottom:785.960667pt;}
.y47{bottom:786.259867pt;}
.yb7{bottom:786.699333pt;}
.y6b{bottom:790.259867pt;}
.y136{bottom:792.259867pt;}
.y46{bottom:846.236267pt;}
.h6{height:24.841007pt;}
.h12{height:25.375000pt;}
.h7{height:27.946133pt;}
.h5{height:31.051259pt;}
.h4{height:34.156385pt;}
.h8{height:34.777410pt;}
.h16{height:38.062500pt;}
.h15{height:38.812500pt;}
.h1c{height:42.291667pt;}
.he{height:43.283854pt;}
.h3{height:43.471763pt;}
.hf{height:46.520833pt;}
.h19{height:47.218750pt;}
.h11{height:48.242188pt;}
.h17{height:50.750000pt;}
.h1b{height:51.750000pt;}
.h1d{height:56.062500pt;}
.h1a{height:58.242188pt;}
.h18{height:64.687500pt;}
.h13{height:77.929688pt;}
.h10{height:80.354167pt;}
.h14{height:88.812500pt;}
.hb{height:153.125000pt;}
.hd{height:188.875000pt;}
.hc{height:315.364583pt;}
.h2{height:881.975189pt;}
.h0{height:882.506667pt;}
.h1{height:882.666667pt;}
.ha{height:888.000000pt;}
.h9{height:888.189333pt;}
.w1{width:623.333333pt;}
.w3{width:623.622667pt;}
.w2{width:623.623265pt;}
.w0{width:623.626667pt;}
.x0{left:0.000000pt;}
.x3{left:32.664584pt;}
.x1{left:38.604551pt;}
.x15{left:41.574800pt;}
.x1b{left:53.574800pt;}
.x1a{left:68.031467pt;}
.x8{left:71.294000pt;}
.x13{left:76.488800pt;}
.x1c{left:86.922133pt;}
.x14{left:101.495467pt;}
.x2{left:103.933719pt;}
.x9{left:120.852667pt;}
.x17{left:143.622000pt;}
.x10{left:159.135467pt;}
.x1d{left:162.519600pt;}
.x11{left:167.686133pt;}
.x7{left:169.238000pt;}
.xe{left:175.694133pt;}
.xb{left:185.892267pt;}
.xc{left:191.794933pt;}
.x12{left:194.467467pt;}
.xf{left:203.590133pt;}
.x28{left:205.489867pt;}
.x21{left:225.373867pt;}
.xa{left:250.242000pt;}
.xd{left:273.007467pt;}
.x24{left:275.101867pt;}
.x23{left:280.525867pt;}
.x1f{left:286.093867pt;}
.x4{left:305.871665pt;}
.x2a{left:307.621867pt;}
.x22{left:314.917867pt;}
.x27{left:324.529867pt;}
.x1e{left:339.169867pt;}
.x26{left:344.353867pt;}
.x16{left:361.852267pt;}
.x25{left:380.629867pt;}
.x20{left:385.597867pt;}
.x5{left:399.557467pt;}
.x29{left:414.049867pt;}
.x6{left:427.691333pt;}
.x2b{left:474.577867pt;}
.x18{left:564.731733pt;}
.x19{left:570.047200pt;}
}




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