
    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_a26f58d1dd15a528dba3b509.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_fc4fe997ed9f1149d021e3da.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_857ffaa73977fb7e5e2b9ab4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_656e6a337775235ee6ccc537.woff2')format("woff");}.ff4{font-family:ff4;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-24.486000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws5{word-spacing:-55.944000px;}
.ws29{word-spacing:-38.660400px;}
.ws25{word-spacing:-38.659200px;}
.ws3{word-spacing:-38.656800px;}
.wsf{word-spacing:-38.654700px;}
.ws15{word-spacing:-38.654400px;}
.wsaa{word-spacing:-38.653200px;}
.wsbf{word-spacing:-38.652000px;}
.ws46{word-spacing:-38.651400px;}
.ws30{word-spacing:-38.645100px;}
.ws3b{word-spacing:-38.589000px;}
.ws34{word-spacing:-38.440800px;}
.ws2e{word-spacing:-38.439900px;}
.ws51{word-spacing:-38.437200px;}
.ws42{word-spacing:-38.435400px;}
.ws96{word-spacing:-38.166000px;}
.ws56{word-spacing:-38.160000px;}
.ws9b{word-spacing:-38.154000px;}
.wsbc{word-spacing:-38.152800px;}
.ws3c{word-spacing:-38.151600px;}
.ws2d{word-spacing:-38.151000px;}
.wsca{word-spacing:-38.149500px;}
.ws16{word-spacing:-38.149200px;}
.wsb0{word-spacing:-38.146500px;}
.ws1e{word-spacing:-38.145600px;}
.wsb4{word-spacing:-38.142000px;}
.ws8e{word-spacing:-38.093100px;}
.ws2{word-spacing:-38.081700px;}
.wsb5{word-spacing:-38.075400px;}
.ws4{word-spacing:-38.074500px;}
.wsbe{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.ws6f{word-spacing:-37.940400px;}
.wsc0{word-spacing:-37.939500px;}
.ws93{word-spacing:-37.935600px;}
.ws54{word-spacing:-37.935000px;}
.ws3a{word-spacing:-37.934100px;}
.wsc3{word-spacing:-37.933200px;}
.ws5a{word-spacing:-37.929600px;}
.ws17{word-spacing:-37.922400px;}
.wsc{word-spacing:-37.726200px;}
.wscb{word-spacing:-37.724400px;}
.ws32{word-spacing:-37.722600px;}
.ws4f{word-spacing:-37.719900px;}
.ws22{word-spacing:-37.446000px;}
.ws55{word-spacing:-37.436400px;}
.wsa4{word-spacing:-37.433400px;}
.ws57{word-spacing:-37.431900px;}
.ws82{word-spacing:-37.416000px;}
.wsb9{word-spacing:-37.219500px;}
.ws2b{word-spacing:-36.720000px;}
.ws95{word-spacing:-36.489600px;}
.ws2a{word-spacing:-36.363600px;}
.ws66{word-spacing:-36.271800px;}
.ws33{word-spacing:-36.002400px;}
.wsa7{word-spacing:-35.784000px;}
.wsab{word-spacing:-35.774400px;}
.wsac{word-spacing:-35.768700px;}
.ws98{word-spacing:-35.280000px;}
.ws37{word-spacing:-35.276400px;}
.ws3e{word-spacing:-35.253000px;}
.wsae{word-spacing:-35.055000px;}
.wsb8{word-spacing:-35.051400px;}
.wsb7{word-spacing:-35.050500px;}
.ws2c{word-spacing:-35.047800px;}
.ws89{word-spacing:-34.543800px;}
.ws24{word-spacing:-34.126800px;}
.wsc5{word-spacing:-33.617700px;}
.wsc4{word-spacing:-32.900400px;}
.ws9{word-spacing:-32.889600px;}
.ws52{word-spacing:-32.887800px;}
.ws38{word-spacing:-32.176800px;}
.ws59{word-spacing:-32.167200px;}
.ws1c{word-spacing:-31.464000px;}
.ws47{word-spacing:-31.458000px;}
.ws8c{word-spacing:-31.456800px;}
.ws99{word-spacing:-31.447800px;}
.ws85{word-spacing:-31.239000px;}
.wsb2{word-spacing:-30.956400px;}
.wsb{word-spacing:-30.520800px;}
.ws50{word-spacing:-30.518100px;}
.wsb1{word-spacing:-30.213600px;}
.wsc6{word-spacing:-30.163200px;}
.wsa6{word-spacing:-29.797200px;}
.ws12{word-spacing:-29.302200px;}
.ws4d{word-spacing:-29.067600px;}
.ws65{word-spacing:-28.800000px;}
.ws28{word-spacing:-28.568700px;}
.wsa3{word-spacing:-27.849600px;}
.ws49{word-spacing:-27.847800px;}
.ws8f{word-spacing:-27.639000px;}
.ws88{word-spacing:-27.133200px;}
.ws4c{word-spacing:-26.640000px;}
.ws9c{word-spacing:-26.426400px;}
.ws9d{word-spacing:-26.417700px;}
.ws4e{word-spacing:-26.404200px;}
.ws90{word-spacing:-26.193600px;}
.ws7{word-spacing:-25.683600px;}
.ws6e{word-spacing:-25.470000px;}
.ws6{word-spacing:-25.200000px;}
.ws69{word-spacing:-25.194000px;}
.wse{word-spacing:-24.978600px;}
.ws92{word-spacing:-24.973200px;}
.ws3d{word-spacing:-24.759000px;}
.ws8d{word-spacing:-24.486000px;}
.ws35{word-spacing:-24.480000px;}
.wsd{word-spacing:-24.471900px;}
.wsaf{word-spacing:-24.039000px;}
.wsbd{word-spacing:-23.549100px;}
.wsc2{word-spacing:-23.539200px;}
.ws27{word-spacing:-23.525100px;}
.wsa5{word-spacing:-22.824000px;}
.ws8a{word-spacing:-22.809600px;}
.ws91{word-spacing:-22.326000px;}
.ws58{word-spacing:-22.099200px;}
.ws45{word-spacing:-21.879000px;}
.ws8b{word-spacing:-21.877200px;}
.wsa8{word-spacing:-21.582000px;}
.ws61{word-spacing:-21.527100px;}
.ws31{word-spacing:-21.378000px;}
.ws14{word-spacing:-21.310800px;}
.ws9a{word-spacing:-21.160800px;}
.ws6a{word-spacing:-21.144000px;}
.ws1a{word-spacing:-21.018300px;}
.ws23{word-spacing:-20.654100px;}
.wsad{word-spacing:-20.437200px;}
.ws11{word-spacing:-19.930500px;}
.wsc9{word-spacing:-19.929600px;}
.ws10{word-spacing:-19.440000px;}
.ws8{word-spacing:-18.491400px;}
.wsa9{word-spacing:-18.488700px;}
.ws39{word-spacing:-17.049600px;}
.wsc8{word-spacing:-16.839000px;}
.wsc7{word-spacing:-16.555500px;}
.ws84{word-spacing:-15.827400px;}
.wsa2{word-spacing:-15.759900px;}
.ws86{word-spacing:-15.394200px;}
.ws5b{word-spacing:-15.120000px;}
.ws4a{word-spacing:-14.900400px;}
.ws44{word-spacing:-14.167200px;}
.ws48{word-spacing:-13.960800px;}
.ws97{word-spacing:-11.302200px;}
.ws53{word-spacing:-9.849600px;}
.ws13{word-spacing:-9.847800px;}
.wsb3{word-spacing:-9.631200px;}
.ws94{word-spacing:-9.135000px;}
.ws26{word-spacing:-8.922600px;}
.ws76{word-spacing:-8.906400px;}
.ws4b{word-spacing:-6.973200px;}
.wsc1{word-spacing:-6.238200px;}
.ws40{word-spacing:-5.524200px;}
.ws9e{word-spacing:-4.813200px;}
.ws41{word-spacing:-4.082400px;}
.ws1b{word-spacing:-3.585600px;}
.wsbb{word-spacing:-1.711200px;}
.wsba{word-spacing:-0.720000px;}
.ws2f{word-spacing:0.000000px;}
.ws74{word-spacing:0.948600px;}
.ws21{word-spacing:1.656000px;}
.ws5f{word-spacing:2.160000px;}
.ws3f{word-spacing:3.828000px;}
.ws36{word-spacing:3.834000px;}
.ws5d{word-spacing:4.541400px;}
.ws9f{word-spacing:4.760100px;}
.wsa0{word-spacing:5.046000px;}
.ws77{word-spacing:5.256000px;}
.wsa1{word-spacing:5.555400px;}
.ws6c{word-spacing:6.712800px;}
.wsb6{word-spacing:7.745700px;}
.wsa{word-spacing:8.145000px;}
.ws43{word-spacing:12.459600px;}
.ws7c{word-spacing:13.920000px;}
.ws1f{word-spacing:20.166000px;}
.ws20{word-spacing:20.376000px;}
.ws70{word-spacing:20.383500px;}
.ws64{word-spacing:21.319800px;}
.ws19{word-spacing:22.618800px;}
.ws18{word-spacing:23.760000px;}
.ws5c{word-spacing:23.990400px;}
.ws68{word-spacing:24.493500px;}
.ws6d{word-spacing:26.646000px;}
.ws6b{word-spacing:29.769000px;}
.ws1d{word-spacing:30.113700px;}
.ws5e{word-spacing:40.549500px;}
.ws75{word-spacing:45.808200px;}
.ws62{word-spacing:46.301400px;}
.ws72{word-spacing:48.539700px;}
.ws87{word-spacing:52.776000px;}
.ws60{word-spacing:58.333500px;}
.ws63{word-spacing:66.250800px;}
.ws7b{word-spacing:67.680000px;}
.ws79{word-spacing:70.576200px;}
.ws67{word-spacing:71.280000px;}
.ws7f{word-spacing:81.600000px;}
.ws83{word-spacing:85.400100px;}
.ws78{word-spacing:86.628600px;}
.ws7a{word-spacing:87.558300px;}
.ws81{word-spacing:94.325400px;}
.ws80{word-spacing:101.976000px;}
.ws7d{word-spacing:102.249600px;}
.ws71{word-spacing:133.274700px;}
.ws7e{word-spacing:136.816800px;}
.ws73{word-spacing:156.963600px;}
.ws1{word-spacing:1037.484900px;}
._2{margin-left:-1.269900px;}
._0{width:1.076400px;}
._12{width:17.967600px;}
._1{width:18.968400px;}
._e{width:20.018400px;}
._13{width:21.993300px;}
._f{width:23.203800px;}
._5{width:24.480000px;}
._17{width:25.626000px;}
._7{width:27.360000px;}
._11{width:28.928700px;}
._19{width:29.940300px;}
._3{width:31.896000px;}
._10{width:33.624000px;}
._a{width:35.712000px;}
._8{width:37.354500px;}
._4{width:38.664000px;}
._18{width:40.104000px;}
._21{width:41.400000px;}
._1d{width:42.978000px;}
._1f{width:45.712200px;}
._9{width:47.199600px;}
._1e{width:50.302800px;}
._1b{width:51.696000px;}
._20{width:52.820400px;}
._c{width:53.833500px;}
._22{width:55.440000px;}
._16{width:59.256000px;}
._15{width:60.840000px;}
._1a{width:62.660700px;}
._6{width:65.704500px;}
._1c{width:70.412400px;}
._b{width:80.096700px;}
._d{width:87.304200px;}
._14{width:90.990900px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs1{font-size:46.800000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y65{bottom:5.700000px;}
.y81{bottom:5.761500px;}
.y95{bottom:6.646500px;}
.y4{bottom:12.240000px;}
.y5f{bottom:16.140000px;}
.ya7{bottom:17.086500px;}
.y64{bottom:26.400000px;}
.y80{bottom:26.461500px;}
.y73{bottom:26.640000px;}
.y94{bottom:27.345000px;}
.y5e{bottom:36.840000px;}
.ya6{bottom:37.786500px;}
.y63{bottom:47.100000px;}
.y7f{bottom:47.161500px;}
.y72{bottom:47.340000px;}
.y93{bottom:48.046500px;}
.y5d{bottom:57.540000px;}
.ya5{bottom:58.486500px;}
.y3{bottom:63.975000px;}
.y62{bottom:67.800000px;}
.y7e{bottom:67.861500px;}
.y71{bottom:68.040000px;}
.y92{bottom:68.746500px;}
.y5c{bottom:78.240000px;}
.ya4{bottom:79.186500px;}
.y61{bottom:88.500000px;}
.y7d{bottom:88.561500px;}
.y70{bottom:88.740000px;}
.y91{bottom:89.446500px;}
.y5b{bottom:98.940000px;}
.ya3{bottom:99.886500px;}
.yaa{bottom:102.136500px;}
.y60{bottom:109.200000px;}
.y7c{bottom:109.261500px;}
.y6f{bottom:109.440000px;}
.y90{bottom:110.146500px;}
.ya2{bottom:120.586500px;}
.yac{bottom:121.575000px;}
.ya9{bottom:122.836500px;}
.y2b{bottom:127.696500px;}
.y7b{bottom:129.961500px;}
.y6e{bottom:130.140000px;}
.y8f{bottom:130.845000px;}
.ya1{bottom:141.286500px;}
.yab{bottom:148.396500px;}
.y7a{bottom:150.661500px;}
.y6d{bottom:150.840000px;}
.y8e{bottom:151.546500px;}
.ya0{bottom:161.986500px;}
.y82{bottom:162.450000px;}
.y2a{bottom:163.336500px;}
.y57{bottom:169.275000px;}
.y79{bottom:171.361500px;}
.y6c{bottom:171.540000px;}
.y8d{bottom:172.246500px;}
.y9f{bottom:182.686500px;}
.y29{bottom:184.036500px;}
.y78{bottom:192.061500px;}
.y6b{bottom:192.240000px;}
.y8c{bottom:192.946500px;}
.y9e{bottom:203.386500px;}
.y28{bottom:204.736500px;}
.y56{bottom:205.096500px;}
.ybf{bottom:210.675000px;}
.y77{bottom:212.761500px;}
.y6a{bottom:212.940000px;}
.y8b{bottom:213.646500px;}
.y9d{bottom:224.086500px;}
.y27{bottom:225.436500px;}
.ybe{bottom:231.375000px;}
.y55{bottom:231.736500px;}
.y76{bottom:233.461500px;}
.y69{bottom:233.640000px;}
.y8a{bottom:234.345000px;}
.y9c{bottom:244.786500px;}
.y26{bottom:246.136500px;}
.ybd{bottom:252.255000px;}
.y74{bottom:254.161500px;}
.y68{bottom:254.340000px;}
.y89{bottom:255.046500px;}
.y9b{bottom:265.486500px;}
.y25{bottom:266.836500px;}
.y67{bottom:274.861500px;}
.ybc{bottom:275.655000px;}
.y88{bottom:275.746500px;}
.y9a{bottom:286.186500px;}
.y24{bottom:287.536500px;}
.y75{bottom:295.561500px;}
.ybb{bottom:296.355000px;}
.y87{bottom:296.446500px;}
.ya8{bottom:306.705000px;}
.y99{bottom:306.886500px;}
.y23{bottom:308.236500px;}
.y54{bottom:310.936500px;}
.yba{bottom:317.055000px;}
.y86{bottom:317.146500px;}
.y98{bottom:327.586500px;}
.y22{bottom:328.936500px;}
.y53{bottom:331.636500px;}
.y85{bottom:337.846500px;}
.yb9{bottom:340.636500px;}
.y97{bottom:348.286500px;}
.y21{bottom:349.636500px;}
.y52{bottom:352.336500px;}
.y84{bottom:358.546500px;}
.yb8{bottom:361.336500px;}
.y96{bottom:368.805000px;}
.y51{bottom:373.036500px;}
.y83{bottom:379.065000px;}
.yb7{bottom:382.036500px;}
.y20{bottom:391.215000px;}
.y50{bottom:393.736500px;}
.yb6{bottom:405.436500px;}
.y4f{bottom:414.436500px;}
.yb5{bottom:426.136500px;}
.y1f{bottom:432.975000px;}
.y4e{bottom:435.136500px;}
.yb4{bottom:447.015000px;}
.y1e{bottom:453.675000px;}
.y4d{bottom:455.836500px;}
.yb3{bottom:470.415000px;}
.y1d{bottom:474.375000px;}
.y4c{bottom:476.536500px;}
.yb2{bottom:491.115000px;}
.y1c{bottom:495.075000px;}
.y4b{bottom:497.236500px;}
.yb1{bottom:511.815000px;}
.y1b{bottom:515.775000px;}
.y4a{bottom:517.936500px;}
.yb0{bottom:535.215000px;}
.y1a{bottom:536.475000px;}
.y49{bottom:538.636500px;}
.yaf{bottom:555.915000px;}
.y19{bottom:557.175000px;}
.y48{bottom:559.336500px;}
.y66{bottom:562.575000px;}
.yae{bottom:576.615000px;}
.y18{bottom:577.875000px;}
.y47{bottom:580.036500px;}
.y17{bottom:598.575000px;}
.y46{bottom:600.736500px;}
.yad{bottom:621.075000px;}
.y45{bottom:621.436500px;}
.y16{bottom:639.975000px;}
.y44{bottom:642.136500px;}
.y15{bottom:660.675000px;}
.y43{bottom:662.836500px;}
.y42{bottom:683.536500px;}
.y14{bottom:702.436500px;}
.y41{bottom:704.236500px;}
.y13{bottom:723.136500px;}
.y40{bottom:724.936500px;}
.y12{bottom:743.836500px;}
.y3f{bottom:745.636500px;}
.y11{bottom:764.536500px;}
.y3e{bottom:766.336500px;}
.y10{bottom:785.236500px;}
.y3d{bottom:787.036500px;}
.y3c{bottom:807.736500px;}
.yf{bottom:826.815000px;}
.y3b{bottom:828.436500px;}
.ye{bottom:847.515000px;}
.y3a{bottom:849.136500px;}
.y39{bottom:869.836500px;}
.y5a{bottom:879.075000px;}
.yd{bottom:889.275000px;}
.y38{bottom:890.536500px;}
.yc{bottom:909.975000px;}
.y37{bottom:911.236500px;}
.yb{bottom:930.675000px;}
.y36{bottom:931.936500px;}
.ya{bottom:951.375000px;}
.y35{bottom:952.636500px;}
.y9{bottom:972.075000px;}
.y34{bottom:973.336500px;}
.y8{bottom:992.775000px;}
.y33{bottom:994.036500px;}
.y32{bottom:1014.736500px;}
.y7{bottom:1034.536500px;}
.y59{bottom:1034.895000px;}
.y31{bottom:1035.436500px;}
.y6{bottom:1055.236500px;}
.y30{bottom:1056.136500px;}
.y58{bottom:1076.475000px;}
.y2f{bottom:1076.836500px;}
.y2e{bottom:1097.536500px;}
.y2d{bottom:1118.236500px;}
.y2c{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h9{height:32.494922px;}
.h7{height:32.517773px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.ha{height:49.992188px;}
.h5{height:50.027344px;}
.h6{height:56.271773px;}
.h8{height:56.991773px;}
.he{height:58.532520px;}
.hf{height:58.573682px;}
.hb{height:128.625000px;}
.hc{height:314.175000px;}
.hd{height:397.800000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w3{width:170.325000px;}
.w4{width:186.750000px;}
.w6{width:194.025000px;}
.w5{width:222.225000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.xa{left:51.300000px;}
.x9{left:53.100000px;}
.xb{left:73.800000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x6{left:151.200000px;}
.x8{left:159.300000px;}
.x2{left:160.560000px;}
.xc{left:223.800000px;}
.x5{left:358.200000px;}
.xd{left:412.725000px;}
.x7{left:441.720000px;}
.xe{left:637.125000px;}
@media print{
.v2{vertical-align:-21.765333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-49.728000pt;}
.ws29{word-spacing:-34.364800pt;}
.ws25{word-spacing:-34.363733pt;}
.ws3{word-spacing:-34.361600pt;}
.wsf{word-spacing:-34.359733pt;}
.ws15{word-spacing:-34.359467pt;}
.wsaa{word-spacing:-34.358400pt;}
.wsbf{word-spacing:-34.357333pt;}
.ws46{word-spacing:-34.356800pt;}
.ws30{word-spacing:-34.351200pt;}
.ws3b{word-spacing:-34.301333pt;}
.ws34{word-spacing:-34.169600pt;}
.ws2e{word-spacing:-34.168800pt;}
.ws51{word-spacing:-34.166400pt;}
.ws42{word-spacing:-34.164800pt;}
.ws96{word-spacing:-33.925333pt;}
.ws56{word-spacing:-33.920000pt;}
.ws9b{word-spacing:-33.914667pt;}
.wsbc{word-spacing:-33.913600pt;}
.ws3c{word-spacing:-33.912533pt;}
.ws2d{word-spacing:-33.912000pt;}
.wsca{word-spacing:-33.910667pt;}
.ws16{word-spacing:-33.910400pt;}
.wsb0{word-spacing:-33.908000pt;}
.ws1e{word-spacing:-33.907200pt;}
.wsb4{word-spacing:-33.904000pt;}
.ws8e{word-spacing:-33.860533pt;}
.ws2{word-spacing:-33.850400pt;}
.wsb5{word-spacing:-33.844800pt;}
.ws4{word-spacing:-33.844000pt;}
.wsbe{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.ws6f{word-spacing:-33.724800pt;}
.wsc0{word-spacing:-33.724000pt;}
.ws93{word-spacing:-33.720533pt;}
.ws54{word-spacing:-33.720000pt;}
.ws3a{word-spacing:-33.719200pt;}
.wsc3{word-spacing:-33.718400pt;}
.ws5a{word-spacing:-33.715200pt;}
.ws17{word-spacing:-33.708800pt;}
.wsc{word-spacing:-33.534400pt;}
.wscb{word-spacing:-33.532800pt;}
.ws32{word-spacing:-33.531200pt;}
.ws4f{word-spacing:-33.528800pt;}
.ws22{word-spacing:-33.285333pt;}
.ws55{word-spacing:-33.276800pt;}
.wsa4{word-spacing:-33.274133pt;}
.ws57{word-spacing:-33.272800pt;}
.ws82{word-spacing:-33.258667pt;}
.wsb9{word-spacing:-33.084000pt;}
.ws2b{word-spacing:-32.640000pt;}
.ws95{word-spacing:-32.435200pt;}
.ws2a{word-spacing:-32.323200pt;}
.ws66{word-spacing:-32.241600pt;}
.ws33{word-spacing:-32.002133pt;}
.wsa7{word-spacing:-31.808000pt;}
.wsab{word-spacing:-31.799467pt;}
.wsac{word-spacing:-31.794400pt;}
.ws98{word-spacing:-31.360000pt;}
.ws37{word-spacing:-31.356800pt;}
.ws3e{word-spacing:-31.336000pt;}
.wsae{word-spacing:-31.160000pt;}
.wsb8{word-spacing:-31.156800pt;}
.wsb7{word-spacing:-31.156000pt;}
.ws2c{word-spacing:-31.153600pt;}
.ws89{word-spacing:-30.705600pt;}
.ws24{word-spacing:-30.334933pt;}
.wsc5{word-spacing:-29.882400pt;}
.wsc4{word-spacing:-29.244800pt;}
.ws9{word-spacing:-29.235200pt;}
.ws52{word-spacing:-29.233600pt;}
.ws38{word-spacing:-28.601600pt;}
.ws59{word-spacing:-28.593067pt;}
.ws1c{word-spacing:-27.968000pt;}
.ws47{word-spacing:-27.962667pt;}
.ws8c{word-spacing:-27.961600pt;}
.ws99{word-spacing:-27.953600pt;}
.ws85{word-spacing:-27.768000pt;}
.wsb2{word-spacing:-27.516800pt;}
.wsb{word-spacing:-27.129600pt;}
.ws50{word-spacing:-27.127200pt;}
.wsb1{word-spacing:-26.856533pt;}
.wsc6{word-spacing:-26.811733pt;}
.wsa6{word-spacing:-26.486400pt;}
.ws12{word-spacing:-26.046400pt;}
.ws4d{word-spacing:-25.837867pt;}
.ws65{word-spacing:-25.600000pt;}
.ws28{word-spacing:-25.394400pt;}
.wsa3{word-spacing:-24.755200pt;}
.ws49{word-spacing:-24.753600pt;}
.ws8f{word-spacing:-24.568000pt;}
.ws88{word-spacing:-24.118400pt;}
.ws4c{word-spacing:-23.680000pt;}
.ws9c{word-spacing:-23.490133pt;}
.ws9d{word-spacing:-23.482400pt;}
.ws4e{word-spacing:-23.470400pt;}
.ws90{word-spacing:-23.283200pt;}
.ws7{word-spacing:-22.829867pt;}
.ws6e{word-spacing:-22.640000pt;}
.ws6{word-spacing:-22.400000pt;}
.ws69{word-spacing:-22.394667pt;}
.wse{word-spacing:-22.203200pt;}
.ws92{word-spacing:-22.198400pt;}
.ws3d{word-spacing:-22.008000pt;}
.ws8d{word-spacing:-21.765333pt;}
.ws35{word-spacing:-21.760000pt;}
.wsd{word-spacing:-21.752800pt;}
.wsaf{word-spacing:-21.368000pt;}
.wsbd{word-spacing:-20.932533pt;}
.wsc2{word-spacing:-20.923733pt;}
.ws27{word-spacing:-20.911200pt;}
.wsa5{word-spacing:-20.288000pt;}
.ws8a{word-spacing:-20.275200pt;}
.ws91{word-spacing:-19.845333pt;}
.ws58{word-spacing:-19.643733pt;}
.ws45{word-spacing:-19.448000pt;}
.ws8b{word-spacing:-19.446400pt;}
.wsa8{word-spacing:-19.184000pt;}
.ws61{word-spacing:-19.135200pt;}
.ws31{word-spacing:-19.002667pt;}
.ws14{word-spacing:-18.942933pt;}
.ws9a{word-spacing:-18.809600pt;}
.ws6a{word-spacing:-18.794667pt;}
.ws1a{word-spacing:-18.682933pt;}
.ws23{word-spacing:-18.359200pt;}
.wsad{word-spacing:-18.166400pt;}
.ws11{word-spacing:-17.716000pt;}
.wsc9{word-spacing:-17.715200pt;}
.ws10{word-spacing:-17.280000pt;}
.ws8{word-spacing:-16.436800pt;}
.wsa9{word-spacing:-16.434400pt;}
.ws39{word-spacing:-15.155200pt;}
.wsc8{word-spacing:-14.968000pt;}
.wsc7{word-spacing:-14.716000pt;}
.ws84{word-spacing:-14.068800pt;}
.wsa2{word-spacing:-14.008800pt;}
.ws86{word-spacing:-13.683733pt;}
.ws5b{word-spacing:-13.440000pt;}
.ws4a{word-spacing:-13.244800pt;}
.ws44{word-spacing:-12.593067pt;}
.ws48{word-spacing:-12.409600pt;}
.ws97{word-spacing:-10.046400pt;}
.ws53{word-spacing:-8.755200pt;}
.ws13{word-spacing:-8.753600pt;}
.wsb3{word-spacing:-8.561067pt;}
.ws94{word-spacing:-8.120000pt;}
.ws26{word-spacing:-7.931200pt;}
.ws76{word-spacing:-7.916800pt;}
.ws4b{word-spacing:-6.198400pt;}
.wsc1{word-spacing:-5.545067pt;}
.ws40{word-spacing:-4.910400pt;}
.ws9e{word-spacing:-4.278400pt;}
.ws41{word-spacing:-3.628800pt;}
.ws1b{word-spacing:-3.187200pt;}
.wsbb{word-spacing:-1.521067pt;}
.wsba{word-spacing:-0.640000pt;}
.ws2f{word-spacing:0.000000pt;}
.ws74{word-spacing:0.843200pt;}
.ws21{word-spacing:1.472000pt;}
.ws5f{word-spacing:1.920000pt;}
.ws3f{word-spacing:3.402667pt;}
.ws36{word-spacing:3.408000pt;}
.ws5d{word-spacing:4.036800pt;}
.ws9f{word-spacing:4.231200pt;}
.wsa0{word-spacing:4.485333pt;}
.ws77{word-spacing:4.672000pt;}
.wsa1{word-spacing:4.938133pt;}
.ws6c{word-spacing:5.966933pt;}
.wsb6{word-spacing:6.885067pt;}
.wsa{word-spacing:7.240000pt;}
.ws43{word-spacing:11.075200pt;}
.ws7c{word-spacing:12.373333pt;}
.ws1f{word-spacing:17.925333pt;}
.ws20{word-spacing:18.112000pt;}
.ws70{word-spacing:18.118667pt;}
.ws64{word-spacing:18.950933pt;}
.ws19{word-spacing:20.105600pt;}
.ws18{word-spacing:21.120000pt;}
.ws5c{word-spacing:21.324800pt;}
.ws68{word-spacing:21.772000pt;}
.ws6d{word-spacing:23.685333pt;}
.ws6b{word-spacing:26.461333pt;}
.ws1d{word-spacing:26.767733pt;}
.ws5e{word-spacing:36.044000pt;}
.ws75{word-spacing:40.718400pt;}
.ws62{word-spacing:41.156800pt;}
.ws72{word-spacing:43.146400pt;}
.ws87{word-spacing:46.912000pt;}
.ws60{word-spacing:51.852000pt;}
.ws63{word-spacing:58.889600pt;}
.ws7b{word-spacing:60.160000pt;}
.ws79{word-spacing:62.734400pt;}
.ws67{word-spacing:63.360000pt;}
.ws7f{word-spacing:72.533333pt;}
.ws83{word-spacing:75.911200pt;}
.ws78{word-spacing:77.003200pt;}
.ws7a{word-spacing:77.829600pt;}
.ws81{word-spacing:83.844800pt;}
.ws80{word-spacing:90.645333pt;}
.ws7d{word-spacing:90.888533pt;}
.ws71{word-spacing:118.466400pt;}
.ws7e{word-spacing:121.614933pt;}
.ws73{word-spacing:139.523200pt;}
.ws1{word-spacing:922.208800pt;}
._2{margin-left:-1.128800pt;}
._0{width:0.956800pt;}
._12{width:15.971200pt;}
._1{width:16.860800pt;}
._e{width:17.794133pt;}
._13{width:19.549600pt;}
._f{width:20.625600pt;}
._5{width:21.760000pt;}
._17{width:22.778667pt;}
._7{width:24.320000pt;}
._11{width:25.714400pt;}
._19{width:26.613600pt;}
._3{width:28.352000pt;}
._10{width:29.888000pt;}
._a{width:31.744000pt;}
._8{width:33.204000pt;}
._4{width:34.368000pt;}
._18{width:35.648000pt;}
._21{width:36.800000pt;}
._1d{width:38.202667pt;}
._1f{width:40.633067pt;}
._9{width:41.955200pt;}
._1e{width:44.713600pt;}
._1b{width:45.952000pt;}
._20{width:46.951467pt;}
._c{width:47.852000pt;}
._22{width:49.280000pt;}
._16{width:52.672000pt;}
._15{width:54.080000pt;}
._1a{width:55.698400pt;}
._6{width:58.404000pt;}
._1c{width:62.588800pt;}
._b{width:71.197067pt;}
._d{width:77.603733pt;}
._14{width:80.880800pt;}
.fs1{font-size:41.600000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:5.066667pt;}
.y81{bottom:5.121333pt;}
.y95{bottom:5.908000pt;}
.y4{bottom:10.880000pt;}
.y5f{bottom:14.346667pt;}
.ya7{bottom:15.188000pt;}
.y64{bottom:23.466667pt;}
.y80{bottom:23.521333pt;}
.y73{bottom:23.680000pt;}
.y94{bottom:24.306667pt;}
.y5e{bottom:32.746667pt;}
.ya6{bottom:33.588000pt;}
.y63{bottom:41.866667pt;}
.y7f{bottom:41.921333pt;}
.y72{bottom:42.080000pt;}
.y93{bottom:42.708000pt;}
.y5d{bottom:51.146667pt;}
.ya5{bottom:51.988000pt;}
.y3{bottom:56.866667pt;}
.y62{bottom:60.266667pt;}
.y7e{bottom:60.321333pt;}
.y71{bottom:60.480000pt;}
.y92{bottom:61.108000pt;}
.y5c{bottom:69.546667pt;}
.ya4{bottom:70.388000pt;}
.y61{bottom:78.666667pt;}
.y7d{bottom:78.721333pt;}
.y70{bottom:78.880000pt;}
.y91{bottom:79.508000pt;}
.y5b{bottom:87.946667pt;}
.ya3{bottom:88.788000pt;}
.yaa{bottom:90.788000pt;}
.y60{bottom:97.066667pt;}
.y7c{bottom:97.121333pt;}
.y6f{bottom:97.280000pt;}
.y90{bottom:97.908000pt;}
.ya2{bottom:107.188000pt;}
.yac{bottom:108.066667pt;}
.ya9{bottom:109.188000pt;}
.y2b{bottom:113.508000pt;}
.y7b{bottom:115.521333pt;}
.y6e{bottom:115.680000pt;}
.y8f{bottom:116.306667pt;}
.ya1{bottom:125.588000pt;}
.yab{bottom:131.908000pt;}
.y7a{bottom:133.921333pt;}
.y6d{bottom:134.080000pt;}
.y8e{bottom:134.708000pt;}
.ya0{bottom:143.988000pt;}
.y82{bottom:144.400000pt;}
.y2a{bottom:145.188000pt;}
.y57{bottom:150.466667pt;}
.y79{bottom:152.321333pt;}
.y6c{bottom:152.480000pt;}
.y8d{bottom:153.108000pt;}
.y9f{bottom:162.388000pt;}
.y29{bottom:163.588000pt;}
.y78{bottom:170.721333pt;}
.y6b{bottom:170.880000pt;}
.y8c{bottom:171.508000pt;}
.y9e{bottom:180.788000pt;}
.y28{bottom:181.988000pt;}
.y56{bottom:182.308000pt;}
.ybf{bottom:187.266667pt;}
.y77{bottom:189.121333pt;}
.y6a{bottom:189.280000pt;}
.y8b{bottom:189.908000pt;}
.y9d{bottom:199.188000pt;}
.y27{bottom:200.388000pt;}
.ybe{bottom:205.666667pt;}
.y55{bottom:205.988000pt;}
.y76{bottom:207.521333pt;}
.y69{bottom:207.680000pt;}
.y8a{bottom:208.306667pt;}
.y9c{bottom:217.588000pt;}
.y26{bottom:218.788000pt;}
.ybd{bottom:224.226667pt;}
.y74{bottom:225.921333pt;}
.y68{bottom:226.080000pt;}
.y89{bottom:226.708000pt;}
.y9b{bottom:235.988000pt;}
.y25{bottom:237.188000pt;}
.y67{bottom:244.321333pt;}
.ybc{bottom:245.026667pt;}
.y88{bottom:245.108000pt;}
.y9a{bottom:254.388000pt;}
.y24{bottom:255.588000pt;}
.y75{bottom:262.721333pt;}
.ybb{bottom:263.426667pt;}
.y87{bottom:263.508000pt;}
.ya8{bottom:272.626667pt;}
.y99{bottom:272.788000pt;}
.y23{bottom:273.988000pt;}
.y54{bottom:276.388000pt;}
.yba{bottom:281.826667pt;}
.y86{bottom:281.908000pt;}
.y98{bottom:291.188000pt;}
.y22{bottom:292.388000pt;}
.y53{bottom:294.788000pt;}
.y85{bottom:300.308000pt;}
.yb9{bottom:302.788000pt;}
.y97{bottom:309.588000pt;}
.y21{bottom:310.788000pt;}
.y52{bottom:313.188000pt;}
.y84{bottom:318.708000pt;}
.yb8{bottom:321.188000pt;}
.y96{bottom:327.826667pt;}
.y51{bottom:331.588000pt;}
.y83{bottom:336.946667pt;}
.yb7{bottom:339.588000pt;}
.y20{bottom:347.746667pt;}
.y50{bottom:349.988000pt;}
.yb6{bottom:360.388000pt;}
.y4f{bottom:368.388000pt;}
.yb5{bottom:378.788000pt;}
.y1f{bottom:384.866667pt;}
.y4e{bottom:386.788000pt;}
.yb4{bottom:397.346667pt;}
.y1e{bottom:403.266667pt;}
.y4d{bottom:405.188000pt;}
.yb3{bottom:418.146667pt;}
.y1d{bottom:421.666667pt;}
.y4c{bottom:423.588000pt;}
.yb2{bottom:436.546667pt;}
.y1c{bottom:440.066667pt;}
.y4b{bottom:441.988000pt;}
.yb1{bottom:454.946667pt;}
.y1b{bottom:458.466667pt;}
.y4a{bottom:460.388000pt;}
.yb0{bottom:475.746667pt;}
.y1a{bottom:476.866667pt;}
.y49{bottom:478.788000pt;}
.yaf{bottom:494.146667pt;}
.y19{bottom:495.266667pt;}
.y48{bottom:497.188000pt;}
.y66{bottom:500.066667pt;}
.yae{bottom:512.546667pt;}
.y18{bottom:513.666667pt;}
.y47{bottom:515.588000pt;}
.y17{bottom:532.066667pt;}
.y46{bottom:533.988000pt;}
.yad{bottom:552.066667pt;}
.y45{bottom:552.388000pt;}
.y16{bottom:568.866667pt;}
.y44{bottom:570.788000pt;}
.y15{bottom:587.266667pt;}
.y43{bottom:589.188000pt;}
.y42{bottom:607.588000pt;}
.y14{bottom:624.388000pt;}
.y41{bottom:625.988000pt;}
.y13{bottom:642.788000pt;}
.y40{bottom:644.388000pt;}
.y12{bottom:661.188000pt;}
.y3f{bottom:662.788000pt;}
.y11{bottom:679.588000pt;}
.y3e{bottom:681.188000pt;}
.y10{bottom:697.988000pt;}
.y3d{bottom:699.588000pt;}
.y3c{bottom:717.988000pt;}
.yf{bottom:734.946667pt;}
.y3b{bottom:736.388000pt;}
.ye{bottom:753.346667pt;}
.y3a{bottom:754.788000pt;}
.y39{bottom:773.188000pt;}
.y5a{bottom:781.400000pt;}
.yd{bottom:790.466667pt;}
.y38{bottom:791.588000pt;}
.yc{bottom:808.866667pt;}
.y37{bottom:809.988000pt;}
.yb{bottom:827.266667pt;}
.y36{bottom:828.388000pt;}
.ya{bottom:845.666667pt;}
.y35{bottom:846.788000pt;}
.y9{bottom:864.066667pt;}
.y34{bottom:865.188000pt;}
.y8{bottom:882.466667pt;}
.y33{bottom:883.588000pt;}
.y32{bottom:901.988000pt;}
.y7{bottom:919.588000pt;}
.y59{bottom:919.906667pt;}
.y31{bottom:920.388000pt;}
.y6{bottom:937.988000pt;}
.y30{bottom:938.788000pt;}
.y58{bottom:956.866667pt;}
.y2f{bottom:957.188000pt;}
.y2e{bottom:975.588000pt;}
.y2d{bottom:993.988000pt;}
.y2c{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h9{height:28.884375pt;}
.h7{height:28.904688pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.ha{height:44.437500pt;}
.h5{height:44.468750pt;}
.h6{height:50.019354pt;}
.h8{height:50.659354pt;}
.he{height:52.028906pt;}
.hf{height:52.065495pt;}
.hb{height:114.333333pt;}
.hc{height:279.266667pt;}
.hd{height:353.600000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w3{width:151.400000pt;}
.w4{width:166.000000pt;}
.w6{width:172.466667pt;}
.w5{width:197.533333pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.xa{left:45.600000pt;}
.x9{left:47.200000pt;}
.xb{left:65.600000pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x6{left:134.400000pt;}
.x8{left:141.600000pt;}
.x2{left:142.720000pt;}
.xc{left:198.933333pt;}
.x5{left:318.400000pt;}
.xd{left:366.866667pt;}
.x7{left:392.640000pt;}
.xe{left:566.333333pt;}
}




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