
    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_27ae82d2b871734dd054f5ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b0f9f4a1950d56eb150b346b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1d0becb47ea09ef1c848fbbd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_acff72b23622734401bd9cf1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_084e4c6c39e93ce2b8a45d91.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_00815590d7f316e4d7db0601.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_112037e2824da478b891ec1b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_7d965b85ebad7cd36c6f8f34.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6473a33673f9364f90c63771.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c085d832093bf4ed1b271358.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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_3c2be860b12678fc89b74d4d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.061035;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_48eb23084201551fe916d063.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.854492;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_5be3cf8c381b791fb1ecbd2f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.052734;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_404f2a4ecd0f748b67342c8e.woff2')format("woff");}.fff{font-family:fff;line-height:1.052734;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_e7f5a456e4121fb3960cd4c9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.908691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7e0fc4b77ee48f6c4990c6b2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_4df55506d81cd5338913088a.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-67.680000px;}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.240000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:69.120000px;}
.ls7{letter-spacing:-0.478200px;}
.ls1b{letter-spacing:-0.460200px;}
.lsa{letter-spacing:-0.270600px;}
.ls1a{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.022320px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.224400px;}
.ls8{letter-spacing:0.241800px;}
.ls13{letter-spacing:0.246000px;}
.ls14{letter-spacing:0.259800px;}
.ls19{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.328320px;}
.ls2{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.451440px;}
.ls16{letter-spacing:0.666000px;}
.lsb{letter-spacing:0.828000px;}
.lsf{letter-spacing:1.404720px;}
.lsd{letter-spacing:2.460960px;}
.lsc{letter-spacing:16.140960px;}
.lse{letter-spacing:16.320960px;}
.ls17{letter-spacing:21.546720px;}
.ls10{letter-spacing:776.496000px;}
.ls15{letter-spacing:854.976000px;}
.ls11{letter-spacing:864.336000px;}
.ls12{letter-spacing:887.376000px;}
.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;}
}
.wse{word-spacing:-60.006000px;}
.wsd{word-spacing:-59.760000px;}
.wsc{word-spacing:-46.080720px;}
.wsb{word-spacing:-43.200720px;}
.ws1{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.199800px;}
.ws2{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.147200px;}
.ws0{word-spacing:-10.924560px;}
.ws7{word-spacing:-10.854600px;}
.ws5{word-spacing:-10.612800px;}
.ws3{word-spacing:-10.440000px;}
.ws9{word-spacing:-10.342200px;}
.ws6{word-spacing:-10.134600px;}
.wsa{word-spacing:0.000000px;}
._3a{margin-left:-9.153360px;}
._32{margin-left:-5.214480px;}
._30{margin-left:-4.183200px;}
._2{margin-left:-3.158400px;}
._1{margin-left:-1.336800px;}
._0{width:1.434240px;}
._3{width:2.748960px;}
._4{width:4.183200px;}
._10{width:5.378400px;}
._18{width:6.454080px;}
._9{width:7.541040px;}
._8{width:8.545680px;}
._d{width:9.860400px;}
._e{width:11.115360px;}
._13{width:12.310560px;}
._26{width:13.386240px;}
._11{width:14.461920px;}
._12{width:15.638880px;}
._5{width:16.702560px;}
._6{width:17.988480px;}
._7{width:19.123200px;}
._19{width:20.916000px;}
._b{width:22.410000px;}
._c{width:23.605200px;}
._1f{width:24.919920px;}
._17{width:26.533440px;}
._29{width:27.638400px;}
._22{width:29.103120px;}
._1c{width:30.656880px;}
._1b{width:31.911840px;}
._1a{width:33.786480px;}
._20{width:35.079120px;}
._a{width:36.513360px;}
._2c{width:37.589040px;}
._2d{width:39.202560px;}
._35{width:41.173200px;}
._2a{width:42.870000px;}
._1e{width:43.923600px;}
._2b{width:45.043440px;}
._f{width:46.194480px;}
._33{width:47.867760px;}
._31{width:49.040880px;}
._16{width:50.459520px;}
._1d{width:52.290000px;}
._15{width:54.023040px;}
._23{width:55.337760px;}
._2f{width:57.331920px;}
._2e{width:58.564800px;}
._14{width:60.178320px;}
._36{width:62.269920px;}
._3e{width:64.421280px;}
._38{width:65.915280px;}
._37{width:67.068480px;}
._25{width:68.365440px;}
._24{width:73.863360px;}
._3d{width:78.965040px;}
._39{width:80.317440px;}
._27{width:87.130080px;}
._28{width:88.385040px;}
._3c{width:93.203520px;}
._3b{width:94.203840px;}
._42{width:102.846960px;}
._21{width:108.225360px;}
._40{width:162.128880px;}
._3f{width:163.383840px;}
._34{width:198.185280px;}
._41{width:449.873280px;}
.fc5{color:transparent;}
.fc4{color:rgb(205,29,142);}
.fc3{color:rgb(28,78,123);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs8{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:3.240000px;}
.y5{bottom:3.600000px;}
.ybf{bottom:3.630000px;}
.ye8{bottom:3.645000px;}
.y3f{bottom:4.680000px;}
.y55{bottom:5.400000px;}
.ycc{bottom:8.100000px;}
.y58{bottom:8.640000px;}
.yca{bottom:10.620000px;}
.ye1{bottom:12.060000px;}
.ye5{bottom:12.240000px;}
.ye9{bottom:12.285000px;}
.ye0{bottom:20.700000px;}
.yda{bottom:20.880000px;}
.y3c{bottom:20.925000px;}
.y57{bottom:23.040000px;}
.yd8{bottom:29.880000px;}
.y54{bottom:31.860000px;}
.ydb{bottom:38.160000px;}
.y3b{bottom:38.565000px;}
.y3a{bottom:56.025000px;}
.y3{bottom:58.140000px;}
.y53{bottom:64.440000px;}
.y39{bottom:73.665000px;}
.y2{bottom:80.100000px;}
.y38{bottom:91.305000px;}
.yf4{bottom:108.540000px;}
.y37{bottom:108.765000px;}
.yc4{bottom:111.060000px;}
.y56{bottom:113.580000px;}
.y127{bottom:118.800000px;}
.y94{bottom:123.300000px;}
.y36{bottom:126.405000px;}
.yc3{bottom:128.700000px;}
.y126{bottom:136.080000px;}
.y93{bottom:140.580000px;}
.yf3{bottom:143.820000px;}
.y35{bottom:144.045000px;}
.yc2{bottom:145.800000px;}
.y125{bottom:153.360000px;}
.y92{bottom:157.860000px;}
.y50{bottom:159.120000px;}
.y34{bottom:161.685000px;}
.yc1{bottom:163.080000px;}
.y124{bottom:170.280000px;}
.y12c{bottom:170.640000px;}
.y91{bottom:175.140000px;}
.y4f{bottom:176.400000px;}
.yf2{bottom:179.100000px;}
.y33{bottom:179.145000px;}
.yc0{bottom:180.360000px;}
.y23{bottom:186.885000px;}
.y123{bottom:187.920000px;}
.y90{bottom:192.420000px;}
.y4e{bottom:193.680000px;}
.y32{bottom:196.785000px;}
.y22{bottom:205.065000px;}
.y122{bottom:205.200000px;}
.y8f{bottom:209.700000px;}
.y4d{bottom:210.780000px;}
.ybe{bottom:212.040000px;}
.yf1{bottom:214.230000px;}
.y31{bottom:214.425000px;}
.y121{bottom:222.330000px;}
.y21{bottom:223.245000px;}
.y8e{bottom:226.470000px;}
.y12f{bottom:226.830000px;}
.y4c{bottom:228.090000px;}
.ybd{bottom:230.070000px;}
.y30{bottom:231.885000px;}
.yf0{bottom:232.230000px;}
.y12b{bottom:239.250000px;}
.y120{bottom:239.610000px;}
.y20{bottom:241.425000px;}
.y8d{bottom:243.750000px;}
.y95{bottom:244.110000px;}
.y4b{bottom:245.370000px;}
.ybc{bottom:248.070000px;}
.y2f{bottom:249.555000px;}
.yef{bottom:250.230000px;}
.y11f{bottom:256.890000px;}
.y1f{bottom:257.115000px;}
.y8c{bottom:261.390000px;}
.y4a{bottom:262.650000px;}
.ybb{bottom:266.070000px;}
.y2e{bottom:267.195000px;}
.y1e{bottom:271.155000px;}
.y11e{bottom:274.170000px;}
.y8b{bottom:278.670000px;}
.y49{bottom:279.930000px;}
.y2d{bottom:284.655000px;}
.y1d{bottom:285.195000px;}
.yee{bottom:285.510000px;}
.y12a{bottom:291.090000px;}
.y11d{bottom:291.450000px;}
.y8a{bottom:295.950000px;}
.y48{bottom:297.210000px;}
.y1c{bottom:299.235000px;}
.y2c{bottom:302.295000px;}
.yba{bottom:304.590000px;}
.y129{bottom:308.370000px;}
.y11c{bottom:308.730000px;}
.y89{bottom:313.230000px;}
.y1b{bottom:313.275000px;}
.y47{bottom:314.310000px;}
.y2b{bottom:319.935000px;}
.yed{bottom:320.790000px;}
.yb9{bottom:322.230000px;}
.y11b{bottom:325.830000px;}
.y1a{bottom:327.135000px;}
.y88{bottom:330.330000px;}
.y46{bottom:331.590000px;}
.y2a{bottom:337.575000px;}
.yb8{bottom:339.330000px;}
.y19{bottom:340.815000px;}
.y11a{bottom:343.110000px;}
.y87{bottom:347.610000px;}
.y45{bottom:348.870000px;}
.y18{bottom:354.675000px;}
.y29{bottom:355.035000px;}
.yec{bottom:356.070000px;}
.yb7{bottom:356.610000px;}
.y119{bottom:360.390000px;}
.y86{bottom:364.890000px;}
.y44{bottom:366.150000px;}
.y17{bottom:368.715000px;}
.y28{bottom:372.675000px;}
.yb6{bottom:373.890000px;}
.y118{bottom:377.670000px;}
.y85{bottom:382.170000px;}
.y16{bottom:382.935000px;}
.y43{bottom:383.430000px;}
.y27{bottom:390.315000px;}
.yb5{bottom:391.170000px;}
.yeb{bottom:391.350000px;}
.y117{bottom:394.950000px;}
.y15{bottom:396.975000px;}
.y84{bottom:399.450000px;}
.y42{bottom:400.350000px;}
.y51{bottom:400.710000px;}
.y26{bottom:407.775000px;}
.yb4{bottom:408.450000px;}
.yea{bottom:409.350000px;}
.y14{bottom:411.555000px;}
.y116{bottom:412.230000px;}
.y83{bottom:416.730000px;}
.y41{bottom:417.450000px;}
.yb3{bottom:422.850000px;}
.y25{bottom:425.415000px;}
.y115{bottom:429.330000px;}
.y13{bottom:429.375000px;}
.y40{bottom:431.850000px;}
.y82{bottom:433.830000px;}
.y3e{bottom:434.010000px;}
.y11{bottom:439.950000px;}
.yb2{bottom:440.850000px;}
.ye7{bottom:444.450000px;}
.y24{bottom:446.115000px;}
.y114{bottom:446.610000px;}
.y12{bottom:446.655000px;}
.y81{bottom:451.155000px;}
.yb1{bottom:458.895000px;}
.y113{bottom:463.935000px;}
.y80{bottom:468.435000px;}
.yb0{bottom:476.895000px;}
.ye6{bottom:479.775000px;}
.y112{bottom:481.215000px;}
.y7f{bottom:485.715000px;}
.y111{bottom:498.495000px;}
.y7e{bottom:502.995000px;}
.ye4{bottom:515.055000px;}
.yaf{bottom:515.235000px;}
.y110{bottom:515.595000px;}
.y7d{bottom:520.095000px;}
.yae{bottom:532.875000px;}
.y7c{bottom:537.375000px;}
.yad{bottom:550.155000px;}
.ye3{bottom:550.335000px;}
.y7b{bottom:554.655000px;}
.yac{bottom:567.435000px;}
.y7a{bottom:571.935000px;}
.y10f{bottom:584.715000px;}
.y79{bottom:589.215000px;}
.yab{bottom:599.115000px;}
.y10e{bottom:601.995000px;}
.ye2{bottom:602.895000px;}
.y78{bottom:606.495000px;}
.yaa{bottom:617.115000px;}
.y10d{bottom:619.095000px;}
.ydf{bottom:620.895000px;}
.y77{bottom:623.595000px;}
.ya9{bottom:635.115000px;}
.y10c{bottom:636.375000px;}
.y76{bottom:640.875000px;}
.ya8{bottom:653.115000px;}
.y10b{bottom:653.655000px;}
.yde{bottom:655.995000px;}
.y75{bottom:658.155000px;}
.y10a{bottom:670.935000px;}
.ya7{bottom:671.115000px;}
.ydd{bottom:673.995000px;}
.y74{bottom:675.435000px;}
.y109{bottom:688.245000px;}
.ydc{bottom:692.025000px;}
.y73{bottom:692.745000px;}
.y108{bottom:705.525000px;}
.ya6{bottom:709.665000px;}
.y72{bottom:710.025000px;}
.y107{bottom:722.625000px;}
.y71{bottom:727.125000px;}
.y106{bottom:739.905000px;}
.y70{bottom:744.405000px;}
.y105{bottom:757.185000px;}
.ya5{bottom:760.605000px;}
.y6f{bottom:761.685000px;}
.yd9{bottom:762.585000px;}
.y104{bottom:774.465000px;}
.ya4{bottom:777.885000px;}
.y6e{bottom:778.965000px;}
.yd7{bottom:780.585000px;}
.y103{bottom:791.745000px;}
.ya3{bottom:795.165000px;}
.y6d{bottom:796.245000px;}
.y102{bottom:808.845000px;}
.ya2{bottom:812.445000px;}
.y6c{bottom:813.345000px;}
.yd6{bottom:819.105000px;}
.y101{bottom:826.125000px;}
.ya1{bottom:829.725000px;}
.y6b{bottom:830.625000px;}
.yd5{bottom:836.745000px;}
.y100{bottom:843.405000px;}
.ya0{bottom:847.005000px;}
.y6a{bottom:847.905000px;}
.yd4{bottom:853.845000px;}
.yff{bottom:860.685000px;}
.y9f{bottom:864.105000px;}
.y69{bottom:865.185000px;}
.yd3{bottom:871.125000px;}
.yfe{bottom:877.965000px;}
.y9e{bottom:881.385000px;}
.y68{bottom:882.465000px;}
.yd2{bottom:888.405000px;}
.yfd{bottom:895.245000px;}
.y9d{bottom:898.305000px;}
.y67{bottom:899.745000px;}
.y10{bottom:905.505000px;}
.yd1{bottom:905.685000px;}
.yfc{bottom:912.345000px;}
.y9c{bottom:915.945000px;}
.y66{bottom:916.845000px;}
.yd0{bottom:923.010000px;}
.yfb{bottom:929.670000px;}
.y9b{bottom:933.270000px;}
.y65{bottom:934.170000px;}
.yf{bottom:937.050000px;}
.ycf{bottom:940.290000px;}
.yfa{bottom:946.950000px;}
.y9a{bottom:950.370000px;}
.y64{bottom:951.450000px;}
.yce{bottom:957.390000px;}
.ye{bottom:958.830000px;}
.yf9{bottom:964.230000px;}
.y99{bottom:967.650000px;}
.y63{bottom:968.730000px;}
.yd{bottom:974.310000px;}
.ycd{bottom:974.670000px;}
.yf8{bottom:981.510000px;}
.y98{bottom:984.930000px;}
.y62{bottom:986.010000px;}
.yc{bottom:996.090000px;}
.yf7{bottom:998.430000px;}
.y128{bottom:998.790000px;}
.y97{bottom:1002.570000px;}
.y61{bottom:1003.290000px;}
.ycb{bottom:1006.350000px;}
.yb{bottom:1018.950000px;}
.y96{bottom:1020.030000px;}
.y60{bottom:1020.390000px;}
.yf6{bottom:1030.290000px;}
.yc9{bottom:1033.530000px;}
.y5f{bottom:1037.670000px;}
.ya{bottom:1041.270000px;}
.yf5{bottom:1048.290000px;}
.y12e{bottom:1054.590000px;}
.y5e{bottom:1054.950000px;}
.y9{bottom:1064.850000px;}
.yc8{bottom:1065.570000px;}
.y52{bottom:1070.250000px;}
.y5d{bottom:1072.230000px;}
.yc7{bottom:1083.570000px;}
.y8{bottom:1088.790000px;}
.y5c{bottom:1089.510000px;}
.yc6{bottom:1101.570000px;}
.y5b{bottom:1106.790000px;}
.y7{bottom:1112.550000px;}
.yc5{bottom:1119.570000px;}
.y5a{bottom:1123.890000px;}
.y6{bottom:1136.310000px;}
.y12d{bottom:1140.810000px;}
.y59{bottom:1141.170000px;}
.y4{bottom:1171.260000px;}
.y1{bottom:1191.240000px;}
.h11{height:5.653125px;}
.h12{height:5.805000px;}
.h13{height:5.920372px;}
.h10{height:5.940000px;}
.h1f{height:17.100000px;}
.h20{height:17.136000px;}
.h4{height:17.280000px;}
.h1d{height:17.316000px;}
.h22{height:26.460000px;}
.h21{height:31.320000px;}
.h19{height:34.200000px;}
.h25{height:34.380000px;}
.h29{height:34.416000px;}
.h27{height:34.560000px;}
.h28{height:34.596000px;}
.h1b{height:40.655391px;}
.hd{height:40.843828px;}
.h9{height:41.250937px;}
.h2b{height:41.726953px;}
.hf{height:45.720703px;}
.h1a{height:47.321367px;}
.h3{height:47.980898px;}
.h18{height:48.616875px;}
.hc{height:49.583118px;}
.he{height:50.218594px;}
.h1c{height:50.364141px;}
.hb{height:50.597578px;}
.h26{height:51.660000px;}
.h24{height:51.840000px;}
.h5{height:58.651172px;}
.h14{height:60.226875px;}
.h15{height:61.423863px;}
.h2a{height:62.211094px;}
.h8{height:66.757500px;}
.h23{height:69.840000px;}
.h17{height:72.562500px;}
.h2{height:77.342344px;}
.h7{height:78.367500px;}
.h6{height:79.620469px;}
.h16{height:81.180000px;}
.h1e{height:127.771172px;}
.ha{height:460.335000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w21{width:39.780000px;}
.w22{width:59.976000px;}
.w24{width:66.816000px;}
.w1c{width:95.076000px;}
.w1e{width:95.220000px;}
.w10{width:108.360000px;}
.wc{width:109.260000px;}
.w23{width:113.940000px;}
.w1a{width:119.160000px;}
.w25{width:120.780000px;}
.w1d{width:130.860000px;}
.w1b{width:136.656000px;}
.w17{width:142.056000px;}
.wf{width:144.576000px;}
.wb{width:145.296000px;}
.w16{width:146.700000px;}
.w20{width:188.310000px;}
.w19{width:192.270000px;}
.w18{width:192.450000px;}
.w11{width:209.010000px;}
.wd{width:209.370000px;}
.we{width:209.730000px;}
.wa{width:210.090000px;}
.w4{width:212.115000px;}
.w6{width:212.655000px;}
.w1f{width:268.950000px;}
.w15{width:295.770000px;}
.w14{width:379.155000px;}
.w3{width:502.125000px;}
.w5{width:515.955000px;}
.w7{width:516.495000px;}
.w8{width:625.065000px;}
.w12{width:674.025000px;}
.w13{width:675.645000px;}
.w9{width:719.430000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x45{left:9.180000px;}
.xe{left:10.800000px;}
.x3f{left:12.240000px;}
.x3a{left:13.680000px;}
.x46{left:14.760000px;}
.x41{left:16.020000px;}
.x13{left:17.280000px;}
.x3e{left:19.620000px;}
.x8{left:20.700000px;}
.x40{left:22.680000px;}
.x2f{left:25.560000px;}
.x2{left:27.000000px;}
.x3{left:31.140000px;}
.x35{left:33.300000px;}
.x34{left:34.380000px;}
.x32{left:35.640000px;}
.x4a{left:36.720000px;}
.x49{left:38.160000px;}
.x26{left:39.450000px;}
.x16{left:41.040000px;}
.x24{left:43.245000px;}
.x3d{left:44.820000px;}
.x33{left:47.565000px;}
.x19{left:50.394000px;}
.x18{left:51.654000px;}
.x5{left:53.999987px;}
.x28{left:57.825000px;}
.x14{left:59.214000px;}
.xb{left:62.994000px;}
.x15{left:64.800000px;}
.x43{left:65.874000px;}
.x1a{left:68.580000px;}
.x42{left:74.694000px;}
.x4b{left:76.674000px;}
.x29{left:83.010000px;}
.x48{left:89.094000px;}
.x17{left:91.305000px;}
.x44{left:92.874000px;}
.x4d{left:96.834000px;}
.x4c{left:100.074000px;}
.x4e{left:105.114000px;}
.x1{left:108.035987px;}
.x47{left:110.874000px;}
.x1f{left:115.740000px;}
.x37{left:134.454000px;}
.x1d{left:135.894000px;}
.xa{left:140.616000px;}
.xc{left:157.539000px;}
.x20{left:176.079000px;}
.x2c{left:228.630000px;}
.x1b{left:256.539000px;}
.x21{left:259.059000px;}
.x7{left:267.195000px;}
.x1c{left:277.059000px;}
.x23{left:287.139000px;}
.x36{left:300.279000px;}
.x2b{left:310.719000px;}
.xd{left:312.549000px;}
.x10{left:318.855000px;}
.x2d{left:366.015000px;}
.x2a{left:372.854987px;}
.x38{left:378.435000px;}
.x25{left:398.955000px;}
.x22{left:446.504987px;}
.x4{left:456.044987px;}
.x2e{left:461.805000px;}
.x11{left:464.145000px;}
.x9{left:473.144987px;}
.x1e{left:488.625000px;}
.x4f{left:500.144987px;}
.xf{left:522.284987px;}
.x39{left:567.465000px;}
.x12{left:573.405000px;}
.x27{left:592.125000px;}
.x30{left:593.385000px;}
.x3b{left:607.965000px;}
.x3c{left:668.850000px;}
.x31{left:689.190000px;}
@media print{
.v5{vertical-align:-60.160000pt;}
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.880000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:61.440000pt;}
.ls7{letter-spacing:-0.425067pt;}
.ls1b{letter-spacing:-0.409067pt;}
.lsa{letter-spacing:-0.240533pt;}
.ls1a{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019840pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.199467pt;}
.ls8{letter-spacing:0.214933pt;}
.ls13{letter-spacing:0.218667pt;}
.ls14{letter-spacing:0.230933pt;}
.ls19{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.291840pt;}
.ls2{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.401280pt;}
.ls16{letter-spacing:0.592000pt;}
.lsb{letter-spacing:0.736000pt;}
.lsf{letter-spacing:1.248640pt;}
.lsd{letter-spacing:2.187520pt;}
.lsc{letter-spacing:14.347520pt;}
.lse{letter-spacing:14.507520pt;}
.ls17{letter-spacing:19.152640pt;}
.ls10{letter-spacing:690.218667pt;}
.ls15{letter-spacing:759.978667pt;}
.ls11{letter-spacing:768.298667pt;}
.ls12{letter-spacing:788.778667pt;}
.wse{word-spacing:-53.338667pt;}
.wsd{word-spacing:-53.120000pt;}
.wsc{word-spacing:-40.960640pt;}
.wsb{word-spacing:-38.400640pt;}
.ws1{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.686400pt;}
.ws0{word-spacing:-9.710720pt;}
.ws7{word-spacing:-9.648533pt;}
.ws5{word-spacing:-9.433600pt;}
.ws3{word-spacing:-9.280000pt;}
.ws9{word-spacing:-9.193067pt;}
.ws6{word-spacing:-9.008533pt;}
.wsa{word-spacing:0.000000pt;}
._3a{margin-left:-8.136320pt;}
._32{margin-left:-4.635093pt;}
._30{margin-left:-3.718400pt;}
._2{margin-left:-2.807467pt;}
._1{margin-left:-1.188267pt;}
._0{width:1.274880pt;}
._3{width:2.443520pt;}
._4{width:3.718400pt;}
._10{width:4.780800pt;}
._18{width:5.736960pt;}
._9{width:6.703147pt;}
._8{width:7.596160pt;}
._d{width:8.764800pt;}
._e{width:9.880320pt;}
._13{width:10.942720pt;}
._26{width:11.898880pt;}
._11{width:12.855040pt;}
._12{width:13.901227pt;}
._5{width:14.846720pt;}
._6{width:15.989760pt;}
._7{width:16.998400pt;}
._19{width:18.592000pt;}
._b{width:19.920000pt;}
._c{width:20.982400pt;}
._1f{width:22.151040pt;}
._17{width:23.585280pt;}
._29{width:24.567467pt;}
._22{width:25.869440pt;}
._1c{width:27.250560pt;}
._1b{width:28.366080pt;}
._1a{width:30.032427pt;}
._20{width:31.181440pt;}
._a{width:32.456320pt;}
._2c{width:33.412480pt;}
._2d{width:34.846720pt;}
._35{width:36.598400pt;}
._2a{width:38.106667pt;}
._1e{width:39.043200pt;}
._2b{width:40.038613pt;}
._f{width:41.061760pt;}
._33{width:42.549120pt;}
._31{width:43.591893pt;}
._16{width:44.852907pt;}
._1d{width:46.480000pt;}
._15{width:48.020480pt;}
._23{width:49.189120pt;}
._2f{width:50.961707pt;}
._2e{width:52.057600pt;}
._14{width:53.491840pt;}
._36{width:55.351040pt;}
._3e{width:57.263360pt;}
._38{width:58.591360pt;}
._37{width:59.616427pt;}
._25{width:60.769280pt;}
._24{width:65.656320pt;}
._3d{width:70.191147pt;}
._39{width:71.393280pt;}
._27{width:77.448960pt;}
._28{width:78.564480pt;}
._3c{width:82.847573pt;}
._3b{width:83.736747pt;}
._42{width:91.419520pt;}
._21{width:96.200320pt;}
._40{width:144.114560pt;}
._3f{width:145.230080pt;}
._34{width:176.164693pt;}
._41{width:399.887360pt;}
.fs6{font-size:5.120000pt;}
.fs8{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:2.880000pt;}
.y5{bottom:3.200000pt;}
.ybf{bottom:3.226667pt;}
.ye8{bottom:3.240000pt;}
.y3f{bottom:4.160000pt;}
.y55{bottom:4.800000pt;}
.ycc{bottom:7.200000pt;}
.y58{bottom:7.680000pt;}
.yca{bottom:9.440000pt;}
.ye1{bottom:10.720000pt;}
.ye5{bottom:10.880000pt;}
.ye9{bottom:10.920000pt;}
.ye0{bottom:18.400000pt;}
.yda{bottom:18.560000pt;}
.y3c{bottom:18.600000pt;}
.y57{bottom:20.480000pt;}
.yd8{bottom:26.560000pt;}
.y54{bottom:28.320000pt;}
.ydb{bottom:33.920000pt;}
.y3b{bottom:34.280000pt;}
.y3a{bottom:49.800000pt;}
.y3{bottom:51.680000pt;}
.y53{bottom:57.280000pt;}
.y39{bottom:65.480000pt;}
.y2{bottom:71.200000pt;}
.y38{bottom:81.160000pt;}
.yf4{bottom:96.480000pt;}
.y37{bottom:96.680000pt;}
.yc4{bottom:98.720000pt;}
.y56{bottom:100.960000pt;}
.y127{bottom:105.600000pt;}
.y94{bottom:109.600000pt;}
.y36{bottom:112.360000pt;}
.yc3{bottom:114.400000pt;}
.y126{bottom:120.960000pt;}
.y93{bottom:124.960000pt;}
.yf3{bottom:127.840000pt;}
.y35{bottom:128.040000pt;}
.yc2{bottom:129.600000pt;}
.y125{bottom:136.320000pt;}
.y92{bottom:140.320000pt;}
.y50{bottom:141.440000pt;}
.y34{bottom:143.720000pt;}
.yc1{bottom:144.960000pt;}
.y124{bottom:151.360000pt;}
.y12c{bottom:151.680000pt;}
.y91{bottom:155.680000pt;}
.y4f{bottom:156.800000pt;}
.yf2{bottom:159.200000pt;}
.y33{bottom:159.240000pt;}
.yc0{bottom:160.320000pt;}
.y23{bottom:166.120000pt;}
.y123{bottom:167.040000pt;}
.y90{bottom:171.040000pt;}
.y4e{bottom:172.160000pt;}
.y32{bottom:174.920000pt;}
.y22{bottom:182.280000pt;}
.y122{bottom:182.400000pt;}
.y8f{bottom:186.400000pt;}
.y4d{bottom:187.360000pt;}
.ybe{bottom:188.480000pt;}
.yf1{bottom:190.426667pt;}
.y31{bottom:190.600000pt;}
.y121{bottom:197.626667pt;}
.y21{bottom:198.440000pt;}
.y8e{bottom:201.306667pt;}
.y12f{bottom:201.626667pt;}
.y4c{bottom:202.746667pt;}
.ybd{bottom:204.506667pt;}
.y30{bottom:206.120000pt;}
.yf0{bottom:206.426667pt;}
.y12b{bottom:212.666667pt;}
.y120{bottom:212.986667pt;}
.y20{bottom:214.600000pt;}
.y8d{bottom:216.666667pt;}
.y95{bottom:216.986667pt;}
.y4b{bottom:218.106667pt;}
.ybc{bottom:220.506667pt;}
.y2f{bottom:221.826667pt;}
.yef{bottom:222.426667pt;}
.y11f{bottom:228.346667pt;}
.y1f{bottom:228.546667pt;}
.y8c{bottom:232.346667pt;}
.y4a{bottom:233.466667pt;}
.ybb{bottom:236.506667pt;}
.y2e{bottom:237.506667pt;}
.y1e{bottom:241.026667pt;}
.y11e{bottom:243.706667pt;}
.y8b{bottom:247.706667pt;}
.y49{bottom:248.826667pt;}
.y2d{bottom:253.026667pt;}
.y1d{bottom:253.506667pt;}
.yee{bottom:253.786667pt;}
.y12a{bottom:258.746667pt;}
.y11d{bottom:259.066667pt;}
.y8a{bottom:263.066667pt;}
.y48{bottom:264.186667pt;}
.y1c{bottom:265.986667pt;}
.y2c{bottom:268.706667pt;}
.yba{bottom:270.746667pt;}
.y129{bottom:274.106667pt;}
.y11c{bottom:274.426667pt;}
.y89{bottom:278.426667pt;}
.y1b{bottom:278.466667pt;}
.y47{bottom:279.386667pt;}
.y2b{bottom:284.386667pt;}
.yed{bottom:285.146667pt;}
.yb9{bottom:286.426667pt;}
.y11b{bottom:289.626667pt;}
.y1a{bottom:290.786667pt;}
.y88{bottom:293.626667pt;}
.y46{bottom:294.746667pt;}
.y2a{bottom:300.066667pt;}
.yb8{bottom:301.626667pt;}
.y19{bottom:302.946667pt;}
.y11a{bottom:304.986667pt;}
.y87{bottom:308.986667pt;}
.y45{bottom:310.106667pt;}
.y18{bottom:315.266667pt;}
.y29{bottom:315.586667pt;}
.yec{bottom:316.506667pt;}
.yb7{bottom:316.986667pt;}
.y119{bottom:320.346667pt;}
.y86{bottom:324.346667pt;}
.y44{bottom:325.466667pt;}
.y17{bottom:327.746667pt;}
.y28{bottom:331.266667pt;}
.yb6{bottom:332.346667pt;}
.y118{bottom:335.706667pt;}
.y85{bottom:339.706667pt;}
.y16{bottom:340.386667pt;}
.y43{bottom:340.826667pt;}
.y27{bottom:346.946667pt;}
.yb5{bottom:347.706667pt;}
.yeb{bottom:347.866667pt;}
.y117{bottom:351.066667pt;}
.y15{bottom:352.866667pt;}
.y84{bottom:355.066667pt;}
.y42{bottom:355.866667pt;}
.y51{bottom:356.186667pt;}
.y26{bottom:362.466667pt;}
.yb4{bottom:363.066667pt;}
.yea{bottom:363.866667pt;}
.y14{bottom:365.826667pt;}
.y116{bottom:366.426667pt;}
.y83{bottom:370.426667pt;}
.y41{bottom:371.066667pt;}
.yb3{bottom:375.866667pt;}
.y25{bottom:378.146667pt;}
.y115{bottom:381.626667pt;}
.y13{bottom:381.666667pt;}
.y40{bottom:383.866667pt;}
.y82{bottom:385.626667pt;}
.y3e{bottom:385.786667pt;}
.y11{bottom:391.066667pt;}
.yb2{bottom:391.866667pt;}
.ye7{bottom:395.066667pt;}
.y24{bottom:396.546667pt;}
.y114{bottom:396.986667pt;}
.y12{bottom:397.026667pt;}
.y81{bottom:401.026667pt;}
.yb1{bottom:407.906667pt;}
.y113{bottom:412.386667pt;}
.y80{bottom:416.386667pt;}
.yb0{bottom:423.906667pt;}
.ye6{bottom:426.466667pt;}
.y112{bottom:427.746667pt;}
.y7f{bottom:431.746667pt;}
.y111{bottom:443.106667pt;}
.y7e{bottom:447.106667pt;}
.ye4{bottom:457.826667pt;}
.yaf{bottom:457.986667pt;}
.y110{bottom:458.306667pt;}
.y7d{bottom:462.306667pt;}
.yae{bottom:473.666667pt;}
.y7c{bottom:477.666667pt;}
.yad{bottom:489.026667pt;}
.ye3{bottom:489.186667pt;}
.y7b{bottom:493.026667pt;}
.yac{bottom:504.386667pt;}
.y7a{bottom:508.386667pt;}
.y10f{bottom:519.746667pt;}
.y79{bottom:523.746667pt;}
.yab{bottom:532.546667pt;}
.y10e{bottom:535.106667pt;}
.ye2{bottom:535.906667pt;}
.y78{bottom:539.106667pt;}
.yaa{bottom:548.546667pt;}
.y10d{bottom:550.306667pt;}
.ydf{bottom:551.906667pt;}
.y77{bottom:554.306667pt;}
.ya9{bottom:564.546667pt;}
.y10c{bottom:565.666667pt;}
.y76{bottom:569.666667pt;}
.ya8{bottom:580.546667pt;}
.y10b{bottom:581.026667pt;}
.yde{bottom:583.106667pt;}
.y75{bottom:585.026667pt;}
.y10a{bottom:596.386667pt;}
.ya7{bottom:596.546667pt;}
.ydd{bottom:599.106667pt;}
.y74{bottom:600.386667pt;}
.y109{bottom:611.773333pt;}
.ydc{bottom:615.133333pt;}
.y73{bottom:615.773333pt;}
.y108{bottom:627.133333pt;}
.ya6{bottom:630.813333pt;}
.y72{bottom:631.133333pt;}
.y107{bottom:642.333333pt;}
.y71{bottom:646.333333pt;}
.y106{bottom:657.693333pt;}
.y70{bottom:661.693333pt;}
.y105{bottom:673.053333pt;}
.ya5{bottom:676.093333pt;}
.y6f{bottom:677.053333pt;}
.yd9{bottom:677.853333pt;}
.y104{bottom:688.413333pt;}
.ya4{bottom:691.453333pt;}
.y6e{bottom:692.413333pt;}
.yd7{bottom:693.853333pt;}
.y103{bottom:703.773333pt;}
.ya3{bottom:706.813333pt;}
.y6d{bottom:707.773333pt;}
.y102{bottom:718.973333pt;}
.ya2{bottom:722.173333pt;}
.y6c{bottom:722.973333pt;}
.yd6{bottom:728.093333pt;}
.y101{bottom:734.333333pt;}
.ya1{bottom:737.533333pt;}
.y6b{bottom:738.333333pt;}
.yd5{bottom:743.773333pt;}
.y100{bottom:749.693333pt;}
.ya0{bottom:752.893333pt;}
.y6a{bottom:753.693333pt;}
.yd4{bottom:758.973333pt;}
.yff{bottom:765.053333pt;}
.y9f{bottom:768.093333pt;}
.y69{bottom:769.053333pt;}
.yd3{bottom:774.333333pt;}
.yfe{bottom:780.413333pt;}
.y9e{bottom:783.453333pt;}
.y68{bottom:784.413333pt;}
.yd2{bottom:789.693333pt;}
.yfd{bottom:795.773333pt;}
.y9d{bottom:798.493333pt;}
.y67{bottom:799.773333pt;}
.y10{bottom:804.893333pt;}
.yd1{bottom:805.053333pt;}
.yfc{bottom:810.973333pt;}
.y9c{bottom:814.173333pt;}
.y66{bottom:814.973333pt;}
.yd0{bottom:820.453333pt;}
.yfb{bottom:826.373333pt;}
.y9b{bottom:829.573333pt;}
.y65{bottom:830.373333pt;}
.yf{bottom:832.933333pt;}
.ycf{bottom:835.813333pt;}
.yfa{bottom:841.733333pt;}
.y9a{bottom:844.773333pt;}
.y64{bottom:845.733333pt;}
.yce{bottom:851.013333pt;}
.ye{bottom:852.293333pt;}
.yf9{bottom:857.093333pt;}
.y99{bottom:860.133333pt;}
.y63{bottom:861.093333pt;}
.yd{bottom:866.053333pt;}
.ycd{bottom:866.373333pt;}
.yf8{bottom:872.453333pt;}
.y98{bottom:875.493333pt;}
.y62{bottom:876.453333pt;}
.yc{bottom:885.413333pt;}
.yf7{bottom:887.493333pt;}
.y128{bottom:887.813333pt;}
.y97{bottom:891.173333pt;}
.y61{bottom:891.813333pt;}
.ycb{bottom:894.533333pt;}
.yb{bottom:905.733333pt;}
.y96{bottom:906.693333pt;}
.y60{bottom:907.013333pt;}
.yf6{bottom:915.813333pt;}
.yc9{bottom:918.693333pt;}
.y5f{bottom:922.373333pt;}
.ya{bottom:925.573333pt;}
.yf5{bottom:931.813333pt;}
.y12e{bottom:937.413333pt;}
.y5e{bottom:937.733333pt;}
.y9{bottom:946.533333pt;}
.yc8{bottom:947.173333pt;}
.y52{bottom:951.333333pt;}
.y5d{bottom:953.093333pt;}
.yc7{bottom:963.173333pt;}
.y8{bottom:967.813333pt;}
.y5c{bottom:968.453333pt;}
.yc6{bottom:979.173333pt;}
.y5b{bottom:983.813333pt;}
.y7{bottom:988.933333pt;}
.yc5{bottom:995.173333pt;}
.y5a{bottom:999.013333pt;}
.y6{bottom:1010.053333pt;}
.y12d{bottom:1014.053333pt;}
.y59{bottom:1014.373333pt;}
.y4{bottom:1041.120000pt;}
.y1{bottom:1058.880000pt;}
.h11{height:5.025000pt;}
.h12{height:5.160000pt;}
.h13{height:5.262553pt;}
.h10{height:5.280000pt;}
.h1f{height:15.200000pt;}
.h20{height:15.232000pt;}
.h4{height:15.360000pt;}
.h1d{height:15.392000pt;}
.h22{height:23.520000pt;}
.h21{height:27.840000pt;}
.h19{height:30.400000pt;}
.h25{height:30.560000pt;}
.h29{height:30.592000pt;}
.h27{height:30.720000pt;}
.h28{height:30.752000pt;}
.h1b{height:36.138125pt;}
.hd{height:36.305625pt;}
.h9{height:36.667500pt;}
.h2b{height:37.090625pt;}
.hf{height:40.640625pt;}
.h1a{height:42.063437pt;}
.h3{height:42.649687pt;}
.h18{height:43.215000pt;}
.hc{height:44.073883pt;}
.he{height:44.638750pt;}
.h1c{height:44.768125pt;}
.hb{height:44.975625pt;}
.h26{height:45.920000pt;}
.h24{height:46.080000pt;}
.h5{height:52.134375pt;}
.h14{height:53.535000pt;}
.h15{height:54.598989pt;}
.h2a{height:55.298750pt;}
.h8{height:59.340000pt;}
.h23{height:62.080000pt;}
.h17{height:64.500000pt;}
.h2{height:68.748750pt;}
.h7{height:69.660000pt;}
.h6{height:70.773750pt;}
.h16{height:72.160000pt;}
.h1e{height:113.574375pt;}
.ha{height:409.186667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w21{width:35.360000pt;}
.w22{width:53.312000pt;}
.w24{width:59.392000pt;}
.w1c{width:84.512000pt;}
.w1e{width:84.640000pt;}
.w10{width:96.320000pt;}
.wc{width:97.120000pt;}
.w23{width:101.280000pt;}
.w1a{width:105.920000pt;}
.w25{width:107.360000pt;}
.w1d{width:116.320000pt;}
.w1b{width:121.472000pt;}
.w17{width:126.272000pt;}
.wf{width:128.512000pt;}
.wb{width:129.152000pt;}
.w16{width:130.400000pt;}
.w20{width:167.386667pt;}
.w19{width:170.906667pt;}
.w18{width:171.066667pt;}
.w11{width:185.786667pt;}
.wd{width:186.106667pt;}
.we{width:186.426667pt;}
.wa{width:186.746667pt;}
.w4{width:188.546667pt;}
.w6{width:189.026667pt;}
.w1f{width:239.066667pt;}
.w15{width:262.906667pt;}
.w14{width:337.026667pt;}
.w3{width:446.333333pt;}
.w5{width:458.626667pt;}
.w7{width:459.106667pt;}
.w8{width:555.613333pt;}
.w12{width:599.133333pt;}
.w13{width:600.573333pt;}
.w9{width:639.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x45{left:8.160000pt;}
.xe{left:9.600000pt;}
.x3f{left:10.880000pt;}
.x3a{left:12.160000pt;}
.x46{left:13.120000pt;}
.x41{left:14.240000pt;}
.x13{left:15.360000pt;}
.x3e{left:17.440000pt;}
.x8{left:18.400000pt;}
.x40{left:20.160000pt;}
.x2f{left:22.720000pt;}
.x2{left:24.000000pt;}
.x3{left:27.680000pt;}
.x35{left:29.600000pt;}
.x34{left:30.560000pt;}
.x32{left:31.680000pt;}
.x4a{left:32.640000pt;}
.x49{left:33.920000pt;}
.x26{left:35.066667pt;}
.x16{left:36.480000pt;}
.x24{left:38.440000pt;}
.x3d{left:39.840000pt;}
.x33{left:42.280000pt;}
.x19{left:44.794667pt;}
.x18{left:45.914667pt;}
.x5{left:47.999988pt;}
.x28{left:51.400000pt;}
.x14{left:52.634667pt;}
.xb{left:55.994667pt;}
.x15{left:57.600000pt;}
.x43{left:58.554667pt;}
.x1a{left:60.960000pt;}
.x42{left:66.394667pt;}
.x4b{left:68.154667pt;}
.x29{left:73.786667pt;}
.x48{left:79.194667pt;}
.x17{left:81.160000pt;}
.x44{left:82.554667pt;}
.x4d{left:86.074667pt;}
.x4c{left:88.954667pt;}
.x4e{left:93.434667pt;}
.x1{left:96.031988pt;}
.x47{left:98.554667pt;}
.x1f{left:102.880000pt;}
.x37{left:119.514667pt;}
.x1d{left:120.794667pt;}
.xa{left:124.992000pt;}
.xc{left:140.034667pt;}
.x20{left:156.514667pt;}
.x2c{left:203.226667pt;}
.x1b{left:228.034667pt;}
.x21{left:230.274667pt;}
.x7{left:237.506667pt;}
.x1c{left:246.274667pt;}
.x23{left:255.234667pt;}
.x36{left:266.914667pt;}
.x2b{left:276.194667pt;}
.xd{left:277.821333pt;}
.x10{left:283.426667pt;}
.x2d{left:325.346667pt;}
.x2a{left:331.426655pt;}
.x38{left:336.386667pt;}
.x25{left:354.626667pt;}
.x22{left:396.893322pt;}
.x4{left:405.373322pt;}
.x2e{left:410.493333pt;}
.x11{left:412.573333pt;}
.x9{left:420.573322pt;}
.x1e{left:434.333333pt;}
.x4f{left:444.573322pt;}
.xf{left:464.253322pt;}
.x39{left:504.413333pt;}
.x12{left:509.693333pt;}
.x27{left:526.333333pt;}
.x30{left:527.453333pt;}
.x3b{left:540.413333pt;}
.x3c{left:594.533333pt;}
.x31{left:612.613333pt;}
}




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