
    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_f1f42e89d170aa24b4c1716f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.715000;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_88a09b9d6f0a44ccd1276926.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.979980;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_47317216f60caa0e7a516611.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6e86f29f9c899edfe65993d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.768066;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_40063db6be8e6282b5400adc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_05c97aba9fbd5f71db52d6a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.111000;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_ee8bf5f9c3e2dd7707a12cb3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924000;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_a29ec9622263e82f541608f3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006000;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_5433fd6801a677cbf8d333ce.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.781000;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_918ac65d0c3528ec7b010077.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.981000;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_74611458c4edb6ccb4c31611.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958000;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_65fb5dc6ea361b8d060fc765.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.956500;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_68f87d8a7313f3464aa76ac5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.947000;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_563a1df53a188fc986dc0178.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.740234;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_a86f03744c3602e0c2287cdd.woff2')format("woff");}.fff{font-family:fff;line-height:0.958000;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_eaa1d048f22e1c43e5320e08.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.061500;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_3580c2ccb9796c5addebac2c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.724000;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_61c2cb06d5a5aa1e19995514.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.908000;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_9281635e99e9bf4c876ad4ef.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.061500;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_08bfba131ce177fa0737bd2d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.947000;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_4c59d1bbd15eea1c88af26a3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.739000;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_3c6b8d417dd766ae5896a950.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.723000;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.271053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.974000px;}
