
    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_0e2c156b42382efe25cc3590.woff')format("woff");}.ff1{font-family:ff1;line-height:0.774902;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_5a7adc3bf66c1a8f8f791b7a.woff')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_fd93bb60b842afca94b4051c.woff')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_83d969a41249b6298f8b441f.woff')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_f8e995177bd25d48b5d9f028.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1bae2486cacc4784869f6599.woff')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_9f9fda1f7d804dcf0b4fa27e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f3988d3782a02d4acdcb7fd5.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_1dcfbd4a80c514acef28a0be.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_f3ff386077e8a19454c24dee.woff')format("woff");}.ffa{font-family:ffa;line-height:3.667480;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_153879ec0ac959c1aef64bc1.woff')format("woff");}.ffb{font-family:ffb;line-height:1.063477;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_2a1854aea0ea13319da53037.woff')format("woff");}.ffc{font-family:ffc;line-height:0.690918;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);}
.va{vertical-align:-69.120000px;}
.v2{vertical-align:-27.360000px;}
.ve{vertical-align:-20.880000px;}
.v7{vertical-align:-15.120000px;}
.v4{vertical-align:-12.240000px;}
.v3{vertical-align:-9.360000px;}
.v6{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.880000px;}
.vc{vertical-align:8.640000px;}
.v11{vertical-align:12.240000px;}
.v5{vertical-align:14.400000px;}
.vd{vertical-align:25.920000px;}
.v8{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.vf{vertical-align:31.680000px;}
.vb{vertical-align:36.720000px;}
.v10{vertical-align:113.160000px;}
.lse{letter-spacing:-1.176000px;}
.ls12{letter-spacing:-0.666000px;}
.ls46{letter-spacing:-0.540000px;}
.ls49{letter-spacing:-0.513600px;}
.lsf{letter-spacing:-0.457800px;}
.ls3d{letter-spacing:-0.259800px;}
.ls11{letter-spacing:-0.106800px;}
.ls31{letter-spacing:-0.094800px;}
.ls2f{letter-spacing:-0.053280px;}
.ls33{letter-spacing:-0.008640px;}
.ls32{letter-spacing:-0.004320px;}
.lsd{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.008640px;}
.ls0{letter-spacing:0.012960px;}
.ls48{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106560px;}
.ls3c{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.135360px;}
.ls15{letter-spacing:0.135600px;}
.ls43{letter-spacing:0.153600px;}
.ls17{letter-spacing:0.172800px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206400px;}
.ls13{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.ls3b{letter-spacing:0.315360px;}
.ls3{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.399600px;}
.ls45{letter-spacing:0.414600px;}
.ls3a{letter-spacing:0.417600px;}
.ls4a{letter-spacing:0.460200px;}
.ls4c{letter-spacing:0.466800px;}
.lsb{letter-spacing:0.513360px;}
.ls4b{letter-spacing:0.513600px;}
.ls27{letter-spacing:0.532800px;}
.ls47{letter-spacing:0.612000px;}
.ls8{letter-spacing:0.619920px;}
.ls37{letter-spacing:0.738720px;}
.ls16{letter-spacing:0.828000px;}
.ls14{letter-spacing:0.858000px;}
.ls30{letter-spacing:1.080000px;}
.ls1b{letter-spacing:1.119600px;}
.ls2e{letter-spacing:1.327680px;}
.ls23{letter-spacing:1.591680px;}
.ls1f{letter-spacing:1.615680px;}
.ls1a{letter-spacing:1.704240px;}
.ls21{letter-spacing:1.795680px;}
.ls3f{letter-spacing:2.465280px;}
.ls19{letter-spacing:4.224960px;}
.ls38{letter-spacing:5.868000px;}
.ls2d{letter-spacing:6.583680px;}
.ls2b{letter-spacing:6.710400px;}
.ls3e{letter-spacing:6.785280px;}
.ls2c{letter-spacing:7.303680px;}
.ls1c{letter-spacing:7.599600px;}
.ls2{letter-spacing:11.700000px;}
.ls1d{letter-spacing:11.911680px;}
.ls2a{letter-spacing:12.959280px;}
.ls22{letter-spacing:13.190400px;}
.ls24{letter-spacing:13.359600px;}
.ls25{letter-spacing:13.679280px;}
.ls20{letter-spacing:13.783680px;}
.ls18{letter-spacing:16.559280px;}
.ls29{letter-spacing:17.279280px;}
.ls44{letter-spacing:18.900000px;}
.ls35{letter-spacing:18.926640px;}
.ls28{letter-spacing:21.991680px;}
.ls40{letter-spacing:24.785280px;}
.ls42{letter-spacing:26.820000px;}
.ls5{letter-spacing:28.385280px;}
.ls34{letter-spacing:35.946720px;}
.ls6{letter-spacing:38.826720px;}
.ls4{letter-spacing:50.705280px;}
.ls39{letter-spacing:53.388000px;}
.ls41{letter-spacing:59.940000px;}
.ls26{letter-spacing:63.450720px;}
.ls36{letter-spacing:174.801600px;}
.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;}
}
.ws14{word-spacing:-59.760000px;}
.wsb{word-spacing:-20.318400px;}
.ws1d{word-spacing:-16.974600px;}
.ws1{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.102200px;}
.ws10{word-spacing:-16.020000px;}
.wsd{word-spacing:-15.768000px;}
.ws1e{word-spacing:-15.552000px;}
.ws23{word-spacing:-15.453600px;}
.ws24{word-spacing:-15.406800px;}
.ws21{word-spacing:-15.400200px;}
.ws5{word-spacing:-15.384000px;}
.ws18{word-spacing:-15.300000px;}
.ws19{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.146400px;}
.ws22{word-spacing:-15.093600px;}
.ws1a{word-spacing:-15.046800px;}
.ws1f{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.833200px;}
.ws1b{word-spacing:-14.680200px;}
.ws20{word-spacing:-14.426400px;}
.wsc{word-spacing:-14.274000px;}
.ws11{word-spacing:-14.198400px;}
.ws6{word-spacing:-13.500000px;}
.ws13{word-spacing:-13.160160px;}
.ws1c{word-spacing:-12.240000px;}
.ws0{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.732960px;}
.wsa{word-spacing:-9.720000px;}
.ws15{word-spacing:-9.715680px;}
.ws17{word-spacing:-9.711360px;}
.ws12{word-spacing:-9.092400px;}
.ws4{word-spacing:-0.059760px;}
.wse{word-spacing:0.000000px;}
.ws16{word-spacing:0.532080px;}
._2b{margin-left:-10.609920px;}
._2a{margin-left:-6.500640px;}
._26{margin-left:-4.062000px;}
._3{margin-left:-2.456400px;}
._0{margin-left:-1.126080px;}
._1{width:1.002960px;}
._2{width:2.648640px;}
._13{width:3.745680px;}
._11{width:5.318640px;}
._22{width:6.334560px;}
._23{width:7.410240px;}
._19{width:8.545680px;}
._18{width:9.561600px;}
._5{width:11.243760px;}
._4{width:12.442800px;}
._20{width:13.616160px;}
._27{width:15.074640px;}
._1c{width:16.148160px;}
._c{width:17.216640px;}
._b{width:18.290160px;}
._10{width:19.862640px;}
._15{width:20.975760px;}
._1a{width:22.017600px;}
._12{width:23.186880px;}
._1b{width:24.319200px;}
._a{width:25.889040px;}
._9{width:26.951760px;}
._2c{width:28.427040px;}
._16{width:29.640960px;}
._6{width:31.015440px;}
._21{width:32.330160px;}
._1e{width:33.917760px;}
._1d{width:36.133200px;}
._25{width:37.838880px;}
._17{width:39.262320px;}
._1f{width:41.055120px;}
._30{width:43.206480px;}
._14{width:44.939520px;}
._28{width:46.612800px;}
._24{width:48.144240px;}
._38{width:49.250160px;}
._f{width:50.697360px;}
._d{width:51.884640px;}
._e{width:53.246160px;}
._34{width:54.855840px;}
._33{width:59.611680px;}
._31{width:60.633840px;}
._32{width:61.642560px;}
._2d{width:66.751920px;}
._2e{width:68.544720px;}
._2f{width:74.640240px;}
._3b{width:85.898880px;}
._3a{width:86.904000px;}
._36{width:101.963520px;}
._37{width:102.966480px;}
._8{width:107.149680px;}
._7{width:108.285120px;}
._39{width:115.516080px;}
._35{width:133.696080px;}
._3c{width:403.200000px;}
._29{width:427.393200px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8c{bottom:3.420000px;}
.y8f{bottom:4.860000px;}
.y91{bottom:5.220000px;}
.y8e{bottom:5.400000px;}
.y94{bottom:5.760000px;}
.y2{bottom:61.056000px;}
.y5f{bottom:160.230000px;}
.y10b{bottom:166.890000px;}
.y36{bottom:169.050000px;}
.y85{bottom:170.310000px;}
.y5e{bottom:177.330000px;}
.y10a{bottom:183.270000px;}
.yd6{bottom:183.630000px;}
.y35{bottom:186.330000px;}
.y84{bottom:189.030000px;}
.y5d{bottom:194.610000px;}
.ybc{bottom:197.130000px;}
.y109{bottom:199.830000px;}
.yd5{bottom:200.910000px;}
.y34{bottom:203.610000px;}
.y83{bottom:206.310000px;}
.y5c{bottom:211.890000px;}
.ybb{bottom:214.410000px;}
.y108{bottom:216.390000px;}
.y33{bottom:220.890000px;}
.y82{bottom:223.410000px;}
.yd4{bottom:227.010000px;}
.y5b{bottom:229.170000px;}
.yba{bottom:231.690000px;}
.y107{bottom:232.770000px;}
.y32{bottom:237.990000px;}
.yd3{bottom:240.510000px;}
.y81{bottom:241.950000px;}
.y5a{bottom:246.450000px;}
.yb9{bottom:248.970000px;}
.y31{bottom:255.270000px;}
.y106{bottom:258.330000px;}
.y80{bottom:259.230000px;}
.y59{bottom:263.910000px;}
.y30{bottom:272.550000px;}
.y105{bottom:274.890000px;}
.y7f{bottom:276.330000px;}
.y58{bottom:281.190000px;}
.y2f{bottom:289.830000px;}
.y104{bottom:291.270000px;}
.yb8{bottom:292.350000px;}
.y7e{bottom:294.870000px;}
.y57{bottom:298.470000px;}
.y2e{bottom:307.110000px;}
.y103{bottom:307.830000px;}
.yb7{bottom:309.630000px;}
.y7d{bottom:312.330000px;}
.y56{bottom:315.750000px;}
.y2d{bottom:324.390000px;}
.yb6{bottom:326.910000px;}
.y7c{bottom:330.915000px;}
.y55{bottom:333.075000px;}
.y102{bottom:340.815000px;}
.y2c{bottom:341.535000px;}
.yb5{bottom:344.235000px;}
.y7b{bottom:349.635000px;}
.y54{bottom:350.355000px;}
.y101{bottom:357.375000px;}
.y2b{bottom:358.815000px;}
.yb4{bottom:361.515000px;}
.y53{bottom:367.455000px;}
.y7a{bottom:369.075000px;}
.y100{bottom:373.935000px;}
.y2a{bottom:376.095000px;}
.yb3{bottom:378.615000px;}
.y52{bottom:384.735000px;}
.y79{bottom:387.615000px;}
.yff{bottom:390.315000px;}
.y29{bottom:393.375000px;}
.yb2{bottom:395.895000px;}
.ya4{bottom:398.955000px;}
.y51{bottom:402.015000px;}
.y78{bottom:404.895000px;}
.y28{bottom:410.655000px;}
.yb1{bottom:413.175000px;}
.yfe{bottom:415.875000px;}
.ya3{bottom:416.235000px;}
.y50{bottom:419.295000px;}
.y134{bottom:421.815000px;}
.y77{bottom:421.995000px;}
.y27{bottom:427.935000px;}
.yb0{bottom:430.455000px;}
.yfd{bottom:432.435000px;}
.ya2{bottom:433.515000px;}
.y4f{bottom:436.575000px;}
.y133{bottom:438.375000px;}
.y76{bottom:440.535000px;}
.y26{bottom:445.035000px;}
.yaf{bottom:447.735000px;}
.yfc{bottom:448.815000px;}
.ya1{bottom:450.795000px;}
.y4e{bottom:453.855000px;}
.y132{bottom:454.755000px;}
.y75{bottom:459.255000px;}
.y25{bottom:462.315000px;}
.yae{bottom:465.015000px;}
.yfb{bottom:465.375000px;}
.y4d{bottom:470.955000px;}
.y131{bottom:471.315000px;}
.ya0{bottom:476.895000px;}
.y74{bottom:478.695000px;}
.y24{bottom:479.595000px;}
.yfa{bottom:481.935000px;}
.yad{bottom:482.115000px;}
.y4c{bottom:488.595000px;}
.y9f{bottom:494.175000px;}
.y23{bottom:496.875000px;}
.yf9{bottom:498.315000px;}
.yac{bottom:499.395000px;}
.y4b{bottom:505.875000px;}
.y73{bottom:506.235000px;}
.y130{bottom:513.255000px;}
.y22{bottom:514.155000px;}
.yf8{bottom:514.875000px;}
.y9e{bottom:516.675000px;}
.yd2{bottom:518.835000px;}
.y4a{bottom:523.155000px;}
.y12f{bottom:529.815000px;}
.y21{bottom:531.255000px;}
.yf7{bottom:531.435000px;}
.yd1{bottom:532.335000px;}
.y72{bottom:532.515000px;}
.y49{bottom:540.255000px;}
.yab{bottom:542.955000px;}
.y12e{bottom:546.375000px;}
.y71{bottom:551.235000px;}
.yf6{bottom:556.815000px;}
.y20{bottom:557.895000px;}
.yaa{bottom:560.235000px;}
.y12d{bottom:562.755000px;}
.y48{bottom:566.895000px;}
.y70{bottom:569.595000px;}
.yf5{bottom:573.375000px;}
.ya9{bottom:577.515000px;}
.y12c{bottom:579.315000px;}
.y1f{bottom:585.615000px;}
.y6f{bottom:588.135000px;}
.yf4{bottom:589.935000px;}
.y47{bottom:594.615000px;}
.y12b{bottom:595.905000px;}
.ya8{bottom:600.045000px;}
.yf3{bottom:606.345000px;}
.y1e{bottom:611.565000px;}
.y46{bottom:611.925000px;}
.y6e{bottom:614.985000px;}
.y12a{bottom:621.285000px;}
.yf2{bottom:622.905000px;}
.y1d{bottom:628.665000px;}
.y45{bottom:629.025000px;}
.y129{bottom:637.845000px;}
.y6d{bottom:641.265000px;}
.y1c{bottom:645.945000px;}
.y44{bottom:646.305000px;}
.yf1{bottom:648.465000px;}
.y128{bottom:654.405000px;}
.y6c{bottom:658.545000px;}
.y1b{bottom:663.225000px;}
.y43{bottom:663.585000px;}
.yf0{bottom:664.845000px;}
.y127{bottom:670.785000px;}
.y6b{bottom:675.645000px;}
.y1a{bottom:680.505000px;}
.y42{bottom:680.865000px;}
.yef{bottom:681.405000px;}
.y126{bottom:687.345000px;}
.y19{bottom:697.785000px;}
.yee{bottom:697.965000px;}
.y41{bottom:698.145000px;}
.y6a{bottom:701.925000px;}
.y125{bottom:703.905000px;}
.yed{bottom:714.345000px;}
.y18{bottom:715.065000px;}
.y40{bottom:715.425000px;}
.y124{bottom:720.285000px;}
.y69{bottom:728.205000px;}
.y17{bottom:732.165000px;}
.y3f{bottom:732.525000px;}
.y123{bottom:736.845000px;}
.yec{bottom:740.625000px;}
.y68{bottom:745.485000px;}
.y16{bottom:749.445000px;}
.y3e{bottom:749.805000px;}
.y122{bottom:753.405000px;}
.y15{bottom:766.725000px;}
.y3d{bottom:767.085000px;}
.y67{bottom:767.985000px;}
.yeb{bottom:768.345000px;}
.y121{bottom:778.785000px;}
.y9d{bottom:781.485000px;}
.y14{bottom:784.005000px;}
.y3c{bottom:784.365000px;}
.yea{bottom:785.445000px;}
.y120{bottom:795.345000px;}
.yd0{bottom:797.145000px;}
.y9c{bottom:798.765000px;}
.y13{bottom:801.285000px;}
.y3b{bottom:801.645000px;}
.ye9{bottom:802.725000px;}
.y11f{bottom:811.905000px;}
.ycf{bottom:814.425000px;}
.y9b{bottom:816.045000px;}
.y12{bottom:818.385000px;}
.y3a{bottom:818.745000px;}
.ye8{bottom:820.005000px;}
.y11e{bottom:828.285000px;}
.yce{bottom:831.705000px;}
.y9a{bottom:833.325000px;}
.y11{bottom:835.665000px;}
.y39{bottom:836.025000px;}
.ye7{bottom:837.645000px;}
.y11d{bottom:844.845000px;}
.ycd{bottom:848.985000px;}
.y99{bottom:850.425000px;}
.y10{bottom:852.945000px;}
.y38{bottom:853.305000px;}
.y11c{bottom:861.405000px;}
.ya7{bottom:864.690000px;}
.ye6{bottom:865.230000px;}
.ycc{bottom:866.130000px;}
.y98{bottom:867.750000px;}
.yf{bottom:870.270000px;}
.y37{bottom:870.630000px;}
.ya6{bottom:881.970000px;}
.ye5{bottom:882.510000px;}
.ycb{bottom:883.410000px;}
.y97{bottom:885.030000px;}
.y11b{bottom:886.830000px;}
.ye{bottom:896.910000px;}
.ye4{bottom:899.790000px;}
.yca{bottom:900.690000px;}
.y96{bottom:902.310000px;}
.y11a{bottom:903.390000px;}
.ya5{bottom:904.470000px;}
.ye3{bottom:917.070000px;}
.yc9{bottom:917.970000px;}
.y119{bottom:919.950000px;}
.yd{bottom:923.190000px;}
.y95{bottom:928.590000px;}
.ye2{bottom:934.350000px;}
.yc8{bottom:935.250000px;}
.y118{bottom:936.330000px;}
.y93{bottom:942.810000px;}
.yc{bottom:947.130000px;}
.ye1{bottom:951.630000px;}
.yc7{bottom:952.530000px;}
.y117{bottom:952.890000px;}
.y92{bottom:962.790000px;}
.yb{bottom:966.570000px;}
.ye0{bottom:968.730000px;}
.y116{bottom:969.450000px;}
.yc6{bottom:969.630000px;}
.y90{bottom:982.950000px;}
.y115{bottom:985.830000px;}
.ydf{bottom:986.010000px;}
.yc5{bottom:986.910000px;}
.ya{bottom:990.690000px;}
.y114{bottom:1002.390000px;}
.y8d{bottom:1002.930000px;}
.yde{bottom:1003.290000px;}
.yc4{bottom:1004.190000px;}
.y9{bottom:1010.130000px;}
.y113{bottom:1018.950000px;}
.ydd{bottom:1020.570000px;}
.y66{bottom:1021.470000px;}
.y8b{bottom:1023.090000px;}
.y8{bottom:1027.410000px;}
.y112{bottom:1035.330000px;}
.ydc{bottom:1037.850000px;}
.yc3{bottom:1038.750000px;}
.y65{bottom:1047.750000px;}
.y7{bottom:1051.530000px;}
.y111{bottom:1051.890000px;}
.y8a{bottom:1053.870000px;}
.ydb{bottom:1054.950000px;}
.yc2{bottom:1055.850000px;}
.y64{bottom:1065.030000px;}
.y110{bottom:1068.450000px;}
.y6{bottom:1068.630000px;}
.yda{bottom:1072.230000px;}
.yc1{bottom:1073.130000px;}
.y89{bottom:1080.150000px;}
.y63{bottom:1082.310000px;}
.y10f{bottom:1084.830000px;}
.y5{bottom:1088.430000px;}
.yd9{bottom:1089.510000px;}
.y88{bottom:1097.430000px;}
.y62{bottom:1099.590000px;}
.y10e{bottom:1101.390000px;}
.ybf{bottom:1106.790000px;}
.y4{bottom:1107.330000px;}
.yc0{bottom:1111.650000px;}
.ybd{bottom:1119.570000px;}
.y87{bottom:1123.710000px;}
.yd8{bottom:1124.070000px;}
.y61{bottom:1125.690000px;}
.y10d{bottom:1126.950000px;}
.ybe{bottom:1134.000000px;}
.y3{bottom:1139.940000px;}
.yd7{bottom:1141.560000px;}
.y86{bottom:1142.460000px;}
.y60{bottom:1143.000000px;}
.y10c{bottom:1143.360000px;}
.y1{bottom:1194.840000px;}
.he{height:17.280000px;}
.h10{height:19.260000px;}
.hf{height:19.440000px;}
.h6{height:38.139609px;}
.h14{height:43.215117px;}
.h2{height:45.403594px;}
.h7{height:58.621992px;}
.h3{height:58.651172px;}
.ha{height:59.614102px;}
.h8{height:60.226875px;}
.h9{height:68.084282px;}
.h5{height:71.225156px;}
.h4{height:72.562500px;}
.h11{height:76.289062px;}
.h12{height:92.129063px;}
.hb{height:126.639844px;}
.hc{height:128.799844px;}
.hd{height:129.519844px;}
.h13{height:180.034219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:128.880000px;}
.w3{width:128.916000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.740000px;}
.xd{left:84.960000px;}
.x20{left:88.200000px;}
.x1f{left:92.160000px;}
.x1d{left:95.436000px;}
.x12{left:96.516000px;}
.xc{left:106.236000px;}
.x4{left:108.036000px;}
.x15{left:111.996000px;}
.x2d{left:117.036000px;}
.x3{left:124.956000px;}
.x1e{left:134.316000px;}
.x21{left:142.236000px;}
.x5{left:151.410000px;}
.x2b{left:162.390000px;}
.xe{left:187.410000px;}
.x2a{left:190.650000px;}
.x2c{left:195.510000px;}
.x13{left:215.670000px;}
.xb{left:218.730000px;}
.x14{left:252.390000px;}
.x6{left:265.890000px;}
.x9{left:284.655000px;}
.xa{left:337.575000px;}
.x8{left:352.695000px;}
.x7{left:383.115000px;}
.x11{left:420.195000px;}
.x2{left:446.475000px;}
.xf{left:473.145000px;}
.x1b{left:478.905000px;}
.x22{left:484.485000px;}
.x16{left:500.145000px;}
.x2e{left:505.185000px;}
.x18{left:511.305000px;}
.x10{left:518.145000px;}
.x1c{left:522.465000px;}
.x17{left:525.345000px;}
.x24{left:561.885000px;}
.x29{left:624.165000px;}
.x27{left:632.265000px;}
.x23{left:639.285000px;}
.x1a{left:640.905000px;}
.x25{left:677.850000px;}
.x26{left:714.030000px;}
.x1{left:807.990000px;}
.x28{left:822.570000px;}
@media print{
.va{vertical-align:-61.440000pt;}
.v2{vertical-align:-24.320000pt;}
.ve{vertical-align:-18.560000pt;}
.v7{vertical-align:-13.440000pt;}
.v4{vertical-align:-10.880000pt;}
.v3{vertical-align:-8.320000pt;}
.v6{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.560000pt;}
.vc{vertical-align:7.680000pt;}
.v11{vertical-align:10.880000pt;}
.v5{vertical-align:12.800000pt;}
.vd{vertical-align:23.040000pt;}
.v8{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.vf{vertical-align:28.160000pt;}
.vb{vertical-align:32.640000pt;}
.v10{vertical-align:100.586667pt;}
.lse{letter-spacing:-1.045333pt;}
.ls12{letter-spacing:-0.592000pt;}
.ls46{letter-spacing:-0.480000pt;}
.ls49{letter-spacing:-0.456533pt;}
.lsf{letter-spacing:-0.406933pt;}
.ls3d{letter-spacing:-0.230933pt;}
.ls11{letter-spacing:-0.094933pt;}
.ls31{letter-spacing:-0.084267pt;}
.ls2f{letter-spacing:-0.047360pt;}
.ls33{letter-spacing:-0.007680pt;}
.ls32{letter-spacing:-0.003840pt;}
.lsd{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.007680pt;}
.ls0{letter-spacing:0.011520pt;}
.ls48{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094720pt;}
.ls3c{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.120320pt;}
.ls15{letter-spacing:0.120533pt;}
.ls43{letter-spacing:0.136533pt;}
.ls17{letter-spacing:0.153600pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183467pt;}
.ls13{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.ls3b{letter-spacing:0.280320pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.355200pt;}
.ls45{letter-spacing:0.368533pt;}
.ls3a{letter-spacing:0.371200pt;}
.ls4a{letter-spacing:0.409067pt;}
.ls4c{letter-spacing:0.414933pt;}
.lsb{letter-spacing:0.456320pt;}
.ls4b{letter-spacing:0.456533pt;}
.ls27{letter-spacing:0.473600pt;}
.ls47{letter-spacing:0.544000pt;}
.ls8{letter-spacing:0.551040pt;}
.ls37{letter-spacing:0.656640pt;}
.ls16{letter-spacing:0.736000pt;}
.ls14{letter-spacing:0.762667pt;}
.ls30{letter-spacing:0.960000pt;}
.ls1b{letter-spacing:0.995200pt;}
.ls2e{letter-spacing:1.180160pt;}
.ls23{letter-spacing:1.414827pt;}
.ls1f{letter-spacing:1.436160pt;}
.ls1a{letter-spacing:1.514880pt;}
.ls21{letter-spacing:1.596160pt;}
.ls3f{letter-spacing:2.191360pt;}
.ls19{letter-spacing:3.755520pt;}
.ls38{letter-spacing:5.216000pt;}
.ls2d{letter-spacing:5.852160pt;}
.ls2b{letter-spacing:5.964800pt;}
.ls3e{letter-spacing:6.031360pt;}
.ls2c{letter-spacing:6.492160pt;}
.ls1c{letter-spacing:6.755200pt;}
.ls2{letter-spacing:10.400000pt;}
.ls1d{letter-spacing:10.588160pt;}
.ls2a{letter-spacing:11.519360pt;}
.ls22{letter-spacing:11.724800pt;}
.ls24{letter-spacing:11.875200pt;}
.ls25{letter-spacing:12.159360pt;}
.ls20{letter-spacing:12.252160pt;}
.ls18{letter-spacing:14.719360pt;}
.ls29{letter-spacing:15.359360pt;}
.ls44{letter-spacing:16.800000pt;}
.ls35{letter-spacing:16.823680pt;}
.ls28{letter-spacing:19.548160pt;}
.ls40{letter-spacing:22.031360pt;}
.ls42{letter-spacing:23.840000pt;}
.ls5{letter-spacing:25.231360pt;}
.ls34{letter-spacing:31.952640pt;}
.ls6{letter-spacing:34.512640pt;}
.ls4{letter-spacing:45.071360pt;}
.ls39{letter-spacing:47.456000pt;}
.ls41{letter-spacing:53.280000pt;}
.ls26{letter-spacing:56.400640pt;}
.ls36{letter-spacing:155.379200pt;}
.ws14{word-spacing:-53.120000pt;}
.wsb{word-spacing:-18.060800pt;}
.ws1d{word-spacing:-15.088533pt;}
.ws1{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.313067pt;}
.ws10{word-spacing:-14.240000pt;}
.wsd{word-spacing:-14.016000pt;}
.ws1e{word-spacing:-13.824000pt;}
.ws23{word-spacing:-13.736533pt;}
.ws24{word-spacing:-13.694933pt;}
.ws21{word-spacing:-13.689067pt;}
.ws5{word-spacing:-13.674667pt;}
.ws18{word-spacing:-13.600000pt;}
.ws19{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.463467pt;}
.ws22{word-spacing:-13.416533pt;}
.ws1a{word-spacing:-13.374933pt;}
.ws1f{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.185067pt;}
.ws1b{word-spacing:-13.049067pt;}
.ws20{word-spacing:-12.823467pt;}
.wsc{word-spacing:-12.688000pt;}
.ws11{word-spacing:-12.620800pt;}
.ws6{word-spacing:-12.000000pt;}
.ws13{word-spacing:-11.697920pt;}
.ws1c{word-spacing:-10.880000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.651520pt;}
.wsa{word-spacing:-8.640000pt;}
.ws15{word-spacing:-8.636160pt;}
.ws17{word-spacing:-8.632320pt;}
.ws12{word-spacing:-8.082133pt;}
.ws4{word-spacing:-0.053120pt;}
.wse{word-spacing:0.000000pt;}
.ws16{word-spacing:0.472960pt;}
._2b{margin-left:-9.431040pt;}
._2a{margin-left:-5.778347pt;}
._26{margin-left:-3.610667pt;}
._3{margin-left:-2.183467pt;}
._0{margin-left:-1.000960pt;}
._1{width:0.891520pt;}
._2{width:2.354347pt;}
._13{width:3.329493pt;}
._11{width:4.727680pt;}
._22{width:5.630720pt;}
._23{width:6.586880pt;}
._19{width:7.596160pt;}
._18{width:8.499200pt;}
._5{width:9.994453pt;}
._4{width:11.060267pt;}
._20{width:12.103253pt;}
._27{width:13.399680pt;}
._1c{width:14.353920pt;}
._c{width:15.303680pt;}
._b{width:16.257920pt;}
._10{width:17.655680pt;}
._15{width:18.645120pt;}
._1a{width:19.571200pt;}
._12{width:20.610560pt;}
._1b{width:21.617067pt;}
._a{width:23.012480pt;}
._9{width:23.957120pt;}
._2c{width:25.268480pt;}
._16{width:26.347520pt;}
._6{width:27.569280pt;}
._21{width:28.737920pt;}
._1e{width:30.149120pt;}
._1d{width:32.118400pt;}
._25{width:33.634560pt;}
._17{width:34.899840pt;}
._1f{width:36.493440pt;}
._30{width:38.405760pt;}
._14{width:39.946240pt;}
._28{width:41.433600pt;}
._24{width:42.794880pt;}
._38{width:43.777920pt;}
._f{width:45.064320pt;}
._d{width:46.119680pt;}
._e{width:47.329920pt;}
._34{width:48.760747pt;}
._33{width:52.988160pt;}
._31{width:53.896747pt;}
._32{width:54.793387pt;}
._2d{width:59.335040pt;}
._2e{width:60.928640pt;}
._2f{width:66.346880pt;}
._3b{width:76.354560pt;}
._3a{width:77.248000pt;}
._36{width:90.634240pt;}
._37{width:91.525760pt;}
._8{width:95.244160pt;}
._7{width:96.253440pt;}
._39{width:102.680960pt;}
._35{width:118.840960pt;}
._3c{width:358.400000pt;}
._29{width:379.905067pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:3.040000pt;}
.y8f{bottom:4.320000pt;}
.y91{bottom:4.640000pt;}
.y8e{bottom:4.800000pt;}
.y94{bottom:5.120000pt;}
.y2{bottom:54.272000pt;}
.y5f{bottom:142.426667pt;}
.y10b{bottom:148.346667pt;}
.y36{bottom:150.266667pt;}
.y85{bottom:151.386667pt;}
.y5e{bottom:157.626667pt;}
.y10a{bottom:162.906667pt;}
.yd6{bottom:163.226667pt;}
.y35{bottom:165.626667pt;}
.y84{bottom:168.026667pt;}
.y5d{bottom:172.986667pt;}
.ybc{bottom:175.226667pt;}
.y109{bottom:177.626667pt;}
.yd5{bottom:178.586667pt;}
.y34{bottom:180.986667pt;}
.y83{bottom:183.386667pt;}
.y5c{bottom:188.346667pt;}
.ybb{bottom:190.586667pt;}
.y108{bottom:192.346667pt;}
.y33{bottom:196.346667pt;}
.y82{bottom:198.586667pt;}
.yd4{bottom:201.786667pt;}
.y5b{bottom:203.706667pt;}
.yba{bottom:205.946667pt;}
.y107{bottom:206.906667pt;}
.y32{bottom:211.546667pt;}
.yd3{bottom:213.786667pt;}
.y81{bottom:215.066667pt;}
.y5a{bottom:219.066667pt;}
.yb9{bottom:221.306667pt;}
.y31{bottom:226.906667pt;}
.y106{bottom:229.626667pt;}
.y80{bottom:230.426667pt;}
.y59{bottom:234.586667pt;}
.y30{bottom:242.266667pt;}
.y105{bottom:244.346667pt;}
.y7f{bottom:245.626667pt;}
.y58{bottom:249.946667pt;}
.y2f{bottom:257.626667pt;}
.y104{bottom:258.906667pt;}
.yb8{bottom:259.866667pt;}
.y7e{bottom:262.106667pt;}
.y57{bottom:265.306667pt;}
.y2e{bottom:272.986667pt;}
.y103{bottom:273.626667pt;}
.yb7{bottom:275.226667pt;}
.y7d{bottom:277.626667pt;}
.y56{bottom:280.666667pt;}
.y2d{bottom:288.346667pt;}
.yb6{bottom:290.586667pt;}
.y7c{bottom:294.146667pt;}
.y55{bottom:296.066667pt;}
.y102{bottom:302.946667pt;}
.y2c{bottom:303.586667pt;}
.yb5{bottom:305.986667pt;}
.y7b{bottom:310.786667pt;}
.y54{bottom:311.426667pt;}
.y101{bottom:317.666667pt;}
.y2b{bottom:318.946667pt;}
.yb4{bottom:321.346667pt;}
.y53{bottom:326.626667pt;}
.y7a{bottom:328.066667pt;}
.y100{bottom:332.386667pt;}
.y2a{bottom:334.306667pt;}
.yb3{bottom:336.546667pt;}
.y52{bottom:341.986667pt;}
.y79{bottom:344.546667pt;}
.yff{bottom:346.946667pt;}
.y29{bottom:349.666667pt;}
.yb2{bottom:351.906667pt;}
.ya4{bottom:354.626667pt;}
.y51{bottom:357.346667pt;}
.y78{bottom:359.906667pt;}
.y28{bottom:365.026667pt;}
.yb1{bottom:367.266667pt;}
.yfe{bottom:369.666667pt;}
.ya3{bottom:369.986667pt;}
.y50{bottom:372.706667pt;}
.y134{bottom:374.946667pt;}
.y77{bottom:375.106667pt;}
.y27{bottom:380.386667pt;}
.yb0{bottom:382.626667pt;}
.yfd{bottom:384.386667pt;}
.ya2{bottom:385.346667pt;}
.y4f{bottom:388.066667pt;}
.y133{bottom:389.666667pt;}
.y76{bottom:391.586667pt;}
.y26{bottom:395.586667pt;}
.yaf{bottom:397.986667pt;}
.yfc{bottom:398.946667pt;}
.ya1{bottom:400.706667pt;}
.y4e{bottom:403.426667pt;}
.y132{bottom:404.226667pt;}
.y75{bottom:408.226667pt;}
.y25{bottom:410.946667pt;}
.yae{bottom:413.346667pt;}
.yfb{bottom:413.666667pt;}
.y4d{bottom:418.626667pt;}
.y131{bottom:418.946667pt;}
.ya0{bottom:423.906667pt;}
.y74{bottom:425.506667pt;}
.y24{bottom:426.306667pt;}
.yfa{bottom:428.386667pt;}
.yad{bottom:428.546667pt;}
.y4c{bottom:434.306667pt;}
.y9f{bottom:439.266667pt;}
.y23{bottom:441.666667pt;}
.yf9{bottom:442.946667pt;}
.yac{bottom:443.906667pt;}
.y4b{bottom:449.666667pt;}
.y73{bottom:449.986667pt;}
.y130{bottom:456.226667pt;}
.y22{bottom:457.026667pt;}
.yf8{bottom:457.666667pt;}
.y9e{bottom:459.266667pt;}
.yd2{bottom:461.186667pt;}
.y4a{bottom:465.026667pt;}
.y12f{bottom:470.946667pt;}
.y21{bottom:472.226667pt;}
.yf7{bottom:472.386667pt;}
.yd1{bottom:473.186667pt;}
.y72{bottom:473.346667pt;}
.y49{bottom:480.226667pt;}
.yab{bottom:482.626667pt;}
.y12e{bottom:485.666667pt;}
.y71{bottom:489.986667pt;}
.yf6{bottom:494.946667pt;}
.y20{bottom:495.906667pt;}
.yaa{bottom:497.986667pt;}
.y12d{bottom:500.226667pt;}
.y48{bottom:503.906667pt;}
.y70{bottom:506.306667pt;}
.yf5{bottom:509.666667pt;}
.ya9{bottom:513.346667pt;}
.y12c{bottom:514.946667pt;}
.y1f{bottom:520.546667pt;}
.y6f{bottom:522.786667pt;}
.yf4{bottom:524.386667pt;}
.y47{bottom:528.546667pt;}
.y12b{bottom:529.693333pt;}
.ya8{bottom:533.373333pt;}
.yf3{bottom:538.973333pt;}
.y1e{bottom:543.613333pt;}
.y46{bottom:543.933333pt;}
.y6e{bottom:546.653333pt;}
.y12a{bottom:552.253333pt;}
.yf2{bottom:553.693333pt;}
.y1d{bottom:558.813333pt;}
.y45{bottom:559.133333pt;}
.y129{bottom:566.973333pt;}
.y6d{bottom:570.013333pt;}
.y1c{bottom:574.173333pt;}
.y44{bottom:574.493333pt;}
.yf1{bottom:576.413333pt;}
.y128{bottom:581.693333pt;}
.y6c{bottom:585.373333pt;}
.y1b{bottom:589.533333pt;}
.y43{bottom:589.853333pt;}
.yf0{bottom:590.973333pt;}
.y127{bottom:596.253333pt;}
.y6b{bottom:600.573333pt;}
.y1a{bottom:604.893333pt;}
.y42{bottom:605.213333pt;}
.yef{bottom:605.693333pt;}
.y126{bottom:610.973333pt;}
.y19{bottom:620.253333pt;}
.yee{bottom:620.413333pt;}
.y41{bottom:620.573333pt;}
.y6a{bottom:623.933333pt;}
.y125{bottom:625.693333pt;}
.yed{bottom:634.973333pt;}
.y18{bottom:635.613333pt;}
.y40{bottom:635.933333pt;}
.y124{bottom:640.253333pt;}
.y69{bottom:647.293333pt;}
.y17{bottom:650.813333pt;}
.y3f{bottom:651.133333pt;}
.y123{bottom:654.973333pt;}
.yec{bottom:658.333333pt;}
.y68{bottom:662.653333pt;}
.y16{bottom:666.173333pt;}
.y3e{bottom:666.493333pt;}
.y122{bottom:669.693333pt;}
.y15{bottom:681.533333pt;}
.y3d{bottom:681.853333pt;}
.y67{bottom:682.653333pt;}
.yeb{bottom:682.973333pt;}
.y121{bottom:692.253333pt;}
.y9d{bottom:694.653333pt;}
.y14{bottom:696.893333pt;}
.y3c{bottom:697.213333pt;}
.yea{bottom:698.173333pt;}
.y120{bottom:706.973333pt;}
.yd0{bottom:708.573333pt;}
.y9c{bottom:710.013333pt;}
.y13{bottom:712.253333pt;}
.y3b{bottom:712.573333pt;}
.ye9{bottom:713.533333pt;}
.y11f{bottom:721.693333pt;}
.ycf{bottom:723.933333pt;}
.y9b{bottom:725.373333pt;}
.y12{bottom:727.453333pt;}
.y3a{bottom:727.773333pt;}
.ye8{bottom:728.893333pt;}
.y11e{bottom:736.253333pt;}
.yce{bottom:739.293333pt;}
.y9a{bottom:740.733333pt;}
.y11{bottom:742.813333pt;}
.y39{bottom:743.133333pt;}
.ye7{bottom:744.573333pt;}
.y11d{bottom:750.973333pt;}
.ycd{bottom:754.653333pt;}
.y99{bottom:755.933333pt;}
.y10{bottom:758.173333pt;}
.y38{bottom:758.493333pt;}
.y11c{bottom:765.693333pt;}
.ya7{bottom:768.613333pt;}
.ye6{bottom:769.093333pt;}
.ycc{bottom:769.893333pt;}
.y98{bottom:771.333333pt;}
.yf{bottom:773.573333pt;}
.y37{bottom:773.893333pt;}
.ya6{bottom:783.973333pt;}
.ye5{bottom:784.453333pt;}
.ycb{bottom:785.253333pt;}
.y97{bottom:786.693333pt;}
.y11b{bottom:788.293333pt;}
.ye{bottom:797.253333pt;}
.ye4{bottom:799.813333pt;}
.yca{bottom:800.613333pt;}
.y96{bottom:802.053333pt;}
.y11a{bottom:803.013333pt;}
.ya5{bottom:803.973333pt;}
.ye3{bottom:815.173333pt;}
.yc9{bottom:815.973333pt;}
.y119{bottom:817.733333pt;}
.yd{bottom:820.613333pt;}
.y95{bottom:825.413333pt;}
.ye2{bottom:830.533333pt;}
.yc8{bottom:831.333333pt;}
.y118{bottom:832.293333pt;}
.y93{bottom:838.053333pt;}
.yc{bottom:841.893333pt;}
.ye1{bottom:845.893333pt;}
.yc7{bottom:846.693333pt;}
.y117{bottom:847.013333pt;}
.y92{bottom:855.813333pt;}
.yb{bottom:859.173333pt;}
.ye0{bottom:861.093333pt;}
.y116{bottom:861.733333pt;}
.yc6{bottom:861.893333pt;}
.y90{bottom:873.733333pt;}
.y115{bottom:876.293333pt;}
.ydf{bottom:876.453333pt;}
.yc5{bottom:877.253333pt;}
.ya{bottom:880.613333pt;}
.y114{bottom:891.013333pt;}
.y8d{bottom:891.493333pt;}
.yde{bottom:891.813333pt;}
.yc4{bottom:892.613333pt;}
.y9{bottom:897.893333pt;}
.y113{bottom:905.733333pt;}
.ydd{bottom:907.173333pt;}
.y66{bottom:907.973333pt;}
.y8b{bottom:909.413333pt;}
.y8{bottom:913.253333pt;}
.y112{bottom:920.293333pt;}
.ydc{bottom:922.533333pt;}
.yc3{bottom:923.333333pt;}
.y65{bottom:931.333333pt;}
.y7{bottom:934.693333pt;}
.y111{bottom:935.013333pt;}
.y8a{bottom:936.773333pt;}
.ydb{bottom:937.733333pt;}
.yc2{bottom:938.533333pt;}
.y64{bottom:946.693333pt;}
.y110{bottom:949.733333pt;}
.y6{bottom:949.893333pt;}
.yda{bottom:953.093333pt;}
.yc1{bottom:953.893333pt;}
.y89{bottom:960.133333pt;}
.y63{bottom:962.053333pt;}
.y10f{bottom:964.293333pt;}
.y5{bottom:967.493333pt;}
.yd9{bottom:968.453333pt;}
.y88{bottom:975.493333pt;}
.y62{bottom:977.413333pt;}
.y10e{bottom:979.013333pt;}
.ybf{bottom:983.813333pt;}
.y4{bottom:984.293333pt;}
.yc0{bottom:988.133333pt;}
.ybd{bottom:995.173333pt;}
.y87{bottom:998.853333pt;}
.yd8{bottom:999.173333pt;}
.y61{bottom:1000.613333pt;}
.y10d{bottom:1001.733333pt;}
.ybe{bottom:1008.000000pt;}
.y3{bottom:1013.280000pt;}
.yd7{bottom:1014.720000pt;}
.y86{bottom:1015.520000pt;}
.y60{bottom:1016.000000pt;}
.y10c{bottom:1016.320000pt;}
.y1{bottom:1062.080000pt;}
.he{height:15.360000pt;}
.h10{height:17.120000pt;}
.hf{height:17.280000pt;}
.h6{height:33.901875pt;}
.h14{height:38.413438pt;}
.h2{height:40.358750pt;}
.h7{height:52.108438pt;}
.h3{height:52.134375pt;}
.ha{height:52.990313pt;}
.h8{height:53.535000pt;}
.h9{height:60.519362pt;}
.h5{height:63.311250pt;}
.h4{height:64.500000pt;}
.h11{height:67.812500pt;}
.h12{height:81.892500pt;}
.hb{height:112.568750pt;}
.hc{height:114.488750pt;}
.hd{height:115.128750pt;}
.h13{height:160.030417pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:114.560000pt;}
.w3{width:114.592000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.880000pt;}
.xd{left:75.520000pt;}
.x20{left:78.400000pt;}
.x1f{left:81.920000pt;}
.x1d{left:84.832000pt;}
.x12{left:85.792000pt;}
.xc{left:94.432000pt;}
.x4{left:96.032000pt;}
.x15{left:99.552000pt;}
.x2d{left:104.032000pt;}
.x3{left:111.072000pt;}
.x1e{left:119.392000pt;}
.x21{left:126.432000pt;}
.x5{left:134.586667pt;}
.x2b{left:144.346667pt;}
.xe{left:166.586667pt;}
.x2a{left:169.466667pt;}
.x2c{left:173.786667pt;}
.x13{left:191.706667pt;}
.xb{left:194.426667pt;}
.x14{left:224.346667pt;}
.x6{left:236.346667pt;}
.x9{left:253.026667pt;}
.xa{left:300.066667pt;}
.x8{left:313.506667pt;}
.x7{left:340.546667pt;}
.x11{left:373.506667pt;}
.x2{left:396.866667pt;}
.xf{left:420.573333pt;}
.x1b{left:425.693333pt;}
.x22{left:430.653333pt;}
.x16{left:444.573333pt;}
.x2e{left:449.053333pt;}
.x18{left:454.493333pt;}
.x10{left:460.573333pt;}
.x1c{left:464.413333pt;}
.x17{left:466.973333pt;}
.x24{left:499.453333pt;}
.x29{left:554.813333pt;}
.x27{left:562.013333pt;}
.x23{left:568.253333pt;}
.x1a{left:569.693333pt;}
.x25{left:602.533333pt;}
.x26{left:634.693333pt;}
.x1{left:718.213333pt;}
.x28{left:731.173333pt;}
}




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