
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_e8e786c27bc632349b03c28f.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_b674e3f1ea60b2f209c1bc9c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ee6c721d3397148b1a0a61f9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7231a14499058718873bd18a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_d1ac45ccdb60bca813f9bf3c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_aad84257cd171ee1859b09d4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3b6893dbd4e9a72b6062a7c2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_359d01edf130577d36b3965b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f74d7ff22169cec8cb033987.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_5925a7b69507aacb7ffb8ee2.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_6e74cf79d3f80d06ddaf3185.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_8ae57ef817fbca8ddd2ec1e5.woff2')format("woff");}.fff{font-family:fff;line-height:0.859375;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls21{letter-spacing:-1.746000px;}
.lsf{letter-spacing:-1.440000px;}
.ls2a{letter-spacing:-1.332000px;}
.lsd{letter-spacing:-1.176000px;}
.ls25{letter-spacing:-1.134000px;}
.ls20{letter-spacing:-0.984000px;}
.lse{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.457800px;}
.lsc{letter-spacing:-0.414600px;}
.ls18{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.274800px;}
.ls1f{letter-spacing:-0.262200px;}
.ls1d{letter-spacing:-0.109200px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.036000px;}
.ls32{letter-spacing:0.080400px;}
.lsa{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.109440px;}
.ls28{letter-spacing:0.120000px;}
.ls31{letter-spacing:0.148800px;}
.ls0{letter-spacing:0.150000px;}
.ls1a{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.262200px;}
.ls6{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.457800px;}
.lsb{letter-spacing:0.567600px;}
.ls5{letter-spacing:0.720000px;}
.ls2e{letter-spacing:1.026000px;}
.ls2b{letter-spacing:2.160000px;}
.ls24{letter-spacing:3.600000px;}
.ls2f{letter-spacing:6.785280px;}
.ls22{letter-spacing:7.920000px;}
.ls27{letter-spacing:8.640000px;}
.ls29{letter-spacing:10.800000px;}
.ls2c{letter-spacing:12.960000px;}
.ls14{letter-spacing:18.000000px;}
.ls12{letter-spacing:24.065280px;}
.ls11{letter-spacing:27.665280px;}
.ls26{letter-spacing:28.800000px;}
.ls2d{letter-spacing:33.120000px;}
.ls17{letter-spacing:34.865280px;}
.ls23{letter-spacing:35.280000px;}
.ls15{letter-spacing:36.305280px;}
.ls16{letter-spacing:38.465280px;}
.ls13{letter-spacing:39.905280px;}
.ls30{letter-spacing:47.105280px;}
.ls10{letter-spacing:48.545280px;}
.ls1b{letter-spacing:59.345280px;}
.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;}
}
.ws12{word-spacing:-66.240000px;}
.ws3{word-spacing:-59.760000px;}
.ws1f{word-spacing:-28.987200px;}
.wsa{word-spacing:-28.712400px;}
.ws0{word-spacing:-18.000000px;}
.ws20{word-spacing:-17.586000px;}
.wsd{word-spacing:-17.127600px;}
.ws18{word-spacing:-17.017800px;}
.ws6{word-spacing:-16.865400px;}
.ws16{word-spacing:-16.822200px;}
.ws15{word-spacing:-16.712400px;}
.wsc{word-spacing:-16.669200px;}
.ws21{word-spacing:-16.640400px;}
.ws5{word-spacing:-16.560000px;}
.ws17{word-spacing:-16.450800px;}
.ws19{word-spacing:-16.297800px;}
.ws13{word-spacing:-16.254600px;}
.wse{word-spacing:-16.145400px;}
.wsb{word-spacing:-16.102200px;}
.ws14{word-spacing:-15.948000px;}
.ws10{word-spacing:-15.840000px;}
.ws1a{word-spacing:-15.576000px;}
.ws1d{word-spacing:-15.426000px;}
.wsf{word-spacing:-15.384000px;}
.ws2{word-spacing:-15.300000px;}
.ws1e{word-spacing:-15.228000px;}
.ws11{word-spacing:-15.120000px;}
.ws1{word-spacing:-14.940000px;}
.ws1b{word-spacing:-14.814000px;}
.ws9{word-spacing:-14.572800px;}
.ws8{word-spacing:-13.500000px;}
.ws22{word-spacing:-13.296000px;}
.ws4{word-spacing:-10.440000px;}
.ws1c{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._21{margin-left:-4.703040px;}
._24{margin-left:-3.565440px;}
._22{margin-left:-2.311680px;}
._0{margin-left:-1.152000px;}
._1{width:1.380000px;}
._3{width:2.380800px;}
._2{width:3.677760px;}
._12{width:5.575680px;}
._4{width:6.955200px;}
._5{width:8.857920px;}
._18{width:10.267200px;}
._1f{width:11.352960px;}
._25{width:12.585360px;}
._b{width:14.307840px;}
._8{width:15.459840px;}
._1e{width:17.835120px;}
._1d{width:19.423920px;}
._13{width:20.468160px;}
._20{width:21.636480px;}
._2f{width:22.827360px;}
._26{width:24.045120px;}
._d{width:25.061760px;}
._a{width:26.164800px;}
._23{width:27.361440px;}
._c{width:28.399680px;}
._6{width:29.421120px;}
._7{width:30.827520px;}
._14{width:32.653440px;}
._15{width:33.716160px;}
._16{width:34.908480px;}
._17{width:36.060480px;}
._2c{width:38.062080px;}
._2a{width:39.286080px;}
._2b{width:40.781280px;}
._2e{width:42.724800px;}
._e{width:44.380800px;}
._f{width:45.485760px;}
._10{width:46.632960px;}
._11{width:48.208320px;}
._9{width:49.613760px;}
._1a{width:51.402240px;}
._19{width:52.421760px;}
._37{width:53.720640px;}
._38{width:54.838080px;}
._31{width:56.894400px;}
._1c{width:58.596480px;}
._1b{width:59.840640px;}
._36{width:62.688960px;}
._3c{width:63.777120px;}
._34{width:65.262720px;}
._2d{width:66.277920px;}
._29{width:68.332800px;}
._28{width:69.940800px;}
._33{width:71.915040px;}
._32{width:73.088640px;}
._35{width:74.380800px;}
._30{width:75.447360px;}
._27{width:84.893760px;}
._3a{width:94.727520px;}
._3b{width:95.981760px;}
._39{width:97.299840px;}
._42{width:112.124160px;}
._3f{width:151.770720px;}
._3e{width:176.323200px;}
._40{width:181.598880px;}
._41{width:469.035120px;}
._3d{width:1522.415280px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc4{color:rgb(112,48,160);}
.fc3{color:rgb(51,51,204);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(0,176,80);}
.fs3{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:131.760000px;}
.yd{bottom:-13.140000px;}
.y0{bottom:0.000000px;}
.yc{bottom:4.140000px;}
.y35{bottom:10.080000px;}
.y39{bottom:10.794000px;}
.y9{bottom:10.800000px;}
.yc8{bottom:13.500000px;}
.ycc{bottom:13.530000px;}
.yc6{bottom:13.680000px;}
.y102{bottom:14.040000px;}
.y10c{bottom:14.220000px;}
.yfd{bottom:14.400000px;}
.y101{bottom:14.760000px;}
.y106{bottom:14.940000px;}
.y12e{bottom:15.300000px;}
.y126{bottom:17.820000px;}
.yb{bottom:21.240000px;}
.y34{bottom:26.460000px;}
.y7{bottom:32.760000px;}
.y33{bottom:42.660000px;}
.yfb{bottom:42.840000px;}
.yff{bottom:43.200000px;}
.y10a{bottom:43.380000px;}
.y104{bottom:43.560000px;}
.y125{bottom:47.880000px;}
.y36{bottom:48.420000px;}
.y37{bottom:48.600000px;}
.y6{bottom:50.220000px;}
.y8{bottom:53.280000px;}
.y32{bottom:58.500000px;}
.y124{bottom:76.320000px;}
.y2e{bottom:80.496000px;}
.y109{bottom:95.616000px;}
.y65{bottom:96.696000px;}
.y82{bottom:98.856000px;}
.y11b{bottom:100.116000px;}
.y110{bottom:104.436000px;}
.y5d{bottom:104.796000px;}
.y2d{bottom:108.936000px;}
.ya4{bottom:115.596000px;}
.ydc{bottom:119.016000px;}
.y64{bottom:125.136000px;}
.y10b{bottom:125.496000px;}
.yd5{bottom:126.396000px;}
.y81{bottom:127.296000px;}
.y11a{bottom:128.556000px;}
.yba{bottom:130.896000px;}
.y5c{bottom:133.236000px;}
.y2c{bottom:137.376000px;}
.y38{bottom:142.056000px;}
.y122{bottom:144.936000px;}
.ya3{bottom:145.296000px;}
.ydb{bottom:147.456000px;}
.y63{bottom:153.570000px;}
.y107{bottom:154.650000px;}
.yd4{bottom:154.830000px;}
.y80{bottom:155.730000px;}
.y119{bottom:156.990000px;}
.yb9{bottom:159.330000px;}
.y5b{bottom:161.670000px;}
.y2b{bottom:165.810000px;}
.ya2{bottom:174.810000px;}
.yda{bottom:176.250000px;}
.y121{bottom:180.930000px;}
.y62{bottom:182.010000px;}
.yd3{bottom:182.910000px;}
.y108{bottom:183.990000px;}
.y7f{bottom:184.350000px;}
.y118{bottom:185.070000px;}
.yb8{bottom:187.410000px;}
.y5a{bottom:190.110000px;}
.y2a{bottom:194.430000px;}
.yd9{bottom:200.730000px;}
.ya1{bottom:204.510000px;}
.y61{bottom:210.450000px;}
.yd2{bottom:211.710000px;}
.y7e{bottom:212.790000px;}
.y103{bottom:213.150000px;}
.y117{bottom:213.870000px;}
.yb7{bottom:215.850000px;}
.y120{bottom:216.210000px;}
.y59{bottom:218.730000px;}
.y29{bottom:222.870000px;}
.y12d{bottom:231.150000px;}
.ya0{bottom:232.950000px;}
.y60{bottom:235.110000px;}
.yd1{bottom:236.370000px;}
.y7d{bottom:241.230000px;}
.y105{bottom:242.310000px;}
.y116{bottom:242.490000px;}
.yb6{bottom:244.650000px;}
.y58{bottom:247.170000px;}
.y28{bottom:251.310000px;}
.y12c{bottom:262.110000px;}
.y9f{bottom:262.650000px;}
.y7c{bottom:269.670000px;}
.y115{bottom:272.190000px;}
.yfe{bottom:272.370000px;}
.yb5{bottom:273.270000px;}
.y57{bottom:275.610000px;}
.y27{bottom:279.750000px;}
.y12b{bottom:291.270000px;}
.y9e{bottom:292.350000px;}
.y7b{bottom:298.110000px;}
.yb4{bottom:301.710000px;}
.y100{bottom:302.070000px;}
.y56{bottom:304.050000px;}
.y26{bottom:308.190000px;}
.y12a{bottom:320.475000px;}
.y9d{bottom:321.915000px;}
.y7a{bottom:326.775000px;}
.yb3{bottom:330.195000px;}
.yfa{bottom:331.275000px;}
.y55{bottom:332.535000px;}
.y25{bottom:336.675000px;}
.y129{bottom:349.815000px;}
.y9c{bottom:351.435000px;}
.y79{bottom:356.295000px;}
.yb2{bottom:358.635000px;}
.yfc{bottom:360.615000px;}
.y54{bottom:360.975000px;}
.y24{bottom:365.115000px;}
.y128{bottom:378.975000px;}
.y9b{bottom:380.055000px;}
.y78{bottom:384.735000px;}
.yb1{bottom:387.075000px;}
.y114{bottom:387.255000px;}
.y53{bottom:389.415000px;}
.y23{bottom:393.555000px;}
.yf9{bottom:403.275000px;}
.yd8{bottom:405.795000px;}
.y127{bottom:408.135000px;}
.y9a{bottom:408.495000px;}
.y77{bottom:414.435000px;}
.yb0{bottom:415.155000px;}
.y113{bottom:416.775000px;}
.y52{bottom:417.855000px;}
.y22{bottom:421.995000px;}
.ye7{bottom:431.715000px;}
.yd7{bottom:434.235000px;}
.y99{bottom:436.935000px;}
.y123{bottom:437.295000px;}
.y76{bottom:443.955000px;}
.y112{bottom:445.215000px;}
.y51{bottom:446.295000px;}
.y21{bottom:450.615000px;}
.ye6{bottom:460.155000px;}
.yd0{bottom:462.675000px;}
.y98{bottom:465.375000px;}
.yf8{bottom:465.555000px;}
.y75{bottom:472.395000px;}
.y111{bottom:474.555000px;}
.y50{bottom:474.915000px;}
.y30{bottom:478.695000px;}
.y20{bottom:479.055000px;}
.ye5{bottom:488.595000px;}
.ycf{bottom:491.115000px;}
.y97{bottom:493.815000px;}
.yf7{bottom:493.995000px;}
.y74{bottom:500.835000px;}
.y11d{bottom:502.995000px;}
.y4f{bottom:503.355000px;}
.y1f{bottom:507.495000px;}
.ye4{bottom:517.215000px;}
.yce{bottom:519.555000px;}
.y96{bottom:522.255000px;}
.yf6{bottom:522.615000px;}
.y73{bottom:529.455000px;}
.y11c{bottom:531.435000px;}
.y4e{bottom:531.795000px;}
.y1e{bottom:535.935000px;}
.ye3{bottom:545.655000px;}
.ycd{bottom:547.635000px;}
.yd6{bottom:547.995000px;}
.y95{bottom:550.695000px;}
.yf5{bottom:551.055000px;}
.y11f{bottom:555.195000px;}
.y72{bottom:557.895000px;}
.y10e{bottom:559.875000px;}
.y4d{bottom:560.235000px;}
.ycb{bottom:563.655000px;}
.y1d{bottom:564.375000px;}
.ye2{bottom:573.765000px;}
.y94{bottom:579.165000px;}
.yf4{bottom:579.525000px;}
.y11e{bottom:580.245000px;}
.y71{bottom:586.365000px;}
.y10d{bottom:588.345000px;}
.y4c{bottom:588.705000px;}
.y1c{bottom:592.845000px;}
.yca{bottom:593.025000px;}
.ye1{bottom:602.565000px;}
.y93{bottom:607.605000px;}
.yf3{bottom:607.965000px;}
.y70{bottom:614.805000px;}
.y4b{bottom:617.145000px;}
.y1b{bottom:621.285000px;}
.yc9{bottom:622.185000px;}
.ye0{bottom:631.005000px;}
.y92{bottom:636.225000px;}
.yf2{bottom:636.405000px;}
.y6f{bottom:643.245000px;}
.y4a{bottom:645.585000px;}
.y1a{bottom:649.725000px;}
.yc7{bottom:651.345000px;}
.ydf{bottom:655.485000px;}
.y91{bottom:664.665000px;}
.yf1{bottom:664.845000px;}
.y6e{bottom:671.685000px;}
.y49{bottom:674.025000px;}
.y19{bottom:678.345000px;}
.yc5{bottom:680.505000px;}
.y90{bottom:693.105000px;}
.yf0{bottom:693.285000px;}
.y6d{bottom:700.125000px;}
.y10f{bottom:702.105000px;}
.y48{bottom:702.465000px;}
.y18{bottom:706.785000px;}
.y8f{bottom:721.545000px;}
.yef{bottom:721.725000px;}
.yc4{bottom:723.345000px;}
.y6c{bottom:728.565000px;}
.y47{bottom:731.085000px;}
.y17{bottom:735.225000px;}
.y8e{bottom:749.985000px;}
.yee{bottom:750.165000px;}
.yc0{bottom:751.785000px;}
.yaf{bottom:756.825000px;}
.y6b{bottom:757.185000px;}
.y46{bottom:759.525000px;}
.y16{bottom:763.305000px;}
.y2f{bottom:763.665000px;}
.y8d{bottom:778.425000px;}
.yed{bottom:778.785000px;}
.ybf{bottom:780.225000px;}
.y6a{bottom:785.625000px;}
.yc3{bottom:787.785000px;}
.y45{bottom:787.965000px;}
.y15{bottom:794.265000px;}
.y8c{bottom:806.865000px;}
.yec{bottom:807.225000px;}
.ybe{bottom:808.665000px;}
.y69{bottom:814.065000px;}
.y44{bottom:816.405000px;}
.y14{bottom:822.930000px;}
.yeb{bottom:835.350000px;}
.y8b{bottom:835.530000px;}
.ybd{bottom:837.150000px;}
.yae{bottom:842.550000px;}
.y68{bottom:843.630000px;}
.y5f{bottom:844.530000px;}
.y43{bottom:844.890000px;}
.y13{bottom:851.370000px;}
.yea{bottom:864.150000px;}
.y8a{bottom:865.230000px;}
.yad{bottom:870.990000px;}
.y67{bottom:872.250000px;}
.yc2{bottom:872.970000px;}
.y42{bottom:873.330000px;}
.y12{bottom:879.810000px;}
.ye9{bottom:892.590000px;}
.ybc{bottom:894.030000px;}
.y89{bottom:894.750000px;}
.yac{bottom:899.430000px;}
.y66{bottom:901.410000px;}
.y41{bottom:901.770000px;}
.y11{bottom:908.250000px;}
.ye8{bottom:917.070000px;}
.ybb{bottom:918.690000px;}
.y88{bottom:924.450000px;}
.yc1{bottom:926.250000px;}
.yab{bottom:927.870000px;}
.y40{bottom:930.210000px;}
.y10{bottom:942.630000px;}
.y87{bottom:953.970000px;}
.yaa{bottom:956.310000px;}
.y3f{bottom:958.650000px;}
.yf{bottom:964.770000px;}
.y86{bottom:982.590000px;}
.ya9{bottom:984.750000px;}
.y3e{bottom:987.270000px;}
.ye{bottom:993.210000px;}
.y85{bottom:1012.290000px;}
.ya8{bottom:1013.370000px;}
.y5{bottom:1014.270000px;}
.y5e{bottom:1015.350000px;}
.y3d{bottom:1015.710000px;}
.y4{bottom:1034.250000px;}
.ya7{bottom:1041.450000px;}
.y84{bottom:1041.810000px;}
.y3c{bottom:1044.150000px;}
.y3{bottom:1054.050000px;}
.ya6{bottom:1070.250000px;}
.y83{bottom:1071.540000px;}
.y2{bottom:1072.080000px;}
.yde{bottom:1072.260000px;}
.y3b{bottom:1072.620000px;}
.y1{bottom:1088.640000px;}
.ya5{bottom:1099.980000px;}
.ydd{bottom:1100.700000px;}
.y3a{bottom:1101.060000px;}
.ya{bottom:1122.300000px;}
.y31{bottom:1131.480000px;}
.h15{height:28.440000px;}
.h16{height:28.476000px;}
.h14{height:28.620000px;}
.h19{height:28.980000px;}
.h1d{height:29.160000px;}
.h1b{height:29.340000px;}
.h22{height:30.240000px;}
.h6{height:35.100000px;}
.h9{height:41.250937px;}
.h13{height:46.251562px;}
.h1{height:50.229844px;}
.h1f{height:50.364141px;}
.hc{height:52.971680px;}
.hb{height:53.709961px;}
.hd{height:55.291992px;}
.h17{height:57.780000px;}
.h18{height:58.176000px;}
.h1c{height:58.320000px;}
.h1a{height:58.500000px;}
.h3{height:58.621992px;}
.h7{height:60.226875px;}
.h11{height:60.679688px;}
.h21{height:64.978594px;}
.ha{height:65.010937px;}
.h8{height:66.757500px;}
.h12{height:68.084282px;}
.h2{height:72.562500px;}
.h5{height:72.562526px;}
.h20{height:91.260000px;}
.h10{height:109.800000px;}
.h1e{height:111.043849px;}
.hf{height:111.043855px;}
.h4{height:167.250000px;}
.he{height:268.635000px;}
.h0{height:1188.000000px;}
.w6{width:21.600000px;}
.w2{width:23.940000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.wc{width:79.920000px;}
.wd{width:82.656000px;}
.w15{width:87.336000px;}
.w17{width:88.380000px;}
.w14{width:89.100000px;}
.w16{width:96.120000px;}
.w12{width:107.100000px;}
.wf{width:110.376000px;}
.w11{width:119.016000px;}
.w10{width:134.676000px;}
.we{width:175.320000px;}
.wa{width:226.830000px;}
.wb{width:245.955000px;}
.w8{width:266.250000px;}
.w9{width:266.430000px;}
.w7{width:278.895000px;}
.w3{width:333.795000px;}
.w13{width:451.545000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x22{left:5.040000px;}
.xf{left:9.000000px;}
.x7{left:10.800000px;}
.x1d{left:13.500000px;}
.x1c{left:14.580000px;}
.x5{left:16.920000px;}
.x1b{left:18.000000px;}
.x11{left:21.420000px;}
.xa{left:31.680000px;}
.x3{left:53.999986px;}
.xc{left:80.999986px;}
.x1{left:144.215986px;}
.x1a{left:173.730000px;}
.x2{left:174.809986px;}
.x15{left:281.550000px;}
.x10{left:333.975000px;}
.x19{left:392.835000px;}
.xe{left:435.854986px;}
.x8{left:488.984986px;}
.x14{left:499.784986px;}
.x1e{left:505.545000px;}
.xd{left:515.984986px;}
.x16{left:528.225000px;}
.x6{left:547.845000px;}
.x1f{left:594.645000px;}
.x12{left:600.945000px;}
.x17{left:608.865000px;}
.x20{left:681.990000px;}
.x18{left:692.250000px;}
.x21{left:778.110000px;}
.xb{left:853.889986px;}
.x13{left:869.939986px;}
.x9{left:871.200000px;}
.x4{left:876.060000px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls21{letter-spacing:-1.552000pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls2a{letter-spacing:-1.184000pt;}
.lsd{letter-spacing:-1.045333pt;}
.ls25{letter-spacing:-1.008000pt;}
.ls20{letter-spacing:-0.874667pt;}
.lse{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.406933pt;}
.lsc{letter-spacing:-0.368533pt;}
.ls18{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.244267pt;}
.ls1f{letter-spacing:-0.233067pt;}
.ls1d{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.032000pt;}
.ls32{letter-spacing:0.071467pt;}
.lsa{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.097280pt;}
.ls28{letter-spacing:0.106667pt;}
.ls31{letter-spacing:0.132267pt;}
.ls0{letter-spacing:0.133333pt;}
.ls1a{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.233067pt;}
.ls6{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.406933pt;}
.lsb{letter-spacing:0.504533pt;}
.ls5{letter-spacing:0.640000pt;}
.ls2e{letter-spacing:0.912000pt;}
.ls2b{letter-spacing:1.920000pt;}
.ls24{letter-spacing:3.200000pt;}
.ls2f{letter-spacing:6.031360pt;}
.ls22{letter-spacing:7.040000pt;}
.ls27{letter-spacing:7.680000pt;}
.ls29{letter-spacing:9.600000pt;}
.ls2c{letter-spacing:11.520000pt;}
.ls14{letter-spacing:16.000000pt;}
.ls12{letter-spacing:21.391360pt;}
.ls11{letter-spacing:24.591360pt;}
.ls26{letter-spacing:25.600000pt;}
.ls2d{letter-spacing:29.440000pt;}
.ls17{letter-spacing:30.991360pt;}
.ls23{letter-spacing:31.360000pt;}
.ls15{letter-spacing:32.271360pt;}
.ls16{letter-spacing:34.191360pt;}
.ls13{letter-spacing:35.471360pt;}
.ls30{letter-spacing:41.871360pt;}
.ls10{letter-spacing:43.151360pt;}
.ls1b{letter-spacing:52.751360pt;}
.ws12{word-spacing:-58.880000pt;}
.ws3{word-spacing:-53.120000pt;}
.ws1f{word-spacing:-25.766400pt;}
.wsa{word-spacing:-25.522133pt;}
.ws0{word-spacing:-16.000000pt;}
.ws20{word-spacing:-15.632000pt;}
.wsd{word-spacing:-15.224533pt;}
.ws18{word-spacing:-15.126933pt;}
.ws6{word-spacing:-14.991467pt;}
.ws16{word-spacing:-14.953067pt;}
.ws15{word-spacing:-14.855467pt;}
.wsc{word-spacing:-14.817067pt;}
.ws21{word-spacing:-14.791467pt;}
.ws5{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.622933pt;}
.ws19{word-spacing:-14.486933pt;}
.ws13{word-spacing:-14.448533pt;}
.wse{word-spacing:-14.351467pt;}
.wsb{word-spacing:-14.313067pt;}
.ws14{word-spacing:-14.176000pt;}
.ws10{word-spacing:-14.080000pt;}
.ws1a{word-spacing:-13.845333pt;}
.ws1d{word-spacing:-13.712000pt;}
.wsf{word-spacing:-13.674667pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1e{word-spacing:-13.536000pt;}
.ws11{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws1b{word-spacing:-13.168000pt;}
.ws9{word-spacing:-12.953600pt;}
.ws8{word-spacing:-12.000000pt;}
.ws22{word-spacing:-11.818667pt;}
.ws4{word-spacing:-9.280000pt;}
.ws1c{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._21{margin-left:-4.180480pt;}
._24{margin-left:-3.169280pt;}
._22{margin-left:-2.054827pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.226667pt;}
._3{width:2.116267pt;}
._2{width:3.269120pt;}
._12{width:4.956160pt;}
._4{width:6.182400pt;}
._5{width:7.873707pt;}
._18{width:9.126400pt;}
._1f{width:10.091520pt;}
._25{width:11.186987pt;}
._b{width:12.718080pt;}
._8{width:13.742080pt;}
._1e{width:15.853440pt;}
._1d{width:17.265707pt;}
._13{width:18.193920pt;}
._20{width:19.232427pt;}
._2f{width:20.290987pt;}
._26{width:21.373440pt;}
._d{width:22.277120pt;}
._a{width:23.257600pt;}
._23{width:24.321280pt;}
._c{width:25.244160pt;}
._6{width:26.152107pt;}
._7{width:27.402240pt;}
._14{width:29.025280pt;}
._15{width:29.969920pt;}
._16{width:31.029760pt;}
._17{width:32.053760pt;}
._2c{width:33.832960pt;}
._2a{width:34.920960pt;}
._2b{width:36.250027pt;}
._2e{width:37.977600pt;}
._e{width:39.449600pt;}
._f{width:40.431787pt;}
._10{width:41.451520pt;}
._11{width:42.851840pt;}
._9{width:44.101120pt;}
._1a{width:45.690880pt;}
._19{width:46.597120pt;}
._37{width:47.751680pt;}
._38{width:48.744960pt;}
._31{width:50.572800pt;}
._1c{width:52.085760pt;}
._1b{width:53.191680pt;}
._36{width:55.723520pt;}
._3c{width:56.690773pt;}
._34{width:58.011307pt;}
._2d{width:58.913707pt;}
._29{width:60.740267pt;}
._28{width:62.169600pt;}
._33{width:63.924480pt;}
._32{width:64.967680pt;}
._35{width:66.116267pt;}
._30{width:67.064320pt;}
._27{width:75.461120pt;}
._3a{width:84.202240pt;}
._3b{width:85.317120pt;}
._39{width:86.488747pt;}
._42{width:99.665920pt;}
._3f{width:134.907307pt;}
._3e{width:156.731733pt;}
._40{width:161.421227pt;}
._41{width:416.920107pt;}
._3d{width:1353.258027pt;}
.fs3{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:117.120000pt;}
.yd{bottom:-11.680000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.680000pt;}
.y35{bottom:8.960000pt;}
.y39{bottom:9.594667pt;}
.y9{bottom:9.600000pt;}
.yc8{bottom:12.000000pt;}
.ycc{bottom:12.026667pt;}
.yc6{bottom:12.160000pt;}
.y102{bottom:12.480000pt;}
.y10c{bottom:12.640000pt;}
.yfd{bottom:12.800000pt;}
.y101{bottom:13.120000pt;}
.y106{bottom:13.280000pt;}
.y12e{bottom:13.600000pt;}
.y126{bottom:15.840000pt;}
.yb{bottom:18.880000pt;}
.y34{bottom:23.520000pt;}
.y7{bottom:29.120000pt;}
.y33{bottom:37.920000pt;}
.yfb{bottom:38.080000pt;}
.yff{bottom:38.400000pt;}
.y10a{bottom:38.560000pt;}
.y104{bottom:38.720000pt;}
.y125{bottom:42.560000pt;}
.y36{bottom:43.040000pt;}
.y37{bottom:43.200000pt;}
.y6{bottom:44.640000pt;}
.y8{bottom:47.360000pt;}
.y32{bottom:52.000000pt;}
.y124{bottom:67.840000pt;}
.y2e{bottom:71.552000pt;}
.y109{bottom:84.992000pt;}
.y65{bottom:85.952000pt;}
.y82{bottom:87.872000pt;}
.y11b{bottom:88.992000pt;}
.y110{bottom:92.832000pt;}
.y5d{bottom:93.152000pt;}
.y2d{bottom:96.832000pt;}
.ya4{bottom:102.752000pt;}
.ydc{bottom:105.792000pt;}
.y64{bottom:111.232000pt;}
.y10b{bottom:111.552000pt;}
.yd5{bottom:112.352000pt;}
.y81{bottom:113.152000pt;}
.y11a{bottom:114.272000pt;}
.yba{bottom:116.352000pt;}
.y5c{bottom:118.432000pt;}
.y2c{bottom:122.112000pt;}
.y38{bottom:126.272000pt;}
.y122{bottom:128.832000pt;}
.ya3{bottom:129.152000pt;}
.ydb{bottom:131.072000pt;}
.y63{bottom:136.506667pt;}
.y107{bottom:137.466667pt;}
.yd4{bottom:137.626667pt;}
.y80{bottom:138.426667pt;}
.y119{bottom:139.546667pt;}
.yb9{bottom:141.626667pt;}
.y5b{bottom:143.706667pt;}
.y2b{bottom:147.386667pt;}
.ya2{bottom:155.386667pt;}
.yda{bottom:156.666667pt;}
.y121{bottom:160.826667pt;}
.y62{bottom:161.786667pt;}
.yd3{bottom:162.586667pt;}
.y108{bottom:163.546667pt;}
.y7f{bottom:163.866667pt;}
.y118{bottom:164.506667pt;}
.yb8{bottom:166.586667pt;}
.y5a{bottom:168.986667pt;}
.y2a{bottom:172.826667pt;}
.yd9{bottom:178.426667pt;}
.ya1{bottom:181.786667pt;}
.y61{bottom:187.066667pt;}
.yd2{bottom:188.186667pt;}
.y7e{bottom:189.146667pt;}
.y103{bottom:189.466667pt;}
.y117{bottom:190.106667pt;}
.yb7{bottom:191.866667pt;}
.y120{bottom:192.186667pt;}
.y59{bottom:194.426667pt;}
.y29{bottom:198.106667pt;}
.y12d{bottom:205.466667pt;}
.ya0{bottom:207.066667pt;}
.y60{bottom:208.986667pt;}
.yd1{bottom:210.106667pt;}
.y7d{bottom:214.426667pt;}
.y105{bottom:215.386667pt;}
.y116{bottom:215.546667pt;}
.yb6{bottom:217.466667pt;}
.y58{bottom:219.706667pt;}
.y28{bottom:223.386667pt;}
.y12c{bottom:232.986667pt;}
.y9f{bottom:233.466667pt;}
.y7c{bottom:239.706667pt;}
.y115{bottom:241.946667pt;}
.yfe{bottom:242.106667pt;}
.yb5{bottom:242.906667pt;}
.y57{bottom:244.986667pt;}
.y27{bottom:248.666667pt;}
.y12b{bottom:258.906667pt;}
.y9e{bottom:259.866667pt;}
.y7b{bottom:264.986667pt;}
.yb4{bottom:268.186667pt;}
.y100{bottom:268.506667pt;}
.y56{bottom:270.266667pt;}
.y26{bottom:273.946667pt;}
.y12a{bottom:284.866667pt;}
.y9d{bottom:286.146667pt;}
.y7a{bottom:290.466667pt;}
.yb3{bottom:293.506667pt;}
.yfa{bottom:294.466667pt;}
.y55{bottom:295.586667pt;}
.y25{bottom:299.266667pt;}
.y129{bottom:310.946667pt;}
.y9c{bottom:312.386667pt;}
.y79{bottom:316.706667pt;}
.yb2{bottom:318.786667pt;}
.yfc{bottom:320.546667pt;}
.y54{bottom:320.866667pt;}
.y24{bottom:324.546667pt;}
.y128{bottom:336.866667pt;}
.y9b{bottom:337.826667pt;}
.y78{bottom:341.986667pt;}
.yb1{bottom:344.066667pt;}
.y114{bottom:344.226667pt;}
.y53{bottom:346.146667pt;}
.y23{bottom:349.826667pt;}
.yf9{bottom:358.466667pt;}
.yd8{bottom:360.706667pt;}
.y127{bottom:362.786667pt;}
.y9a{bottom:363.106667pt;}
.y77{bottom:368.386667pt;}
.yb0{bottom:369.026667pt;}
.y113{bottom:370.466667pt;}
.y52{bottom:371.426667pt;}
.y22{bottom:375.106667pt;}
.ye7{bottom:383.746667pt;}
.yd7{bottom:385.986667pt;}
.y99{bottom:388.386667pt;}
.y123{bottom:388.706667pt;}
.y76{bottom:394.626667pt;}
.y112{bottom:395.746667pt;}
.y51{bottom:396.706667pt;}
.y21{bottom:400.546667pt;}
.ye6{bottom:409.026667pt;}
.yd0{bottom:411.266667pt;}
.y98{bottom:413.666667pt;}
.yf8{bottom:413.826667pt;}
.y75{bottom:419.906667pt;}
.y111{bottom:421.826667pt;}
.y50{bottom:422.146667pt;}
.y30{bottom:425.506667pt;}
.y20{bottom:425.826667pt;}
.ye5{bottom:434.306667pt;}
.ycf{bottom:436.546667pt;}
.y97{bottom:438.946667pt;}
.yf7{bottom:439.106667pt;}
.y74{bottom:445.186667pt;}
.y11d{bottom:447.106667pt;}
.y4f{bottom:447.426667pt;}
.y1f{bottom:451.106667pt;}
.ye4{bottom:459.746667pt;}
.yce{bottom:461.826667pt;}
.y96{bottom:464.226667pt;}
.yf6{bottom:464.546667pt;}
.y73{bottom:470.626667pt;}
.y11c{bottom:472.386667pt;}
.y4e{bottom:472.706667pt;}
.y1e{bottom:476.386667pt;}
.ye3{bottom:485.026667pt;}
.ycd{bottom:486.786667pt;}
.yd6{bottom:487.106667pt;}
.y95{bottom:489.506667pt;}
.yf5{bottom:489.826667pt;}
.y11f{bottom:493.506667pt;}
.y72{bottom:495.906667pt;}
.y10e{bottom:497.666667pt;}
.y4d{bottom:497.986667pt;}
.ycb{bottom:501.026667pt;}
.y1d{bottom:501.666667pt;}
.ye2{bottom:510.013333pt;}
.y94{bottom:514.813333pt;}
.yf4{bottom:515.133333pt;}
.y11e{bottom:515.773333pt;}
.y71{bottom:521.213333pt;}
.y10d{bottom:522.973333pt;}
.y4c{bottom:523.293333pt;}
.y1c{bottom:526.973333pt;}
.yca{bottom:527.133333pt;}
.ye1{bottom:535.613333pt;}
.y93{bottom:540.093333pt;}
.yf3{bottom:540.413333pt;}
.y70{bottom:546.493333pt;}
.y4b{bottom:548.573333pt;}
.y1b{bottom:552.253333pt;}
.yc9{bottom:553.053333pt;}
.ye0{bottom:560.893333pt;}
.y92{bottom:565.533333pt;}
.yf2{bottom:565.693333pt;}
.y6f{bottom:571.773333pt;}
.y4a{bottom:573.853333pt;}
.y1a{bottom:577.533333pt;}
.yc7{bottom:578.973333pt;}
.ydf{bottom:582.653333pt;}
.y91{bottom:590.813333pt;}
.yf1{bottom:590.973333pt;}
.y6e{bottom:597.053333pt;}
.y49{bottom:599.133333pt;}
.y19{bottom:602.973333pt;}
.yc5{bottom:604.893333pt;}
.y90{bottom:616.093333pt;}
.yf0{bottom:616.253333pt;}
.y6d{bottom:622.333333pt;}
.y10f{bottom:624.093333pt;}
.y48{bottom:624.413333pt;}
.y18{bottom:628.253333pt;}
.y8f{bottom:641.373333pt;}
.yef{bottom:641.533333pt;}
.yc4{bottom:642.973333pt;}
.y6c{bottom:647.613333pt;}
.y47{bottom:649.853333pt;}
.y17{bottom:653.533333pt;}
.y8e{bottom:666.653333pt;}
.yee{bottom:666.813333pt;}
.yc0{bottom:668.253333pt;}
.yaf{bottom:672.733333pt;}
.y6b{bottom:673.053333pt;}
.y46{bottom:675.133333pt;}
.y16{bottom:678.493333pt;}
.y2f{bottom:678.813333pt;}
.y8d{bottom:691.933333pt;}
.yed{bottom:692.253333pt;}
.ybf{bottom:693.533333pt;}
.y6a{bottom:698.333333pt;}
.yc3{bottom:700.253333pt;}
.y45{bottom:700.413333pt;}
.y15{bottom:706.013333pt;}
.y8c{bottom:717.213333pt;}
.yec{bottom:717.533333pt;}
.ybe{bottom:718.813333pt;}
.y69{bottom:723.613333pt;}
.y44{bottom:725.693333pt;}
.y14{bottom:731.493333pt;}
.yeb{bottom:742.533333pt;}
.y8b{bottom:742.693333pt;}
.ybd{bottom:744.133333pt;}
.yae{bottom:748.933333pt;}
.y68{bottom:749.893333pt;}
.y5f{bottom:750.693333pt;}
.y43{bottom:751.013333pt;}
.y13{bottom:756.773333pt;}
.yea{bottom:768.133333pt;}
.y8a{bottom:769.093333pt;}
.yad{bottom:774.213333pt;}
.y67{bottom:775.333333pt;}
.yc2{bottom:775.973333pt;}
.y42{bottom:776.293333pt;}
.y12{bottom:782.053333pt;}
.ye9{bottom:793.413333pt;}
.ybc{bottom:794.693333pt;}
.y89{bottom:795.333333pt;}
.yac{bottom:799.493333pt;}
.y66{bottom:801.253333pt;}
.y41{bottom:801.573333pt;}
.y11{bottom:807.333333pt;}
.ye8{bottom:815.173333pt;}
.ybb{bottom:816.613333pt;}
.y88{bottom:821.733333pt;}
.yc1{bottom:823.333333pt;}
.yab{bottom:824.773333pt;}
.y40{bottom:826.853333pt;}
.y10{bottom:837.893333pt;}
.y87{bottom:847.973333pt;}
.yaa{bottom:850.053333pt;}
.y3f{bottom:852.133333pt;}
.yf{bottom:857.573333pt;}
.y86{bottom:873.413333pt;}
.ya9{bottom:875.333333pt;}
.y3e{bottom:877.573333pt;}
.ye{bottom:882.853333pt;}
.y85{bottom:899.813333pt;}
.ya8{bottom:900.773333pt;}
.y5{bottom:901.573333pt;}
.y5e{bottom:902.533333pt;}
.y3d{bottom:902.853333pt;}
.y4{bottom:919.333333pt;}
.ya7{bottom:925.733333pt;}
.y84{bottom:926.053333pt;}
.y3c{bottom:928.133333pt;}
.y3{bottom:936.933333pt;}
.ya6{bottom:951.333333pt;}
.y83{bottom:952.480000pt;}
.y2{bottom:952.960000pt;}
.yde{bottom:953.120000pt;}
.y3b{bottom:953.440000pt;}
.y1{bottom:967.680000pt;}
.ya5{bottom:977.760000pt;}
.ydd{bottom:978.400000pt;}
.y3a{bottom:978.720000pt;}
.ya{bottom:997.600000pt;}
.y31{bottom:1005.760000pt;}
.h15{height:25.280000pt;}
.h16{height:25.312000pt;}
.h14{height:25.440000pt;}
.h19{height:25.760000pt;}
.h1d{height:25.920000pt;}
.h1b{height:26.080000pt;}
.h22{height:26.880000pt;}
.h6{height:31.200000pt;}
.h9{height:36.667500pt;}
.h13{height:41.112500pt;}
.h1{height:44.648750pt;}
.h1f{height:44.768125pt;}
.hc{height:47.085938pt;}
.hb{height:47.742188pt;}
.hd{height:49.148438pt;}
.h17{height:51.360000pt;}
.h18{height:51.712000pt;}
.h1c{height:51.840000pt;}
.h1a{height:52.000000pt;}
.h3{height:52.108438pt;}
.h7{height:53.535000pt;}
.h11{height:53.937500pt;}
.h21{height:57.758750pt;}
.ha{height:57.787500pt;}
.h8{height:59.340000pt;}
.h12{height:60.519362pt;}
.h2{height:64.500000pt;}
.h5{height:64.500023pt;}
.h20{height:81.120000pt;}
.h10{height:97.600000pt;}
.h1e{height:98.705644pt;}
.hf{height:98.705649pt;}
.h4{height:148.666667pt;}
.he{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w6{width:19.200000pt;}
.w2{width:21.280000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.wc{width:71.040000pt;}
.wd{width:73.472000pt;}
.w15{width:77.632000pt;}
.w17{width:78.560000pt;}
.w14{width:79.200000pt;}
.w16{width:85.440000pt;}
.w12{width:95.200000pt;}
.wf{width:98.112000pt;}
.w11{width:105.792000pt;}
.w10{width:119.712000pt;}
.we{width:155.840000pt;}
.wa{width:201.626667pt;}
.wb{width:218.626667pt;}
.w8{width:236.666667pt;}
.w9{width:236.826667pt;}
.w7{width:247.906667pt;}
.w3{width:296.706667pt;}
.w13{width:401.373333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x22{left:4.480000pt;}
.xf{left:8.000000pt;}
.x7{left:9.600000pt;}
.x1d{left:12.000000pt;}
.x1c{left:12.960000pt;}
.x5{left:15.040000pt;}
.x1b{left:16.000000pt;}
.x11{left:19.040000pt;}
.xa{left:28.160000pt;}
.x3{left:47.999988pt;}
.xc{left:71.999988pt;}
.x1{left:128.191988pt;}
.x1a{left:154.426667pt;}
.x2{left:155.386655pt;}
.x15{left:250.266667pt;}
.x10{left:296.866667pt;}
.x19{left:349.186667pt;}
.xe{left:387.426655pt;}
.x8{left:434.653321pt;}
.x14{left:444.253321pt;}
.x1e{left:449.373333pt;}
.xd{left:458.653321pt;}
.x16{left:469.533333pt;}
.x6{left:486.973333pt;}
.x1f{left:528.573333pt;}
.x12{left:534.173333pt;}
.x17{left:541.213333pt;}
.x20{left:606.213333pt;}
.x18{left:615.333333pt;}
.x21{left:691.653333pt;}
.xb{left:759.013321pt;}
.x13{left:773.279988pt;}
.x9{left:774.400000pt;}
.x4{left:778.720000pt;}
}




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