.v3{vertical-align:32.400000px;}
.lsf{letter-spacing:-1.368000px;}
.ls7{letter-spacing:-1.296000px;}
.ls6{letter-spacing:-1.020000px;}
.ls10{letter-spacing:-0.810000px;}
.lsc{letter-spacing:-0.486000px;}
.lsa{letter-spacing:-0.171000px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.028200px;}
.lsb{letter-spacing:0.138600px;}
.ls0{letter-spacing:0.156804px;}
.ls4{letter-spacing:0.156900px;}
.ls2{letter-spacing:0.156990px;}
.ls3{letter-spacing:0.157128px;}
.ls1{letter-spacing:0.270000px;}
.ls8{letter-spacing:0.570000px;}
.lsd{letter-spacing:513.420000px;}
.lse{letter-spacing:1314.788400px;}
.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:-20.280000px;}
.ws4{word-spacing:-16.680000px;}
.ws10{word-spacing:-14.592000px;}
.wsf{word-spacing:-13.851000px;}
.wsc{word-spacing:-13.824000px;}
.ws18{word-spacing:-13.338000px;}
.ws3{word-spacing:-13.122000px;}
.ws2{word-spacing:-12.636000px;}
.ws0{word-spacing:-11.823240px;}
.ws5{word-spacing:-11.676000px;}
.ws11{word-spacing:-10.214400px;}
.wsd{word-spacing:-9.676800px;}
.ws19{word-spacing:-9.185400px;}
.wse{word-spacing:-8.845200px;}
.ws7{word-spacing:-4.200000px;}
.ws16{word-spacing:-2.280000px;}
.ws31{word-spacing:-1.620000px;}
.ws3c{word-spacing:-1.482000px;}
.ws45{word-spacing:-1.242000px;}
.ws15{word-spacing:-1.197000px;}
.ws39{word-spacing:-0.912000px;}
.ws25{word-spacing:-0.648000px;}
.ws1b{word-spacing:-0.570000px;}
.ws43{word-spacing:-0.378000px;}
.wsa{word-spacing:-0.270000px;}
.ws6{word-spacing:0.000000px;}
.ws42{word-spacing:0.057000px;}
.ws1c{word-spacing:0.171000px;}
.ws14{word-spacing:0.570000px;}
.ws44{word-spacing:0.810000px;}
.ws3f{word-spacing:0.969000px;}
.wsb{word-spacing:1.296000px;}
.ws30{word-spacing:1.368000px;}
.ws3e{word-spacing:1.539000px;}
.ws13{word-spacing:1.596000px;}
.ws35{word-spacing:1.653000px;}
.ws1f{word-spacing:2.736000px;}
.ws34{word-spacing:3.249000px;}
.ws1e{word-spacing:3.510000px;}
.ws3b{word-spacing:4.446000px;}
.ws3a{word-spacing:4.845000px;}
.ws8{word-spacing:5.184000px;}
.ws1d{word-spacing:6.669000px;}
.ws40{word-spacing:6.954000px;}
.ws12{word-spacing:7.239000px;}
.ws32{word-spacing:9.006000px;}
.ws3d{word-spacing:10.488000px;}
.ws41{word-spacing:10.944000px;}
.ws17{word-spacing:11.457000px;}
.ws38{word-spacing:12.483000px;}
.ws24{word-spacing:12.540000px;}
.ws33{word-spacing:16.245000px;}
.ws36{word-spacing:19.038000px;}
.ws1a{word-spacing:20.577000px;}
.ws37{word-spacing:23.655000px;}
.ws9{word-spacing:26.130000px;}
.ws2f{word-spacing:74.832000px;}
.ws2e{word-spacing:91.955400px;}
.ws23{word-spacing:97.215000px;}
.ws21{word-spacing:114.063000px;}
.ws2b{word-spacing:167.339400px;}
.ws22{word-spacing:173.652000px;}
.ws29{word-spacing:204.000000px;}
.ws28{word-spacing:216.042000px;}
.ws2c{word-spacing:266.046000px;}
.ws2d{word-spacing:274.983000px;}
.ws2a{word-spacing:284.595000px;}
.ws26{word-spacing:296.151000px;}
.ws20{word-spacing:327.876000px;}
.ws27{word-spacing:746.146200px;}
._19{margin-left:-9.137100px;}
._1a{margin-left:-8.014200px;}
._3a{margin-left:-6.703500px;}
._2{margin-left:-5.477400px;}
._4{margin-left:-4.330800px;}
._3{margin-left:-2.592000px;}
._1{margin-left:-1.587600px;}
._6{width:1.188000px;}
._7{width:2.251800px;}
._0{width:4.170600px;}
._9{width:5.238000px;}
._a{width:6.292200px;}
._b{width:7.352400px;}
._8{width:8.834400px;}
._5{width:10.335600px;}
._c{width:11.944800px;}
._f{width:13.417800px;}
._3b{width:15.109200px;}
._e{width:16.341600px;}
._d{width:17.353800px;}
._14{width:18.376800px;}
._13{width:19.622100px;}
._18{width:20.724900px;}
._17{width:22.377000px;}
._12{width:23.860200px;}
._10{width:24.886200px;}
._11{width:26.544900px;}
._15{width:27.605100px;}
._16{width:29.021700px;}
._1f{width:31.531200px;}
._1c{width:33.218100px;}
._1b{width:34.798500px;}
._3d{width:37.006200px;}
._1d{width:38.321100px;}
._21{width:40.062600px;}
._3c{width:42.674400px;}
._20{width:44.138400px;}
._1e{width:45.660000px;}
._2f{width:128.937600px;}
._2b{width:162.790200px;}
._28{width:180.616200px;}
._32{width:196.275600px;}
._26{width:216.892800px;}
._22{width:360.232800px;}
._33{width:390.886200px;}
._2d{width:410.104800px;}
._37{width:427.752000px;}
._35{width:435.495600px;}
._34{width:437.439600px;}
._38{width:442.639800px;}
._36{width:458.521200px;}
._2c{width:482.691600px;}
._2e{width:534.553200px;}
._27{width:553.248000px;}
._24{width:566.514000px;}
._39{width:583.023600px;}
._30{width:611.265600px;}
._31{width:694.917000px;}
._2a{width:773.125200px;}
._29{width:814.089600px;}
._23{width:1143.770400px;}
._25{width:1313.546400px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(57,53,54);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fsa{font-size:37.800000px;}
.fsc{font-size:39.900000px;}
.fs1{font-size:42.000000px;}
.fs6{font-size:45.474000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.300000px;}
.fs3{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs5{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:42.299700px;}
.y4{bottom:60.958050px;}
.y3{bottom:72.958050px;}
.y2{bottom:89.231250px;}
.ye9{bottom:112.721850px;}
.yd3{bottom:112.733550px;}
.y78{bottom:112.816200px;}
.y55{bottom:112.816500px;}
.y102{bottom:113.029050px;}
.y134{bottom:113.632650px;}
.y9d{bottom:115.213950px;}
.y2d{bottom:131.490300px;}
.ye8{bottom:132.221850px;}
.yd2{bottom:132.233550px;}
.y77{bottom:132.316200px;}
.y54{bottom:132.316500px;}
.y101{bottom:132.529050px;}
.y133{bottom:133.132650px;}
.y9c{bottom:134.713950px;}
.yb9{bottom:141.519450px;}
.y2c{bottom:150.990300px;}
.ye7{bottom:151.721850px;}
.yd1{bottom:151.733550px;}
.y76{bottom:151.816200px;}
.y53{bottom:151.816500px;}
.y100{bottom:152.029050px;}
.y132{bottom:152.632650px;}
.y9b{bottom:154.213950px;}
.y2b{bottom:170.490300px;}
.ye6{bottom:171.221850px;}
.yd0{bottom:171.233550px;}
.y75{bottom:171.316200px;}
.y52{bottom:171.316500px;}
.yff{bottom:171.529050px;}
.y131{bottom:172.132650px;}
.y9a{bottom:173.713950px;}
.y2a{bottom:189.990300px;}
.ye5{bottom:190.721850px;}
.ycf{bottom:190.733550px;}
.y74{bottom:190.816200px;}
.y51{bottom:190.816500px;}
.yfe{bottom:191.029050px;}
.y130{bottom:191.632650px;}
.yb8{bottom:192.543150px;}
.y99{bottom:193.213950px;}
.y29{bottom:209.490300px;}
.ye4{bottom:210.221850px;}
.yce{bottom:210.233550px;}
.y73{bottom:210.316200px;}
.y50{bottom:210.316500px;}
.yfd{bottom:210.529050px;}
.y12f{bottom:211.132650px;}
.y98{bottom:212.713950px;}
.y28{bottom:228.990300px;}
.ye3{bottom:229.721850px;}
.ycd{bottom:229.733550px;}
.y72{bottom:229.816200px;}
.y4f{bottom:229.816500px;}
.yfc{bottom:230.029050px;}
.y12e{bottom:230.632650px;}
.y97{bottom:232.213950px;}
.yb7{bottom:243.566700px;}
.y27{bottom:248.490300px;}
.ye2{bottom:249.221850px;}
.ycc{bottom:249.233550px;}
.y71{bottom:249.316200px;}
.y4e{bottom:249.316500px;}
.yfb{bottom:249.529050px;}
.y12d{bottom:250.132650px;}
.y96{bottom:251.713950px;}
.y136{bottom:266.666700px;}
.y26{bottom:267.990300px;}
.ye1{bottom:268.721850px;}
.ycb{bottom:268.733550px;}
.y70{bottom:268.816200px;}
.y4d{bottom:268.816500px;}
.yfa{bottom:269.029050px;}
.y12c{bottom:269.632650px;}
.y95{bottom:271.213950px;}
.yb6{bottom:278.390400px;}
.y135{bottom:286.166700px;}
.y25{bottom:287.490300px;}
.ye0{bottom:288.221850px;}
.y6f{bottom:288.316200px;}
.y4c{bottom:288.316500px;}
.yf9{bottom:288.529050px;}
.y12b{bottom:289.132650px;}
.y94{bottom:290.713950px;}
.yb5{bottom:294.590400px;}
.ydf{bottom:307.721850px;}
.y6e{bottom:307.816200px;}
.y4b{bottom:307.816500px;}
.yf8{bottom:308.029050px;}
.y12a{bottom:308.632650px;}
.y93{bottom:310.213950px;}
.y24{bottom:326.490150px;}
.yde{bottom:327.221850px;}
.y6d{bottom:327.316200px;}
.y4a{bottom:327.316500px;}
.yf7{bottom:327.529050px;}
.y129{bottom:328.132650px;}
.y92{bottom:329.713950px;}
.yb4{bottom:332.858100px;}
.ydd{bottom:346.721850px;}
.y6c{bottom:346.816200px;}
.y49{bottom:346.816500px;}
.yf6{bottom:347.029050px;}
.y128{bottom:347.632650px;}
.y91{bottom:349.213950px;}
.y23{bottom:350.242200px;}
.yca{bottom:359.682900px;}
.yb3{bottom:362.828550px;}
.ydc{bottom:366.221850px;}
.y6b{bottom:366.316200px;}
.y48{bottom:366.316500px;}
.yf5{bottom:366.529050px;}
.y127{bottom:367.132650px;}
.y90{bottom:368.713950px;}
.y22{bottom:369.742200px;}
.yb2{bottom:370.928550px;}
.yea{bottom:385.721850px;}
.y6a{bottom:385.816200px;}
.y47{bottom:385.816500px;}
.yf4{bottom:386.029050px;}
.y126{bottom:386.632650px;}
.y8f{bottom:388.213950px;}
.y21{bottom:389.242200px;}
.ydb{bottom:405.221850px;}
.y69{bottom:405.316200px;}
.y46{bottom:405.316500px;}
.yf3{bottom:405.529050px;}
.y125{bottom:406.132650px;}
.y20{bottom:408.742200px;}
.yc9{bottom:410.706600px;}
.yb1{bottom:412.501050px;}
.y68{bottom:424.816200px;}
.y45{bottom:424.816500px;}
.yf2{bottom:425.029050px;}
.y124{bottom:425.632650px;}
.y1f{bottom:428.242200px;}
.yb0{bottom:428.701050px;}
.y67{bottom:444.316200px;}
.y44{bottom:444.316500px;}
.yf1{bottom:444.529050px;}
.yaf{bottom:444.901050px;}
.y123{bottom:445.132650px;}
.y1e{bottom:447.742200px;}
.yc8{bottom:448.974300px;}
.y8e{bottom:451.378350px;}
.yae{bottom:461.101050px;}
.y66{bottom:463.816200px;}
.y43{bottom:463.816500px;}
.yf0{bottom:464.029050px;}
.y122{bottom:464.632650px;}
.y1d{bottom:467.242200px;}
.y8d{bottom:467.578350px;}
.y65{bottom:483.316200px;}
.y42{bottom:483.316500px;}
.yef{bottom:483.529050px;}
.y8c{bottom:483.778350px;}
.y121{bottom:484.132650px;}
.y1c{bottom:486.742200px;}
.yc7{bottom:499.997850px;}
.y41{bottom:502.816500px;}
.yee{bottom:503.029050px;}
.y120{bottom:503.632650px;}
.y1b{bottom:506.242200px;}
.yda{bottom:512.720100px;}
.y64{bottom:522.316200px;}
.y40{bottom:522.316500px;}
.yed{bottom:522.529050px;}
.y11f{bottom:523.132650px;}
.y1a{bottom:525.742200px;}
.yd9{bottom:528.919950px;}
.y3f{bottom:541.816500px;}
.yec{bottom:542.029050px;}
.y11e{bottom:542.632650px;}
.yd8{bottom:545.119950px;}
.y19{bottom:545.242200px;}
.yc6{bottom:551.021550px;}
.y3e{bottom:561.316500px;}
.yd7{bottom:561.319950px;}
.yeb{bottom:561.529050px;}
.y11d{bottom:562.132650px;}
.y18{bottom:564.742200px;}
.yd6{bottom:577.519950px;}
.y63{bottom:580.816200px;}
.y3d{bottom:580.816500px;}
.ya9{bottom:581.029050px;}
.y11c{bottom:581.632650px;}
.y17{bottom:584.242200px;}
.yd5{bottom:593.720100px;}
.y62{bottom:600.316200px;}
.y3c{bottom:600.316500px;}
.ya8{bottom:600.529050px;}
.y11b{bottom:601.132650px;}
.yc5{bottom:602.045100px;}
.y16{bottom:603.742200px;}
.yd4{bottom:609.919950px;}
.y61{bottom:619.816200px;}
.y3b{bottom:619.816500px;}
.ya7{bottom:620.029050px;}
.y11a{bottom:620.632650px;}
.y15{bottom:623.242200px;}
.y60{bottom:639.316200px;}
.y3a{bottom:639.316500px;}
.ya6{bottom:639.529050px;}
.y119{bottom:640.132650px;}
.yc4{bottom:653.068800px;}
.y5f{bottom:658.816200px;}
.y39{bottom:658.816500px;}
.ya5{bottom:659.029050px;}
.y118{bottom:659.632650px;}
.y14{bottom:662.242200px;}
.y5e{bottom:678.316200px;}
.y38{bottom:678.316500px;}
.ya4{bottom:678.529050px;}
.y117{bottom:679.132650px;}
.y5d{bottom:697.816200px;}
.y37{bottom:697.816500px;}
.ya3{bottom:698.029050px;}
.y116{bottom:698.632650px;}
.yc3{bottom:704.092350px;}
.y5c{bottom:717.316200px;}
.y36{bottom:717.316500px;}
.yad{bottom:717.529050px;}
.y115{bottom:718.132650px;}
.y13{bottom:725.869200px;}
.y5b{bottom:736.816200px;}
.y35{bottom:736.816500px;}
.ya2{bottom:737.029050px;}
.y114{bottom:737.632650px;}
.y12{bottom:742.069200px;}
.yc2{bottom:755.115900px;}
.y5a{bottom:756.316200px;}
.y34{bottom:756.316500px;}
.yac{bottom:756.529050px;}
.y113{bottom:757.132650px;}
.y11{bottom:762.764700px;}
.y59{bottom:775.816200px;}
.y33{bottom:775.816350px;}
.yab{bottom:776.029050px;}
.y112{bottom:776.632650px;}
.y10{bottom:778.964700px;}
.yf{bottom:795.164700px;}
.y58{bottom:795.316200px;}
.y32{bottom:795.316350px;}
.yaa{bottom:795.529050px;}
.y111{bottom:796.132650px;}
.yc1{bottom:806.139600px;}
.ye{bottom:806.869200px;}
.y57{bottom:814.816200px;}
.ya1{bottom:815.029050px;}
.y110{bottom:815.632650px;}
.yd{bottom:827.564700px;}
.y56{bottom:834.316200px;}
.y31{bottom:834.316350px;}
.ya0{bottom:834.529050px;}
.y10f{bottom:835.132650px;}
.yc{bottom:845.136300px;}
.y9f{bottom:854.029050px;}
.y10e{bottom:854.632650px;}
.yc0{bottom:857.163150px;}
.yb{bottom:867.636300px;}
.y9e{bottom:873.529050px;}
.y10d{bottom:874.132650px;}
.ybf{bottom:891.986850px;}
.y8b{bottom:893.029050px;}
.y10c{bottom:893.632650px;}
.ybe{bottom:908.186850px;}
.y80{bottom:909.955500px;}
.y8a{bottom:912.529050px;}
.y10b{bottom:913.132650px;}
.ya{bottom:918.907800px;}
.y89{bottom:932.029050px;}
.y10a{bottom:932.632650px;}
.y7f{bottom:933.707400px;}
.y9{bottom:941.407800px;}
.y88{bottom:951.529050px;}
.y109{bottom:952.132650px;}
.y7e{bottom:953.207400px;}
.ybd{bottom:959.210400px;}
.y87{bottom:971.029050px;}
.y108{bottom:971.632650px;}
.y7d{bottom:972.707400px;}
.y8{bottom:978.517050px;}
.y86{bottom:990.529050px;}
.y107{bottom:991.132650px;}
.y7c{bottom:992.207400px;}
.y7{bottom:1008.517050px;}
.y85{bottom:1010.029050px;}
.ybc{bottom:1010.234100px;}
.y106{bottom:1010.632650px;}
.y7b{bottom:1011.707400px;}
.y84{bottom:1029.529050px;}
.y105{bottom:1030.132650px;}
.y7a{bottom:1031.207400px;}
.ybb{bottom:1040.579550px;}
.yba{bottom:1048.679550px;}
.y83{bottom:1049.029050px;}
.y104{bottom:1049.632650px;}
.y79{bottom:1050.707400px;}
.y82{bottom:1068.529050px;}
.y103{bottom:1069.132650px;}
.y2f{bottom:1080.627300px;}
.y6{bottom:1088.611200px;}
.y5{bottom:1111.647600px;}
.y2e{bottom:1111.760850px;}
.y30{bottom:1123.294950px;}
.y81{bottom:1123.345200px;}
.hb{height:24.241140px;}
.h4{height:29.100586px;}
.h3{height:31.500000px;}
.h2{height:33.600000px;}
.hf{height:35.544287px;}
.h6{height:35.991211px;}
.hc{height:41.580000px;}
.he{height:41.877000px;}
.h10{height:43.681641px;}
.h13{height:44.203500px;}
.h11{height:50.004000px;}
.hd{height:50.247000px;}
.h14{height:52.782000px;}
.h12{height:53.038500px;}
.h9{height:57.993000px;}
.ha{height:61.943934px;}
.h5{height:76.500000px;}
.h8{height:80.298000px;}
.h15{height:82.647000px;}
.h7{height:100.494000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x1{left:63.779400px;}
.x3{left:68.031450px;}
.x2{left:77.598300px;}
.xd{left:85.039350px;}
.x15{left:106.299150px;}
.xc{left:149.244150px;}
.x5{left:150.649500px;}
.x13{left:185.062950px;}
.x8{left:197.463750px;}
.x14{left:206.334600px;}
.xe{left:208.247550px;}
.x10{left:209.716500px;}
.x12{left:214.282350px;}
.x18{left:387.657900px;}
.x17{left:388.926150px;}
.x9{left:471.968400px;}
.xb{left:493.228350px;}
.x16{left:514.488150px;}
.x11{left:541.370100px;}
.xa{left:575.008500px;}
.x6{left:622.032600px;}
.xf{left:786.955350px;}
.x4{left:821.883900px;}
.x7{left:838.873800px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.088000pt;}
.v3{vertical-align:28.800000pt;}
.lsf{letter-spacing:-1.216000pt;}
.ls7{letter-spacing:-1.152000pt;}
.ls6{letter-spacing:-0.906667pt;}
.ls10{letter-spacing:-0.720000pt;}
.lsc{letter-spacing:-0.432000pt;}
.lsa{letter-spacing:-0.152000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.025067pt;}
.lsb{letter-spacing:0.123200pt;}
.ls0{letter-spacing:0.139381pt;}
.ls4{letter-spacing:0.139467pt;}
.ls2{letter-spacing:0.139547pt;}
.ls3{letter-spacing:0.139669pt;}
.ls1{letter-spacing:0.240000pt;}
.ls8{letter-spacing:0.506667pt;}
.lsd{letter-spacing:456.373333pt;}
.lse{letter-spacing:1168.700800pt;}
.ws1{word-spacing:-18.026667pt;}
.ws4{word-spacing:-14.826667pt;}
.ws10{word-spacing:-12.970667pt;}
.wsf{word-spacing:-12.312000pt;}
.wsc{word-spacing:-12.288000pt;}
.ws18{word-spacing:-11.856000pt;}
.ws3{word-spacing:-11.664000pt;}
.ws2{word-spacing:-11.232000pt;}
.ws0{word-spacing:-10.509547pt;}
.ws5{word-spacing:-10.378667pt;}
.ws11{word-spacing:-9.079467pt;}
.wsd{word-spacing:-8.601600pt;}
.ws19{word-spacing:-8.164800pt;}
.wse{word-spacing:-7.862400pt;}
.ws7{word-spacing:-3.733333pt;}
.ws16{word-spacing:-2.026667pt;}
.ws31{word-spacing:-1.440000pt;}
.ws3c{word-spacing:-1.317333pt;}
.ws45{word-spacing:-1.104000pt;}
.ws15{word-spacing:-1.064000pt;}
.ws39{word-spacing:-0.810667pt;}
.ws25{word-spacing:-0.576000pt;}
.ws1b{word-spacing:-0.506667pt;}
.ws43{word-spacing:-0.336000pt;}
.wsa{word-spacing:-0.240000pt;}
.ws6{word-spacing:0.000000pt;}
.ws42{word-spacing:0.050667pt;}
.ws1c{word-spacing:0.152000pt;}
.ws14{word-spacing:0.506667pt;}
.ws44{word-spacing:0.720000pt;}
.ws3f{word-spacing:0.861333pt;}
.wsb{word-spacing:1.152000pt;}
.ws30{word-spacing:1.216000pt;}
.ws3e{word-spacing:1.368000pt;}
.ws13{word-spacing:1.418667pt;}
.ws35{word-spacing:1.469333pt;}
.ws1f{word-spacing:2.432000pt;}
.ws34{word-spacing:2.888000pt;}
.ws1e{word-spacing:3.120000pt;}
.ws3b{word-spacing:3.952000pt;}
.ws3a{word-spacing:4.306667pt;}
.ws8{word-spacing:4.608000pt;}
.ws1d{word-spacing:5.928000pt;}
.ws40{word-spacing:6.181333pt;}
.ws12{word-spacing:6.434667pt;}
.ws32{word-spacing:8.005333pt;}
.ws3d{word-spacing:9.322667pt;}
.ws41{word-spacing:9.728000pt;}
.ws17{word-spacing:10.184000pt;}
.ws38{word-spacing:11.096000pt;}
.ws24{word-spacing:11.146667pt;}
.ws33{word-spacing:14.440000pt;}
.ws36{word-spacing:16.922667pt;}
.ws1a{word-spacing:18.290667pt;}
.ws37{word-spacing:21.026667pt;}
.ws9{word-spacing:23.226667pt;}
.ws2f{word-spacing:66.517333pt;}
.ws2e{word-spacing:81.738133pt;}
.ws23{word-spacing:86.413333pt;}
.ws21{word-spacing:101.389333pt;}
.ws2b{word-spacing:148.746133pt;}
.ws22{word-spacing:154.357333pt;}
.ws29{word-spacing:181.333333pt;}
.ws28{word-spacing:192.037333pt;}
.ws2c{word-spacing:236.485333pt;}
.ws2d{word-spacing:244.429333pt;}
.ws2a{word-spacing:252.973333pt;}
.ws26{word-spacing:263.245333pt;}
.ws20{word-spacing:291.445333pt;}
.ws27{word-spacing:663.241067pt;}
._19{margin-left:-8.121867pt;}
._1a{margin-left:-7.123733pt;}
._3a{margin-left:-5.958667pt;}
._2{margin-left:-4.868800pt;}
._4{margin-left:-3.849600pt;}
._3{margin-left:-2.304000pt;}
._1{margin-left:-1.411200pt;}
._6{width:1.056000pt;}
._7{width:2.001600pt;}
._0{width:3.707200pt;}
._9{width:4.656000pt;}
._a{width:5.593067pt;}
._b{width:6.535467pt;}
._8{width:7.852800pt;}
._5{width:9.187200pt;}
._c{width:10.617600pt;}
._f{width:11.926933pt;}
._3b{width:13.430400pt;}
._e{width:14.525867pt;}
._d{width:15.425600pt;}
._14{width:16.334933pt;}
._13{width:17.441867pt;}
._18{width:18.422133pt;}
._17{width:19.890667pt;}
._12{width:21.209067pt;}
._10{width:22.121067pt;}
._11{width:23.595467pt;}
._15{width:24.537867pt;}
._16{width:25.797067pt;}
._1f{width:28.027733pt;}
._1c{width:29.527200pt;}
._1b{width:30.932000pt;}
._3d{width:32.894400pt;}
._1d{width:34.063200pt;}
._21{width:35.611200pt;}
._3c{width:37.932800pt;}
._20{width:39.234133pt;}
._1e{width:40.586667pt;}
._2f{width:114.611200pt;}
._2b{width:144.702400pt;}
._28{width:160.547733pt;}
._32{width:174.467200pt;}
._26{width:192.793600pt;}
._22{width:320.206933pt;}
._33{width:347.454400pt;}
._2d{width:364.537600pt;}
._37{width:380.224000pt;}
._35{width:387.107200pt;}
._34{width:388.835200pt;}
._38{width:393.457600pt;}
._36{width:407.574400pt;}
._2c{width:429.059200pt;}
._2e{width:475.158400pt;}
._27{width:491.776000pt;}
._24{width:503.568000pt;}
._39{width:518.243200pt;}
._30{width:543.347200pt;}
._31{width:617.704000pt;}
._2a{width:687.222400pt;}
._29{width:723.635200pt;}
._23{width:1016.684800pt;}
._25{width:1167.596800pt;}
.fs7{font-size:27.984000pt;}
.fsa{font-size:33.600000pt;}
.fsc{font-size:35.466667pt;}
.fs1{font-size:37.333333pt;}
.fs6{font-size:40.421333pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.600000pt;}
.fs3{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs5{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:37.599733pt;}
.y4{bottom:54.184933pt;}
.y3{bottom:64.851600pt;}
.y2{bottom:79.316667pt;}
.ye9{bottom:100.197200pt;}
.yd3{bottom:100.207600pt;}
.y78{bottom:100.281067pt;}
.y55{bottom:100.281333pt;}
.y102{bottom:100.470267pt;}
.y134{bottom:101.006800pt;}
.y9d{bottom:102.412400pt;}
.y2d{bottom:116.880267pt;}
.ye8{bottom:117.530533pt;}
.yd2{bottom:117.540933pt;}
.y77{bottom:117.614400pt;}
.y54{bottom:117.614667pt;}
.y101{bottom:117.803600pt;}
.y133{bottom:118.340133pt;}
.y9c{bottom:119.745733pt;}
.yb9{bottom:125.795067pt;}
.y2c{bottom:134.213600pt;}
.ye7{bottom:134.863867pt;}
.yd1{bottom:134.874267pt;}
.y76{bottom:134.947733pt;}
.y53{bottom:134.948000pt;}
.y100{bottom:135.136933pt;}
.y132{bottom:135.673467pt;}
.y9b{bottom:137.079067pt;}
.y2b{bottom:151.546933pt;}
.ye6{bottom:152.197200pt;}
.yd0{bottom:152.207600pt;}
.y75{bottom:152.281067pt;}
.y52{bottom:152.281333pt;}
.yff{bottom:152.470267pt;}
.y131{bottom:153.006800pt;}
.y9a{bottom:154.412400pt;}
.y2a{bottom:168.880267pt;}
.ye5{bottom:169.530533pt;}
.ycf{bottom:169.540933pt;}
.y74{bottom:169.614400pt;}
.y51{bottom:169.614667pt;}
.yfe{bottom:169.803600pt;}
.y130{bottom:170.340133pt;}
.yb8{bottom:171.149467pt;}
.y99{bottom:171.745733pt;}
.y29{bottom:186.213600pt;}
.ye4{bottom:186.863867pt;}
.yce{bottom:186.874267pt;}
.y73{bottom:186.947733pt;}
.y50{bottom:186.948000pt;}
.yfd{bottom:187.136933pt;}
.y12f{bottom:187.673467pt;}
.y98{bottom:189.079067pt;}
.y28{bottom:203.546933pt;}
.ye3{bottom:204.197200pt;}
.ycd{bottom:204.207600pt;}
.y72{bottom:204.281067pt;}
.y4f{bottom:204.281333pt;}
.yfc{bottom:204.470267pt;}
.y12e{bottom:205.006800pt;}
.y97{bottom:206.412400pt;}
.yb7{bottom:216.503733pt;}
.y27{bottom:220.880267pt;}
.ye2{bottom:221.530533pt;}
.ycc{bottom:221.540933pt;}
.y71{bottom:221.614400pt;}
.y4e{bottom:221.614667pt;}
.yfb{bottom:221.803600pt;}
.y12d{bottom:222.340133pt;}
.y96{bottom:223.745733pt;}
.y136{bottom:237.037067pt;}
.y26{bottom:238.213600pt;}
.ye1{bottom:238.863867pt;}
.ycb{bottom:238.874267pt;}
.y70{bottom:238.947733pt;}
.y4d{bottom:238.948000pt;}
.yfa{bottom:239.136933pt;}
.y12c{bottom:239.673467pt;}
.y95{bottom:241.079067pt;}
.yb6{bottom:247.458133pt;}
.y135{bottom:254.370400pt;}
.y25{bottom:255.546933pt;}
.ye0{bottom:256.197200pt;}
.y6f{bottom:256.281067pt;}
.y4c{bottom:256.281333pt;}
.yf9{bottom:256.470267pt;}
.y12b{bottom:257.006800pt;}
.y94{bottom:258.412400pt;}
.yb5{bottom:261.858133pt;}
.ydf{bottom:273.530533pt;}
.y6e{bottom:273.614400pt;}
.y4b{bottom:273.614667pt;}
.yf8{bottom:273.803600pt;}
.y12a{bottom:274.340133pt;}
.y93{bottom:275.745733pt;}
.y24{bottom:290.213467pt;}
.yde{bottom:290.863867pt;}
.y6d{bottom:290.947733pt;}
.y4a{bottom:290.948000pt;}
.yf7{bottom:291.136933pt;}
.y129{bottom:291.673467pt;}
.y92{bottom:293.079067pt;}
.yb4{bottom:295.873867pt;}
.ydd{bottom:308.197200pt;}
.y6c{bottom:308.281067pt;}
.y49{bottom:308.281333pt;}
.yf6{bottom:308.470267pt;}
.y128{bottom:309.006800pt;}
.y91{bottom:310.412400pt;}
.y23{bottom:311.326400pt;}
.yca{bottom:319.718133pt;}
.yb3{bottom:322.514267pt;}
.ydc{bottom:325.530533pt;}
.y6b{bottom:325.614400pt;}
.y48{bottom:325.614667pt;}
.yf5{bottom:325.803600pt;}
.y127{bottom:326.340133pt;}
.y90{bottom:327.745733pt;}
.y22{bottom:328.659733pt;}
.yb2{bottom:329.714267pt;}
.yea{bottom:342.863867pt;}
.y6a{bottom:342.947733pt;}
.y47{bottom:342.948000pt;}
.yf4{bottom:343.136933pt;}
.y126{bottom:343.673467pt;}
.y8f{bottom:345.079067pt;}
.y21{bottom:345.993067pt;}
.ydb{bottom:360.197200pt;}
.y69{bottom:360.281067pt;}
.y46{bottom:360.281333pt;}
.yf3{bottom:360.470267pt;}
.y125{bottom:361.006800pt;}
.y20{bottom:363.326400pt;}
.yc9{bottom:365.072533pt;}
.yb1{bottom:366.667600pt;}
.y68{bottom:377.614400pt;}
.y45{bottom:377.614667pt;}
.yf2{bottom:377.803600pt;}
.y124{bottom:378.340133pt;}
.y1f{bottom:380.659733pt;}
.yb0{bottom:381.067600pt;}
.y67{bottom:394.947733pt;}
.y44{bottom:394.948000pt;}
.yf1{bottom:395.136933pt;}
.yaf{bottom:395.467600pt;}
.y123{bottom:395.673467pt;}
.y1e{bottom:397.993067pt;}
.yc8{bottom:399.088267pt;}
.y8e{bottom:401.225200pt;}
.yae{bottom:409.867600pt;}
.y66{bottom:412.281067pt;}
.y43{bottom:412.281333pt;}
.yf0{bottom:412.470267pt;}
.y122{bottom:413.006800pt;}
.y1d{bottom:415.326400pt;}
.y8d{bottom:415.625200pt;}
.y65{bottom:429.614400pt;}
.y42{bottom:429.614667pt;}
.yef{bottom:429.803600pt;}
.y8c{bottom:430.025200pt;}
.y121{bottom:430.340133pt;}
.y1c{bottom:432.659733pt;}
.yc7{bottom:444.442533pt;}
.y41{bottom:446.948000pt;}
.yee{bottom:447.136933pt;}
.y120{bottom:447.673467pt;}
.y1b{bottom:449.993067pt;}
.yda{bottom:455.751200pt;}
.y64{bottom:464.281067pt;}
.y40{bottom:464.281333pt;}
.yed{bottom:464.470267pt;}
.y11f{bottom:465.006800pt;}
.y1a{bottom:467.326400pt;}
.yd9{bottom:470.151067pt;}
.y3f{bottom:481.614667pt;}
.yec{bottom:481.803600pt;}
.y11e{bottom:482.340133pt;}
.yd8{bottom:484.551067pt;}
.y19{bottom:484.659733pt;}
.yc6{bottom:489.796933pt;}
.y3e{bottom:498.948000pt;}
.yd7{bottom:498.951067pt;}
.yeb{bottom:499.136933pt;}
.y11d{bottom:499.673467pt;}
.y18{bottom:501.993067pt;}
.yd6{bottom:513.351067pt;}
.y63{bottom:516.281067pt;}
.y3d{bottom:516.281333pt;}
.ya9{bottom:516.470267pt;}
.y11c{bottom:517.006800pt;}
.y17{bottom:519.326400pt;}
.yd5{bottom:527.751200pt;}
.y62{bottom:533.614400pt;}
.y3c{bottom:533.614667pt;}
.ya8{bottom:533.803600pt;}
.y11b{bottom:534.340133pt;}
.yc5{bottom:535.151200pt;}
.y16{bottom:536.659733pt;}
.yd4{bottom:542.151067pt;}
.y61{bottom:550.947733pt;}
.y3b{bottom:550.948000pt;}
.ya7{bottom:551.136933pt;}
.y11a{bottom:551.673467pt;}
.y15{bottom:553.993067pt;}
.y60{bottom:568.281067pt;}
.y3a{bottom:568.281333pt;}
.ya6{bottom:568.470267pt;}
.y119{bottom:569.006800pt;}
.yc4{bottom:580.505600pt;}
.y5f{bottom:585.614400pt;}
.y39{bottom:585.614667pt;}
.ya5{bottom:585.803600pt;}
.y118{bottom:586.340133pt;}
.y14{bottom:588.659733pt;}
.y5e{bottom:602.947733pt;}
.y38{bottom:602.948000pt;}
.ya4{bottom:603.136933pt;}
.y117{bottom:603.673467pt;}
.y5d{bottom:620.281067pt;}
.y37{bottom:620.281333pt;}
.ya3{bottom:620.470267pt;}
.y116{bottom:621.006800pt;}
.yc3{bottom:625.859867pt;}
.y5c{bottom:637.614400pt;}
.y36{bottom:637.614667pt;}
.yad{bottom:637.803600pt;}
.y115{bottom:638.340133pt;}
.y13{bottom:645.217067pt;}
.y5b{bottom:654.947733pt;}
.y35{bottom:654.948000pt;}
.ya2{bottom:655.136933pt;}
.y114{bottom:655.673467pt;}
.y12{bottom:659.617067pt;}
.yc2{bottom:671.214133pt;}
.y5a{bottom:672.281067pt;}
.y34{bottom:672.281333pt;}
.yac{bottom:672.470267pt;}
.y113{bottom:673.006800pt;}
.y11{bottom:678.013067pt;}
.y59{bottom:689.614400pt;}
.y33{bottom:689.614533pt;}
.yab{bottom:689.803600pt;}
.y112{bottom:690.340133pt;}
.y10{bottom:692.413067pt;}
.yf{bottom:706.813067pt;}
.y58{bottom:706.947733pt;}
.y32{bottom:706.947867pt;}
.yaa{bottom:707.136933pt;}
.y111{bottom:707.673467pt;}
.yc1{bottom:716.568533pt;}
.ye{bottom:717.217067pt;}
.y57{bottom:724.281067pt;}
.ya1{bottom:724.470267pt;}
.y110{bottom:725.006800pt;}
.yd{bottom:735.613067pt;}
.y56{bottom:741.614400pt;}
.y31{bottom:741.614533pt;}
.ya0{bottom:741.803600pt;}
.y10f{bottom:742.340133pt;}
.yc{bottom:751.232267pt;}
.y9f{bottom:759.136933pt;}
.y10e{bottom:759.673467pt;}
.yc0{bottom:761.922800pt;}
.yb{bottom:771.232267pt;}
.y9e{bottom:776.470267pt;}
.y10d{bottom:777.006800pt;}
.ybf{bottom:792.877200pt;}
.y8b{bottom:793.803600pt;}
.y10c{bottom:794.340133pt;}
.ybe{bottom:807.277200pt;}
.y80{bottom:808.849333pt;}
.y8a{bottom:811.136933pt;}
.y10b{bottom:811.673467pt;}
.ya{bottom:816.806933pt;}
.y89{bottom:828.470267pt;}
.y10a{bottom:829.006800pt;}
.y7f{bottom:829.962133pt;}
.y9{bottom:836.806933pt;}
.y88{bottom:845.803600pt;}
.y109{bottom:846.340133pt;}
.y7e{bottom:847.295467pt;}
.ybd{bottom:852.631467pt;}
.y87{bottom:863.136933pt;}
.y108{bottom:863.673467pt;}
.y7d{bottom:864.628800pt;}
.y8{bottom:869.792933pt;}
.y86{bottom:880.470267pt;}
.y107{bottom:881.006800pt;}
.y7c{bottom:881.962133pt;}
.y7{bottom:896.459600pt;}
.y85{bottom:897.803600pt;}
.ybc{bottom:897.985867pt;}
.y106{bottom:898.340133pt;}
.y7b{bottom:899.295467pt;}
.y84{bottom:915.136933pt;}
.y105{bottom:915.673467pt;}
.y7a{bottom:916.628800pt;}
.ybb{bottom:924.959600pt;}
.yba{bottom:932.159600pt;}
.y83{bottom:932.470267pt;}
.y104{bottom:933.006800pt;}
.y79{bottom:933.962133pt;}
.y82{bottom:949.803600pt;}
.y103{bottom:950.340133pt;}
.y2f{bottom:960.557600pt;}
.y6{bottom:967.654400pt;}
.y5{bottom:988.131200pt;}
.y2e{bottom:988.231867pt;}
.y30{bottom:998.484400pt;}
.y81{bottom:998.529067pt;}
.hb{height:21.547680pt;}
.h4{height:25.867188pt;}
.h3{height:28.000000pt;}
.h2{height:29.866667pt;}
.hf{height:31.594922pt;}
.h6{height:31.992188pt;}
.hc{height:36.960000pt;}
.he{height:37.224000pt;}
.h10{height:38.828125pt;}
.h13{height:39.292000pt;}
.h11{height:44.448000pt;}
.hd{height:44.664000pt;}
.h14{height:46.917333pt;}
.h12{height:47.145333pt;}
.h9{height:51.549333pt;}
.ha{height:55.061275pt;}
.h5{height:68.000000pt;}
.h8{height:71.376000pt;}
.h15{height:73.464000pt;}
.h7{height:89.328000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.692800pt;}
.x3{left:60.472400pt;}
.x2{left:68.976267pt;}
.xd{left:75.590533pt;}
.x15{left:94.488133pt;}
.xc{left:132.661467pt;}
.x5{left:133.910667pt;}
.x13{left:164.500400pt;}
.x8{left:175.523333pt;}
.x14{left:183.408533pt;}
.xe{left:185.108933pt;}
.x10{left:186.414667pt;}
.x12{left:190.473200pt;}
.x18{left:344.584800pt;}
.x17{left:345.712133pt;}
.x9{left:419.527467pt;}
.xb{left:438.425200pt;}
.x16{left:457.322800pt;}
.x11{left:481.217867pt;}
.xa{left:511.118667pt;}
.x6{left:552.917867pt;}
.xf{left:699.515867pt;}
.x4{left:730.563467pt;}
.x7{left:745.665600pt;}
}




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