
    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_24de9aa45fa0309bc364885f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.201172;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_21940255e3d922569de03ad9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ce52653c532b44c51b492e32.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937012;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_c4ee58b04e970240b26017cc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6f8d8355f2b631107cae6217.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_fa95702da7110faeadc9c803.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_69e3eaa97d1be169749e5420.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1cdad74af3a0d0a792fab2a0.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a06aaa7900b642f22976fae0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.130371;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_e6332564c7925e7e93697fb4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.913574;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_6afbb5d186a2b981b62d0f2e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.095703;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_dfa6c7cc5a9e03906d237dd4.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.095703;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);}
.v2{vertical-align:-30.360000px;}
.v4{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls8{letter-spacing:-1.440000px;}
.ls24{letter-spacing:-1.290000px;}
.lsf{letter-spacing:-1.206000px;}
.ls14{letter-spacing:-1.134000px;}
.lsd{letter-spacing:-1.068000px;}
.ls10{letter-spacing:-0.966000px;}
.lse{letter-spacing:-0.768000px;}
.ls11{letter-spacing:-0.732000px;}
.lsc{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.463800px;}
.ls17{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.454800px;}
.ls13{letter-spacing:-0.435000px;}
.lsa{letter-spacing:-0.432000px;}
.ls25{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.305400px;}
.ls4{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.012000px;}
.ls21{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.152400px;}
.ls22{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.272640px;}
.ls18{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.429000px;}
.ls27{letter-spacing:0.457800px;}
.ls1{letter-spacing:0.535680px;}
.ls0{letter-spacing:0.593280px;}
.ls12{letter-spacing:0.708000px;}
.ls2{letter-spacing:0.720000px;}
.ls26{letter-spacing:5.040000px;}
.ls1f{letter-spacing:34.865280px;}
.ls1e{letter-spacing:37.745280px;}
.ls19{letter-spacing:40.637280px;}
.ls16{letter-spacing:63.838560px;}
.ls1c{letter-spacing:94.061280px;}
.ls29{letter-spacing:104.141280px;}
.ls2a{letter-spacing:108.461280px;}
.ls1b{letter-spacing:111.341280px;}
.ls28{letter-spacing:128.621280px;}
.ls3{letter-spacing:130.061280px;}
.ls15{letter-spacing:154.541280px;}
.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;}
}
.ws14{word-spacing:-60.480000px;}
.ws19{word-spacing:-17.017800px;}
.ws15{word-spacing:-16.865400px;}
.ws17{word-spacing:-16.712400px;}
.ws11{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.488000px;}
.ws16{word-spacing:-16.254600px;}
.ws13{word-spacing:-16.102200px;}
.ws18{word-spacing:-15.948000px;}
.ws6{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.768000px;}
.ws0{word-spacing:-15.399240px;}
.ws1a{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.515440px;}
.ws2{word-spacing:-14.506440px;}
.ws3{word-spacing:-13.680000px;}
.wse{word-spacing:-13.074720px;}
.wsd{word-spacing:-12.366720px;}
.ws4{word-spacing:-12.240000px;}
.wsc{word-spacing:-11.634720px;}
.ws9{word-spacing:-11.598720px;}
.wsb{word-spacing:-11.400720px;}
.ws8{word-spacing:-11.298720px;}
.wsa{word-spacing:-11.160720px;}
.wsf{word-spacing:-10.440000px;}
.ws12{word-spacing:0.000000px;}
.ws10{word-spacing:0.368760px;}
._22{margin-left:-9.774720px;}
._16{margin-left:-4.591920px;}
._3{margin-left:-2.931840px;}
._0{margin-left:-1.483200px;}
._1{width:1.112880px;}
._f{width:2.397840px;}
._4{width:3.502800px;}
._e{width:4.552320px;}
._c{width:6.264480px;}
._7{width:7.272000px;}
._d{width:8.307840px;}
._6{width:9.365760px;}
._b{width:10.889280px;}
._2{width:12.068640px;}
._5{width:13.181760px;}
._8{width:15.212160px;}
._10{width:17.752320px;}
._2d{width:19.301760px;}
._15{width:20.453760px;}
._14{width:21.553920px;}
._12{width:22.705920px;}
._11{width:24.137280px;}
._38{width:25.352640px;}
._1e{width:26.588160px;}
._33{width:28.027200px;}
._3b{width:29.568960px;}
._13{width:31.026240px;}
._3f{width:32.417280px;}
._19{width:34.568160px;}
._a{width:35.835360px;}
._9{width:37.623120px;}
._29{width:39.504960px;}
._35{width:40.962240px;}
._36{width:42.552000px;}
._24{width:45.267840px;}
._2f{width:46.857600px;}
._27{width:52.421760px;}
._2a{width:54.773760px;}
._28{width:56.335680px;}
._2c{width:59.682240px;}
._26{width:62.556480px;}
._2b{width:66.438720px;}
._23{width:67.683360px;}
._20{width:71.856000px;}
._1f{width:73.022400px;}
._21{width:74.652960px;}
._37{width:75.672000px;}
._3a{width:77.531520px;}
._2e{width:81.434880px;}
._32{width:84.124800px;}
._31{width:90.046080px;}
._34{width:94.351680px;}
._39{width:105.877440px;}
._45{width:110.050560px;}
._3e{width:120.516480px;}
._43{width:134.665920px;}
._44{width:153.239040px;}
._1d{width:158.339520px;}
._1c{width:159.399360px;}
._25{width:164.963520px;}
._40{width:174.476160px;}
._41{width:176.319840px;}
._42{width:186.491520px;}
._18{width:222.459840px;}
._30{width:241.404480px;}
._1b{width:247.780800px;}
._1a{width:248.788800px;}
._17{width:263.785440px;}
._3c{width:288.766080px;}
._3d{width:324.382080px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs4{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.ye9{bottom:3.594000px;}
.ya1{bottom:3.600000px;}
.ya3{bottom:3.645000px;}
.y4{bottom:4.320000px;}
.y2{bottom:5.040000px;}
.yfa{bottom:10.440000px;}
.ybc{bottom:22.320000px;}
.y10d{bottom:22.350000px;}
.yc7{bottom:22.674000px;}
.yb6{bottom:22.680000px;}
.yb8{bottom:22.710000px;}
.ye7{bottom:22.725000px;}
.yf9{bottom:29.160000px;}
.y116{bottom:29.520000px;}
.y111{bottom:29.550000px;}
.y109{bottom:41.394000px;}
.ybb{bottom:41.400000px;}
.yc2{bottom:41.430000px;}
.y131{bottom:41.445000px;}
.yc6{bottom:41.754000px;}
.yc0{bottom:41.760000px;}
.ybe{bottom:41.805000px;}
.y130{bottom:48.240000px;}
.y103{bottom:48.285000px;}
.yf7{bottom:60.480000px;}
.y10b{bottom:60.525000px;}
.y5{bottom:64.080000px;}
.y3{bottom:66.960000px;}
.yf8{bottom:67.320000px;}
.y11c{bottom:79.200000px;}
.y7{bottom:97.596000px;}
.y11b{bottom:98.310000px;}
.yc8{bottom:107.316000px;}
.yeb{bottom:108.396000px;}
.y5c{bottom:110.916000px;}
.y108{bottom:111.636000px;}
.y32{bottom:114.156000px;}
.y14f{bottom:114.876000px;}
.y11f{bottom:115.956000px;}
.y139{bottom:116.316000px;}
.y11a{bottom:117.390000px;}
.y80{bottom:118.836000px;}
.yea{bottom:128.196000px;}
.y5b{bottom:129.996000px;}
.y14e{bottom:133.956000px;}
.y138{bottom:135.396000px;}
.yc5{bottom:145.836000px;}
.ye8{bottom:147.996000px;}
.y9e{bottom:148.716000px;}
.y5a{bottom:149.076000px;}
.y14d{bottom:153.030000px;}
.y31{bottom:154.110000px;}
.y11e{bottom:154.830000px;}
.y16d{bottom:158.430000px;}
.y7f{bottom:158.790000px;}
.y9d{bottom:167.790000px;}
.y107{bottom:169.230000px;}
.y14c{bottom:172.110000px;}
.y30{bottom:173.190000px;}
.y16c{bottom:177.510000px;}
.y7e{bottom:177.870000px;}
.ye6{bottom:187.230000px;}
.y59{bottom:189.030000px;}
.y14b{bottom:190.830000px;}
.y2f{bottom:192.270000px;}
.y11d{bottom:193.350000px;}
.y7d{bottom:196.950000px;}
.yc4{bottom:203.475000px;}
.y9c{bottom:207.795000px;}
.y2e{bottom:211.395000px;}
.y137{bottom:213.195000px;}
.y7c{bottom:216.075000px;}
.y16b{bottom:217.515000px;}
.y58{bottom:229.035000px;}
.y2d{bottom:230.115000px;}
.y9b{bottom:230.475000px;}
.y14a{bottom:230.835000px;}
.y119{bottom:232.275000px;}
.y7b{bottom:235.155000px;}
.y16a{bottom:236.595000px;}
.yc3{bottom:242.355000px;}
.ye5{bottom:248.835000px;}
.y2c{bottom:249.195000px;}
.y149{bottom:249.915000px;}
.y136{bottom:250.995000px;}
.y7a{bottom:253.875000px;}
.y106{bottom:265.395000px;}
.ye4{bottom:267.555000px;}
.y2b{bottom:268.275000px;}
.y57{bottom:268.635000px;}
.y148{bottom:268.995000px;}
.y135{bottom:270.075000px;}
.y9a{bottom:270.795000px;}
.y169{bottom:276.555000px;}
.ye3{bottom:283.755000px;}
.y2a{bottom:286.995000px;}
.y56{bottom:287.715000px;}
.y99{bottom:289.875000px;}
.y79{bottom:293.835000px;}
.y168{bottom:295.635000px;}
.yc1{bottom:299.955000px;}
.ye2{bottom:303.555000px;}
.y105{bottom:304.275000px;}
.y29{bottom:306.075000px;}
.y55{bottom:306.795000px;}
.y98{bottom:308.955000px;}
.y134{bottom:310.035000px;}
.y78{bottom:312.915000px;}
.ye1{bottom:323.385000px;}
.y28{bottom:325.185000px;}
.y54{bottom:325.905000px;}
.y133{bottom:326.265000px;}
.y97{bottom:327.705000px;}
.y77{bottom:332.025000px;}
.y167{bottom:335.625000px;}
.ye0{bottom:342.825000px;}
.y147{bottom:346.785000px;}
.y76{bottom:350.745000px;}
.ybf{bottom:357.585000px;}
.ydf{bottom:362.625000px;}
.y132{bottom:364.785000px;}
.y27{bottom:365.145000px;}
.y53{bottom:365.865000px;}
.y96{bottom:367.665000px;}
.y75{bottom:369.825000px;}
.y166{bottom:375.585000px;}
.y104{bottom:381.705000px;}
.yde{bottom:382.425000px;}
.y52{bottom:384.945000px;}
.y95{bottom:386.745000px;}
.y74{bottom:388.905000px;}
.y165{bottom:394.665000px;}
.y102{bottom:401.505000px;}
.ydd{bottom:402.225000px;}
.y51{bottom:403.665000px;}
.y118{bottom:404.385000px;}
.y26{bottom:405.105000px;}
.y94{bottom:405.825000px;}
.y73{bottom:407.985000px;}
.ybd{bottom:415.185000px;}
.y50{bottom:422.745000px;}
.y146{bottom:424.905000px;}
.y72{bottom:426.705000px;}
.y164{bottom:434.265000px;}
.y4f{bottom:441.825000px;}
.y117{bottom:442.905000px;}
.y145{bottom:443.625000px;}
.y25{bottom:445.065000px;}
.y71{bottom:445.785000px;}
.y163{bottom:453.390000px;}
.y101{bottom:459.150000px;}
.y144{bottom:462.750000px;}
.ydc{bottom:463.470000px;}
.y24{bottom:464.190000px;}
.y70{bottom:464.910000px;}
.yba{bottom:473.190000px;}
.y12f{bottom:480.390000px;}
.y4e{bottom:481.470000px;}
.y115{bottom:481.830000px;}
.ydb{bottom:482.550000px;}
.y23{bottom:482.910000px;}
.y93{bottom:483.630000px;}
.y162{bottom:493.350000px;}
.y100{bottom:497.670000px;}
.yda{bottom:498.390000px;}
.y22{bottom:501.990000px;}
.y92{bottom:502.710000px;}
.y6f{bottom:504.510000px;}
.y161{bottom:512.430000px;}
.yd9{bottom:518.190000px;}
.y114{bottom:520.350000px;}
.y21{bottom:521.070000px;}
.y4d{bottom:521.430000px;}
.y91{bottom:521.790000px;}
.y6e{bottom:523.590000px;}
.yb9{bottom:530.790000px;}
.yff{bottom:536.550000px;}
.yd8{bottom:537.990000px;}
.y20{bottom:539.790000px;}
.y4c{bottom:540.510000px;}
.y6d{bottom:542.670000px;}
.y160{bottom:552.390000px;}
.yd7{bottom:557.790000px;}
.y1f{bottom:558.870000px;}
.y143{bottom:559.590000px;}
.y6c{bottom:561.750000px;}
.yb7{bottom:569.310000px;}
.y15f{bottom:571.470000px;}
.y12e{bottom:576.900000px;}
.yd6{bottom:577.620000px;}
.y1e{bottom:577.980000px;}
.y113{bottom:578.340000px;}
.y4b{bottom:580.500000px;}
.y6b{bottom:580.860000px;}
.y1d{bottom:597.060000px;}
.yfe{bottom:597.780000px;}
.y6a{bottom:599.580000px;}
.yb5{bottom:608.220000px;}
.y178{bottom:608.580000px;}
.y15e{bottom:611.460000px;}
.y1c{bottom:615.780000px;}
.yd5{bottom:616.860000px;}
.y90{bottom:618.660000px;}
.y4a{bottom:620.460000px;}
.y15d{bottom:630.540000px;}
.y12d{bottom:634.500000px;}
.y1b{bottom:634.860000px;}
.yfd{bottom:635.580000px;}
.y8f{bottom:637.740000px;}
.y49{bottom:639.540000px;}
.y177{bottom:648.540000px;}
.yb4{bottom:650.340000px;}
.yfc{bottom:651.780000px;}
.y1a{bottom:653.940000px;}
.yd4{bottom:655.740000px;}
.y8e{bottom:656.460000px;}
.y48{bottom:658.620000px;}
.yb3{bottom:669.420000px;}
.y15c{bottom:670.140000px;}
.yfb{bottom:671.580000px;}
.y19{bottom:672.660000px;}
.y12c{bottom:673.020000px;}
.y142{bottom:675.540000px;}
.y112{bottom:677.340000px;}
.y47{bottom:677.700000px;}
.y69{bottom:679.500000px;}
.yb2{bottom:688.500000px;}
.y15b{bottom:689.220000px;}
.y110{bottom:693.540000px;}
.y8d{bottom:696.420000px;}
.y68{bottom:698.580000px;}
.yf6{bottom:710.490000px;}
.y12b{bottom:711.930000px;}
.y18{bottom:712.650000px;}
.y8c{bottom:715.530000px;}
.yd3{bottom:716.970000px;}
.y46{bottom:717.330000px;}
.y67{bottom:717.690000px;}
.yb1{bottom:719.490000px;}
.y176{bottom:728.490000px;}
.y15a{bottom:729.210000px;}
.y10f{bottom:732.450000px;}
.y8b{bottom:734.610000px;}
.yd2{bottom:736.050000px;}
.y45{bottom:736.410000px;}
.yb0{bottom:738.570000px;}
.y175{bottom:747.570000px;}
.y159{bottom:748.290000px;}
.y12a{bottom:750.450000px;}
.y141{bottom:753.330000px;}
.y17{bottom:753.690000px;}
.yd1{bottom:754.770000px;}
.y44{bottom:755.490000px;}
.yaf{bottom:757.650000px;}
.yd0{bottom:770.970000px;}
.y140{bottom:772.410000px;}
.y16{bottom:772.770000px;}
.y43{bottom:774.570000px;}
.yae{bottom:776.370000px;}
.yf5{bottom:786.810000px;}
.y174{bottom:787.170000px;}
.y158{bottom:788.250000px;}
.y129{bottom:789.330000px;}
.y13f{bottom:791.490000px;}
.y42{bottom:793.650000px;}
.yad{bottom:795.450000px;}
.y173{bottom:806.250000px;}
.yf4{bottom:806.610000px;}
.y157{bottom:807.330000px;}
.y13e{bottom:810.570000px;}
.y41{bottom:812.370000px;}
.y15{bottom:813.810000px;}
.y8a{bottom:814.530000px;}
.y128{bottom:827.895000px;}
.ycf{bottom:828.615000px;}
.y66{bottom:833.295000px;}
.y89{bottom:833.655000px;}
.y14{bottom:838.335000px;}
.yf3{bottom:845.535000px;}
.y172{bottom:846.255000px;}
.y156{bottom:848.055000px;}
.y13d{bottom:850.215000px;}
.y40{bottom:852.375000px;}
.yac{bottom:852.735000px;}
.yf2{bottom:864.975000px;}
.y171{bottom:865.335000px;}
.y127{bottom:866.775000px;}
.y10e{bottom:867.495000px;}
.y13c{bottom:869.295000px;}
.y3f{bottom:871.455000px;}
.yab{bottom:871.815000px;}
.y88{bottom:873.255000px;}
.yce{bottom:886.215000px;}
.y13b{bottom:888.375000px;}
.y3e{bottom:890.535000px;}
.y87{bottom:892.335000px;}
.y13{bottom:894.135000px;}
.yaa{bottom:902.415000px;}
.yf1{bottom:903.855000px;}
.y126{bottom:905.295000px;}
.y13a{bottom:907.455000px;}
.y3d{bottom:909.255000px;}
.y86{bottom:911.415000px;}
.y170{bottom:924.375000px;}
.ycd{bottom:925.095000px;}
.y155{bottom:926.175000px;}
.y3c{bottom:928.335000px;}
.y85{bottom:930.495000px;}
.ya9{bottom:942.375000px;}
.y10c{bottom:944.175000px;}
.y3b{bottom:947.415000px;}
.y65{bottom:949.215000px;}
.y12{bottom:954.645000px;}
.ya8{bottom:961.485000px;}
.y125{bottom:963.645000px;}
.y16f{bottom:964.365000px;}
.y11{bottom:965.805000px;}
.y3a{bottom:966.165000px;}
.y84{bottom:968.325000px;}
.ya7{bottom:980.565000px;}
.yf0{bottom:981.285000px;}
.ycc{bottom:982.725000px;}
.y154{bottom:985.245000px;}
.y83{bottom:987.405000px;}
.y64{bottom:989.205000px;}
.y10{bottom:991.005000px;}
.ya6{bottom:999.645000px;}
.y124{bottom:1002.525000px;}
.y153{bottom:1004.325000px;}
.y39{bottom:1006.125000px;}
.y82{bottom:1006.485000px;}
.y63{bottom:1008.285000px;}
.yf{bottom:1012.245000px;}
.ya5{bottom:1018.725000px;}
.yef{bottom:1019.805000px;}
.y10a{bottom:1021.605000px;}
.y152{bottom:1023.405000px;}
.y38{bottom:1025.205000px;}
.y62{bottom:1027.365000px;}
.ye{bottom:1034.205000px;}
.ycb{bottom:1040.325000px;}
.y151{bottom:1042.125000px;}
.y37{bottom:1044.285000px;}
.y81{bottom:1046.085000px;}
.y61{bottom:1046.445000px;}
.ya4{bottom:1055.805000px;}
.yd{bottom:1056.165000px;}
.yee{bottom:1058.685000px;}
.y150{bottom:1061.205000px;}
.y16e{bottom:1063.005000px;}
.y36{bottom:1063.365000px;}
.y123{bottom:1063.725000px;}
.y60{bottom:1065.165000px;}
.yc{bottom:1073.445000px;}
.ya2{bottom:1075.245000px;}
.yed{bottom:1078.530000px;}
.yca{bottom:1079.250000px;}
.y35{bottom:1082.130000px;}
.y122{bottom:1082.850000px;}
.y5f{bottom:1084.290000px;}
.yb{bottom:1090.770000px;}
.ya0{bottom:1095.090000px;}
.yec{bottom:1098.330000px;}
.y34{bottom:1101.210000px;}
.y121{bottom:1101.930000px;}
.y5e{bottom:1103.370000px;}
.ya{bottom:1108.050000px;}
.y120{bottom:1117.770000px;}
.y5d{bottom:1122.090000px;}
.y9{bottom:1125.330000px;}
.yc9{bottom:1136.850000px;}
.y9f{bottom:1139.730000px;}
.y33{bottom:1141.170000px;}
.y8{bottom:1142.610000px;}
.y1{bottom:1188.330000px;}
.y6{bottom:1206.000000px;}
.h4{height:18.036000px;}
.h14{height:18.720000px;}
.h12{height:19.080000px;}
.h13{height:19.116000px;}
.h2{height:19.836000px;}
.h9{height:22.960547px;}
.h1e{height:36.641953px;}
.h15{height:37.800000px;}
.h1f{height:37.836000px;}
.h1a{height:38.160000px;}
.h16{height:38.196000px;}
.h8{height:41.547656px;}
.ha{height:45.921094px;}
.h10{height:47.351250px;}
.h5{height:48.013594px;}
.h6{height:53.067656px;}
.h17{height:56.880000px;}
.h19{height:56.916000px;}
.h25{height:57.240000px;}
.h18{height:57.276000px;}
.he{height:58.121719px;}
.h26{height:58.283437px;}
.hd{height:58.833281px;}
.hf{height:63.070312px;}
.h11{height:63.175781px;}
.h1c{height:64.001953px;}
.h20{height:64.121953px;}
.h21{height:64.181953px;}
.hc{height:67.330547px;}
.h1b{height:67.450547px;}
.h3{height:67.824844px;}
.h7{height:73.722656px;}
.hb{height:74.181094px;}
.h1d{height:75.600000px;}
.h22{height:75.636000px;}
.h23{height:75.960000px;}
.h24{height:132.516000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:34.236000px;}
.wb{width:36.756000px;}
.w4{width:37.800000px;}
.w15{width:41.436000px;}
.w1a{width:51.876000px;}
.w12{width:88.596000px;}
.w19{width:95.076000px;}
.wd{width:98.316000px;}
.w17{width:99.396000px;}
.w9{width:104.112000px;}
.w14{width:105.516000px;}
.w7{width:106.236000px;}
.wf{width:107.676000px;}
.we{width:110.916000px;}
.w13{width:116.316000px;}
.wa{width:117.756000px;}
.w8{width:125.676000px;}
.w1c{width:126.036000px;}
.w18{width:126.756000px;}
.w1d{width:136.872000px;}
.w3{width:142.632000px;}
.w6{width:169.995000px;}
.w1b{width:220.755000px;}
.wc{width:227.595000px;}
.w16{width:229.035000px;}
.w11{width:239.475000px;}
.w2{width:558.930000px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x5{left:4.680000px;}
.xf{left:7.920000px;}
.x1f{left:34.923000px;}
.x3{left:104.796000px;}
.x6{left:106.235987px;}
.xb{left:116.675987px;}
.xd{left:133.235987px;}
.x18{left:141.912000px;}
.x14{left:144.432000px;}
.x1b{left:149.112000px;}
.xe{left:160.274987px;}
.x1{left:167.115000px;}
.x7{left:218.954987px;}
.xc{left:269.384987px;}
.x10{left:277.665000px;}
.xa{left:283.784987px;}
.x9{left:356.189987px;}
.x15{left:372.750000px;}
.x1c{left:378.870000px;}
.x19{left:382.110000px;}
.x11{left:384.990000px;}
.x8{left:386.069987px;}
.x16{left:471.780000px;}
.x1d{left:478.980000px;}
.x20{left:480.420000px;}
.x12{left:511.380000px;}
.x17{left:583.410000px;}
.x1a{left:588.450000px;}
.x1e{left:606.450000px;}
.x13{left:616.215000px;}
.x21{left:702.975000px;}
.x4{left:754.845000px;}
@media print{
.v2{vertical-align:-26.986667pt;}
.v4{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls8{letter-spacing:-1.280000pt;}
.ls24{letter-spacing:-1.146667pt;}
.lsf{letter-spacing:-1.072000pt;}
.ls14{letter-spacing:-1.008000pt;}
.lsd{letter-spacing:-0.949333pt;}
.ls10{letter-spacing:-0.858667pt;}
.lse{letter-spacing:-0.682667pt;}
.ls11{letter-spacing:-0.650667pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls17{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.404267pt;}
.ls13{letter-spacing:-0.386667pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls25{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.010667pt;}
.ls21{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.135467pt;}
.ls22{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.242347pt;}
.ls18{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.381333pt;}
.ls27{letter-spacing:0.406933pt;}
.ls1{letter-spacing:0.476160pt;}
.ls0{letter-spacing:0.527360pt;}
.ls12{letter-spacing:0.629333pt;}
.ls2{letter-spacing:0.640000pt;}
.ls26{letter-spacing:4.480000pt;}
.ls1f{letter-spacing:30.991360pt;}
.ls1e{letter-spacing:33.551360pt;}
.ls19{letter-spacing:36.122027pt;}
.ls16{letter-spacing:56.745387pt;}
.ls1c{letter-spacing:83.610027pt;}
.ls29{letter-spacing:92.570027pt;}
.ls2a{letter-spacing:96.410027pt;}
.ls1b{letter-spacing:98.970027pt;}
.ls28{letter-spacing:114.330027pt;}
.ls3{letter-spacing:115.610027pt;}
.ls15{letter-spacing:137.370027pt;}
.ws14{word-spacing:-53.760000pt;}
.ws19{word-spacing:-15.126933pt;}
.ws15{word-spacing:-14.991467pt;}
.ws17{word-spacing:-14.855467pt;}
.ws11{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.656000pt;}
.ws16{word-spacing:-14.448533pt;}
.ws13{word-spacing:-14.313067pt;}
.ws18{word-spacing:-14.176000pt;}
.ws6{word-spacing:-14.080000pt;}
.ws7{word-spacing:-14.016000pt;}
.ws0{word-spacing:-13.688213pt;}
.ws1a{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.902613pt;}
.ws2{word-spacing:-12.894613pt;}
.ws3{word-spacing:-12.160000pt;}
.wse{word-spacing:-11.621973pt;}
.wsd{word-spacing:-10.992640pt;}
.ws4{word-spacing:-10.880000pt;}
.wsc{word-spacing:-10.341973pt;}
.ws9{word-spacing:-10.309973pt;}
.wsb{word-spacing:-10.133973pt;}
.ws8{word-spacing:-10.043307pt;}
.wsa{word-spacing:-9.920640pt;}
.wsf{word-spacing:-9.280000pt;}
.ws12{word-spacing:0.000000pt;}
.ws10{word-spacing:0.327787pt;}
._22{margin-left:-8.688640pt;}
._16{margin-left:-4.081707pt;}
._3{margin-left:-2.606080pt;}
._0{margin-left:-1.318400pt;}
._1{width:0.989227pt;}
._f{width:2.131413pt;}
._4{width:3.113600pt;}
._e{width:4.046507pt;}
._c{width:5.568427pt;}
._7{width:6.464000pt;}
._d{width:7.384747pt;}
._6{width:8.325120pt;}
._b{width:9.679360pt;}
._2{width:10.727680pt;}
._5{width:11.717120pt;}
._8{width:13.521920pt;}
._10{width:15.779840pt;}
._2d{width:17.157120pt;}
._15{width:18.181120pt;}
._14{width:19.159040pt;}
._12{width:20.183040pt;}
._11{width:21.455360pt;}
._38{width:22.535680pt;}
._1e{width:23.633920pt;}
._33{width:24.913067pt;}
._3b{width:26.283520pt;}
._13{width:27.578880pt;}
._3f{width:28.815360pt;}
._19{width:30.727253pt;}
._a{width:31.853653pt;}
._9{width:33.442773pt;}
._29{width:35.115520pt;}
._35{width:36.410880pt;}
._36{width:37.824000pt;}
._24{width:40.238080pt;}
._2f{width:41.651200pt;}
._27{width:46.597120pt;}
._2a{width:48.687787pt;}
._28{width:50.076160pt;}
._2c{width:53.050880pt;}
._26{width:55.605760pt;}
._2b{width:59.056640pt;}
._23{width:60.162987pt;}
._20{width:63.872000pt;}
._1f{width:64.908800pt;}
._21{width:66.358187pt;}
._37{width:67.264000pt;}
._3a{width:68.916907pt;}
._2e{width:72.386560pt;}
._32{width:74.777600pt;}
._31{width:80.040960pt;}
._34{width:83.868160pt;}
._39{width:94.113280pt;}
._45{width:97.822720pt;}
._3e{width:107.125760pt;}
._43{width:119.703040pt;}
._44{width:136.212480pt;}
._1d{width:140.746240pt;}
._1c{width:141.688320pt;}
._25{width:146.634240pt;}
._40{width:155.089920pt;}
._41{width:156.728747pt;}
._42{width:165.770240pt;}
._18{width:197.742080pt;}
._30{width:214.581760pt;}
._1b{width:220.249600pt;}
._1a{width:221.145600pt;}
._17{width:234.475947pt;}
._3c{width:256.680960pt;}
._3d{width:288.339627pt;}
.fs4{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:3.194667pt;}
.ya1{bottom:3.200000pt;}
.ya3{bottom:3.240000pt;}
.y4{bottom:3.840000pt;}
.y2{bottom:4.480000pt;}
.yfa{bottom:9.280000pt;}
.ybc{bottom:19.840000pt;}
.y10d{bottom:19.866667pt;}
.yc7{bottom:20.154667pt;}
.yb6{bottom:20.160000pt;}
.yb8{bottom:20.186667pt;}
.ye7{bottom:20.200000pt;}
.yf9{bottom:25.920000pt;}
.y116{bottom:26.240000pt;}
.y111{bottom:26.266667pt;}
.y109{bottom:36.794667pt;}
.ybb{bottom:36.800000pt;}
.yc2{bottom:36.826667pt;}
.y131{bottom:36.840000pt;}
.yc6{bottom:37.114667pt;}
.yc0{bottom:37.120000pt;}
.ybe{bottom:37.160000pt;}
.y130{bottom:42.880000pt;}
.y103{bottom:42.920000pt;}
.yf7{bottom:53.760000pt;}
.y10b{bottom:53.800000pt;}
.y5{bottom:56.960000pt;}
.y3{bottom:59.520000pt;}
.yf8{bottom:59.840000pt;}
.y11c{bottom:70.400000pt;}
.y7{bottom:86.752000pt;}
.y11b{bottom:87.386667pt;}
.yc8{bottom:95.392000pt;}
.yeb{bottom:96.352000pt;}
.y5c{bottom:98.592000pt;}
.y108{bottom:99.232000pt;}
.y32{bottom:101.472000pt;}
.y14f{bottom:102.112000pt;}
.y11f{bottom:103.072000pt;}
.y139{bottom:103.392000pt;}
.y11a{bottom:104.346667pt;}
.y80{bottom:105.632000pt;}
.yea{bottom:113.952000pt;}
.y5b{bottom:115.552000pt;}
.y14e{bottom:119.072000pt;}
.y138{bottom:120.352000pt;}
.yc5{bottom:129.632000pt;}
.ye8{bottom:131.552000pt;}
.y9e{bottom:132.192000pt;}
.y5a{bottom:132.512000pt;}
.y14d{bottom:136.026667pt;}
.y31{bottom:136.986667pt;}
.y11e{bottom:137.626667pt;}
.y16d{bottom:140.826667pt;}
.y7f{bottom:141.146667pt;}
.y9d{bottom:149.146667pt;}
.y107{bottom:150.426667pt;}
.y14c{bottom:152.986667pt;}
.y30{bottom:153.946667pt;}
.y16c{bottom:157.786667pt;}
.y7e{bottom:158.106667pt;}
.ye6{bottom:166.426667pt;}
.y59{bottom:168.026667pt;}
.y14b{bottom:169.626667pt;}
.y2f{bottom:170.906667pt;}
.y11d{bottom:171.866667pt;}
.y7d{bottom:175.066667pt;}
.yc4{bottom:180.866667pt;}
.y9c{bottom:184.706667pt;}
.y2e{bottom:187.906667pt;}
.y137{bottom:189.506667pt;}
.y7c{bottom:192.066667pt;}
.y16b{bottom:193.346667pt;}
.y58{bottom:203.586667pt;}
.y2d{bottom:204.546667pt;}
.y9b{bottom:204.866667pt;}
.y14a{bottom:205.186667pt;}
.y119{bottom:206.466667pt;}
.y7b{bottom:209.026667pt;}
.y16a{bottom:210.306667pt;}
.yc3{bottom:215.426667pt;}
.ye5{bottom:221.186667pt;}
.y2c{bottom:221.506667pt;}
.y149{bottom:222.146667pt;}
.y136{bottom:223.106667pt;}
.y7a{bottom:225.666667pt;}
.y106{bottom:235.906667pt;}
.ye4{bottom:237.826667pt;}
.y2b{bottom:238.466667pt;}
.y57{bottom:238.786667pt;}
.y148{bottom:239.106667pt;}
.y135{bottom:240.066667pt;}
.y9a{bottom:240.706667pt;}
.y169{bottom:245.826667pt;}
.ye3{bottom:252.226667pt;}
.y2a{bottom:255.106667pt;}
.y56{bottom:255.746667pt;}
.y99{bottom:257.666667pt;}
.y79{bottom:261.186667pt;}
.y168{bottom:262.786667pt;}
.yc1{bottom:266.626667pt;}
.ye2{bottom:269.826667pt;}
.y105{bottom:270.466667pt;}
.y29{bottom:272.066667pt;}
.y55{bottom:272.706667pt;}
.y98{bottom:274.626667pt;}
.y134{bottom:275.586667pt;}
.y78{bottom:278.146667pt;}
.ye1{bottom:287.453333pt;}
.y28{bottom:289.053333pt;}
.y54{bottom:289.693333pt;}
.y133{bottom:290.013333pt;}
.y97{bottom:291.293333pt;}
.y77{bottom:295.133333pt;}
.y167{bottom:298.333333pt;}
.ye0{bottom:304.733333pt;}
.y147{bottom:308.253333pt;}
.y76{bottom:311.773333pt;}
.ybf{bottom:317.853333pt;}
.ydf{bottom:322.333333pt;}
.y132{bottom:324.253333pt;}
.y27{bottom:324.573333pt;}
.y53{bottom:325.213333pt;}
.y96{bottom:326.813333pt;}
.y75{bottom:328.733333pt;}
.y166{bottom:333.853333pt;}
.y104{bottom:339.293333pt;}
.yde{bottom:339.933333pt;}
.y52{bottom:342.173333pt;}
.y95{bottom:343.773333pt;}
.y74{bottom:345.693333pt;}
.y165{bottom:350.813333pt;}
.y102{bottom:356.893333pt;}
.ydd{bottom:357.533333pt;}
.y51{bottom:358.813333pt;}
.y118{bottom:359.453333pt;}
.y26{bottom:360.093333pt;}
.y94{bottom:360.733333pt;}
.y73{bottom:362.653333pt;}
.ybd{bottom:369.053333pt;}
.y50{bottom:375.773333pt;}
.y146{bottom:377.693333pt;}
.y72{bottom:379.293333pt;}
.y164{bottom:386.013333pt;}
.y4f{bottom:392.733333pt;}
.y117{bottom:393.693333pt;}
.y145{bottom:394.333333pt;}
.y25{bottom:395.613333pt;}
.y71{bottom:396.253333pt;}
.y163{bottom:403.013333pt;}
.y101{bottom:408.133333pt;}
.y144{bottom:411.333333pt;}
.ydc{bottom:411.973333pt;}
.y24{bottom:412.613333pt;}
.y70{bottom:413.253333pt;}
.yba{bottom:420.613333pt;}
.y12f{bottom:427.013333pt;}
.y4e{bottom:427.973333pt;}
.y115{bottom:428.293333pt;}
.ydb{bottom:428.933333pt;}
.y23{bottom:429.253333pt;}
.y93{bottom:429.893333pt;}
.y162{bottom:438.533333pt;}
.y100{bottom:442.373333pt;}
.yda{bottom:443.013333pt;}
.y22{bottom:446.213333pt;}
.y92{bottom:446.853333pt;}
.y6f{bottom:448.453333pt;}
.y161{bottom:455.493333pt;}
.yd9{bottom:460.613333pt;}
.y114{bottom:462.533333pt;}
.y21{bottom:463.173333pt;}
.y4d{bottom:463.493333pt;}
.y91{bottom:463.813333pt;}
.y6e{bottom:465.413333pt;}
.yb9{bottom:471.813333pt;}
.yff{bottom:476.933333pt;}
.yd8{bottom:478.213333pt;}
.y20{bottom:479.813333pt;}
.y4c{bottom:480.453333pt;}
.y6d{bottom:482.373333pt;}
.y160{bottom:491.013333pt;}
.yd7{bottom:495.813333pt;}
.y1f{bottom:496.773333pt;}
.y143{bottom:497.413333pt;}
.y6c{bottom:499.333333pt;}
.yb7{bottom:506.053333pt;}
.y15f{bottom:507.973333pt;}
.y12e{bottom:512.800000pt;}
.yd6{bottom:513.440000pt;}
.y1e{bottom:513.760000pt;}
.y113{bottom:514.080000pt;}
.y4b{bottom:516.000000pt;}
.y6b{bottom:516.320000pt;}
.y1d{bottom:530.720000pt;}
.yfe{bottom:531.360000pt;}
.y6a{bottom:532.960000pt;}
.yb5{bottom:540.640000pt;}
.y178{bottom:540.960000pt;}
.y15e{bottom:543.520000pt;}
.y1c{bottom:547.360000pt;}
.yd5{bottom:548.320000pt;}
.y90{bottom:549.920000pt;}
.y4a{bottom:551.520000pt;}
.y15d{bottom:560.480000pt;}
.y12d{bottom:564.000000pt;}
.y1b{bottom:564.320000pt;}
.yfd{bottom:564.960000pt;}
.y8f{bottom:566.880000pt;}
.y49{bottom:568.480000pt;}
.y177{bottom:576.480000pt;}
.yb4{bottom:578.080000pt;}
.yfc{bottom:579.360000pt;}
.y1a{bottom:581.280000pt;}
.yd4{bottom:582.880000pt;}
.y8e{bottom:583.520000pt;}
.y48{bottom:585.440000pt;}
.yb3{bottom:595.040000pt;}
.y15c{bottom:595.680000pt;}
.yfb{bottom:596.960000pt;}
.y19{bottom:597.920000pt;}
.y12c{bottom:598.240000pt;}
.y142{bottom:600.480000pt;}
.y112{bottom:602.080000pt;}
.y47{bottom:602.400000pt;}
.y69{bottom:604.000000pt;}
.yb2{bottom:612.000000pt;}
.y15b{bottom:612.640000pt;}
.y110{bottom:616.480000pt;}
.y8d{bottom:619.040000pt;}
.y68{bottom:620.960000pt;}
.yf6{bottom:631.546667pt;}
.y12b{bottom:632.826667pt;}
.y18{bottom:633.466667pt;}
.y8c{bottom:636.026667pt;}
.yd3{bottom:637.306667pt;}
.y46{bottom:637.626667pt;}
.y67{bottom:637.946667pt;}
.yb1{bottom:639.546667pt;}
.y176{bottom:647.546667pt;}
.y15a{bottom:648.186667pt;}
.y10f{bottom:651.066667pt;}
.y8b{bottom:652.986667pt;}
.yd2{bottom:654.266667pt;}
.y45{bottom:654.586667pt;}
.yb0{bottom:656.506667pt;}
.y175{bottom:664.506667pt;}
.y159{bottom:665.146667pt;}
.y12a{bottom:667.066667pt;}
.y141{bottom:669.626667pt;}
.y17{bottom:669.946667pt;}
.yd1{bottom:670.906667pt;}
.y44{bottom:671.546667pt;}
.yaf{bottom:673.466667pt;}
.yd0{bottom:685.306667pt;}
.y140{bottom:686.586667pt;}
.y16{bottom:686.906667pt;}
.y43{bottom:688.506667pt;}
.yae{bottom:690.106667pt;}
.yf5{bottom:699.386667pt;}
.y174{bottom:699.706667pt;}
.y158{bottom:700.666667pt;}
.y129{bottom:701.626667pt;}
.y13f{bottom:703.546667pt;}
.y42{bottom:705.466667pt;}
.yad{bottom:707.066667pt;}
.y173{bottom:716.666667pt;}
.yf4{bottom:716.986667pt;}
.y157{bottom:717.626667pt;}
.y13e{bottom:720.506667pt;}
.y41{bottom:722.106667pt;}
.y15{bottom:723.386667pt;}
.y8a{bottom:724.026667pt;}
.y128{bottom:735.906667pt;}
.ycf{bottom:736.546667pt;}
.y66{bottom:740.706667pt;}
.y89{bottom:741.026667pt;}
.y14{bottom:745.186667pt;}
.yf3{bottom:751.586667pt;}
.y172{bottom:752.226667pt;}
.y156{bottom:753.826667pt;}
.y13d{bottom:755.746667pt;}
.y40{bottom:757.666667pt;}
.yac{bottom:757.986667pt;}
.yf2{bottom:768.866667pt;}
.y171{bottom:769.186667pt;}
.y127{bottom:770.466667pt;}
.y10e{bottom:771.106667pt;}
.y13c{bottom:772.706667pt;}
.y3f{bottom:774.626667pt;}
.yab{bottom:774.946667pt;}
.y88{bottom:776.226667pt;}
.yce{bottom:787.746667pt;}
.y13b{bottom:789.666667pt;}
.y3e{bottom:791.586667pt;}
.y87{bottom:793.186667pt;}
.y13{bottom:794.786667pt;}
.yaa{bottom:802.146667pt;}
.yf1{bottom:803.426667pt;}
.y126{bottom:804.706667pt;}
.y13a{bottom:806.626667pt;}
.y3d{bottom:808.226667pt;}
.y86{bottom:810.146667pt;}
.y170{bottom:821.666667pt;}
.ycd{bottom:822.306667pt;}
.y155{bottom:823.266667pt;}
.y3c{bottom:825.186667pt;}
.y85{bottom:827.106667pt;}
.ya9{bottom:837.666667pt;}
.y10c{bottom:839.266667pt;}
.y3b{bottom:842.146667pt;}
.y65{bottom:843.746667pt;}
.y12{bottom:848.573333pt;}
.ya8{bottom:854.653333pt;}
.y125{bottom:856.573333pt;}
.y16f{bottom:857.213333pt;}
.y11{bottom:858.493333pt;}
.y3a{bottom:858.813333pt;}
.y84{bottom:860.733333pt;}
.ya7{bottom:871.613333pt;}
.yf0{bottom:872.253333pt;}
.ycc{bottom:873.533333pt;}
.y154{bottom:875.773333pt;}
.y83{bottom:877.693333pt;}
.y64{bottom:879.293333pt;}
.y10{bottom:880.893333pt;}
.ya6{bottom:888.573333pt;}
.y124{bottom:891.133333pt;}
.y153{bottom:892.733333pt;}
.y39{bottom:894.333333pt;}
.y82{bottom:894.653333pt;}
.y63{bottom:896.253333pt;}
.yf{bottom:899.773333pt;}
.ya5{bottom:905.533333pt;}
.yef{bottom:906.493333pt;}
.y10a{bottom:908.093333pt;}
.y152{bottom:909.693333pt;}
.y38{bottom:911.293333pt;}
.y62{bottom:913.213333pt;}
.ye{bottom:919.293333pt;}
.ycb{bottom:924.733333pt;}
.y151{bottom:926.333333pt;}
.y37{bottom:928.253333pt;}
.y81{bottom:929.853333pt;}
.y61{bottom:930.173333pt;}
.ya4{bottom:938.493333pt;}
.yd{bottom:938.813333pt;}
.yee{bottom:941.053333pt;}
.y150{bottom:943.293333pt;}
.y16e{bottom:944.893333pt;}
.y36{bottom:945.213333pt;}
.y123{bottom:945.533333pt;}
.y60{bottom:946.813333pt;}
.yc{bottom:954.173333pt;}
.ya2{bottom:955.773333pt;}
.yed{bottom:958.693333pt;}
.yca{bottom:959.333333pt;}
.y35{bottom:961.893333pt;}
.y122{bottom:962.533333pt;}
.y5f{bottom:963.813333pt;}
.yb{bottom:969.573333pt;}
.ya0{bottom:973.413333pt;}
.yec{bottom:976.293333pt;}
.y34{bottom:978.853333pt;}
.y121{bottom:979.493333pt;}
.y5e{bottom:980.773333pt;}
.ya{bottom:984.933333pt;}
.y120{bottom:993.573333pt;}
.y5d{bottom:997.413333pt;}
.y9{bottom:1000.293333pt;}
.yc9{bottom:1010.533333pt;}
.y9f{bottom:1013.093333pt;}
.y33{bottom:1014.373333pt;}
.y8{bottom:1015.653333pt;}
.y1{bottom:1056.293333pt;}
.y6{bottom:1072.000000pt;}
.h4{height:16.032000pt;}
.h14{height:16.640000pt;}
.h12{height:16.960000pt;}
.h13{height:16.992000pt;}
.h2{height:17.632000pt;}
.h9{height:20.409375pt;}
.h1e{height:32.570625pt;}
.h15{height:33.600000pt;}
.h1f{height:33.632000pt;}
.h1a{height:33.920000pt;}
.h16{height:33.952000pt;}
.h8{height:36.931250pt;}
.ha{height:40.818750pt;}
.h10{height:42.090000pt;}
.h5{height:42.678750pt;}
.h6{height:47.171250pt;}
.h17{height:50.560000pt;}
.h19{height:50.592000pt;}
.h25{height:50.880000pt;}
.h18{height:50.912000pt;}
.he{height:51.663750pt;}
.h26{height:51.807500pt;}
.hd{height:52.296250pt;}
.hf{height:56.062500pt;}
.h11{height:56.156250pt;}
.h1c{height:56.890625pt;}
.h20{height:56.997292pt;}
.h21{height:57.050625pt;}
.hc{height:59.849375pt;}
.h1b{height:59.956042pt;}
.h3{height:60.288750pt;}
.h7{height:65.531250pt;}
.hb{height:65.938750pt;}
.h1d{height:67.200000pt;}
.h22{height:67.232000pt;}
.h23{height:67.520000pt;}
.h24{height:117.792000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:30.432000pt;}
.wb{width:32.672000pt;}
.w4{width:33.600000pt;}
.w15{width:36.832000pt;}
.w1a{width:46.112000pt;}
.w12{width:78.752000pt;}
.w19{width:84.512000pt;}
.wd{width:87.392000pt;}
.w17{width:88.352000pt;}
.w9{width:92.544000pt;}
.w14{width:93.792000pt;}
.w7{width:94.432000pt;}
.wf{width:95.712000pt;}
.we{width:98.592000pt;}
.w13{width:103.392000pt;}
.wa{width:104.672000pt;}
.w8{width:111.712000pt;}
.w1c{width:112.032000pt;}
.w18{width:112.672000pt;}
.w1d{width:121.664000pt;}
.w3{width:126.784000pt;}
.w6{width:151.106667pt;}
.w1b{width:196.226667pt;}
.wc{width:202.306667pt;}
.w16{width:203.586667pt;}
.w11{width:212.866667pt;}
.w2{width:496.826667pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x5{left:4.160000pt;}
.xf{left:7.040000pt;}
.x1f{left:31.042667pt;}
.x3{left:93.152000pt;}
.x6{left:94.431988pt;}
.xb{left:103.711988pt;}
.xd{left:118.431988pt;}
.x18{left:126.144000pt;}
.x14{left:128.384000pt;}
.x1b{left:132.544000pt;}
.xe{left:142.466655pt;}
.x1{left:148.546667pt;}
.x7{left:194.626655pt;}
.xc{left:239.453322pt;}
.x10{left:246.813333pt;}
.xa{left:252.253322pt;}
.x9{left:316.613322pt;}
.x15{left:331.333333pt;}
.x1c{left:336.773333pt;}
.x19{left:339.653333pt;}
.x11{left:342.213333pt;}
.x8{left:343.173322pt;}
.x16{left:419.360000pt;}
.x1d{left:425.760000pt;}
.x20{left:427.040000pt;}
.x12{left:454.560000pt;}
.x17{left:518.586667pt;}
.x1a{left:523.066667pt;}
.x1e{left:539.066667pt;}
.x13{left:547.746667pt;}
.x21{left:624.866667pt;}
.x4{left:670.973333pt;}
}




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