
    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_5412c399c54e32898f04a7bf.woff')format("woff");}.ff1{font-family:ff1;line-height:1.182129;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_a5f2910a4c12abec0fb4d431.woff')format("woff");}.ff2{font-family:ff2;line-height:1.219727;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_4d0f8b4bd60e8e25592083cb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_cd09044dd5872e0519dd3623.woff')format("woff");}.ff4{font-family:ff4;line-height:1.105957;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_ffbb58fd91ef3a4574de4a71.woff')format("woff");}.ff5{font-family:ff5;line-height:1.182129;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_20b2fcf1d73be88cda43d848.woff')format("woff");}.ff6{font-family:ff6;line-height:1.070312;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_03d6b1eabb953d9a9658042a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.157715;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_2568352400f8cacf02b58df2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.182129;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_55e98f165d03771df18a9110.woff')format("woff");}.ff9{font-family:ff9;line-height:1.096680;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);}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.826400px;}
.v2{vertical-align:16.773000px;}
.ls5{letter-spacing:-6.588000px;}
.lsd{letter-spacing:-3.105000px;}
.ls1b{letter-spacing:-2.268000px;}
.ls14{letter-spacing:-1.242000px;}
.lsf{letter-spacing:-1.104000px;}
.ls17{letter-spacing:-0.690000px;}
.ls12{letter-spacing:-0.483000px;}
.ls18{letter-spacing:-0.345000px;}
.ls11{letter-spacing:-0.276000px;}
.ls4{letter-spacing:-0.180000px;}
.ls21{letter-spacing:-0.081000px;}
.ls1e{letter-spacing:-0.069000px;}
.ls1{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.000300px;}
.ls15{letter-spacing:0.012300px;}
.lse{letter-spacing:0.075600px;}
.ls3{letter-spacing:0.240000px;}
.ls6{letter-spacing:1.764000px;}
.lsa{letter-spacing:2.400000px;}
.ls1c{letter-spacing:2.829000px;}
.ls1a{letter-spacing:2.898000px;}
.ls20{letter-spacing:2.967000px;}
.lsc{letter-spacing:3.036000px;}
.ls0{letter-spacing:4.200000px;}
.ls16{letter-spacing:5.475000px;}
.ls7{letter-spacing:5.760000px;}
.ls8{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls9{letter-spacing:6.300000px;}
.ls24{letter-spacing:6.375000px;}
.lsb{letter-spacing:7.350000px;}
.ls22{letter-spacing:7.950000px;}
.ls1f{letter-spacing:8.100000px;}
.ls10{letter-spacing:8.325000px;}
.ls1d{letter-spacing:8.700000px;}
.ls23{letter-spacing:8.820000px;}
.ls13{letter-spacing:10.515600px;}
.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;}
}
.ws1f{word-spacing:-29.775000px;}
.ws14{word-spacing:-29.400000px;}
.ws21{word-spacing:-29.175000px;}
.ws23{word-spacing:-29.025000px;}
.wsb{word-spacing:-28.425000px;}
.ws29{word-spacing:-27.450000px;}
.ws19{word-spacing:-26.550000px;}
.ws24{word-spacing:-26.523000px;}
.ws1{word-spacing:-23.760000px;}
.ws28{word-spacing:-22.860000px;}
.ws4{word-spacing:-22.740000px;}
.ws22{word-spacing:-22.680000px;}
.ws2{word-spacing:-22.620000px;}
.ws13{word-spacing:-19.389000px;}
.ws15{word-spacing:-18.906000px;}
.wsc{word-spacing:-18.102000px;}
.ws25{word-spacing:-17.703000px;}
.ws0{word-spacing:-17.100000px;}
.wsd{word-spacing:-17.043000px;}
.ws20{word-spacing:-16.974000px;}
.ws2a{word-spacing:-16.860000px;}
.ws1a{word-spacing:-16.698000px;}
.ws11{word-spacing:-15.939000px;}
.ws17{word-spacing:-15.801000px;}
.ws27{word-spacing:-15.561000px;}
.ws18{word-spacing:-15.174000px;}
.ws3{word-spacing:-14.820000px;}
.wse{word-spacing:-13.938000px;}
.ws1b{word-spacing:-13.338000px;}
.ws12{word-spacing:-11.303787px;}
.ws1d{word-spacing:-11.070000px;}
.ws5{word-spacing:-9.829380px;}
.ws26{word-spacing:-6.300000px;}
.ws7{word-spacing:-6.000000px;}
.wsa{word-spacing:-4.200000px;}
.ws10{word-spacing:-3.036000px;}
.ws1e{word-spacing:-2.898000px;}
.wsf{word-spacing:-2.400000px;}
.ws9{word-spacing:-1.764000px;}
.ws6{word-spacing:0.000000px;}
.ws8{word-spacing:0.180000px;}
.ws16{word-spacing:0.276000px;}
.ws1c{word-spacing:0.690000px;}
._21{margin-left:-18.507600px;}
._a{margin-left:-8.645700px;}
._1a{margin-left:-7.306800px;}
._c{margin-left:-6.054000px;}
._9{margin-left:-4.117200px;}
._3{margin-left:-2.828100px;}
._4{margin-left:-1.002300px;}
._5{width:1.008000px;}
._1{width:2.400000px;}
._b{width:3.918600px;}
._6{width:5.760000px;}
._7{width:7.722000px;}
._8{width:9.606000px;}
._d{width:10.856400px;}
._e{width:12.078000px;}
._23{width:13.863600px;}
._1b{width:15.105900px;}
._1e{width:16.129200px;}
._12{width:19.347000px;}
._11{width:21.800400px;}
._10{width:22.821600px;}
._20{width:24.091200px;}
._17{width:25.246800px;}
._16{width:27.058800px;}
._22{width:28.704000px;}
._24{width:35.739900px;}
._18{width:43.445160px;}
._f{width:85.554000px;}
._13{width:260.610000px;}
._19{width:486.405000px;}
._1d{width:489.735000px;}
._14{width:491.482200px;}
._25{width:496.444200px;}
._0{width:578.400000px;}
._15{width:993.211200px;}
._1f{width:996.331200px;}
._2{width:1000.381200px;}
._1c{width:1002.361200px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fs6{font-size:34.980000px;}
.fs9{font-size:40.227000px;}
.fs5{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fsc{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y49{bottom:106.165350px;}
.yab{bottom:106.263300px;}
.y8c{bottom:106.268850px;}
.yf1{bottom:106.284300px;}
.y6b{bottom:106.290300px;}
.y150{bottom:106.293300px;}
.ycd{bottom:106.296300px;}
.y20{bottom:106.305300px;}
.y16e{bottom:106.321800px;}
.y12f{bottom:106.569150px;}
.yaa{bottom:123.516300px;}
.yf0{bottom:123.537300px;}
.y6a{bottom:123.543300px;}
.y14f{bottom:123.546300px;}
.y16d{bottom:125.866800px;}
.ycc{bottom:126.544800px;}
.y48{bottom:126.589350px;}
.y12e{bottom:126.906900px;}
.y8b{bottom:127.227600px;}
.y1f{bottom:127.410300px;}
.ya9{bottom:140.769300px;}
.yef{bottom:140.790300px;}
.y69{bottom:140.796300px;}
.y14e{bottom:143.794800px;}
.y16c{bottom:145.411800px;}
.y47{bottom:147.013350px;}
.y8a{bottom:148.186350px;}
.y1e{bottom:148.533600px;}
.ya8{bottom:158.022300px;}
.yee{bottom:158.043300px;}
.y68{bottom:161.044800px;}
.y193{bottom:164.442750px;}
.y16b{bottom:164.956800px;}
.y46{bottom:167.437350px;}
.y12d{bottom:167.599650px;}
.y1d{bottom:168.138600px;}
.ycb{bottom:170.542350px;}
.ya7{bottom:175.275300px;}
.yed{bottom:175.296300px;}
.y16a{bottom:184.501800px;}
.y192{bottom:184.692750px;}
.y1c{bottom:187.782000px;}
.y45{bottom:187.861350px;}
.y14d{bottom:187.906650px;}
.y12c{bottom:187.937400px;}
.y89{bottom:190.103850px;}
.yca{bottom:190.880100px;}
.ya6{bottom:192.528300px;}
.y10a{bottom:193.501800px;}
.yec{bottom:195.544800px;}
.y169{bottom:204.046800px;}
.y191{bottom:204.942750px;}
.y1b{bottom:207.387000px;}
.y12b{bottom:208.275150px;}
.y44{bottom:208.285350px;}
.y14c{bottom:208.728150px;}
.ya5{bottom:209.781300px;}
.y88{bottom:211.062600px;}
.yc9{bottom:211.217850px;}
.y109{bottom:216.375300px;}
.y168{bottom:223.591800px;}
.y190{bottom:225.192750px;}
.y67{bottom:225.760200px;}
.y1a{bottom:226.992000px;}
.ya4{bottom:227.034300px;}
.y12a{bottom:228.612900px;}
.y43{bottom:228.709350px;}
.yc8{bottom:231.555600px;}
.y14b{bottom:238.054650px;}
.y108{bottom:239.248800px;}
.yeb{bottom:239.674050px;}
.ya3{bottom:244.287300px;}
.y66{bottom:246.270450px;}
.y19{bottom:246.597000px;}
.y129{bottom:248.950650px;}
.y42{bottom:249.133350px;}
.yc7{bottom:251.893350px;}
.y87{bottom:252.980100px;}
.y167{bottom:255.901800px;}
.y18f{bottom:258.192750px;}
.y14a{bottom:258.876150px;}
.yea{bottom:260.391300px;}
.ya2{bottom:261.540300px;}
.y107{bottom:262.122300px;}
.y18{bottom:266.202000px;}
.y128{bottom:269.288400px;}
.y41{bottom:269.557350px;}
.yc6{bottom:272.231100px;}
.y86{bottom:273.938850px;}
.ya1{bottom:278.793300px;}
.ye9{bottom:281.108550px;}
.y106{bottom:284.995800px;}
.y65{bottom:287.308200px;}
.y149{bottom:288.202650px;}
.y127{bottom:289.626150px;}
.y40{bottom:289.981350px;}
.yc5{bottom:292.568850px;}
.y17{bottom:294.312000px;}
.ya0{bottom:296.046300px;}
.y18e{bottom:299.697750px;}
.ye8{bottom:301.825800px;}
.y64{bottom:307.818450px;}
.y105{bottom:307.869300px;}
.y148{bottom:309.024150px;}
.y126{bottom:309.963900px;}
.y3f{bottom:310.405350px;}
.yc4{bottom:312.906600px;}
.y166{bottom:313.720500px;}
.y85{bottom:315.856350px;}
.y9f{bottom:316.294800px;}
.y18d{bottom:319.197750px;}
.ye7{bottom:322.543050px;}
.y63{bottom:328.328700px;}
.y125{bottom:330.301650px;}
.y104{bottom:330.742800px;}
.y3e{bottom:330.829350px;}
.yc3{bottom:333.244350px;}
.y84{bottom:336.815100px;}
.y147{bottom:338.350650px;}
.y18c{bottom:338.697750px;}
.y16{bottom:339.432000px;}
.y165{bottom:340.768500px;}
.ye6{bottom:343.260300px;}
.y62{bottom:348.838950px;}
.y124{bottom:350.639400px;}
.y3d{bottom:351.253350px;}
.yc2{bottom:353.582100px;}
.y103{bottom:353.616300px;}
.y83{bottom:357.773850px;}
.y18b{bottom:358.197750px;}
.y146{bottom:359.172150px;}
.y15{bottom:360.537000px;}
.ye5{bottom:363.977550px;}
.y123{bottom:370.977150px;}
.y3c{bottom:371.677350px;}
.yc1{bottom:373.919850px;}
.y102{bottom:376.489800px;}
.y18a{bottom:377.697750px;}
.y82{bottom:378.732600px;}
.y145{bottom:379.993650px;}
.y14{bottom:381.689700px;}
.y9e{bottom:382.930650px;}
.ye4{bottom:384.694800px;}
.y61{bottom:389.876700px;}
.y3b{bottom:392.101350px;}
.yc0{bottom:394.257600px;}
.y189{bottom:397.197750px;}
.y101{bottom:399.363300px;}
.y81{bottom:399.691350px;}
.y13{bottom:401.294700px;}
.ye3{bottom:405.412050px;}
.y9d{bottom:405.528150px;}
.y144{bottom:409.320150px;}
.y60{bottom:410.386950px;}
.y122{bottom:411.669900px;}
.y3a{bottom:412.525350px;}
.ybf{bottom:414.595350px;}
.y188{bottom:416.697750px;}
.y80{bottom:420.650100px;}
.y12{bottom:420.899700px;}
.y100{bottom:422.236800px;}
.ye2{bottom:426.129300px;}
.y9c{bottom:428.125650px;}
.y164{bottom:429.623850px;}
.y143{bottom:430.141650px;}
.y5f{bottom:430.897200px;}
.y121{bottom:432.007650px;}
.y39{bottom:432.949350px;}
.ybe{bottom:434.933100px;}
.y187{bottom:436.197750px;}
.y11{bottom:440.504700px;}
.y7f{bottom:441.608850px;}
.yff{bottom:445.110300px;}
.ye1{bottom:446.846550px;}
.y163{bottom:449.925600px;}
.y9b{bottom:450.723150px;}
.y5e{bottom:451.407450px;}
.y120{bottom:452.345400px;}
.y38{bottom:453.373350px;}
.ybd{bottom:455.270850px;}
.y186{bottom:455.697750px;}
.y142{bottom:459.468150px;}
.y10{bottom:460.109700px;}
.y7e{bottom:462.567600px;}
.ye0{bottom:467.563800px;}
.y162{bottom:470.227350px;}
.y11f{bottom:472.683150px;}
.y37{bottom:473.797350px;}
.y185{bottom:475.197750px;}
.ybc{bottom:475.608600px;}
.yf{bottom:479.714700px;}
.y141{bottom:480.289650px;}
.y7d{bottom:483.526350px;}
.ydf{bottom:488.281050px;}
.yfe{bottom:490.874550px;}
.y5d{bottom:492.445200px;}
.y11e{bottom:493.020900px;}
.y36{bottom:494.221350px;}
.y184{bottom:494.697750px;}
.y9a{bottom:495.918150px;}
.ybb{bottom:495.946350px;}
.y161{bottom:499.034100px;}
.ye{bottom:499.319700px;}
.y7c{bottom:504.485100px;}
.yde{bottom:508.998300px;}
.y140{bottom:509.616150px;}
.y5c{bottom:512.955450px;}
.y11d{bottom:513.358650px;}
.yfd{bottom:513.748050px;}
.y183{bottom:514.197750px;}
.y35{bottom:514.645350px;}
.yba{bottom:516.284100px;}
.y99{bottom:518.515650px;}
.y160{bottom:519.335850px;}
.y7b{bottom:525.443850px;}
.yd{bottom:527.429700px;}
.ydd{bottom:529.715550px;}
.y13f{bottom:530.437650px;}
.y5b{bottom:533.465700px;}
.y11c{bottom:533.696400px;}
.y182{bottom:533.697750px;}
.y34{bottom:535.069350px;}
.yfc{bottom:536.621550px;}
.yb9{bottom:536.621850px;}
.y15f{bottom:539.637600px;}
.y98{bottom:541.113150px;}
.y7a{bottom:546.402600px;}
.ydc{bottom:550.432800px;}
.y181{bottom:553.197750px;}
.y5a{bottom:553.975950px;}
.y11b{bottom:554.034150px;}
.y33{bottom:555.493350px;}
.yb8{bottom:556.959600px;}
.y13e{bottom:559.764150px;}
.y79{bottom:567.361350px;}
.y15e{bottom:568.444350px;}
.ydb{bottom:571.150050px;}
.y180{bottom:572.697750px;}
.y11a{bottom:574.371900px;}
.y59{bottom:574.486200px;}
.y32{bottom:575.917350px;}
.yb7{bottom:577.297350px;}
.yc{bottom:581.056650px;}
.yfb{bottom:582.385800px;}
.y97{bottom:586.336350px;}
.y78{bottom:588.320100px;}
.y15d{bottom:588.746100px;}
.yda{bottom:591.867300px;}
.y17f{bottom:592.197750px;}
.y119{bottom:594.709650px;}
.y58{bottom:594.996450px;}
.y31{bottom:596.341350px;}
.yb6{bottom:597.635100px;}
.yfa{bottom:605.259300px;}
.yb{bottom:608.167650px;}
.y96{bottom:608.933850px;}
.y77{bottom:609.278850px;}
.y13d{bottom:611.136000px;}
.y17e{bottom:611.697750px;}
.yd9{bottom:612.584550px;}
.y118{bottom:615.047400px;}
.y57{bottom:615.506700px;}
.y30{bottom:616.765350px;}
.y15c{bottom:617.552850px;}
.yb5{bottom:617.972850px;}
.y76{bottom:630.237600px;}
.y17d{bottom:631.197750px;}
.y95{bottom:631.531350px;}
.y13c{bottom:631.956750px;}
.yd8{bottom:633.301800px;}
.y117{bottom:635.385150px;}
.y56{bottom:636.016950px;}
.y2f{bottom:637.189350px;}
.y15b{bottom:637.854600px;}
.yb4{bottom:638.310600px;}
.y17c{bottom:650.697750px;}
.yf9{bottom:651.023550px;}
.y75{bottom:651.196350px;}
.y13b{bottom:652.777500px;}
.yd7{bottom:654.019050px;}
.y94{bottom:654.128850px;}
.y116{bottom:655.722900px;}
.ya{bottom:656.526750px;}
.y55{bottom:656.527200px;}
.y2e{bottom:657.613350px;}
.yb3{bottom:658.648350px;}
.y15a{bottom:666.661350px;}
.y17b{bottom:670.197750px;}
.y74{bottom:672.155100px;}
.y13a{bottom:673.598250px;}
.yd6{bottom:674.736300px;}
.y115{bottom:676.060650px;}
.y93{bottom:676.726350px;}
.y54{bottom:677.037450px;}
.y2d{bottom:678.037350px;}
.y159{bottom:686.963100px;}
.y9{bottom:688.143750px;}
.y17a{bottom:689.697750px;}
.y73{bottom:693.113850px;}
.y139{bottom:694.493850px;}
.y114{bottom:696.398400px;}
.yf8{bottom:696.787800px;}
.y53{bottom:697.547700px;}
.y2c{bottom:698.461350px;}
.y92{bottom:699.323850px;}
.y179{bottom:709.197750px;}
.y72{bottom:714.072600px;}
.y138{bottom:715.314600px;}
.y158{bottom:715.769850px;}
.yd5{bottom:716.188050px;}
.y113{bottom:716.736150px;}
.y52{bottom:718.057950px;}
.y2b{bottom:718.885350px;}
.yf7{bottom:719.661300px;}
.yb2{bottom:719.661600px;}
.y8{bottom:719.760750px;}
.y178{bottom:728.697750px;}
.y71{bottom:735.031350px;}
.y157{bottom:736.071600px;}
.y137{bottom:736.135350px;}
.y112{bottom:737.073900px;}
.y51{bottom:738.568200px;}
.y2a{bottom:739.309350px;}
.yb1{bottom:739.999350px;}
.y91{bottom:744.518850px;}
.y177{bottom:748.197750px;}
.y70{bottom:755.990100px;}
.y136{bottom:756.956100px;}
.y111{bottom:757.411650px;}
.yd4{bottom:757.680600px;}
.y50{bottom:759.078450px;}
.y29{bottom:759.733350px;}
.y156{bottom:764.878350px;}
.yf6{bottom:765.425550px;}
.y90{bottom:767.116350px;}
.y176{bottom:767.697750px;}
.y110{bottom:777.749400px;}
.y135{bottom:777.776850px;}
.yd3{bottom:778.397850px;}
.y4f{bottom:779.639850px;}
.y28{bottom:780.157350px;}
.yb0{bottom:780.674850px;}
.y7{bottom:781.157850px;}
.y155{bottom:785.180100px;}
.y175{bottom:787.197750px;}
.yf5{bottom:788.299050px;}
.y6f{bottom:797.907600px;}
.y10f{bottom:798.087150px;}
.y134{bottom:798.597600px;}
.yd2{bottom:799.115100px;}
.y4e{bottom:800.150100px;}
.y27{bottom:800.581350px;}
.yaf{bottom:801.012600px;}
.y174{bottom:806.697750px;}
.y6{bottom:810.767850px;}
.y8f{bottom:812.311350px;}
.y154{bottom:813.986850px;}
.y10e{bottom:818.424900px;}
.y6e{bottom:818.866350px;}
.y133{bottom:819.418350px;}
.yd1{bottom:819.832350px;}
.y4d{bottom:820.660350px;}
.y26{bottom:821.005350px;}
.y173{bottom:826.197750px;}
.y5{bottom:831.872850px;}
.yf4{bottom:834.080850px;}
.y153{bottom:834.288600px;}
.y8e{bottom:834.908850px;}
.y10d{bottom:838.762650px;}
.y132{bottom:840.239100px;}
.yd0{bottom:840.549600px;}
.y4c{bottom:841.170600px;}
.y25{bottom:841.429350px;}
.yae{bottom:841.688100px;}
.y172{bottom:845.697750px;}
.y4{bottom:852.977850px;}
.yf3{bottom:856.954350px;}
.y10c{bottom:859.100400px;}
.y6d{bottom:860.783850px;}
.y131{bottom:861.059850px;}
.ycf{bottom:861.266850px;}
.y4b{bottom:861.680850px;}
.y24{bottom:861.853350px;}
.yad{bottom:862.025850px;}
.y152{bottom:863.095350px;}
.y171{bottom:865.197750px;}
.yf2{bottom:879.827850px;}
.y8d{bottom:880.103850px;}
.y6c{bottom:881.742600px;}
.y130{bottom:881.880600px;}
.yce{bottom:881.984100px;}
.y4a{bottom:882.191100px;}
.y23{bottom:882.277350px;}
.yac{bottom:882.363600px;}
.y3{bottom:882.587850px;}
.y151{bottom:883.397100px;}
.y170{bottom:884.697750px;}
.y10b{bottom:900.706200px;}
.y22{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y16f{bottom:904.197750px;}
.y21{bottom:948.189000px;}
.hc{height:37.983820px;}
.h11{height:39.987727px;}
.h8{height:44.414062px;}
.hd{height:49.965820px;}
.he{height:51.969727px;}
.h4{height:55.517578px;}
.hb{height:57.578613px;}
.h7{height:57.744141px;}
.h3{height:58.293457px;}
.h10{height:59.600098px;}
.h14{height:60.631348px;}
.hf{height:63.777832px;}
.h9{height:63.845215px;}
.h13{height:66.106362px;}
.ha{height:66.405762px;}
.h2{height:69.396973px;}
.h12{height:74.948730px;}
.h6{height:77.724609px;}
.h5{height:99.931641px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:80.929950px;}
.x7{left:82.430700px;}
.x8{left:84.000450px;}
.x1{left:85.039350px;}
.x9{left:102.511650px;}
.x4{left:104.220600px;}
.x5{left:105.925200px;}
.xa{left:133.162800px;}
.x3{left:231.330300px;}
.x2{left:233.491050px;}
@media print{
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.290133pt;}
.v2{vertical-align:14.909333pt;}
.ls5{letter-spacing:-5.856000pt;}
.lsd{letter-spacing:-2.760000pt;}
.ls1b{letter-spacing:-2.016000pt;}
.ls14{letter-spacing:-1.104000pt;}
.lsf{letter-spacing:-0.981333pt;}
.ls17{letter-spacing:-0.613333pt;}
.ls12{letter-spacing:-0.429333pt;}
.ls18{letter-spacing:-0.306667pt;}
.ls11{letter-spacing:-0.245333pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls21{letter-spacing:-0.072000pt;}
.ls1e{letter-spacing:-0.061333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.000267pt;}
.ls15{letter-spacing:0.010933pt;}
.lse{letter-spacing:0.067200pt;}
.ls3{letter-spacing:0.213333pt;}
.ls6{letter-spacing:1.568000pt;}
.lsa{letter-spacing:2.133333pt;}
.ls1c{letter-spacing:2.514667pt;}
.ls1a{letter-spacing:2.576000pt;}
.ls20{letter-spacing:2.637333pt;}
.lsc{letter-spacing:2.698667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls16{letter-spacing:4.866667pt;}
.ls7{letter-spacing:5.120000pt;}
.ls8{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls9{letter-spacing:5.600000pt;}
.ls24{letter-spacing:5.666667pt;}
.lsb{letter-spacing:6.533333pt;}
.ls22{letter-spacing:7.066667pt;}
.ls1f{letter-spacing:7.200000pt;}
.ls10{letter-spacing:7.400000pt;}
.ls1d{letter-spacing:7.733333pt;}
.ls23{letter-spacing:7.840000pt;}
.ls13{letter-spacing:9.347200pt;}
.ws1f{word-spacing:-26.466667pt;}
.ws14{word-spacing:-26.133333pt;}
.ws21{word-spacing:-25.933333pt;}
.ws23{word-spacing:-25.800000pt;}
.wsb{word-spacing:-25.266667pt;}
.ws29{word-spacing:-24.400000pt;}
.ws19{word-spacing:-23.600000pt;}
.ws24{word-spacing:-23.576000pt;}
.ws1{word-spacing:-21.120000pt;}
.ws28{word-spacing:-20.320000pt;}
.ws4{word-spacing:-20.213333pt;}
.ws22{word-spacing:-20.160000pt;}
.ws2{word-spacing:-20.106667pt;}
.ws13{word-spacing:-17.234667pt;}
.ws15{word-spacing:-16.805333pt;}
.wsc{word-spacing:-16.090667pt;}
.ws25{word-spacing:-15.736000pt;}
.ws0{word-spacing:-15.200000pt;}
.wsd{word-spacing:-15.149333pt;}
.ws20{word-spacing:-15.088000pt;}
.ws2a{word-spacing:-14.986667pt;}
.ws1a{word-spacing:-14.842667pt;}
.ws11{word-spacing:-14.168000pt;}
.ws17{word-spacing:-14.045333pt;}
.ws27{word-spacing:-13.832000pt;}
.ws18{word-spacing:-13.488000pt;}
.ws3{word-spacing:-13.173333pt;}
.wse{word-spacing:-12.389333pt;}
.ws1b{word-spacing:-11.856000pt;}
.ws12{word-spacing:-10.047811pt;}
.ws1d{word-spacing:-9.840000pt;}
.ws5{word-spacing:-8.737227pt;}
.ws26{word-spacing:-5.600000pt;}
.ws7{word-spacing:-5.333333pt;}
.wsa{word-spacing:-3.733333pt;}
.ws10{word-spacing:-2.698667pt;}
.ws1e{word-spacing:-2.576000pt;}
.wsf{word-spacing:-2.133333pt;}
.ws9{word-spacing:-1.568000pt;}
.ws6{word-spacing:0.000000pt;}
.ws8{word-spacing:0.160000pt;}
.ws16{word-spacing:0.245333pt;}
.ws1c{word-spacing:0.613333pt;}
._21{margin-left:-16.451200pt;}
._a{margin-left:-7.685067pt;}
._1a{margin-left:-6.494933pt;}
._c{margin-left:-5.381333pt;}
._9{margin-left:-3.659733pt;}
._3{margin-left:-2.513867pt;}
._4{margin-left:-0.890933pt;}
._5{width:0.896000pt;}
._1{width:2.133333pt;}
._b{width:3.483200pt;}
._6{width:5.120000pt;}
._7{width:6.864000pt;}
._8{width:8.538667pt;}
._d{width:9.650133pt;}
._e{width:10.736000pt;}
._23{width:12.323200pt;}
._1b{width:13.427467pt;}
._1e{width:14.337067pt;}
._12{width:17.197333pt;}
._11{width:19.378133pt;}
._10{width:20.285867pt;}
._20{width:21.414400pt;}
._17{width:22.441600pt;}
._16{width:24.052267pt;}
._22{width:25.514667pt;}
._24{width:31.768800pt;}
._18{width:38.617920pt;}
._f{width:76.048000pt;}
._13{width:231.653333pt;}
._19{width:432.360000pt;}
._1d{width:435.320000pt;}
._14{width:436.873067pt;}
._25{width:441.283733pt;}
._0{width:514.133333pt;}
._15{width:882.854400pt;}
._1f{width:885.627733pt;}
._2{width:889.227733pt;}
._1c{width:890.987733pt;}
.fsa{font-size:27.984000pt;}
.fs6{font-size:31.093333pt;}
.fs9{font-size:35.757333pt;}
.fs5{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fsc{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y49{bottom:94.369200pt;}
.yab{bottom:94.456267pt;}
.y8c{bottom:94.461200pt;}
.yf1{bottom:94.474933pt;}
.y6b{bottom:94.480267pt;}
.y150{bottom:94.482933pt;}
.ycd{bottom:94.485600pt;}
.y20{bottom:94.493600pt;}
.y16e{bottom:94.508267pt;}
.y12f{bottom:94.728133pt;}
.yaa{bottom:109.792267pt;}
.yf0{bottom:109.810933pt;}
.y6a{bottom:109.816267pt;}
.y14f{bottom:109.818933pt;}
.y16d{bottom:111.881600pt;}
.ycc{bottom:112.484267pt;}
.y48{bottom:112.523867pt;}
.y12e{bottom:112.806133pt;}
.y8b{bottom:113.091200pt;}
.y1f{bottom:113.253600pt;}
.ya9{bottom:125.128267pt;}
.yef{bottom:125.146933pt;}
.y69{bottom:125.152267pt;}
.y14e{bottom:127.817600pt;}
.y16c{bottom:129.254933pt;}
.y47{bottom:130.678533pt;}
.y8a{bottom:131.721200pt;}
.y1e{bottom:132.029867pt;}
.ya8{bottom:140.464267pt;}
.yee{bottom:140.482933pt;}
.y68{bottom:143.150933pt;}
.y193{bottom:146.171333pt;}
.y16b{bottom:146.628267pt;}
.y46{bottom:148.833200pt;}
.y12d{bottom:148.977467pt;}
.y1d{bottom:149.456533pt;}
.ycb{bottom:151.593200pt;}
.ya7{bottom:155.800267pt;}
.yed{bottom:155.818933pt;}
.y16a{bottom:164.001600pt;}
.y192{bottom:164.171333pt;}
.y1c{bottom:166.917333pt;}
.y45{bottom:166.987867pt;}
.y14d{bottom:167.028133pt;}
.y12c{bottom:167.055467pt;}
.y89{bottom:168.981200pt;}
.yca{bottom:169.671200pt;}
.ya6{bottom:171.136267pt;}
.y10a{bottom:172.001600pt;}
.yec{bottom:173.817600pt;}
.y169{bottom:181.374933pt;}
.y191{bottom:182.171333pt;}
.y1b{bottom:184.344000pt;}
.y12b{bottom:185.133467pt;}
.y44{bottom:185.142533pt;}
.y14c{bottom:185.536133pt;}
.ya5{bottom:186.472267pt;}
.y88{bottom:187.611200pt;}
.yc9{bottom:187.749200pt;}
.y109{bottom:192.333600pt;}
.y168{bottom:198.748267pt;}
.y190{bottom:200.171333pt;}
.y67{bottom:200.675733pt;}
.y1a{bottom:201.770667pt;}
.ya4{bottom:201.808267pt;}
.y12a{bottom:203.211467pt;}
.y43{bottom:203.297200pt;}
.yc8{bottom:205.827200pt;}
.y14b{bottom:211.604133pt;}
.y108{bottom:212.665600pt;}
.yeb{bottom:213.043600pt;}
.ya3{bottom:217.144267pt;}
.y66{bottom:218.907067pt;}
.y19{bottom:219.197333pt;}
.y129{bottom:221.289467pt;}
.y42{bottom:221.451867pt;}
.yc7{bottom:223.905200pt;}
.y87{bottom:224.871200pt;}
.y167{bottom:227.468267pt;}
.y18f{bottom:229.504667pt;}
.y14a{bottom:230.112133pt;}
.yea{bottom:231.458933pt;}
.ya2{bottom:232.480267pt;}
.y107{bottom:232.997600pt;}
.y18{bottom:236.624000pt;}
.y128{bottom:239.367467pt;}
.y41{bottom:239.606533pt;}
.yc6{bottom:241.983200pt;}
.y86{bottom:243.501200pt;}
.ya1{bottom:247.816267pt;}
.ye9{bottom:249.874267pt;}
.y106{bottom:253.329600pt;}
.y65{bottom:255.385067pt;}
.y149{bottom:256.180133pt;}
.y127{bottom:257.445467pt;}
.y40{bottom:257.761200pt;}
.yc5{bottom:260.061200pt;}
.y17{bottom:261.610667pt;}
.ya0{bottom:263.152267pt;}
.y18e{bottom:266.398000pt;}
.ye8{bottom:268.289600pt;}
.y64{bottom:273.616400pt;}
.y105{bottom:273.661600pt;}
.y148{bottom:274.688133pt;}
.y126{bottom:275.523467pt;}
.y3f{bottom:275.915867pt;}
.yc4{bottom:278.139200pt;}
.y166{bottom:278.862667pt;}
.y85{bottom:280.761200pt;}
.y9f{bottom:281.150933pt;}
.y18d{bottom:283.731333pt;}
.ye7{bottom:286.704933pt;}
.y63{bottom:291.847733pt;}
.y125{bottom:293.601467pt;}
.y104{bottom:293.993600pt;}
.y3e{bottom:294.070533pt;}
.yc3{bottom:296.217200pt;}
.y84{bottom:299.391200pt;}
.y147{bottom:300.756133pt;}
.y18c{bottom:301.064667pt;}
.y16{bottom:301.717333pt;}
.y165{bottom:302.905333pt;}
.ye6{bottom:305.120267pt;}
.y62{bottom:310.079067pt;}
.y124{bottom:311.679467pt;}
.y3d{bottom:312.225200pt;}
.yc2{bottom:314.295200pt;}
.y103{bottom:314.325600pt;}
.y83{bottom:318.021200pt;}
.y18b{bottom:318.398000pt;}
.y146{bottom:319.264133pt;}
.y15{bottom:320.477333pt;}
.ye5{bottom:323.535600pt;}
.y123{bottom:329.757467pt;}
.y3c{bottom:330.379867pt;}
.yc1{bottom:332.373200pt;}
.y102{bottom:334.657600pt;}
.y18a{bottom:335.731333pt;}
.y82{bottom:336.651200pt;}
.y145{bottom:337.772133pt;}
.y14{bottom:339.279733pt;}
.y9e{bottom:340.382800pt;}
.ye4{bottom:341.950933pt;}
.y61{bottom:346.557067pt;}
.y3b{bottom:348.534533pt;}
.yc0{bottom:350.451200pt;}
.y189{bottom:353.064667pt;}
.y101{bottom:354.989600pt;}
.y81{bottom:355.281200pt;}
.y13{bottom:356.706400pt;}
.ye3{bottom:360.366267pt;}
.y9d{bottom:360.469467pt;}
.y144{bottom:363.840133pt;}
.y60{bottom:364.788400pt;}
.y122{bottom:365.928800pt;}
.y3a{bottom:366.689200pt;}
.ybf{bottom:368.529200pt;}
.y188{bottom:370.398000pt;}
.y80{bottom:373.911200pt;}
.y12{bottom:374.133067pt;}
.y100{bottom:375.321600pt;}
.ye2{bottom:378.781600pt;}
.y9c{bottom:380.556133pt;}
.y164{bottom:381.887867pt;}
.y143{bottom:382.348133pt;}
.y5f{bottom:383.019733pt;}
.y121{bottom:384.006800pt;}
.y39{bottom:384.843867pt;}
.ybe{bottom:386.607200pt;}
.y187{bottom:387.731333pt;}
.y11{bottom:391.559733pt;}
.y7f{bottom:392.541200pt;}
.yff{bottom:395.653600pt;}
.ye1{bottom:397.196933pt;}
.y163{bottom:399.933867pt;}
.y9b{bottom:400.642800pt;}
.y5e{bottom:401.251067pt;}
.y120{bottom:402.084800pt;}
.y38{bottom:402.998533pt;}
.ybd{bottom:404.685200pt;}
.y186{bottom:405.064667pt;}
.y142{bottom:408.416133pt;}
.y10{bottom:408.986400pt;}
.y7e{bottom:411.171200pt;}
.ye0{bottom:415.612267pt;}
.y162{bottom:417.979867pt;}
.y11f{bottom:420.162800pt;}
.y37{bottom:421.153200pt;}
.y185{bottom:422.398000pt;}
.ybc{bottom:422.763200pt;}
.yf{bottom:426.413067pt;}
.y141{bottom:426.924133pt;}
.y7d{bottom:429.801200pt;}
.ydf{bottom:434.027600pt;}
.yfe{bottom:436.332933pt;}
.y5d{bottom:437.729067pt;}
.y11e{bottom:438.240800pt;}
.y36{bottom:439.307867pt;}
.y184{bottom:439.731333pt;}
.y9a{bottom:440.816133pt;}
.ybb{bottom:440.841200pt;}
.y161{bottom:443.585867pt;}
.ye{bottom:443.839733pt;}
.y7c{bottom:448.431200pt;}
.yde{bottom:452.442933pt;}
.y140{bottom:452.992133pt;}
.y5c{bottom:455.960400pt;}
.y11d{bottom:456.318800pt;}
.yfd{bottom:456.664933pt;}
.y183{bottom:457.064667pt;}
.y35{bottom:457.462533pt;}
.yba{bottom:458.919200pt;}
.y99{bottom:460.902800pt;}
.y160{bottom:461.631867pt;}
.y7b{bottom:467.061200pt;}
.yd{bottom:468.826400pt;}
.ydd{bottom:470.858267pt;}
.y13f{bottom:471.500133pt;}
.y5b{bottom:474.191733pt;}
.y11c{bottom:474.396800pt;}
.y182{bottom:474.398000pt;}
.y34{bottom:475.617200pt;}
.yfc{bottom:476.996933pt;}
.yb9{bottom:476.997200pt;}
.y15f{bottom:479.677867pt;}
.y98{bottom:480.989467pt;}
.y7a{bottom:485.691200pt;}
.ydc{bottom:489.273600pt;}
.y181{bottom:491.731333pt;}
.y5a{bottom:492.423067pt;}
.y11b{bottom:492.474800pt;}
.y33{bottom:493.771867pt;}
.yb8{bottom:495.075200pt;}
.y13e{bottom:497.568133pt;}
.y79{bottom:504.321200pt;}
.y15e{bottom:505.283867pt;}
.ydb{bottom:507.688933pt;}
.y180{bottom:509.064667pt;}
.y11a{bottom:510.552800pt;}
.y59{bottom:510.654400pt;}
.y32{bottom:511.926533pt;}
.yb7{bottom:513.153200pt;}
.yc{bottom:516.494800pt;}
.yfb{bottom:517.676267pt;}
.y97{bottom:521.187867pt;}
.y78{bottom:522.951200pt;}
.y15d{bottom:523.329867pt;}
.yda{bottom:526.104267pt;}
.y17f{bottom:526.398000pt;}
.y119{bottom:528.630800pt;}
.y58{bottom:528.885733pt;}
.y31{bottom:530.081200pt;}
.yb6{bottom:531.231200pt;}
.yfa{bottom:538.008267pt;}
.yb{bottom:540.593467pt;}
.y96{bottom:541.274533pt;}
.y77{bottom:541.581200pt;}
.y13d{bottom:543.232000pt;}
.y17e{bottom:543.731333pt;}
.yd9{bottom:544.519600pt;}
.y118{bottom:546.708800pt;}
.y57{bottom:547.117067pt;}
.y30{bottom:548.235867pt;}
.y15c{bottom:548.935867pt;}
.yb5{bottom:549.309200pt;}
.y76{bottom:560.211200pt;}
.y17d{bottom:561.064667pt;}
.y95{bottom:561.361200pt;}
.y13c{bottom:561.739333pt;}
.yd8{bottom:562.934933pt;}
.y117{bottom:564.786800pt;}
.y56{bottom:565.348400pt;}
.y2f{bottom:566.390533pt;}
.y15b{bottom:566.981867pt;}
.yb4{bottom:567.387200pt;}
.y17c{bottom:578.398000pt;}
.yf9{bottom:578.687600pt;}
.y75{bottom:578.841200pt;}
.y13b{bottom:580.246667pt;}
.yd7{bottom:581.350267pt;}
.y94{bottom:581.447867pt;}
.y116{bottom:582.864800pt;}
.ya{bottom:583.579333pt;}
.y55{bottom:583.579733pt;}
.y2e{bottom:584.545200pt;}
.yb3{bottom:585.465200pt;}
.y15a{bottom:592.587867pt;}
.y17b{bottom:595.731333pt;}
.y74{bottom:597.471200pt;}
.y13a{bottom:598.754000pt;}
.yd6{bottom:599.765600pt;}
.y115{bottom:600.942800pt;}
.y93{bottom:601.534533pt;}
.y54{bottom:601.811067pt;}
.y2d{bottom:602.699867pt;}
.y159{bottom:610.633867pt;}
.y9{bottom:611.683333pt;}
.y17a{bottom:613.064667pt;}
.y73{bottom:616.101200pt;}
.y139{bottom:617.327867pt;}
.y114{bottom:619.020800pt;}
.yf8{bottom:619.366933pt;}
.y53{bottom:620.042400pt;}
.y2c{bottom:620.854533pt;}
.y92{bottom:621.621200pt;}
.y179{bottom:630.398000pt;}
.y72{bottom:634.731200pt;}
.y138{bottom:635.835200pt;}
.y158{bottom:636.239867pt;}
.yd5{bottom:636.611600pt;}
.y113{bottom:637.098800pt;}
.y52{bottom:638.273733pt;}
.y2b{bottom:639.009200pt;}
.yf7{bottom:639.698933pt;}
.yb2{bottom:639.699200pt;}
.y8{bottom:639.787333pt;}
.y178{bottom:647.731333pt;}
.y71{bottom:653.361200pt;}
.y157{bottom:654.285867pt;}
.y137{bottom:654.342533pt;}
.y112{bottom:655.176800pt;}
.y51{bottom:656.505067pt;}
.y2a{bottom:657.163867pt;}
.yb1{bottom:657.777200pt;}
.y91{bottom:661.794533pt;}
.y177{bottom:665.064667pt;}
.y70{bottom:671.991200pt;}
.y136{bottom:672.849867pt;}
.y111{bottom:673.254800pt;}
.yd4{bottom:673.493867pt;}
.y50{bottom:674.736400pt;}
.y29{bottom:675.318533pt;}
.y156{bottom:679.891867pt;}
.yf6{bottom:680.378267pt;}
.y90{bottom:681.881200pt;}
.y176{bottom:682.398000pt;}
.y110{bottom:691.332800pt;}
.y135{bottom:691.357200pt;}
.yd3{bottom:691.909200pt;}
.y4f{bottom:693.013200pt;}
.y28{bottom:693.473200pt;}
.yb0{bottom:693.933200pt;}
.y7{bottom:694.362533pt;}
.y155{bottom:697.937867pt;}
.y175{bottom:699.731333pt;}
.yf5{bottom:700.710267pt;}
.y6f{bottom:709.251200pt;}
.y10f{bottom:709.410800pt;}
.y134{bottom:709.864533pt;}
.yd2{bottom:710.324533pt;}
.y4e{bottom:711.244533pt;}
.y27{bottom:711.627867pt;}
.yaf{bottom:712.011200pt;}
.y174{bottom:717.064667pt;}
.y6{bottom:720.682533pt;}
.y8f{bottom:722.054533pt;}
.y154{bottom:723.543867pt;}
.y10e{bottom:727.488800pt;}
.y6e{bottom:727.881200pt;}
.y133{bottom:728.371867pt;}
.yd1{bottom:728.739867pt;}
.y4d{bottom:729.475867pt;}
.y26{bottom:729.782533pt;}
.y173{bottom:734.398000pt;}
.y5{bottom:739.442533pt;}
.yf4{bottom:741.405200pt;}
.y153{bottom:741.589867pt;}
.y8e{bottom:742.141200pt;}
.y10d{bottom:745.566800pt;}
.y132{bottom:746.879200pt;}
.yd0{bottom:747.155200pt;}
.y4c{bottom:747.707200pt;}
.y25{bottom:747.937200pt;}
.yae{bottom:748.167200pt;}
.y172{bottom:751.731333pt;}
.y4{bottom:758.202533pt;}
.yf3{bottom:761.737200pt;}
.y10c{bottom:763.644800pt;}
.y6d{bottom:765.141200pt;}
.y131{bottom:765.386533pt;}
.ycf{bottom:765.570533pt;}
.y4b{bottom:765.938533pt;}
.y24{bottom:766.091867pt;}
.yad{bottom:766.245200pt;}
.y152{bottom:767.195867pt;}
.y171{bottom:769.064667pt;}
.yf2{bottom:782.069200pt;}
.y8d{bottom:782.314533pt;}
.y6c{bottom:783.771200pt;}
.y130{bottom:783.893867pt;}
.yce{bottom:783.985867pt;}
.y4a{bottom:784.169867pt;}
.y23{bottom:784.246533pt;}
.yac{bottom:784.323200pt;}
.y3{bottom:784.522533pt;}
.y151{bottom:785.241867pt;}
.y170{bottom:786.398000pt;}
.y10b{bottom:800.627733pt;}
.y22{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y16f{bottom:803.731333pt;}
.y21{bottom:842.834667pt;}
.hc{height:33.763396pt;}
.h11{height:35.544646pt;}
.h8{height:39.479167pt;}
.hd{height:44.414062pt;}
.he{height:46.195312pt;}
.h4{height:49.348958pt;}
.hb{height:51.180990pt;}
.h7{height:51.328125pt;}
.h3{height:51.816406pt;}
.h10{height:52.977865pt;}
.h14{height:53.894531pt;}
.hf{height:56.691406pt;}
.h9{height:56.751302pt;}
.h13{height:58.761210pt;}
.ha{height:59.027344pt;}
.h2{height:61.686198pt;}
.h12{height:66.621094pt;}
.h6{height:69.088542pt;}
.h5{height:88.828125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:71.937733pt;}
.x7{left:73.271733pt;}
.x8{left:74.667067pt;}
.x1{left:75.590533pt;}
.x9{left:91.121467pt;}
.x4{left:92.640533pt;}
.x5{left:94.155733pt;}
.xa{left:118.366933pt;}
.x3{left:205.626933pt;}
.x2{left:207.547600pt;}
}




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