
    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_539eb1a710b051caed3ba7ba.woff')format("woff");}.ff1{font-family:ff1;line-height:0.850586;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_3de19e99759d6178a5c625d2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_0bf2bf09ed8003ac9a9bb3b5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_c5d7fa866dbc4774e20ef29e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_bfc3416c7f2fbcf69bce3634.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_4f7aa84f73a3a94ef5a66828.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_b267359f6690def1ad861d73.woff')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_df1f231d7c6411ce4609143a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.940918;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_95a5862af469a759cb9d6435.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_d7aaaa8de462d5ae0bbb95d5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_c9f2b840bc6e1c5730e6dc9d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.940430;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_faa6ece0ee7c5c8e4b9914b1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.940430;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_d8437b42f54bc20a9b6ea34a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_733d7ac87211941f09adee87.woff')format("woff");}.ffe{font-family:ffe;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6bab308fe9b6ceeeeaef6b4a.woff')format("woff");}.fff{font-family:fff;line-height:0.740723;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_a5399ee59bdcee43a2a02c95.woff')format("woff");}.ff10{font-family:ff10;line-height:0.740723;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_64239ed51925b2a56d0b05ea.woff')format("woff");}.ff11{font-family:ff11;line-height:1.163086;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_60c0eda71b924804e90f3dad.woff')format("woff");}.ff12{font-family:ff12;line-height:1.163086;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);}
.v1{vertical-align:-78.480000px;}
.v2{vertical-align:-54.000000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.386000px;}
.ls5{letter-spacing:-1.242000px;}
.ls7{letter-spacing:-1.134000px;}
.lsa{letter-spacing:-0.432000px;}
.ls3{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.089280px;}
.lsb{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.312600px;}
.lsc{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.642240px;}
.lse{letter-spacing:22.320000px;}
.ls12{letter-spacing:725.880000px;}
.ls8{letter-spacing:1832.700000px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-72.000000px;}
.ws8{word-spacing:-58.626000px;}
.ws6{word-spacing:-58.518000px;}
.ws7{word-spacing:-58.374000px;}
.wsc{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.036000px;}
.ws4{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.568000px;}
.ws3{word-spacing:-16.560000px;}
.ws5{word-spacing:-14.004000px;}
.ws2{word-spacing:-10.251360px;}
.ws1{word-spacing:-9.750360px;}
.ws9{word-spacing:0.000000px;}
._2{margin-left:-9.504000px;}
._9{margin-left:-7.580160px;}
._d{margin-left:-5.724000px;}
._1{margin-left:-4.320000px;}
._6{margin-left:-3.286800px;}
._8{margin-left:-2.190240px;}
._0{margin-left:-1.080000px;}
._7{width:1.760400px;}
._2f{width:3.358800px;}
._a{width:4.800240px;}
._35{width:6.215760px;}
._25{width:7.488000px;}
._33{width:8.526240px;}
._14{width:9.833760px;}
._b{width:11.118240px;}
._c{width:12.475200px;}
._21{width:14.112000px;}
._26{width:15.624000px;}
._1c{width:16.848000px;}
._15{width:19.656000px;}
._16{width:21.168000px;}
._2c{width:22.464000px;}
._2d{width:23.904000px;}
._3b{width:25.200000px;}
._42{width:26.616000px;}
._23{width:28.008000px;}
._24{width:29.085840px;}
._19{width:30.240000px;}
._3c{width:31.392000px;}
._2a{width:32.400000px;}
._37{width:33.480000px;}
._29{width:34.488000px;}
._40{width:35.856000px;}
._e{width:37.080000px;}
._32{width:38.376000px;}
._58{width:39.528000px;}
._31{width:40.680000px;}
._38{width:41.688000px;}
._3f{width:42.768000px;}
._39{width:44.496000px;}
._3a{width:45.648000px;}
._1d{width:47.736000px;}
._1e{width:48.744000px;}
._30{width:49.791600px;}
._f{width:51.192000px;}
._10{width:52.200000px;}
._12{width:54.144000px;}
._65{width:55.512000px;}
._13{width:56.952000px;}
._2e{width:57.960000px;}
._50{width:60.120000px;}
._17{width:62.280000px;}
._28{width:63.288000px;}
._41{width:64.440000px;}
._2b{width:66.240000px;}
._1a{width:67.464000px;}
._1b{width:68.976000px;}
._34{width:70.200000px;}
._22{width:71.352000px;}
._3d{width:72.504000px;}
._4d{width:74.952000px;}
._11{width:76.320000px;}
._4a{width:78.420000px;}
._27{width:79.848000px;}
._4e{width:80.856000px;}
._18{width:82.152000px;}
._1f{width:84.960000px;}
._36{width:86.184000px;}
._53{width:87.240000px;}
._57{width:88.416000px;}
._46{width:90.216000px;}
._61{width:91.224000px;}
._55{width:92.232000px;}
._4c{width:95.400000px;}
._59{width:97.416000px;}
._5a{width:98.820000px;}
._4f{width:100.080000px;}
._44{width:103.104000px;}
._45{width:104.112000px;}
._54{width:106.488000px;}
._5e{width:107.712000px;}
._51{width:111.024000px;}
._52{width:112.176000px;}
._56{width:113.508000px;}
._48{width:120.216000px;}
._49{width:121.536000px;}
._4b{width:124.272000px;}
._5c{width:127.584000px;}
._64{width:145.368000px;}
._43{width:146.808000px;}
._3e{width:162.000000px;}
._47{width:173.880000px;}
._62{width:183.456000px;}
._63{width:184.536000px;}
._20{width:187.608000px;}
._67{width:193.824000px;}
._5f{width:257.616000px;}
._60{width:258.876000px;}
._5b{width:280.152000px;}
._3{width:546.456000px;}
._5d{width:610.128000px;}
._66{width:670.176000px;}
._4{width:821.700000px;}
._5{width:973.020000px;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(33,37,41);}
.fc2{color:rgb(255,242,0);}
.fc4{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:72.144000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:3.165000px;}
.y14{bottom:3.780000px;}
.y50{bottom:3.816000px;}
.y1d{bottom:4.785000px;}
.y19{bottom:6.405000px;}
.y2{bottom:10.980000px;}
.y13{bottom:14.760000px;}
.y18{bottom:22.965000px;}
.y17{bottom:39.345000px;}
.ya4{bottom:46.080000px;}
.y16{bottom:55.725000px;}
.y12{bottom:57.420000px;}
.y4e{bottom:58.320000px;}
.y4f{bottom:73.440000px;}
.y11{bottom:76.536000px;}
.y4d{bottom:78.516000px;}
.y10{bottom:95.436000px;}
.ya3{bottom:112.536000px;}
.yde{bottom:116.316000px;}
.ye9{bottom:119.196000px;}
.y4c{bottom:120.096000px;}
.yca{bottom:121.716000px;}
.y7c{bottom:131.076000px;}
.y31{bottom:132.156000px;}
.ya2{bottom:133.236000px;}
.y12a{bottom:134.316000px;}
.ydd{bottom:137.016000px;}
.ye8{bottom:139.896000px;}
.y4b{bottom:140.796000px;}
.yc9{bottom:142.416000px;}
.y7b{bottom:151.770000px;}
.y12b{bottom:152.310000px;}
.y30{bottom:152.850000px;}
.ya1{bottom:153.930000px;}
.y129{bottom:155.010000px;}
.ydc{bottom:157.710000px;}
.ye7{bottom:160.590000px;}
.y4a{bottom:161.490000px;}
.yc8{bottom:163.110000px;}
.y7a{bottom:172.470000px;}
.y102{bottom:173.010000px;}
.y2f{bottom:173.550000px;}
.ya0{bottom:174.630000px;}
.y128{bottom:175.710000px;}
.ydb{bottom:178.410000px;}
.ye6{bottom:181.290000px;}
.y49{bottom:182.190000px;}
.yc7{bottom:183.810000px;}
.y79{bottom:193.170000px;}
.y101{bottom:193.710000px;}
.y2e{bottom:194.250000px;}
.y9f{bottom:195.330000px;}
.y127{bottom:196.410000px;}
.yda{bottom:199.110000px;}
.ye5{bottom:201.990000px;}
.y48{bottom:202.890000px;}
.yc6{bottom:204.510000px;}
.y78{bottom:213.870000px;}
.y100{bottom:214.410000px;}
.y2d{bottom:214.950000px;}
.y9e{bottom:216.030000px;}
.y126{bottom:217.110000px;}
.yd9{bottom:219.810000px;}
.ye4{bottom:222.690000px;}
.y47{bottom:223.590000px;}
.yc5{bottom:225.210000px;}
.y77{bottom:234.570000px;}
.yff{bottom:235.110000px;}
.y2c{bottom:235.650000px;}
.y9d{bottom:236.730000px;}
.y125{bottom:237.810000px;}
.yd8{bottom:240.510000px;}
.ye3{bottom:243.390000px;}
.y46{bottom:244.290000px;}
.yc4{bottom:245.910000px;}
.y76{bottom:255.270000px;}
.yfe{bottom:255.810000px;}
.y2b{bottom:256.350000px;}
.y9c{bottom:257.430000px;}
.y124{bottom:258.510000px;}
.yd7{bottom:261.210000px;}
.ye2{bottom:264.090000px;}
.y45{bottom:264.990000px;}
.yc3{bottom:266.610000px;}
.y75{bottom:275.970000px;}
.yfd{bottom:276.510000px;}
.y2a{bottom:277.050000px;}
.y123{bottom:279.210000px;}
.yd6{bottom:281.910000px;}
.y44{bottom:285.690000px;}
.yc2{bottom:287.310000px;}
.y9b{bottom:291.810000px;}
.y74{bottom:296.670000px;}
.yfc{bottom:297.210000px;}
.y29{bottom:297.750000px;}
.y122{bottom:299.910000px;}
.yd5{bottom:302.610000px;}
.y43{bottom:306.390000px;}
.yc1{bottom:308.010000px;}
.y73{bottom:317.415000px;}
.yfb{bottom:317.955000px;}
.y28{bottom:318.495000px;}
.y121{bottom:320.655000px;}
.yd4{bottom:323.355000px;}
.y42{bottom:327.135000px;}
.y9a{bottom:330.555000px;}
.y72{bottom:338.115000px;}
.yfa{bottom:338.655000px;}
.y27{bottom:339.195000px;}
.y120{bottom:341.355000px;}
.yd3{bottom:344.055000px;}
.yc0{bottom:346.755000px;}
.y41{bottom:347.835000px;}
.y99{bottom:351.255000px;}
.y71{bottom:358.815000px;}
.yf9{bottom:359.355000px;}
.y26{bottom:359.895000px;}
.y11f{bottom:362.055000px;}
.yd2{bottom:364.755000px;}
.y40{bottom:368.535000px;}
.y98{bottom:371.955000px;}
.y70{bottom:379.515000px;}
.yf8{bottom:380.055000px;}
.y11e{bottom:382.755000px;}
.ybf{bottom:385.455000px;}
.y3f{bottom:389.235000px;}
.y97{bottom:392.655000px;}
.y6f{bottom:400.215000px;}
.yf7{bottom:400.755000px;}
.y25{bottom:401.295000px;}
.y11d{bottom:403.455000px;}
.ybe{bottom:406.155000px;}
.y3e{bottom:409.935000px;}
.y96{bottom:413.355000px;}
.y6e{bottom:420.915000px;}
.yf6{bottom:421.455000px;}
.y11c{bottom:424.155000px;}
.ybd{bottom:426.855000px;}
.y3d{bottom:430.635000px;}
.y95{bottom:434.055000px;}
.y6d{bottom:441.615000px;}
.yf5{bottom:442.155000px;}
.y24{bottom:442.695000px;}
.y11b{bottom:444.855000px;}
.ybc{bottom:447.555000px;}
.y3c{bottom:451.335000px;}
.y94{bottom:454.755000px;}
.y6c{bottom:462.315000px;}
.yf4{bottom:462.855000px;}
.y11a{bottom:465.555000px;}
.ybb{bottom:468.255000px;}
.y3b{bottom:472.035000px;}
.y93{bottom:475.275000px;}
.y6b{bottom:483.015000px;}
.yf3{bottom:483.555000px;}
.y23{bottom:484.095000px;}
.y119{bottom:486.255000px;}
.yba{bottom:488.955000px;}
.y3a{bottom:492.735000px;}
.y92{bottom:495.975000px;}
.y6a{bottom:503.715000px;}
.yf2{bottom:504.255000px;}
.y118{bottom:506.955000px;}
.yb9{bottom:509.655000px;}
.y39{bottom:513.435000px;}
.y91{bottom:516.675000px;}
.y69{bottom:524.415000px;}
.yf1{bottom:524.955000px;}
.y22{bottom:525.495000px;}
.y117{bottom:527.655000px;}
.yb8{bottom:530.355000px;}
.y38{bottom:534.135000px;}
.y90{bottom:537.375000px;}
.y68{bottom:545.115000px;}
.yf0{bottom:545.655000px;}
.y116{bottom:548.355000px;}
.yb7{bottom:551.055000px;}
.y37{bottom:554.835000px;}
.y8f{bottom:558.075000px;}
.y67{bottom:565.815000px;}
.yef{bottom:566.355000px;}
.y21{bottom:566.895000px;}
.y115{bottom:569.085000px;}
.yb6{bottom:571.785000px;}
.y36{bottom:575.565000px;}
.y8e{bottom:578.805000px;}
.y66{bottom:586.545000px;}
.yee{bottom:587.085000px;}
.y114{bottom:589.785000px;}
.yb5{bottom:592.485000px;}
.y35{bottom:596.265000px;}
.y8d{bottom:599.505000px;}
.y65{bottom:607.245000px;}
.yed{bottom:607.785000px;}
.y20{bottom:608.325000px;}
.y113{bottom:610.485000px;}
.yb4{bottom:613.185000px;}
.y34{bottom:616.965000px;}
.y8c{bottom:620.205000px;}
.y64{bottom:627.945000px;}
.yec{bottom:628.485000px;}
.y112{bottom:631.185000px;}
.yb3{bottom:633.885000px;}
.y33{bottom:637.665000px;}
.y8b{bottom:640.905000px;}
.y63{bottom:648.645000px;}
.yeb{bottom:649.185000px;}
.y1f{bottom:649.725000px;}
.yd1{bottom:651.885000px;}
.yb2{bottom:654.585000px;}
.y32{bottom:658.365000px;}
.y8a{bottom:661.605000px;}
.y62{bottom:669.345000px;}
.yea{bottom:669.885000px;}
.y111{bottom:672.585000px;}
.yb1{bottom:675.285000px;}
.y89{bottom:682.305000px;}
.yd0{bottom:690.585000px;}
.y1e{bottom:691.125000px;}
.y110{bottom:693.285000px;}
.yb0{bottom:695.985000px;}
.y61{bottom:702.105000px;}
.y88{bottom:703.005000px;}
.ycf{bottom:711.285000px;}
.y10f{bottom:713.985000px;}
.yaf{bottom:716.685000px;}
.y87{bottom:723.705000px;}
.yce{bottom:731.985000px;}
.yf{bottom:732.525000px;}
.y10e{bottom:734.685000px;}
.yae{bottom:737.385000px;}
.y60{bottom:740.625000px;}
.y86{bottom:744.405000px;}
.y15{bottom:752.220000px;}
.ycd{bottom:752.685000px;}
.y10d{bottom:755.385000px;}
.y1a{bottom:756.360000px;}
.yad{bottom:758.085000px;}
.y5f{bottom:761.325000px;}
.y85{bottom:765.105000px;}
.ycc{bottom:773.385000px;}
.y10c{bottom:776.085000px;}
.y1c{bottom:777.960000px;}
.yac{bottom:778.785000px;}
.y5e{bottom:782.025000px;}
.y84{bottom:785.805000px;}
.ycb{bottom:794.085000px;}
.y10b{bottom:796.785000px;}
.yab{bottom:799.485000px;}
.y83{bottom:806.505000px;}
.y5d{bottom:814.785000px;}
.y10a{bottom:817.485000px;}
.yaa{bottom:820.230000px;}
.y82{bottom:827.250000px;}
.y5c{bottom:835.530000px;}
.y109{bottom:838.230000px;}
.ya9{bottom:840.930000px;}
.y81{bottom:847.950000px;}
.ye{bottom:851.550000px;}
.y5b{bottom:856.230000px;}
.y108{bottom:858.930000px;}
.ya8{bottom:861.630000px;}
.y80{bottom:868.650000px;}
.y5a{bottom:876.930000px;}
.y107{bottom:879.630000px;}
.ya7{bottom:882.330000px;}
.y7f{bottom:889.350000px;}
.yd{bottom:892.950000px;}
.y59{bottom:897.630000px;}
.y106{bottom:900.330000px;}
.ya6{bottom:903.030000px;}
.y58{bottom:918.330000px;}
.y105{bottom:921.030000px;}
.y7e{bottom:923.730000px;}
.yc{bottom:932.190000px;}
.y57{bottom:939.030000px;}
.ya5{bottom:941.730000px;}
.ye1{bottom:944.430000px;}
.yb{bottom:955.770000px;}
.y56{bottom:959.730000px;}
.y7d{bottom:962.430000px;}
.ye0{bottom:965.130000px;}
.y1{bottom:968.010000px;}
.ya{bottom:976.470000px;}
.y55{bottom:980.430000px;}
.y104{bottom:983.130000px;}
.y54{bottom:1001.130000px;}
.ydf{bottom:1003.830000px;}
.y9{bottom:1009.230000px;}
.y53{bottom:1021.830000px;}
.y8{bottom:1023.810000px;}
.y103{bottom:1024.530000px;}
.y7{bottom:1037.130000px;}
.y52{bottom:1042.530000px;}
.y6{bottom:1055.130000px;}
.y51{bottom:1063.230000px;}
.y5{bottom:1075.860000px;}
.y4{bottom:1096.560000px;}
.y3{bottom:1117.260000px;}
.he{height:16.920000px;}
.h10{height:21.420000px;}
.h5{height:31.850156px;}
.h1{height:32.580000px;}
.h6{height:34.595859px;}
.hd{height:37.705078px;}
.hf{height:43.506914px;}
.h9{height:46.251562px;}
.h3{height:50.273438px;}
.h4{height:50.800781px;}
.h12{height:51.840000px;}
.hb{height:52.171875px;}
.h13{height:52.276219px;}
.ha{height:54.596250px;}
.h8{height:59.343750px;}
.h7{height:59.436914px;}
.h2{height:60.679688px;}
.h11{height:65.884219px;}
.hc{height:68.580000px;}
.h0{height:1188.000000px;}
.w6{width:25.200000px;}
.w5{width:26.280000px;}
.w7{width:28.080000px;}
.w3{width:40.500000px;}
.w8{width:49.500000px;}
.w4{width:498.780000px;}
.w1{width:667.185000px;}
.w2{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:7.374000px;}
.xd{left:25.170000px;}
.x1d{left:34.056000px;}
.x1c{left:90.720000px;}
.x3{left:108.035986px;}
.x23{left:113.075986px;}
.x7{left:122.795986px;}
.x11{left:128.700000px;}
.x18{left:136.115986px;}
.x1{left:145.116000px;}
.x1e{left:162.029986px;}
.x24{left:167.069986px;}
.x16{left:199.469986px;}
.x1b{left:205.049986px;}
.x10{left:214.560000px;}
.x14{left:231.149986px;}
.xa{left:241.949986px;}
.x17{left:246.809986px;}
.x8{left:248.969986px;}
.x15{left:250.769986px;}
.x13{left:254.189986px;}
.xf{left:275.220000px;}
.x12{left:276.689986px;}
.xe{left:320.220000px;}
.x9{left:415.514986px;}
.x5{left:421.274986px;}
.xb{left:459.074986px;}
.x1a{left:472.574986px;}
.x20{left:477.614986px;}
.x25{left:526.604986px;}
.x1f{left:531.644986px;}
.x6{left:558.464986px;}
.x21{left:570.704986px;}
.x19{left:592.304986px;}
.x22{left:753.480000px;}
.xc{left:764.640000px;}
.x4{left:810.149986px;}
@media print{
.v1{vertical-align:-69.760000pt;}
.v2{vertical-align:-48.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-1.232000pt;}
.ls5{letter-spacing:-1.104000pt;}
.ls7{letter-spacing:-1.008000pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls3{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.079360pt;}
.lsb{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.277867pt;}
.lsc{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.570880pt;}
.lse{letter-spacing:19.840000pt;}
.ls12{letter-spacing:645.226667pt;}
.ls8{letter-spacing:1629.066667pt;}
.ws0{word-spacing:-64.000000pt;}
.ws8{word-spacing:-52.112000pt;}
.ws6{word-spacing:-52.016000pt;}
.ws7{word-spacing:-51.888000pt;}
.wsc{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.032000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.616000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws5{word-spacing:-12.448000pt;}
.ws2{word-spacing:-9.112320pt;}
.ws1{word-spacing:-8.666987pt;}
.ws9{word-spacing:0.000000pt;}
._2{margin-left:-8.448000pt;}
._9{margin-left:-6.737920pt;}
._d{margin-left:-5.088000pt;}
._1{margin-left:-3.840000pt;}
._6{margin-left:-2.921600pt;}
._8{margin-left:-1.946880pt;}
._0{margin-left:-0.960000pt;}
._7{width:1.564800pt;}
._2f{width:2.985600pt;}
._a{width:4.266880pt;}
._35{width:5.525120pt;}
._25{width:6.656000pt;}
._33{width:7.578880pt;}
._14{width:8.741120pt;}
._b{width:9.882880pt;}
._c{width:11.089067pt;}
._21{width:12.544000pt;}
._26{width:13.888000pt;}
._1c{width:14.976000pt;}
._15{width:17.472000pt;}
._16{width:18.816000pt;}
._2c{width:19.968000pt;}
._2d{width:21.248000pt;}
._3b{width:22.400000pt;}
._42{width:23.658667pt;}
._23{width:24.896000pt;}
._24{width:25.854080pt;}
._19{width:26.880000pt;}
._3c{width:27.904000pt;}
._2a{width:28.800000pt;}
._37{width:29.760000pt;}
._29{width:30.656000pt;}
._40{width:31.872000pt;}
._e{width:32.960000pt;}
._32{width:34.112000pt;}
._58{width:35.136000pt;}
._31{width:36.160000pt;}
._38{width:37.056000pt;}
._3f{width:38.016000pt;}
._39{width:39.552000pt;}
._3a{width:40.576000pt;}
._1d{width:42.432000pt;}
._1e{width:43.328000pt;}
._30{width:44.259200pt;}
._f{width:45.504000pt;}
._10{width:46.400000pt;}
._12{width:48.128000pt;}
._65{width:49.344000pt;}
._13{width:50.624000pt;}
._2e{width:51.520000pt;}
._50{width:53.440000pt;}
._17{width:55.360000pt;}
._28{width:56.256000pt;}
._41{width:57.280000pt;}
._2b{width:58.880000pt;}
._1a{width:59.968000pt;}
._1b{width:61.312000pt;}
._34{width:62.400000pt;}
._22{width:63.424000pt;}
._3d{width:64.448000pt;}
._4d{width:66.624000pt;}
._11{width:67.840000pt;}
._4a{width:69.706667pt;}
._27{width:70.976000pt;}
._4e{width:71.872000pt;}
._18{width:73.024000pt;}
._1f{width:75.520000pt;}
._36{width:76.608000pt;}
._53{width:77.546667pt;}
._57{width:78.592000pt;}
._46{width:80.192000pt;}
._61{width:81.088000pt;}
._55{width:81.984000pt;}
._4c{width:84.800000pt;}
._59{width:86.592000pt;}
._5a{width:87.840000pt;}
._4f{width:88.960000pt;}
._44{width:91.648000pt;}
._45{width:92.544000pt;}
._54{width:94.656000pt;}
._5e{width:95.744000pt;}
._51{width:98.688000pt;}
._52{width:99.712000pt;}
._56{width:100.896000pt;}
._48{width:106.858667pt;}
._49{width:108.032000pt;}
._4b{width:110.464000pt;}
._5c{width:113.408000pt;}
._64{width:129.216000pt;}
._43{width:130.496000pt;}
._3e{width:144.000000pt;}
._47{width:154.560000pt;}
._62{width:163.072000pt;}
._63{width:164.032000pt;}
._20{width:166.762667pt;}
._67{width:172.288000pt;}
._5f{width:228.992000pt;}
._60{width:230.112000pt;}
._5b{width:249.024000pt;}
._3{width:485.738667pt;}
._5d{width:542.336000pt;}
._66{width:595.712000pt;}
._4{width:730.400000pt;}
._5{width:864.906667pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:64.128000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:2.813333pt;}
.y14{bottom:3.360000pt;}
.y50{bottom:3.392000pt;}
.y1d{bottom:4.253333pt;}
.y19{bottom:5.693333pt;}
.y2{bottom:9.760000pt;}
.y13{bottom:13.120000pt;}
.y18{bottom:20.413333pt;}
.y17{bottom:34.973333pt;}
.ya4{bottom:40.960000pt;}
.y16{bottom:49.533333pt;}
.y12{bottom:51.040000pt;}
.y4e{bottom:51.840000pt;}
.y4f{bottom:65.280000pt;}
.y11{bottom:68.032000pt;}
.y4d{bottom:69.792000pt;}
.y10{bottom:84.832000pt;}
.ya3{bottom:100.032000pt;}
.yde{bottom:103.392000pt;}
.ye9{bottom:105.952000pt;}
.y4c{bottom:106.752000pt;}
.yca{bottom:108.192000pt;}
.y7c{bottom:116.512000pt;}
.y31{bottom:117.472000pt;}
.ya2{bottom:118.432000pt;}
.y12a{bottom:119.392000pt;}
.ydd{bottom:121.792000pt;}
.ye8{bottom:124.352000pt;}
.y4b{bottom:125.152000pt;}
.yc9{bottom:126.592000pt;}
.y7b{bottom:134.906667pt;}
.y12b{bottom:135.386667pt;}
.y30{bottom:135.866667pt;}
.ya1{bottom:136.826667pt;}
.y129{bottom:137.786667pt;}
.ydc{bottom:140.186667pt;}
.ye7{bottom:142.746667pt;}
.y4a{bottom:143.546667pt;}
.yc8{bottom:144.986667pt;}
.y7a{bottom:153.306667pt;}
.y102{bottom:153.786667pt;}
.y2f{bottom:154.266667pt;}
.ya0{bottom:155.226667pt;}
.y128{bottom:156.186667pt;}
.ydb{bottom:158.586667pt;}
.ye6{bottom:161.146667pt;}
.y49{bottom:161.946667pt;}
.yc7{bottom:163.386667pt;}
.y79{bottom:171.706667pt;}
.y101{bottom:172.186667pt;}
.y2e{bottom:172.666667pt;}
.y9f{bottom:173.626667pt;}
.y127{bottom:174.586667pt;}
.yda{bottom:176.986667pt;}
.ye5{bottom:179.546667pt;}
.y48{bottom:180.346667pt;}
.yc6{bottom:181.786667pt;}
.y78{bottom:190.106667pt;}
.y100{bottom:190.586667pt;}
.y2d{bottom:191.066667pt;}
.y9e{bottom:192.026667pt;}
.y126{bottom:192.986667pt;}
.yd9{bottom:195.386667pt;}
.ye4{bottom:197.946667pt;}
.y47{bottom:198.746667pt;}
.yc5{bottom:200.186667pt;}
.y77{bottom:208.506667pt;}
.yff{bottom:208.986667pt;}
.y2c{bottom:209.466667pt;}
.y9d{bottom:210.426667pt;}
.y125{bottom:211.386667pt;}
.yd8{bottom:213.786667pt;}
.ye3{bottom:216.346667pt;}
.y46{bottom:217.146667pt;}
.yc4{bottom:218.586667pt;}
.y76{bottom:226.906667pt;}
.yfe{bottom:227.386667pt;}
.y2b{bottom:227.866667pt;}
.y9c{bottom:228.826667pt;}
.y124{bottom:229.786667pt;}
.yd7{bottom:232.186667pt;}
.ye2{bottom:234.746667pt;}
.y45{bottom:235.546667pt;}
.yc3{bottom:236.986667pt;}
.y75{bottom:245.306667pt;}
.yfd{bottom:245.786667pt;}
.y2a{bottom:246.266667pt;}
.y123{bottom:248.186667pt;}
.yd6{bottom:250.586667pt;}
.y44{bottom:253.946667pt;}
.yc2{bottom:255.386667pt;}
.y9b{bottom:259.386667pt;}
.y74{bottom:263.706667pt;}
.yfc{bottom:264.186667pt;}
.y29{bottom:264.666667pt;}
.y122{bottom:266.586667pt;}
.yd5{bottom:268.986667pt;}
.y43{bottom:272.346667pt;}
.yc1{bottom:273.786667pt;}
.y73{bottom:282.146667pt;}
.yfb{bottom:282.626667pt;}
.y28{bottom:283.106667pt;}
.y121{bottom:285.026667pt;}
.yd4{bottom:287.426667pt;}
.y42{bottom:290.786667pt;}
.y9a{bottom:293.826667pt;}
.y72{bottom:300.546667pt;}
.yfa{bottom:301.026667pt;}
.y27{bottom:301.506667pt;}
.y120{bottom:303.426667pt;}
.yd3{bottom:305.826667pt;}
.yc0{bottom:308.226667pt;}
.y41{bottom:309.186667pt;}
.y99{bottom:312.226667pt;}
.y71{bottom:318.946667pt;}
.yf9{bottom:319.426667pt;}
.y26{bottom:319.906667pt;}
.y11f{bottom:321.826667pt;}
.yd2{bottom:324.226667pt;}
.y40{bottom:327.586667pt;}
.y98{bottom:330.626667pt;}
.y70{bottom:337.346667pt;}
.yf8{bottom:337.826667pt;}
.y11e{bottom:340.226667pt;}
.ybf{bottom:342.626667pt;}
.y3f{bottom:345.986667pt;}
.y97{bottom:349.026667pt;}
.y6f{bottom:355.746667pt;}
.yf7{bottom:356.226667pt;}
.y25{bottom:356.706667pt;}
.y11d{bottom:358.626667pt;}
.ybe{bottom:361.026667pt;}
.y3e{bottom:364.386667pt;}
.y96{bottom:367.426667pt;}
.y6e{bottom:374.146667pt;}
.yf6{bottom:374.626667pt;}
.y11c{bottom:377.026667pt;}
.ybd{bottom:379.426667pt;}
.y3d{bottom:382.786667pt;}
.y95{bottom:385.826667pt;}
.y6d{bottom:392.546667pt;}
.yf5{bottom:393.026667pt;}
.y24{bottom:393.506667pt;}
.y11b{bottom:395.426667pt;}
.ybc{bottom:397.826667pt;}
.y3c{bottom:401.186667pt;}
.y94{bottom:404.226667pt;}
.y6c{bottom:410.946667pt;}
.yf4{bottom:411.426667pt;}
.y11a{bottom:413.826667pt;}
.ybb{bottom:416.226667pt;}
.y3b{bottom:419.586667pt;}
.y93{bottom:422.466667pt;}
.y6b{bottom:429.346667pt;}
.yf3{bottom:429.826667pt;}
.y23{bottom:430.306667pt;}
.y119{bottom:432.226667pt;}
.yba{bottom:434.626667pt;}
.y3a{bottom:437.986667pt;}
.y92{bottom:440.866667pt;}
.y6a{bottom:447.746667pt;}
.yf2{bottom:448.226667pt;}
.y118{bottom:450.626667pt;}
.yb9{bottom:453.026667pt;}
.y39{bottom:456.386667pt;}
.y91{bottom:459.266667pt;}
.y69{bottom:466.146667pt;}
.yf1{bottom:466.626667pt;}
.y22{bottom:467.106667pt;}
.y117{bottom:469.026667pt;}
.yb8{bottom:471.426667pt;}
.y38{bottom:474.786667pt;}
.y90{bottom:477.666667pt;}
.y68{bottom:484.546667pt;}
.yf0{bottom:485.026667pt;}
.y116{bottom:487.426667pt;}
.yb7{bottom:489.826667pt;}
.y37{bottom:493.186667pt;}
.y8f{bottom:496.066667pt;}
.y67{bottom:502.946667pt;}
.yef{bottom:503.426667pt;}
.y21{bottom:503.906667pt;}
.y115{bottom:505.853333pt;}
.yb6{bottom:508.253333pt;}
.y36{bottom:511.613333pt;}
.y8e{bottom:514.493333pt;}
.y66{bottom:521.373333pt;}
.yee{bottom:521.853333pt;}
.y114{bottom:524.253333pt;}
.yb5{bottom:526.653333pt;}
.y35{bottom:530.013333pt;}
.y8d{bottom:532.893333pt;}
.y65{bottom:539.773333pt;}
.yed{bottom:540.253333pt;}
.y20{bottom:540.733333pt;}
.y113{bottom:542.653333pt;}
.yb4{bottom:545.053333pt;}
.y34{bottom:548.413333pt;}
.y8c{bottom:551.293333pt;}
.y64{bottom:558.173333pt;}
.yec{bottom:558.653333pt;}
.y112{bottom:561.053333pt;}
.yb3{bottom:563.453333pt;}
.y33{bottom:566.813333pt;}
.y8b{bottom:569.693333pt;}
.y63{bottom:576.573333pt;}
.yeb{bottom:577.053333pt;}
.y1f{bottom:577.533333pt;}
.yd1{bottom:579.453333pt;}
.yb2{bottom:581.853333pt;}
.y32{bottom:585.213333pt;}
.y8a{bottom:588.093333pt;}
.y62{bottom:594.973333pt;}
.yea{bottom:595.453333pt;}
.y111{bottom:597.853333pt;}
.yb1{bottom:600.253333pt;}
.y89{bottom:606.493333pt;}
.yd0{bottom:613.853333pt;}
.y1e{bottom:614.333333pt;}
.y110{bottom:616.253333pt;}
.yb0{bottom:618.653333pt;}
.y61{bottom:624.093333pt;}
.y88{bottom:624.893333pt;}
.ycf{bottom:632.253333pt;}
.y10f{bottom:634.653333pt;}
.yaf{bottom:637.053333pt;}
.y87{bottom:643.293333pt;}
.yce{bottom:650.653333pt;}
.yf{bottom:651.133333pt;}
.y10e{bottom:653.053333pt;}
.yae{bottom:655.453333pt;}
.y60{bottom:658.333333pt;}
.y86{bottom:661.693333pt;}
.y15{bottom:668.640000pt;}
.ycd{bottom:669.053333pt;}
.y10d{bottom:671.453333pt;}
.y1a{bottom:672.320000pt;}
.yad{bottom:673.853333pt;}
.y5f{bottom:676.733333pt;}
.y85{bottom:680.093333pt;}
.ycc{bottom:687.453333pt;}
.y10c{bottom:689.853333pt;}
.y1c{bottom:691.520000pt;}
.yac{bottom:692.253333pt;}
.y5e{bottom:695.133333pt;}
.y84{bottom:698.493333pt;}
.ycb{bottom:705.853333pt;}
.y10b{bottom:708.253333pt;}
.yab{bottom:710.653333pt;}
.y83{bottom:716.893333pt;}
.y5d{bottom:724.253333pt;}
.y10a{bottom:726.653333pt;}
.yaa{bottom:729.093333pt;}
.y82{bottom:735.333333pt;}
.y5c{bottom:742.693333pt;}
.y109{bottom:745.093333pt;}
.ya9{bottom:747.493333pt;}
.y81{bottom:753.733333pt;}
.ye{bottom:756.933333pt;}
.y5b{bottom:761.093333pt;}
.y108{bottom:763.493333pt;}
.ya8{bottom:765.893333pt;}
.y80{bottom:772.133333pt;}
.y5a{bottom:779.493333pt;}
.y107{bottom:781.893333pt;}
.ya7{bottom:784.293333pt;}
.y7f{bottom:790.533333pt;}
.yd{bottom:793.733333pt;}
.y59{bottom:797.893333pt;}
.y106{bottom:800.293333pt;}
.ya6{bottom:802.693333pt;}
.y58{bottom:816.293333pt;}
.y105{bottom:818.693333pt;}
.y7e{bottom:821.093333pt;}
.yc{bottom:828.613333pt;}
.y57{bottom:834.693333pt;}
.ya5{bottom:837.093333pt;}
.ye1{bottom:839.493333pt;}
.yb{bottom:849.573333pt;}
.y56{bottom:853.093333pt;}
.y7d{bottom:855.493333pt;}
.ye0{bottom:857.893333pt;}
.y1{bottom:860.453333pt;}
.ya{bottom:867.973333pt;}
.y55{bottom:871.493333pt;}
.y104{bottom:873.893333pt;}
.y54{bottom:889.893333pt;}
.ydf{bottom:892.293333pt;}
.y9{bottom:897.093333pt;}
.y53{bottom:908.293333pt;}
.y8{bottom:910.053333pt;}
.y103{bottom:910.693333pt;}
.y7{bottom:921.893333pt;}
.y52{bottom:926.693333pt;}
.y6{bottom:937.893333pt;}
.y51{bottom:945.093333pt;}
.y5{bottom:956.320000pt;}
.y4{bottom:974.720000pt;}
.y3{bottom:993.120000pt;}
.he{height:15.040000pt;}
.h10{height:19.040000pt;}
.h5{height:28.311250pt;}
.h1{height:28.960000pt;}
.h6{height:30.751875pt;}
.hd{height:33.515625pt;}
.hf{height:38.672812pt;}
.h9{height:41.112500pt;}
.h3{height:44.687500pt;}
.h4{height:45.156250pt;}
.h12{height:46.080000pt;}
.hb{height:46.375000pt;}
.h13{height:46.467750pt;}
.ha{height:48.530000pt;}
.h8{height:52.750000pt;}
.h7{height:52.832812pt;}
.h2{height:53.937500pt;}
.h11{height:58.563750pt;}
.hc{height:60.960000pt;}
.h0{height:1056.000000pt;}
.w6{width:22.400000pt;}
.w5{width:23.360000pt;}
.w7{width:24.960000pt;}
.w3{width:36.000000pt;}
.w8{width:44.000000pt;}
.w4{width:443.360000pt;}
.w1{width:593.053333pt;}
.w2{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:6.554667pt;}
.xd{left:22.373333pt;}
.x1d{left:30.272000pt;}
.x1c{left:80.640000pt;}
.x3{left:96.031988pt;}
.x23{left:100.511988pt;}
.x7{left:109.151988pt;}
.x11{left:114.400000pt;}
.x18{left:120.991988pt;}
.x1{left:128.992000pt;}
.x1e{left:144.026655pt;}
.x24{left:148.506655pt;}
.x16{left:177.306655pt;}
.x1b{left:182.266655pt;}
.x10{left:190.720000pt;}
.x14{left:205.466655pt;}
.xa{left:215.066655pt;}
.x17{left:219.386655pt;}
.x8{left:221.306655pt;}
.x15{left:222.906655pt;}
.x13{left:225.946655pt;}
.xf{left:244.640000pt;}
.x12{left:245.946655pt;}
.xe{left:284.640000pt;}
.x9{left:369.346655pt;}
.x5{left:374.466655pt;}
.xb{left:408.066655pt;}
.x1a{left:420.066655pt;}
.x20{left:424.546655pt;}
.x25{left:468.093321pt;}
.x1f{left:472.573321pt;}
.x6{left:496.413321pt;}
.x21{left:507.293321pt;}
.x19{left:526.493321pt;}
.x22{left:669.760000pt;}
.xc{left:679.680000pt;}
.x4{left:720.133321pt;}
}




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