
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_b2ddbb6e0fd3b4764424e1b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_30c959b698aa52180d2293df.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_672d38147c7b6fd75245f4f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_5b2d523beb704b72c67f5955.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_a2f19af5e813b1419806fc1f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_eb231a71bbeefd6c6ea4013e.woff2')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_ddc193a47d23657d0c22f5c9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983398;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_d7b9357f9d1fa6dbf07f991c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.766602;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_01d6be9866f4bb4a37ce036e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.983398;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_1efe79ebfddb7c8dfc9825be.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.766602;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_69d3a5f84ac63f119f0ae422.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5055a49382c4f5cdfb9a961c.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_d8b4ca697148822f2306528a.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls19{letter-spacing:-1.134000px;}
.ls24{letter-spacing:-0.960000px;}
.ls2b{letter-spacing:-0.828000px;}
.ls30{letter-spacing:-0.666000px;}
.ls6{letter-spacing:-0.463800px;}
.ls1d{letter-spacing:-0.240600px;}
.ls11{letter-spacing:-0.228000px;}
.ls13{letter-spacing:-0.226800px;}
.ls1a{letter-spacing:-0.208800px;}
.ls8{letter-spacing:-0.186600px;}
.ls2a{letter-spacing:-0.143400px;}
.lsc{letter-spacing:-0.115800px;}
.ls31{letter-spacing:-0.107400px;}
.ls32{letter-spacing:-0.064800px;}
.ls1c{letter-spacing:-0.058320px;}
.ls34{letter-spacing:-0.041040px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.023760px;}
.lse{letter-spacing:0.060600px;}
.lsb{letter-spacing:0.066000px;}
.ls27{letter-spacing:0.066240px;}
.ls1f{letter-spacing:0.140400px;}
.ls18{letter-spacing:0.174000px;}
.ls22{letter-spacing:0.174240px;}
.ls12{letter-spacing:0.175200px;}
.lsa{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.190200px;}
.ls26{letter-spacing:0.195120px;}
.ls3{letter-spacing:0.214560px;}
.ls7{letter-spacing:0.256200px;}
.ls23{letter-spacing:0.306000px;}
.ls25{letter-spacing:0.314640px;}
.ls2c{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.479400px;}
.ls2e{letter-spacing:0.479520px;}
.ls15{letter-spacing:0.617760px;}
.ls2d{letter-spacing:0.660000px;}
.ls33{letter-spacing:0.840000px;}
.lsf{letter-spacing:0.858000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls28{letter-spacing:2.106720px;}
.ls14{letter-spacing:5.706720px;}
.ls1e{letter-spacing:8.814240px;}
.ls2f{letter-spacing:12.186720px;}
.ls21{letter-spacing:15.066720px;}
.lsd{letter-spacing:21.546720px;}
.ls4{letter-spacing:38.106720px;}
.ls29{letter-spacing:42.426720px;}
.ls20{letter-spacing:46.026720px;}
.ls17{letter-spacing:58.962720px;}
.ls16{letter-spacing:61.842720px;}
.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;}
}
.ws11{word-spacing:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws4{word-spacing:-21.455160px;}
.ws17{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.226440px;}
.wsa{word-spacing:-15.030840px;}
.ws2{word-spacing:-14.970240px;}
.ws1b{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.506440px;}
.ws15{word-spacing:-14.274000px;}
.ws16{word-spacing:-14.165760px;}
.wsc{word-spacing:-13.680960px;}
.ws12{word-spacing:-13.646160px;}
.ws7{word-spacing:-13.505760px;}
.ws1a{word-spacing:-13.464720px;}
.ws10{word-spacing:-13.447440px;}
.ws19{word-spacing:-13.440960px;}
.ws18{word-spacing:-13.398360px;}
.ws8{word-spacing:-13.389960px;}
.ws13{word-spacing:-13.362360px;}
.wsf{word-spacing:-13.319160px;}
.wse{word-spacing:-13.296960px;}
.wsd{word-spacing:-13.278960px;}
.wsb{word-spacing:-13.277760px;}
.ws5{word-spacing:-9.437760px;}
.ws6{word-spacing:-8.786880px;}
.ws14{word-spacing:-0.059760px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-1507.274160px;}
._1{margin-left:-1449.432000px;}
._2{margin-left:-1100.376000px;}
._5{margin-left:-607.886880px;}
._18{margin-left:-9.901920px;}
._23{margin-left:-7.854480px;}
._12{margin-left:-4.323840px;}
._6{margin-left:-3.312000px;}
._a{margin-left:-2.304000px;}
._3{margin-left:-1.258560px;}
._0{width:1.394400px;}
._9{width:2.974560px;}
._f{width:4.195680px;}
._e{width:6.119040px;}
._d{width:7.171200px;}
._11{width:8.200320px;}
._8{width:9.311520px;}
._7{width:10.916640px;}
._10{width:12.467040px;}
._26{width:13.847040px;}
._b{width:15.213600px;}
._c{width:16.405920px;}
._15{width:18.107280px;}
._14{width:19.720800px;}
._22{width:21.246960px;}
._13{width:24.740640px;}
._20{width:36.679200px;}
._1a{width:41.212800px;}
._25{width:42.529200px;}
._24{width:43.624800px;}
._1d{width:47.041920px;}
._17{width:50.310000px;}
._1f{width:51.797520px;}
._1c{width:63.082320px;}
._1e{width:65.311680px;}
._21{width:113.111520px;}
._1b{width:127.113600px;}
._19{width:156.490560px;}
._16{width:202.638240px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8f{bottom:6.480000px;}
.y65{bottom:6.660000px;}
.y67{bottom:6.690000px;}
.yb9{bottom:7.380000px;}
.y9c{bottom:8.100000px;}
.y6c{bottom:11.160000px;}
.y6a{bottom:17.280000px;}
.y8e{bottom:27.540000px;}
.y8b{bottom:27.720000px;}
.y94{bottom:27.750000px;}
.yb8{bottom:28.440000px;}
.y6{bottom:61.416000px;}
.y7f{bottom:91.116000px;}
.y30{bottom:92.736000px;}
.y13f{bottom:95.436000px;}
.y16e{bottom:103.176000px;}
.yb6{bottom:105.696000px;}
.ye8{bottom:107.136000px;}
.y63{bottom:109.296000px;}
.y7e{bottom:112.176000px;}
.y2f{bottom:113.796000px;}
.y13e{bottom:115.236000px;}
.y88{bottom:123.696000px;}
.yb5{bottom:126.756000px;}
.ye7{bottom:128.196000px;}
.y62{bottom:130.356000px;}
.y7d{bottom:133.236000px;}
.y2e{bottom:134.856000px;}
.y13d{bottom:135.396000px;}
.y87{bottom:144.756000px;}
.yb4{bottom:147.816000px;}
.ye6{bottom:149.256000px;}
.y61{bottom:151.410000px;}
.y7c{bottom:154.290000px;}
.y13c{bottom:155.190000px;}
.y2d{bottom:155.910000px;}
.y86{bottom:165.810000px;}
.yb3{bottom:168.870000px;}
.ye5{bottom:170.310000px;}
.y60{bottom:172.470000px;}
.y7b{bottom:175.350000px;}
.y13b{bottom:176.250000px;}
.y2c{bottom:176.970000px;}
.y85{bottom:186.870000px;}
.yb2{bottom:189.930000px;}
.ye4{bottom:191.370000px;}
.y5f{bottom:193.530000px;}
.y7a{bottom:196.410000px;}
.y13a{bottom:197.310000px;}
.y2b{bottom:198.030000px;}
.y16d{bottom:205.770000px;}
.y84{bottom:207.930000px;}
.yb1{bottom:210.990000px;}
.ye3{bottom:212.430000px;}
.y5e{bottom:214.590000px;}
.y79{bottom:217.470000px;}
.y2a{bottom:219.090000px;}
.y16c{bottom:225.570000px;}
.y83{bottom:228.990000px;}
.yb0{bottom:232.050000px;}
.ye2{bottom:233.490000px;}
.y5d{bottom:235.650000px;}
.y139{bottom:237.270000px;}
.y78{bottom:238.530000px;}
.y29{bottom:240.150000px;}
.y16b{bottom:245.370000px;}
.y82{bottom:250.050000px;}
.yaf{bottom:252.930000px;}
.ye1{bottom:254.550000px;}
.y5c{bottom:256.710000px;}
.y138{bottom:258.150000px;}
.y77{bottom:259.590000px;}
.y28{bottom:261.210000px;}
.y16a{bottom:265.350000px;}
.y81{bottom:270.930000px;}
.yae{bottom:273.990000px;}
.ye0{bottom:275.430000px;}
.y111{bottom:275.610000px;}
.y5b{bottom:277.770000px;}
.y137{bottom:279.210000px;}
.y76{bottom:280.650000px;}
.y27{bottom:282.315000px;}
.y169{bottom:285.195000px;}
.y80{bottom:292.035000px;}
.yad{bottom:295.095000px;}
.ydf{bottom:296.535000px;}
.y110{bottom:296.715000px;}
.y5a{bottom:298.875000px;}
.y136{bottom:300.315000px;}
.y75{bottom:301.755000px;}
.y26{bottom:303.375000px;}
.y168{bottom:304.995000px;}
.y9a{bottom:307.335000px;}
.yac{bottom:316.155000px;}
.yde{bottom:317.595000px;}
.y10f{bottom:317.775000px;}
.y59{bottom:319.935000px;}
.y135{bottom:320.655000px;}
.y74{bottom:322.815000px;}
.y25{bottom:324.435000px;}
.y167{bottom:324.795000px;}
.y99{bottom:329.115000px;}
.yab{bottom:337.215000px;}
.ydd{bottom:338.655000px;}
.y10e{bottom:338.835000px;}
.y134{bottom:340.275000px;}
.y58{bottom:340.995000px;}
.y73{bottom:343.875000px;}
.y166{bottom:344.595000px;}
.y24{bottom:345.495000px;}
.yaa{bottom:358.275000px;}
.y10d{bottom:358.995000px;}
.ydc{bottom:359.715000px;}
.y133{bottom:360.615000px;}
.y57{bottom:362.055000px;}
.y165{bottom:364.575000px;}
.y72{bottom:364.935000px;}
.y23{bottom:366.555000px;}
.y98{bottom:371.235000px;}
.y10c{bottom:378.795000px;}
.ya9{bottom:379.335000px;}
.y132{bottom:380.235000px;}
.ydb{bottom:380.775000px;}
.y56{bottom:383.115000px;}
.y164{bottom:384.375000px;}
.y71{bottom:385.995000px;}
.y22{bottom:387.615000px;}
.y10b{bottom:399.855000px;}
.ya8{bottom:400.395000px;}
.y131{bottom:401.295000px;}
.yda{bottom:401.835000px;}
.y55{bottom:404.175000px;}
.y70{bottom:407.055000px;}
.y21{bottom:408.675000px;}
.y97{bottom:413.355000px;}
.y10a{bottom:420.915000px;}
.ya7{bottom:421.455000px;}
.y130{bottom:422.355000px;}
.yd9{bottom:422.895000px;}
.y163{bottom:423.975000px;}
.y54{bottom:425.235000px;}
.y6f{bottom:428.115000px;}
.y20{bottom:429.735000px;}
.y109{bottom:441.975000px;}
.ya6{bottom:442.515000px;}
.y12f{bottom:443.415000px;}
.yd8{bottom:443.955000px;}
.y162{bottom:444.675000px;}
.y53{bottom:446.295000px;}
.y6e{bottom:449.175000px;}
.y1f{bottom:450.795000px;}
.y96{bottom:455.475000px;}
.y108{bottom:462.135000px;}
.ya5{bottom:463.575000px;}
.y12e{bottom:464.475000px;}
.y161{bottom:464.835000px;}
.yd7{bottom:465.015000px;}
.y52{bottom:467.355000px;}
.y6d{bottom:470.235000px;}
.y1e{bottom:471.855000px;}
.y107{bottom:482.295000px;}
.ya4{bottom:484.635000px;}
.y6b{bottom:485.355000px;}
.y12d{bottom:485.535000px;}
.y160{bottom:485.895000px;}
.yd6{bottom:486.075000px;}
.y51{bottom:488.415000px;}
.y1d{bottom:492.915000px;}
.y95{bottom:497.595000px;}
.y106{bottom:502.095000px;}
.ya3{bottom:505.695000px;}
.y12c{bottom:506.595000px;}
.y15f{bottom:506.955000px;}
.yd5{bottom:507.135000px;}
.y50{bottom:509.475000px;}
.y69{bottom:511.635000px;}
.y1c{bottom:513.975000px;}
.y105{bottom:523.155000px;}
.ya2{bottom:526.755000px;}
.y15e{bottom:527.115000px;}
.y12b{bottom:527.655000px;}
.yd4{bottom:528.195000px;}
.y4f{bottom:530.535000px;}
.y1b{bottom:535.035000px;}
.y93{bottom:539.715000px;}
.y68{bottom:543.315000px;}
.y104{bottom:544.215000px;}
.y15d{bottom:546.915000px;}
.ya1{bottom:547.815000px;}
.y12a{bottom:548.715000px;}
.yd3{bottom:549.255000px;}
.y4e{bottom:551.595000px;}
.y66{bottom:564.375000px;}
.y15c{bottom:568.005000px;}
.ya0{bottom:568.905000px;}
.y129{bottom:569.805000px;}
.yd2{bottom:570.345000px;}
.y4d{bottom:572.685000px;}
.y1a{bottom:579.525000px;}
.y92{bottom:581.865000px;}
.y9f{bottom:584.025000px;}
.y103{bottom:584.205000px;}
.y64{bottom:586.365000px;}
.y15b{bottom:589.065000px;}
.y128{bottom:590.865000px;}
.yd1{bottom:591.405000px;}
.y4c{bottom:593.745000px;}
.y102{bottom:604.365000px;}
.y9e{bottom:605.085000px;}
.y19{bottom:609.405000px;}
.y15a{bottom:610.125000px;}
.y127{bottom:611.025000px;}
.yd0{bottom:612.465000px;}
.y4b{bottom:614.805000px;}
.y91{bottom:623.985000px;}
.y101{bottom:624.165000px;}
.y9d{bottom:626.145000px;}
.y18{bottom:630.465000px;}
.y126{bottom:630.825000px;}
.y159{bottom:631.185000px;}
.ycf{bottom:633.525000px;}
.y4a{bottom:635.865000px;}
.y100{bottom:644.325000px;}
.y9b{bottom:648.105000px;}
.y125{bottom:650.985000px;}
.y17{bottom:651.525000px;}
.y158{bottom:652.245000px;}
.yce{bottom:654.585000px;}
.y49{bottom:656.925000px;}
.yff{bottom:663.945000px;}
.y90{bottom:666.105000px;}
.y124{bottom:670.785000px;}
.y16{bottom:672.585000px;}
.y157{bottom:673.305000px;}
.ycd{bottom:675.645000px;}
.y48{bottom:677.985000px;}
.yfe{bottom:685.005000px;}
.y123{bottom:690.945000px;}
.y15{bottom:693.645000px;}
.y156{bottom:694.365000px;}
.ycc{bottom:696.705000px;}
.y47{bottom:699.045000px;}
.yfd{bottom:706.065000px;}
.y8d{bottom:708.225000px;}
.y122{bottom:710.745000px;}
.y155{bottom:714.525000px;}
.y14{bottom:714.705000px;}
.ycb{bottom:717.765000px;}
.y46{bottom:720.105000px;}
.yfc{bottom:727.125000px;}
.y121{bottom:731.805000px;}
.y154{bottom:734.325000px;}
.y13{bottom:735.765000px;}
.yca{bottom:738.825000px;}
.y45{bottom:741.165000px;}
.yfb{bottom:748.185000px;}
.y8c{bottom:750.165000px;}
.y120{bottom:752.865000px;}
.y153{bottom:755.385000px;}
.y12{bottom:756.825000px;}
.yc9{bottom:759.885000px;}
.y44{bottom:762.225000px;}
.yfa{bottom:769.245000px;}
.y11f{bottom:773.925000px;}
.y152{bottom:776.445000px;}
.y11{bottom:777.885000px;}
.yc8{bottom:780.945000px;}
.y43{bottom:783.285000px;}
.yf9{bottom:790.305000px;}
.y8a{bottom:792.285000px;}
.y11e{bottom:794.985000px;}
.y151{bottom:796.605000px;}
.y10{bottom:798.945000px;}
.yc7{bottom:802.005000px;}
.y42{bottom:804.345000px;}
.yf8{bottom:811.365000px;}
.y11d{bottom:815.145000px;}
.y150{bottom:816.225000px;}
.yf{bottom:820.005000px;}
.yc6{bottom:823.065000px;}
.y41{bottom:825.405000px;}
.yf7{bottom:832.425000px;}
.y11c{bottom:834.945000px;}
.y89{bottom:835.305000px;}
.y14f{bottom:837.285000px;}
.ye{bottom:841.245000px;}
.yc5{bottom:844.125000px;}
.y40{bottom:846.465000px;}
.yf6{bottom:853.530000px;}
.y11b{bottom:856.050000px;}
.y14e{bottom:858.390000px;}
.yd{bottom:864.510000px;}
.yc4{bottom:865.230000px;}
.y3f{bottom:867.570000px;}
.yf5{bottom:874.590000px;}
.y11a{bottom:876.210000px;}
.y14d{bottom:878.730000px;}
.yc3{bottom:886.290000px;}
.y3e{bottom:888.630000px;}
.yc{bottom:890.790000px;}
.yf4{bottom:895.650000px;}
.y119{bottom:896.010000px;}
.y14c{bottom:898.350000px;}
.yc2{bottom:907.350000px;}
.y3d{bottom:909.690000px;}
.yb{bottom:911.850000px;}
.yf3{bottom:916.710000px;}
.y118{bottom:917.070000px;}
.y14b{bottom:918.690000px;}
.ya{bottom:928.410000px;}
.y3c{bottom:930.570000px;}
.yf2{bottom:936.870000px;}
.y117{bottom:937.230000px;}
.y14a{bottom:938.310000px;}
.yc1{bottom:949.470000px;}
.y9{bottom:951.630000px;}
.y116{bottom:957.390000px;}
.yf1{bottom:957.930000px;}
.y149{bottom:959.370000px;}
.ybf{bottom:964.590000px;}
.y3b{bottom:972.690000px;}
.y115{bottom:977.190000px;}
.y8{bottom:978.090000px;}
.yf0{bottom:978.990000px;}
.y148{bottom:980.430000px;}
.yc0{bottom:985.650000px;}
.y3a{bottom:993.750000px;}
.y114{bottom:997.350000px;}
.yef{bottom:999.150000px;}
.y147{bottom:1001.490000px;}
.ybe{bottom:1006.710000px;}
.y7{bottom:1011.750000px;}
.y39{bottom:1014.810000px;}
.y113{bottom:1016.970000px;}
.yee{bottom:1020.210000px;}
.y146{bottom:1022.550000px;}
.ybd{bottom:1027.770000px;}
.y38{bottom:1035.870000px;}
.y112{bottom:1037.310000px;}
.yed{bottom:1040.370000px;}
.y145{bottom:1042.710000px;}
.ybc{bottom:1048.830000px;}
.y5{bottom:1052.430000px;}
.y37{bottom:1056.930000px;}
.yec{bottom:1060.170000px;}
.y144{bottom:1062.690000px;}
.ybb{bottom:1069.890000px;}
.y36{bottom:1077.990000px;}
.yeb{bottom:1081.230000px;}
.y143{bottom:1082.310000px;}
.y4{bottom:1086.810000px;}
.yb7{bottom:1090.950000px;}
.y35{bottom:1099.050000px;}
.yea{bottom:1101.390000px;}
.y142{bottom:1102.650000px;}
.yba{bottom:1112.730000px;}
.y34{bottom:1120.110000px;}
.y3{bottom:1121.190000px;}
.y141{bottom:1122.270000px;}
.y33{bottom:1141.200000px;}
.ye9{bottom:1142.280000px;}
.y140{bottom:1142.640000px;}
.y2{bottom:1155.420000px;}
.y32{bottom:1162.260000px;}
.y1{bottom:1191.420000px;}
.y31{bottom:1193.220000px;}
.hc{height:21.060000px;}
.hd{height:21.096000px;}
.h13{height:22.500000px;}
.hf{height:25.560000px;}
.he{height:31.680000px;}
.h7{height:38.671172px;}
.h11{height:41.940000px;}
.h10{height:42.120000px;}
.h12{height:42.156000px;}
.h15{height:42.876000px;}
.h14{height:48.088125px;}
.h2{height:56.146289px;}
.h16{height:58.651172px;}
.h8{height:59.439023px;}
.h9{height:61.189805px;}
.hb{height:61.423863px;}
.ha{height:62.211094px;}
.h4{height:65.884219px;}
.h6{height:67.824844px;}
.h3{height:71.613281px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:43.020000px;}
.wa{width:48.960000px;}
.w9{width:59.400000px;}
.we{width:65.340000px;}
.w4{width:67.536000px;}
.wf{width:73.620000px;}
.w19{width:73.656000px;}
.w16{width:74.880000px;}
.w11{width:89.676000px;}
.w6{width:93.600000px;}
.wb{width:102.636000px;}
.w15{width:112.176000px;}
.w12{width:115.920000px;}
.w17{width:116.676000px;}
.w18{width:116.820000px;}
.wc{width:118.080000px;}
.w14{width:147.096000px;}
.w10{width:219.450000px;}
.w13{width:224.850000px;}
.wd{width:229.035000px;}
.w7{width:233.130000px;}
.w3{width:357.555000px;}
.w8{width:455.685000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.xb{left:11.520000px;}
.x10{left:14.940000px;}
.xd{left:16.020000px;}
.x20{left:18.180000px;}
.x28{left:19.980000px;}
.x26{left:27.180000px;}
.x9{left:28.980000px;}
.x27{left:30.060000px;}
.x22{left:32.040000px;}
.x11{left:35.100000px;}
.x1d{left:37.440000px;}
.x29{left:38.880000px;}
.x25{left:41.220000px;}
.x1b{left:48.450000px;}
.x24{left:52.050000px;}
.x1{left:53.999987px;}
.x1f{left:58.365000px;}
.x12{left:62.136000px;}
.x19{left:64.665000px;}
.x2d{left:70.199987px;}
.x2a{left:74.339987px;}
.x2c{left:80.999987px;}
.x2b{left:87.839987px;}
.x2{left:108.035987px;}
.x3{left:117.935987px;}
.x18{left:278.850000px;}
.x13{left:283.035000px;}
.x14{left:348.375000px;}
.x23{left:352.335000px;}
.x5{left:411.555000px;}
.x15{left:421.995000px;}
.x1a{left:425.955000px;}
.x6{left:479.085000px;}
.xa{left:509.685000px;}
.x7{left:522.105000px;}
.x1c{left:538.125000px;}
.xc{left:569.085000px;}
.x1e{left:613.005000px;}
.x8{left:615.705000px;}
.xe{left:617.865000px;}
.x16{left:641.445000px;}
.xf{left:720.690000px;}
.x21{left:729.690000px;}
.x17{left:731.130000px;}
.x2e{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls19{letter-spacing:-1.008000pt;}
.ls24{letter-spacing:-0.853333pt;}
.ls2b{letter-spacing:-0.736000pt;}
.ls30{letter-spacing:-0.592000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls1d{letter-spacing:-0.213867pt;}
.ls11{letter-spacing:-0.202667pt;}
.ls13{letter-spacing:-0.201600pt;}
.ls1a{letter-spacing:-0.185600pt;}
.ls8{letter-spacing:-0.165867pt;}
.ls2a{letter-spacing:-0.127467pt;}
.lsc{letter-spacing:-0.102933pt;}
.ls31{letter-spacing:-0.095467pt;}
.ls32{letter-spacing:-0.057600pt;}
.ls1c{letter-spacing:-0.051840pt;}
.ls34{letter-spacing:-0.036480pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.021120pt;}
.lse{letter-spacing:0.053867pt;}
.lsb{letter-spacing:0.058667pt;}
.ls27{letter-spacing:0.058880pt;}
.ls1f{letter-spacing:0.124800pt;}
.ls18{letter-spacing:0.154667pt;}
.ls22{letter-spacing:0.154880pt;}
.ls12{letter-spacing:0.155733pt;}
.lsa{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.169067pt;}
.ls26{letter-spacing:0.173440pt;}
.ls3{letter-spacing:0.190720pt;}
.ls7{letter-spacing:0.227733pt;}
.ls23{letter-spacing:0.272000pt;}
.ls25{letter-spacing:0.279680pt;}
.ls2c{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.426133pt;}
.ls2e{letter-spacing:0.426240pt;}
.ls15{letter-spacing:0.549120pt;}
.ls2d{letter-spacing:0.586667pt;}
.ls33{letter-spacing:0.746667pt;}
.lsf{letter-spacing:0.762667pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls28{letter-spacing:1.872640pt;}
.ls14{letter-spacing:5.072640pt;}
.ls1e{letter-spacing:7.834880pt;}
.ls2f{letter-spacing:10.832640pt;}
.ls21{letter-spacing:13.392640pt;}
.lsd{letter-spacing:19.152640pt;}
.ls4{letter-spacing:33.872640pt;}
.ls29{letter-spacing:37.712640pt;}
.ls20{letter-spacing:40.912640pt;}
.ls17{letter-spacing:52.411307pt;}
.ls16{letter-spacing:54.971307pt;}
.ws11{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws4{word-spacing:-19.071253pt;}
.ws17{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.534613pt;}
.wsa{word-spacing:-13.360747pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1b{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.894613pt;}
.ws15{word-spacing:-12.688000pt;}
.ws16{word-spacing:-12.591787pt;}
.wsc{word-spacing:-12.160853pt;}
.ws12{word-spacing:-12.129920pt;}
.ws7{word-spacing:-12.005120pt;}
.ws1a{word-spacing:-11.968640pt;}
.ws10{word-spacing:-11.953280pt;}
.ws19{word-spacing:-11.947520pt;}
.ws18{word-spacing:-11.909653pt;}
.ws8{word-spacing:-11.902187pt;}
.ws13{word-spacing:-11.877653pt;}
.wsf{word-spacing:-11.839253pt;}
.wse{word-spacing:-11.819520pt;}
.wsd{word-spacing:-11.803520pt;}
.wsb{word-spacing:-11.802453pt;}
.ws5{word-spacing:-8.389120pt;}
.ws6{word-spacing:-7.810560pt;}
.ws14{word-spacing:-0.053120pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-1339.799253pt;}
._1{margin-left:-1288.384000pt;}
._2{margin-left:-978.112000pt;}
._5{margin-left:-540.343893pt;}
._18{margin-left:-8.801707pt;}
._23{margin-left:-6.981760pt;}
._12{margin-left:-3.843413pt;}
._6{margin-left:-2.944000pt;}
._a{margin-left:-2.048000pt;}
._3{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._9{width:2.644053pt;}
._f{width:3.729493pt;}
._e{width:5.439147pt;}
._d{width:6.374400pt;}
._11{width:7.289173pt;}
._8{width:8.276907pt;}
._7{width:9.703680pt;}
._10{width:11.081813pt;}
._26{width:12.308480pt;}
._b{width:13.523200pt;}
._c{width:14.583040pt;}
._15{width:16.095360pt;}
._14{width:17.529600pt;}
._22{width:18.886187pt;}
._13{width:21.991680pt;}
._20{width:32.603733pt;}
._1a{width:36.633600pt;}
._25{width:37.803733pt;}
._24{width:38.777600pt;}
._1d{width:41.815040pt;}
._17{width:44.720000pt;}
._1f{width:46.042240pt;}
._1c{width:56.073173pt;}
._1e{width:58.054827pt;}
._21{width:100.543573pt;}
._1b{width:112.989867pt;}
._19{width:139.102720pt;}
._16{width:180.122880pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:5.760000pt;}
.y65{bottom:5.920000pt;}
.y67{bottom:5.946667pt;}
.yb9{bottom:6.560000pt;}
.y9c{bottom:7.200000pt;}
.y6c{bottom:9.920000pt;}
.y6a{bottom:15.360000pt;}
.y8e{bottom:24.480000pt;}
.y8b{bottom:24.640000pt;}
.y94{bottom:24.666667pt;}
.yb8{bottom:25.280000pt;}
.y6{bottom:54.592000pt;}
.y7f{bottom:80.992000pt;}
.y30{bottom:82.432000pt;}
.y13f{bottom:84.832000pt;}
.y16e{bottom:91.712000pt;}
.yb6{bottom:93.952000pt;}
.ye8{bottom:95.232000pt;}
.y63{bottom:97.152000pt;}
.y7e{bottom:99.712000pt;}
.y2f{bottom:101.152000pt;}
.y13e{bottom:102.432000pt;}
.y88{bottom:109.952000pt;}
.yb5{bottom:112.672000pt;}
.ye7{bottom:113.952000pt;}
.y62{bottom:115.872000pt;}
.y7d{bottom:118.432000pt;}
.y2e{bottom:119.872000pt;}
.y13d{bottom:120.352000pt;}
.y87{bottom:128.672000pt;}
.yb4{bottom:131.392000pt;}
.ye6{bottom:132.672000pt;}
.y61{bottom:134.586667pt;}
.y7c{bottom:137.146667pt;}
.y13c{bottom:137.946667pt;}
.y2d{bottom:138.586667pt;}
.y86{bottom:147.386667pt;}
.yb3{bottom:150.106667pt;}
.ye5{bottom:151.386667pt;}
.y60{bottom:153.306667pt;}
.y7b{bottom:155.866667pt;}
.y13b{bottom:156.666667pt;}
.y2c{bottom:157.306667pt;}
.y85{bottom:166.106667pt;}
.yb2{bottom:168.826667pt;}
.ye4{bottom:170.106667pt;}
.y5f{bottom:172.026667pt;}
.y7a{bottom:174.586667pt;}
.y13a{bottom:175.386667pt;}
.y2b{bottom:176.026667pt;}
.y16d{bottom:182.906667pt;}
.y84{bottom:184.826667pt;}
.yb1{bottom:187.546667pt;}
.ye3{bottom:188.826667pt;}
.y5e{bottom:190.746667pt;}
.y79{bottom:193.306667pt;}
.y2a{bottom:194.746667pt;}
.y16c{bottom:200.506667pt;}
.y83{bottom:203.546667pt;}
.yb0{bottom:206.266667pt;}
.ye2{bottom:207.546667pt;}
.y5d{bottom:209.466667pt;}
.y139{bottom:210.906667pt;}
.y78{bottom:212.026667pt;}
.y29{bottom:213.466667pt;}
.y16b{bottom:218.106667pt;}
.y82{bottom:222.266667pt;}
.yaf{bottom:224.826667pt;}
.ye1{bottom:226.266667pt;}
.y5c{bottom:228.186667pt;}
.y138{bottom:229.466667pt;}
.y77{bottom:230.746667pt;}
.y28{bottom:232.186667pt;}
.y16a{bottom:235.866667pt;}
.y81{bottom:240.826667pt;}
.yae{bottom:243.546667pt;}
.ye0{bottom:244.826667pt;}
.y111{bottom:244.986667pt;}
.y5b{bottom:246.906667pt;}
.y137{bottom:248.186667pt;}
.y76{bottom:249.466667pt;}
.y27{bottom:250.946667pt;}
.y169{bottom:253.506667pt;}
.y80{bottom:259.586667pt;}
.yad{bottom:262.306667pt;}
.ydf{bottom:263.586667pt;}
.y110{bottom:263.746667pt;}
.y5a{bottom:265.666667pt;}
.y136{bottom:266.946667pt;}
.y75{bottom:268.226667pt;}
.y26{bottom:269.666667pt;}
.y168{bottom:271.106667pt;}
.y9a{bottom:273.186667pt;}
.yac{bottom:281.026667pt;}
.yde{bottom:282.306667pt;}
.y10f{bottom:282.466667pt;}
.y59{bottom:284.386667pt;}
.y135{bottom:285.026667pt;}
.y74{bottom:286.946667pt;}
.y25{bottom:288.386667pt;}
.y167{bottom:288.706667pt;}
.y99{bottom:292.546667pt;}
.yab{bottom:299.746667pt;}
.ydd{bottom:301.026667pt;}
.y10e{bottom:301.186667pt;}
.y134{bottom:302.466667pt;}
.y58{bottom:303.106667pt;}
.y73{bottom:305.666667pt;}
.y166{bottom:306.306667pt;}
.y24{bottom:307.106667pt;}
.yaa{bottom:318.466667pt;}
.y10d{bottom:319.106667pt;}
.ydc{bottom:319.746667pt;}
.y133{bottom:320.546667pt;}
.y57{bottom:321.826667pt;}
.y165{bottom:324.066667pt;}
.y72{bottom:324.386667pt;}
.y23{bottom:325.826667pt;}
.y98{bottom:329.986667pt;}
.y10c{bottom:336.706667pt;}
.ya9{bottom:337.186667pt;}
.y132{bottom:337.986667pt;}
.ydb{bottom:338.466667pt;}
.y56{bottom:340.546667pt;}
.y164{bottom:341.666667pt;}
.y71{bottom:343.106667pt;}
.y22{bottom:344.546667pt;}
.y10b{bottom:355.426667pt;}
.ya8{bottom:355.906667pt;}
.y131{bottom:356.706667pt;}
.yda{bottom:357.186667pt;}
.y55{bottom:359.266667pt;}
.y70{bottom:361.826667pt;}
.y21{bottom:363.266667pt;}
.y97{bottom:367.426667pt;}
.y10a{bottom:374.146667pt;}
.ya7{bottom:374.626667pt;}
.y130{bottom:375.426667pt;}
.yd9{bottom:375.906667pt;}
.y163{bottom:376.866667pt;}
.y54{bottom:377.986667pt;}
.y6f{bottom:380.546667pt;}
.y20{bottom:381.986667pt;}
.y109{bottom:392.866667pt;}
.ya6{bottom:393.346667pt;}
.y12f{bottom:394.146667pt;}
.yd8{bottom:394.626667pt;}
.y162{bottom:395.266667pt;}
.y53{bottom:396.706667pt;}
.y6e{bottom:399.266667pt;}
.y1f{bottom:400.706667pt;}
.y96{bottom:404.866667pt;}
.y108{bottom:410.786667pt;}
.ya5{bottom:412.066667pt;}
.y12e{bottom:412.866667pt;}
.y161{bottom:413.186667pt;}
.yd7{bottom:413.346667pt;}
.y52{bottom:415.426667pt;}
.y6d{bottom:417.986667pt;}
.y1e{bottom:419.426667pt;}
.y107{bottom:428.706667pt;}
.ya4{bottom:430.786667pt;}
.y6b{bottom:431.426667pt;}
.y12d{bottom:431.586667pt;}
.y160{bottom:431.906667pt;}
.yd6{bottom:432.066667pt;}
.y51{bottom:434.146667pt;}
.y1d{bottom:438.146667pt;}
.y95{bottom:442.306667pt;}
.y106{bottom:446.306667pt;}
.ya3{bottom:449.506667pt;}
.y12c{bottom:450.306667pt;}
.y15f{bottom:450.626667pt;}
.yd5{bottom:450.786667pt;}
.y50{bottom:452.866667pt;}
.y69{bottom:454.786667pt;}
.y1c{bottom:456.866667pt;}
.y105{bottom:465.026667pt;}
.ya2{bottom:468.226667pt;}
.y15e{bottom:468.546667pt;}
.y12b{bottom:469.026667pt;}
.yd4{bottom:469.506667pt;}
.y4f{bottom:471.586667pt;}
.y1b{bottom:475.586667pt;}
.y93{bottom:479.746667pt;}
.y68{bottom:482.946667pt;}
.y104{bottom:483.746667pt;}
.y15d{bottom:486.146667pt;}
.ya1{bottom:486.946667pt;}
.y12a{bottom:487.746667pt;}
.yd3{bottom:488.226667pt;}
.y4e{bottom:490.306667pt;}
.y66{bottom:501.666667pt;}
.y15c{bottom:504.893333pt;}
.ya0{bottom:505.693333pt;}
.y129{bottom:506.493333pt;}
.yd2{bottom:506.973333pt;}
.y4d{bottom:509.053333pt;}
.y1a{bottom:515.133333pt;}
.y92{bottom:517.213333pt;}
.y9f{bottom:519.133333pt;}
.y103{bottom:519.293333pt;}
.y64{bottom:521.213333pt;}
.y15b{bottom:523.613333pt;}
.y128{bottom:525.213333pt;}
.yd1{bottom:525.693333pt;}
.y4c{bottom:527.773333pt;}
.y102{bottom:537.213333pt;}
.y9e{bottom:537.853333pt;}
.y19{bottom:541.693333pt;}
.y15a{bottom:542.333333pt;}
.y127{bottom:543.133333pt;}
.yd0{bottom:544.413333pt;}
.y4b{bottom:546.493333pt;}
.y91{bottom:554.653333pt;}
.y101{bottom:554.813333pt;}
.y9d{bottom:556.573333pt;}
.y18{bottom:560.413333pt;}
.y126{bottom:560.733333pt;}
.y159{bottom:561.053333pt;}
.ycf{bottom:563.133333pt;}
.y4a{bottom:565.213333pt;}
.y100{bottom:572.733333pt;}
.y9b{bottom:576.093333pt;}
.y125{bottom:578.653333pt;}
.y17{bottom:579.133333pt;}
.y158{bottom:579.773333pt;}
.yce{bottom:581.853333pt;}
.y49{bottom:583.933333pt;}
.yff{bottom:590.173333pt;}
.y90{bottom:592.093333pt;}
.y124{bottom:596.253333pt;}
.y16{bottom:597.853333pt;}
.y157{bottom:598.493333pt;}
.ycd{bottom:600.573333pt;}
.y48{bottom:602.653333pt;}
.yfe{bottom:608.893333pt;}
.y123{bottom:614.173333pt;}
.y15{bottom:616.573333pt;}
.y156{bottom:617.213333pt;}
.ycc{bottom:619.293333pt;}
.y47{bottom:621.373333pt;}
.yfd{bottom:627.613333pt;}
.y8d{bottom:629.533333pt;}
.y122{bottom:631.773333pt;}
.y155{bottom:635.133333pt;}
.y14{bottom:635.293333pt;}
.ycb{bottom:638.013333pt;}
.y46{bottom:640.093333pt;}
.yfc{bottom:646.333333pt;}
.y121{bottom:650.493333pt;}
.y154{bottom:652.733333pt;}
.y13{bottom:654.013333pt;}
.yca{bottom:656.733333pt;}
.y45{bottom:658.813333pt;}
.yfb{bottom:665.053333pt;}
.y8c{bottom:666.813333pt;}
.y120{bottom:669.213333pt;}
.y153{bottom:671.453333pt;}
.y12{bottom:672.733333pt;}
.yc9{bottom:675.453333pt;}
.y44{bottom:677.533333pt;}
.yfa{bottom:683.773333pt;}
.y11f{bottom:687.933333pt;}
.y152{bottom:690.173333pt;}
.y11{bottom:691.453333pt;}
.yc8{bottom:694.173333pt;}
.y43{bottom:696.253333pt;}
.yf9{bottom:702.493333pt;}
.y8a{bottom:704.253333pt;}
.y11e{bottom:706.653333pt;}
.y151{bottom:708.093333pt;}
.y10{bottom:710.173333pt;}
.yc7{bottom:712.893333pt;}
.y42{bottom:714.973333pt;}
.yf8{bottom:721.213333pt;}
.y11d{bottom:724.573333pt;}
.y150{bottom:725.533333pt;}
.yf{bottom:728.893333pt;}
.yc6{bottom:731.613333pt;}
.y41{bottom:733.693333pt;}
.yf7{bottom:739.933333pt;}
.y11c{bottom:742.173333pt;}
.y89{bottom:742.493333pt;}
.y14f{bottom:744.253333pt;}
.ye{bottom:747.773333pt;}
.yc5{bottom:750.333333pt;}
.y40{bottom:752.413333pt;}
.yf6{bottom:758.693333pt;}
.y11b{bottom:760.933333pt;}
.y14e{bottom:763.013333pt;}
.yd{bottom:768.453333pt;}
.yc4{bottom:769.093333pt;}
.y3f{bottom:771.173333pt;}
.yf5{bottom:777.413333pt;}
.y11a{bottom:778.853333pt;}
.y14d{bottom:781.093333pt;}
.yc3{bottom:787.813333pt;}
.y3e{bottom:789.893333pt;}
.yc{bottom:791.813333pt;}
.yf4{bottom:796.133333pt;}
.y119{bottom:796.453333pt;}
.y14c{bottom:798.533333pt;}
.yc2{bottom:806.533333pt;}
.y3d{bottom:808.613333pt;}
.yb{bottom:810.533333pt;}
.yf3{bottom:814.853333pt;}
.y118{bottom:815.173333pt;}
.y14b{bottom:816.613333pt;}
.ya{bottom:825.253333pt;}
.y3c{bottom:827.173333pt;}
.yf2{bottom:832.773333pt;}
.y117{bottom:833.093333pt;}
.y14a{bottom:834.053333pt;}
.yc1{bottom:843.973333pt;}
.y9{bottom:845.893333pt;}
.y116{bottom:851.013333pt;}
.yf1{bottom:851.493333pt;}
.y149{bottom:852.773333pt;}
.ybf{bottom:857.413333pt;}
.y3b{bottom:864.613333pt;}
.y115{bottom:868.613333pt;}
.y8{bottom:869.413333pt;}
.yf0{bottom:870.213333pt;}
.y148{bottom:871.493333pt;}
.yc0{bottom:876.133333pt;}
.y3a{bottom:883.333333pt;}
.y114{bottom:886.533333pt;}
.yef{bottom:888.133333pt;}
.y147{bottom:890.213333pt;}
.ybe{bottom:894.853333pt;}
.y7{bottom:899.333333pt;}
.y39{bottom:902.053333pt;}
.y113{bottom:903.973333pt;}
.yee{bottom:906.853333pt;}
.y146{bottom:908.933333pt;}
.ybd{bottom:913.573333pt;}
.y38{bottom:920.773333pt;}
.y112{bottom:922.053333pt;}
.yed{bottom:924.773333pt;}
.y145{bottom:926.853333pt;}
.ybc{bottom:932.293333pt;}
.y5{bottom:935.493333pt;}
.y37{bottom:939.493333pt;}
.yec{bottom:942.373333pt;}
.y144{bottom:944.613333pt;}
.ybb{bottom:951.013333pt;}
.y36{bottom:958.213333pt;}
.yeb{bottom:961.093333pt;}
.y143{bottom:962.053333pt;}
.y4{bottom:966.053333pt;}
.yb7{bottom:969.733333pt;}
.y35{bottom:976.933333pt;}
.yea{bottom:979.013333pt;}
.y142{bottom:980.133333pt;}
.yba{bottom:989.093333pt;}
.y34{bottom:995.653333pt;}
.y3{bottom:996.613333pt;}
.y141{bottom:997.573333pt;}
.y33{bottom:1014.400000pt;}
.ye9{bottom:1015.360000pt;}
.y140{bottom:1015.680000pt;}
.y2{bottom:1027.040000pt;}
.y32{bottom:1033.120000pt;}
.y1{bottom:1059.040000pt;}
.y31{bottom:1060.640000pt;}
.hc{height:18.720000pt;}
.hd{height:18.752000pt;}
.h13{height:20.000000pt;}
.hf{height:22.720000pt;}
.he{height:28.160000pt;}
.h7{height:34.374375pt;}
.h11{height:37.280000pt;}
.h10{height:37.440000pt;}
.h12{height:37.472000pt;}
.h15{height:38.112000pt;}
.h14{height:42.745000pt;}
.h2{height:49.907812pt;}
.h16{height:52.134375pt;}
.h8{height:52.834688pt;}
.h9{height:54.390938pt;}
.hb{height:54.598989pt;}
.ha{height:55.298750pt;}
.h4{height:58.563750pt;}
.h6{height:60.288750pt;}
.h3{height:63.656250pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:38.240000pt;}
.wa{width:43.520000pt;}
.w9{width:52.800000pt;}
.we{width:58.080000pt;}
.w4{width:60.032000pt;}
.wf{width:65.440000pt;}
.w19{width:65.472000pt;}
.w16{width:66.560000pt;}
.w11{width:79.712000pt;}
.w6{width:83.200000pt;}
.wb{width:91.232000pt;}
.w15{width:99.712000pt;}
.w12{width:103.040000pt;}
.w17{width:103.712000pt;}
.w18{width:103.840000pt;}
.wc{width:104.960000pt;}
.w14{width:130.752000pt;}
.w10{width:195.066667pt;}
.w13{width:199.866667pt;}
.wd{width:203.586667pt;}
.w7{width:207.226667pt;}
.w3{width:317.826667pt;}
.w8{width:405.053333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.xb{left:10.240000pt;}
.x10{left:13.280000pt;}
.xd{left:14.240000pt;}
.x20{left:16.160000pt;}
.x28{left:17.760000pt;}
.x26{left:24.160000pt;}
.x9{left:25.760000pt;}
.x27{left:26.720000pt;}
.x22{left:28.480000pt;}
.x11{left:31.200000pt;}
.x1d{left:33.280000pt;}
.x29{left:34.560000pt;}
.x25{left:36.640000pt;}
.x1b{left:43.066667pt;}
.x24{left:46.266667pt;}
.x1{left:47.999988pt;}
.x1f{left:51.880000pt;}
.x12{left:55.232000pt;}
.x19{left:57.480000pt;}
.x2d{left:62.399988pt;}
.x2a{left:66.079988pt;}
.x2c{left:71.999988pt;}
.x2b{left:78.079988pt;}
.x2{left:96.031988pt;}
.x3{left:104.831988pt;}
.x18{left:247.866667pt;}
.x13{left:251.586667pt;}
.x14{left:309.666667pt;}
.x23{left:313.186667pt;}
.x5{left:365.826667pt;}
.x15{left:375.106667pt;}
.x1a{left:378.626667pt;}
.x6{left:425.853333pt;}
.xa{left:453.053333pt;}
.x7{left:464.093333pt;}
.x1c{left:478.333333pt;}
.xc{left:505.853333pt;}
.x1e{left:544.893333pt;}
.x8{left:547.293333pt;}
.xe{left:549.213333pt;}
.x16{left:570.173333pt;}
.xf{left:640.613333pt;}
.x21{left:648.613333pt;}
.x17{left:649.893333pt;}
.x2e{left:746.053322pt;}
}




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