
    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_7c0fc262616f96adc329bc05.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_891f54c657ee5c02c5f25279.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_f54abe2c728510c8fe39c1f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.911133;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_49d7d034d276cd5c462c10d6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_a9ee94d1511f44f36baffac9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128418;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_7315e04b27a4e219c30283f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.138184;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_5e50e2f7ea70873b07a288a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.902832;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_9bec43b46f86f92248abefdf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.891113;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_d1411d803ca2ee3bd95d69e7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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_d79672361d7269f0acaba749.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.891113;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_bccb728b7f98ccdb9c10d680.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.020508;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_bc21a3254ef6172a7c227c0a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.104980;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_6446c9b2890007acff802e2a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.906250;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_bed75b329eaf2952427dda03.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.902832;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_827dece9a7706c9872336247.woff2')format("woff");}.fff{font-family:fff;line-height:1.137695;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_ce9eeb99e33e3e2882121a28.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.106934;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_8c9923974a106b81dbb47872.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-30.240000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240000px;}
.v1{vertical-align:36.000000px;}
.v5{vertical-align:40.320000px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.003457px;}
.ls1d{letter-spacing:0.006049px;}
.ls9{letter-spacing:0.006913px;}
.lsb{letter-spacing:0.027649px;}
.ls37{letter-spacing:0.053569px;}
.ls27{letter-spacing:0.109729px;}
.ls6{letter-spacing:0.132193px;}
.ls25{letter-spacing:0.207360px;}
.ls1c{letter-spacing:0.236737px;}
.ls1{letter-spacing:0.237600px;}
.ls1e{letter-spacing:0.240194px;}
.ls2e{letter-spacing:0.247969px;}
.ls1a{letter-spacing:0.283393px;}
.ls35{letter-spacing:0.408673px;}
.ls2c{letter-spacing:0.457058px;}
.ls28{letter-spacing:0.470017px;}
.ls3a{letter-spacing:0.470018px;}
.lsc{letter-spacing:0.477793px;}
.ls0{letter-spacing:0.494209px;}
.ls10{letter-spacing:0.505442px;}
.ls39{letter-spacing:0.653186px;}
.ls2{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.724033px;}
.ls11{letter-spacing:0.724609px;}
.ls1f{letter-spacing:0.735266px;}
.lsf{letter-spacing:0.948673px;}
.ls18{letter-spacing:1.382400px;}
.lse{letter-spacing:1.443745px;}
.ls1b{letter-spacing:1.447201px;}
.lsd{letter-spacing:1.467937px;}
.ls12{letter-spacing:2.884033px;}
.ls8{letter-spacing:4.324321px;}
.ls13{letter-spacing:5.764609px;}
.ls19{letter-spacing:6.123457px;}
.ls38{letter-spacing:6.709825px;}
.lsa{letter-spacing:7.204897px;}
.ls14{letter-spacing:8.645185px;}
.ls16{letter-spacing:10.085473px;}
.ls15{letter-spacing:12.966049px;}
.ls5{letter-spacing:14.406337px;}
.ls32{letter-spacing:85.194725px;}
.ls34{letter-spacing:90.378725px;}
.ls36{letter-spacing:99.848165px;}
.ls31{letter-spacing:102.267365px;}
.ls30{letter-spacing:105.032165px;}
.ls2f{letter-spacing:106.138085px;}
.ls33{letter-spacing:107.174885px;}
.ls24{letter-spacing:118.321351px;}
.ls29{letter-spacing:123.505351px;}
.ls2a{letter-spacing:132.974791px;}
.ls22{letter-spacing:135.393991px;}
.ls21{letter-spacing:138.158791px;}
.ls20{letter-spacing:139.264711px;}
.ls26{letter-spacing:140.301511px;}
.ls2d{letter-spacing:163.749608px;}
.ls23{letter-spacing:179.592776px;}
.ls2b{letter-spacing:182.473353px;}
.ls17{letter-spacing:316.870286px;}
.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;}
}
.ws8{word-spacing:-69.120000px;}
.ws2{word-spacing:-19.440000px;}
.ws5{word-spacing:-17.280000px;}
.ws3{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.120000px;}
.ws6{word-spacing:-13.679850px;}
.ws1{word-spacing:-11.880000px;}
.ws7{word-spacing:-11.160000px;}
.ws4{word-spacing:0.000000px;}
.ws1b{word-spacing:126.291753px;}
.ws1c{word-spacing:142.120233px;}
.wsa{word-spacing:147.045903px;}
.ws14{word-spacing:148.486191px;}
.ws11{word-spacing:161.322633px;}
.ws20{word-spacing:165.193353px;}
.ws1e{word-spacing:173.786696px;}
.ws21{word-spacing:176.667273px;}
.wse{word-spacing:180.145746px;}
.ws1a{word-spacing:220.374443px;}
.ws10{word-spacing:231.353296px;}
.ws17{word-spacing:246.398996px;}
.ws19{word-spacing:271.681361px;}
.wsf{word-spacing:272.695693px;}
.wsc{word-spacing:298.149998px;}
.ws16{word-spacing:299.590286px;}
.ws12{word-spacing:317.344622px;}
.ws18{word-spacing:323.625039px;}
.wsb{word-spacing:336.489139px;}
.wsd{word-spacing:354.792112px;}
.ws15{word-spacing:375.376916px;}
.ws13{word-spacing:524.595774px;}
.ws9{word-spacing:538.998654px;}
.ws1f{word-spacing:659.145645px;}
.ws1d{word-spacing:662.026221px;}
.ws22{word-spacing:836.296748px;}
._4c{margin-left:-5.563973px;}
._c{margin-left:-4.068941px;}
._5{margin-left:-2.833809px;}
._1{margin-left:-1.461877px;}
._0{width:1.658892px;}
._2{width:3.151784px;}
._9{width:4.548151px;}
._8{width:6.254335px;}
._6{width:7.679197px;}
._4{width:8.717693px;}
._3{width:9.868577px;}
._7{width:10.920960px;}
._a{width:11.961318px;}
._b{width:13.097715px;}
._11{width:14.234904px;}
._12{width:15.287191px;}
._15{width:18.990480px;}
._16{width:20.362988px;}
._17{width:21.800543px;}
._e{width:23.569920px;}
._f{width:25.021440px;}
._d{width:26.206715px;}
._10{width:27.402558px;}
._13{width:28.876622px;}
._14{width:30.036174px;}
._4d{width:31.122373px;}
._3e{width:102.267365px;}
._3b{width:106.138085px;}
._42{width:107.174885px;}
._25{width:141.498153px;}
._22{width:143.571753px;}
._24{width:147.442473px;}
._33{width:150.539913px;}
._23{width:152.972073px;}
._2a{width:156.506696px;}
._27{width:160.377416px;}
._36{width:163.257993px;}
._31{width:178.602633px;}
._2d{width:182.473353px;}
._49{width:188.485804px;}
._1e{width:190.531886px;}
._39{width:193.947273px;}
._37{width:207.435183px;}
._44{width:211.295404px;}
._1f{width:219.955409px;}
._19{width:232.918001px;}
._47{width:243.564098px;}
._18{width:246.703121px;}
._2f{width:262.636875px;}
._48{width:267.569430px;}
._2c{width:280.528732px;}
._46{width:290.417101px;}
._4a{width:298.463088px;}
._1d{width:312.556068px;}
._41{width:342.336700px;}
._21{width:345.468676px;}
._4b{width:354.225218px;}
._1c{width:355.307919px;}
._3a{width:376.817112px;}
._1a{width:377.973233px;}
._43{width:379.820176px;}
._1b{width:400.228125px;}
._28{width:405.602878px;}
._3c{width:425.764418px;}
._45{width:471.452847px;}
._3f{width:474.977980px;}
._2e{width:476.276449px;}
._40{width:495.782978px;}
._35{width:506.965729px;}
._34{width:547.055452px;}
._3d{width:556.619046px;}
._32{width:583.743380px;}
._26{width:621.326520px;}
._2b{width:681.471388px;}
._30{width:695.939932px;}
._29{width:718.519708px;}
._38{width:738.532536px;}
._20{width:755.328704px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs9{font-size:44.640000px;}
.fs1{font-size:47.520000px;}
.fs4{font-size:50.400000px;}
.fs8{font-size:54.719400px;}
.fs0{font-size:60.480000px;}
.fs5{font-size:63.360000px;}
.fs2{font-size:69.120000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.yf1{bottom:3.960000px;}
.y3{bottom:327.600000px;}
.y21{bottom:369.360000px;}
.y11f{bottom:371.880000px;}
.yc2{bottom:372.600000px;}
.yef{bottom:373.320000px;}
.y48{bottom:375.120000px;}
.y94{bottom:376.200000px;}
.y110{bottom:378.720000px;}
.yb5{bottom:380.880000px;}
.y120{bottom:384.120000px;}
.y7d{bottom:387.000000px;}
.y20{bottom:387.360000px;}
.yc4{bottom:388.080000px;}
.y11e{bottom:392.040000px;}
.yc1{bottom:393.120000px;}
.yee{bottom:393.840000px;}
.y47{bottom:395.280000px;}
.y93{bottom:396.360000px;}
.y10f{bottom:398.880000px;}
.yb4{bottom:401.040000px;}
.ycb{bottom:404.280000px;}
.y1f{bottom:405.360000px;}
.y7c{bottom:407.160000px;}
.yd5{bottom:408.600000px;}
.y11d{bottom:412.200000px;}
.yc0{bottom:413.280000px;}
.yed{bottom:414.000000px;}
.y46{bottom:415.440000px;}
.y92{bottom:416.520000px;}
.y10e{bottom:419.040000px;}
.yb3{bottom:421.560000px;}
.y1e{bottom:423.360000px;}
.yca{bottom:424.440000px;}
.y7b{bottom:427.320000px;}
.yd4{bottom:429.120000px;}
.y11c{bottom:432.720000px;}
.ybf{bottom:433.440000px;}
.yec{bottom:434.160000px;}
.y45{bottom:435.600000px;}
.y91{bottom:437.040000px;}
.y10d{bottom:439.560000px;}
.yb2{bottom:441.720000px;}
.yc9{bottom:444.600000px;}
.y7a{bottom:447.840000px;}
.y1d{bottom:448.200000px;}
.yd3{bottom:449.280000px;}
.y11b{bottom:452.880000px;}
.ybe{bottom:453.600000px;}
.y67{bottom:456.120000px;}
.y90{bottom:457.200000px;}
.y10c{bottom:459.720000px;}
.y1c{bottom:460.080000px;}
.yb1{bottom:461.880000px;}
.yeb{bottom:464.400000px;}
.y44{bottom:465.120000px;}
.y79{bottom:468.000000px;}
.yd2{bottom:469.440000px;}
.y11a{bottom:473.040000px;}
.ybd{bottom:474.120000px;}
.y66{bottom:476.280000px;}
.y10b{bottom:479.880000px;}
.yb0{bottom:482.040000px;}
.y43{bottom:485.280000px;}
.y78{bottom:488.160000px;}
.y1b{bottom:489.600000px;}
.y119{bottom:493.200000px;}
.yea{bottom:493.560000px;}
.ybc{bottom:494.280000px;}
.y65{bottom:496.440000px;}
.y8f{bottom:497.880000px;}
.y10a{bottom:500.040000px;}
.yaf{bottom:502.560000px;}
.y42{bottom:505.440000px;}
.y77{bottom:508.320000px;}
.y1a{bottom:509.760000px;}
.yd1{bottom:510.120000px;}
.ye9{bottom:513.720000px;}
.ybb{bottom:514.440000px;}
.y64{bottom:516.600000px;}
.y8e{bottom:518.040000px;}
.yae{bottom:522.720000px;}
.y41{bottom:525.600000px;}
.y76{bottom:528.840000px;}
.y109{bottom:529.560000px;}
.y19{bottom:529.920000px;}
.yd0{bottom:530.280000px;}
.ye8{bottom:533.880000px;}
.yba{bottom:534.600000px;}
.y63{bottom:537.120000px;}
.y8d{bottom:538.560000px;}
.yad{bottom:542.880000px;}
.y40{bottom:546.120000px;}
.y75{bottom:549.000000px;}
.y108{bottom:549.720000px;}
.y18{bottom:550.440000px;}
.ye7{bottom:554.040000px;}
.yb9{bottom:555.120000px;}
.y62{bottom:557.280000px;}
.y8c{bottom:558.720000px;}
.yac{bottom:563.040000px;}
.y3f{bottom:566.280000px;}
.y74{bottom:569.160000px;}
.y107{bottom:569.880000px;}
.y17{bottom:570.600000px;}
.y118{bottom:574.200000px;}
.ye6{bottom:574.560000px;}
.yb8{bottom:575.280000px;}
.y61{bottom:577.440000px;}
.y8b{bottom:578.880000px;}
.yab{bottom:583.560000px;}
.y3e{bottom:586.440000px;}
.y73{bottom:589.320000px;}
.y106{bottom:590.040000px;}
.ycf{bottom:591.120000px;}
.ye5{bottom:594.720000px;}
.yb7{bottom:595.440000px;}
.y60{bottom:597.600000px;}
.y8a{bottom:599.040000px;}
.y16{bottom:599.760000px;}
.yaa{bottom:603.720000px;}
.y3d{bottom:606.600000px;}
.y72{bottom:610.200000px;}
.y105{bottom:610.560000px;}
.yce{bottom:611.280000px;}
.ye4{bottom:614.880000px;}
.yb6{bottom:615.600000px;}
.y5f{bottom:618.120000px;}
.y89{bottom:619.560000px;}
.ya9{bottom:623.880000px;}
.y3c{bottom:627.120000px;}
.y104{bottom:630.720000px;}
.ycd{bottom:631.440000px;}
.y117{bottom:635.040000px;}
.y71{bottom:636.120000px;}
.y5e{bottom:638.280000px;}
.y88{bottom:639.720000px;}
.y15{bottom:640.440000px;}
.ya8{bottom:644.040000px;}
.y3b{bottom:647.280000px;}
.y103{bottom:650.880000px;}
.y116{bottom:655.200000px;}
.ye3{bottom:655.560000px;}
.y70{bottom:656.280000px;}
.y5d{bottom:658.440000px;}
.y14{bottom:660.600000px;}
.ya7{bottom:664.560000px;}
.y3a{bottom:667.440000px;}
.y87{bottom:668.880000px;}
.y102{bottom:671.040000px;}
.ye2{bottom:675.720000px;}
.y6f{bottom:676.440000px;}
.y5c{bottom:678.600000px;}
.y13{bottom:680.760000px;}
.ycc{bottom:683.280000px;}
.ya6{bottom:684.720000px;}
.y39{bottom:687.600000px;}
.y86{bottom:689.040000px;}
.y101{bottom:691.560000px;}
.ye1{bottom:695.880000px;}
.y6e{bottom:696.600000px;}
.y5b{bottom:699.120000px;}
.y12{bottom:700.920000px;}
.ya5{bottom:704.880000px;}
.y38{bottom:708.120000px;}
.y85{bottom:709.560000px;}
.ye0{bottom:716.040000px;}
.y6d{bottom:717.120000px;}
.yc3{bottom:718.200000px;}
.y5a{bottom:719.280000px;}
.y100{bottom:720.720000px;}
.y11{bottom:721.440000px;}
.ya4{bottom:725.040000px;}
.y37{bottom:728.280000px;}
.y84{bottom:729.720000px;}
.y115{bottom:736.200000px;}
.y6c{bottom:737.280000px;}
.y59{bottom:739.440000px;}
.yff{bottom:740.880000px;}
.y10{bottom:741.600000px;}
.ya3{bottom:745.560000px;}
.y36{bottom:748.440000px;}
.y83{bottom:749.880000px;}
.y114{bottom:756.720000px;}
.y6b{bottom:757.440000px;}
.y58{bottom:759.600000px;}
.yfe{bottom:761.040000px;}
.yf{bottom:761.760000px;}
.ya2{bottom:765.720000px;}
.y35{bottom:768.600000px;}
.y113{bottom:776.880000px;}
.y6a{bottom:777.600000px;}
.y57{bottom:780.120000px;}
.yfd{bottom:781.560000px;}
.ye{bottom:781.920000px;}
.ya1{bottom:785.880000px;}
.y82{bottom:788.760000px;}
.y34{bottom:789.120000px;}
.y112{bottom:797.040000px;}
.y69{bottom:798.120000px;}
.y56{bottom:800.280000px;}
.yfc{bottom:801.720000px;}
.yd{bottom:802.440000px;}
.ya0{bottom:806.040000px;}
.y81{bottom:808.920000px;}
.y33{bottom:809.280000px;}
.y68{bottom:818.280000px;}
.y55{bottom:820.440000px;}
.yfb{bottom:821.880000px;}
.yc{bottom:822.600000px;}
.ydf{bottom:826.560000px;}
.y80{bottom:829.080000px;}
.yc8{bottom:829.440000px;}
.y9f{bottom:833.040000px;}
.y111{bottom:838.080000px;}
.y32{bottom:838.440000px;}
.y54{bottom:840.600000px;}
.yfa{bottom:842.040000px;}
.yb{bottom:842.760000px;}
.yde{bottom:846.720000px;}
.y7f{bottom:849.240000px;}
.yc7{bottom:849.600000px;}
.y31{bottom:858.600000px;}
.y53{bottom:861.120000px;}
.yf9{bottom:862.560000px;}
.ya{bottom:862.920000px;}
.ydd{bottom:866.880000px;}
.y7e{bottom:869.760000px;}
.yc6{bottom:870.120000px;}
.y9e{bottom:873.000000px;}
.yf8{bottom:878.760000px;}
.y30{bottom:879.120000px;}
.y52{bottom:881.280000px;}
.yf7{bottom:882.720000px;}
.y9{bottom:883.440000px;}
.ydc{bottom:887.040000px;}
.yc5{bottom:890.280000px;}
.y9d{bottom:893.160000px;}
.y2f{bottom:899.280000px;}
.yf6{bottom:902.880000px;}
.y8{bottom:903.600000px;}
.ydb{bottom:907.560000px;}
.y51{bottom:910.440000px;}
.y9c{bottom:913.320000px;}
.y2e{bottom:919.440000px;}
.yf5{bottom:923.400000px;}
.y7{bottom:923.760000px;}
.yda{bottom:927.720000px;}
.y50{bottom:930.600000px;}
.y9b{bottom:933.840000px;}
.y2d{bottom:939.600000px;}
.yf4{bottom:943.560000px;}
.y6{bottom:943.920000px;}
.yd9{bottom:947.880000px;}
.y4f{bottom:951.120000px;}
.y9a{bottom:954.000000px;}
.y2c{bottom:960.120000px;}
.yd8{bottom:968.400000px;}
.y4e{bottom:971.280000px;}
.yf3{bottom:973.800000px;}
.y99{bottom:974.160000px;}
.y2b{bottom:980.280000px;}
.y4d{bottom:991.440000px;}
.y98{bottom:994.320000px;}
.yd7{bottom:998.280000px;}
.y2a{bottom:1000.440000px;}
.yf2{bottom:1002.600000px;}
.y5{bottom:1005.840000px;}
.y4c{bottom:1011.600000px;}
.y97{bottom:1014.840000px;}
.y29{bottom:1020.600000px;}
.yd6{bottom:1027.800000px;}
.y4b{bottom:1032.120000px;}
.y96{bottom:1035.000000px;}
.y28{bottom:1041.120000px;}
.y4a{bottom:1052.280000px;}
.y4{bottom:1053.720000px;}
.y95{bottom:1055.520000px;}
.yf0{bottom:1057.320000px;}
.y27{bottom:1061.280000px;}
.y49{bottom:1072.440000px;}
.y26{bottom:1081.440000px;}
.y25{bottom:1101.600000px;}
.y24{bottom:1122.120000px;}
.y23{bottom:1142.280000px;}
.y2{bottom:1165.320000px;}
.y1{bottom:1186.200000px;}
.y22{bottom:1194.120000px;}
.hf{height:19.440000px;}
.h10{height:20.160000px;}
.h7{height:34.114922px;}
.h8{height:41.993438px;}
.h5{height:47.317500px;}
.he{height:47.992500px;}
.h1{height:53.067656px;}
.h4{height:53.232188px;}
.h2{height:60.648750px;}
.ha{height:61.235156px;}
.h9{height:61.593750px;}
.hd{height:61.661250px;}
.h6{height:63.175781px;}
.hb{height:69.408984px;}
.h3{height:70.502344px;}
.hc{height:109.728984px;}
.h0{height:1263.000000px;}
.w5{width:7.200000px;}
.w7{width:8.279850px;}
.w9{width:17.640000px;}
.w2{width:18.360000px;}
.w8{width:23.760000px;}
.wa{width:32.040000px;}
.w6{width:33.480000px;}
.wb{width:36.359850px;}
.w4{width:54.000000px;}
.wc{width:56.520000px;}
.w3{width:62.640000px;}
.w1{width:95.400000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x21{left:1.440000px;}
.x8{left:267.840000px;}
.x9{left:272.160000px;}
.x1{left:277.560000px;}
.x7{left:289.080000px;}
.xb{left:294.480000px;}
.x15{left:302.040000px;}
.xe{left:305.640000px;}
.x10{left:307.440000px;}
.x11{left:327.240000px;}
.x12{left:331.560000px;}
.x5{left:346.320000px;}
.x16{left:397.440000px;}
.xd{left:401.400000px;}
.xf{left:412.920000px;}
.x17{left:415.800000px;}
.xc{left:449.280000px;}
.xa{left:454.680000px;}
.x6{left:462.240000px;}
.x18{left:478.440000px;}
.x23{left:500.760000px;}
.x24{left:531.360000px;}
.x19{left:544.320000px;}
.x13{left:570.600000px;}
.x2{left:574.560000px;}
.x1a{left:578.520000px;}
.x1b{left:585.000000px;}
.x1c{left:618.120000px;}
.x14{left:623.160000px;}
.x1d{left:625.680000px;}
.x1e{left:649.440000px;}
.x1f{left:667.080000px;}
.x25{left:673.920000px;}
.x3{left:691.920000px;}
.x20{left:697.680000px;}
.x22{left:734.040000px;}
.x4{left:786.240000px;}
@media print{
.v4{vertical-align:-26.880000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880000pt;}
.v1{vertical-align:32.000000pt;}
.v5{vertical-align:35.840000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.003073pt;}
.ls1d{letter-spacing:0.005377pt;}
.ls9{letter-spacing:0.006145pt;}
.lsb{letter-spacing:0.024577pt;}
.ls37{letter-spacing:0.047617pt;}
.ls27{letter-spacing:0.097537pt;}
.ls6{letter-spacing:0.117505pt;}
.ls25{letter-spacing:0.184320pt;}
.ls1c{letter-spacing:0.210433pt;}
.ls1{letter-spacing:0.211200pt;}
.ls1e{letter-spacing:0.213506pt;}
.ls2e{letter-spacing:0.220417pt;}
.ls1a{letter-spacing:0.251905pt;}
.ls35{letter-spacing:0.363265pt;}
.ls2c{letter-spacing:0.406273pt;}
.ls28{letter-spacing:0.417793pt;}
.ls3a{letter-spacing:0.417794pt;}
.lsc{letter-spacing:0.424705pt;}
.ls0{letter-spacing:0.439297pt;}
.ls10{letter-spacing:0.449282pt;}
.ls39{letter-spacing:0.580609pt;}
.ls2{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.643585pt;}
.ls11{letter-spacing:0.644097pt;}
.ls1f{letter-spacing:0.653570pt;}
.lsf{letter-spacing:0.843265pt;}
.ls18{letter-spacing:1.228800pt;}
.lse{letter-spacing:1.283329pt;}
.ls1b{letter-spacing:1.286401pt;}
.lsd{letter-spacing:1.304833pt;}
.ls12{letter-spacing:2.563585pt;}
.ls8{letter-spacing:3.843841pt;}
.ls13{letter-spacing:5.124097pt;}
.ls19{letter-spacing:5.443073pt;}
.ls38{letter-spacing:5.964289pt;}
.lsa{letter-spacing:6.404353pt;}
.ls14{letter-spacing:7.684609pt;}
.ls16{letter-spacing:8.964865pt;}
.ls15{letter-spacing:11.525377pt;}
.ls5{letter-spacing:12.805633pt;}
.ls32{letter-spacing:75.728645pt;}
.ls34{letter-spacing:80.336645pt;}
.ls36{letter-spacing:88.753925pt;}
.ls31{letter-spacing:90.904325pt;}
.ls30{letter-spacing:93.361925pt;}
.ls2f{letter-spacing:94.344965pt;}
.ls33{letter-spacing:95.266565pt;}
.ls24{letter-spacing:105.174534pt;}
.ls29{letter-spacing:109.782534pt;}
.ls2a{letter-spacing:118.199814pt;}
.ls22{letter-spacing:120.350214pt;}
.ls21{letter-spacing:122.807814pt;}
.ls20{letter-spacing:123.790854pt;}
.ls26{letter-spacing:124.712454pt;}
.ls2d{letter-spacing:145.555207pt;}
.ls23{letter-spacing:159.638023pt;}
.ls2b{letter-spacing:162.198536pt;}
.ls17{letter-spacing:281.662476pt;}
.ws8{word-spacing:-61.440000pt;}
.ws2{word-spacing:-17.280000pt;}
.ws5{word-spacing:-15.360000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws6{word-spacing:-12.159867pt;}
.ws1{word-spacing:-10.560000pt;}
.ws7{word-spacing:-9.920000pt;}
.ws4{word-spacing:0.000000pt;}
.ws1b{word-spacing:112.259336pt;}
.ws1c{word-spacing:126.329096pt;}
.wsa{word-spacing:130.707469pt;}
.ws14{word-spacing:131.987725pt;}
.ws11{word-spacing:143.397896pt;}
.ws20{word-spacing:146.838536pt;}
.ws1e{word-spacing:154.477063pt;}
.ws21{word-spacing:157.037576pt;}
.wse{word-spacing:160.129552pt;}
.ws1a{word-spacing:195.888394pt;}
.ws10{word-spacing:205.647374pt;}
.ws17{word-spacing:219.021330pt;}
.ws19{word-spacing:241.494543pt;}
.wsf{word-spacing:242.396171pt;}
.wsc{word-spacing:265.022220pt;}
.ws16{word-spacing:266.302476pt;}
.ws12{word-spacing:282.084109pt;}
.ws18{word-spacing:287.666701pt;}
.wsb{word-spacing:299.101457pt;}
.wsd{word-spacing:315.370766pt;}
.ws15{word-spacing:333.668370pt;}
.ws13{word-spacing:466.307354pt;}
.ws9{word-spacing:479.109915pt;}
.ws1f{word-spacing:585.907240pt;}
.ws1d{word-spacing:588.467752pt;}
.ws22{word-spacing:743.374887pt;}
._4c{margin-left:-4.945754pt;}
._c{margin-left:-3.616836pt;}
._5{margin-left:-2.518942pt;}
._1{margin-left:-1.299447pt;}
._0{width:1.474570pt;}
._2{width:2.801585pt;}
._9{width:4.042801pt;}
._8{width:5.559408pt;}
._6{width:6.825952pt;}
._4{width:7.749060pt;}
._3{width:8.772069pt;}
._7{width:9.707520pt;}
._a{width:10.632283pt;}
._b{width:11.642413pt;}
._11{width:12.653248pt;}
._12{width:13.588614pt;}
._15{width:16.880427pt;}
._16{width:18.100434pt;}
._17{width:19.378261pt;}
._e{width:20.951040pt;}
._f{width:22.241280pt;}
._d{width:23.294858pt;}
._10{width:24.357829pt;}
._13{width:25.668109pt;}
._14{width:26.698821pt;}
._4d{width:27.664332pt;}
._3e{width:90.904325pt;}
._3b{width:94.344965pt;}
._42{width:95.266565pt;}
._25{width:125.776136pt;}
._22{width:127.619336pt;}
._24{width:131.059976pt;}
._33{width:133.813256pt;}
._23{width:135.975176pt;}
._2a{width:139.117063pt;}
._27{width:142.557703pt;}
._36{width:145.118216pt;}
._31{width:158.757896pt;}
._2d{width:162.198536pt;}
._49{width:167.542937pt;}
._1e{width:169.361677pt;}
._39{width:172.397576pt;}
._37{width:184.386829pt;}
._44{width:187.818137pt;}
._1f{width:195.515919pt;}
._19{width:207.038224pt;}
._47{width:216.501420pt;}
._18{width:219.291663pt;}
._2f{width:233.455000pt;}
._48{width:237.839493pt;}
._2c{width:249.358872pt;}
._46{width:258.148534pt;}
._4a{width:265.300523pt;}
._1d{width:277.827616pt;}
._41{width:304.299289pt;}
._21{width:307.083267pt;}
._4b{width:314.866860pt;}
._1c{width:315.829262pt;}
._3a{width:334.948544pt;}
._1a{width:335.976207pt;}
._43{width:337.617934pt;}
._1b{width:355.758333pt;}
._28{width:360.535891pt;}
._3c{width:378.457260pt;}
._45{width:419.069198pt;}
._3f{width:422.202649pt;}
._2e{width:423.356844pt;}
._40{width:440.695980pt;}
._35{width:450.636204pt;}
._34{width:486.271512pt;}
._3d{width:494.772485pt;}
._32{width:518.883005pt;}
._26{width:552.290240pt;}
._2b{width:605.752345pt;}
._30{width:618.613272pt;}
._29{width:638.684185pt;}
._38{width:656.473365pt;}
._20{width:671.403292pt;}
.fs7{font-size:34.560000pt;}
.fs9{font-size:39.680000pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:44.800000pt;}
.fs8{font-size:48.639467pt;}
.fs0{font-size:53.760000pt;}
.fs5{font-size:56.320000pt;}
.fs2{font-size:61.440000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.yf1{bottom:3.520000pt;}
.y3{bottom:291.200000pt;}
.y21{bottom:328.320000pt;}
.y11f{bottom:330.560000pt;}
.yc2{bottom:331.200000pt;}
.yef{bottom:331.840000pt;}
.y48{bottom:333.440000pt;}
.y94{bottom:334.400000pt;}
.y110{bottom:336.640000pt;}
.yb5{bottom:338.560000pt;}
.y120{bottom:341.440000pt;}
.y7d{bottom:344.000000pt;}
.y20{bottom:344.320000pt;}
.yc4{bottom:344.960000pt;}
.y11e{bottom:348.480000pt;}
.yc1{bottom:349.440000pt;}
.yee{bottom:350.080000pt;}
.y47{bottom:351.360000pt;}
.y93{bottom:352.320000pt;}
.y10f{bottom:354.560000pt;}
.yb4{bottom:356.480000pt;}
.ycb{bottom:359.360000pt;}
.y1f{bottom:360.320000pt;}
.y7c{bottom:361.920000pt;}
.yd5{bottom:363.200000pt;}
.y11d{bottom:366.400000pt;}
.yc0{bottom:367.360000pt;}
.yed{bottom:368.000000pt;}
.y46{bottom:369.280000pt;}
.y92{bottom:370.240000pt;}
.y10e{bottom:372.480000pt;}
.yb3{bottom:374.720000pt;}
.y1e{bottom:376.320000pt;}
.yca{bottom:377.280000pt;}
.y7b{bottom:379.840000pt;}
.yd4{bottom:381.440000pt;}
.y11c{bottom:384.640000pt;}
.ybf{bottom:385.280000pt;}
.yec{bottom:385.920000pt;}
.y45{bottom:387.200000pt;}
.y91{bottom:388.480000pt;}
.y10d{bottom:390.720000pt;}
.yb2{bottom:392.640000pt;}
.yc9{bottom:395.200000pt;}
.y7a{bottom:398.080000pt;}
.y1d{bottom:398.400000pt;}
.yd3{bottom:399.360000pt;}
.y11b{bottom:402.560000pt;}
.ybe{bottom:403.200000pt;}
.y67{bottom:405.440000pt;}
.y90{bottom:406.400000pt;}
.y10c{bottom:408.640000pt;}
.y1c{bottom:408.960000pt;}
.yb1{bottom:410.560000pt;}
.yeb{bottom:412.800000pt;}
.y44{bottom:413.440000pt;}
.y79{bottom:416.000000pt;}
.yd2{bottom:417.280000pt;}
.y11a{bottom:420.480000pt;}
.ybd{bottom:421.440000pt;}
.y66{bottom:423.360000pt;}
.y10b{bottom:426.560000pt;}
.yb0{bottom:428.480000pt;}
.y43{bottom:431.360000pt;}
.y78{bottom:433.920000pt;}
.y1b{bottom:435.200000pt;}
.y119{bottom:438.400000pt;}
.yea{bottom:438.720000pt;}
.ybc{bottom:439.360000pt;}
.y65{bottom:441.280000pt;}
.y8f{bottom:442.560000pt;}
.y10a{bottom:444.480000pt;}
.yaf{bottom:446.720000pt;}
.y42{bottom:449.280000pt;}
.y77{bottom:451.840000pt;}
.y1a{bottom:453.120000pt;}
.yd1{bottom:453.440000pt;}
.ye9{bottom:456.640000pt;}
.ybb{bottom:457.280000pt;}
.y64{bottom:459.200000pt;}
.y8e{bottom:460.480000pt;}
.yae{bottom:464.640000pt;}
.y41{bottom:467.200000pt;}
.y76{bottom:470.080000pt;}
.y109{bottom:470.720000pt;}
.y19{bottom:471.040000pt;}
.yd0{bottom:471.360000pt;}
.ye8{bottom:474.560000pt;}
.yba{bottom:475.200000pt;}
.y63{bottom:477.440000pt;}
.y8d{bottom:478.720000pt;}
.yad{bottom:482.560000pt;}
.y40{bottom:485.440000pt;}
.y75{bottom:488.000000pt;}
.y108{bottom:488.640000pt;}
.y18{bottom:489.280000pt;}
.ye7{bottom:492.480000pt;}
.yb9{bottom:493.440000pt;}
.y62{bottom:495.360000pt;}
.y8c{bottom:496.640000pt;}
.yac{bottom:500.480000pt;}
.y3f{bottom:503.360000pt;}
.y74{bottom:505.920000pt;}
.y107{bottom:506.560000pt;}
.y17{bottom:507.200000pt;}
.y118{bottom:510.400000pt;}
.ye6{bottom:510.720000pt;}
.yb8{bottom:511.360000pt;}
.y61{bottom:513.280000pt;}
.y8b{bottom:514.560000pt;}
.yab{bottom:518.720000pt;}
.y3e{bottom:521.280000pt;}
.y73{bottom:523.840000pt;}
.y106{bottom:524.480000pt;}
.ycf{bottom:525.440000pt;}
.ye5{bottom:528.640000pt;}
.yb7{bottom:529.280000pt;}
.y60{bottom:531.200000pt;}
.y8a{bottom:532.480000pt;}
.y16{bottom:533.120000pt;}
.yaa{bottom:536.640000pt;}
.y3d{bottom:539.200000pt;}
.y72{bottom:542.400000pt;}
.y105{bottom:542.720000pt;}
.yce{bottom:543.360000pt;}
.ye4{bottom:546.560000pt;}
.yb6{bottom:547.200000pt;}
.y5f{bottom:549.440000pt;}
.y89{bottom:550.720000pt;}
.ya9{bottom:554.560000pt;}
.y3c{bottom:557.440000pt;}
.y104{bottom:560.640000pt;}
.ycd{bottom:561.280000pt;}
.y117{bottom:564.480000pt;}
.y71{bottom:565.440000pt;}
.y5e{bottom:567.360000pt;}
.y88{bottom:568.640000pt;}
.y15{bottom:569.280000pt;}
.ya8{bottom:572.480000pt;}
.y3b{bottom:575.360000pt;}
.y103{bottom:578.560000pt;}
.y116{bottom:582.400000pt;}
.ye3{bottom:582.720000pt;}
.y70{bottom:583.360000pt;}
.y5d{bottom:585.280000pt;}
.y14{bottom:587.200000pt;}
.ya7{bottom:590.720000pt;}
.y3a{bottom:593.280000pt;}
.y87{bottom:594.560000pt;}
.y102{bottom:596.480000pt;}
.ye2{bottom:600.640000pt;}
.y6f{bottom:601.280000pt;}
.y5c{bottom:603.200000pt;}
.y13{bottom:605.120000pt;}
.ycc{bottom:607.360000pt;}
.ya6{bottom:608.640000pt;}
.y39{bottom:611.200000pt;}
.y86{bottom:612.480000pt;}
.y101{bottom:614.720000pt;}
.ye1{bottom:618.560000pt;}
.y6e{bottom:619.200000pt;}
.y5b{bottom:621.440000pt;}
.y12{bottom:623.040000pt;}
.ya5{bottom:626.560000pt;}
.y38{bottom:629.440000pt;}
.y85{bottom:630.720000pt;}
.ye0{bottom:636.480000pt;}
.y6d{bottom:637.440000pt;}
.yc3{bottom:638.400000pt;}
.y5a{bottom:639.360000pt;}
.y100{bottom:640.640000pt;}
.y11{bottom:641.280000pt;}
.ya4{bottom:644.480000pt;}
.y37{bottom:647.360000pt;}
.y84{bottom:648.640000pt;}
.y115{bottom:654.400000pt;}
.y6c{bottom:655.360000pt;}
.y59{bottom:657.280000pt;}
.yff{bottom:658.560000pt;}
.y10{bottom:659.200000pt;}
.ya3{bottom:662.720000pt;}
.y36{bottom:665.280000pt;}
.y83{bottom:666.560000pt;}
.y114{bottom:672.640000pt;}
.y6b{bottom:673.280000pt;}
.y58{bottom:675.200000pt;}
.yfe{bottom:676.480000pt;}
.yf{bottom:677.120000pt;}
.ya2{bottom:680.640000pt;}
.y35{bottom:683.200000pt;}
.y113{bottom:690.560000pt;}
.y6a{bottom:691.200000pt;}
.y57{bottom:693.440000pt;}
.yfd{bottom:694.720000pt;}
.ye{bottom:695.040000pt;}
.ya1{bottom:698.560000pt;}
.y82{bottom:701.120000pt;}
.y34{bottom:701.440000pt;}
.y112{bottom:708.480000pt;}
.y69{bottom:709.440000pt;}
.y56{bottom:711.360000pt;}
.yfc{bottom:712.640000pt;}
.yd{bottom:713.280000pt;}
.ya0{bottom:716.480000pt;}
.y81{bottom:719.040000pt;}
.y33{bottom:719.360000pt;}
.y68{bottom:727.360000pt;}
.y55{bottom:729.280000pt;}
.yfb{bottom:730.560000pt;}
.yc{bottom:731.200000pt;}
.ydf{bottom:734.720000pt;}
.y80{bottom:736.960000pt;}
.yc8{bottom:737.280000pt;}
.y9f{bottom:740.480000pt;}
.y111{bottom:744.960000pt;}
.y32{bottom:745.280000pt;}
.y54{bottom:747.200000pt;}
.yfa{bottom:748.480000pt;}
.yb{bottom:749.120000pt;}
.yde{bottom:752.640000pt;}
.y7f{bottom:754.880000pt;}
.yc7{bottom:755.200000pt;}
.y31{bottom:763.200000pt;}
.y53{bottom:765.440000pt;}
.yf9{bottom:766.720000pt;}
.ya{bottom:767.040000pt;}
.ydd{bottom:770.560000pt;}
.y7e{bottom:773.120000pt;}
.yc6{bottom:773.440000pt;}
.y9e{bottom:776.000000pt;}
.yf8{bottom:781.120000pt;}
.y30{bottom:781.440000pt;}
.y52{bottom:783.360000pt;}
.yf7{bottom:784.640000pt;}
.y9{bottom:785.280000pt;}
.ydc{bottom:788.480000pt;}
.yc5{bottom:791.360000pt;}
.y9d{bottom:793.920000pt;}
.y2f{bottom:799.360000pt;}
.yf6{bottom:802.560000pt;}
.y8{bottom:803.200000pt;}
.ydb{bottom:806.720000pt;}
.y51{bottom:809.280000pt;}
.y9c{bottom:811.840000pt;}
.y2e{bottom:817.280000pt;}
.yf5{bottom:820.800000pt;}
.y7{bottom:821.120000pt;}
.yda{bottom:824.640000pt;}
.y50{bottom:827.200000pt;}
.y9b{bottom:830.080000pt;}
.y2d{bottom:835.200000pt;}
.yf4{bottom:838.720000pt;}
.y6{bottom:839.040000pt;}
.yd9{bottom:842.560000pt;}
.y4f{bottom:845.440000pt;}
.y9a{bottom:848.000000pt;}
.y2c{bottom:853.440000pt;}
.yd8{bottom:860.800000pt;}
.y4e{bottom:863.360000pt;}
.yf3{bottom:865.600000pt;}
.y99{bottom:865.920000pt;}
.y2b{bottom:871.360000pt;}
.y4d{bottom:881.280000pt;}
.y98{bottom:883.840000pt;}
.yd7{bottom:887.360000pt;}
.y2a{bottom:889.280000pt;}
.yf2{bottom:891.200000pt;}
.y5{bottom:894.080000pt;}
.y4c{bottom:899.200000pt;}
.y97{bottom:902.080000pt;}
.y29{bottom:907.200000pt;}
.yd6{bottom:913.600000pt;}
.y4b{bottom:917.440000pt;}
.y96{bottom:920.000000pt;}
.y28{bottom:925.440000pt;}
.y4a{bottom:935.360000pt;}
.y4{bottom:936.640000pt;}
.y95{bottom:938.240000pt;}
.yf0{bottom:939.840000pt;}
.y27{bottom:943.360000pt;}
.y49{bottom:953.280000pt;}
.y26{bottom:961.280000pt;}
.y25{bottom:979.200000pt;}
.y24{bottom:997.440000pt;}
.y23{bottom:1015.360000pt;}
.y2{bottom:1035.840000pt;}
.y1{bottom:1054.400000pt;}
.y22{bottom:1061.440000pt;}
.hf{height:17.280000pt;}
.h10{height:17.920000pt;}
.h7{height:30.324375pt;}
.h8{height:37.327500pt;}
.h5{height:42.060000pt;}
.he{height:42.660000pt;}
.h1{height:47.171250pt;}
.h4{height:47.317500pt;}
.h2{height:53.910000pt;}
.ha{height:54.431250pt;}
.h9{height:54.750000pt;}
.hd{height:54.810000pt;}
.h6{height:56.156250pt;}
.hb{height:61.696875pt;}
.h3{height:62.668750pt;}
.hc{height:97.536875pt;}
.h0{height:1122.666667pt;}
.w5{width:6.400000pt;}
.w7{width:7.359867pt;}
.w9{width:15.680000pt;}
.w2{width:16.320000pt;}
.w8{width:21.120000pt;}
.wa{width:28.480000pt;}
.w6{width:29.760000pt;}
.wb{width:32.319867pt;}
.w4{width:48.000000pt;}
.wc{width:50.240000pt;}
.w3{width:55.680000pt;}
.w1{width:84.800000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x21{left:1.280000pt;}
.x8{left:238.080000pt;}
.x9{left:241.920000pt;}
.x1{left:246.720000pt;}
.x7{left:256.960000pt;}
.xb{left:261.760000pt;}
.x15{left:268.480000pt;}
.xe{left:271.680000pt;}
.x10{left:273.280000pt;}
.x11{left:290.880000pt;}
.x12{left:294.720000pt;}
.x5{left:307.840000pt;}
.x16{left:353.280000pt;}
.xd{left:356.800000pt;}
.xf{left:367.040000pt;}
.x17{left:369.600000pt;}
.xc{left:399.360000pt;}
.xa{left:404.160000pt;}
.x6{left:410.880000pt;}
.x18{left:425.280000pt;}
.x23{left:445.120000pt;}
.x24{left:472.320000pt;}
.x19{left:483.840000pt;}
.x13{left:507.200000pt;}
.x2{left:510.720000pt;}
.x1a{left:514.240000pt;}
.x1b{left:520.000000pt;}
.x1c{left:549.440000pt;}
.x14{left:553.920000pt;}
.x1d{left:556.160000pt;}
.x1e{left:577.280000pt;}
.x1f{left:592.960000pt;}
.x25{left:599.040000pt;}
.x3{left:615.040000pt;}
.x20{left:620.160000pt;}
.x22{left:652.480000pt;}
.x4{left:698.880000pt;}
}




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