
    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_b0968b52fbaa1a9e5db47ead.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_70e8cd284a61f5bc431d3a56.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_882eb86ab70ccd305f5d301a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859000;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_3855136e7d9464d03c5cae89.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729000;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_5d78cd6279cd1dac0a0e7e48.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740000;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_9111f9654f1c1929c2b4a4df.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.137667;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_05bf99b06cae34c61087a594.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.137667;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_a17a8c842a90d2144c28f4ad.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.963000;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_8739fbd0ed033a3b91b20d66.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.963000;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_3d6ae8c31646f923df10ca8f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.865000;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_254c4fd2418fbae88f932cb6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969000;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_4aa8e022da9b16d258b3cb2f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.963000;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_498b2a6b7c4bbacb58c19803.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-8.316864px;}
.ls14{letter-spacing:-1.323000px;}
.lsb{letter-spacing:-1.260000px;}
.ls5{letter-spacing:-1.197000px;}
.ls9{letter-spacing:-1.008000px;}
.lsc{letter-spacing:-0.882000px;}
.ls19{letter-spacing:-0.819000px;}
.lsa{letter-spacing:-0.756000px;}
.ls4{letter-spacing:-0.693000px;}
.ls3{letter-spacing:-0.648000px;}
.ls13{letter-spacing:-0.630000px;}
.ls15{letter-spacing:-0.441000px;}
.ls8{letter-spacing:-0.378000px;}
.ls11{letter-spacing:-0.189000px;}
.lsd{letter-spacing:-0.126000px;}
.ls2{letter-spacing:-0.120000px;}
.ls10{letter-spacing:-0.063000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.063000px;}
.ls7{letter-spacing:0.126000px;}
.ls6{letter-spacing:0.315000px;}
.lsf{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.567000px;}
.lse{letter-spacing:0.693000px;}
.ls16{letter-spacing:0.756000px;}
.ls18{letter-spacing:0.882000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-98.554838px;}
.ws0{word-spacing:-96.891466px;}
.ws2{word-spacing:-57.318000px;}
.ws13{word-spacing:-13.980000px;}
.ws7{word-spacing:-13.005000px;}
.ws14{word-spacing:-12.663000px;}
.ws27{word-spacing:-11.970000px;}
.ws2c{word-spacing:-1.377000px;}
.ws29{word-spacing:-0.882000px;}
.ws25{word-spacing:-0.756000px;}
.ws1c{word-spacing:-0.693000px;}
.ws28{word-spacing:-0.567000px;}
.ws1d{word-spacing:-0.504000px;}
.wse{word-spacing:-0.315000px;}
.ws11{word-spacing:-0.216000px;}
.wsf{word-spacing:-0.126000px;}
.ws20{word-spacing:-0.063000px;}
.ws6{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws1e{word-spacing:0.063000px;}
.ws4{word-spacing:0.120000px;}
.ws1b{word-spacing:0.126000px;}
.ws1f{word-spacing:0.189000px;}
.ws10{word-spacing:0.378000px;}
.ws24{word-spacing:0.441000px;}
.ws21{word-spacing:0.630000px;}
.wsc{word-spacing:0.693000px;}
.ws17{word-spacing:0.756000px;}
.ws2b{word-spacing:0.819000px;}
.ws19{word-spacing:0.882000px;}
.ws16{word-spacing:1.008000px;}
.wsd{word-spacing:1.197000px;}
.ws22{word-spacing:1.260000px;}
.ws23{word-spacing:1.323000px;}
.ws1a{word-spacing:4.347000px;}
.ws2a{word-spacing:9.513000px;}
.wsb{word-spacing:13.986000px;}
.ws18{word-spacing:18.522000px;}
.wsa{word-spacing:37.170000px;}
.ws15{word-spacing:227.769600px;}
.ws9{word-spacing:227.770200px;}
.ws8{word-spacing:364.686000px;}
.ws26{word-spacing:6191.928000px;}
.ws12{word-spacing:6197.616000px;}
.ws5{word-spacing:6199.128000px;}
._6{margin-left:-14.190902px;}
._4{margin-left:-12.919198px;}
._3{margin-left:-5.546098px;}
._1{margin-left:-4.320000px;}
._2{margin-left:-3.200098px;}
._0{margin-left:-2.079902px;}
._5{margin-left:-1.071000px;}
._c{width:1.131902px;}
._d{width:2.232000px;}
._11{width:3.289771px;}
._8{width:4.292098px;}
._7{width:5.457902px;}
._b{width:6.648000px;}
._a{width:8.107805px;}
._9{width:10.074000px;}
._e{width:11.393400px;}
._1f{width:13.886102px;}
._12{width:15.082200px;}
._16{width:16.446017px;}
._18{width:17.497814px;}
._10{width:18.556493px;}
._1d{width:20.161507px;}
._f{width:21.816600px;}
._13{width:23.077500px;}
._19{width:24.645600px;}
._17{width:25.883400px;}
._14{width:27.543600px;}
._15{width:29.468100px;}
._1a{width:30.668400px;}
._1b{width:32.023798px;}
._1e{width:33.678598px;}
._20{width:34.841083px;}
._21{width:47.735390px;}
._22{width:50.509198px;}
._1c{width:55.796995px;}
._23{width:662.731205px;}
.fc6{color:transparent;}
.fc5{color:rgb(87,87,86);}
.fc4{color:rgb(112,111,111);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(135,135,135);}
.fc1{color:rgb(99,185,233);}
.fc0{color:rgb(79,76,77);}
.fs6{font-size:51.000000px;}
.fs5{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:246.000000px;}
.fs0{font-size:415.843200px;}
.fs3{font-size:960.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:41.220000px;}
.y8f{bottom:47.834700px;}
.y8e{bottom:62.834700px;}
.y80{bottom:95.839950px;}
.y10a{bottom:95.897700px;}
.y8c{bottom:95.981700px;}
.ye5{bottom:96.028950px;}
.ybb{bottom:96.049950px;}
.y7f{bottom:116.834700px;}
.y182{bottom:116.869200px;}
.y109{bottom:116.892450px;}
.y57{bottom:116.905950px;}
.y8b{bottom:116.976450px;}
.ye4{bottom:117.023700px;}
.yba{bottom:117.044700px;}
.y137{bottom:117.112950px;}
.y181{bottom:137.868450px;}
.y108{bottom:137.887200px;}
.y56{bottom:137.905200px;}
.y8a{bottom:137.971200px;}
.ye3{bottom:138.018450px;}
.yb9{bottom:138.039450px;}
.y136{bottom:138.107700px;}
.y7e{bottom:158.834700px;}
.y2f{bottom:158.866200px;}
.y107{bottom:158.881950px;}
.y55{bottom:158.904450px;}
.y89{bottom:158.965950px;}
.ye2{bottom:159.013200px;}
.yb8{bottom:159.034200px;}
.y135{bottom:159.102450px;}
.y2e{bottom:179.865450px;}
.y180{bottom:179.866950px;}
.y106{bottom:179.876700px;}
.y54{bottom:179.903700px;}
.y88{bottom:179.960700px;}
.ye1{bottom:180.007950px;}
.yb7{bottom:180.028950px;}
.y134{bottom:180.097200px;}
.y15d{bottom:200.840700px;}
.y2d{bottom:200.864700px;}
.y17f{bottom:200.866200px;}
.y105{bottom:200.871450px;}
.y53{bottom:200.902950px;}
.y87{bottom:200.955450px;}
.ye0{bottom:201.002700px;}
.yb6{bottom:201.023700px;}
.y133{bottom:201.091950px;}
.y15c{bottom:221.839950px;}
.y2c{bottom:221.863950px;}
.y17e{bottom:221.865450px;}
.y104{bottom:221.866200px;}
.y86{bottom:221.950200px;}
.y7d{bottom:221.965950px;}
.ydf{bottom:221.997450px;}
.yb5{bottom:222.018450px;}
.y132{bottom:222.086700px;}
.y15b{bottom:242.839200px;}
.y103{bottom:242.860950px;}
.y17d{bottom:242.864700px;}
.y52{bottom:242.901450px;}
.y85{bottom:242.944950px;}
.y7c{bottom:242.960700px;}
.yde{bottom:242.992200px;}
.yb4{bottom:243.013200px;}
.y131{bottom:243.081450px;}
.y102{bottom:263.855700px;}
.y2b{bottom:263.862450px;}
.y51{bottom:263.900700px;}
.y84{bottom:263.939700px;}
.y7b{bottom:263.955450px;}
.ydd{bottom:263.986950px;}
.yb3{bottom:264.007950px;}
.y130{bottom:264.076200px;}
.y15a{bottom:284.837700px;}
.y101{bottom:284.850450px;}
.y2a{bottom:284.861700px;}
.y17c{bottom:284.863200px;}
.y50{bottom:284.899950px;}
.y83{bottom:284.934450px;}
.y7a{bottom:284.950200px;}
.ydc{bottom:284.981700px;}
.yb2{bottom:285.002700px;}
.y12f{bottom:285.070950px;}
.y159{bottom:305.836950px;}
.y100{bottom:305.845200px;}
.y29{bottom:305.860950px;}
.y17b{bottom:305.862450px;}
.y4f{bottom:305.899200px;}
.y82{bottom:305.929200px;}
.y79{bottom:305.944950px;}
.ydb{bottom:305.976450px;}
.yb1{bottom:305.997450px;}
.y12e{bottom:306.065700px;}
.y158{bottom:326.836200px;}
.yff{bottom:326.839950px;}
.y28{bottom:326.860200px;}
.y17a{bottom:326.861700px;}
.y4e{bottom:326.898450px;}
.y81{bottom:326.923950px;}
.y78{bottom:326.939700px;}
.yb0{bottom:326.992200px;}
.y12d{bottom:327.060450px;}
.yfe{bottom:347.834700px;}
.y157{bottom:347.835450px;}
.y27{bottom:347.859450px;}
.y77{bottom:347.934450px;}
.yda{bottom:347.981700px;}
.yaf{bottom:347.986950px;}
.y12c{bottom:348.055200px;}
.y7{bottom:352.018200px;}
.y156{bottom:368.834700px;}
.y26{bottom:368.858700px;}
.y179{bottom:368.860200px;}
.y4d{bottom:368.896950px;}
.y76{bottom:368.929200px;}
.yd9{bottom:368.976450px;}
.yae{bottom:368.981700px;}
.y12b{bottom:369.049950px;}
.y9{bottom:381.914100px;}
.yfd{bottom:389.834700px;}
.y178{bottom:389.859450px;}
.y4c{bottom:389.896200px;}
.y75{bottom:389.923950px;}
.yd8{bottom:389.971200px;}
.yad{bottom:389.976450px;}
.y13b{bottom:389.992200px;}
.y12a{bottom:390.044700px;}
.yfc{bottom:410.834700px;}
.y25{bottom:410.857200px;}
.y177{bottom:410.858700px;}
.y4b{bottom:410.895450px;}
.y74{bottom:410.918700px;}
.yd7{bottom:410.965950px;}
.yac{bottom:410.971200px;}
.y13a{bottom:410.986950px;}
.y129{bottom:411.039450px;}
.y24{bottom:431.856450px;}
.y73{bottom:431.913450px;}
.yd6{bottom:431.960700px;}
.yab{bottom:431.965950px;}
.y139{bottom:431.981700px;}
.y128{bottom:432.034200px;}
.y6{bottom:445.018200px;}
.y23{bottom:452.855700px;}
.y176{bottom:452.857200px;}
.y4a{bottom:452.893950px;}
.y72{bottom:452.908200px;}
.yd5{bottom:452.955450px;}
.yaa{bottom:452.960700px;}
.y138{bottom:452.976450px;}
.y127{bottom:453.028950px;}
.y22{bottom:473.854950px;}
.y175{bottom:473.856450px;}
.y49{bottom:473.893200px;}
.y71{bottom:473.902950px;}
.yd4{bottom:473.950200px;}
.ya9{bottom:473.955450px;}
.y155{bottom:473.960700px;}
.yfb{bottom:473.971200px;}
.y126{bottom:474.023700px;}
.y21{bottom:494.854200px;}
.y174{bottom:494.855700px;}
.y48{bottom:494.892450px;}
.y70{bottom:494.897700px;}
.yd3{bottom:494.944950px;}
.ya8{bottom:494.950200px;}
.y154{bottom:494.955450px;}
.yfa{bottom:494.965950px;}
.y125{bottom:495.018450px;}
.y173{bottom:515.854950px;}
.y47{bottom:515.891700px;}
.y6f{bottom:515.892450px;}
.yd2{bottom:515.939700px;}
.ya7{bottom:515.944950px;}
.y153{bottom:515.950200px;}
.yf9{bottom:515.960700px;}
.y20{bottom:536.852700px;}
.y172{bottom:536.854200px;}
.y6e{bottom:536.887200px;}
.y46{bottom:536.890950px;}
.yd1{bottom:536.934450px;}
.ya6{bottom:536.939700px;}
.y152{bottom:536.944950px;}
.yf8{bottom:536.955450px;}
.y124{bottom:537.023700px;}
.y5{bottom:538.018200px;}
.y8{bottom:551.414100px;}
.y1f{bottom:557.851950px;}
.y171{bottom:557.853450px;}
.y6d{bottom:557.881950px;}
.y45{bottom:557.890200px;}
.yd0{bottom:557.929200px;}
.ya5{bottom:557.934450px;}
.y151{bottom:557.939700px;}
.yf7{bottom:557.950200px;}
.y123{bottom:558.018450px;}
.y170{bottom:578.852700px;}
.y6c{bottom:578.876700px;}
.ycf{bottom:578.923950px;}
.ya4{bottom:578.929200px;}
.y150{bottom:578.934450px;}
.yf6{bottom:578.944950px;}
.y122{bottom:579.013200px;}
.y1e{bottom:599.850450px;}
.y6b{bottom:599.871450px;}
.y44{bottom:599.888700px;}
.yce{bottom:599.918700px;}
.ya3{bottom:599.923950px;}
.y14f{bottom:599.929200px;}
.yf5{bottom:599.939700px;}
.y121{bottom:600.007950px;}
.y1d{bottom:620.849700px;}
.y16f{bottom:620.851200px;}
.y6a{bottom:620.866200px;}
.y43{bottom:620.887950px;}
.ycd{bottom:620.913450px;}
.ya2{bottom:620.918700px;}
.y14e{bottom:620.923950px;}
.yf4{bottom:620.934450px;}
.y120{bottom:621.002700px;}
.y4{bottom:631.018200px;}
.y1c{bottom:641.848950px;}
.y16e{bottom:641.850450px;}
.y69{bottom:641.860950px;}
.y42{bottom:641.887200px;}
.ycc{bottom:641.908200px;}
.ya1{bottom:641.913450px;}
.y14d{bottom:641.918700px;}
.yf3{bottom:641.929200px;}
.y11f{bottom:641.997450px;}
.y1b{bottom:662.848200px;}
.y16d{bottom:662.849700px;}
.y68{bottom:662.855700px;}
.y41{bottom:662.886450px;}
.ycb{bottom:662.902950px;}
.ya0{bottom:662.908200px;}
.y14c{bottom:662.913450px;}
.yf2{bottom:662.923950px;}
.y11e{bottom:662.992200px;}
.y1a{bottom:683.847450px;}
.y16c{bottom:683.848950px;}
.y67{bottom:683.850450px;}
.y40{bottom:683.885700px;}
.yca{bottom:683.897700px;}
.y9f{bottom:683.902950px;}
.y14b{bottom:683.908200px;}
.yf1{bottom:683.918700px;}
.y11d{bottom:683.986950px;}
.y66{bottom:704.845200px;}
.y19{bottom:704.846700px;}
.y3f{bottom:704.884950px;}
.yc9{bottom:704.892450px;}
.y14a{bottom:704.902950px;}
.yf0{bottom:704.913450px;}
.y11c{bottom:704.981700px;}
.y65{bottom:725.839950px;}
.y16b{bottom:725.847450px;}
.y3e{bottom:725.884200px;}
.yc8{bottom:725.887200px;}
.y149{bottom:725.897700px;}
.y9e{bottom:725.908200px;}
.y11b{bottom:725.976450px;}
.y64{bottom:746.834700px;}
.y18{bottom:746.845200px;}
.y16a{bottom:746.846700px;}
.yc7{bottom:746.881950px;}
.y9d{bottom:746.902950px;}
.y11a{bottom:746.971200px;}
.y3{bottom:751.738650px;}
.y17{bottom:767.844450px;}
.y169{bottom:767.845950px;}
.yc6{bottom:767.876700px;}
.y3d{bottom:767.882700px;}
.y9c{bottom:767.897700px;}
.y148{bottom:767.902950px;}
.y119{bottom:767.965950px;}
.y16{bottom:788.843700px;}
.y168{bottom:788.845200px;}
.y3c{bottom:788.881950px;}
.y9b{bottom:788.892450px;}
.y147{bottom:788.897700px;}
.y118{bottom:788.960700px;}
.y2{bottom:791.931000px;}
.y15{bottom:809.842950px;}
.y3b{bottom:809.881200px;}
.yc5{bottom:809.881950px;}
.y18d{bottom:809.882700px;}
.y9a{bottom:809.887200px;}
.y146{bottom:809.892450px;}
.y117{bottom:809.955450px;}
.y63{bottom:830.834700px;}
.y167{bottom:830.843700px;}
.yc4{bottom:830.876700px;}
.y3a{bottom:830.880450px;}
.y99{bottom:830.881950px;}
.y145{bottom:830.887200px;}
.y116{bottom:830.950200px;}
.y62{bottom:851.834700px;}
.y14{bottom:851.841450px;}
.y166{bottom:851.842950px;}
.yc3{bottom:851.871450px;}
.y98{bottom:851.876700px;}
.y39{bottom:851.879700px;}
.y18c{bottom:851.881200px;}
.y144{bottom:851.881950px;}
.y1{bottom:859.112850px;}
.y61{bottom:872.834700px;}
.y13{bottom:872.840700px;}
.y165{bottom:872.842200px;}
.yc2{bottom:872.866200px;}
.y97{bottom:872.871450px;}
.y143{bottom:872.876700px;}
.y38{bottom:872.878950px;}
.yef{bottom:872.887200px;}
.y115{bottom:872.955450px;}
.y60{bottom:893.834700px;}
.y12{bottom:893.839950px;}
.yc1{bottom:893.860950px;}
.y96{bottom:893.866200px;}
.y142{bottom:893.871450px;}
.y18b{bottom:893.879700px;}
.yee{bottom:893.881950px;}
.y114{bottom:893.950200px;}
.y5f{bottom:914.834700px;}
.y11{bottom:914.839200px;}
.y164{bottom:914.840700px;}
.yc0{bottom:914.855700px;}
.y95{bottom:914.860950px;}
.y141{bottom:914.866200px;}
.yed{bottom:914.876700px;}
.y37{bottom:914.877450px;}
.y18a{bottom:914.878950px;}
.y113{bottom:914.944950px;}
.y5e{bottom:935.834700px;}
.y10{bottom:935.838450px;}
.y163{bottom:935.839950px;}
.ybf{bottom:935.850450px;}
.y94{bottom:935.855700px;}
.y140{bottom:935.860950px;}
.yec{bottom:935.871450px;}
.y36{bottom:935.876700px;}
.y189{bottom:935.878200px;}
.y112{bottom:935.939700px;}
.y5d{bottom:956.834700px;}
.yf{bottom:956.837700px;}
.y162{bottom:956.839200px;}
.ybe{bottom:956.845200px;}
.y93{bottom:956.850450px;}
.y13f{bottom:956.855700px;}
.yeb{bottom:956.866200px;}
.y35{bottom:956.875950px;}
.y188{bottom:956.877450px;}
.y111{bottom:956.934450px;}
.y5c{bottom:977.834700px;}
.y161{bottom:977.838450px;}
.ybd{bottom:977.839950px;}
.y92{bottom:977.845200px;}
.y13e{bottom:977.850450px;}
.yea{bottom:977.860950px;}
.y34{bottom:977.875200px;}
.y187{bottom:977.876700px;}
.y110{bottom:977.929200px;}
.ybc{bottom:998.834700px;}
.ye{bottom:998.836200px;}
.y91{bottom:998.839950px;}
.y13d{bottom:998.845200px;}
.ye9{bottom:998.855700px;}
.y186{bottom:998.875950px;}
.y10f{bottom:998.923950px;}
.y90{bottom:1019.834700px;}
.yd{bottom:1019.835450px;}
.y160{bottom:1019.836950px;}
.y13c{bottom:1019.839950px;}
.ye8{bottom:1019.850450px;}
.y33{bottom:1019.873700px;}
.y10e{bottom:1019.918700px;}
.y5b{bottom:1034.834700px;}
.yc{bottom:1040.834700px;}
.y15f{bottom:1040.836200px;}
.ye7{bottom:1040.845200px;}
.y32{bottom:1040.872950px;}
.y185{bottom:1040.874450px;}
.y10d{bottom:1040.913450px;}
.y5a{bottom:1061.834700px;}
.y15e{bottom:1061.835450px;}
.ye6{bottom:1061.839950px;}
.y31{bottom:1061.872200px;}
.y184{bottom:1061.873700px;}
.y10c{bottom:1061.908200px;}
.yb{bottom:1082.834700px;}
.y30{bottom:1082.871450px;}
.y183{bottom:1082.872950px;}
.y10b{bottom:1082.902950px;}
.y59{bottom:1092.394200px;}
.y8d{bottom:1187.834100px;}
.y58{bottom:1187.834700px;}
.h8{height:43.800000px;}
.hd{height:44.037000px;}
.hb{height:44.400000px;}
.h9{height:46.614000px;}
.he{height:50.526000px;}
.h7{height:51.768000px;}
.hc{height:54.840000px;}
.ha{height:71.040000px;}
.hf{height:71.041800px;}
.h4{height:87.600000px;}
.h3{height:88.800000px;}
.h5{height:182.040000px;}
.h2{height:307.723968px;}
.h6{height:681.600000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.x1{left:62.185050px;}
.x3{left:63.297600px;}
.xa{left:82.913400px;}
.x4{left:85.039350px;}
.x2{left:223.228350px;}
.x5{left:467.717850px;}
.x6{left:977.952750px;}
.x8{left:979.675800px;}
.x9{left:1029.790800px;}
.x7{left:1360.630500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-7.392768pt;}
.ls14{letter-spacing:-1.176000pt;}
.lsb{letter-spacing:-1.120000pt;}
.ls5{letter-spacing:-1.064000pt;}
.ls9{letter-spacing:-0.896000pt;}
.lsc{letter-spacing:-0.784000pt;}
.ls19{letter-spacing:-0.728000pt;}
.lsa{letter-spacing:-0.672000pt;}
.ls4{letter-spacing:-0.616000pt;}
.ls3{letter-spacing:-0.576000pt;}
.ls13{letter-spacing:-0.560000pt;}
.ls15{letter-spacing:-0.392000pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls11{letter-spacing:-0.168000pt;}
.lsd{letter-spacing:-0.112000pt;}
.ls2{letter-spacing:-0.106667pt;}
.ls10{letter-spacing:-0.056000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.056000pt;}
.ls7{letter-spacing:0.112000pt;}
.ls6{letter-spacing:0.280000pt;}
.lsf{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.504000pt;}
.lse{letter-spacing:0.616000pt;}
.ls16{letter-spacing:0.672000pt;}
.ls18{letter-spacing:0.784000pt;}
.ws1{word-spacing:-87.604301pt;}
.ws0{word-spacing:-86.125747pt;}
.ws2{word-spacing:-50.949333pt;}
.ws13{word-spacing:-12.426667pt;}
.ws7{word-spacing:-11.560000pt;}
.ws14{word-spacing:-11.256000pt;}
.ws27{word-spacing:-10.640000pt;}
.ws2c{word-spacing:-1.224000pt;}
.ws29{word-spacing:-0.784000pt;}
.ws25{word-spacing:-0.672000pt;}
.ws1c{word-spacing:-0.616000pt;}
.ws28{word-spacing:-0.504000pt;}
.ws1d{word-spacing:-0.448000pt;}
.wse{word-spacing:-0.280000pt;}
.ws11{word-spacing:-0.192000pt;}
.wsf{word-spacing:-0.112000pt;}
.ws20{word-spacing:-0.056000pt;}
.ws6{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.056000pt;}
.ws4{word-spacing:0.106667pt;}
.ws1b{word-spacing:0.112000pt;}
.ws1f{word-spacing:0.168000pt;}
.ws10{word-spacing:0.336000pt;}
.ws24{word-spacing:0.392000pt;}
.ws21{word-spacing:0.560000pt;}
.wsc{word-spacing:0.616000pt;}
.ws17{word-spacing:0.672000pt;}
.ws2b{word-spacing:0.728000pt;}
.ws19{word-spacing:0.784000pt;}
.ws16{word-spacing:0.896000pt;}
.wsd{word-spacing:1.064000pt;}
.ws22{word-spacing:1.120000pt;}
.ws23{word-spacing:1.176000pt;}
.ws1a{word-spacing:3.864000pt;}
.ws2a{word-spacing:8.456000pt;}
.wsb{word-spacing:12.432000pt;}
.ws18{word-spacing:16.464000pt;}
.wsa{word-spacing:33.040000pt;}
.ws15{word-spacing:202.461867pt;}
.ws9{word-spacing:202.462400pt;}
.ws8{word-spacing:324.165333pt;}
.ws26{word-spacing:5503.936000pt;}
.ws12{word-spacing:5508.992000pt;}
.ws5{word-spacing:5510.336000pt;}
._6{margin-left:-12.614135pt;}
._4{margin-left:-11.483731pt;}
._3{margin-left:-4.929865pt;}
._1{margin-left:-3.840000pt;}
._2{margin-left:-2.844531pt;}
._0{margin-left:-1.848802pt;}
._5{margin-left:-0.952000pt;}
._c{width:1.006135pt;}
._d{width:1.984000pt;}
._11{width:2.924241pt;}
._8{width:3.815198pt;}
._7{width:4.851469pt;}
._b{width:5.909333pt;}
._a{width:7.206938pt;}
._9{width:8.954667pt;}
._e{width:10.127467pt;}
._1f{width:12.343202pt;}
._12{width:13.406400pt;}
._16{width:14.618682pt;}
._18{width:15.553613pt;}
._10{width:16.494660pt;}
._1d{width:17.921340pt;}
._f{width:19.392533pt;}
._13{width:20.513333pt;}
._19{width:21.907200pt;}
._17{width:23.007467pt;}
._14{width:24.483200pt;}
._15{width:26.193867pt;}
._1a{width:27.260800pt;}
._1b{width:28.465598pt;}
._1e{width:29.936531pt;}
._20{width:30.969852pt;}
._21{width:42.431458pt;}
._22{width:44.897065pt;}
._1c{width:49.597329pt;}
._23{width:589.094404pt;}
.fs6{font-size:45.333333pt;}
.fs5{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:218.666667pt;}
.fs0{font-size:369.638400pt;}
.fs3{font-size:853.333333pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:36.640000pt;}
.y8f{bottom:42.519733pt;}
.y8e{bottom:55.853067pt;}
.y80{bottom:85.191067pt;}
.y10a{bottom:85.242400pt;}
.y8c{bottom:85.317067pt;}
.ye5{bottom:85.359067pt;}
.ybb{bottom:85.377733pt;}
.y7f{bottom:103.853067pt;}
.y182{bottom:103.883733pt;}
.y109{bottom:103.904400pt;}
.y57{bottom:103.916400pt;}
.y8b{bottom:103.979067pt;}
.ye4{bottom:104.021067pt;}
.yba{bottom:104.039733pt;}
.y137{bottom:104.100400pt;}
.y181{bottom:122.549733pt;}
.y108{bottom:122.566400pt;}
.y56{bottom:122.582400pt;}
.y8a{bottom:122.641067pt;}
.ye3{bottom:122.683067pt;}
.yb9{bottom:122.701733pt;}
.y136{bottom:122.762400pt;}
.y7e{bottom:141.186400pt;}
.y2f{bottom:141.214400pt;}
.y107{bottom:141.228400pt;}
.y55{bottom:141.248400pt;}
.y89{bottom:141.303067pt;}
.ye2{bottom:141.345067pt;}
.yb8{bottom:141.363733pt;}
.y135{bottom:141.424400pt;}
.y2e{bottom:159.880400pt;}
.y180{bottom:159.881733pt;}
.y106{bottom:159.890400pt;}
.y54{bottom:159.914400pt;}
.y88{bottom:159.965067pt;}
.ye1{bottom:160.007067pt;}
.yb7{bottom:160.025733pt;}
.y134{bottom:160.086400pt;}
.y15d{bottom:178.525067pt;}
.y2d{bottom:178.546400pt;}
.y17f{bottom:178.547733pt;}
.y105{bottom:178.552400pt;}
.y53{bottom:178.580400pt;}
.y87{bottom:178.627067pt;}
.ye0{bottom:178.669067pt;}
.yb6{bottom:178.687733pt;}
.y133{bottom:178.748400pt;}
.y15c{bottom:197.191067pt;}
.y2c{bottom:197.212400pt;}
.y17e{bottom:197.213733pt;}
.y104{bottom:197.214400pt;}
.y86{bottom:197.289067pt;}
.y7d{bottom:197.303067pt;}
.ydf{bottom:197.331067pt;}
.yb5{bottom:197.349733pt;}
.y132{bottom:197.410400pt;}
.y15b{bottom:215.857067pt;}
.y103{bottom:215.876400pt;}
.y17d{bottom:215.879733pt;}
.y52{bottom:215.912400pt;}
.y85{bottom:215.951067pt;}
.y7c{bottom:215.965067pt;}
.yde{bottom:215.993067pt;}
.yb4{bottom:216.011733pt;}
.y131{bottom:216.072400pt;}
.y102{bottom:234.538400pt;}
.y2b{bottom:234.544400pt;}
.y51{bottom:234.578400pt;}
.y84{bottom:234.613067pt;}
.y7b{bottom:234.627067pt;}
.ydd{bottom:234.655067pt;}
.yb3{bottom:234.673733pt;}
.y130{bottom:234.734400pt;}
.y15a{bottom:253.189067pt;}
.y101{bottom:253.200400pt;}
.y2a{bottom:253.210400pt;}
.y17c{bottom:253.211733pt;}
.y50{bottom:253.244400pt;}
.y83{bottom:253.275067pt;}
.y7a{bottom:253.289067pt;}
.ydc{bottom:253.317067pt;}
.yb2{bottom:253.335733pt;}
.y12f{bottom:253.396400pt;}
.y159{bottom:271.855067pt;}
.y100{bottom:271.862400pt;}
.y29{bottom:271.876400pt;}
.y17b{bottom:271.877733pt;}
.y4f{bottom:271.910400pt;}
.y82{bottom:271.937067pt;}
.y79{bottom:271.951067pt;}
.ydb{bottom:271.979067pt;}
.yb1{bottom:271.997733pt;}
.y12e{bottom:272.058400pt;}
.y158{bottom:290.521067pt;}
.yff{bottom:290.524400pt;}
.y28{bottom:290.542400pt;}
.y17a{bottom:290.543733pt;}
.y4e{bottom:290.576400pt;}
.y81{bottom:290.599067pt;}
.y78{bottom:290.613067pt;}
.yb0{bottom:290.659733pt;}
.y12d{bottom:290.720400pt;}
.yfe{bottom:309.186400pt;}
.y157{bottom:309.187067pt;}
.y27{bottom:309.208400pt;}
.y77{bottom:309.275067pt;}
.yda{bottom:309.317067pt;}
.yaf{bottom:309.321733pt;}
.y12c{bottom:309.382400pt;}
.y7{bottom:312.905067pt;}
.y156{bottom:327.853067pt;}
.y26{bottom:327.874400pt;}
.y179{bottom:327.875733pt;}
.y4d{bottom:327.908400pt;}
.y76{bottom:327.937067pt;}
.yd9{bottom:327.979067pt;}
.yae{bottom:327.983733pt;}
.y12b{bottom:328.044400pt;}
.y9{bottom:339.479200pt;}
.yfd{bottom:346.519733pt;}
.y178{bottom:346.541733pt;}
.y4c{bottom:346.574400pt;}
.y75{bottom:346.599067pt;}
.yd8{bottom:346.641067pt;}
.yad{bottom:346.645733pt;}
.y13b{bottom:346.659733pt;}
.y12a{bottom:346.706400pt;}
.yfc{bottom:365.186400pt;}
.y25{bottom:365.206400pt;}
.y177{bottom:365.207733pt;}
.y4b{bottom:365.240400pt;}
.y74{bottom:365.261067pt;}
.yd7{bottom:365.303067pt;}
.yac{bottom:365.307733pt;}
.y13a{bottom:365.321733pt;}
.y129{bottom:365.368400pt;}
.y24{bottom:383.872400pt;}
.y73{bottom:383.923067pt;}
.yd6{bottom:383.965067pt;}
.yab{bottom:383.969733pt;}
.y139{bottom:383.983733pt;}
.y128{bottom:384.030400pt;}
.y6{bottom:395.571733pt;}
.y23{bottom:402.538400pt;}
.y176{bottom:402.539733pt;}
.y4a{bottom:402.572400pt;}
.y72{bottom:402.585067pt;}
.yd5{bottom:402.627067pt;}
.yaa{bottom:402.631733pt;}
.y138{bottom:402.645733pt;}
.y127{bottom:402.692400pt;}
.y22{bottom:421.204400pt;}
.y175{bottom:421.205733pt;}
.y49{bottom:421.238400pt;}
.y71{bottom:421.247067pt;}
.yd4{bottom:421.289067pt;}
.ya9{bottom:421.293733pt;}
.y155{bottom:421.298400pt;}
.yfb{bottom:421.307733pt;}
.y126{bottom:421.354400pt;}
.y21{bottom:439.870400pt;}
.y174{bottom:439.871733pt;}
.y48{bottom:439.904400pt;}
.y70{bottom:439.909067pt;}
.yd3{bottom:439.951067pt;}
.ya8{bottom:439.955733pt;}
.y154{bottom:439.960400pt;}
.yfa{bottom:439.969733pt;}
.y125{bottom:440.016400pt;}
.y173{bottom:458.537733pt;}
.y47{bottom:458.570400pt;}
.y6f{bottom:458.571067pt;}
.yd2{bottom:458.613067pt;}
.ya7{bottom:458.617733pt;}
.y153{bottom:458.622400pt;}
.yf9{bottom:458.631733pt;}
.y20{bottom:477.202400pt;}
.y172{bottom:477.203733pt;}
.y6e{bottom:477.233067pt;}
.y46{bottom:477.236400pt;}
.yd1{bottom:477.275067pt;}
.ya6{bottom:477.279733pt;}
.y152{bottom:477.284400pt;}
.yf8{bottom:477.293733pt;}
.y124{bottom:477.354400pt;}
.y5{bottom:478.238400pt;}
.y8{bottom:490.145867pt;}
.y1f{bottom:495.868400pt;}
.y171{bottom:495.869733pt;}
.y6d{bottom:495.895067pt;}
.y45{bottom:495.902400pt;}
.yd0{bottom:495.937067pt;}
.ya5{bottom:495.941733pt;}
.y151{bottom:495.946400pt;}
.yf7{bottom:495.955733pt;}
.y123{bottom:496.016400pt;}
.y170{bottom:514.535733pt;}
.y6c{bottom:514.557067pt;}
.ycf{bottom:514.599067pt;}
.ya4{bottom:514.603733pt;}
.y150{bottom:514.608400pt;}
.yf6{bottom:514.617733pt;}
.y122{bottom:514.678400pt;}
.y1e{bottom:533.200400pt;}
.y6b{bottom:533.219067pt;}
.y44{bottom:533.234400pt;}
.yce{bottom:533.261067pt;}
.ya3{bottom:533.265733pt;}
.y14f{bottom:533.270400pt;}
.yf5{bottom:533.279733pt;}
.y121{bottom:533.340400pt;}
.y1d{bottom:551.866400pt;}
.y16f{bottom:551.867733pt;}
.y6a{bottom:551.881067pt;}
.y43{bottom:551.900400pt;}
.ycd{bottom:551.923067pt;}
.ya2{bottom:551.927733pt;}
.y14e{bottom:551.932400pt;}
.yf4{bottom:551.941733pt;}
.y120{bottom:552.002400pt;}
.y4{bottom:560.905067pt;}
.y1c{bottom:570.532400pt;}
.y16e{bottom:570.533733pt;}
.y69{bottom:570.543067pt;}
.y42{bottom:570.566400pt;}
.ycc{bottom:570.585067pt;}
.ya1{bottom:570.589733pt;}
.y14d{bottom:570.594400pt;}
.yf3{bottom:570.603733pt;}
.y11f{bottom:570.664400pt;}
.y1b{bottom:589.198400pt;}
.y16d{bottom:589.199733pt;}
.y68{bottom:589.205067pt;}
.y41{bottom:589.232400pt;}
.ycb{bottom:589.247067pt;}
.ya0{bottom:589.251733pt;}
.y14c{bottom:589.256400pt;}
.yf2{bottom:589.265733pt;}
.y11e{bottom:589.326400pt;}
.y1a{bottom:607.864400pt;}
.y16c{bottom:607.865733pt;}
.y67{bottom:607.867067pt;}
.y40{bottom:607.898400pt;}
.yca{bottom:607.909067pt;}
.y9f{bottom:607.913733pt;}
.y14b{bottom:607.918400pt;}
.yf1{bottom:607.927733pt;}
.y11d{bottom:607.988400pt;}
.y66{bottom:626.529067pt;}
.y19{bottom:626.530400pt;}
.y3f{bottom:626.564400pt;}
.yc9{bottom:626.571067pt;}
.y14a{bottom:626.580400pt;}
.yf0{bottom:626.589733pt;}
.y11c{bottom:626.650400pt;}
.y65{bottom:645.191067pt;}
.y16b{bottom:645.197733pt;}
.y3e{bottom:645.230400pt;}
.yc8{bottom:645.233067pt;}
.y149{bottom:645.242400pt;}
.y9e{bottom:645.251733pt;}
.y11b{bottom:645.312400pt;}
.y64{bottom:663.853067pt;}
.y18{bottom:663.862400pt;}
.y16a{bottom:663.863733pt;}
.yc7{bottom:663.895067pt;}
.y9d{bottom:663.913733pt;}
.y11a{bottom:663.974400pt;}
.y3{bottom:668.212133pt;}
.y17{bottom:682.528400pt;}
.y169{bottom:682.529733pt;}
.yc6{bottom:682.557067pt;}
.y3d{bottom:682.562400pt;}
.y9c{bottom:682.575733pt;}
.y148{bottom:682.580400pt;}
.y119{bottom:682.636400pt;}
.y16{bottom:701.194400pt;}
.y168{bottom:701.195733pt;}
.y3c{bottom:701.228400pt;}
.y9b{bottom:701.237733pt;}
.y147{bottom:701.242400pt;}
.y118{bottom:701.298400pt;}
.y2{bottom:703.938667pt;}
.y15{bottom:719.860400pt;}
.y3b{bottom:719.894400pt;}
.yc5{bottom:719.895067pt;}
.y18d{bottom:719.895733pt;}
.y9a{bottom:719.899733pt;}
.y146{bottom:719.904400pt;}
.y117{bottom:719.960400pt;}
.y63{bottom:738.519733pt;}
.y167{bottom:738.527733pt;}
.yc4{bottom:738.557067pt;}
.y3a{bottom:738.560400pt;}
.y99{bottom:738.561733pt;}
.y145{bottom:738.566400pt;}
.y116{bottom:738.622400pt;}
.y62{bottom:757.186400pt;}
.y14{bottom:757.192400pt;}
.y166{bottom:757.193733pt;}
.yc3{bottom:757.219067pt;}
.y98{bottom:757.223733pt;}
.y39{bottom:757.226400pt;}
.y18c{bottom:757.227733pt;}
.y144{bottom:757.228400pt;}
.y1{bottom:763.655867pt;}
.y61{bottom:775.853067pt;}
.y13{bottom:775.858400pt;}
.y165{bottom:775.859733pt;}
.yc2{bottom:775.881067pt;}
.y97{bottom:775.885733pt;}
.y143{bottom:775.890400pt;}
.y38{bottom:775.892400pt;}
.yef{bottom:775.899733pt;}
.y115{bottom:775.960400pt;}
.y60{bottom:794.519733pt;}
.y12{bottom:794.524400pt;}
.yc1{bottom:794.543067pt;}
.y96{bottom:794.547733pt;}
.y142{bottom:794.552400pt;}
.y18b{bottom:794.559733pt;}
.yee{bottom:794.561733pt;}
.y114{bottom:794.622400pt;}
.y5f{bottom:813.186400pt;}
.y11{bottom:813.190400pt;}
.y164{bottom:813.191733pt;}
.yc0{bottom:813.205067pt;}
.y95{bottom:813.209733pt;}
.y141{bottom:813.214400pt;}
.yed{bottom:813.223733pt;}
.y37{bottom:813.224400pt;}
.y18a{bottom:813.225733pt;}
.y113{bottom:813.284400pt;}
.y5e{bottom:831.853067pt;}
.y10{bottom:831.856400pt;}
.y163{bottom:831.857733pt;}
.ybf{bottom:831.867067pt;}
.y94{bottom:831.871733pt;}
.y140{bottom:831.876400pt;}
.yec{bottom:831.885733pt;}
.y36{bottom:831.890400pt;}
.y189{bottom:831.891733pt;}
.y112{bottom:831.946400pt;}
.y5d{bottom:850.519733pt;}
.yf{bottom:850.522400pt;}
.y162{bottom:850.523733pt;}
.ybe{bottom:850.529067pt;}
.y93{bottom:850.533733pt;}
.y13f{bottom:850.538400pt;}
.yeb{bottom:850.547733pt;}
.y35{bottom:850.556400pt;}
.y188{bottom:850.557733pt;}
.y111{bottom:850.608400pt;}
.y5c{bottom:869.186400pt;}
.y161{bottom:869.189733pt;}
.ybd{bottom:869.191067pt;}
.y92{bottom:869.195733pt;}
.y13e{bottom:869.200400pt;}
.yea{bottom:869.209733pt;}
.y34{bottom:869.222400pt;}
.y187{bottom:869.223733pt;}
.y110{bottom:869.270400pt;}
.ybc{bottom:887.853067pt;}
.ye{bottom:887.854400pt;}
.y91{bottom:887.857733pt;}
.y13d{bottom:887.862400pt;}
.ye9{bottom:887.871733pt;}
.y186{bottom:887.889733pt;}
.y10f{bottom:887.932400pt;}
.y90{bottom:906.519733pt;}
.yd{bottom:906.520400pt;}
.y160{bottom:906.521733pt;}
.y13c{bottom:906.524400pt;}
.ye8{bottom:906.533733pt;}
.y33{bottom:906.554400pt;}
.y10e{bottom:906.594400pt;}
.y5b{bottom:919.853067pt;}
.yc{bottom:925.186400pt;}
.y15f{bottom:925.187733pt;}
.ye7{bottom:925.195733pt;}
.y32{bottom:925.220400pt;}
.y185{bottom:925.221733pt;}
.y10d{bottom:925.256400pt;}
.y5a{bottom:943.853067pt;}
.y15e{bottom:943.853733pt;}
.ye6{bottom:943.857733pt;}
.y31{bottom:943.886400pt;}
.y184{bottom:943.887733pt;}
.y10c{bottom:943.918400pt;}
.yb{bottom:962.519733pt;}
.y30{bottom:962.552400pt;}
.y183{bottom:962.553733pt;}
.y10b{bottom:962.580400pt;}
.y59{bottom:971.017067pt;}
.y8d{bottom:1055.852533pt;}
.y58{bottom:1055.853067pt;}
.h8{height:38.933333pt;}
.hd{height:39.144000pt;}
.hb{height:39.466667pt;}
.h9{height:41.434667pt;}
.he{height:44.912000pt;}
.h7{height:46.016000pt;}
.hc{height:48.746667pt;}
.ha{height:63.146667pt;}
.hf{height:63.148267pt;}
.h4{height:77.866667pt;}
.h3{height:78.933333pt;}
.h5{height:161.813333pt;}
.h2{height:273.532416pt;}
.h6{height:605.866667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x1{left:55.275600pt;}
.x3{left:56.264533pt;}
.xa{left:73.700800pt;}
.x4{left:75.590533pt;}
.x2{left:198.425200pt;}
.x5{left:415.749200pt;}
.x6{left:869.291333pt;}
.x8{left:870.822933pt;}
.x9{left:915.369600pt;}
.x7{left:1209.449333pt;}
}




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