
    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_98fafb439293f86e4ea9e0f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.129000;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_24df244d21d17b35899746fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_784f05fe2fae10f96ae64b4f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_645e4d80ba9d790915c0e594.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.513000;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);}
.v2{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.702000px;}
.v1{vertical-align:31.242000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.984700px;}
.ls3{letter-spacing:2.988600px;}
.ls0{letter-spacing:2.990700px;}
.ls5{letter-spacing:4.841824px;}
.ls6{letter-spacing:23.730913px;}
.ls2{letter-spacing:24.506700px;}
.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;}
}
.ws2f{word-spacing:-14.943900px;}
.ws53{word-spacing:-3.466985px;}
.ws54{word-spacing:-3.407209px;}
.ws60{word-spacing:-2.749678px;}
.ws5f{word-spacing:-2.689902px;}
.ws80{word-spacing:-2.510575px;}
.ws7f{word-spacing:-2.450800px;}
.ws35{word-spacing:-2.271473px;}
.ws36{word-spacing:-2.211697px;}
.ws3b{word-spacing:-2.151922px;}
.ws3a{word-spacing:-2.092146px;}
.ws26{word-spacing:-2.032370px;}
.ws59{word-spacing:-1.793268px;}
.ws48{word-spacing:-1.673717px;}
.ws28{word-spacing:-1.613941px;}
.ws6c{word-spacing:-1.494390px;}
.ws5a{word-spacing:-1.434614px;}
.ws6f{word-spacing:-1.374839px;}
.ws58{word-spacing:-1.315063px;}
.ws42{word-spacing:-1.255288px;}
.ws89{word-spacing:-1.195512px;}
.ws4f{word-spacing:-1.135736px;}
.ws44{word-spacing:-1.075961px;}
.ws4b{word-spacing:-0.956410px;}
.ws2c{word-spacing:-0.896634px;}
.ws4c{word-spacing:-0.836858px;}
.ws5{word-spacing:-0.777083px;}
.ws6b{word-spacing:-0.717307px;}
.ws71{word-spacing:-0.657532px;}
.ws87{word-spacing:-0.597756px;}
.ws2{word-spacing:-0.537980px;}
.ws39{word-spacing:-0.478205px;}
.ws4e{word-spacing:-0.418429px;}
.ws8{word-spacing:-0.358654px;}
.ws18{word-spacing:-0.298878px;}
.wsd{word-spacing:-0.239102px;}
.ws3c{word-spacing:-0.179327px;}
.ws3d{word-spacing:-0.119551px;}
.ws40{word-spacing:-0.059776px;}
.ws0{word-spacing:0.000000px;}
.ws49{word-spacing:0.059776px;}
.ws20{word-spacing:0.119551px;}
.ws13{word-spacing:0.179327px;}
.ws2d{word-spacing:0.239102px;}
.ws67{word-spacing:0.298878px;}
.wsb{word-spacing:0.358654px;}
.ws81{word-spacing:0.418429px;}
.ws73{word-spacing:0.478205px;}
.ws25{word-spacing:0.537980px;}
.ws38{word-spacing:0.597756px;}
.ws7e{word-spacing:0.657532px;}
.ws27{word-spacing:0.717307px;}
.ws79{word-spacing:0.777083px;}
.ws4a{word-spacing:0.836858px;}
.ws41{word-spacing:0.896634px;}
.ws62{word-spacing:0.956410px;}
.ws1d{word-spacing:1.016185px;}
.ws50{word-spacing:1.075961px;}
.ws1a{word-spacing:1.135736px;}
.ws1e{word-spacing:1.195512px;}
.ws6{word-spacing:1.255288px;}
.ws7a{word-spacing:1.315063px;}
.ws55{word-spacing:1.374839px;}
.ws63{word-spacing:1.434614px;}
.ws1f{word-spacing:1.554166px;}
.ws37{word-spacing:1.613941px;}
.ws16{word-spacing:1.673717px;}
.ws19{word-spacing:1.733492px;}
.ws11{word-spacing:1.793268px;}
.ws45{word-spacing:1.853044px;}
.ws22{word-spacing:1.912819px;}
.ws3{word-spacing:1.972595px;}
.ws2e{word-spacing:2.032370px;}
.ws9{word-spacing:2.092146px;}
.ws23{word-spacing:2.211697px;}
.ws47{word-spacing:2.271473px;}
.ws29{word-spacing:2.331248px;}
.ws2b{word-spacing:2.391024px;}
.ws88{word-spacing:2.450800px;}
.ws43{word-spacing:2.510575px;}
.ws7c{word-spacing:2.570351px;}
.ws1b{word-spacing:2.689902px;}
.ws5e{word-spacing:2.749678px;}
.ws86{word-spacing:2.809453px;}
.ws78{word-spacing:2.869229px;}
.ws14{word-spacing:2.929004px;}
.ws17{word-spacing:3.048556px;}
.ws6a{word-spacing:3.108331px;}
.wse{word-spacing:3.168107px;}
.ws4d{word-spacing:3.227882px;}
.ws65{word-spacing:3.287658px;}
.ws1c{word-spacing:3.347434px;}
.ws46{word-spacing:3.407209px;}
.ws10{word-spacing:3.466985px;}
.wsf{word-spacing:3.526760px;}
.ws21{word-spacing:3.586536px;}
.ws74{word-spacing:3.646312px;}
.ws12{word-spacing:3.706087px;}
.ws3f{word-spacing:3.885414px;}
.ws24{word-spacing:3.945190px;}
.ws8b{word-spacing:4.004965px;}
.ws7d{word-spacing:4.064741px;}
.ws34{word-spacing:4.124516px;}
.ws75{word-spacing:4.184292px;}
.ws32{word-spacing:4.244068px;}
.ws2a{word-spacing:4.303843px;}
.ws8c{word-spacing:4.363619px;}
.ws72{word-spacing:4.423394px;}
.ws4{word-spacing:4.483170px;}
.ws8a{word-spacing:4.602721px;}
.ws77{word-spacing:4.662497px;}
.ws64{word-spacing:4.722272px;}
.ws85{word-spacing:4.782048px;}
.ws5c{word-spacing:4.841824px;}
.ws70{word-spacing:4.901599px;}
.ws5b{word-spacing:4.961375px;}
.ws57{word-spacing:5.021150px;}
.ws66{word-spacing:5.080926px;}
.ws61{word-spacing:5.140702px;}
.ws7b{word-spacing:5.379804px;}
.ws76{word-spacing:5.439580px;}
.ws5d{word-spacing:5.499355px;}
.ws3e{word-spacing:5.618906px;}
.ws69{word-spacing:5.738458px;}
.ws68{word-spacing:5.798233px;}
.wsa{word-spacing:5.917784px;}
.ws33{word-spacing:6.216662px;}
.ws15{word-spacing:6.455765px;}
.ws56{word-spacing:6.515540px;}
.ws30{word-spacing:6.635092px;}
.ws6e{word-spacing:7.113296px;}
.ws84{word-spacing:7.232848px;}
.ws7{word-spacing:7.591501px;}
.ws52{word-spacing:7.711052px;}
.ws82{word-spacing:7.830604px;}
.ws83{word-spacing:7.890379px;}
.ws6d{word-spacing:8.129482px;}
.ws51{word-spacing:8.547911px;}
.ws31{word-spacing:8.787013px;}
.wsc{word-spacing:8.966340px;}
.ws1{word-spacing:13.395802px;}
.ws8d{word-spacing:20.896833px;}
._5{margin-left:-6.599270px;}
._7{margin-left:-4.782048px;}
._3{margin-left:-3.496896px;}
._1{margin-left:-2.065848px;}
._4{margin-left:-1.000661px;}
._d{width:8.268104px;}
._c{width:9.664576px;}
._15{width:12.313774px;}
._17{width:13.692226px;}
._9{width:15.455582px;}
._14{width:16.524364px;}
._8{width:18.291334px;}
._6{width:19.520323px;}
._b{width:20.536508px;}
._13{width:21.791796px;}
._12{width:23.790689px;}
._a{width:25.225303px;}
._2{width:26.683932px;}
._10{width:28.214083px;}
._11{width:29.971530px;}
._0{width:32.020644px;}
._e{width:33.175458px;}
._19{width:34.789399px;}
._f{width:35.805584px;}
._16{width:37.105123px;}
._1a{width:41.218866px;}
._18{width:44.805402px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs7{font-size:44.233800px;}
.fs4{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y63{bottom:109.389000px;}
.y2d{bottom:109.390500px;}
.y93{bottom:126.574500px;}
.yf7{bottom:126.576000px;}
.y62{bottom:127.323000px;}
.y2c{bottom:128.068500px;}
.y12a{bottom:128.220000px;}
.yc3{bottom:131.802000px;}
.y92{bottom:143.760000px;}
.y18d{bottom:143.761500px;}
.yf6{bottom:143.872500px;}
.y61{bottom:144.508500px;}
.y2b{bottom:145.254000px;}
.y129{bottom:145.405500px;}
.yc2{bottom:148.987500px;}
.y91{bottom:160.945500px;}
.y15c{bottom:160.947000px;}
.yf5{bottom:161.170500px;}
.y60{bottom:161.694000px;}
.y2a{bottom:162.439500px;}
.y128{bottom:164.235000px;}
.yc1{bottom:166.174500px;}
.y90{bottom:178.131000px;}
.y18c{bottom:178.132500px;}
.yf4{bottom:178.356000px;}
.y15b{bottom:179.679000px;}
.y29{bottom:181.117500px;}
.y5f{bottom:181.174500px;}
.y127{bottom:181.420500px;}
.yc0{bottom:183.360000px;}
.yf3{bottom:195.541500px;}
.y8f{bottom:195.679500px;}
.y18b{bottom:196.323000px;}
.y15a{bottom:196.866000px;}
.y28{bottom:198.303000px;}
.y5e{bottom:198.360000px;}
.y126{bottom:198.606000px;}
.ybf{bottom:200.545500px;}
.yf2{bottom:212.838000px;}
.y8e{bottom:212.865000px;}
.y18a{bottom:213.508500px;}
.y159{bottom:214.051500px;}
.y27{bottom:215.488500px;}
.y5d{bottom:215.545500px;}
.y125{bottom:217.435500px;}
.ybe{bottom:217.731000px;}
.yf1{bottom:230.023500px;}
.y8d{bottom:230.050500px;}
.y158{bottom:231.237000px;}
.y189{bottom:231.700500px;}
.y26{bottom:232.674000px;}
.y5c{bottom:232.731000px;}
.y124{bottom:234.621000px;}
.ybd{bottom:240.142500px;}
.yf0{bottom:247.209000px;}
.y8c{bottom:247.236000px;}
.y157{bottom:248.422500px;}
.y188{bottom:248.886000px;}
.y25{bottom:249.859500px;}
.y5b{bottom:250.665000px;}
.y123{bottom:253.450500px;}
.ybc{bottom:262.555500px;}
.yef{bottom:264.394500px;}
.y8b{bottom:264.421500px;}
.y187{bottom:266.071500px;}
.y5a{bottom:267.850500px;}
.y24{bottom:268.539000px;}
.y122{bottom:270.636000px;}
.y156{bottom:276.409500px;}
.y8a{bottom:281.607000px;}
.yee{bottom:281.692500px;}
.y186{bottom:283.257000px;}
.ybb{bottom:284.968500px;}
.y59{bottom:285.036000px;}
.y23{bottom:287.217000px;}
.y121{bottom:287.821500px;}
.y155{bottom:293.596500px;}
.yed{bottom:298.878000px;}
.y89{bottom:299.155500px;}
.y185{bottom:300.442500px;}
.y58{bottom:302.970000px;}
.y22{bottom:304.402500px;}
.y120{bottom:305.007000px;}
.yba{bottom:307.381500px;}
.y154{bottom:310.783500px;}
.yec{bottom:316.063500px;}
.y88{bottom:316.341000px;}
.y184{bottom:317.628000px;}
.y57{bottom:320.155500px;}
.y11f{bottom:322.192500px;}
.y21{bottom:323.080500px;}
.yb9{bottom:324.567000px;}
.y153{bottom:327.969000px;}
.yeb{bottom:333.249000px;}
.y87{bottom:333.526500px;}
.y183{bottom:334.813500px;}
.y56{bottom:337.341000px;}
.y11e{bottom:339.378000px;}
.y20{bottom:340.266000px;}
.yb8{bottom:341.752500px;}
.y152{bottom:345.154500px;}
.yea{bottom:350.434500px;}
.y86{bottom:350.712000px;}
.y182{bottom:352.000500px;}
.y55{bottom:355.275000px;}
.y1f{bottom:357.451500px;}
.y11d{bottom:358.209000px;}
.yb7{bottom:358.938000px;}
.y151{bottom:362.340000px;}
.ye9{bottom:367.731000px;}
.y85{bottom:368.260500px;}
.y181{bottom:369.186000px;}
.y54{bottom:372.460500px;}
.y1e{bottom:374.637000px;}
.y11c{bottom:375.394500px;}
.yb6{bottom:376.123500px;}
.y150{bottom:379.525500px;}
.ye8{bottom:385.029000px;}
.y84{bottom:385.446000px;}
.y180{bottom:386.371500px;}
.y53{bottom:389.646000px;}
.y11b{bottom:392.580000px;}
.y1d{bottom:393.316500px;}
.y14f{bottom:396.711000px;}
.yb5{bottom:398.536500px;}
.ye7{bottom:402.214500px;}
.y83{bottom:402.631500px;}
.y17f{bottom:406.108500px;}
.y52{bottom:406.831500px;}
.y1c{bottom:410.502000px;}
.y14e{bottom:413.898000px;}
.yb4{bottom:415.722000px;}
.ye6{bottom:419.400000px;}
.y82{bottom:420.180000px;}
.y11a{bottom:422.209500px;}
.y17e{bottom:423.294000px;}
.y51{bottom:424.017000px;}
.y1b{bottom:427.687500px;}
.y14d{bottom:431.083500px;}
.yb3{bottom:432.907500px;}
.ye5{bottom:436.585500px;}
.y81{bottom:437.365500px;}
.y119{bottom:439.395000px;}
.y17d{bottom:440.479500px;}
.y50{bottom:441.202500px;}
.y1a{bottom:444.873000px;}
.y14c{bottom:448.270500px;}
.ye4{bottom:453.771000px;}
.y80{bottom:454.551000px;}
.yb2{bottom:455.319000px;}
.y118{bottom:456.580500px;}
.y17c{bottom:458.671500px;}
.y4f{bottom:459.136500px;}
.y19{bottom:462.058500px;}
.y14b{bottom:465.456000px;}
.ye3{bottom:471.067500px;}
.y7f{bottom:472.099500px;}
.yb1{bottom:472.506000px;}
.y117{bottom:473.766000px;}
.y17b{bottom:475.857000px;}
.y4e{bottom:476.322000px;}
.y18{bottom:480.736500px;}
.y14a{bottom:482.643000px;}
.ye2{bottom:488.253000px;}
.y7e{bottom:489.648000px;}
.yb0{bottom:489.691500px;}
.y116{bottom:490.951500px;}
.y4d{bottom:493.507500px;}
.y17a{bottom:495.595500px;}
.y17{bottom:499.414500px;}
.y149{bottom:499.828500px;}
.ye1{bottom:505.440000px;}
.y7d{bottom:506.833500px;}
.yaf{bottom:506.877000px;}
.y115{bottom:508.137000px;}
.y4c{bottom:510.693000px;}
.y179{bottom:512.781000px;}
.y148{bottom:517.014000px;}
.y16{bottom:518.094000px;}
.ye0{bottom:522.736500px;}
.y7c{bottom:524.019000px;}
.y114{bottom:525.324000px;}
.y4b{bottom:527.880000px;}
.yae{bottom:529.288500px;}
.y178{bottom:530.973000px;}
.y147{bottom:534.199500px;}
.y15{bottom:536.772000px;}
.ydf{bottom:539.922000px;}
.y113{bottom:542.509500px;}
.y7b{bottom:543.114000px;}
.yad{bottom:546.474000px;}
.y177{bottom:550.710000px;}
.y146{bottom:551.385000px;}
.y14{bottom:553.957500px;}
.y4a{bottom:556.614000px;}
.yde{bottom:557.107500px;}
.y112{bottom:559.695000px;}
.y7a{bottom:560.299500px;}
.y176{bottom:567.895500px;}
.y145{bottom:568.570500px;}
.yac{bottom:568.887000px;}
.y13{bottom:572.635500px;}
.y49{bottom:573.799500px;}
.ydd{bottom:574.293000px;}
.y111{bottom:576.880500px;}
.y79{bottom:577.485000px;}
.y175{bottom:585.081000px;}
.y144{bottom:585.756000px;}
.yab{bottom:586.072500px;}
.y48{bottom:590.985000px;}
.y12{bottom:591.315000px;}
.ydc{bottom:591.478500px;}
.y110{bottom:594.066000px;}
.y174{bottom:602.268000px;}
.y143{bottom:602.941500px;}
.yaa{bottom:603.258000px;}
.y11{bottom:608.500500px;}
.ydb{bottom:608.776500px;}
.y47{bottom:608.919000px;}
.y10f{bottom:611.251500px;}
.y78{bottom:616.293000px;}
.y173{bottom:619.453500px;}
.y142{bottom:620.128500px;}
.y10{bottom:625.686000px;}
.yda{bottom:625.962000px;}
.y46{bottom:626.104500px;}
.ya9{bottom:627.217500px;}
.y10e{bottom:630.081000px;}
.y141{bottom:637.314000px;}
.y172{bottom:637.644000px;}
.yd9{bottom:643.147500px;}
.y45{bottom:643.290000px;}
.yf{bottom:644.364000px;}
.ya8{bottom:644.403000px;}
.y10d{bottom:648.910500px;}
.y140{bottom:654.499500px;}
.y171{bottom:655.836000px;}
.yd8{bottom:660.333000px;}
.y44{bottom:660.475500px;}
.ye{bottom:661.549500px;}
.ya7{bottom:661.588500px;}
.y10c{bottom:669.286500px;}
.y13f{bottom:671.685000px;}
.y77{bottom:673.225500px;}
.y170{bottom:674.028000px;}
.yd7{bottom:677.518500px;}
.y43{bottom:677.661000px;}
.yd{bottom:678.735000px;}
.ya6{bottom:678.774000px;}
.y10b{bottom:686.472000px;}
.y13e{bottom:688.870500px;}
.y76{bottom:690.774000px;}
.y16f{bottom:691.213500px;}
.yd6{bottom:694.704000px;}
.y42{bottom:694.846500px;}
.yc{bottom:695.920500px;}
.ya5{bottom:701.187000px;}
.y10a{bottom:703.657500px;}
.y13d{bottom:706.056000px;}
.y75{bottom:708.322500px;}
.y16e{bottom:708.399000px;}
.yd5{bottom:711.889500px;}
.y41{bottom:712.032000px;}
.yb{bottom:714.598500px;}
.y109{bottom:720.843000px;}
.y13c{bottom:723.241500px;}
.ya4{bottom:723.600000px;}
.y16d{bottom:725.584500px;}
.y74{bottom:725.871000px;}
.yd4{bottom:729.186000px;}
.y40{bottom:729.217500px;}
.y108{bottom:738.028500px;}
.y13b{bottom:740.428500px;}
.ya3{bottom:740.785500px;}
.y16c{bottom:742.770000px;}
.y73{bottom:743.056500px;}
.yd3{bottom:746.371500px;}
.y3f{bottom:746.403000px;}
.ya{bottom:754.537500px;}
.y107{bottom:755.214000px;}
.y13a{bottom:757.614000px;}
.y16b{bottom:759.955500px;}
.y72{bottom:760.242000px;}
.ya2{bottom:763.198500px;}
.yd2{bottom:763.557000px;}
.y3e{bottom:764.337000px;}
.y106{bottom:772.399500px;}
.y139{bottom:774.799500px;}
.y16a{bottom:777.141000px;}
.y71{bottom:777.427500px;}
.ya1{bottom:780.384000px;}
.yd1{bottom:780.742500px;}
.y3d{bottom:781.522500px;}
.y105{bottom:789.585000px;}
.y138{bottom:791.986500px;}
.y169{bottom:794.326500px;}
.y70{bottom:794.976000px;}
.ya0{bottom:797.569500px;}
.yd0{bottom:798.040500px;}
.y3c{bottom:798.708000px;}
.y104{bottom:806.770500px;}
.y137{bottom:809.172000px;}
.y168{bottom:811.512000px;}
.y6f{bottom:812.161500px;}
.y9f{bottom:814.755000px;}
.ycf{bottom:815.226000px;}
.y3b{bottom:815.893500px;}
.y103{bottom:823.957500px;}
.y136{bottom:826.357500px;}
.y6e{bottom:829.347000px;}
.y167{bottom:831.250500px;}
.y9e{bottom:831.940500px;}
.yce{bottom:832.411500px;}
.y3a{bottom:833.079000px;}
.y9{bottom:839.005500px;}
.y102{bottom:841.143000px;}
.y135{bottom:843.543000px;}
.y6d{bottom:846.532500px;}
.y166{bottom:848.436000px;}
.y9d{bottom:849.126000px;}
.ycd{bottom:849.597000px;}
.y39{bottom:851.013000px;}
.y8{bottom:856.189500px;}
.y101{bottom:858.328500px;}
.y134{bottom:860.730000px;}
.y6c{bottom:863.718000px;}
.y165{bottom:865.621500px;}
.y9c{bottom:866.311500px;}
.ycc{bottom:866.895000px;}
.y38{bottom:868.198500px;}
.y7{bottom:868.492500px;}
.y193{bottom:872.991000px;}
.y100{bottom:875.514000px;}
.y133{bottom:877.915500px;}
.y6b{bottom:881.266500px;}
.y164{bottom:882.807000px;}
.y9b{bottom:883.497000px;}
.ycb{bottom:884.080500px;}
.y37{bottom:885.384000px;}
.y6{bottom:889.065000px;}
.yff{bottom:892.699500px;}
.y132{bottom:895.101000px;}
.y6a{bottom:898.452000px;}
.y163{bottom:899.992500px;}
.y9a{bottom:900.682500px;}
.yca{bottom:901.266000px;}
.y192{bottom:911.436000px;}
.yfe{bottom:911.529000px;}
.y5{bottom:912.022500px;}
.y131{bottom:912.288000px;}
.y36{bottom:914.118000px;}
.y69{bottom:915.637500px;}
.y99{bottom:917.868000px;}
.yc9{bottom:918.451500px;}
.yfd{bottom:928.714500px;}
.y162{bottom:928.984500px;}
.y130{bottom:929.473500px;}
.y35{bottom:932.052000px;}
.y68{bottom:933.186000px;}
.yc8{bottom:935.637000px;}
.y4{bottom:938.922000px;}
.y98{bottom:940.281000px;}
.yfc{bottom:945.900000px;}
.y12f{bottom:946.659000px;}
.y161{bottom:947.176500px;}
.y34{bottom:949.237500px;}
.y67{bottom:950.371500px;}
.yc7{bottom:952.822500px;}
.y97{bottom:962.692500px;}
.y12e{bottom:963.844500px;}
.y160{bottom:964.362000px;}
.yfb{bottom:964.729500px;}
.y191{bottom:966.373500px;}
.y33{bottom:966.423000px;}
.y66{bottom:967.557000px;}
.yc6{bottom:970.008000px;}
.y96{bottom:979.878000px;}
.y12d{bottom:981.030000px;}
.yfa{bottom:981.915000px;}
.y190{bottom:983.559000px;}
.y15f{bottom:984.100500px;}
.y32{bottom:984.357000px;}
.y65{bottom:985.105500px;}
.y3{bottom:985.246500px;}
.y95{bottom:997.065000px;}
.yc5{bottom:998.106000px;}
.y12c{bottom:998.215500px;}
.yf9{bottom:999.100500px;}
.y18f{bottom:1000.744500px;}
.y15e{bottom:1001.286000px;}
.y31{bottom:1001.542500px;}
.y64{bottom:1002.291000px;}
.y94{bottom:1014.250500px;}
.yc4{bottom:1015.291500px;}
.y12b{bottom:1015.401000px;}
.yf8{bottom:1016.286000px;}
.y18e{bottom:1017.930000px;}
.y2{bottom:1018.123500px;}
.y15d{bottom:1018.471500px;}
.y30{bottom:1019.476500px;}
.y2f{bottom:1036.662000px;}
.y1{bottom:1051.000500px;}
.y2e{bottom:1053.847500px;}
.h4{height:28.787846px;}
.h5{height:36.905702px;}
.h8{height:41.125613px;}
.h9{height:52.046387px;}
.h7{height:55.172879px;}
.h6{height:66.207898px;}
.h2{height:76.274765px;}
.h3{height:76.280765px;}
.h1{height:95.338885px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:108.000000px;}
.x1{left:109.609500px;}
.x6{left:116.628000px;}
.x2{left:133.017000px;}
.x4{left:142.878000px;}
.xa{left:194.976000px;}
.x8{left:210.156000px;}
.xd{left:228.322500px;}
.x9{left:247.881000px;}
.xe{left:287.401500px;}
.xc{left:305.503500px;}
.x3{left:347.451000px;}
.x5{left:381.802500px;}
.x7{left:384.160500px;}
.xf{left:416.335500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.290667pt;}
.v1{vertical-align:27.770667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.653067pt;}
.ls3{letter-spacing:2.656533pt;}
.ls0{letter-spacing:2.658400pt;}
.ls5{letter-spacing:4.303843pt;}
.ls6{letter-spacing:21.094145pt;}
.ls2{letter-spacing:21.783733pt;}
.ws2f{word-spacing:-13.283467pt;}
.ws53{word-spacing:-3.081764pt;}
.ws54{word-spacing:-3.028630pt;}
.ws60{word-spacing:-2.444158pt;}
.ws5f{word-spacing:-2.391024pt;}
.ws80{word-spacing:-2.231622pt;}
.ws7f{word-spacing:-2.178489pt;}
.ws35{word-spacing:-2.019087pt;}
.ws36{word-spacing:-1.965953pt;}
.ws3b{word-spacing:-1.912819pt;}
.ws3a{word-spacing:-1.859685pt;}
.ws26{word-spacing:-1.806551pt;}
.ws59{word-spacing:-1.594016pt;}
.ws48{word-spacing:-1.487748pt;}
.ws28{word-spacing:-1.434614pt;}
.ws6c{word-spacing:-1.328347pt;}
.ws5a{word-spacing:-1.275213pt;}
.ws6f{word-spacing:-1.222079pt;}
.ws58{word-spacing:-1.168945pt;}
.ws42{word-spacing:-1.115811pt;}
.ws89{word-spacing:-1.062677pt;}
.ws4f{word-spacing:-1.009543pt;}
.ws44{word-spacing:-0.956410pt;}
.ws4b{word-spacing:-0.850142pt;}
.ws2c{word-spacing:-0.797008pt;}
.ws4c{word-spacing:-0.743874pt;}
.ws5{word-spacing:-0.690740pt;}
.ws6b{word-spacing:-0.637606pt;}
.ws71{word-spacing:-0.584473pt;}
.ws87{word-spacing:-0.531339pt;}
.ws2{word-spacing:-0.478205pt;}
.ws39{word-spacing:-0.425071pt;}
.ws4e{word-spacing:-0.371937pt;}
.ws8{word-spacing:-0.318803pt;}
.ws18{word-spacing:-0.265669pt;}
.wsd{word-spacing:-0.212535pt;}
.ws3c{word-spacing:-0.159402pt;}
.ws3d{word-spacing:-0.106268pt;}
.ws40{word-spacing:-0.053134pt;}
.ws0{word-spacing:0.000000pt;}
.ws49{word-spacing:0.053134pt;}
.ws20{word-spacing:0.106268pt;}
.ws13{word-spacing:0.159402pt;}
.ws2d{word-spacing:0.212535pt;}
.ws67{word-spacing:0.265669pt;}
.wsb{word-spacing:0.318803pt;}
.ws81{word-spacing:0.371937pt;}
.ws73{word-spacing:0.425071pt;}
.ws25{word-spacing:0.478205pt;}
.ws38{word-spacing:0.531339pt;}
.ws7e{word-spacing:0.584473pt;}
.ws27{word-spacing:0.637606pt;}
.ws79{word-spacing:0.690740pt;}
.ws4a{word-spacing:0.743874pt;}
.ws41{word-spacing:0.797008pt;}
.ws62{word-spacing:0.850142pt;}
.ws1d{word-spacing:0.903276pt;}
.ws50{word-spacing:0.956410pt;}
.ws1a{word-spacing:1.009543pt;}
.ws1e{word-spacing:1.062677pt;}
.ws6{word-spacing:1.115811pt;}
.ws7a{word-spacing:1.168945pt;}
.ws55{word-spacing:1.222079pt;}
.ws63{word-spacing:1.275213pt;}
.ws1f{word-spacing:1.381481pt;}
.ws37{word-spacing:1.434614pt;}
.ws16{word-spacing:1.487748pt;}
.ws19{word-spacing:1.540882pt;}
.ws11{word-spacing:1.594016pt;}
.ws45{word-spacing:1.647150pt;}
.ws22{word-spacing:1.700284pt;}
.ws3{word-spacing:1.753418pt;}
.ws2e{word-spacing:1.806551pt;}
.ws9{word-spacing:1.859685pt;}
.ws23{word-spacing:1.965953pt;}
.ws47{word-spacing:2.019087pt;}
.ws29{word-spacing:2.072221pt;}
.ws2b{word-spacing:2.125355pt;}
.ws88{word-spacing:2.178489pt;}
.ws43{word-spacing:2.231622pt;}
.ws7c{word-spacing:2.284756pt;}
.ws1b{word-spacing:2.391024pt;}
.ws5e{word-spacing:2.444158pt;}
.ws86{word-spacing:2.497292pt;}
.ws78{word-spacing:2.550426pt;}
.ws14{word-spacing:2.603559pt;}
.ws17{word-spacing:2.709827pt;}
.ws6a{word-spacing:2.762961pt;}
.wse{word-spacing:2.816095pt;}
.ws4d{word-spacing:2.869229pt;}
.ws65{word-spacing:2.922363pt;}
.ws1c{word-spacing:2.975497pt;}
.ws46{word-spacing:3.028630pt;}
.ws10{word-spacing:3.081764pt;}
.wsf{word-spacing:3.134898pt;}
.ws21{word-spacing:3.188032pt;}
.ws74{word-spacing:3.241166pt;}
.ws12{word-spacing:3.294300pt;}
.ws3f{word-spacing:3.453701pt;}
.ws24{word-spacing:3.506835pt;}
.ws8b{word-spacing:3.559969pt;}
.ws7d{word-spacing:3.613103pt;}
.ws34{word-spacing:3.666237pt;}
.ws75{word-spacing:3.719371pt;}
.ws32{word-spacing:3.772505pt;}
.ws2a{word-spacing:3.825638pt;}
.ws8c{word-spacing:3.878772pt;}
.ws72{word-spacing:3.931906pt;}
.ws4{word-spacing:3.985040pt;}
.ws8a{word-spacing:4.091308pt;}
.ws77{word-spacing:4.144442pt;}
.ws64{word-spacing:4.197575pt;}
.ws85{word-spacing:4.250709pt;}
.ws5c{word-spacing:4.303843pt;}
.ws70{word-spacing:4.356977pt;}
.ws5b{word-spacing:4.410111pt;}
.ws57{word-spacing:4.463245pt;}
.ws66{word-spacing:4.516379pt;}
.ws61{word-spacing:4.569513pt;}
.ws7b{word-spacing:4.782048pt;}
.ws76{word-spacing:4.835182pt;}
.ws5d{word-spacing:4.888316pt;}
.ws3e{word-spacing:4.994583pt;}
.ws69{word-spacing:5.100851pt;}
.ws68{word-spacing:5.153985pt;}
.wsa{word-spacing:5.260253pt;}
.ws33{word-spacing:5.525922pt;}
.ws15{word-spacing:5.738458pt;}
.ws56{word-spacing:5.791591pt;}
.ws30{word-spacing:5.897859pt;}
.ws6e{word-spacing:6.322930pt;}
.ws84{word-spacing:6.429198pt;}
.ws7{word-spacing:6.748001pt;}
.ws52{word-spacing:6.854269pt;}
.ws82{word-spacing:6.960537pt;}
.ws83{word-spacing:7.013670pt;}
.ws6d{word-spacing:7.226206pt;}
.ws51{word-spacing:7.598143pt;}
.ws31{word-spacing:7.810678pt;}
.wsc{word-spacing:7.970080pt;}
.ws1{word-spacing:11.907379pt;}
.ws8d{word-spacing:18.574963pt;}
._5{margin-left:-5.866018pt;}
._7{margin-left:-4.250709pt;}
._3{margin-left:-3.108352pt;}
._1{margin-left:-1.836309pt;}
._4{margin-left:-0.889476pt;}
._d{width:7.349426pt;}
._c{width:8.590734pt;}
._15{width:10.945577pt;}
._17{width:12.170867pt;}
._9{width:13.738295pt;}
._14{width:14.688323pt;}
._8{width:16.258963pt;}
._6{width:17.351398pt;}
._b{width:18.254674pt;}
._13{width:19.370485pt;}
._12{width:21.147279pt;}
._a{width:22.422492pt;}
._2{width:23.719051pt;}
._10{width:25.079185pt;}
._11{width:26.641360pt;}
._0{width:28.462795pt;}
._e{width:29.489296pt;}
._19{width:30.923910pt;}
._f{width:31.827186pt;}
._16{width:32.982332pt;}
._1a{width:36.638992pt;}
._18{width:39.827024pt;}
.fs3{font-size:37.193600pt;}
.fs7{font-size:39.318933pt;}
.fs4{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:97.234667pt;}
.y2d{bottom:97.236000pt;}
.y93{bottom:112.510667pt;}
.yf7{bottom:112.512000pt;}
.y62{bottom:113.176000pt;}
.y2c{bottom:113.838667pt;}
.y12a{bottom:113.973333pt;}
.yc3{bottom:117.157333pt;}
.y92{bottom:127.786667pt;}
.y18d{bottom:127.788000pt;}
.yf6{bottom:127.886667pt;}
.y61{bottom:128.452000pt;}
.y2b{bottom:129.114667pt;}
.y129{bottom:129.249333pt;}
.yc2{bottom:132.433333pt;}
.y91{bottom:143.062667pt;}
.y15c{bottom:143.064000pt;}
.yf5{bottom:143.262667pt;}
.y60{bottom:143.728000pt;}
.y2a{bottom:144.390667pt;}
.y128{bottom:145.986667pt;}
.yc1{bottom:147.710667pt;}
.y90{bottom:158.338667pt;}
.y18c{bottom:158.340000pt;}
.yf4{bottom:158.538667pt;}
.y15b{bottom:159.714667pt;}
.y29{bottom:160.993333pt;}
.y5f{bottom:161.044000pt;}
.y127{bottom:161.262667pt;}
.yc0{bottom:162.986667pt;}
.yf3{bottom:173.814667pt;}
.y8f{bottom:173.937333pt;}
.y18b{bottom:174.509333pt;}
.y15a{bottom:174.992000pt;}
.y28{bottom:176.269333pt;}
.y5e{bottom:176.320000pt;}
.y126{bottom:176.538667pt;}
.ybf{bottom:178.262667pt;}
.yf2{bottom:189.189333pt;}
.y8e{bottom:189.213333pt;}
.y18a{bottom:189.785333pt;}
.y159{bottom:190.268000pt;}
.y27{bottom:191.545333pt;}
.y5d{bottom:191.596000pt;}
.y125{bottom:193.276000pt;}
.ybe{bottom:193.538667pt;}
.yf1{bottom:204.465333pt;}
.y8d{bottom:204.489333pt;}
.y158{bottom:205.544000pt;}
.y189{bottom:205.956000pt;}
.y26{bottom:206.821333pt;}
.y5c{bottom:206.872000pt;}
.y124{bottom:208.552000pt;}
.ybd{bottom:213.460000pt;}
.yf0{bottom:219.741333pt;}
.y8c{bottom:219.765333pt;}
.y157{bottom:220.820000pt;}
.y188{bottom:221.232000pt;}
.y25{bottom:222.097333pt;}
.y5b{bottom:222.813333pt;}
.y123{bottom:225.289333pt;}
.ybc{bottom:233.382667pt;}
.yef{bottom:235.017333pt;}
.y8b{bottom:235.041333pt;}
.y187{bottom:236.508000pt;}
.y5a{bottom:238.089333pt;}
.y24{bottom:238.701333pt;}
.y122{bottom:240.565333pt;}
.y156{bottom:245.697333pt;}
.y8a{bottom:250.317333pt;}
.yee{bottom:250.393333pt;}
.y186{bottom:251.784000pt;}
.ybb{bottom:253.305333pt;}
.y59{bottom:253.365333pt;}
.y23{bottom:255.304000pt;}
.y121{bottom:255.841333pt;}
.y155{bottom:260.974667pt;}
.yed{bottom:265.669333pt;}
.y89{bottom:265.916000pt;}
.y185{bottom:267.060000pt;}
.y58{bottom:269.306667pt;}
.y22{bottom:270.580000pt;}
.y120{bottom:271.117333pt;}
.yba{bottom:273.228000pt;}
.y154{bottom:276.252000pt;}
.yec{bottom:280.945333pt;}
.y88{bottom:281.192000pt;}
.y184{bottom:282.336000pt;}
.y57{bottom:284.582667pt;}
.y11f{bottom:286.393333pt;}
.y21{bottom:287.182667pt;}
.yb9{bottom:288.504000pt;}
.y153{bottom:291.528000pt;}
.yeb{bottom:296.221333pt;}
.y87{bottom:296.468000pt;}
.y183{bottom:297.612000pt;}
.y56{bottom:299.858667pt;}
.y11e{bottom:301.669333pt;}
.y20{bottom:302.458667pt;}
.yb8{bottom:303.780000pt;}
.y152{bottom:306.804000pt;}
.yea{bottom:311.497333pt;}
.y86{bottom:311.744000pt;}
.y182{bottom:312.889333pt;}
.y55{bottom:315.800000pt;}
.y1f{bottom:317.734667pt;}
.y11d{bottom:318.408000pt;}
.yb7{bottom:319.056000pt;}
.y151{bottom:322.080000pt;}
.ye9{bottom:326.872000pt;}
.y85{bottom:327.342667pt;}
.y181{bottom:328.165333pt;}
.y54{bottom:331.076000pt;}
.y1e{bottom:333.010667pt;}
.y11c{bottom:333.684000pt;}
.yb6{bottom:334.332000pt;}
.y150{bottom:337.356000pt;}
.ye8{bottom:342.248000pt;}
.y84{bottom:342.618667pt;}
.y180{bottom:343.441333pt;}
.y53{bottom:346.352000pt;}
.y11b{bottom:348.960000pt;}
.y1d{bottom:349.614667pt;}
.y14f{bottom:352.632000pt;}
.yb5{bottom:354.254667pt;}
.ye7{bottom:357.524000pt;}
.y83{bottom:357.894667pt;}
.y17f{bottom:360.985333pt;}
.y52{bottom:361.628000pt;}
.y1c{bottom:364.890667pt;}
.y14e{bottom:367.909333pt;}
.yb4{bottom:369.530667pt;}
.ye6{bottom:372.800000pt;}
.y82{bottom:373.493333pt;}
.y11a{bottom:375.297333pt;}
.y17e{bottom:376.261333pt;}
.y51{bottom:376.904000pt;}
.y1b{bottom:380.166667pt;}
.y14d{bottom:383.185333pt;}
.yb3{bottom:384.806667pt;}
.ye5{bottom:388.076000pt;}
.y81{bottom:388.769333pt;}
.y119{bottom:390.573333pt;}
.y17d{bottom:391.537333pt;}
.y50{bottom:392.180000pt;}
.y1a{bottom:395.442667pt;}
.y14c{bottom:398.462667pt;}
.ye4{bottom:403.352000pt;}
.y80{bottom:404.045333pt;}
.yb2{bottom:404.728000pt;}
.y118{bottom:405.849333pt;}
.y17c{bottom:407.708000pt;}
.y4f{bottom:408.121333pt;}
.y19{bottom:410.718667pt;}
.y14b{bottom:413.738667pt;}
.ye3{bottom:418.726667pt;}
.y7f{bottom:419.644000pt;}
.yb1{bottom:420.005333pt;}
.y117{bottom:421.125333pt;}
.y17b{bottom:422.984000pt;}
.y4e{bottom:423.397333pt;}
.y18{bottom:427.321333pt;}
.y14a{bottom:429.016000pt;}
.ye2{bottom:434.002667pt;}
.y7e{bottom:435.242667pt;}
.yb0{bottom:435.281333pt;}
.y116{bottom:436.401333pt;}
.y4d{bottom:438.673333pt;}
.y17a{bottom:440.529333pt;}
.y17{bottom:443.924000pt;}
.y149{bottom:444.292000pt;}
.ye1{bottom:449.280000pt;}
.y7d{bottom:450.518667pt;}
.yaf{bottom:450.557333pt;}
.y115{bottom:451.677333pt;}
.y4c{bottom:453.949333pt;}
.y179{bottom:455.805333pt;}
.y148{bottom:459.568000pt;}
.y16{bottom:460.528000pt;}
.ye0{bottom:464.654667pt;}
.y7c{bottom:465.794667pt;}
.y114{bottom:466.954667pt;}
.y4b{bottom:469.226667pt;}
.yae{bottom:470.478667pt;}
.y178{bottom:471.976000pt;}
.y147{bottom:474.844000pt;}
.y15{bottom:477.130667pt;}
.ydf{bottom:479.930667pt;}
.y113{bottom:482.230667pt;}
.y7b{bottom:482.768000pt;}
.yad{bottom:485.754667pt;}
.y177{bottom:489.520000pt;}
.y146{bottom:490.120000pt;}
.y14{bottom:492.406667pt;}
.y4a{bottom:494.768000pt;}
.yde{bottom:495.206667pt;}
.y112{bottom:497.506667pt;}
.y7a{bottom:498.044000pt;}
.y176{bottom:504.796000pt;}
.y145{bottom:505.396000pt;}
.yac{bottom:505.677333pt;}
.y13{bottom:509.009333pt;}
.y49{bottom:510.044000pt;}
.ydd{bottom:510.482667pt;}
.y111{bottom:512.782667pt;}
.y79{bottom:513.320000pt;}
.y175{bottom:520.072000pt;}
.y144{bottom:520.672000pt;}
.yab{bottom:520.953333pt;}
.y48{bottom:525.320000pt;}
.y12{bottom:525.613333pt;}
.ydc{bottom:525.758667pt;}
.y110{bottom:528.058667pt;}
.y174{bottom:535.349333pt;}
.y143{bottom:535.948000pt;}
.yaa{bottom:536.229333pt;}
.y11{bottom:540.889333pt;}
.ydb{bottom:541.134667pt;}
.y47{bottom:541.261333pt;}
.y10f{bottom:543.334667pt;}
.y78{bottom:547.816000pt;}
.y173{bottom:550.625333pt;}
.y142{bottom:551.225333pt;}
.y10{bottom:556.165333pt;}
.yda{bottom:556.410667pt;}
.y46{bottom:556.537333pt;}
.ya9{bottom:557.526667pt;}
.y10e{bottom:560.072000pt;}
.y141{bottom:566.501333pt;}
.y172{bottom:566.794667pt;}
.yd9{bottom:571.686667pt;}
.y45{bottom:571.813333pt;}
.yf{bottom:572.768000pt;}
.ya8{bottom:572.802667pt;}
.y10d{bottom:576.809333pt;}
.y140{bottom:581.777333pt;}
.y171{bottom:582.965333pt;}
.yd8{bottom:586.962667pt;}
.y44{bottom:587.089333pt;}
.ye{bottom:588.044000pt;}
.ya7{bottom:588.078667pt;}
.y10c{bottom:594.921333pt;}
.y13f{bottom:597.053333pt;}
.y77{bottom:598.422667pt;}
.y170{bottom:599.136000pt;}
.yd7{bottom:602.238667pt;}
.y43{bottom:602.365333pt;}
.yd{bottom:603.320000pt;}
.ya6{bottom:603.354667pt;}
.y10b{bottom:610.197333pt;}
.y13e{bottom:612.329333pt;}
.y76{bottom:614.021333pt;}
.y16f{bottom:614.412000pt;}
.yd6{bottom:617.514667pt;}
.y42{bottom:617.641333pt;}
.yc{bottom:618.596000pt;}
.ya5{bottom:623.277333pt;}
.y10a{bottom:625.473333pt;}
.y13d{bottom:627.605333pt;}
.y75{bottom:629.620000pt;}
.y16e{bottom:629.688000pt;}
.yd5{bottom:632.790667pt;}
.y41{bottom:632.917333pt;}
.yb{bottom:635.198667pt;}
.y109{bottom:640.749333pt;}
.y13c{bottom:642.881333pt;}
.ya4{bottom:643.200000pt;}
.y16d{bottom:644.964000pt;}
.y74{bottom:645.218667pt;}
.yd4{bottom:648.165333pt;}
.y40{bottom:648.193333pt;}
.y108{bottom:656.025333pt;}
.y13b{bottom:658.158667pt;}
.ya3{bottom:658.476000pt;}
.y16c{bottom:660.240000pt;}
.y73{bottom:660.494667pt;}
.yd3{bottom:663.441333pt;}
.y3f{bottom:663.469333pt;}
.ya{bottom:670.700000pt;}
.y107{bottom:671.301333pt;}
.y13a{bottom:673.434667pt;}
.y16b{bottom:675.516000pt;}
.y72{bottom:675.770667pt;}
.ya2{bottom:678.398667pt;}
.yd2{bottom:678.717333pt;}
.y3e{bottom:679.410667pt;}
.y106{bottom:686.577333pt;}
.y139{bottom:688.710667pt;}
.y16a{bottom:690.792000pt;}
.y71{bottom:691.046667pt;}
.ya1{bottom:693.674667pt;}
.yd1{bottom:693.993333pt;}
.y3d{bottom:694.686667pt;}
.y105{bottom:701.853333pt;}
.y138{bottom:703.988000pt;}
.y169{bottom:706.068000pt;}
.y70{bottom:706.645333pt;}
.ya0{bottom:708.950667pt;}
.yd0{bottom:709.369333pt;}
.y3c{bottom:709.962667pt;}
.y104{bottom:717.129333pt;}
.y137{bottom:719.264000pt;}
.y168{bottom:721.344000pt;}
.y6f{bottom:721.921333pt;}
.y9f{bottom:724.226667pt;}
.ycf{bottom:724.645333pt;}
.y3b{bottom:725.238667pt;}
.y103{bottom:732.406667pt;}
.y136{bottom:734.540000pt;}
.y6e{bottom:737.197333pt;}
.y167{bottom:738.889333pt;}
.y9e{bottom:739.502667pt;}
.yce{bottom:739.921333pt;}
.y3a{bottom:740.514667pt;}
.y9{bottom:745.782667pt;}
.y102{bottom:747.682667pt;}
.y135{bottom:749.816000pt;}
.y6d{bottom:752.473333pt;}
.y166{bottom:754.165333pt;}
.y9d{bottom:754.778667pt;}
.ycd{bottom:755.197333pt;}
.y39{bottom:756.456000pt;}
.y8{bottom:761.057333pt;}
.y101{bottom:762.958667pt;}
.y134{bottom:765.093333pt;}
.y6c{bottom:767.749333pt;}
.y165{bottom:769.441333pt;}
.y9c{bottom:770.054667pt;}
.ycc{bottom:770.573333pt;}
.y38{bottom:771.732000pt;}
.y7{bottom:771.993333pt;}
.y193{bottom:775.992000pt;}
.y100{bottom:778.234667pt;}
.y133{bottom:780.369333pt;}
.y6b{bottom:783.348000pt;}
.y164{bottom:784.717333pt;}
.y9b{bottom:785.330667pt;}
.ycb{bottom:785.849333pt;}
.y37{bottom:787.008000pt;}
.y6{bottom:790.280000pt;}
.yff{bottom:793.510667pt;}
.y132{bottom:795.645333pt;}
.y6a{bottom:798.624000pt;}
.y163{bottom:799.993333pt;}
.y9a{bottom:800.606667pt;}
.yca{bottom:801.125333pt;}
.y192{bottom:810.165333pt;}
.yfe{bottom:810.248000pt;}
.y5{bottom:810.686667pt;}
.y131{bottom:810.922667pt;}
.y36{bottom:812.549333pt;}
.y69{bottom:813.900000pt;}
.y99{bottom:815.882667pt;}
.yc9{bottom:816.401333pt;}
.yfd{bottom:825.524000pt;}
.y162{bottom:825.764000pt;}
.y130{bottom:826.198667pt;}
.y35{bottom:828.490667pt;}
.y68{bottom:829.498667pt;}
.yc8{bottom:831.677333pt;}
.y4{bottom:834.597333pt;}
.y98{bottom:835.805333pt;}
.yfc{bottom:840.800000pt;}
.y12f{bottom:841.474667pt;}
.y161{bottom:841.934667pt;}
.y34{bottom:843.766667pt;}
.y67{bottom:844.774667pt;}
.yc7{bottom:846.953333pt;}
.y97{bottom:855.726667pt;}
.y12e{bottom:856.750667pt;}
.y160{bottom:857.210667pt;}
.yfb{bottom:857.537333pt;}
.y191{bottom:858.998667pt;}
.y33{bottom:859.042667pt;}
.y66{bottom:860.050667pt;}
.yc6{bottom:862.229333pt;}
.y96{bottom:871.002667pt;}
.y12d{bottom:872.026667pt;}
.yfa{bottom:872.813333pt;}
.y190{bottom:874.274667pt;}
.y15f{bottom:874.756000pt;}
.y32{bottom:874.984000pt;}
.y65{bottom:875.649333pt;}
.y3{bottom:875.774667pt;}
.y95{bottom:886.280000pt;}
.yc5{bottom:887.205333pt;}
.y12c{bottom:887.302667pt;}
.yf9{bottom:888.089333pt;}
.y18f{bottom:889.550667pt;}
.y15e{bottom:890.032000pt;}
.y31{bottom:890.260000pt;}
.y64{bottom:890.925333pt;}
.y94{bottom:901.556000pt;}
.yc4{bottom:902.481333pt;}
.y12b{bottom:902.578667pt;}
.yf8{bottom:903.365333pt;}
.y18e{bottom:904.826667pt;}
.y2{bottom:904.998667pt;}
.y15d{bottom:905.308000pt;}
.y30{bottom:906.201333pt;}
.y2f{bottom:921.477333pt;}
.y1{bottom:934.222667pt;}
.y2e{bottom:936.753333pt;}
.h4{height:25.589197pt;}
.h5{height:32.805069pt;}
.h8{height:36.556100pt;}
.h9{height:46.263455pt;}
.h7{height:49.042559pt;}
.h6{height:58.851465pt;}
.h2{height:67.799791pt;}
.h3{height:67.805124pt;}
.h1{height:84.745676pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:96.000000pt;}
.x1{left:97.430667pt;}
.x6{left:103.669333pt;}
.x2{left:118.237333pt;}
.x4{left:127.002667pt;}
.xa{left:173.312000pt;}
.x8{left:186.805333pt;}
.xd{left:202.953333pt;}
.x9{left:220.338667pt;}
.xe{left:255.468000pt;}
.xc{left:271.558667pt;}
.x3{left:308.845333pt;}
.x5{left:339.380000pt;}
.x7{left:341.476000pt;}
.xf{left:370.076000pt;}
}




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