
    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_9258f2a024ae92c0aada3b7a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.255859;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_668637cab947886c32644a10.woff')format("woff");}.ff2{font-family:ff2;line-height:1.099609;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_59dbdede0d9cd309accccfb5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.255859;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_7e6e76ab783edcc80a39c33e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_c3bd0cf00d555d435347b703.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f7071a690b8a39ce46d9e6d1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.375000;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_b56b360fdbe706d08a1c3dcc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.375000;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_8343fef8bbc28a8a70cd6ff2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.099609;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_3c5e74a72025b5a78cfe4e6e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.325684;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_51621d698e91f1a55be6b39b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.325684;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:-83.880000px;}
.v2{vertical-align:-79.920000px;}
.v4{vertical-align:-6.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.120000px;}
.ls57{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.288000px;}
.ls4c{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.165600px;}
.ls15{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.112200px;}
.ls17{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.059760px;}
.ls4d{letter-spacing:-0.045360px;}
.ls9{letter-spacing:-0.031680px;}
.lsb{letter-spacing:-0.027000px;}
.ls20{letter-spacing:-0.000003px;}
.ls8{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000001px;}
.ls58{letter-spacing:0.000003px;}
.ls1{letter-spacing:0.015480px;}
.ls18{letter-spacing:0.026280px;}
.ls6{letter-spacing:0.027000px;}
.ls52{letter-spacing:0.048000px;}
.ls16{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.097200px;}
.ls1f{letter-spacing:0.133200px;}
.ls2{letter-spacing:0.144000px;}
.lse{letter-spacing:0.153600px;}
.ls3b{letter-spacing:0.155400px;}
.ls3{letter-spacing:0.166200px;}
.ls4{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.288000px;}
.ls56{letter-spacing:0.360000px;}
.ls59{letter-spacing:0.408000px;}
.ls30{letter-spacing:0.432000px;}
.ls47{letter-spacing:0.504000px;}
.ls45{letter-spacing:0.648000px;}
.ls21{letter-spacing:1.008000px;}
.ls5a{letter-spacing:1.296000px;}
.ls39{letter-spacing:1.368000px;}
.ls54{letter-spacing:1.728000px;}
.ls49{letter-spacing:2.088000px;}
.ls5{letter-spacing:2.186280px;}
.ls22{letter-spacing:2.376000px;}
.ls26{letter-spacing:2.448000px;}
.ls4a{letter-spacing:3.096000px;}
.ls1c{letter-spacing:3.168000px;}
.ls14{letter-spacing:3.888000px;}
.ls37{letter-spacing:4.176000px;}
.ls1a{letter-spacing:4.248000px;}
.ls4b{letter-spacing:4.608000px;}
.ls31{letter-spacing:4.968000px;}
.ls38{letter-spacing:5.256000px;}
.ls29{letter-spacing:5.328000px;}
.ls4f{letter-spacing:6.048000px;}
.ls48{letter-spacing:6.768000px;}
.ls36{letter-spacing:7.128000px;}
.ls44{letter-spacing:7.488000px;}
.ls43{letter-spacing:7.848000px;}
.ls24{letter-spacing:8.208000px;}
.ls12{letter-spacing:8.280000px;}
.ls0{letter-spacing:8.666280px;}
.ls40{letter-spacing:10.296000px;}
.ls32{letter-spacing:10.728000px;}
.ls28{letter-spacing:11.088000px;}
.ls3f{letter-spacing:11.448000px;}
.ls50{letter-spacing:11.808000px;}
.ls27{letter-spacing:12.096000px;}
.ls2e{letter-spacing:12.528000px;}
.ls3d{letter-spacing:12.888000px;}
.ls55{letter-spacing:13.248000px;}
.ls1b{letter-spacing:13.608000px;}
.ls2a{letter-spacing:13.968000px;}
.ls34{letter-spacing:14.328000px;}
.ls33{letter-spacing:14.448000px;}
.ls3c{letter-spacing:15.768000px;}
.ls35{letter-spacing:16.128000px;}
.ls4e{letter-spacing:16.848000px;}
.ls3a{letter-spacing:17.208000px;}
.ls42{letter-spacing:17.496000px;}
.ls41{letter-spacing:17.616000px;}
.ls2b{letter-spacing:18.000000px;}
.ls23{letter-spacing:20.448000px;}
.ls3e{letter-spacing:20.808000px;}
.ls2f{letter-spacing:21.528000px;}
.ls25{letter-spacing:24.408000px;}
.ls53{letter-spacing:24.768000px;}
.ls51{letter-spacing:25.128000px;}
.ls1d{letter-spacing:26.109720px;}
.ls7{letter-spacing:29.186280px;}
.ls46{letter-spacing:30.168000px;}
.ls1e{letter-spacing:150.168000px;}
.ls2d{letter-spacing:191.568000px;}
.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;}
}
.ws4{word-spacing:-23.667480px;}
.ws3{word-spacing:-23.570280px;}
.ws2e{word-spacing:-20.664000px;}
.ws30{word-spacing:-20.592000px;}
.ws2c{word-spacing:-20.448000px;}
.ws10{word-spacing:-20.376000px;}
.ws17{word-spacing:-20.304000px;}
.ws2f{word-spacing:-20.232001px;}
.ws5{word-spacing:-20.232000px;}
.ws15{word-spacing:-20.160000px;}
.ws11{word-spacing:-20.088000px;}
.ws2a{word-spacing:-20.016000px;}
.ws12{word-spacing:-19.944000px;}
.ws2b{word-spacing:-19.872000px;}
.ws13{word-spacing:-19.296000px;}
.ws18{word-spacing:-18.792000px;}
.ws9{word-spacing:-18.678480px;}
.ws8{word-spacing:-18.665880px;}
.ws7{word-spacing:-18.512280px;}
.ws27{word-spacing:-18.216000px;}
.ws23{word-spacing:-18.072000px;}
.ws1e{word-spacing:-18.000000px;}
.ws1b{word-spacing:-17.928000px;}
.ws20{word-spacing:-17.856000px;}
.ws2d{word-spacing:-17.784003px;}
.ws14{word-spacing:-17.784000px;}
.ws22{word-spacing:-17.712000px;}
.ws1d{word-spacing:-17.640000px;}
.ws0{word-spacing:-17.073720px;}
.ws1{word-spacing:-16.893720px;}
.ws26{word-spacing:-16.862040px;}
.ws2{word-spacing:-16.713720px;}
.ws29{word-spacing:-16.272000px;}
.wsa{word-spacing:-16.232400px;}
.ws28{word-spacing:-16.128000px;}
.wse{word-spacing:-16.066800px;}
.wsb{word-spacing:-14.849640px;}
.wsd{word-spacing:-14.789880px;}
.ws1c{word-spacing:-11.991120px;}
.ws16{word-spacing:-11.835720px;}
.wsf{word-spacing:0.000000px;}
.ws1f{word-spacing:0.048000px;}
.wsc{word-spacing:0.081720px;}
.ws1a{word-spacing:0.288000px;}
.ws6{word-spacing:0.648000px;}
.ws19{word-spacing:0.768000px;}
.ws25{word-spacing:7.993080px;}
.ws24{word-spacing:9.432000px;}
.ws21{word-spacing:9.576000px;}
._21{margin-left:-8.675760px;}
._20{margin-left:-6.881520px;}
._22{margin-left:-5.810400px;}
._1f{margin-left:-4.806120px;}
._1d{margin-left:-2.739240px;}
._0{margin-left:-1.082160px;}
._7{width:1.029000px;}
._10{width:2.164320px;}
._d{width:3.480600px;}
._9{width:4.569120px;}
._4{width:5.591160px;}
._a{width:6.613200px;}
._1{width:7.755480px;}
._2{width:8.885760px;}
._5{width:10.427760px;}
._c{width:12.264480px;}
._3{width:13.406760px;}
._1b{width:14.496720px;}
._13{width:15.696000px;}
._14{width:16.755000px;}
._8{width:18.096120px;}
._18{width:19.127520px;}
._11{width:21.402720px;}
._1e{width:22.728000px;}
._15{width:24.264000px;}
._b{width:25.851600px;}
._16{width:27.284400px;}
._12{width:28.363800px;}
._17{width:29.664000px;}
._f{width:30.913560px;}
._e{width:31.947840px;}
._23{width:33.240000px;}
._19{width:34.920000px;}
._1a{width:35.928000px;}
._1c{width:38.736000px;}
._26{width:40.083000px;}
._24{width:41.232000px;}
._25{width:54.912000px;}
._6{width:959.374080px;}
.fc1{color:rgb(70,120,134);}
.fc5{color:rgb(44,44,44);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(13,13,13);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fs7{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y5{bottom:23.310000px;}
.y4{bottom:40.050000px;}
.y3{bottom:56.700000px;}
.y2{bottom:73.350000px;}
.y3e{bottom:76.230000px;}
.y10{bottom:93.420000px;}
.y3d{bottom:95.220000px;}
.yf{bottom:113.670000px;}
.y74{bottom:116.190000px;}
.y85{bottom:118.080000px;}
.y81{bottom:120.060000px;}
.y73{bottom:121.410000px;}
.y112{bottom:125.370000px;}
.y7e{bottom:132.840000px;}
.y72{bottom:133.830000px;}
.yd9{bottom:136.710000px;}
.y84{bottom:138.150000px;}
.y80{bottom:140.040000px;}
.yf1{bottom:145.800000px;}
.y7d{bottom:149.580000px;}
.y7f{bottom:150.570000px;}
.y89{bottom:151.110000px;}
.ye{bottom:153.630000px;}
.y111{bottom:154.350000px;}
.yb1{bottom:155.340000px;}
.yd8{bottom:156.780000px;}
.y83{bottom:158.130000px;}
.y71{bottom:160.110000px;}
.yf0{bottom:165.870000px;}
.y7c{bottom:166.230000px;}
.yd{bottom:170.370000px;}
.y88{bottom:171.090000px;}
.y110{bottom:174.420000px;}
.yb0{bottom:175.320000px;}
.yd7{bottom:176.760000px;}
.y136{bottom:177.480000px;}
.y82{bottom:178.290000px;}
.y70{bottom:180.090000px;}
.y7b{bottom:182.970000px;}
.yc{bottom:187.020000px;}
.y7a{bottom:188.190000px;}
.y87{bottom:191.160000px;}
.yef{bottom:194.850000px;}
.yaf{bottom:195.390000px;}
.yd6{bottom:196.830000px;}
.y135{bottom:197.460000px;}
.y79{bottom:199.620000px;}
.y6f{bottom:200.160000px;}
.y10f{bottom:203.400000px;}
.yb{bottom:203.670000px;}
.yee{bottom:214.950000px;}
.yae{bottom:215.400000px;}
.y78{bottom:216.300000px;}
.yd5{bottom:216.840000px;}
.y134{bottom:217.560000px;}
.y6e{bottom:220.170000px;}
.ya{bottom:220.440000px;}
.y77{bottom:221.520000px;}
.y10e{bottom:223.410000px;}
.y76{bottom:233.940000px;}
.yed{bottom:234.930000px;}
.y9{bottom:237.090000px;}
.y6d{bottom:240.240000px;}
.yad{bottom:244.650000px;}
.yd4{bottom:245.910000px;}
.y133{bottom:246.540000px;}
.y10d{bottom:252.480000px;}
.y8{bottom:253.740000px;}
.y6c{bottom:260.220000px;}
.yec{bottom:263.910000px;}
.yd3{bottom:265.890000px;}
.yac{bottom:266.430000px;}
.y132{bottom:266.610000px;}
.y10c{bottom:272.460000px;}
.y6b{bottom:280.290000px;}
.yeb{bottom:283.980000px;}
.yd2{bottom:285.960000px;}
.y75{bottom:286.320000px;}
.yab{bottom:286.410000px;}
.y131{bottom:286.590000px;}
.y7{bottom:287.040000px;}
.y10b{bottom:292.530000px;}
.y6a{bottom:300.270000px;}
.yd1{bottom:305.940000px;}
.yaa{bottom:306.480000px;}
.y3c{bottom:308.640000px;}
.yea{bottom:312.960000px;}
.y130{bottom:315.570000px;}
.y69{bottom:320.250000px;}
.y10a{bottom:321.510000px;}
.ya9{bottom:326.460000px;}
.ye9{bottom:333.030000px;}
.yd0{bottom:335.010000px;}
.y12f{bottom:335.640000px;}
.y68{bottom:340.320000px;}
.y109{bottom:341.580000px;}
.y3b{bottom:342.210000px;}
.ycf{bottom:354.990000px;}
.ya8{bottom:355.530000px;}
.y67{bottom:360.300000px;}
.y3a{bottom:361.380000px;}
.ye8{bottom:362.010000px;}
.y12e{bottom:364.620000px;}
.y108{bottom:370.560000px;}
.ya7{bottom:375.510000px;}
.y39{bottom:378.120000px;}
.yce{bottom:379.470000px;}
.y66{bottom:380.370000px;}
.ye7{bottom:382.080000px;}
.y107{bottom:390.630000px;}
.y12d{bottom:393.870000px;}
.y38{bottom:394.770000px;}
.ya6{bottom:395.580000px;}
.y65{bottom:400.350000px;}
.ye6{bottom:406.560000px;}
.ycd{bottom:408.540000px;}
.y37{bottom:411.510000px;}
.ya5{bottom:415.560000px;}
.y12c{bottom:415.650000px;}
.y106{bottom:419.610000px;}
.y64{bottom:420.420000px;}
.ye5{bottom:426.630000px;}
.y36{bottom:428.160000px;}
.ycc{bottom:428.520000px;}
.ya4{bottom:435.630000px;}
.y63{bottom:440.400000px;}
.y35{bottom:444.810000px;}
.ycb{bottom:448.590000px;}
.y105{bottom:448.680000px;}
.ye4{bottom:455.610000px;}
.y62{bottom:460.470000px;}
.y34{bottom:461.550000px;}
.ya3{bottom:464.610000px;}
.y12b{bottom:464.880000px;}
.y104{bottom:468.660000px;}
.ye3{bottom:475.680000px;}
.yca{bottom:477.570000px;}
.y33{bottom:478.200000px;}
.y61{bottom:480.450000px;}
.ya2{bottom:484.680000px;}
.y12a{bottom:486.660000px;}
.y32{bottom:494.940000px;}
.ye2{bottom:495.660000px;}
.yc9{bottom:497.640000px;}
.y103{bottom:497.730000px;}
.y60{bottom:500.520000px;}
.ya1{bottom:504.660000px;}
.y129{bottom:506.730000px;}
.y31{bottom:511.590000px;}
.yc8{bottom:517.620000px;}
.y102{bottom:517.710000px;}
.y5f{bottom:520.500000px;}
.ya0{bottom:524.730000px;}
.ye1{bottom:524.820000px;}
.y30{bottom:528.240000px;}
.y128{bottom:535.710000px;}
.y101{bottom:537.690000px;}
.y5e{bottom:540.570000px;}
.y2f{bottom:544.980000px;}
.yc7{bottom:546.690000px;}
.y9f{bottom:553.710000px;}
.y127{bottom:555.690000px;}
.y5d{bottom:560.550000px;}
.y2e{bottom:561.630000px;}
.yc6{bottom:566.670000px;}
.y100{bottom:566.760000px;}
.y13f{bottom:568.650000px;}
.y9e{bottom:573.690000px;}
.y126{bottom:575.760000px;}
.y2d{bottom:578.280000px;}
.y5c{bottom:580.530000px;}
.y86{bottom:586.560000px;}
.yc5{bottom:586.740000px;}
.y13e{bottom:588.630000px;}
.y9d{bottom:593.760000px;}
.y2c{bottom:595.020000px;}
.ye0{bottom:595.830000px;}
.y5a{bottom:600.600000px;}
.y125{bottom:604.740000px;}
.y5b{bottom:606.630000px;}
.y2b{bottom:611.670000px;}
.yc4{bottom:615.720000px;}
.yff{bottom:615.810000px;}
.ydf{bottom:617.700000px;}
.y59{bottom:620.580000px;}
.y9c{bottom:622.740000px;}
.y124{bottom:624.810000px;}
.y2a{bottom:628.410000px;}
.yc3{bottom:635.820000px;}
.yde{bottom:637.710000px;}
.y58{bottom:640.680000px;}
.y9b{bottom:642.840000px;}
.y29{bottom:645.090000px;}
.y123{bottom:653.820000px;}
.yc2{bottom:655.800000px;}
.ydd{bottom:657.780000px;}
.y57{bottom:660.660000px;}
.y28{bottom:661.740000px;}
.yfe{bottom:664.980000px;}
.y13d{bottom:666.780000px;}
.y9a{bottom:671.820000px;}
.y122{bottom:673.890000px;}
.ydc{bottom:677.760000px;}
.y27{bottom:678.480000px;}
.y56{bottom:680.730000px;}
.yc1{bottom:684.960000px;}
.y13c{bottom:686.760000px;}
.yfd{bottom:686.850000px;}
.y99{bottom:691.890000px;}
.y121{bottom:693.870000px;}
.y26{bottom:695.130000px;}
.ydb{bottom:697.830000px;}
.y55{bottom:700.710000px;}
.yc0{bottom:706.830000px;}
.y25{bottom:711.870000px;}
.y13b{bottom:715.830000px;}
.y54{bottom:720.780000px;}
.y120{bottom:723.030000px;}
.ybf{bottom:726.810000px;}
.y24{bottom:728.520000px;}
.y98{bottom:731.940000px;}
.y13a{bottom:735.810000px;}
.yfc{bottom:735.900000px;}
.y53{bottom:740.760000px;}
.y11f{bottom:744.900000px;}
.y23{bottom:745.170000px;}
.ybe{bottom:746.790000px;}
.yfb{bottom:755.880000px;}
.y52{bottom:760.830000px;}
.y97{bottom:761.100000px;}
.y22{bottom:761.910000px;}
.y139{bottom:764.790000px;}
.y11e{bottom:764.880000px;}
.ybd{bottom:775.860000px;}
.y21{bottom:778.560000px;}
.y51{bottom:780.810000px;}
.y96{bottom:782.880000px;}
.y138{bottom:784.860000px;}
.yfa{bottom:784.950000px;}
.y20{bottom:795.210000px;}
.ybc{bottom:795.840000px;}
.y50{bottom:800.790000px;}
.yf9{bottom:804.930000px;}
.y1f{bottom:811.950000px;}
.y95{bottom:812.040000px;}
.y137{bottom:813.840000px;}
.y11d{bottom:813.930000px;}
.ybb{bottom:815.910000px;}
.y4f{bottom:820.860000px;}
.yf8{bottom:825.000000px;}
.y1e{bottom:829.410000px;}
.y94{bottom:833.910000px;}
.y11c{bottom:834.000000px;}
.y4e{bottom:840.840000px;}
.yba{bottom:844.890000px;}
.y1d{bottom:849.030000px;}
.yf7{bottom:853.980000px;}
.y4d{bottom:860.910000px;}
.y93{bottom:862.890000px;}
.y11b{bottom:862.980000px;}
.yb9{bottom:864.960000px;}
.y1c{bottom:867.390000px;}
.yf6{bottom:874.050000px;}
.y4c{bottom:880.890000px;}
.y92{bottom:882.960000px;}
.y11a{bottom:883.050000px;}
.yb8{bottom:884.940000px;}
.y1b{bottom:885.750000px;}
.yda{bottom:893.940000px;}
.y4b{bottom:900.960000px;}
.y91{bottom:902.940000px;}
.yf5{bottom:903.210000px;}
.y1a{bottom:904.560000px;}
.y119{bottom:912.030000px;}
.yb7{bottom:914.010000px;}
.y4a{bottom:920.940000px;}
.y90{bottom:923.010000px;}
.y19{bottom:924.180000px;}
.yf4{bottom:924.990000px;}
.y118{bottom:932.100000px;}
.yb6{bottom:933.990000px;}
.y49{bottom:941.010000px;}
.y18{bottom:942.450000px;}
.y8f{bottom:942.990000px;}
.yb5{bottom:954.060000px;}
.y17{bottom:960.450000px;}
.y48{bottom:960.990000px;}
.y117{bottom:961.080000px;}
.y8e{bottom:963.060000px;}
.yf3{bottom:974.040000px;}
.y16{bottom:977.910000px;}
.y47{bottom:981.060000px;}
.yb4{bottom:983.040000px;}
.y8d{bottom:992.040000px;}
.y15{bottom:997.980000px;}
.y46{bottom:1001.040000px;}
.yb3{bottom:1003.110000px;}
.y116{bottom:1010.130000px;}
.y8c{bottom:1012.110000px;}
.y45{bottom:1021.110000px;}
.y14{bottom:1027.770000px;}
.y115{bottom:1030.110000px;}
.y8b{bottom:1032.090000px;}
.y44{bottom:1041.090000px;}
.y114{bottom:1050.180000px;}
.y13{bottom:1051.080000px;}
.y8a{bottom:1052.070000px;}
.y43{bottom:1061.100000px;}
.yb2{bottom:1072.170000px;}
.y12{bottom:1074.510000px;}
.y113{bottom:1079.370000px;}
.y42{bottom:1081.170000px;}
.yf2{bottom:1092.150000px;}
.y11{bottom:1096.650000px;}
.y41{bottom:1101.150000px;}
.y6{bottom:1115.550000px;}
.y40{bottom:1121.220000px;}
.y1{bottom:1134.180000px;}
.y3f{bottom:1141.200000px;}
.h11{height:36.826172px;}
.h10{height:43.086621px;}
.h4{height:51.929824px;}
.h6{height:55.239258px;}
.h3{height:61.499707px;}
.h7{height:61.793886px;}
.hc{height:62.191406px;}
.he{height:65.198496px;}
.h8{height:67.391895px;}
.h5{height:71.613281px;}
.ha{height:72.452988px;}
.hd{height:73.652344px;}
.hf{height:78.082031px;}
.hb{height:82.230469px;}
.h12{height:85.804980px;}
.h2{height:86.130000px;}
.h9{height:95.798496px;}
.h13{height:98.325879px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.850000px;}
.w4{width:329.700000px;}
.w2{width:331.890000px;}
.w6{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1{left:98.280000px;}
.x8{left:104.669987px;}
.x6{left:106.379987px;}
.xf{left:110.879987px;}
.xe{left:148.979987px;}
.x9{left:159.599987px;}
.x13{left:170.219987px;}
.x15{left:175.979987px;}
.x2{left:185.880000px;}
.x16{left:238.799973px;}
.x17{left:244.109987px;}
.xa{left:322.409987px;}
.x10{left:414.689973px;}
.x11{left:419.999987px;}
.x3{left:430.170000px;}
.x7{left:446.549987px;}
.x5{left:481.020000px;}
.xc{left:484.529973px;}
.xd{left:489.839987px;}
.x18{left:768.419987px;}
.xb{left:777.599987px;}
.x12{left:782.009987px;}
.x14{left:786.689987px;}
@media print{
.v1{vertical-align:-74.560000pt;}
.v2{vertical-align:-71.040000pt;}
.v4{vertical-align:-5.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.440000pt;}
.ls57{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls4c{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.147200pt;}
.ls15{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.099733pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.053120pt;}
.ls4d{letter-spacing:-0.040320pt;}
.ls9{letter-spacing:-0.028160pt;}
.lsb{letter-spacing:-0.024000pt;}
.ls20{letter-spacing:-0.000003pt;}
.ls8{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000001pt;}
.ls58{letter-spacing:0.000003pt;}
.ls1{letter-spacing:0.013760pt;}
.ls18{letter-spacing:0.023360pt;}
.ls6{letter-spacing:0.024000pt;}
.ls52{letter-spacing:0.042667pt;}
.ls16{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.086400pt;}
.ls1f{letter-spacing:0.118400pt;}
.ls2{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.136533pt;}
.ls3b{letter-spacing:0.138133pt;}
.ls3{letter-spacing:0.147733pt;}
.ls4{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.256000pt;}
.ls56{letter-spacing:0.320000pt;}
.ls59{letter-spacing:0.362667pt;}
.ls30{letter-spacing:0.384000pt;}
.ls47{letter-spacing:0.448000pt;}
.ls45{letter-spacing:0.576000pt;}
.ls21{letter-spacing:0.896000pt;}
.ls5a{letter-spacing:1.152000pt;}
.ls39{letter-spacing:1.216000pt;}
.ls54{letter-spacing:1.536000pt;}
.ls49{letter-spacing:1.856000pt;}
.ls5{letter-spacing:1.943360pt;}
.ls22{letter-spacing:2.112000pt;}
.ls26{letter-spacing:2.176000pt;}
.ls4a{letter-spacing:2.752000pt;}
.ls1c{letter-spacing:2.816000pt;}
.ls14{letter-spacing:3.456000pt;}
.ls37{letter-spacing:3.712000pt;}
.ls1a{letter-spacing:3.776000pt;}
.ls4b{letter-spacing:4.096000pt;}
.ls31{letter-spacing:4.416000pt;}
.ls38{letter-spacing:4.672000pt;}
.ls29{letter-spacing:4.736000pt;}
.ls4f{letter-spacing:5.376000pt;}
.ls48{letter-spacing:6.016000pt;}
.ls36{letter-spacing:6.336000pt;}
.ls44{letter-spacing:6.656000pt;}
.ls43{letter-spacing:6.976000pt;}
.ls24{letter-spacing:7.296000pt;}
.ls12{letter-spacing:7.360000pt;}
.ls0{letter-spacing:7.703360pt;}
.ls40{letter-spacing:9.152000pt;}
.ls32{letter-spacing:9.536000pt;}
.ls28{letter-spacing:9.856000pt;}
.ls3f{letter-spacing:10.176000pt;}
.ls50{letter-spacing:10.496000pt;}
.ls27{letter-spacing:10.752000pt;}
.ls2e{letter-spacing:11.136000pt;}
.ls3d{letter-spacing:11.456000pt;}
.ls55{letter-spacing:11.776000pt;}
.ls1b{letter-spacing:12.096000pt;}
.ls2a{letter-spacing:12.416000pt;}
.ls34{letter-spacing:12.736000pt;}
.ls33{letter-spacing:12.842667pt;}
.ls3c{letter-spacing:14.016000pt;}
.ls35{letter-spacing:14.336000pt;}
.ls4e{letter-spacing:14.976000pt;}
.ls3a{letter-spacing:15.296000pt;}
.ls42{letter-spacing:15.552000pt;}
.ls41{letter-spacing:15.658667pt;}
.ls2b{letter-spacing:16.000000pt;}
.ls23{letter-spacing:18.176000pt;}
.ls3e{letter-spacing:18.496000pt;}
.ls2f{letter-spacing:19.136000pt;}
.ls25{letter-spacing:21.696000pt;}
.ls53{letter-spacing:22.016000pt;}
.ls51{letter-spacing:22.336000pt;}
.ls1d{letter-spacing:23.208640pt;}
.ls7{letter-spacing:25.943360pt;}
.ls46{letter-spacing:26.816000pt;}
.ls1e{letter-spacing:133.482667pt;}
.ls2d{letter-spacing:170.282667pt;}
.ws4{word-spacing:-21.037760pt;}
.ws3{word-spacing:-20.951360pt;}
.ws2e{word-spacing:-18.368000pt;}
.ws30{word-spacing:-18.304000pt;}
.ws2c{word-spacing:-18.176000pt;}
.ws10{word-spacing:-18.112000pt;}
.ws17{word-spacing:-18.048000pt;}
.ws2f{word-spacing:-17.984001pt;}
.ws5{word-spacing:-17.984000pt;}
.ws15{word-spacing:-17.920000pt;}
.ws11{word-spacing:-17.856000pt;}
.ws2a{word-spacing:-17.792000pt;}
.ws12{word-spacing:-17.728000pt;}
.ws2b{word-spacing:-17.664000pt;}
.ws13{word-spacing:-17.152000pt;}
.ws18{word-spacing:-16.704000pt;}
.ws9{word-spacing:-16.603093pt;}
.ws8{word-spacing:-16.591893pt;}
.ws7{word-spacing:-16.455360pt;}
.ws27{word-spacing:-16.192000pt;}
.ws23{word-spacing:-16.064000pt;}
.ws1e{word-spacing:-16.000000pt;}
.ws1b{word-spacing:-15.936000pt;}
.ws20{word-spacing:-15.872000pt;}
.ws2d{word-spacing:-15.808003pt;}
.ws14{word-spacing:-15.808000pt;}
.ws22{word-spacing:-15.744000pt;}
.ws1d{word-spacing:-15.680000pt;}
.ws0{word-spacing:-15.176640pt;}
.ws1{word-spacing:-15.016640pt;}
.ws26{word-spacing:-14.988480pt;}
.ws2{word-spacing:-14.856640pt;}
.ws29{word-spacing:-14.464000pt;}
.wsa{word-spacing:-14.428800pt;}
.ws28{word-spacing:-14.336000pt;}
.wse{word-spacing:-14.281600pt;}
.wsb{word-spacing:-13.199680pt;}
.wsd{word-spacing:-13.146560pt;}
.ws1c{word-spacing:-10.658773pt;}
.ws16{word-spacing:-10.520640pt;}
.wsf{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.042667pt;}
.wsc{word-spacing:0.072640pt;}
.ws1a{word-spacing:0.256000pt;}
.ws6{word-spacing:0.576000pt;}
.ws19{word-spacing:0.682667pt;}
.ws25{word-spacing:7.104960pt;}
.ws24{word-spacing:8.384000pt;}
.ws21{word-spacing:8.512000pt;}
._21{margin-left:-7.711787pt;}
._20{margin-left:-6.116907pt;}
._22{margin-left:-5.164800pt;}
._1f{margin-left:-4.272107pt;}
._1d{margin-left:-2.434880pt;}
._0{margin-left:-0.961920pt;}
._7{width:0.914667pt;}
._10{width:1.923840pt;}
._d{width:3.093867pt;}
._9{width:4.061440pt;}
._4{width:4.969920pt;}
._a{width:5.878400pt;}
._1{width:6.893760pt;}
._2{width:7.898453pt;}
._5{width:9.269120pt;}
._c{width:10.901760pt;}
._3{width:11.917120pt;}
._1b{width:12.885973pt;}
._13{width:13.952000pt;}
._14{width:14.893333pt;}
._8{width:16.085440pt;}
._18{width:17.002240pt;}
._11{width:19.024640pt;}
._1e{width:20.202667pt;}
._15{width:21.568000pt;}
._b{width:22.979200pt;}
._16{width:24.252800pt;}
._12{width:25.212267pt;}
._17{width:26.368000pt;}
._f{width:27.478720pt;}
._e{width:28.398080pt;}
._23{width:29.546667pt;}
._19{width:31.040000pt;}
._1a{width:31.936000pt;}
._1c{width:34.432000pt;}
._26{width:35.629333pt;}
._24{width:36.650667pt;}
._25{width:48.810667pt;}
._6{width:852.776960pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fs7{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:20.720000pt;}
.y4{bottom:35.600000pt;}
.y3{bottom:50.400000pt;}
.y2{bottom:65.200000pt;}
.y3e{bottom:67.760000pt;}
.y10{bottom:83.040000pt;}
.y3d{bottom:84.640000pt;}
.yf{bottom:101.040000pt;}
.y74{bottom:103.280000pt;}
.y85{bottom:104.960000pt;}
.y81{bottom:106.720000pt;}
.y73{bottom:107.920000pt;}
.y112{bottom:111.440000pt;}
.y7e{bottom:118.080000pt;}
.y72{bottom:118.960000pt;}
.yd9{bottom:121.520000pt;}
.y84{bottom:122.800000pt;}
.y80{bottom:124.480000pt;}
.yf1{bottom:129.600000pt;}
.y7d{bottom:132.960000pt;}
.y7f{bottom:133.840000pt;}
.y89{bottom:134.320000pt;}
.ye{bottom:136.560000pt;}
.y111{bottom:137.200000pt;}
.yb1{bottom:138.080000pt;}
.yd8{bottom:139.360000pt;}
.y83{bottom:140.560000pt;}
.y71{bottom:142.320000pt;}
.yf0{bottom:147.440000pt;}
.y7c{bottom:147.760000pt;}
.yd{bottom:151.440000pt;}
.y88{bottom:152.080000pt;}
.y110{bottom:155.040000pt;}
.yb0{bottom:155.840000pt;}
.yd7{bottom:157.120000pt;}
.y136{bottom:157.760000pt;}
.y82{bottom:158.480000pt;}
.y70{bottom:160.080000pt;}
.y7b{bottom:162.640000pt;}
.yc{bottom:166.240000pt;}
.y7a{bottom:167.280000pt;}
.y87{bottom:169.920000pt;}
.yef{bottom:173.200000pt;}
.yaf{bottom:173.680000pt;}
.yd6{bottom:174.960000pt;}
.y135{bottom:175.520000pt;}
.y79{bottom:177.440000pt;}
.y6f{bottom:177.920000pt;}
.y10f{bottom:180.800000pt;}
.yb{bottom:181.040000pt;}
.yee{bottom:191.066667pt;}
.yae{bottom:191.466667pt;}
.y78{bottom:192.266667pt;}
.yd5{bottom:192.746667pt;}
.y134{bottom:193.386667pt;}
.y6e{bottom:195.706667pt;}
.ya{bottom:195.946667pt;}
.y77{bottom:196.906667pt;}
.y10e{bottom:198.586667pt;}
.y76{bottom:207.946667pt;}
.yed{bottom:208.826667pt;}
.y9{bottom:210.746667pt;}
.y6d{bottom:213.546667pt;}
.yad{bottom:217.466667pt;}
.yd4{bottom:218.586667pt;}
.y133{bottom:219.146667pt;}
.y10d{bottom:224.426667pt;}
.y8{bottom:225.546667pt;}
.y6c{bottom:231.306667pt;}
.yec{bottom:234.586667pt;}
.yd3{bottom:236.346667pt;}
.yac{bottom:236.826667pt;}
.y132{bottom:236.986667pt;}
.y10c{bottom:242.186667pt;}
.y6b{bottom:249.146667pt;}
.yeb{bottom:252.426667pt;}
.yd2{bottom:254.186667pt;}
.y75{bottom:254.506667pt;}
.yab{bottom:254.586667pt;}
.y131{bottom:254.746667pt;}
.y7{bottom:255.146667pt;}
.y10b{bottom:260.026667pt;}
.y6a{bottom:266.906667pt;}
.yd1{bottom:271.946667pt;}
.yaa{bottom:272.426667pt;}
.y3c{bottom:274.346667pt;}
.yea{bottom:278.186667pt;}
.y130{bottom:280.506667pt;}
.y69{bottom:284.666667pt;}
.y10a{bottom:285.786667pt;}
.ya9{bottom:290.186667pt;}
.ye9{bottom:296.026667pt;}
.yd0{bottom:297.786667pt;}
.y12f{bottom:298.346667pt;}
.y68{bottom:302.506667pt;}
.y109{bottom:303.626667pt;}
.y3b{bottom:304.186667pt;}
.ycf{bottom:315.546667pt;}
.ya8{bottom:316.026667pt;}
.y67{bottom:320.266667pt;}
.y3a{bottom:321.226667pt;}
.ye8{bottom:321.786667pt;}
.y12e{bottom:324.106667pt;}
.y108{bottom:329.386667pt;}
.ya7{bottom:333.786667pt;}
.y39{bottom:336.106667pt;}
.yce{bottom:337.306667pt;}
.y66{bottom:338.106667pt;}
.ye7{bottom:339.626667pt;}
.y107{bottom:347.226667pt;}
.y12d{bottom:350.106667pt;}
.y38{bottom:350.906667pt;}
.ya6{bottom:351.626667pt;}
.y65{bottom:355.866667pt;}
.ye6{bottom:361.386667pt;}
.ycd{bottom:363.146667pt;}
.y37{bottom:365.786667pt;}
.ya5{bottom:369.386667pt;}
.y12c{bottom:369.466667pt;}
.y106{bottom:372.986667pt;}
.y64{bottom:373.706667pt;}
.ye5{bottom:379.226667pt;}
.y36{bottom:380.586667pt;}
.ycc{bottom:380.906667pt;}
.ya4{bottom:387.226667pt;}
.y63{bottom:391.466667pt;}
.y35{bottom:395.386667pt;}
.ycb{bottom:398.746667pt;}
.y105{bottom:398.826667pt;}
.ye4{bottom:404.986667pt;}
.y62{bottom:409.306667pt;}
.y34{bottom:410.266667pt;}
.ya3{bottom:412.986667pt;}
.y12b{bottom:413.226667pt;}
.y104{bottom:416.586667pt;}
.ye3{bottom:422.826667pt;}
.yca{bottom:424.506667pt;}
.y33{bottom:425.066667pt;}
.y61{bottom:427.066667pt;}
.ya2{bottom:430.826667pt;}
.y12a{bottom:432.586667pt;}
.y32{bottom:439.946667pt;}
.ye2{bottom:440.586667pt;}
.yc9{bottom:442.346667pt;}
.y103{bottom:442.426667pt;}
.y60{bottom:444.906667pt;}
.ya1{bottom:448.586667pt;}
.y129{bottom:450.426667pt;}
.y31{bottom:454.746667pt;}
.yc8{bottom:460.106667pt;}
.y102{bottom:460.186667pt;}
.y5f{bottom:462.666667pt;}
.ya0{bottom:466.426667pt;}
.ye1{bottom:466.506667pt;}
.y30{bottom:469.546667pt;}
.y128{bottom:476.186667pt;}
.y101{bottom:477.946667pt;}
.y5e{bottom:480.506667pt;}
.y2f{bottom:484.426667pt;}
.yc7{bottom:485.946667pt;}
.y9f{bottom:492.186667pt;}
.y127{bottom:493.946667pt;}
.y5d{bottom:498.266667pt;}
.y2e{bottom:499.226667pt;}
.yc6{bottom:503.706667pt;}
.y100{bottom:503.786667pt;}
.y13f{bottom:505.466667pt;}
.y9e{bottom:509.946667pt;}
.y126{bottom:511.786667pt;}
.y2d{bottom:514.026667pt;}
.y5c{bottom:516.026667pt;}
.y86{bottom:521.386667pt;}
.yc5{bottom:521.546667pt;}
.y13e{bottom:523.226667pt;}
.y9d{bottom:527.786667pt;}
.y2c{bottom:528.906667pt;}
.ye0{bottom:529.626667pt;}
.y5a{bottom:533.866667pt;}
.y125{bottom:537.546667pt;}
.y5b{bottom:539.226667pt;}
.y2b{bottom:543.706667pt;}
.yc4{bottom:547.306667pt;}
.yff{bottom:547.386667pt;}
.ydf{bottom:549.066667pt;}
.y59{bottom:551.626667pt;}
.y9c{bottom:553.546667pt;}
.y124{bottom:555.386667pt;}
.y2a{bottom:558.586667pt;}
.yc3{bottom:565.173333pt;}
.yde{bottom:566.853333pt;}
.y58{bottom:569.493333pt;}
.y9b{bottom:571.413333pt;}
.y29{bottom:573.413333pt;}
.y123{bottom:581.173333pt;}
.yc2{bottom:582.933333pt;}
.ydd{bottom:584.693333pt;}
.y57{bottom:587.253333pt;}
.y28{bottom:588.213333pt;}
.yfe{bottom:591.093333pt;}
.y13d{bottom:592.693333pt;}
.y9a{bottom:597.173333pt;}
.y122{bottom:599.013333pt;}
.ydc{bottom:602.453333pt;}
.y27{bottom:603.093333pt;}
.y56{bottom:605.093333pt;}
.yc1{bottom:608.853333pt;}
.y13c{bottom:610.453333pt;}
.yfd{bottom:610.533333pt;}
.y99{bottom:615.013333pt;}
.y121{bottom:616.773333pt;}
.y26{bottom:617.893333pt;}
.ydb{bottom:620.293333pt;}
.y55{bottom:622.853333pt;}
.yc0{bottom:628.293333pt;}
.y25{bottom:632.773333pt;}
.y13b{bottom:636.293333pt;}
.y54{bottom:640.693333pt;}
.y120{bottom:642.693333pt;}
.ybf{bottom:646.053333pt;}
.y24{bottom:647.573333pt;}
.y98{bottom:650.613333pt;}
.y13a{bottom:654.053333pt;}
.yfc{bottom:654.133333pt;}
.y53{bottom:658.453333pt;}
.y11f{bottom:662.133333pt;}
.y23{bottom:662.373333pt;}
.ybe{bottom:663.813333pt;}
.yfb{bottom:671.893333pt;}
.y52{bottom:676.293333pt;}
.y97{bottom:676.533333pt;}
.y22{bottom:677.253333pt;}
.y139{bottom:679.813333pt;}
.y11e{bottom:679.893333pt;}
.ybd{bottom:689.653333pt;}
.y21{bottom:692.053333pt;}
.y51{bottom:694.053333pt;}
.y96{bottom:695.893333pt;}
.y138{bottom:697.653333pt;}
.yfa{bottom:697.733333pt;}
.y20{bottom:706.853333pt;}
.ybc{bottom:707.413333pt;}
.y50{bottom:711.813333pt;}
.yf9{bottom:715.493333pt;}
.y1f{bottom:721.733333pt;}
.y95{bottom:721.813333pt;}
.y137{bottom:723.413333pt;}
.y11d{bottom:723.493333pt;}
.ybb{bottom:725.253333pt;}
.y4f{bottom:729.653333pt;}
.yf8{bottom:733.333333pt;}
.y1e{bottom:737.253333pt;}
.y94{bottom:741.253333pt;}
.y11c{bottom:741.333333pt;}
.y4e{bottom:747.413333pt;}
.yba{bottom:751.013333pt;}
.y1d{bottom:754.693333pt;}
.yf7{bottom:759.093333pt;}
.y4d{bottom:765.253333pt;}
.y93{bottom:767.013333pt;}
.y11b{bottom:767.093333pt;}
.yb9{bottom:768.853333pt;}
.y1c{bottom:771.013333pt;}
.yf6{bottom:776.933333pt;}
.y4c{bottom:783.013333pt;}
.y92{bottom:784.853333pt;}
.y11a{bottom:784.933333pt;}
.yb8{bottom:786.613333pt;}
.y1b{bottom:787.333333pt;}
.yda{bottom:794.613333pt;}
.y4b{bottom:800.853333pt;}
.y91{bottom:802.613333pt;}
.yf5{bottom:802.853333pt;}
.y1a{bottom:804.053333pt;}
.y119{bottom:810.693333pt;}
.yb7{bottom:812.453333pt;}
.y4a{bottom:818.613333pt;}
.y90{bottom:820.453333pt;}
.y19{bottom:821.493333pt;}
.yf4{bottom:822.213333pt;}
.y118{bottom:828.533333pt;}
.yb6{bottom:830.213333pt;}
.y49{bottom:836.453333pt;}
.y18{bottom:837.733333pt;}
.y8f{bottom:838.213333pt;}
.yb5{bottom:848.053333pt;}
.y17{bottom:853.733333pt;}
.y48{bottom:854.213333pt;}
.y117{bottom:854.293333pt;}
.y8e{bottom:856.053333pt;}
.yf3{bottom:865.813333pt;}
.y16{bottom:869.253333pt;}
.y47{bottom:872.053333pt;}
.yb4{bottom:873.813333pt;}
.y8d{bottom:881.813333pt;}
.y15{bottom:887.093333pt;}
.y46{bottom:889.813333pt;}
.yb3{bottom:891.653333pt;}
.y116{bottom:897.893333pt;}
.y8c{bottom:899.653333pt;}
.y45{bottom:907.653333pt;}
.y14{bottom:913.573333pt;}
.y115{bottom:915.653333pt;}
.y8b{bottom:917.413333pt;}
.y44{bottom:925.413333pt;}
.y114{bottom:933.493333pt;}
.y13{bottom:934.293333pt;}
.y8a{bottom:935.173333pt;}
.y43{bottom:943.200000pt;}
.yb2{bottom:953.040000pt;}
.y12{bottom:955.120000pt;}
.y113{bottom:959.440000pt;}
.y42{bottom:961.040000pt;}
.yf2{bottom:970.800000pt;}
.y11{bottom:974.800000pt;}
.y41{bottom:978.800000pt;}
.y6{bottom:991.600000pt;}
.y40{bottom:996.640000pt;}
.y1{bottom:1008.160000pt;}
.y3f{bottom:1014.400000pt;}
.h11{height:32.734375pt;}
.h10{height:38.299219pt;}
.h4{height:46.159844pt;}
.h6{height:49.101562pt;}
.h3{height:54.666406pt;}
.h7{height:54.927899pt;}
.hc{height:55.281250pt;}
.he{height:57.954219pt;}
.h8{height:59.903906pt;}
.h5{height:63.656250pt;}
.ha{height:64.402656pt;}
.hd{height:65.468750pt;}
.hf{height:69.406250pt;}
.hb{height:73.093750pt;}
.h12{height:76.271094pt;}
.h2{height:76.560000pt;}
.h9{height:85.154219pt;}
.h13{height:87.400781pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.200000pt;}
.w4{width:293.066667pt;}
.w2{width:295.013333pt;}
.w6{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1{left:87.360000pt;}
.x8{left:93.039988pt;}
.x6{left:94.559988pt;}
.xf{left:98.559988pt;}
.xe{left:132.426655pt;}
.x9{left:141.866655pt;}
.x13{left:151.306655pt;}
.x15{left:156.426655pt;}
.x2{left:165.226667pt;}
.x16{left:212.266643pt;}
.x17{left:216.986655pt;}
.xa{left:286.586655pt;}
.x10{left:368.613310pt;}
.x11{left:373.333322pt;}
.x3{left:382.373333pt;}
.x7{left:396.933322pt;}
.x5{left:427.573333pt;}
.xc{left:430.693310pt;}
.xd{left:435.413322pt;}
.x18{left:683.039988pt;}
.xb{left:691.199988pt;}
.x12{left:695.119988pt;}
.x14{left:699.279988pt;}
}




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