
    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_3d2fc92b4f280f1fd294a547.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_88bf96f750e586cf05e3f308.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_ba595e70bcaf7db3cc3f7e77.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937012;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_51a8c1c0e7c65188bc78c986.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_5dc5755f4bb4bd528ff75113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.727539;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_8a53f37c22fc680a32d8f917.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_db64f824d25b9f360f376d35.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5782205ab6a1aa7bb72e34e7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.918945;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_4f9866056a5b969921792a51.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0104ddeebfc4e3b893344e77.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a81957ed8666fcfbb0807f69.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cecfc8fe2acfd4427cfafe5a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_19075f2df8f6b0a8f33b30b6.woff2')format("woff");}.fff{font-family:fff;line-height:0.911133;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_175c1ec413070a0f24024313.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_2f44a6a02b92dfc7d211689e.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_7935cae1971a40350263a1d7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.933594;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:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.ls1b{letter-spacing:-0.513600px;}
.ls13{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.220200px;}
.lsc{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.064200px;}
.lsa{letter-spacing:-0.054720px;}
.ls1a{letter-spacing:-0.013320px;}
.ls17{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.013320px;}
.ls1{letter-spacing:0.048960px;}
.ls8{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.090000px;}
.ls7{letter-spacing:0.173280px;}
.ls6{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.306600px;}
.lse{letter-spacing:0.540000px;}
.ls14{letter-spacing:1.530000px;}
.ls19{letter-spacing:2.610000px;}
.ls10{letter-spacing:4.770000px;}
.lsf{letter-spacing:5.130000px;}
.ls18{letter-spacing:5.850000px;}
.ls16{letter-spacing:9.900000px;}
.ls11{letter-spacing:13.410000px;}
.ls5{letter-spacing:24.120000px;}
.ls4{letter-spacing:773.130000px;}
.ls2{letter-spacing:1399.412640px;}
.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;}
}
.ws7{word-spacing:-15.210000px;}
.ws9{word-spacing:-15.120000px;}
.ws4{word-spacing:-15.030000px;}
.wsb{word-spacing:-15.016680px;}
.ws8{word-spacing:-14.876400px;}
.ws6{word-spacing:-14.850000px;}
.ws5{word-spacing:-14.809800px;}
.wsc{word-spacing:-14.516400px;}
.ws1{word-spacing:-13.756320px;}
.ws3{word-spacing:-13.652640px;}
.wsa{word-spacing:-9.711360px;}
.ws2{word-spacing:-0.031920px;}
.ws0{word-spacing:0.000000px;}
._19{margin-left:-2.098680px;}
._0{margin-left:-1.000680px;}
._1{width:1.090440px;}
._a{width:2.336400px;}
._d{width:4.088160px;}
._10{width:5.810280px;}
._f{width:6.853680px;}
._b{width:8.571240px;}
._3{width:9.945720px;}
._2{width:11.046720px;}
._9{width:12.812400px;}
._c{width:13.827600px;}
._5{width:16.872360px;}
._4{width:17.915760px;}
._e{width:19.058040px;}
._13{width:20.741400px;}
._15{width:22.364640px;}
._8{width:24.168240px;}
._14{width:25.551000px;}
._6{width:26.573040px;}
._7{width:27.715320px;}
._16{width:28.857600px;}
._17{width:29.939760px;}
._18{width:31.112040px;}
._1a{width:32.232120px;}
._1f{width:33.246360px;}
._20{width:34.308960px;}
._21{width:37.333800px;}
._1e{width:38.597040px;}
._1c{width:39.679200px;}
._1d{width:40.682160px;}
._12{width:41.963760px;}
._1b{width:43.226280px;}
._11{width:1620.572640px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,111,192);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.880000px;}
.fsa{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:47.880000px;}
.fsb{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:83.880000px;}
.fs6{font-size:96.120000px;}
.fs2{font-size:102.000000px;}
.yd0{bottom:-13.230000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:3.690000px;}
.ycf{bottom:6.750000px;}
.y14b{bottom:8.100000px;}
.y15e{bottom:8.730000px;}
.y22{bottom:10.530000px;}
.y23{bottom:11.430000px;}
.y27{bottom:16.470000px;}
.y2b{bottom:22.980000px;}
.yce{bottom:24.030000px;}
.y14a{bottom:25.740000px;}
.y15d{bottom:26.370000px;}
.ycd{bottom:41.310000px;}
.y149{bottom:42.930000px;}
.y2a{bottom:43.320000px;}
.y15c{bottom:43.650000px;}
.ycc{bottom:58.500000px;}
.y15b{bottom:60.840000px;}
.y29{bottom:63.120000px;}
.ycb{bottom:75.780000px;}
.y15a{bottom:78.120000px;}
.y28{bottom:88.770000px;}
.yca{bottom:93.060000px;}
.y159{bottom:95.400000px;}
.y4{bottom:97.125005px;}
.yc9{bottom:110.250000px;}
.y158{bottom:112.590000px;}
.yc8{bottom:127.530000px;}
.y157{bottom:129.870000px;}
.y20{bottom:139.264499px;}
.yc7{bottom:144.810000px;}
.y156{bottom:147.150000px;}
.yc6{bottom:162.000000px;}
.y155{bottom:164.340000px;}
.y154{bottom:181.620000px;}
.y17{bottom:196.933500px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y25{bottom:278.220000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y152{bottom:321.780000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y148{bottom:324.390000px;}
.yc5{bottom:324.660000px;}
.y11c{bottom:325.110000px;}
.yf5{bottom:325.830000px;}
.yc4{bottom:326.640000px;}
.y9b{bottom:327.900000px;}
.y81{bottom:331.500000px;}
.y147{bottom:331.860000px;}
.y105{bottom:334.830000px;}
.y151{bottom:335.550000px;}
.y11b{bottom:342.390000px;}
.yf4{bottom:343.110000px;}
.yc3{bottom:343.830000px;}
.y9a{bottom:345.180000px;}
.ye{bottom:348.133500px;}
.y80{bottom:348.780000px;}
.y146{bottom:349.140000px;}
.y150{bottom:349.410000px;}
.y53{bottom:351.030000px;}
.y104{bottom:352.110000px;}
.y14f{bottom:353.910000px;}
.yf3{bottom:360.390000px;}
.yc2{bottom:361.110000px;}
.y99{bottom:362.370000px;}
.y14e{bottom:364.440000px;}
.y145{bottom:366.330000px;}
.y52{bottom:368.220000px;}
.y11a{bottom:368.580000px;}
.y103{bottom:369.390000px;}
.y7f{bottom:374.970000px;}
.yf2{bottom:377.580000px;}
.y153{bottom:378.120000px;}
.yc1{bottom:378.390000px;}
.y98{bottom:379.650000px;}
.y144{bottom:383.610000px;}
.y51{bottom:385.500000px;}
.y119{bottom:385.860000px;}
.y102{bottom:386.580000px;}
.yd{bottom:386.785499px;}
.y7e{bottom:392.250000px;}
.yf1{bottom:394.860000px;}
.yc0{bottom:395.580000px;}
.y97{bottom:396.930000px;}
.y143{bottom:400.890000px;}
.y50{bottom:402.690000px;}
.y118{bottom:403.140000px;}
.y101{bottom:403.860000px;}
.yc{bottom:408.044999px;}
.y7d{bottom:409.440000px;}
.yf0{bottom:412.140000px;}
.ybf{bottom:412.860000px;}
.y96{bottom:414.120000px;}
.y142{bottom:418.080000px;}
.y4f{bottom:419.970000px;}
.y117{bottom:420.330000px;}
.y100{bottom:421.140000px;}
.y7c{bottom:426.720000px;}
.yef{bottom:429.330000px;}
.ybe{bottom:430.140000px;}
.y95{bottom:431.400000px;}
.y4e{bottom:437.250000px;}
.y116{bottom:437.610000px;}
.yff{bottom:438.330000px;}
.y7b{bottom:444.000000px;}
.y141{bottom:444.360000px;}
.yee{bottom:446.610000px;}
.ybd{bottom:447.330000px;}
.y94{bottom:448.680000px;}
.y4d{bottom:454.440000px;}
.y115{bottom:454.890000px;}
.yfe{bottom:455.610000px;}
.y7a{bottom:461.190000px;}
.y140{bottom:461.640000px;}
.y14d{bottom:463.890000px;}
.ybc{bottom:464.610000px;}
.y93{bottom:465.870000px;}
.y4c{bottom:471.720000px;}
.y114{bottom:472.080000px;}
.yed{bottom:472.890000px;}
.y13f{bottom:478.830000px;}
.y167{bottom:481.080000px;}
.ybb{bottom:481.890000px;}
.y79{bottom:487.470000px;}
.y4b{bottom:489.000000px;}
.y113{bottom:489.360000px;}
.yec{bottom:490.080000px;}
.y92{bottom:492.150000px;}
.y13e{bottom:496.110000px;}
.y166{bottom:498.360000px;}
.yba{bottom:499.080000px;}
.yb{bottom:502.864502px;}
.y78{bottom:504.750000px;}
.y4a{bottom:506.190000px;}
.yeb{bottom:507.360000px;}
.y91{bottom:509.340000px;}
.y13d{bottom:513.390000px;}
.y112{bottom:515.640000px;}
.ya{bottom:520.864502px;}
.y77{bottom:521.940000px;}
.y49{bottom:523.470000px;}
.yea{bottom:524.640000px;}
.yb9{bottom:525.360000px;}
.y90{bottom:526.620000px;}
.y13c{bottom:530.580000px;}
.y111{bottom:532.830000px;}
.y11d{bottom:533.640000px;}
.y9{bottom:538.864499px;}
.y76{bottom:539.220000px;}
.y48{bottom:540.750000px;}
.ye9{bottom:541.830000px;}
.yb8{bottom:542.640000px;}
.y8f{bottom:543.900000px;}
.y110{bottom:550.110000px;}
.yfd{bottom:550.830000px;}
.y75{bottom:556.500000px;}
.y13b{bottom:556.860000px;}
.y8{bottom:556.864499px;}
.y47{bottom:557.940000px;}
.ye8{bottom:559.110000px;}
.yb7{bottom:559.830000px;}
.y8e{bottom:561.090000px;}
.y10f{bottom:567.390000px;}
.yfc{bottom:568.110000px;}
.y13a{bottom:574.050000px;}
.y46{bottom:575.220000px;}
.y54{bottom:575.670000px;}
.ye7{bottom:576.390000px;}
.yb6{bottom:577.110000px;}
.y74{bottom:582.690000px;}
.y10e{bottom:584.580000px;}
.yfb{bottom:585.390000px;}
.y8d{bottom:587.370000px;}
.y45{bottom:592.500000px;}
.ye6{bottom:593.580000px;}
.yb5{bottom:594.390000px;}
.y73{bottom:599.970000px;}
.y139{bottom:600.330000px;}
.y165{bottom:601.860000px;}
.yfa{bottom:602.580000px;}
.y8c{bottom:604.650000px;}
.y44{bottom:609.690000px;}
.ye5{bottom:610.860000px;}
.yb4{bottom:611.580000px;}
.y72{bottom:617.250000px;}
.y138{bottom:617.610000px;}
.y164{bottom:619.050000px;}
.yf9{bottom:619.860000px;}
.y8b{bottom:621.840000px;}
.y43{bottom:626.970000px;}
.y10d{bottom:628.050000px;}
.yb3{bottom:628.860000px;}
.y71{bottom:634.440000px;}
.y137{bottom:634.800000px;}
.y163{bottom:636.330000px;}
.ye4{bottom:637.050000px;}
.y8a{bottom:639.120000px;}
.y42{bottom:644.250000px;}
.y10c{bottom:645.330000px;}
.y7{bottom:645.510000px;}
.yb2{bottom:646.050000px;}
.y70{bottom:651.720000px;}
.y162{bottom:653.610000px;}
.ye3{bottom:654.330000px;}
.y89{bottom:656.400000px;}
.y136{bottom:661.080000px;}
.y41{bottom:661.440000px;}
.y10b{bottom:662.610000px;}
.yb1{bottom:663.330000px;}
.y6{bottom:666.771000px;}
.y6f{bottom:669.030000px;}
.y88{bottom:670.200000px;}
.y161{bottom:670.830000px;}
.ye2{bottom:671.640000px;}
.y135{bottom:678.390000px;}
.y40{bottom:678.750000px;}
.y10a{bottom:679.830000px;}
.yb0{bottom:680.640000px;}
.y6e{bottom:686.220000px;}
.y160{bottom:688.110000px;}
.ye1{bottom:688.830000px;}
.y134{bottom:695.580000px;}
.y3f{bottom:696.030000px;}
.y109{bottom:697.110000px;}
.yaf{bottom:697.830000px;}
.y6d{bottom:703.500000px;}
.y15f{bottom:705.390000px;}
.ye0{bottom:706.110000px;}
.y133{bottom:712.860000px;}
.y3e{bottom:713.220000px;}
.y108{bottom:714.390000px;}
.yae{bottom:715.110000px;}
.y6c{bottom:720.780000px;}
.ydf{bottom:723.390000px;}
.y5{bottom:726.298500px;}
.y132{bottom:730.140000px;}
.y3d{bottom:730.500000px;}
.y107{bottom:731.580000px;}
.yad{bottom:732.390000px;}
.y6b{bottom:737.970000px;}
.yde{bottom:740.580000px;}
.y131{bottom:747.330000px;}
.y3c{bottom:747.690000px;}
.y106{bottom:748.860000px;}
.yac{bottom:749.580000px;}
.y3{bottom:752.599495px;}
.y6a{bottom:755.250000px;}
.ydd{bottom:757.860000px;}
.y130{bottom:764.610000px;}
.y3b{bottom:764.970000px;}
.yab{bottom:766.860000px;}
.y69{bottom:772.530000px;}
.ydc{bottom:775.140000px;}
.y12f{bottom:781.890000px;}
.y3a{bottom:782.250000px;}
.yaa{bottom:784.140000px;}
.y68{bottom:789.720000px;}
.ydb{bottom:792.330000px;}
.y12e{bottom:799.080000px;}
.y39{bottom:799.440000px;}
.ya9{bottom:801.330000px;}
.y67{bottom:807.000000px;}
.yda{bottom:809.610000px;}
.y12d{bottom:816.360000px;}
.y38{bottom:816.720000px;}
.ya8{bottom:818.610000px;}
.y66{bottom:824.190000px;}
.yd9{bottom:826.890000px;}
.y12c{bottom:833.640000px;}
.y37{bottom:834.000000px;}
.ya7{bottom:835.890000px;}
.y65{bottom:841.470000px;}
.yd8{bottom:844.080000px;}
.y12b{bottom:850.830000px;}
.y36{bottom:851.190000px;}
.ya6{bottom:853.080000px;}
.yd7{bottom:861.360000px;}
.y64{bottom:867.750000px;}
.y12a{bottom:868.110000px;}
.ya5{bottom:870.360000px;}
.yd6{bottom:878.640000px;}
.y2{bottom:879.369000px;}
.y63{bottom:884.940000px;}
.y129{bottom:885.390000px;}
.y35{bottom:885.750000px;}
.ya4{bottom:887.640000px;}
.yd5{bottom:895.830000px;}
.y62{bottom:902.220000px;}
.y34{bottom:902.940000px;}
.ya3{bottom:904.830000px;}
.y128{bottom:911.580000px;}
.yf8{bottom:913.110000px;}
.y61{bottom:919.500000px;}
.ya2{bottom:922.110000px;}
.y33{bottom:922.200000px;}
.y127{bottom:928.860000px;}
.yf7{bottom:930.390000px;}
.y60{bottom:936.690000px;}
.ya1{bottom:939.390000px;}
.y32{bottom:939.570000px;}
.y126{bottom:946.050000px;}
.yf6{bottom:947.580000px;}
.y5f{bottom:953.970000px;}
.ya0{bottom:956.580000px;}
.y31{bottom:956.940000px;}
.y1{bottom:966.726000px;}
.y125{bottom:972.330000px;}
.y9f{bottom:973.860000px;}
.y30{bottom:974.220000px;}
.y5e{bottom:980.250000px;}
.y9e{bottom:991.050000px;}
.y2f{bottom:991.320000px;}
.y5d{bottom:997.440000px;}
.y124{bottom:998.610000px;}
.y9d{bottom:1008.330000px;}
.y2e{bottom:1008.510000px;}
.y5c{bottom:1014.720000px;}
.y123{bottom:1015.800000px;}
.y87{bottom:1017.330000px;}
.y9c{bottom:1025.610000px;}
.y2d{bottom:1028.130000px;}
.y5b{bottom:1032.000000px;}
.y86{bottom:1034.610000px;}
.y26{bottom:1041.990000px;}
.y122{bottom:1042.080000px;}
.yd4{bottom:1042.800000px;}
.y5a{bottom:1049.190000px;}
.y85{bottom:1051.800000px;}
.y121{bottom:1059.360000px;}
.yd3{bottom:1060.080000px;}
.y59{bottom:1066.500000px;}
.y84{bottom:1069.110000px;}
.yd2{bottom:1077.390000px;}
.y120{bottom:1085.580000px;}
.y83{bottom:1086.390000px;}
.y58{bottom:1092.780000px;}
.yd1{bottom:1094.580000px;}
.y11f{bottom:1102.860000px;}
.y82{bottom:1103.580000px;}
.y57{bottom:1110.510000px;}
.y56{bottom:1120.860000px;}
.y14c{bottom:1126.080000px;}
.y11e{bottom:1129.140000px;}
.y55{bottom:1138.140000px;}
.y24{bottom:1155.690000px;}
.y21{bottom:1174.770000px;}
.h1a{height:29.325586px;}
.h9{height:31.950000px;}
.h7{height:32.130000px;}
.h1f{height:38.158594px;}
.h17{height:41.743477px;}
.h1b{height:41.772832px;}
.ha{height:43.769004px;}
.h18{height:44.550000px;}
.h6{height:45.900000px;}
.h21{height:46.991602px;}
.h3{height:48.195000px;}
.hc{height:51.539062px;}
.h20{height:52.998047px;}
.h2{height:55.080000px;}
.h1d{height:56.700000px;}
.h15{height:58.975137px;}
.he{height:59.004492px;}
.h23{height:59.019609px;}
.h14{height:60.589687px;}
.h13{height:64.625449px;}
.h11{height:66.394687px;}
.hf{height:67.701973px;}
.hb{height:69.977988px;}
.h16{height:70.628906px;}
.h19{height:70.664062px;}
.h12{height:72.562500px;}
.h5{height:78.030000px;}
.hd{height:109.920000px;}
.h10{height:109.924500px;}
.h4{height:119.055004px;}
.h1c{height:175.770000px;}
.h22{height:195.390000px;}
.h0{height:1262.833500px;}
.h1e{height:1262.954911px;}
.h8{height:1262.970000px;}
.h1{height:1263.000000px;}
.w5{width:74.880000px;}
.w9{width:75.630000px;}
.w6{width:109.650000px;}
.we{width:176.700000px;}
.wc{width:177.960000px;}
.wb{width:178.410000px;}
.w8{width:189.750000px;}
.w7{width:459.480000px;}
.wa{width:493.410000px;}
.w4{width:494.160000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.wd{width:893.058750px;}
.w3{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x1f{left:10.800000px;}
.x1c{left:14.880000px;}
.x8{left:16.740000px;}
.x18{left:19.290000px;}
.x2a{left:20.820000px;}
.x17{left:21.900000px;}
.x28{left:24.420000px;}
.x27{left:26.310000px;}
.x1b{left:29.010000px;}
.x29{left:31.440000px;}
.x19{left:32.520000px;}
.x20{left:40.080000px;}
.x1a{left:42.600000px;}
.x1d{left:44.490000px;}
.xf{left:54.450000px;}
.xb{left:66.420000px;}
.x1e{left:69.240000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xc{left:157.590000px;}
.x5{left:162.000000px;}
.x11{left:163.800000px;}
.x9{left:170.100000px;}
.x25{left:173.880000px;}
.x26{left:180.630000px;}
.xe{left:182.430000px;}
.x12{left:189.660000px;}
.x4{left:203.484001px;}
.xd{left:229.680000px;}
.x13{left:237.630000px;}
.xa{left:271.560000px;}
.x23{left:360.390000px;}
.x16{left:362.460000px;}
.x15{left:364.080000px;}
.x10{left:367.140000px;}
.x24{left:386.130000px;}
.x3{left:454.959000px;}
.x7{left:656.160000px;}
.x14{left:678.750000px;}
.x21{left:685.488750px;}
.x22{left:690.360000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls1b{letter-spacing:-0.456533pt;}
.ls13{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.195733pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.057067pt;}
.lsa{letter-spacing:-0.048640pt;}
.ls1a{letter-spacing:-0.011840pt;}
.ls17{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.011840pt;}
.ls1{letter-spacing:0.043520pt;}
.ls8{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.080000pt;}
.ls7{letter-spacing:0.154027pt;}
.ls6{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.272533pt;}
.lse{letter-spacing:0.480000pt;}
.ls14{letter-spacing:1.360000pt;}
.ls19{letter-spacing:2.320000pt;}
.ls10{letter-spacing:4.240000pt;}
.lsf{letter-spacing:4.560000pt;}
.ls18{letter-spacing:5.200000pt;}
.ls16{letter-spacing:8.800000pt;}
.ls11{letter-spacing:11.920000pt;}
.ls5{letter-spacing:21.440000pt;}
.ls4{letter-spacing:687.226667pt;}
.ls2{letter-spacing:1243.922347pt;}
.ws7{word-spacing:-13.520000pt;}
.ws9{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.360000pt;}
.wsb{word-spacing:-13.348160pt;}
.ws8{word-spacing:-13.223467pt;}
.ws6{word-spacing:-13.200000pt;}
.ws5{word-spacing:-13.164267pt;}
.wsc{word-spacing:-12.903467pt;}
.ws1{word-spacing:-12.227840pt;}
.ws3{word-spacing:-12.135680pt;}
.wsa{word-spacing:-8.632320pt;}
.ws2{word-spacing:-0.028373pt;}
.ws0{word-spacing:0.000000pt;}
._19{margin-left:-1.865493pt;}
._0{margin-left:-0.889493pt;}
._1{width:0.969280pt;}
._a{width:2.076800pt;}
._d{width:3.633920pt;}
._10{width:5.164693pt;}
._f{width:6.092160pt;}
._b{width:7.618880pt;}
._3{width:8.840640pt;}
._2{width:9.819307pt;}
._9{width:11.388800pt;}
._c{width:12.291200pt;}
._5{width:14.997653pt;}
._4{width:15.925120pt;}
._e{width:16.940480pt;}
._13{width:18.436800pt;}
._15{width:19.879680pt;}
._8{width:21.482880pt;}
._14{width:22.712000pt;}
._6{width:23.620480pt;}
._7{width:24.635840pt;}
._16{width:25.651200pt;}
._17{width:26.613120pt;}
._18{width:27.655147pt;}
._1a{width:28.650773pt;}
._1f{width:29.552320pt;}
._20{width:30.496853pt;}
._21{width:33.185600pt;}
._1e{width:34.308480pt;}
._1c{width:35.270400pt;}
._1d{width:36.161920pt;}
._12{width:37.301120pt;}
._1b{width:38.423360pt;}
._11{width:1440.509013pt;}
.fs9{font-size:26.560000pt;}
.fsa{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.560000pt;}
.fsb{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.560000pt;}
.fs6{font-size:85.440000pt;}
.fs2{font-size:90.666667pt;}
.yd0{bottom:-11.760000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:3.280000pt;}
.ycf{bottom:6.000000pt;}
.y14b{bottom:7.200000pt;}
.y15e{bottom:7.760000pt;}
.y22{bottom:9.360000pt;}
.y23{bottom:10.160000pt;}
.y27{bottom:14.640000pt;}
.y2b{bottom:20.426667pt;}
.yce{bottom:21.360000pt;}
.y14a{bottom:22.880000pt;}
.y15d{bottom:23.440000pt;}
.ycd{bottom:36.720000pt;}
.y149{bottom:38.160000pt;}
.y2a{bottom:38.506667pt;}
.y15c{bottom:38.800000pt;}
.ycc{bottom:52.000000pt;}
.y15b{bottom:54.080000pt;}
.y29{bottom:56.106667pt;}
.ycb{bottom:67.360000pt;}
.y15a{bottom:69.440000pt;}
.y28{bottom:78.906667pt;}
.yca{bottom:82.720000pt;}
.y159{bottom:84.800000pt;}
.y4{bottom:86.333337pt;}
.yc9{bottom:98.000000pt;}
.y158{bottom:100.080000pt;}
.yc8{bottom:113.360000pt;}
.y157{bottom:115.440000pt;}
.y20{bottom:123.790666pt;}
.yc7{bottom:128.720000pt;}
.y156{bottom:130.800000pt;}
.yc6{bottom:144.000000pt;}
.y155{bottom:146.080000pt;}
.y154{bottom:161.440000pt;}
.y17{bottom:175.052000pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y25{bottom:247.306667pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y152{bottom:286.026667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y148{bottom:288.346667pt;}
.yc5{bottom:288.586667pt;}
.y11c{bottom:288.986667pt;}
.yf5{bottom:289.626667pt;}
.yc4{bottom:290.346667pt;}
.y9b{bottom:291.466667pt;}
.y81{bottom:294.666667pt;}
.y147{bottom:294.986667pt;}
.y105{bottom:297.626667pt;}
.y151{bottom:298.266667pt;}
.y11b{bottom:304.346667pt;}
.yf4{bottom:304.986667pt;}
.yc3{bottom:305.626667pt;}
.y9a{bottom:306.826667pt;}
.ye{bottom:309.452000pt;}
.y80{bottom:310.026667pt;}
.y146{bottom:310.346667pt;}
.y150{bottom:310.586667pt;}
.y53{bottom:312.026667pt;}
.y104{bottom:312.986667pt;}
.y14f{bottom:314.586667pt;}
.yf3{bottom:320.346667pt;}
.yc2{bottom:320.986667pt;}
.y99{bottom:322.106667pt;}
.y14e{bottom:323.946667pt;}
.y145{bottom:325.626667pt;}
.y52{bottom:327.306667pt;}
.y11a{bottom:327.626667pt;}
.y103{bottom:328.346667pt;}
.y7f{bottom:333.306667pt;}
.yf2{bottom:335.626667pt;}
.y153{bottom:336.106667pt;}
.yc1{bottom:336.346667pt;}
.y98{bottom:337.466667pt;}
.y144{bottom:340.986667pt;}
.y51{bottom:342.666667pt;}
.y119{bottom:342.986667pt;}
.y102{bottom:343.626667pt;}
.yd{bottom:343.809333pt;}
.y7e{bottom:348.666667pt;}
.yf1{bottom:350.986667pt;}
.yc0{bottom:351.626667pt;}
.y97{bottom:352.826667pt;}
.y143{bottom:356.346667pt;}
.y50{bottom:357.946667pt;}
.y118{bottom:358.346667pt;}
.y101{bottom:358.986667pt;}
.yc{bottom:362.706666pt;}
.y7d{bottom:363.946667pt;}
.yf0{bottom:366.346667pt;}
.ybf{bottom:366.986667pt;}
.y96{bottom:368.106667pt;}
.y142{bottom:371.626667pt;}
.y4f{bottom:373.306667pt;}
.y117{bottom:373.626667pt;}
.y100{bottom:374.346667pt;}
.y7c{bottom:379.306667pt;}
.yef{bottom:381.626667pt;}
.ybe{bottom:382.346667pt;}
.y95{bottom:383.466667pt;}
.y4e{bottom:388.666667pt;}
.y116{bottom:388.986667pt;}
.yff{bottom:389.626667pt;}
.y7b{bottom:394.666667pt;}
.y141{bottom:394.986667pt;}
.yee{bottom:396.986667pt;}
.ybd{bottom:397.626667pt;}
.y94{bottom:398.826667pt;}
.y4d{bottom:403.946667pt;}
.y115{bottom:404.346667pt;}
.yfe{bottom:404.986667pt;}
.y7a{bottom:409.946667pt;}
.y140{bottom:410.346667pt;}
.y14d{bottom:412.346667pt;}
.ybc{bottom:412.986667pt;}
.y93{bottom:414.106667pt;}
.y4c{bottom:419.306667pt;}
.y114{bottom:419.626667pt;}
.yed{bottom:420.346667pt;}
.y13f{bottom:425.626667pt;}
.y167{bottom:427.626667pt;}
.ybb{bottom:428.346667pt;}
.y79{bottom:433.306667pt;}
.y4b{bottom:434.666667pt;}
.y113{bottom:434.986667pt;}
.yec{bottom:435.626667pt;}
.y92{bottom:437.466667pt;}
.y13e{bottom:440.986667pt;}
.y166{bottom:442.986667pt;}
.yba{bottom:443.626667pt;}
.yb{bottom:446.990669pt;}
.y78{bottom:448.666667pt;}
.y4a{bottom:449.946667pt;}
.yeb{bottom:450.986667pt;}
.y91{bottom:452.746667pt;}
.y13d{bottom:456.346667pt;}
.y112{bottom:458.346667pt;}
.ya{bottom:462.990669pt;}
.y77{bottom:463.946667pt;}
.y49{bottom:465.306667pt;}
.yea{bottom:466.346667pt;}
.yb9{bottom:466.986667pt;}
.y90{bottom:468.106667pt;}
.y13c{bottom:471.626667pt;}
.y111{bottom:473.626667pt;}
.y11d{bottom:474.346667pt;}
.y9{bottom:478.990666pt;}
.y76{bottom:479.306667pt;}
.y48{bottom:480.666667pt;}
.ye9{bottom:481.626667pt;}
.yb8{bottom:482.346667pt;}
.y8f{bottom:483.466667pt;}
.y110{bottom:488.986667pt;}
.yfd{bottom:489.626667pt;}
.y75{bottom:494.666667pt;}
.y13b{bottom:494.986667pt;}
.y8{bottom:494.990666pt;}
.y47{bottom:495.946667pt;}
.ye8{bottom:496.986667pt;}
.yb7{bottom:497.626667pt;}
.y8e{bottom:498.746667pt;}
.y10f{bottom:504.346667pt;}
.yfc{bottom:504.986667pt;}
.y13a{bottom:510.266667pt;}
.y46{bottom:511.306667pt;}
.y54{bottom:511.706667pt;}
.ye7{bottom:512.346667pt;}
.yb6{bottom:512.986667pt;}
.y74{bottom:517.946667pt;}
.y10e{bottom:519.626667pt;}
.yfb{bottom:520.346667pt;}
.y8d{bottom:522.106667pt;}
.y45{bottom:526.666667pt;}
.ye6{bottom:527.626667pt;}
.yb5{bottom:528.346667pt;}
.y73{bottom:533.306667pt;}
.y139{bottom:533.626667pt;}
.y165{bottom:534.986667pt;}
.yfa{bottom:535.626667pt;}
.y8c{bottom:537.466667pt;}
.y44{bottom:541.946667pt;}
.ye5{bottom:542.986667pt;}
.yb4{bottom:543.626667pt;}
.y72{bottom:548.666667pt;}
.y138{bottom:548.986667pt;}
.y164{bottom:550.266667pt;}
.yf9{bottom:550.986667pt;}
.y8b{bottom:552.746667pt;}
.y43{bottom:557.306667pt;}
.y10d{bottom:558.266667pt;}
.yb3{bottom:558.986667pt;}
.y71{bottom:563.946667pt;}
.y137{bottom:564.266667pt;}
.y163{bottom:565.626667pt;}
.ye4{bottom:566.266667pt;}
.y8a{bottom:568.106667pt;}
.y42{bottom:572.666667pt;}
.y10c{bottom:573.626667pt;}
.y7{bottom:573.786667pt;}
.yb2{bottom:574.266667pt;}
.y70{bottom:579.306667pt;}
.y162{bottom:580.986667pt;}
.ye3{bottom:581.626667pt;}
.y89{bottom:583.466667pt;}
.y136{bottom:587.626667pt;}
.y41{bottom:587.946667pt;}
.y10b{bottom:588.986667pt;}
.yb1{bottom:589.626667pt;}
.y6{bottom:592.685334pt;}
.y6f{bottom:594.693333pt;}
.y88{bottom:595.733333pt;}
.y161{bottom:596.293333pt;}
.ye2{bottom:597.013333pt;}
.y135{bottom:603.013333pt;}
.y40{bottom:603.333333pt;}
.y10a{bottom:604.293333pt;}
.yb0{bottom:605.013333pt;}
.y6e{bottom:609.973333pt;}
.y160{bottom:611.653333pt;}
.ye1{bottom:612.293333pt;}
.y134{bottom:618.293333pt;}
.y3f{bottom:618.693333pt;}
.y109{bottom:619.653333pt;}
.yaf{bottom:620.293333pt;}
.y6d{bottom:625.333333pt;}
.y15f{bottom:627.013333pt;}
.ye0{bottom:627.653333pt;}
.y133{bottom:633.653333pt;}
.y3e{bottom:633.973333pt;}
.y108{bottom:635.013333pt;}
.yae{bottom:635.653333pt;}
.y6c{bottom:640.693333pt;}
.ydf{bottom:643.013333pt;}
.y5{bottom:645.598667pt;}
.y132{bottom:649.013333pt;}
.y3d{bottom:649.333333pt;}
.y107{bottom:650.293333pt;}
.yad{bottom:651.013333pt;}
.y6b{bottom:655.973333pt;}
.yde{bottom:658.293333pt;}
.y131{bottom:664.293333pt;}
.y3c{bottom:664.613333pt;}
.y106{bottom:665.653333pt;}
.yac{bottom:666.293333pt;}
.y3{bottom:668.977329pt;}
.y6a{bottom:671.333333pt;}
.ydd{bottom:673.653333pt;}
.y130{bottom:679.653333pt;}
.y3b{bottom:679.973333pt;}
.yab{bottom:681.653333pt;}
.y69{bottom:686.693333pt;}
.ydc{bottom:689.013333pt;}
.y12f{bottom:695.013333pt;}
.y3a{bottom:695.333333pt;}
.yaa{bottom:697.013333pt;}
.y68{bottom:701.973333pt;}
.ydb{bottom:704.293333pt;}
.y12e{bottom:710.293333pt;}
.y39{bottom:710.613333pt;}
.ya9{bottom:712.293333pt;}
.y67{bottom:717.333333pt;}
.yda{bottom:719.653333pt;}
.y12d{bottom:725.653333pt;}
.y38{bottom:725.973333pt;}
.ya8{bottom:727.653333pt;}
.y66{bottom:732.613333pt;}
.yd9{bottom:735.013333pt;}
.y12c{bottom:741.013333pt;}
.y37{bottom:741.333333pt;}
.ya7{bottom:743.013333pt;}
.y65{bottom:747.973333pt;}
.yd8{bottom:750.293333pt;}
.y12b{bottom:756.293333pt;}
.y36{bottom:756.613333pt;}
.ya6{bottom:758.293333pt;}
.yd7{bottom:765.653333pt;}
.y64{bottom:771.333333pt;}
.y12a{bottom:771.653333pt;}
.ya5{bottom:773.653333pt;}
.yd6{bottom:781.013333pt;}
.y2{bottom:781.661334pt;}
.y63{bottom:786.613333pt;}
.y129{bottom:787.013333pt;}
.y35{bottom:787.333333pt;}
.ya4{bottom:789.013333pt;}
.yd5{bottom:796.293333pt;}
.y62{bottom:801.973333pt;}
.y34{bottom:802.613333pt;}
.ya3{bottom:804.293333pt;}
.y128{bottom:810.293333pt;}
.yf8{bottom:811.653333pt;}
.y61{bottom:817.333333pt;}
.ya2{bottom:819.653333pt;}
.y33{bottom:819.733333pt;}
.y127{bottom:825.653333pt;}
.yf7{bottom:827.013333pt;}
.y60{bottom:832.613333pt;}
.ya1{bottom:835.013333pt;}
.y32{bottom:835.173333pt;}
.y126{bottom:840.933333pt;}
.yf6{bottom:842.293333pt;}
.y5f{bottom:847.973333pt;}
.ya0{bottom:850.293333pt;}
.y31{bottom:850.613333pt;}
.y1{bottom:859.312000pt;}
.y125{bottom:864.293333pt;}
.y9f{bottom:865.653333pt;}
.y30{bottom:865.973333pt;}
.y5e{bottom:871.333333pt;}
.y9e{bottom:880.933333pt;}
.y2f{bottom:881.173333pt;}
.y5d{bottom:886.613333pt;}
.y124{bottom:887.653333pt;}
.y9d{bottom:896.293333pt;}
.y2e{bottom:896.453333pt;}
.y5c{bottom:901.973333pt;}
.y123{bottom:902.933333pt;}
.y87{bottom:904.293333pt;}
.y9c{bottom:911.653333pt;}
.y2d{bottom:913.893333pt;}
.y5b{bottom:917.333333pt;}
.y86{bottom:919.653333pt;}
.y26{bottom:926.213333pt;}
.y122{bottom:926.293333pt;}
.yd4{bottom:926.933333pt;}
.y5a{bottom:932.613333pt;}
.y85{bottom:934.933333pt;}
.y121{bottom:941.653333pt;}
.yd3{bottom:942.293333pt;}
.y59{bottom:948.000000pt;}
.y84{bottom:950.320000pt;}
.yd2{bottom:957.680000pt;}
.y120{bottom:964.960000pt;}
.y83{bottom:965.680000pt;}
.y58{bottom:971.360000pt;}
.yd1{bottom:972.960000pt;}
.y11f{bottom:980.320000pt;}
.y82{bottom:980.960000pt;}
.y57{bottom:987.120000pt;}
.y56{bottom:996.320000pt;}
.y14c{bottom:1000.960000pt;}
.y11e{bottom:1003.680000pt;}
.y55{bottom:1011.680000pt;}
.y24{bottom:1027.280000pt;}
.y21{bottom:1044.240000pt;}
.h1a{height:26.067187pt;}
.h9{height:28.400000pt;}
.h7{height:28.560000pt;}
.h1f{height:33.918750pt;}
.h17{height:37.105312pt;}
.h1b{height:37.131406pt;}
.ha{height:38.905781pt;}
.h18{height:39.600000pt;}
.h6{height:40.800000pt;}
.h21{height:41.770312pt;}
.h3{height:42.840000pt;}
.hc{height:45.812500pt;}
.h20{height:47.109375pt;}
.h2{height:48.960000pt;}
.h1d{height:50.400000pt;}
.h15{height:52.422344pt;}
.he{height:52.448437pt;}
.h23{height:52.461875pt;}
.h14{height:53.857500pt;}
.h13{height:57.444844pt;}
.h11{height:59.017500pt;}
.hf{height:60.179531pt;}
.hb{height:62.202656pt;}
.h16{height:62.781250pt;}
.h19{height:62.812500pt;}
.h12{height:64.500000pt;}
.h5{height:69.360000pt;}
.hd{height:97.706667pt;}
.h10{height:97.710667pt;}
.h4{height:105.826671pt;}
.h1c{height:156.240000pt;}
.h22{height:173.680000pt;}
.h0{height:1122.518667pt;}
.h1e{height:1122.626588pt;}
.h8{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.560000pt;}
.w9{width:67.226667pt;}
.w6{width:97.466667pt;}
.we{width:157.066667pt;}
.wc{width:158.186667pt;}
.wb{width:158.586667pt;}
.w8{width:168.666667pt;}
.w7{width:408.426667pt;}
.wa{width:438.586667pt;}
.w4{width:439.253333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.wd{width:793.830000pt;}
.w3{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x1f{left:9.600000pt;}
.x1c{left:13.226667pt;}
.x8{left:14.880000pt;}
.x18{left:17.146667pt;}
.x2a{left:18.506667pt;}
.x17{left:19.466667pt;}
.x28{left:21.706667pt;}
.x27{left:23.386667pt;}
.x1b{left:25.786667pt;}
.x29{left:27.946667pt;}
.x19{left:28.906667pt;}
.x20{left:35.626667pt;}
.x1a{left:37.866667pt;}
.x1d{left:39.546667pt;}
.xf{left:48.400000pt;}
.xb{left:59.040000pt;}
.x1e{left:61.546667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xc{left:140.080000pt;}
.x5{left:144.000000pt;}
.x11{left:145.600000pt;}
.x9{left:151.200000pt;}
.x25{left:154.560000pt;}
.x26{left:160.560000pt;}
.xe{left:162.160000pt;}
.x12{left:168.586667pt;}
.x4{left:180.874667pt;}
.xd{left:204.160000pt;}
.x13{left:211.226667pt;}
.xa{left:241.386667pt;}
.x23{left:320.346667pt;}
.x16{left:322.186667pt;}
.x15{left:323.626667pt;}
.x10{left:326.346667pt;}
.x24{left:343.226667pt;}
.x3{left:404.408000pt;}
.x7{left:583.253333pt;}
.x14{left:603.333333pt;}
.x21{left:609.323333pt;}
.x22{left:613.653333pt;}
}




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