
    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_f76d40b09fccdb07809700b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_f28f3edce16ceef048ef0746.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0d521a428fd9303e0e428f90.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_49f57d27a77c9274dd688f83.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.757812;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_c176b79007255f832067757b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.097656;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_757a94172aff44ea81037c20.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.835938;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_7ef9fc1b74c056c3f37562fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_0e0a8951d4dfabd36010a4ca.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_86610c4532cbdb77a7a0c99f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_abe1b44a3c76a20d543fc758.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.675781;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_d3fd657ebf6893e3451b285e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692871;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_40aef3afbb6cefd69b6ee385.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_92d78bf4d1650793d1fc519a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005371;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_0f0a4b5bb384af6b279a7ebf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_bd8019fe3750cbbdd0feb672.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;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_334d9deb8dce75e5ca882e6b.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_d8b004c0e26047e589f82961.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.758789;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:ff12;src:url('chunks/assets/font_77d85b57c57898f6c9e09b53.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.093262;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:ff13;src:url('chunks/assets/font_b979a90e2a5d43591b188d43.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.104004;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:ff14;src:url('chunks/assets/font_17d9a0af107a62af4726f57a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.858887;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:ff15;src:url('chunks/assets/font_22a9e8bf379096af1fa41936.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_5f6e41ec2b23484ed4630f8e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;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(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.lsb{letter-spacing:-0.968112px;}
.ls16{letter-spacing:-0.525312px;}
.ls12{letter-spacing:-0.470592px;}
.ls6{letter-spacing:-0.454176px;}
.ls15{letter-spacing:-0.432288px;}
.ls17{letter-spacing:-0.421344px;}
.ls14{letter-spacing:-0.361152px;}
.lsf{letter-spacing:-0.338688px;}
.ls10{letter-spacing:-0.320544px;}
.lse{letter-spacing:-0.241920px;}
.ls9{letter-spacing:-0.241200px;}
.ls11{letter-spacing:-0.223776px;}
.ls19{letter-spacing:-0.213408px;}
.ls7{letter-spacing:-0.186048px;}
.ls18{letter-spacing:-0.169632px;}
.ls3{letter-spacing:-0.158976px;}
.ls5{letter-spacing:-0.125856px;}
.ls8{letter-spacing:-0.115776px;}
.lsd{letter-spacing:-0.014400px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.007200px;}
.ls22{letter-spacing:0.012096px;}
.ls2{letter-spacing:0.014400px;}
.ls1e{letter-spacing:0.028800px;}
.ls1c{letter-spacing:0.035294px;}
.ls1f{letter-spacing:0.036000px;}
.ls1d{letter-spacing:0.049412px;}
.ls21{letter-spacing:0.063529px;}
.ls20{letter-spacing:0.070588px;}
.lsc{letter-spacing:0.083664px;}
.ls1{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.240480px;}
.ls1b{letter-spacing:0.251856px;}
.lsa{letter-spacing:0.286848px;}
.ls1a{letter-spacing:0.294624px;}
.ls23{letter-spacing:1.919088px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-26.821440px;}
.ws0{word-spacing:-18.288864px;}
.ws6{word-spacing:-18.014400px;}
.ws5{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.985600px;}
.ws12{word-spacing:-16.308000px;}
.wse{word-spacing:-16.286400px;}
.ws11{word-spacing:-16.272000px;}
.wsc{word-spacing:-16.257600px;}
.ws10{word-spacing:-16.002354px;}
.wsf{word-spacing:-15.988236px;}
.ws4{word-spacing:-14.896224px;}
.ws8{word-spacing:-14.227200px;}
.ws2{word-spacing:-14.041152px;}
.ws9{word-spacing:-13.866048px;}
.wsb{word-spacing:-13.805856px;}
.ws1{word-spacing:-13.773024px;}
.wsa{word-spacing:-13.701888px;}
.ws7{word-spacing:0.000000px;}
._6{margin-left:-8.979840px;}
._4{margin-left:-7.410240px;}
._7{margin-left:-6.095520px;}
._16{margin-left:-4.950720px;}
._1{margin-left:-3.841920px;}
._0{margin-left:-2.119680px;}
._3{margin-left:-1.023552px;}
._2{width:1.059840px;}
._5{width:2.126880px;}
._a{width:3.690720px;}
._b{width:5.194080px;}
._9{width:6.494400px;}
._e{width:8.301600px;}
._d{width:9.885600px;}
._18{width:11.060784px;}
._f{width:12.332304px;}
._c{width:14.140800px;}
._19{width:15.588000px;}
._10{width:16.862400px;}
._1b{width:19.087200px;}
._1c{width:20.721600px;}
._20{width:21.844800px;}
._12{width:23.025600px;}
._13{width:24.148800px;}
._1e{width:25.171200px;}
._11{width:26.589600px;}
._1a{width:27.900000px;}
._14{width:28.965600px;}
._17{width:30.915072px;}
._1d{width:33.091200px;}
._15{width:51.861600px;}
._8{width:77.637600px;}
._1f{width:151.842240px;}
.fc1{color:rgb(121,124,143);}
.fc2{color:rgb(51,198,119);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:70.588238px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.fs4{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y47{bottom:3.840000px;}
.y6a{bottom:4.620000px;}
.y11{bottom:4.680000px;}
.y52{bottom:4.920000px;}
.y4a{bottom:5.040000px;}
.y6e{bottom:5.340000px;}
.y9{bottom:6.900000px;}
.y49{bottom:7.560000px;}
.y46{bottom:21.120000px;}
.ydf{bottom:24.660000px;}
.y10{bottom:24.840000px;}
.ye9{bottom:25.140000px;}
.yc1{bottom:25.380000px;}
.ycb{bottom:25.500000px;}
.yc6{bottom:25.620000px;}
.yd0{bottom:25.740000px;}
.ybb{bottom:25.860000px;}
.yd5{bottom:25.980000px;}
.y18{bottom:26.100000px;}
.ybc{bottom:26.124708px;}
.y6d{bottom:26.220000px;}
.ye4{bottom:26.400000px;}
.y69{bottom:26.580000px;}
.y8{bottom:29.220000px;}
.y45{bottom:38.400000px;}
.ye{bottom:44.640000px;}
.yf{bottom:45.360000px;}
.y6c{bottom:46.740000px;}
.yc{bottom:46.860000px;}
.y17{bottom:46.980000px;}
.y68{bottom:48.900000px;}
.y44{bottom:55.680000px;}
.y4{bottom:57.240000px;}
.yde{bottom:57.780000px;}
.ye8{bottom:57.900000px;}
.yc0{bottom:58.140000px;}
.yc5{bottom:58.380000px;}
.yca{bottom:58.620000px;}
.yd4{bottom:58.740000px;}
.ycf{bottom:58.860000px;}
.yd9{bottom:58.980000px;}
.ydb{bottom:59.340000px;}
.ye3{bottom:59.520000px;}
.y50{bottom:66.960000px;}
.y16{bottom:67.860000px;}
.y67{bottom:71.220000px;}
.y43{bottom:72.600000px;}
.y51{bottom:75.000000px;}
.y3{bottom:76.320000px;}
.yb{bottom:83.220000px;}
.y4f{bottom:84.600000px;}
.y15{bottom:88.740000px;}
.ydd{bottom:90.540000px;}
.ye7{bottom:91.020000px;}
.ybf{bottom:91.260000px;}
.yc9{bottom:91.380000px;}
.yc4{bottom:91.500000px;}
.yce{bottom:91.620000px;}
.yd3{bottom:91.860000px;}
.yd8{bottom:92.100000px;}
.ye2{bottom:92.280000px;}
.y66{bottom:93.540000px;}
.y37{bottom:99.960000px;}
.yda{bottom:109.500000px;}
.y14{bottom:109.620000px;}
.yb9{bottom:109.800000px;}
.y12a{bottom:112.320000px;}
.y143{bottom:113.040000px;}
.yf9{bottom:115.200000px;}
.y65{bottom:115.860000px;}
.ya{bottom:119.940000px;}
.y36{bottom:120.840000px;}
.y10c{bottom:123.120000px;}
.ye6{bottom:123.780000px;}
.ybe{bottom:124.020000px;}
.yc3{bottom:124.260000px;}
.yc8{bottom:124.500000px;}
.ycd{bottom:124.740000px;}
.yd7{bottom:124.860000px;}
.yd2{bottom:124.980000px;}
.ye1{bottom:125.400000px;}
.y13{bottom:130.860000px;}
.y7d{bottom:137.160000px;}
.y64{bottom:138.180000px;}
.y35{bottom:141.360000px;}
.y129{bottom:143.280000px;}
.y7{bottom:143.340000px;}
.y142{bottom:144.360000px;}
.yf8{bottom:146.160000px;}
.y4b{bottom:148.680000px;}
.yb8{bottom:150.120000px;}
.y10b{bottom:154.080000px;}
.y9d{bottom:159.480000px;}
.y63{bottom:160.500000px;}
.y48{bottom:162.000000px;}
.y34{bottom:162.240000px;}
.y7c{bottom:168.480000px;}
.y128{bottom:174.240000px;}
.y33{bottom:182.760000px;}
.y62{bottom:182.820000px;}
.y19{bottom:183.000000px;}
.y141{bottom:184.320000px;}
.y10a{bottom:185.040000px;}
.yf7{bottom:186.120000px;}
.yb7{bottom:190.080000px;}
.y9c{bottom:190.440000px;}
.y7b{bottom:199.440000px;}
.y32{bottom:203.640000px;}
.y61{bottom:205.140000px;}
.y127{bottom:214.560000px;}
.y140{bottom:215.280000px;}
.y109{bottom:216.360000px;}
.yf6{bottom:217.080000px;}
.yd6{bottom:217.500000px;}
.y9b{bottom:221.400000px;}
.y31{bottom:224.160000px;}
.y10d{bottom:225.360000px;}
.y60{bottom:227.460000px;}
.yb6{bottom:230.040000px;}
.y7a{bottom:230.400000px;}
.y30{bottom:245.040000px;}
.y126{bottom:245.520000px;}
.yf5{bottom:248.400000px;}
.y5f{bottom:249.780000px;}
.y9a{bottom:252.360000px;}
.y13f{bottom:255.240000px;}
.y108{bottom:256.320000px;}
.y79{bottom:261.360000px;}
.y2f{bottom:265.560000px;}
.y38{bottom:268.500000px;}
.yb5{bottom:270.000000px;}
.y5e{bottom:272.100000px;}
.y125{bottom:276.480000px;}
.yf4{bottom:279.360000px;}
.y2e{bottom:286.440000px;}
.y13e{bottom:286.560000px;}
.y107{bottom:287.280000px;}
.y99{bottom:292.680000px;}
.y5d{bottom:294.420000px;}
.y78{bottom:301.320000px;}
.y2d{bottom:306.960000px;}
.yb4{bottom:310.320000px;}
.y124{bottom:316.440000px;}
.y5c{bottom:316.740000px;}
.y106{bottom:318.240000px;}
.y98{bottom:323.640000px;}
.y13d{bottom:326.520000px;}
.y2c{bottom:327.840000px;}
.y77{bottom:332.640000px;}
.y5b{bottom:339.060000px;}
.y42{bottom:340.620000px;}
.yf3{bottom:341.280000px;}
.y123{bottom:347.760000px;}
.y2b{bottom:348.360000px;}
.y105{bottom:349.560000px;}
.yb3{bottom:350.280000px;}
.y97{bottom:354.600000px;}
.y13c{bottom:357.480000px;}
.y41{bottom:357.900000px;}
.yd1{bottom:358.500000px;}
.y5a{bottom:361.380000px;}
.y76{bottom:363.600000px;}
.y2a{bottom:369.240000px;}
.y40{bottom:375.180000px;}
.y104{bottom:380.520000px;}
.yf2{bottom:381.600000px;}
.y59{bottom:384.060000px;}
.y96{bottom:385.560000px;}
.y122{bottom:387.720000px;}
.y29{bottom:389.760000px;}
.yb2{bottom:390.240000px;}
.y3f{bottom:392.460000px;}
.y75{bottom:394.560000px;}
.y13b{bottom:397.440000px;}
.y58{bottom:406.380000px;}
.y3e{bottom:409.740000px;}
.y28{bottom:410.640000px;}
.yf1{bottom:412.560000px;}
.y95{bottom:416.880000px;}
.y121{bottom:418.680000px;}
.y103{bottom:420.480000px;}
.y74{bottom:425.520000px;}
.y3d{bottom:427.020000px;}
.y57{bottom:428.700000px;}
.y13a{bottom:428.760000px;}
.yb1{bottom:430.200000px;}
.y27{bottom:431.160000px;}
.yf0{bottom:443.520000px;}
.y3c{bottom:444.300000px;}
.y94{bottom:447.840000px;}
.y120{bottom:449.640000px;}
.y56{bottom:451.020000px;}
.y102{bottom:451.440000px;}
.y26{bottom:452.040000px;}
.y73{bottom:456.840000px;}
.y3b{bottom:461.580000px;}
.y93{bottom:468.720000px;}
.yb0{bottom:470.520000px;}
.y25{bottom:472.560000px;}
.y55{bottom:472.980000px;}
.yef{bottom:474.480000px;}
.y3a{bottom:478.500000px;}
.y11f{bottom:480.960000px;}
.y54{bottom:481.260000px;}
.y101{bottom:482.760000px;}
.y72{bottom:487.800000px;}
.y92{bottom:492.840000px;}
.y24{bottom:493.440000px;}
.y39{bottom:495.780000px;}
.ycc{bottom:499.500000px;}
.y139{bottom:499.680000px;}
.yee{bottom:505.800000px;}
.yaf{bottom:510.480000px;}
.y11e{bottom:512.640000px;}
.y91{bottom:513.720000px;}
.y23{bottom:513.960000px;}
.y71{bottom:518.760000px;}
.y22{bottom:534.840000px;}
.yed{bottom:536.760000px;}
.y138{bottom:539.640000px;}
.y70{bottom:540.000000px;}
.y11d{bottom:543.960000px;}
.y90{bottom:544.680000px;}
.yae{bottom:550.440000px;}
.y21{bottom:555.360000px;}
.yec{bottom:568.080000px;}
.y137{bottom:570.600000px;}
.y6f{bottom:570.960000px;}
.y100{bottom:575.640000px;}
.y20{bottom:576.240000px;}
.y11c{bottom:583.920000px;}
.y8f{bottom:584.640000px;}
.y6b{bottom:586.500000px;}
.yad{bottom:590.400000px;}
.y1f{bottom:596.760000px;}
.yeb{bottom:599.400000px;}
.yff{bottom:606.600000px;}
.y136{bottom:610.920000px;}
.y11b{bottom:614.880000px;}
.y8e{bottom:615.600000px;}
.yea{bottom:616.500000px;}
.yac{bottom:621.720000px;}
.y1e{bottom:635.280000px;}
.yc7{bottom:640.500000px;}
.y135{bottom:641.880000px;}
.y11a{bottom:645.840000px;}
.y8d{bottom:646.920000px;}
.y53{bottom:649.500000px;}
.yab{bottom:652.680000px;}
.y1d{bottom:656.160000px;}
.y1c{bottom:676.680000px;}
.y119{bottom:677.160000px;}
.y8c{bottom:677.880000px;}
.y134{bottom:681.840000px;}
.yaa{bottom:692.640000px;}
.y1b{bottom:700.440000px;}
.y118{bottom:708.120000px;}
.y8b{bottom:708.840000px;}
.y133{bottom:712.800000px;}
.ya9{bottom:723.600000px;}
.y1a{bottom:726.720000px;}
.y117{bottom:739.080000px;}
.y8a{bottom:739.800000px;}
.y132{bottom:753.120000px;}
.ye5{bottom:757.500000px;}
.ya8{bottom:763.920000px;}
.y116{bottom:770.040000px;}
.yfe{bottom:771.120000px;}
.y12{bottom:778.500000px;}
.y89{bottom:780.120000px;}
.yc2{bottom:781.500000px;}
.y131{bottom:784.080000px;}
.ya7{bottom:794.880000px;}
.yfd{bottom:802.080000px;}
.y115{bottom:810.360000px;}
.y88{bottom:811.080000px;}
.y130{bottom:824.040000px;}
.ya6{bottom:825.840000px;}
.yfc{bottom:833.040000px;}
.y114{bottom:841.320000px;}
.y87{bottom:842.040000px;}
.y12f{bottom:855.000000px;}
.ya5{bottom:856.800000px;}
.y113{bottom:872.280000px;}
.y86{bottom:873.000000px;}
.y12e{bottom:886.320000px;}
.ya4{bottom:896.760000px;}
.ye0{bottom:897.000000px;}
.y112{bottom:903.240000px;}
.y85{bottom:904.320000px;}
.ybd{bottom:922.500000px;}
.y12d{bottom:926.280000px;}
.yd{bottom:927.000000px;}
.ya3{bottom:928.080000px;}
.y111{bottom:934.200000px;}
.y84{bottom:935.280000px;}
.y12c{bottom:957.240000px;}
.ya2{bottom:959.040000px;}
.y110{bottom:965.520000px;}
.yfb{bottom:966.240000px;}
.y83{bottom:975.240000px;}
.ya1{bottom:983.520000px;}
.y12b{bottom:988.200000px;}
.y6{bottom:988.500000px;}
.y10f{bottom:996.840000px;}
.yfa{bottom:997.200000px;}
.y82{bottom:1006.200000px;}
.ya0{bottom:1007.640000px;}
.y10e{bottom:1028.160000px;}
.y9f{bottom:1028.520000px;}
.y81{bottom:1037.520000px;}
.ydc{bottom:1039.500000px;}
.y9e{bottom:1059.480000px;}
.yba{bottom:1063.500000px;}
.y80{bottom:1068.480000px;}
.y7f{bottom:1099.440000px;}
.y7e{bottom:1130.400000px;}
.y4e{bottom:1152.000000px;}
.y5{bottom:1154.520000px;}
.y4d{bottom:1173.240000px;}
.y2{bottom:1175.400000px;}
.y4c{bottom:1192.680000px;}
.y1{bottom:1194.480000px;}
.h14{height:22.500000px;}
.h17{height:36.405703px;}
.h18{height:40.310156px;}
.h4{height:41.574375px;}
.h16{height:41.868281px;}
.h12{height:41.993438px;}
.h1e{height:43.500000px;}
.hb{height:44.149219px;}
.h3{height:47.988281px;}
.h20{height:48.046877px;}
.h2{height:48.256875px;}
.h10{height:48.761719px;}
.h1f{height:49.007813px;}
.h15{height:49.886719px;}
.ha{height:49.992188px;}
.hf{height:50.027344px;}
.h1a{height:54.000000px;}
.he{height:56.593125px;}
.h7{height:62.472656px;}
.h9{height:63.000000px;}
.h1b{height:63.175781px;}
.h1d{height:63.949219px;}
.h1c{height:64.500000px;}
.h6{height:72.360000px;}
.h13{height:87.000000px;}
.h8{height:98.568984px;}
.h23{height:108.000000px;}
.h22{height:109.500000px;}
.h25{height:141.000000px;}
.h21{height:142.500000px;}
.h24{height:144.000000px;}
.hc{height:148.500000px;}
.h5{height:160.500000px;}
.h19{height:498.000000px;}
.h11{height:510.000000px;}
.hd{height:744.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:28.500000px;}
.w9{width:37.500000px;}
.w6{width:120.000000px;}
.wa{width:123.000000px;}
.wb{width:130.500000px;}
.wc{width:207.000000px;}
.w3{width:247.500000px;}
.w2{width:249.000000px;}
.wd{width:295.500000px;}
.w4{width:552.000000px;}
.w7{width:666.000000px;}
.w8{width:786.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x15{left:7.859964px;}
.xc{left:9.480108px;}
.x9{left:11.524296px;}
.x26{left:13.654932px;}
.x1c{left:15.210936px;}
.x25{left:18.129720px;}
.x1a{left:19.347300px;}
.x12{left:21.688464px;}
.x24{left:23.429640px;}
.x29{left:24.510360px;}
.x21{left:27.207600px;}
.x22{left:38.848920px;}
.x3{left:42.000000px;}
.x2a{left:43.437720px;}
.x6{left:45.805656px;}
.x28{left:47.160120px;}
.x13{left:50.027700px;}
.xa{left:51.748896px;}
.x1{left:54.000000px;}
.xb{left:57.095580px;}
.x23{left:61.950840px;}
.x1e{left:73.258080px;}
.x11{left:77.433096px;}
.x27{left:83.312520px;}
.x14{left:84.543240px;}
.x10{left:86.072772px;}
.xf{left:89.254416px;}
.x19{left:107.174916px;}
.x20{left:112.001160px;}
.x4{left:124.379904px;}
.xd{left:150.492720px;}
.x18{left:174.000000px;}
.x7{left:202.954080px;}
.x16{left:204.450816px;}
.x1b{left:211.500000px;}
.x5{left:233.819832px;}
.xe{left:275.459880px;}
.x8{left:289.500000px;}
.x1d{left:340.500000px;}
.x1f{left:546.000000px;}
.x2{left:685.130400px;}
.x17{left:811.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.lsb{letter-spacing:-0.860544pt;}
.ls16{letter-spacing:-0.466944pt;}
.ls12{letter-spacing:-0.418304pt;}
.ls6{letter-spacing:-0.403712pt;}
.ls15{letter-spacing:-0.384256pt;}
.ls17{letter-spacing:-0.374528pt;}
.ls14{letter-spacing:-0.321024pt;}
.lsf{letter-spacing:-0.301056pt;}
.ls10{letter-spacing:-0.284928pt;}
.lse{letter-spacing:-0.215040pt;}
.ls9{letter-spacing:-0.214400pt;}
.ls11{letter-spacing:-0.198912pt;}
.ls19{letter-spacing:-0.189696pt;}
.ls7{letter-spacing:-0.165376pt;}
.ls18{letter-spacing:-0.150784pt;}
.ls3{letter-spacing:-0.141312pt;}
.ls5{letter-spacing:-0.111872pt;}
.ls8{letter-spacing:-0.102912pt;}
.lsd{letter-spacing:-0.012800pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.006400pt;}
.ls22{letter-spacing:0.010752pt;}
.ls2{letter-spacing:0.012800pt;}
.ls1e{letter-spacing:0.025600pt;}
.ls1c{letter-spacing:0.031373pt;}
.ls1f{letter-spacing:0.032000pt;}
.ls1d{letter-spacing:0.043922pt;}
.ls21{letter-spacing:0.056471pt;}
.ls20{letter-spacing:0.062745pt;}
.lsc{letter-spacing:0.074368pt;}
.ls1{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.213760pt;}
.ls1b{letter-spacing:0.223872pt;}
.lsa{letter-spacing:0.254976pt;}
.ls1a{letter-spacing:0.261888pt;}
.ls23{letter-spacing:1.705856pt;}
.ws3{word-spacing:-23.841280pt;}
.ws0{word-spacing:-16.256768pt;}
.ws6{word-spacing:-16.012800pt;}
.ws5{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.987200pt;}
.ws12{word-spacing:-14.496000pt;}
.wse{word-spacing:-14.476800pt;}
.ws11{word-spacing:-14.464000pt;}
.wsc{word-spacing:-14.451200pt;}
.ws10{word-spacing:-14.224314pt;}
.wsf{word-spacing:-14.211765pt;}
.ws4{word-spacing:-13.241088pt;}
.ws8{word-spacing:-12.646400pt;}
.ws2{word-spacing:-12.481024pt;}
.ws9{word-spacing:-12.325376pt;}
.wsb{word-spacing:-12.271872pt;}
.ws1{word-spacing:-12.242688pt;}
.wsa{word-spacing:-12.179456pt;}
.ws7{word-spacing:0.000000pt;}
._6{margin-left:-7.982080pt;}
._4{margin-left:-6.586880pt;}
._7{margin-left:-5.418240pt;}
._16{margin-left:-4.400640pt;}
._1{margin-left:-3.415040pt;}
._0{margin-left:-1.884160pt;}
._3{margin-left:-0.909824pt;}
._2{width:0.942080pt;}
._5{width:1.890560pt;}
._a{width:3.280640pt;}
._b{width:4.616960pt;}
._9{width:5.772800pt;}
._e{width:7.379200pt;}
._d{width:8.787200pt;}
._18{width:9.831808pt;}
._f{width:10.962048pt;}
._c{width:12.569600pt;}
._19{width:13.856000pt;}
._10{width:14.988800pt;}
._1b{width:16.966400pt;}
._1c{width:18.419200pt;}
._20{width:19.417600pt;}
._12{width:20.467200pt;}
._13{width:21.465600pt;}
._1e{width:22.374400pt;}
._11{width:23.635200pt;}
._1a{width:24.800000pt;}
._14{width:25.747200pt;}
._17{width:27.480064pt;}
._1d{width:29.414400pt;}
._15{width:46.099200pt;}
._8{width:69.011200pt;}
._1f{width:134.970880pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:62.745101pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.fs4{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:3.413333pt;}
.y6a{bottom:4.106667pt;}
.y11{bottom:4.160000pt;}
.y52{bottom:4.373333pt;}
.y4a{bottom:4.480000pt;}
.y6e{bottom:4.746667pt;}
.y9{bottom:6.133333pt;}
.y49{bottom:6.720000pt;}
.y46{bottom:18.773333pt;}
.ydf{bottom:21.920000pt;}
.y10{bottom:22.080000pt;}
.ye9{bottom:22.346667pt;}
.yc1{bottom:22.560000pt;}
.ycb{bottom:22.666667pt;}
.yc6{bottom:22.773333pt;}
.yd0{bottom:22.880000pt;}
.ybb{bottom:22.986667pt;}
.yd5{bottom:23.093333pt;}
.y18{bottom:23.200000pt;}
.ybc{bottom:23.221963pt;}
.y6d{bottom:23.306667pt;}
.ye4{bottom:23.466667pt;}
.y69{bottom:23.626667pt;}
.y8{bottom:25.973333pt;}
.y45{bottom:34.133333pt;}
.ye{bottom:39.680000pt;}
.yf{bottom:40.320000pt;}
.y6c{bottom:41.546667pt;}
.yc{bottom:41.653333pt;}
.y17{bottom:41.760000pt;}
.y68{bottom:43.466667pt;}
.y44{bottom:49.493333pt;}
.y4{bottom:50.880000pt;}
.yde{bottom:51.360000pt;}
.ye8{bottom:51.466667pt;}
.yc0{bottom:51.680000pt;}
.yc5{bottom:51.893333pt;}
.yca{bottom:52.106667pt;}
.yd4{bottom:52.213333pt;}
.ycf{bottom:52.320000pt;}
.yd9{bottom:52.426667pt;}
.ydb{bottom:52.746667pt;}
.ye3{bottom:52.906667pt;}
.y50{bottom:59.520000pt;}
.y16{bottom:60.320000pt;}
.y67{bottom:63.306667pt;}
.y43{bottom:64.533333pt;}
.y51{bottom:66.666667pt;}
.y3{bottom:67.840000pt;}
.yb{bottom:73.973333pt;}
.y4f{bottom:75.200000pt;}
.y15{bottom:78.880000pt;}
.ydd{bottom:80.480000pt;}
.ye7{bottom:80.906667pt;}
.ybf{bottom:81.120000pt;}
.yc9{bottom:81.226667pt;}
.yc4{bottom:81.333333pt;}
.yce{bottom:81.440000pt;}
.yd3{bottom:81.653333pt;}
.yd8{bottom:81.866667pt;}
.ye2{bottom:82.026667pt;}
.y66{bottom:83.146667pt;}
.y37{bottom:88.853333pt;}
.yda{bottom:97.333333pt;}
.y14{bottom:97.440000pt;}
.yb9{bottom:97.600000pt;}
.y12a{bottom:99.840000pt;}
.y143{bottom:100.480000pt;}
.yf9{bottom:102.400000pt;}
.y65{bottom:102.986667pt;}
.ya{bottom:106.613333pt;}
.y36{bottom:107.413333pt;}
.y10c{bottom:109.440000pt;}
.ye6{bottom:110.026667pt;}
.ybe{bottom:110.240000pt;}
.yc3{bottom:110.453333pt;}
.yc8{bottom:110.666667pt;}
.ycd{bottom:110.880000pt;}
.yd7{bottom:110.986667pt;}
.yd2{bottom:111.093333pt;}
.ye1{bottom:111.466667pt;}
.y13{bottom:116.320000pt;}
.y7d{bottom:121.920000pt;}
.y64{bottom:122.826667pt;}
.y35{bottom:125.653333pt;}
.y129{bottom:127.360000pt;}
.y7{bottom:127.413333pt;}
.y142{bottom:128.320000pt;}
.yf8{bottom:129.920000pt;}
.y4b{bottom:132.160000pt;}
.yb8{bottom:133.440000pt;}
.y10b{bottom:136.960000pt;}
.y9d{bottom:141.760000pt;}
.y63{bottom:142.666667pt;}
.y48{bottom:144.000000pt;}
.y34{bottom:144.213333pt;}
.y7c{bottom:149.760000pt;}
.y128{bottom:154.880000pt;}
.y33{bottom:162.453333pt;}
.y62{bottom:162.506667pt;}
.y19{bottom:162.666667pt;}
.y141{bottom:163.840000pt;}
.y10a{bottom:164.480000pt;}
.yf7{bottom:165.440000pt;}
.yb7{bottom:168.960000pt;}
.y9c{bottom:169.280000pt;}
.y7b{bottom:177.280000pt;}
.y32{bottom:181.013333pt;}
.y61{bottom:182.346667pt;}
.y127{bottom:190.720000pt;}
.y140{bottom:191.360000pt;}
.y109{bottom:192.320000pt;}
.yf6{bottom:192.960000pt;}
.yd6{bottom:193.333333pt;}
.y9b{bottom:196.800000pt;}
.y31{bottom:199.253333pt;}
.y10d{bottom:200.320000pt;}
.y60{bottom:202.186667pt;}
.yb6{bottom:204.480000pt;}
.y7a{bottom:204.800000pt;}
.y30{bottom:217.813333pt;}
.y126{bottom:218.240000pt;}
.yf5{bottom:220.800000pt;}
.y5f{bottom:222.026667pt;}
.y9a{bottom:224.320000pt;}
.y13f{bottom:226.880000pt;}
.y108{bottom:227.840000pt;}
.y79{bottom:232.320000pt;}
.y2f{bottom:236.053333pt;}
.y38{bottom:238.666667pt;}
.yb5{bottom:240.000000pt;}
.y5e{bottom:241.866667pt;}
.y125{bottom:245.760000pt;}
.yf4{bottom:248.320000pt;}
.y2e{bottom:254.613333pt;}
.y13e{bottom:254.720000pt;}
.y107{bottom:255.360000pt;}
.y99{bottom:260.160000pt;}
.y5d{bottom:261.706667pt;}
.y78{bottom:267.840000pt;}
.y2d{bottom:272.853333pt;}
.yb4{bottom:275.840000pt;}
.y124{bottom:281.280000pt;}
.y5c{bottom:281.546667pt;}
.y106{bottom:282.880000pt;}
.y98{bottom:287.680000pt;}
.y13d{bottom:290.240000pt;}
.y2c{bottom:291.413333pt;}
.y77{bottom:295.680000pt;}
.y5b{bottom:301.386667pt;}
.y42{bottom:302.773333pt;}
.yf3{bottom:303.360000pt;}
.y123{bottom:309.120000pt;}
.y2b{bottom:309.653333pt;}
.y105{bottom:310.720000pt;}
.yb3{bottom:311.360000pt;}
.y97{bottom:315.200000pt;}
.y13c{bottom:317.760000pt;}
.y41{bottom:318.133333pt;}
.yd1{bottom:318.666667pt;}
.y5a{bottom:321.226667pt;}
.y76{bottom:323.200000pt;}
.y2a{bottom:328.213333pt;}
.y40{bottom:333.493333pt;}
.y104{bottom:338.240000pt;}
.yf2{bottom:339.200000pt;}
.y59{bottom:341.386667pt;}
.y96{bottom:342.720000pt;}
.y122{bottom:344.640000pt;}
.y29{bottom:346.453333pt;}
.yb2{bottom:346.880000pt;}
.y3f{bottom:348.853333pt;}
.y75{bottom:350.720000pt;}
.y13b{bottom:353.280000pt;}
.y58{bottom:361.226667pt;}
.y3e{bottom:364.213333pt;}
.y28{bottom:365.013333pt;}
.yf1{bottom:366.720000pt;}
.y95{bottom:370.560000pt;}
.y121{bottom:372.160000pt;}
.y103{bottom:373.760000pt;}
.y74{bottom:378.240000pt;}
.y3d{bottom:379.573333pt;}
.y57{bottom:381.066667pt;}
.y13a{bottom:381.120000pt;}
.yb1{bottom:382.400000pt;}
.y27{bottom:383.253333pt;}
.yf0{bottom:394.240000pt;}
.y3c{bottom:394.933333pt;}
.y94{bottom:398.080000pt;}
.y120{bottom:399.680000pt;}
.y56{bottom:400.906667pt;}
.y102{bottom:401.280000pt;}
.y26{bottom:401.813333pt;}
.y73{bottom:406.080000pt;}
.y3b{bottom:410.293333pt;}
.y93{bottom:416.640000pt;}
.yb0{bottom:418.240000pt;}
.y25{bottom:420.053333pt;}
.y55{bottom:420.426667pt;}
.yef{bottom:421.760000pt;}
.y3a{bottom:425.333333pt;}
.y11f{bottom:427.520000pt;}
.y54{bottom:427.786667pt;}
.y101{bottom:429.120000pt;}
.y72{bottom:433.600000pt;}
.y92{bottom:438.080000pt;}
.y24{bottom:438.613333pt;}
.y39{bottom:440.693333pt;}
.ycc{bottom:444.000000pt;}
.y139{bottom:444.160000pt;}
.yee{bottom:449.600000pt;}
.yaf{bottom:453.760000pt;}
.y11e{bottom:455.680000pt;}
.y91{bottom:456.640000pt;}
.y23{bottom:456.853333pt;}
.y71{bottom:461.120000pt;}
.y22{bottom:475.413333pt;}
.yed{bottom:477.120000pt;}
.y138{bottom:479.680000pt;}
.y70{bottom:480.000000pt;}
.y11d{bottom:483.520000pt;}
.y90{bottom:484.160000pt;}
.yae{bottom:489.280000pt;}
.y21{bottom:493.653333pt;}
.yec{bottom:504.960000pt;}
.y137{bottom:507.200000pt;}
.y6f{bottom:507.520000pt;}
.y100{bottom:511.680000pt;}
.y20{bottom:512.213333pt;}
.y11c{bottom:519.040000pt;}
.y8f{bottom:519.680000pt;}
.y6b{bottom:521.333333pt;}
.yad{bottom:524.800000pt;}
.y1f{bottom:530.453333pt;}
.yeb{bottom:532.800000pt;}
.yff{bottom:539.200000pt;}
.y136{bottom:543.040000pt;}
.y11b{bottom:546.560000pt;}
.y8e{bottom:547.200000pt;}
.yea{bottom:548.000000pt;}
.yac{bottom:552.640000pt;}
.y1e{bottom:564.693333pt;}
.yc7{bottom:569.333333pt;}
.y135{bottom:570.560000pt;}
.y11a{bottom:574.080000pt;}
.y8d{bottom:575.040000pt;}
.y53{bottom:577.333333pt;}
.yab{bottom:580.160000pt;}
.y1d{bottom:583.253333pt;}
.y1c{bottom:601.493333pt;}
.y119{bottom:601.920000pt;}
.y8c{bottom:602.560000pt;}
.y134{bottom:606.080000pt;}
.yaa{bottom:615.680000pt;}
.y1b{bottom:622.613333pt;}
.y118{bottom:629.440000pt;}
.y8b{bottom:630.080000pt;}
.y133{bottom:633.600000pt;}
.ya9{bottom:643.200000pt;}
.y1a{bottom:645.973333pt;}
.y117{bottom:656.960000pt;}
.y8a{bottom:657.600000pt;}
.y132{bottom:669.440000pt;}
.ye5{bottom:673.333333pt;}
.ya8{bottom:679.040000pt;}
.y116{bottom:684.480000pt;}
.yfe{bottom:685.440000pt;}
.y12{bottom:692.000000pt;}
.y89{bottom:693.440000pt;}
.yc2{bottom:694.666667pt;}
.y131{bottom:696.960000pt;}
.ya7{bottom:706.560000pt;}
.yfd{bottom:712.960000pt;}
.y115{bottom:720.320000pt;}
.y88{bottom:720.960000pt;}
.y130{bottom:732.480000pt;}
.ya6{bottom:734.080000pt;}
.yfc{bottom:740.480000pt;}
.y114{bottom:747.840000pt;}
.y87{bottom:748.480000pt;}
.y12f{bottom:760.000000pt;}
.ya5{bottom:761.600000pt;}
.y113{bottom:775.360000pt;}
.y86{bottom:776.000000pt;}
.y12e{bottom:787.840000pt;}
.ya4{bottom:797.120000pt;}
.ye0{bottom:797.333333pt;}
.y112{bottom:802.880000pt;}
.y85{bottom:803.840000pt;}
.ybd{bottom:820.000000pt;}
.y12d{bottom:823.360000pt;}
.yd{bottom:824.000000pt;}
.ya3{bottom:824.960000pt;}
.y111{bottom:830.400000pt;}
.y84{bottom:831.360000pt;}
.y12c{bottom:850.880000pt;}
.ya2{bottom:852.480000pt;}
.y110{bottom:858.240000pt;}
.yfb{bottom:858.880000pt;}
.y83{bottom:866.880000pt;}
.ya1{bottom:874.240000pt;}
.y12b{bottom:878.400000pt;}
.y6{bottom:878.666667pt;}
.y10f{bottom:886.080000pt;}
.yfa{bottom:886.400000pt;}
.y82{bottom:894.400000pt;}
.ya0{bottom:895.680000pt;}
.y10e{bottom:913.920000pt;}
.y9f{bottom:914.240000pt;}
.y81{bottom:922.240000pt;}
.ydc{bottom:924.000000pt;}
.y9e{bottom:941.760000pt;}
.yba{bottom:945.333333pt;}
.y80{bottom:949.760000pt;}
.y7f{bottom:977.280000pt;}
.y7e{bottom:1004.800000pt;}
.y4e{bottom:1024.000000pt;}
.y5{bottom:1026.240000pt;}
.y4d{bottom:1042.880000pt;}
.y2{bottom:1044.800000pt;}
.y4c{bottom:1060.160000pt;}
.y1{bottom:1061.760000pt;}
.h14{height:20.000000pt;}
.h17{height:32.360625pt;}
.h18{height:35.831250pt;}
.h4{height:36.955000pt;}
.h16{height:37.216250pt;}
.h12{height:37.327500pt;}
.h1e{height:38.666667pt;}
.hb{height:39.243750pt;}
.h3{height:42.656250pt;}
.h20{height:42.708335pt;}
.h2{height:42.895000pt;}
.h10{height:43.343750pt;}
.h1f{height:43.562500pt;}
.h15{height:44.343750pt;}
.ha{height:44.437500pt;}
.hf{height:44.468750pt;}
.h1a{height:48.000000pt;}
.he{height:50.305000pt;}
.h7{height:55.531250pt;}
.h9{height:56.000000pt;}
.h1b{height:56.156250pt;}
.h1d{height:56.843750pt;}
.h1c{height:57.333333pt;}
.h6{height:64.320000pt;}
.h13{height:77.333333pt;}
.h8{height:87.616875pt;}
.h23{height:96.000000pt;}
.h22{height:97.333333pt;}
.h25{height:125.333333pt;}
.h21{height:126.666667pt;}
.h24{height:128.000000pt;}
.hc{height:132.000000pt;}
.h5{height:142.666667pt;}
.h19{height:442.666667pt;}
.h11{height:453.333333pt;}
.hd{height:661.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:25.333333pt;}
.w9{width:33.333333pt;}
.w6{width:106.666667pt;}
.wa{width:109.333333pt;}
.wb{width:116.000000pt;}
.wc{width:184.000000pt;}
.w3{width:220.000000pt;}
.w2{width:221.333333pt;}
.wd{width:262.666667pt;}
.w4{width:490.666667pt;}
.w7{width:592.000000pt;}
.w8{width:698.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x15{left:6.986635pt;}
.xc{left:8.426763pt;}
.x9{left:10.243819pt;}
.x26{left:12.137717pt;}
.x1c{left:13.520832pt;}
.x25{left:16.115307pt;}
.x1a{left:17.197600pt;}
.x12{left:19.278635pt;}
.x24{left:20.826347pt;}
.x29{left:21.786987pt;}
.x21{left:24.184533pt;}
.x22{left:34.532373pt;}
.x3{left:37.333333pt;}
.x2a{left:38.611307pt;}
.x6{left:40.716139pt;}
.x28{left:41.920107pt;}
.x13{left:44.469067pt;}
.xa{left:45.999019pt;}
.x1{left:48.000000pt;}
.xb{left:50.751627pt;}
.x23{left:55.067413pt;}
.x1e{left:65.118293pt;}
.x11{left:68.829419pt;}
.x27{left:74.055573pt;}
.x14{left:75.149547pt;}
.x10{left:76.509131pt;}
.xf{left:79.337259pt;}
.x19{left:95.266592pt;}
.x20{left:99.556587pt;}
.x4{left:110.559915pt;}
.xd{left:133.771307pt;}
.x18{left:154.666667pt;}
.x7{left:180.403627pt;}
.x16{left:181.734059pt;}
.x1b{left:188.000000pt;}
.x5{left:207.839851pt;}
.xe{left:244.853227pt;}
.x8{left:257.333333pt;}
.x1d{left:302.666667pt;}
.x1f{left:485.333333pt;}
.x2{left:609.004800pt;}
.x17{left:721.333333pt;}
}




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