
    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_a45a5a9010cfe182a4c63d53.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_704b877fab7f6392b865bf84.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_2034a5917948706e15976da2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_5d2436291ee5fbe5f74105ad.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_0e9ed378aebe54d1491f207c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_c7154ae69075b83a14f7e3f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908691;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_e5c51f78508c04c778d07052.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691406;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_7cd06df238e290f0d9fbf032.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908203;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_b6934ff3f452d422ab4d3025.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_c6a8401eaf6378e01473feec.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e629be233ab75c9a6753a8e9.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bc6f1790b822fd3f5bc68a9a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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:-27.000000px;}
.v6{vertical-align:-15.840000px;}
.v7{vertical-align:-14.760000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.880000px;}
.v8{vertical-align:14.760000px;}
.v1{vertical-align:24.120000px;}
.v3{vertical-align:27.000000px;}
.v5{vertical-align:29.880000px;}
.lsd{letter-spacing:-16.440000px;}
.ls16{letter-spacing:-14.640000px;}
.ls28{letter-spacing:-14.160000px;}
.ls1e{letter-spacing:-1.296000px;}
.ls1d{letter-spacing:-1.080000px;}
.ls2e{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.576000px;}
.ls22{letter-spacing:-0.494400px;}
.lsc{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.144000px;}
.ls27{letter-spacing:-0.134400px;}
.ls23{letter-spacing:-0.090600px;}
.ls6{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.004320px;}
.ls25{letter-spacing:-0.000006px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.072000px;}
.ls1f{letter-spacing:0.090000px;}
.ls26{letter-spacing:0.111600px;}
.ls31{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.166320px;}
.ls1{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.210000px;}
.ls18{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.504000px;}
.ls2{letter-spacing:0.540000px;}
.ls35{letter-spacing:0.720000px;}
.ls30{letter-spacing:1.080000px;}
.ls1b{letter-spacing:1.800000px;}
.ls2d{letter-spacing:2.520000px;}
.ls19{letter-spacing:2.801520px;}
.ls12{letter-spacing:4.320000px;}
.ls2c{letter-spacing:5.040000px;}
.ls10{letter-spacing:7.200000px;}
.ls13{letter-spacing:7.560000px;}
.ls21{letter-spacing:9.360000px;}
.ls11{letter-spacing:9.720000px;}
.ls24{letter-spacing:13.680000px;}
.ls34{letter-spacing:14.760000px;}
.ls2a{letter-spacing:24.840000px;}
.ls32{letter-spacing:26.064000px;}
.ls33{letter-spacing:27.360000px;}
.ls1a{letter-spacing:38.160000px;}
.lse{letter-spacing:52.560000px;}
.ls2f{letter-spacing:62.064000px;}
.ls17{letter-spacing:846.120000px;}
.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;}
}
.ws23{word-spacing:-48.599994px;}
.ws24{word-spacing:-42.231600px;}
.ws1{word-spacing:-27.036000px;}
.ws2{word-spacing:-26.856000px;}
.ws3{word-spacing:-21.780000px;}
.ws29{word-spacing:-18.432000px;}
.wsc{word-spacing:-18.360000px;}
.ws14{word-spacing:-18.288000px;}
.ws13{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.640000px;}
.wsb{word-spacing:-17.424000px;}
.ws2a{word-spacing:-17.352000px;}
.ws1d{word-spacing:-16.920000px;}
.ws1e{word-spacing:-16.704000px;}
.ws1f{word-spacing:-16.650000px;}
.ws28{word-spacing:-16.470000px;}
.ws21{word-spacing:-16.379400px;}
.ws25{word-spacing:-16.335600px;}
.ws26{word-spacing:-16.290000px;}
.ws18{word-spacing:-15.984000px;}
.ws20{word-spacing:-15.975600px;}
.ws19{word-spacing:-15.840000px;}
.ws1c{word-spacing:-15.030000px;}
.ws9{word-spacing:-14.220000px;}
.ws4{word-spacing:-12.150000px;}
.wsf{word-spacing:-11.970000px;}
.ws10{word-spacing:-11.965680px;}
.ws1a{word-spacing:-11.246400px;}
.ws27{word-spacing:-10.530000px;}
.ws17{word-spacing:-0.144000px;}
.ws1b{word-spacing:-0.072000px;}
.wse{word-spacing:0.000000px;}
.ws15{word-spacing:0.216000px;}
.ws16{word-spacing:7.338240px;}
.ws22{word-spacing:11.376000px;}
.ws12{word-spacing:11.496000px;}
._1{margin-left:-36.054000px;}
._19{margin-left:-32.400000px;}
._1b{margin-left:-31.392000px;}
._32{margin-left:-29.114640px;}
._2a{margin-left:-26.640000px;}
._3{margin-left:-23.568000px;}
._4{margin-left:-20.568000px;}
._0{margin-left:-19.536000px;}
._28{margin-left:-16.020000px;}
._11{margin-left:-14.448000px;}
._31{margin-left:-13.073400px;}
._2e{margin-left:-5.310480px;}
._1d{margin-left:-4.032000px;}
._7{margin-left:-3.000000px;}
._6{margin-left:-1.968000px;}
._8{width:1.032000px;}
._1a{width:2.088000px;}
._d{width:3.166320px;}
._14{width:4.587360px;}
._a{width:6.432000px;}
._9{width:7.536000px;}
._18{width:8.640000px;}
._1e{width:9.768000px;}
._2b{width:10.824000px;}
._20{width:11.856000px;}
._1f{width:12.888000px;}
._25{width:14.088000px;}
._10{width:15.096000px;}
._21{width:16.488000px;}
._2d{width:18.216000px;}
._12{width:19.488000px;}
._23{width:20.616000px;}
._13{width:21.648000px;}
._c{width:23.064000px;}
._b{width:24.168000px;}
._24{width:25.536000px;}
._22{width:27.048000px;}
._f{width:28.272000px;}
._e{width:29.352000px;}
._5{width:31.320000px;}
._1c{width:32.640000px;}
._27{width:36.528000px;}
._26{width:37.632000px;}
._2f{width:38.880000px;}
._30{width:40.464000px;}
._29{width:41.592000px;}
._2{width:43.200000px;}
._33{width:48.144000px;}
._34{width:49.392000px;}
._35{width:51.432000px;}
._17{width:52.608000px;}
._2c{width:53.712000px;}
._15{width:846.120000px;}
._16{width:2323.008000px;}
.fc5{color:rgb(20,20,19);}
.fc4{color:rgb(0,176,240);}
.fc2{color:rgb(0,127,127);}
.fc6{color:rgb(30,30,101);}
.fc1{color:rgb(0,128,128);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:42.120000px;}
.fs5{font-size:47.880000px;}
.fs8{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs1{font-size:60.120000px;}
.fs9{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:87.120000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:191.880000px;}
.yf9{bottom:-6.750000px;}
.ybe{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y25{bottom:3.240000px;}
.yb0{bottom:4.050000px;}
.yc3{bottom:4.320000px;}
.ybf{bottom:4.410000px;}
.yec{bottom:4.497000px;}
.ye0{bottom:4.500000px;}
.yf1{bottom:6.660000px;}
.yae{bottom:13.050000px;}
.yf3{bottom:15.750000px;}
.yaf{bottom:19.800000px;}
.y28{bottom:42.690000px;}
.yad{bottom:46.440000px;}
.y10b{bottom:78.510000px;}
.yd8{bottom:78.690000px;}
.y94{bottom:84.090000px;}
.y111{bottom:90.660000px;}
.y123{bottom:97.320000px;}
.y4f{bottom:101.010000px;}
.y74{bottom:103.260000px;}
.y10a{bottom:104.070000px;}
.yd7{bottom:104.160000px;}
.y93{bottom:104.790000px;}
.ybc{bottom:105.150000px;}
.y133{bottom:106.320000px;}
.y110{bottom:116.130000px;}
.y122{bottom:122.790000px;}
.yed{bottom:125.040000px;}
.ybb{bottom:125.760000px;}
.y4e{bottom:126.570000px;}
.y73{bottom:128.820000px;}
.yd6{bottom:129.720000px;}
.y92{bottom:130.260000px;}
.y132{bottom:131.790000px;}
.y23{bottom:141.510000px;}
.yeb{bottom:143.133000px;}
.y109{bottom:147.450000px;}
.y121{bottom:148.260000px;}
.yba{bottom:151.320000px;}
.y4d{bottom:152.040000px;}
.y72{bottom:154.290000px;}
.yd5{bottom:155.190000px;}
.y10f{bottom:155.640000px;}
.y91{bottom:155.820000px;}
.y131{bottom:157.260000px;}
.y22{bottom:162.300000px;}
.yea{bottom:165.630000px;}
.y120{bottom:173.820000px;}
.yb9{bottom:176.790000px;}
.y4c{bottom:177.510000px;}
.y71{bottom:179.760000px;}
.yd4{bottom:180.660000px;}
.y90{bottom:181.290000px;}
.y130{bottom:182.820000px;}
.y21{bottom:187.860000px;}
.ye9{bottom:188.130000px;}
.y108{bottom:191.010000px;}
.y11f{bottom:199.290000px;}
.yb8{bottom:202.260000px;}
.y4b{bottom:203.070000px;}
.y70{bottom:205.320000px;}
.y8f{bottom:206.760000px;}
.y12f{bottom:208.290000px;}
.ye8{bottom:210.630000px;}
.y20{bottom:213.330000px;}
.y107{bottom:216.570000px;}
.yd3{bottom:220.170000px;}
.y11e{bottom:224.760000px;}
.yb7{bottom:227.820000px;}
.y4a{bottom:228.540000px;}
.y6f{bottom:230.790000px;}
.y8e{bottom:232.320000px;}
.y12e{bottom:233.760000px;}
.ye7{bottom:233.940000px;}
.y1f{bottom:238.800000px;}
.y106{bottom:242.040000px;}
.y11d{bottom:250.320000px;}
.yb6{bottom:253.290000px;}
.y49{bottom:254.010000px;}
.y6e{bottom:256.260000px;}
.y12d{bottom:259.320000px;}
.y1e{bottom:264.360000px;}
.y105{bottom:267.510000px;}
.ye6{bottom:271.020000px;}
.y8d{bottom:275.700000px;}
.y11c{bottom:275.790000px;}
.yb5{bottom:278.760000px;}
.y48{bottom:279.570000px;}
.y6d{bottom:281.820000px;}
.y12c{bottom:284.790000px;}
.y1d{bottom:289.830000px;}
.y104{bottom:293.070000px;}
.y11b{bottom:301.260000px;}
.yb4{bottom:304.320000px;}
.y47{bottom:305.040000px;}
.y6c{bottom:307.290000px;}
.y12b{bottom:310.260000px;}
.ye5{bottom:314.490000px;}
.y1c{bottom:315.300000px;}
.y103{bottom:318.540000px;}
.y8c{bottom:319.260000px;}
.y11a{bottom:326.820000px;}
.yb3{bottom:329.790000px;}
.y46{bottom:330.510000px;}
.y6b{bottom:332.760000px;}
.y12a{bottom:335.820000px;}
.y1b{bottom:340.860000px;}
.y102{bottom:344.010000px;}
.y8b{bottom:344.820000px;}
.ye4{bottom:353.910000px;}
.yb2{bottom:355.260000px;}
.y45{bottom:356.070000px;}
.y6a{bottom:358.320000px;}
.y129{bottom:361.290000px;}
.y1a{bottom:366.330000px;}
.y101{bottom:369.570000px;}
.y119{bottom:370.110000px;}
.y8a{bottom:370.290000px;}
.yb1{bottom:380.820000px;}
.y44{bottom:381.540000px;}
.y69{bottom:383.790000px;}
.y128{bottom:386.760000px;}
.y19{bottom:391.800000px;}
.y100{bottom:395.040000px;}
.y89{bottom:395.760000px;}
.yac{bottom:402.240000px;}
.y43{bottom:407.010000px;}
.y127{bottom:412.320000px;}
.y118{bottom:413.760000px;}
.y18{bottom:417.360000px;}
.yff{bottom:420.510000px;}
.y88{bottom:421.320000px;}
.y68{bottom:427.170000px;}
.y42{bottom:432.570000px;}
.y126{bottom:437.790000px;}
.y17{bottom:442.830000px;}
.yfe{bottom:446.070000px;}
.y87{bottom:446.790000px;}
.y117{bottom:457.170000px;}
.y41{bottom:458.070000px;}
.y10e{bottom:462.120000px;}
.y125{bottom:463.290000px;}
.y67{bottom:470.670000px;}
.yfd{bottom:471.570000px;}
.y86{bottom:472.290000px;}
.yab{bottom:475.350000px;}
.y40{bottom:483.540000px;}
.y10d{bottom:487.590000px;}
.y16{bottom:488.490000px;}
.y124{bottom:488.850000px;}
.yfc{bottom:497.040000px;}
.y85{bottom:497.850000px;}
.yaa{bottom:500.820000px;}
.y3f{bottom:509.100000px;}
.y15{bottom:514.050000px;}
.y66{bottom:514.320000px;}
.y84{bottom:523.320000px;}
.ya9{bottom:526.290000px;}
.y10c{bottom:527.100000px;}
.y3e{bottom:534.570000px;}
.yfb{bottom:537.990000px;}
.y65{bottom:539.790000px;}
.y83{bottom:548.790000px;}
.ya8{bottom:551.850000px;}
.y14{bottom:557.610000px;}
.y3d{bottom:560.040000px;}
.yfa{bottom:560.490000px;}
.y64{bottom:565.350000px;}
.yd2{bottom:574.350000px;}
.ya7{bottom:577.320000px;}
.yf8{bottom:582.990000px;}
.y3c{bottom:585.600000px;}
.y63{bottom:590.820000px;}
.y82{bottom:592.260000px;}
.y136{bottom:598.290000px;}
.y13{bottom:601.080000px;}
.ya6{bottom:602.790000px;}
.yf7{bottom:606.210000px;}
.y3b{bottom:611.070000px;}
.yd1{bottom:615.210000px;}
.y62{bottom:616.290000px;}
.y116{bottom:620.610000px;}
.y135{bottom:623.850000px;}
.y12{bottom:626.640000px;}
.ye3{bottom:627.990000px;}
.ya5{bottom:628.350000px;}
.yf6{bottom:628.710000px;}
.y81{bottom:635.820000px;}
.y3a{bottom:636.540000px;}
.yd0{bottom:636.990000px;}
.y61{bottom:641.850000px;}
.y134{bottom:649.320000px;}
.ye2{bottom:650.490000px;}
.yf5{bottom:651.210000px;}
.ycf{bottom:658.770000px;}
.y80{bottom:661.290000px;}
.y39{bottom:662.100000px;}
.y115{bottom:664.350000px;}
.y60{bottom:667.320000px;}
.y11{bottom:670.110000px;}
.ya4{bottom:671.640000px;}
.ye1{bottom:672.990000px;}
.yf2{bottom:674.520000px;}
.yce{bottom:680.460000px;}
.y7f{bottom:686.850000px;}
.y38{bottom:687.570000px;}
.y114{bottom:689.820000px;}
.y5f{bottom:692.790000px;}
.y10{bottom:695.580000px;}
.ydf{bottom:696.210000px;}
.yf4{bottom:697.020000px;}
.ycd{bottom:702.960000px;}
.y37{bottom:713.040000px;}
.ya3{bottom:715.290000px;}
.y5e{bottom:718.350000px;}
.yf0{bottom:719.520000px;}
.yf{bottom:727.890000px;}
.y7e{bottom:730.230000px;}
.yde{bottom:733.290000px;}
.y36{bottom:738.600000px;}
.ycc{bottom:739.320000px;}
.ya2{bottom:740.850000px;}
.y5d{bottom:743.820000px;}
.ye{bottom:746.610000px;}
.yef{bottom:758.850000px;}
.y35{bottom:764.070000px;}
.ya1{bottom:766.320000px;}
.y5c{bottom:769.290000px;}
.y7d{bottom:773.790000px;}
.ydd{bottom:776.850000px;}
.yd{bottom:778.830000px;}
.ycb{bottom:782.790000px;}
.y113{bottom:784.140000px;}
.yee{bottom:784.320000px;}
.y34{bottom:789.540000px;}
.ya0{bottom:791.790000px;}
.y5b{bottom:794.850000px;}
.y7c{bottom:799.350000px;}
.ydc{bottom:802.320000px;}
.yca{bottom:808.350000px;}
.y33{bottom:815.100000px;}
.yc{bottom:815.460000px;}
.y9f{bottom:817.350000px;}
.y5a{bottom:820.320000px;}
.ydb{bottom:827.790000px;}
.yc9{bottom:833.820000px;}
.y32{bottom:840.570000px;}
.yb{bottom:840.930000px;}
.y7b{bottom:842.730000px;}
.y59{bottom:845.790000px;}
.yda{bottom:853.350000px;}
.yc8{bottom:859.290000px;}
.y9e{bottom:860.730000px;}
.y31{bottom:866.040000px;}
.y58{bottom:871.350000px;}
.yd9{bottom:878.820000px;}
.yc7{bottom:884.850000px;}
.y7a{bottom:886.290000px;}
.ya{bottom:886.470000px;}
.y30{bottom:891.600000px;}
.y57{bottom:896.820000px;}
.y9d{bottom:904.290000px;}
.yc6{bottom:910.320000px;}
.y79{bottom:911.850000px;}
.y2f{bottom:917.070000px;}
.y9{bottom:917.520000px;}
.y56{bottom:922.290000px;}
.y9c{bottom:929.850000px;}
.yc5{bottom:935.790000px;}
.y78{bottom:937.320000px;}
.y2e{bottom:942.540000px;}
.y55{bottom:947.850000px;}
.y8{bottom:948.570000px;}
.y9b{bottom:955.320000px;}
.y77{bottom:962.790000px;}
.y2d{bottom:968.100000px;}
.y54{bottom:973.320000px;}
.yc4{bottom:976.740000px;}
.y7{bottom:979.620000px;}
.y9a{bottom:980.790000px;}
.y76{bottom:988.350000px;}
.yc2{bottom:998.550000px;}
.y53{bottom:998.820000px;}
.y99{bottom:1006.380000px;}
.y2c{bottom:1011.420000px;}
.yc1{bottom:1020.240000px;}
.y52{bottom:1024.380000px;}
.y6{bottom:1026.720000px;}
.y75{bottom:1031.760000px;}
.y98{bottom:1031.850000px;}
.yc0{bottom:1042.020000px;}
.y51{bottom:1049.850000px;}
.y5{bottom:1052.370000px;}
.y97{bottom:1057.320000px;}
.ybd{bottom:1064.520000px;}
.y4{bottom:1072.890000px;}
.y2b{bottom:1075.230000px;}
.y50{bottom:1075.320000px;}
.y96{bottom:1082.880000px;}
.y3{bottom:1100.070000px;}
.y2a{bottom:1100.880000px;}
.y112{bottom:1126.170000px;}
.y95{bottom:1126.260000px;}
.y29{bottom:1126.350000px;}
.y2{bottom:1144.890000px;}
.y24{bottom:1145.430000px;}
.y27{bottom:1151.820000px;}
.y1{bottom:1166.670000px;}
.y26{bottom:1177.380000px;}
.h9{height:17.190000px;}
.h15{height:21.690000px;}
.h12{height:21.780000px;}
.h16{height:21.810000px;}
.h19{height:22.497000px;}
.h17{height:22.500000px;}
.h1a{height:24.750000px;}
.hf{height:35.719102px;}
.hd{height:37.731445px;}
.h10{height:43.664062px;}
.h1b{height:45.000000px;}
.h8{height:46.991602px;}
.h11{height:49.992188px;}
.he{height:50.308594px;}
.h3{height:59.004492px;}
.ha{height:60.589687px;}
.h14{height:64.657617px;}
.h13{height:66.394687px;}
.h1c{height:66.569062px;}
.h18{height:68.338477px;}
.hc{height:68.962500px;}
.h6{height:70.628906px;}
.h5{height:70.664062px;}
.h2{height:72.562500px;}
.hb{height:73.991602px;}
.h1d{height:74.004654px;}
.h7{height:108.843750px;}
.h4{height:188.226035px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:48.240000px;}
.w13{width:68.512500px;}
.w15{width:84.060000px;}
.w8{width:84.990000px;}
.w11{width:100.350000px;}
.w12{width:106.650000px;}
.we{width:109.800000px;}
.w2{width:118.923000px;}
.wb{width:127.372500px;}
.w14{width:127.440000px;}
.wc{width:133.920000px;}
.w7{width:148.770000px;}
.w6{width:148.882500px;}
.w9{width:194.955000px;}
.wa{width:195.030000px;}
.w5{width:202.680000px;}
.w10{width:211.500000px;}
.wd{width:235.200000px;}
.wf{width:275.520000px;}
.w3{width:707.040000px;}
.w1{width:893.250000px;}
.w0{width:893.430000px;}
.x0{left:0.000000px;}
.x9{left:7.200000px;}
.x1c{left:12.240000px;}
.x2a{left:15.930000px;}
.x1f{left:18.630000px;}
.x21{left:19.980000px;}
.x1a{left:23.670000px;}
.x33{left:26.640000px;}
.x19{left:27.990000px;}
.x2d{left:29.880000px;}
.x37{left:34.110000px;}
.x16{left:35.550000px;}
.x14{left:37.440000px;}
.x1b{left:39.960000px;}
.x20{left:41.130000px;}
.x10{left:43.020000px;}
.x3a{left:45.990000px;}
.x1e{left:50.490000px;}
.x2c{left:53.640000px;}
.x1d{left:55.800000px;}
.x25{left:58.050000px;}
.x18{left:59.940000px;}
.xa{left:69.120000px;}
.x1{left:74.430000px;}
.x31{left:79.020000px;}
.x26{left:83.070000px;}
.x6{left:95.760000px;}
.x12{left:101.340000px;}
.x3d{left:108.450000px;}
.x22{left:115.110000px;}
.x7{left:117.000000px;}
.x28{left:135.090000px;}
.x2f{left:144.090000px;}
.x11{left:154.110000px;}
.x34{left:203.250000px;}
.xc{left:240.600000px;}
.x23{left:251.760000px;}
.x30{left:274.260000px;}
.xb{left:288.570000px;}
.xd{left:298.200000px;}
.x36{left:303.600000px;}
.x29{left:316.110000px;}
.x13{left:356.790000px;}
.x38{left:410.250000px;}
.x2b{left:443.490000px;}
.x24{left:446.730000px;}
.x35{left:478.770000px;}
.xe{left:502.350000px;}
.x15{left:505.680000px;}
.x32{left:509.460000px;}
.x5{left:589.200000px;}
.x2e{left:598.200000px;}
.x27{left:602.790000px;}
.x39{left:606.210000px;}
.x17{left:654.450000px;}
.x3{left:672.450000px;}
.x3b{left:677.850000px;}
.x3c{left:682.350000px;}
.x4{left:696.660000px;}
.x8{left:699.990000px;}
.xf{left:776.160000px;}
.x2{left:819.180000px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v6{vertical-align:-14.080000pt;}
.v7{vertical-align:-13.120000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.560000pt;}
.v8{vertical-align:13.120000pt;}
.v1{vertical-align:21.440000pt;}
.v3{vertical-align:24.000000pt;}
.v5{vertical-align:26.560000pt;}
.lsd{letter-spacing:-14.613333pt;}
.ls16{letter-spacing:-13.013333pt;}
.ls28{letter-spacing:-12.586667pt;}
.ls1e{letter-spacing:-1.152000pt;}
.ls1d{letter-spacing:-0.960000pt;}
.ls2e{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls22{letter-spacing:-0.439467pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls27{letter-spacing:-0.119467pt;}
.ls23{letter-spacing:-0.080533pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.003840pt;}
.ls25{letter-spacing:-0.000005pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls1f{letter-spacing:0.080000pt;}
.ls26{letter-spacing:0.099200pt;}
.ls31{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.147840pt;}
.ls1{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.186667pt;}
.ls18{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.448000pt;}
.ls2{letter-spacing:0.480000pt;}
.ls35{letter-spacing:0.640000pt;}
.ls30{letter-spacing:0.960000pt;}
.ls1b{letter-spacing:1.600000pt;}
.ls2d{letter-spacing:2.240000pt;}
.ls19{letter-spacing:2.490240pt;}
.ls12{letter-spacing:3.840000pt;}
.ls2c{letter-spacing:4.480000pt;}
.ls10{letter-spacing:6.400000pt;}
.ls13{letter-spacing:6.720000pt;}
.ls21{letter-spacing:8.320000pt;}
.ls11{letter-spacing:8.640000pt;}
.ls24{letter-spacing:12.160000pt;}
.ls34{letter-spacing:13.120000pt;}
.ls2a{letter-spacing:22.080000pt;}
.ls32{letter-spacing:23.168000pt;}
.ls33{letter-spacing:24.320000pt;}
.ls1a{letter-spacing:33.920000pt;}
.lse{letter-spacing:46.720000pt;}
.ls2f{letter-spacing:55.168000pt;}
.ls17{letter-spacing:752.106667pt;}
.ws23{word-spacing:-43.199995pt;}
.ws24{word-spacing:-37.539200pt;}
.ws1{word-spacing:-24.032000pt;}
.ws2{word-spacing:-23.872000pt;}
.ws3{word-spacing:-19.360000pt;}
.ws29{word-spacing:-16.384000pt;}
.wsc{word-spacing:-16.320000pt;}
.ws14{word-spacing:-16.256000pt;}
.ws13{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.680000pt;}
.wsb{word-spacing:-15.488000pt;}
.ws2a{word-spacing:-15.424000pt;}
.ws1d{word-spacing:-15.040000pt;}
.ws1e{word-spacing:-14.848000pt;}
.ws1f{word-spacing:-14.800000pt;}
.ws28{word-spacing:-14.640000pt;}
.ws21{word-spacing:-14.559467pt;}
.ws25{word-spacing:-14.520533pt;}
.ws26{word-spacing:-14.480000pt;}
.ws18{word-spacing:-14.208000pt;}
.ws20{word-spacing:-14.200533pt;}
.ws19{word-spacing:-14.080000pt;}
.ws1c{word-spacing:-13.360000pt;}
.ws9{word-spacing:-12.640000pt;}
.ws4{word-spacing:-10.800000pt;}
.wsf{word-spacing:-10.640000pt;}
.ws10{word-spacing:-10.636160pt;}
.ws1a{word-spacing:-9.996800pt;}
.ws27{word-spacing:-9.360000pt;}
.ws17{word-spacing:-0.128000pt;}
.ws1b{word-spacing:-0.064000pt;}
.wse{word-spacing:0.000000pt;}
.ws15{word-spacing:0.192000pt;}
.ws16{word-spacing:6.522880pt;}
.ws22{word-spacing:10.112000pt;}
.ws12{word-spacing:10.218667pt;}
._1{margin-left:-32.048000pt;}
._19{margin-left:-28.800000pt;}
._1b{margin-left:-27.904000pt;}
._32{margin-left:-25.879680pt;}
._2a{margin-left:-23.680000pt;}
._3{margin-left:-20.949333pt;}
._4{margin-left:-18.282667pt;}
._0{margin-left:-17.365333pt;}
._28{margin-left:-14.240000pt;}
._11{margin-left:-12.842667pt;}
._31{margin-left:-11.620800pt;}
._2e{margin-left:-4.720427pt;}
._1d{margin-left:-3.584000pt;}
._7{margin-left:-2.666667pt;}
._6{margin-left:-1.749333pt;}
._8{width:0.917333pt;}
._1a{width:1.856000pt;}
._d{width:2.814507pt;}
._14{width:4.077653pt;}
._a{width:5.717333pt;}
._9{width:6.698667pt;}
._18{width:7.680000pt;}
._1e{width:8.682667pt;}
._2b{width:9.621333pt;}
._20{width:10.538667pt;}
._1f{width:11.456000pt;}
._25{width:12.522667pt;}
._10{width:13.418667pt;}
._21{width:14.656000pt;}
._2d{width:16.192000pt;}
._12{width:17.322667pt;}
._23{width:18.325333pt;}
._13{width:19.242667pt;}
._c{width:20.501333pt;}
._b{width:21.482667pt;}
._24{width:22.698667pt;}
._22{width:24.042667pt;}
._f{width:25.130667pt;}
._e{width:26.090667pt;}
._5{width:27.840000pt;}
._1c{width:29.013333pt;}
._27{width:32.469333pt;}
._26{width:33.450667pt;}
._2f{width:34.560000pt;}
._30{width:35.968000pt;}
._29{width:36.970667pt;}
._2{width:38.400000pt;}
._33{width:42.794667pt;}
._34{width:43.904000pt;}
._35{width:45.717333pt;}
._17{width:46.762667pt;}
._2c{width:47.744000pt;}
._15{width:752.106667pt;}
._16{width:2064.896000pt;}
.fsa{font-size:37.440000pt;}
.fs5{font-size:42.560000pt;}
.fs8{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs1{font-size:53.440000pt;}
.fs9{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:77.440000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:170.560000pt;}
.yf9{bottom:-6.000000pt;}
.ybe{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:2.880000pt;}
.yb0{bottom:3.600000pt;}
.yc3{bottom:3.840000pt;}
.ybf{bottom:3.920000pt;}
.yec{bottom:3.997333pt;}
.ye0{bottom:4.000000pt;}
.yf1{bottom:5.920000pt;}
.yae{bottom:11.600000pt;}
.yf3{bottom:14.000000pt;}
.yaf{bottom:17.600000pt;}
.y28{bottom:37.946667pt;}
.yad{bottom:41.280000pt;}
.y10b{bottom:69.786667pt;}
.yd8{bottom:69.946667pt;}
.y94{bottom:74.746667pt;}
.y111{bottom:80.586667pt;}
.y123{bottom:86.506667pt;}
.y4f{bottom:89.786667pt;}
.y74{bottom:91.786667pt;}
.y10a{bottom:92.506667pt;}
.yd7{bottom:92.586667pt;}
.y93{bottom:93.146667pt;}
.ybc{bottom:93.466667pt;}
.y133{bottom:94.506667pt;}
.y110{bottom:103.226667pt;}
.y122{bottom:109.146667pt;}
.yed{bottom:111.146667pt;}
.ybb{bottom:111.786667pt;}
.y4e{bottom:112.506667pt;}
.y73{bottom:114.506667pt;}
.yd6{bottom:115.306667pt;}
.y92{bottom:115.786667pt;}
.y132{bottom:117.146667pt;}
.y23{bottom:125.786667pt;}
.yeb{bottom:127.229333pt;}
.y109{bottom:131.066667pt;}
.y121{bottom:131.786667pt;}
.yba{bottom:134.506667pt;}
.y4d{bottom:135.146667pt;}
.y72{bottom:137.146667pt;}
.yd5{bottom:137.946667pt;}
.y10f{bottom:138.346667pt;}
.y91{bottom:138.506667pt;}
.y131{bottom:139.786667pt;}
.y22{bottom:144.266667pt;}
.yea{bottom:147.226667pt;}
.y120{bottom:154.506667pt;}
.yb9{bottom:157.146667pt;}
.y4c{bottom:157.786667pt;}
.y71{bottom:159.786667pt;}
.yd4{bottom:160.586667pt;}
.y90{bottom:161.146667pt;}
.y130{bottom:162.506667pt;}
.y21{bottom:166.986667pt;}
.ye9{bottom:167.226667pt;}
.y108{bottom:169.786667pt;}
.y11f{bottom:177.146667pt;}
.yb8{bottom:179.786667pt;}
.y4b{bottom:180.506667pt;}
.y70{bottom:182.506667pt;}
.y8f{bottom:183.786667pt;}
.y12f{bottom:185.146667pt;}
.ye8{bottom:187.226667pt;}
.y20{bottom:189.626667pt;}
.y107{bottom:192.506667pt;}
.yd3{bottom:195.706667pt;}
.y11e{bottom:199.786667pt;}
.yb7{bottom:202.506667pt;}
.y4a{bottom:203.146667pt;}
.y6f{bottom:205.146667pt;}
.y8e{bottom:206.506667pt;}
.y12e{bottom:207.786667pt;}
.ye7{bottom:207.946667pt;}
.y1f{bottom:212.266667pt;}
.y106{bottom:215.146667pt;}
.y11d{bottom:222.506667pt;}
.yb6{bottom:225.146667pt;}
.y49{bottom:225.786667pt;}
.y6e{bottom:227.786667pt;}
.y12d{bottom:230.506667pt;}
.y1e{bottom:234.986667pt;}
.y105{bottom:237.786667pt;}
.ye6{bottom:240.906667pt;}
.y8d{bottom:245.066667pt;}
.y11c{bottom:245.146667pt;}
.yb5{bottom:247.786667pt;}
.y48{bottom:248.506667pt;}
.y6d{bottom:250.506667pt;}
.y12c{bottom:253.146667pt;}
.y1d{bottom:257.626667pt;}
.y104{bottom:260.506667pt;}
.y11b{bottom:267.786667pt;}
.yb4{bottom:270.506667pt;}
.y47{bottom:271.146667pt;}
.y6c{bottom:273.146667pt;}
.y12b{bottom:275.786667pt;}
.ye5{bottom:279.546667pt;}
.y1c{bottom:280.266667pt;}
.y103{bottom:283.146667pt;}
.y8c{bottom:283.786667pt;}
.y11a{bottom:290.506667pt;}
.yb3{bottom:293.146667pt;}
.y46{bottom:293.786667pt;}
.y6b{bottom:295.786667pt;}
.y12a{bottom:298.506667pt;}
.y1b{bottom:302.986667pt;}
.y102{bottom:305.786667pt;}
.y8b{bottom:306.506667pt;}
.ye4{bottom:314.586667pt;}
.yb2{bottom:315.786667pt;}
.y45{bottom:316.506667pt;}
.y6a{bottom:318.506667pt;}
.y129{bottom:321.146667pt;}
.y1a{bottom:325.626667pt;}
.y101{bottom:328.506667pt;}
.y119{bottom:328.986667pt;}
.y8a{bottom:329.146667pt;}
.yb1{bottom:338.506667pt;}
.y44{bottom:339.146667pt;}
.y69{bottom:341.146667pt;}
.y128{bottom:343.786667pt;}
.y19{bottom:348.266667pt;}
.y100{bottom:351.146667pt;}
.y89{bottom:351.786667pt;}
.yac{bottom:357.546667pt;}
.y43{bottom:361.786667pt;}
.y127{bottom:366.506667pt;}
.y118{bottom:367.786667pt;}
.y18{bottom:370.986667pt;}
.yff{bottom:373.786667pt;}
.y88{bottom:374.506667pt;}
.y68{bottom:379.706667pt;}
.y42{bottom:384.506667pt;}
.y126{bottom:389.146667pt;}
.y17{bottom:393.626667pt;}
.yfe{bottom:396.506667pt;}
.y87{bottom:397.146667pt;}
.y117{bottom:406.373333pt;}
.y41{bottom:407.173333pt;}
.y10e{bottom:410.773333pt;}
.y125{bottom:411.813333pt;}
.y67{bottom:418.373333pt;}
.yfd{bottom:419.173333pt;}
.y86{bottom:419.813333pt;}
.yab{bottom:422.533333pt;}
.y40{bottom:429.813333pt;}
.y10d{bottom:433.413333pt;}
.y16{bottom:434.213333pt;}
.y124{bottom:434.533333pt;}
.yfc{bottom:441.813333pt;}
.y85{bottom:442.533333pt;}
.yaa{bottom:445.173333pt;}
.y3f{bottom:452.533333pt;}
.y15{bottom:456.933333pt;}
.y66{bottom:457.173333pt;}
.y84{bottom:465.173333pt;}
.ya9{bottom:467.813333pt;}
.y10c{bottom:468.533333pt;}
.y3e{bottom:475.173333pt;}
.yfb{bottom:478.213333pt;}
.y65{bottom:479.813333pt;}
.y83{bottom:487.813333pt;}
.ya8{bottom:490.533333pt;}
.y14{bottom:495.653333pt;}
.y3d{bottom:497.813333pt;}
.yfa{bottom:498.213333pt;}
.y64{bottom:502.533333pt;}
.yd2{bottom:510.533333pt;}
.ya7{bottom:513.173333pt;}
.yf8{bottom:518.213333pt;}
.y3c{bottom:520.533333pt;}
.y63{bottom:525.173333pt;}
.y82{bottom:526.453333pt;}
.y136{bottom:531.813333pt;}
.y13{bottom:534.293333pt;}
.ya6{bottom:535.813333pt;}
.yf7{bottom:538.853333pt;}
.y3b{bottom:543.173333pt;}
.yd1{bottom:546.853333pt;}
.y62{bottom:547.813333pt;}
.y116{bottom:551.653333pt;}
.y135{bottom:554.533333pt;}
.y12{bottom:557.013333pt;}
.ye3{bottom:558.213333pt;}
.ya5{bottom:558.533333pt;}
.yf6{bottom:558.853333pt;}
.y81{bottom:565.173333pt;}
.y3a{bottom:565.813333pt;}
.yd0{bottom:566.213333pt;}
.y61{bottom:570.533333pt;}
.y134{bottom:577.173333pt;}
.ye2{bottom:578.213333pt;}
.yf5{bottom:578.853333pt;}
.ycf{bottom:585.573333pt;}
.y80{bottom:587.813333pt;}
.y39{bottom:588.533333pt;}
.y115{bottom:590.533333pt;}
.y60{bottom:593.173333pt;}
.y11{bottom:595.653333pt;}
.ya4{bottom:597.013333pt;}
.ye1{bottom:598.213333pt;}
.yf2{bottom:599.573333pt;}
.yce{bottom:604.853333pt;}
.y7f{bottom:610.533333pt;}
.y38{bottom:611.173333pt;}
.y114{bottom:613.173333pt;}
.y5f{bottom:615.813333pt;}
.y10{bottom:618.293333pt;}
.ydf{bottom:618.853333pt;}
.yf4{bottom:619.573333pt;}
.ycd{bottom:624.853333pt;}
.y37{bottom:633.813333pt;}
.ya3{bottom:635.813333pt;}
.y5e{bottom:638.533333pt;}
.yf0{bottom:639.573333pt;}
.yf{bottom:647.013333pt;}
.y7e{bottom:649.093333pt;}
.yde{bottom:651.813333pt;}
.y36{bottom:656.533333pt;}
.ycc{bottom:657.173333pt;}
.ya2{bottom:658.533333pt;}
.y5d{bottom:661.173333pt;}
.ye{bottom:663.653333pt;}
.yef{bottom:674.533333pt;}
.y35{bottom:679.173333pt;}
.ya1{bottom:681.173333pt;}
.y5c{bottom:683.813333pt;}
.y7d{bottom:687.813333pt;}
.ydd{bottom:690.533333pt;}
.yd{bottom:692.293333pt;}
.ycb{bottom:695.813333pt;}
.y113{bottom:697.013333pt;}
.yee{bottom:697.173333pt;}
.y34{bottom:701.813333pt;}
.ya0{bottom:703.813333pt;}
.y5b{bottom:706.533333pt;}
.y7c{bottom:710.533333pt;}
.ydc{bottom:713.173333pt;}
.yca{bottom:718.533333pt;}
.y33{bottom:724.533333pt;}
.yc{bottom:724.853333pt;}
.y9f{bottom:726.533333pt;}
.y5a{bottom:729.173333pt;}
.ydb{bottom:735.813333pt;}
.yc9{bottom:741.173333pt;}
.y32{bottom:747.173333pt;}
.yb{bottom:747.493333pt;}
.y7b{bottom:749.093333pt;}
.y59{bottom:751.813333pt;}
.yda{bottom:758.533333pt;}
.yc8{bottom:763.813333pt;}
.y9e{bottom:765.093333pt;}
.y31{bottom:769.813333pt;}
.y58{bottom:774.533333pt;}
.yd9{bottom:781.173333pt;}
.yc7{bottom:786.533333pt;}
.y7a{bottom:787.813333pt;}
.ya{bottom:787.973333pt;}
.y30{bottom:792.533333pt;}
.y57{bottom:797.173333pt;}
.y9d{bottom:803.813333pt;}
.yc6{bottom:809.173333pt;}
.y79{bottom:810.533333pt;}
.y2f{bottom:815.173333pt;}
.y9{bottom:815.573333pt;}
.y56{bottom:819.813333pt;}
.y9c{bottom:826.533333pt;}
.yc5{bottom:831.813333pt;}
.y78{bottom:833.173333pt;}
.y2e{bottom:837.813333pt;}
.y55{bottom:842.533333pt;}
.y8{bottom:843.173333pt;}
.y9b{bottom:849.173333pt;}
.y77{bottom:855.813333pt;}
.y2d{bottom:860.533333pt;}
.y54{bottom:865.173333pt;}
.yc4{bottom:868.213333pt;}
.y7{bottom:870.773333pt;}
.y9a{bottom:871.813333pt;}
.y76{bottom:878.533333pt;}
.yc2{bottom:887.600000pt;}
.y53{bottom:887.840000pt;}
.y99{bottom:894.560000pt;}
.y2c{bottom:899.040000pt;}
.yc1{bottom:906.880000pt;}
.y52{bottom:910.560000pt;}
.y6{bottom:912.640000pt;}
.y75{bottom:917.120000pt;}
.y98{bottom:917.200000pt;}
.yc0{bottom:926.240000pt;}
.y51{bottom:933.200000pt;}
.y5{bottom:935.440000pt;}
.y97{bottom:939.840000pt;}
.ybd{bottom:946.240000pt;}
.y4{bottom:953.680000pt;}
.y2b{bottom:955.760000pt;}
.y50{bottom:955.840000pt;}
.y96{bottom:962.560000pt;}
.y3{bottom:977.840000pt;}
.y2a{bottom:978.560000pt;}
.y112{bottom:1001.040000pt;}
.y95{bottom:1001.120000pt;}
.y29{bottom:1001.200000pt;}
.y2{bottom:1017.680000pt;}
.y24{bottom:1018.160000pt;}
.y27{bottom:1023.840000pt;}
.y1{bottom:1037.040000pt;}
.y26{bottom:1046.560000pt;}
.h9{height:15.280000pt;}
.h15{height:19.280000pt;}
.h12{height:19.360000pt;}
.h16{height:19.386667pt;}
.h19{height:19.997333pt;}
.h17{height:20.000000pt;}
.h1a{height:22.000000pt;}
.hf{height:31.750312pt;}
.hd{height:33.539062pt;}
.h10{height:38.812500pt;}
.h1b{height:40.000000pt;}
.h8{height:41.770312pt;}
.h11{height:44.437500pt;}
.he{height:44.718750pt;}
.h3{height:52.448437pt;}
.ha{height:53.857500pt;}
.h14{height:57.473437pt;}
.h13{height:59.017500pt;}
.h1c{height:59.172500pt;}
.h18{height:60.745313pt;}
.hc{height:61.300000pt;}
.h6{height:62.781250pt;}
.h5{height:62.812500pt;}
.h2{height:64.500000pt;}
.hb{height:65.770312pt;}
.h1d{height:65.781915pt;}
.h7{height:96.750000pt;}
.h4{height:167.312031pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:42.880000pt;}
.w13{width:60.900000pt;}
.w15{width:74.720000pt;}
.w8{width:75.546667pt;}
.w11{width:89.200000pt;}
.w12{width:94.800000pt;}
.we{width:97.600000pt;}
.w2{width:105.709333pt;}
.wb{width:113.220000pt;}
.w14{width:113.280000pt;}
.wc{width:119.040000pt;}
.w7{width:132.240000pt;}
.w6{width:132.340000pt;}
.w9{width:173.293333pt;}
.wa{width:173.360000pt;}
.w5{width:180.160000pt;}
.w10{width:188.000000pt;}
.wd{width:209.066667pt;}
.wf{width:244.906667pt;}
.w3{width:628.480000pt;}
.w1{width:794.000000pt;}
.w0{width:794.160000pt;}
.x0{left:0.000000pt;}
.x9{left:6.400000pt;}
.x1c{left:10.880000pt;}
.x2a{left:14.160000pt;}
.x1f{left:16.560000pt;}
.x21{left:17.760000pt;}
.x1a{left:21.040000pt;}
.x33{left:23.680000pt;}
.x19{left:24.880000pt;}
.x2d{left:26.560000pt;}
.x37{left:30.320000pt;}
.x16{left:31.600000pt;}
.x14{left:33.280000pt;}
.x1b{left:35.520000pt;}
.x20{left:36.560000pt;}
.x10{left:38.240000pt;}
.x3a{left:40.880000pt;}
.x1e{left:44.880000pt;}
.x2c{left:47.680000pt;}
.x1d{left:49.600000pt;}
.x25{left:51.600000pt;}
.x18{left:53.280000pt;}
.xa{left:61.440000pt;}
.x1{left:66.160000pt;}
.x31{left:70.240000pt;}
.x26{left:73.840000pt;}
.x6{left:85.120000pt;}
.x12{left:90.080000pt;}
.x3d{left:96.400000pt;}
.x22{left:102.320000pt;}
.x7{left:104.000000pt;}
.x28{left:120.080000pt;}
.x2f{left:128.080000pt;}
.x11{left:136.986667pt;}
.x34{left:180.666667pt;}
.xc{left:213.866667pt;}
.x23{left:223.786667pt;}
.x30{left:243.786667pt;}
.xb{left:256.506667pt;}
.xd{left:265.066667pt;}
.x36{left:269.866667pt;}
.x29{left:280.986667pt;}
.x13{left:317.146667pt;}
.x38{left:364.666667pt;}
.x2b{left:394.213333pt;}
.x24{left:397.093333pt;}
.x35{left:425.573333pt;}
.xe{left:446.533333pt;}
.x15{left:449.493333pt;}
.x32{left:452.853333pt;}
.x5{left:523.733333pt;}
.x2e{left:531.733333pt;}
.x27{left:535.813333pt;}
.x39{left:538.853333pt;}
.x17{left:581.733333pt;}
.x3{left:597.733333pt;}
.x3b{left:602.533333pt;}
.x3c{left:606.533333pt;}
.x4{left:619.253333pt;}
.x8{left:622.213333pt;}
.xf{left:689.920000pt;}
.x2{left:728.160000pt;}
}




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