
    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_bc41ed959240052901fd09cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7a03709fd24a188de0ac9719.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_776a8d450ff8b7b19a95b7d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_0309d659e29af809dc3e32f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.050293;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_403e781d9278fb052d68fe68.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_5f8ef6328237f8729147c87d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_bfde7535e4ee8c1481e9a49f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970703;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_1e7b5e76860d28f1a235b9c5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.970703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b7d546348faf6c99c75c1727.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_99562f5522fd173483efe4e0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;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:ff10;src:url('chunks/assets/font_44793d54f74893ee43a09a79.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.708008;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);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-1.956000px;}
.ls10{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-1.422000px;}
.ls21{letter-spacing:-0.972000px;}
.lsf{letter-spacing:-0.942000px;}
.ls18{letter-spacing:-0.936000px;}
.lse{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.501000px;}
.ls11{letter-spacing:-0.486600px;}
.ls17{letter-spacing:-0.466800px;}
.ls13{letter-spacing:-0.360000px;}
.ls28{letter-spacing:-0.250800px;}
.ls1b{letter-spacing:-0.020160px;}
.ls15{letter-spacing:-0.015840px;}
.lsd{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000051px;}
.ls6{letter-spacing:0.015836px;}
.ls5{letter-spacing:0.015927px;}
.ls19{letter-spacing:0.020160px;}
.ls1{letter-spacing:0.106591px;}
.ls16{letter-spacing:0.250800px;}
.lsa{letter-spacing:0.466800px;}
.ls20{letter-spacing:0.507000px;}
.ls1c{letter-spacing:0.665280px;}
.ls3{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.840000px;}
.ls27{letter-spacing:0.954000px;}
.ls14{letter-spacing:1.080000px;}
.ls4{letter-spacing:1.080022px;}
.ls7{letter-spacing:9.106421px;}
.ls1e{letter-spacing:9.106560px;}
.ls25{letter-spacing:11.269440px;}
.ls8{letter-spacing:13.426429px;}
.ls1f{letter-spacing:13.426560px;}
.ls0{letter-spacing:26.386542px;}
.ls1d{letter-spacing:26.386560px;}
.lsc{letter-spacing:26.386633px;}
.ls23{letter-spacing:35.749440px;}
.ls22{letter-spacing:40.786560px;}
.lsb{letter-spacing:46.546546px;}
.ls9{letter-spacing:47.986670px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-60.480000px;}
.ws2{word-spacing:-54.719999px;}
.ws10{word-spacing:-15.627000px;}
.ws5{word-spacing:-15.586800px;}
.wsb{word-spacing:-15.140160px;}
.ws4{word-spacing:-15.120000px;}
.wsd{word-spacing:-15.099840px;}
.wsa{word-spacing:-14.653200px;}
.ws3{word-spacing:-14.633400px;}
.ws11{word-spacing:-14.148000px;}
.wsc{word-spacing:-13.698000px;}
.ws1{word-spacing:-13.680000px;}
.ws14{word-spacing:-12.834000px;}
.ws6{word-spacing:-12.600000px;}
.wsf{word-spacing:-12.545280px;}
.ws8{word-spacing:-12.130800px;}
.ws0{word-spacing:-11.880000px;}
.ws7{word-spacing:-11.864160px;}
.ws15{word-spacing:-11.629200px;}
.ws13{word-spacing:-11.379000px;}
.ws9{word-spacing:-11.160000px;}
.wse{word-spacing:0.000000px;}
._3{margin-left:-6.229558px;}
._6{margin-left:-5.097243px;}
._14{margin-left:-4.096782px;}
._4{margin-left:-3.073402px;}
._0{margin-left:-2.056082px;}
._2{margin-left:-1.028153px;}
._1{width:1.390662px;}
._5{width:2.602637px;}
._1a{width:4.092354px;}
._18{width:5.926782px;}
._19{width:7.343482px;}
._1b{width:8.830067px;}
._d{width:10.691831px;}
._c{width:12.220402px;}
._1e{width:13.400680px;}
._1d{width:14.431692px;}
._1f{width:15.469835px;}
._26{width:17.115775px;}
._a{width:18.800390px;}
._b{width:20.102655px;}
._2b{width:21.299655px;}
._25{width:22.437883px;}
._32{width:23.465780px;}
._15{width:24.615343px;}
._27{width:25.628197px;}
._17{width:26.792466px;}
._16{width:28.485807px;}
._12{width:29.937666px;}
._13{width:31.086458px;}
._2d{width:32.115109px;}
._11{width:33.324219px;}
._8{width:35.145827px;}
._9{width:36.295270px;}
._7{width:37.524005px;}
._23{width:38.646829px;}
._24{width:40.011588px;}
._1c{width:42.275484px;}
._e{width:44.343134px;}
._28{width:46.206686px;}
._10{width:48.513755px;}
._f{width:49.826103px;}
._2c{width:51.519236px;}
._29{width:53.358233px;}
._2a{width:54.794403px;}
._20{width:62.830457px;}
._21{width:65.015968px;}
._22{width:66.344001px;}
._31{width:71.850002px;}
._2e{width:86.546642px;}
._2f{width:87.695523px;}
._33{width:94.916160px;}
._37{width:98.863957px;}
._34{width:101.304000px;}
._35{width:111.029077px;}
._30{width:152.470080px;}
._36{width:631.017260px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(14,16,26);}
.fc2{color:rgb(51,51,255);}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs8{font-size:41.760000px;}
.fs2{font-size:47.520001px;}
.fs4{font-size:54.719999px;}
.fs0{font-size:60.479999px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:119.520001px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.520000px;}
.yc{bottom:4.320000px;}
.y5{bottom:15.156000px;}
.y9{bottom:15.875999px;}
.y7{bottom:16.199999px;}
.y7b{bottom:16.200000px;}
.yb{bottom:18.000000px;}
.y4{bottom:19.116001px;}
.y6{bottom:30.240000px;}
.ya{bottom:32.040001px;}
.y49{bottom:77.795998px;}
.ya6{bottom:79.956000px;}
.yef{bottom:86.796000px;}
.yb2{bottom:90.036000px;}
.y48{bottom:90.396000px;}
.y137{bottom:93.996000px;}
.y78{bottom:95.075998px;}
.ya5{bottom:97.236000px;}
.yee{bottom:102.636000px;}
.y47{bottom:104.076004px;}
.y136{bottom:107.676000px;}
.yb1{bottom:109.836000px;}
.y77{bottom:113.436001px;}
.ya4{bottom:118.116000px;}
.y46{bottom:118.116005px;}
.yed{bottom:118.476000px;}
.y135{bottom:121.356000px;}
.yb0{bottom:129.996000px;}
.y76{bottom:131.472004px;}
.y45{bottom:131.832001px;}
.yec{bottom:134.352000px;}
.y134{bottom:135.432000px;}
.y44{bottom:145.512005px;}
.y133{bottom:149.112000px;}
.y75{bottom:149.472004px;}
.yaf{bottom:149.832000px;}
.yeb{bottom:150.195000px;}
.y43{bottom:159.555004px;}
.y132{bottom:162.795000px;}
.yea{bottom:166.035000px;}
.y74{bottom:167.834999px;}
.yae{bottom:169.635000px;}
.y42{bottom:173.234997px;}
.y131{bottom:176.835000px;}
.ye9{bottom:181.875000px;}
.y73{bottom:185.834999px;}
.y41{bottom:186.915001px;}
.y130{bottom:190.515000px;}
.yad{bottom:195.915000px;}
.ye8{bottom:198.075000px;}
.y40{bottom:200.955002px;}
.y72{bottom:203.834999px;}
.y12f{bottom:204.195000px;}
.ye7{bottom:213.915000px;}
.y3f{bottom:214.634994px;}
.y12e{bottom:218.235000px;}
.y71{bottom:221.834999px;}
.y3e{bottom:228.315010px;}
.ye6{bottom:229.755000px;}
.yac{bottom:231.195000px;}
.y12d{bottom:231.915000px;}
.y70{bottom:240.195007px;}
.y3d{bottom:242.355011px;}
.ye5{bottom:245.595000px;}
.yab{bottom:250.995000px;}
.y3c{bottom:256.035004px;}
.y6f{bottom:258.195007px;}
.y12c{bottom:259.635000px;}
.ye4{bottom:261.435000px;}
.y3b{bottom:269.745003px;}
.y12b{bottom:273.345000px;}
.y6e{bottom:276.224991px;}
.ye3{bottom:277.305000px;}
.y3a{bottom:283.785004px;}
.y12a{bottom:287.025000px;}
.ye2{bottom:293.145000px;}
.y6d{bottom:294.584999px;}
.y39{bottom:297.464996px;}
.y129{bottom:301.065000px;}
.ye1{bottom:308.985000px;}
.y38{bottom:311.865006px;}
.y6c{bottom:312.584999px;}
.y128{bottom:314.745000px;}
.ye0{bottom:324.825000px;}
.y127{bottom:328.425000px;}
.y37{bottom:328.785004px;}
.y6b{bottom:330.584999px;}
.ydf{bottom:340.665000px;}
.y126{bottom:342.465000px;}
.y36{bottom:344.264992px;}
.y6a{bottom:348.945007px;}
.y125{bottom:356.145000px;}
.yde{bottom:356.505000px;}
.y35{bottom:359.745003px;}
.y69{bottom:366.945007px;}
.y124{bottom:369.825000px;}
.ydd{bottom:372.345000px;}
.y34{bottom:375.224991px;}
.y123{bottom:383.865000px;}
.y68{bottom:384.945007px;}
.ydc{bottom:388.545000px;}
.y33{bottom:389.984985px;}
.y122{bottom:397.545000px;}
.y32{bottom:402.269989px;}
.y67{bottom:403.349991px;}
.ydb{bottom:404.430000px;}
.y121{bottom:411.270000px;}
.y31{bottom:413.070007px;}
.yda{bottom:420.270000px;}
.ya3{bottom:423.510000px;}
.y120{bottom:425.310000px;}
.y66{bottom:429.269989px;}
.y30{bottom:431.429993px;}
.yd9{bottom:436.110000px;}
.y11f{bottom:438.990000px;}
.y2f{bottom:449.429993px;}
.ya2{bottom:450.510000px;}
.yd8{bottom:451.950000px;}
.y11e{bottom:452.670000px;}
.y65{bottom:465.630020px;}
.y11d{bottom:466.710000px;}
.y2e{bottom:467.429993px;}
.yd7{bottom:467.790000px;}
.ya1{bottom:468.510000px;}
.y11c{bottom:480.390000px;}
.yd6{bottom:483.630000px;}
.y64{bottom:483.630020px;}
.y2d{bottom:485.789978px;}
.ya0{bottom:486.870000px;}
.y11b{bottom:494.070000px;}
.yd5{bottom:499.470000px;}
.y63{bottom:501.630020px;}
.y2c{bottom:503.789978px;}
.y9f{bottom:504.870000px;}
.y11a{bottom:508.110000px;}
.yd4{bottom:515.310000px;}
.y2b{bottom:521.789978px;}
.y119{bottom:521.790000px;}
.y9e{bottom:522.870000px;}
.y62{bottom:523.230011px;}
.yaa{bottom:523.590000px;}
.y118{bottom:535.500000px;}
.yd3{bottom:538.740000px;}
.y2a{bottom:539.820007px;}
.y9d{bottom:541.260000px;}
.ya9{bottom:543.780000px;}
.y61{bottom:546.300018px;}
.y117{bottom:549.540000px;}
.y29{bottom:558.179993px;}
.y9c{bottom:559.260000px;}
.y116{bottom:563.220000px;}
.y60{bottom:564.300018px;}
.yd2{bottom:574.740000px;}
.y28{bottom:576.179993px;}
.y115{bottom:576.900000px;}
.y9b{bottom:577.260000px;}
.y5f{bottom:582.300018px;}
.y114{bottom:590.940000px;}
.yd1{bottom:593.100000px;}
.y27{bottom:594.179993px;}
.y9a{bottom:595.620000px;}
.y5e{bottom:604.259994px;}
.y113{bottom:604.620000px;}
.yd0{bottom:611.100000px;}
.y26{bottom:612.539978px;}
.y99{bottom:613.620000px;}
.y112{bottom:618.300000px;}
.y5d{bottom:625.859985px;}
.ycf{bottom:629.100000px;}
.y25{bottom:630.539978px;}
.y98{bottom:631.620000px;}
.y111{bottom:632.340000px;}
.y110{bottom:646.020000px;}
.yce{bottom:647.460000px;}
.y24{bottom:648.539978px;}
.y97{bottom:649.620000px;}
.y5c{bottom:652.140015px;}
.y10f{bottom:659.700000px;}
.ycd{bottom:665.460000px;}
.y23{bottom:666.929993px;}
.y96{bottom:668.010000px;}
.y5b{bottom:669.449982px;}
.y10e{bottom:673.770000px;}
.ycc{bottom:683.490000px;}
.y22{bottom:684.929993px;}
.y95{bottom:686.010000px;}
.y5a{bottom:686.730011px;}
.y10d{bottom:687.450000px;}
.ycb{bottom:701.850000px;}
.y21{bottom:702.929993px;}
.y59{bottom:704.009994px;}
.y94{bottom:704.010000px;}
.y10c{bottom:710.850000px;}
.yca{bottom:719.850000px;}
.y20{bottom:721.289978px;}
.y93{bottom:722.370000px;}
.yc9{bottom:737.850000px;}
.y58{bottom:738.570007px;}
.y92{bottom:740.370000px;}
.y1f{bottom:743.250000px;}
.y10b{bottom:747.570000px;}
.y57{bottom:755.490006px;}
.yc8{bottom:755.850000px;}
.y91{bottom:758.370000px;}
.y10a{bottom:763.410000px;}
.yc7{bottom:774.210000px;}
.y90{bottom:776.730000px;}
.y56{bottom:777.449982px;}
.y109{bottom:779.250000px;}
.y1e{bottom:783.570007px;}
.yc6{bottom:792.210000px;}
.y8f{bottom:794.730000px;}
.y108{bottom:795.090000px;}
.y55{bottom:804.495026px;}
.yc5{bottom:810.255000px;}
.y107{bottom:810.975000px;}
.y8e{bottom:812.775000px;}
.y1d{bottom:818.535004px;}
.y54{bottom:822.495026px;}
.y106{bottom:826.815000px;}
.yc4{bottom:828.615000px;}
.y14b{bottom:830.415000px;}
.y8d{bottom:831.135000px;}
.y1c{bottom:835.094971px;}
.y53{bottom:840.855011px;}
.y105{bottom:842.655000px;}
.yc3{bottom:846.615000px;}
.y14a{bottom:852.015000px;}
.y1b{bottom:856.695007px;}
.y8c{bottom:857.055000px;}
.y104{bottom:858.495000px;}
.y52{bottom:858.855011px;}
.ya8{bottom:861.375000px;}
.yc2{bottom:866.415000px;}
.y1a{bottom:872.175018px;}
.y149{bottom:873.255000px;}
.y103{bottom:874.335000px;}
.y51{bottom:876.855011px;}
.ya7{bottom:881.535000px;}
.yc1{bottom:886.215000px;}
.y102{bottom:890.535000px;}
.y8b{bottom:893.415000px;}
.y19{bottom:893.774963px;}
.y50{bottom:895.214996px;}
.y148{bottom:895.215000px;}
.yc0{bottom:906.015000px;}
.y101{bottom:906.375000px;}
.y18{bottom:909.254974px;}
.y8a{bottom:911.415000px;}
.y4f{bottom:913.214996px;}
.y147{bottom:917.175000px;}
.y100{bottom:922.215000px;}
.y17{bottom:924.734985px;}
.y89{bottom:929.415000px;}
.y4e{bottom:931.214996px;}
.ybf{bottom:932.295000px;}
.y146{bottom:937.005000px;}
.yff{bottom:938.085000px;}
.y16{bottom:940.245026px;}
.y88{bottom:947.805000px;}
.y4d{bottom:949.605011px;}
.y145{bottom:951.405000px;}
.yfe{bottom:953.925000px;}
.y15{bottom:955.725037px;}
.y87{bottom:965.805000px;}
.y4c{bottom:967.605011px;}
.y144{bottom:968.685000px;}
.yfd{bottom:969.765000px;}
.ybe{bottom:970.125000px;}
.y14{bottom:971.204956px;}
.y86{bottom:983.805000px;}
.yfc{bottom:985.605000px;}
.y4b{bottom:985.605011px;}
.y143{bottom:985.965000px;}
.y13{bottom:986.684967px;}
.ybd{bottom:989.925000px;}
.yfb{bottom:1001.445000px;}
.y12{bottom:1002.164978px;}
.y85{bottom:1002.165000px;}
.y142{bottom:1003.245000px;}
.y4a{bottom:1007.565033px;}
.ybc{bottom:1009.725000px;}
.yfa{bottom:1017.285000px;}
.y11{bottom:1018.004974px;}
.y84{bottom:1020.165000px;}
.y141{bottom:1020.525000px;}
.ybb{bottom:1029.885000px;}
.yf9{bottom:1033.125000px;}
.y140{bottom:1037.805000px;}
.y83{bottom:1038.165000px;}
.yf8{bottom:1048.965000px;}
.y10{bottom:1051.844971px;}
.y13f{bottom:1055.085000px;}
.yba{bottom:1056.165000px;}
.y82{bottom:1056.525000px;}
.yf7{bottom:1064.805000px;}
.yf{bottom:1070.969971px;}
.y13e{bottom:1072.410000px;}
.y81{bottom:1074.570000px;}
.yf6{bottom:1081.050000px;}
.y13d{bottom:1087.170000px;}
.y80{bottom:1092.570000px;}
.yb9{bottom:1094.010000px;}
.yf5{bottom:1096.890000px;}
.y13c{bottom:1106.970000px;}
.y7f{bottom:1110.570000px;}
.ye{bottom:1112.370026px;}
.yf4{bottom:1112.730000px;}
.yb8{bottom:1113.810000px;}
.y13b{bottom:1121.010000px;}
.yf3{bottom:1128.570000px;}
.y7e{bottom:1128.930000px;}
.yb7{bottom:1133.610000px;}
.y13a{bottom:1134.690000px;}
.yf2{bottom:1144.410000px;}
.y7d{bottom:1146.930000px;}
.y139{bottom:1148.370000px;}
.yb6{bottom:1153.410000px;}
.yd{bottom:1153.769989px;}
.yf1{bottom:1160.250000px;}
.y138{bottom:1162.410000px;}
.y7c{bottom:1173.210000px;}
.yf0{bottom:1176.090000px;}
.yb5{bottom:1198.410000px;}
.y3{bottom:1198.410004px;}
.y7a{bottom:1214.640000px;}
.y2{bottom:1217.519989px;}
.yb4{bottom:1217.520000px;}
.y79{bottom:1233.360000px;}
.yb3{bottom:1234.800000px;}
.y1{bottom:1234.800018px;}
.h12{height:25.234453px;}
.h18{height:32.994844px;}
.h13{height:34.847578px;}
.h7{height:36.150469px;}
.h14{height:38.608593px;}
.hc{height:39.650625px;}
.h9{height:39.654141px;}
.he{height:41.333906px;}
.h6{height:41.400001px;}
.h3{height:42.672656px;}
.h8{height:43.199999px;}
.h16{height:43.200000px;}
.h10{height:44.031093px;}
.h17{height:44.798906px;}
.hf{height:45.662343px;}
.h15{height:46.009687px;}
.hb{height:46.736719px;}
.h5{height:50.468906px;}
.hd{height:60.082031px;}
.h4{height:65.884219px;}
.h19{height:71.613281px;}
.h11{height:99.736172px;}
.ha{height:120.164062px;}
.h2{height:1262.879974px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:189.105000px;}
.w5{width:267.945000px;}
.w4{width:267.945007px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:10.830002px;}
.x7{left:63.035997px;}
.xd{left:70.235989px;}
.x1c{left:76.715987px;}
.xa{left:78.875986px;}
.xc{left:81.035984px;}
.x8{left:83.915987px;}
.x11{left:85.355986px;}
.x25{left:91.475987px;}
.x24{left:102.275987px;}
.xe{left:127.116005px;}
.x19{left:131.111987px;}
.x23{left:149.471987px;}
.x2a{left:162.434987px;}
.x1d{left:164.234987px;}
.x3{left:175.394987px;}
.x10{left:177.914988px;}
.x1a{left:181.154987px;}
.x18{left:190.514987px;}
.xf{left:193.034990px;}
.x4{left:265.784990px;}
.x9{left:297.104998px;}
.x1{left:310.469980px;}
.xb{left:364.469980px;}
.x1b{left:417.419987px;}
.x2{left:432.899996px;}
.x2b{left:435.779987px;}
.x17{left:446.579987px;}
.x12{left:457.380007px;}
.x13{left:468.179979px;}
.x15{left:471.779970px;}
.x14{left:475.739992px;}
.x5{left:479.339996px;}
.x21{left:484.409987px;}
.x1f{left:531.569987px;}
.x20{left:538.409987px;}
.x28{left:544.529987px;}
.x27{left:548.129987px;}
.x29{left:552.449987px;}
.x16{left:562.529970px;}
.x26{left:565.409987px;}
.x22{left:580.214987px;}
.x1e{left:822.569987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.738667pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-1.264000pt;}
.ls21{letter-spacing:-0.864000pt;}
.lsf{letter-spacing:-0.837333pt;}
.ls18{letter-spacing:-0.832000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.445333pt;}
.ls11{letter-spacing:-0.432533pt;}
.ls17{letter-spacing:-0.414933pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls28{letter-spacing:-0.222933pt;}
.ls1b{letter-spacing:-0.017920pt;}
.ls15{letter-spacing:-0.014080pt;}
.lsd{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000046pt;}
.ls6{letter-spacing:0.014077pt;}
.ls5{letter-spacing:0.014158pt;}
.ls19{letter-spacing:0.017920pt;}
.ls1{letter-spacing:0.094748pt;}
.ls16{letter-spacing:0.222933pt;}
.lsa{letter-spacing:0.414933pt;}
.ls20{letter-spacing:0.450667pt;}
.ls1c{letter-spacing:0.591360pt;}
.ls3{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.746667pt;}
.ls27{letter-spacing:0.848000pt;}
.ls14{letter-spacing:0.960000pt;}
.ls4{letter-spacing:0.960020pt;}
.ls7{letter-spacing:8.094596pt;}
.ls1e{letter-spacing:8.094720pt;}
.ls25{letter-spacing:10.017280pt;}
.ls8{letter-spacing:11.934603pt;}
.ls1f{letter-spacing:11.934720pt;}
.ls0{letter-spacing:23.454704pt;}
.ls1d{letter-spacing:23.454720pt;}
.lsc{letter-spacing:23.454785pt;}
.ls23{letter-spacing:31.777280pt;}
.ls22{letter-spacing:36.254720pt;}
.lsb{letter-spacing:41.374707pt;}
.ls9{letter-spacing:42.654818pt;}
.ws12{word-spacing:-53.760000pt;}
.ws2{word-spacing:-48.639999pt;}
.ws10{word-spacing:-13.890667pt;}
.ws5{word-spacing:-13.854933pt;}
.wsb{word-spacing:-13.457920pt;}
.ws4{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.422080pt;}
.wsa{word-spacing:-13.025067pt;}
.ws3{word-spacing:-13.007467pt;}
.ws11{word-spacing:-12.576000pt;}
.wsc{word-spacing:-12.176000pt;}
.ws1{word-spacing:-12.160000pt;}
.ws14{word-spacing:-11.408000pt;}
.ws6{word-spacing:-11.200000pt;}
.wsf{word-spacing:-11.151360pt;}
.ws8{word-spacing:-10.782933pt;}
.ws0{word-spacing:-10.560000pt;}
.ws7{word-spacing:-10.545920pt;}
.ws15{word-spacing:-10.337067pt;}
.ws13{word-spacing:-10.114667pt;}
.ws9{word-spacing:-9.920000pt;}
.wse{word-spacing:0.000000pt;}
._3{margin-left:-5.537385pt;}
._6{margin-left:-4.530883pt;}
._14{margin-left:-3.641584pt;}
._4{margin-left:-2.731913pt;}
._0{margin-left:-1.827628pt;}
._2{margin-left:-0.913914pt;}
._1{width:1.236144pt;}
._5{width:2.313455pt;}
._1a{width:3.637648pt;}
._18{width:5.268250pt;}
._19{width:6.527540pt;}
._1b{width:7.848949pt;}
._d{width:9.503850pt;}
._c{width:10.862580pt;}
._1e{width:11.911716pt;}
._1d{width:12.828171pt;}
._1f{width:13.750964pt;}
._26{width:15.214022pt;}
._a{width:16.711457pt;}
._b{width:17.869026pt;}
._2b{width:18.933026pt;}
._25{width:19.944784pt;}
._32{width:20.858471pt;}
._15{width:21.880305pt;}
._27{width:22.780620pt;}
._17{width:23.815525pt;}
._16{width:25.320718pt;}
._12{width:26.611258pt;}
._13{width:27.632407pt;}
._2d{width:28.546764pt;}
._11{width:29.621528pt;}
._8{width:31.240735pt;}
._9{width:32.262462pt;}
._7{width:33.354671pt;}
._23{width:34.352737pt;}
._24{width:35.565856pt;}
._1c{width:37.578208pt;}
._e{width:39.416120pt;}
._28{width:41.072609pt;}
._10{width:43.123338pt;}
._f{width:44.289869pt;}
._2c{width:45.794877pt;}
._29{width:47.429540pt;}
._2a{width:48.706136pt;}
._20{width:55.849295pt;}
._21{width:57.791972pt;}
._22{width:58.972445pt;}
._31{width:63.866668pt;}
._2e{width:76.930348pt;}
._2f{width:77.951576pt;}
._33{width:84.369920pt;}
._37{width:87.879073pt;}
._34{width:90.048000pt;}
._35{width:98.692513pt;}
._30{width:135.528960pt;}
._36{width:560.904231pt;}
.fs7{font-size:26.880000pt;}
.fs8{font-size:37.120000pt;}
.fs2{font-size:42.240001pt;}
.fs4{font-size:48.639999pt;}
.fs0{font-size:53.759999pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:106.240001pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.240000pt;}
.yc{bottom:3.840000pt;}
.y5{bottom:13.472000pt;}
.y9{bottom:14.111999pt;}
.y7{bottom:14.399999pt;}
.y7b{bottom:14.400000pt;}
.yb{bottom:16.000000pt;}
.y4{bottom:16.992001pt;}
.y6{bottom:26.880000pt;}
.ya{bottom:28.480001pt;}
.y49{bottom:69.151998pt;}
.ya6{bottom:71.072000pt;}
.yef{bottom:77.152000pt;}
.yb2{bottom:80.032000pt;}
.y48{bottom:80.352000pt;}
.y137{bottom:83.552000pt;}
.y78{bottom:84.511999pt;}
.ya5{bottom:86.432000pt;}
.yee{bottom:91.232000pt;}
.y47{bottom:92.512004pt;}
.y136{bottom:95.712000pt;}
.yb1{bottom:97.632000pt;}
.y77{bottom:100.832001pt;}
.ya4{bottom:104.992000pt;}
.y46{bottom:104.992004pt;}
.yed{bottom:105.312000pt;}
.y135{bottom:107.872000pt;}
.yb0{bottom:115.552000pt;}
.y76{bottom:116.864003pt;}
.y45{bottom:117.184001pt;}
.yec{bottom:119.424000pt;}
.y134{bottom:120.384000pt;}
.y44{bottom:129.344004pt;}
.y133{bottom:132.544000pt;}
.y75{bottom:132.864003pt;}
.yaf{bottom:133.184000pt;}
.yeb{bottom:133.506667pt;}
.y43{bottom:141.826670pt;}
.y132{bottom:144.706667pt;}
.yea{bottom:147.586667pt;}
.y74{bottom:149.186666pt;}
.yae{bottom:150.786667pt;}
.y42{bottom:153.986664pt;}
.y131{bottom:157.186667pt;}
.ye9{bottom:161.666667pt;}
.y73{bottom:165.186666pt;}
.y41{bottom:166.146667pt;}
.y130{bottom:169.346667pt;}
.yad{bottom:174.146667pt;}
.ye8{bottom:176.066667pt;}
.y40{bottom:178.626668pt;}
.y72{bottom:181.186666pt;}
.y12f{bottom:181.506667pt;}
.ye7{bottom:190.146667pt;}
.y3f{bottom:190.786662pt;}
.y12e{bottom:193.986667pt;}
.y71{bottom:197.186666pt;}
.y3e{bottom:202.946676pt;}
.ye6{bottom:204.226667pt;}
.yac{bottom:205.506667pt;}
.y12d{bottom:206.146667pt;}
.y70{bottom:213.506673pt;}
.y3d{bottom:215.426676pt;}
.ye5{bottom:218.306667pt;}
.yab{bottom:223.106667pt;}
.y3c{bottom:227.586670pt;}
.y6f{bottom:229.506673pt;}
.y12c{bottom:230.786667pt;}
.ye4{bottom:232.386667pt;}
.y3b{bottom:239.773336pt;}
.y12b{bottom:242.973333pt;}
.y6e{bottom:245.533325pt;}
.ye3{bottom:246.493333pt;}
.y3a{bottom:252.253337pt;}
.y12a{bottom:255.133333pt;}
.ye2{bottom:260.573333pt;}
.y6d{bottom:261.853333pt;}
.y39{bottom:264.413330pt;}
.y129{bottom:267.613333pt;}
.ye1{bottom:274.653333pt;}
.y38{bottom:277.213338pt;}
.y6c{bottom:277.853333pt;}
.y128{bottom:279.773333pt;}
.ye0{bottom:288.733333pt;}
.y127{bottom:291.933333pt;}
.y37{bottom:292.253337pt;}
.y6b{bottom:293.853333pt;}
.ydf{bottom:302.813333pt;}
.y126{bottom:304.413333pt;}
.y36{bottom:306.013326pt;}
.y6a{bottom:310.173340pt;}
.y125{bottom:316.573333pt;}
.yde{bottom:316.893333pt;}
.y35{bottom:319.773336pt;}
.y69{bottom:326.173340pt;}
.y124{bottom:328.733333pt;}
.ydd{bottom:330.973333pt;}
.y34{bottom:333.533325pt;}
.y123{bottom:341.213333pt;}
.y68{bottom:342.173340pt;}
.ydc{bottom:345.373333pt;}
.y33{bottom:346.653320pt;}
.y122{bottom:353.373333pt;}
.y32{bottom:357.573324pt;}
.y67{bottom:358.533325pt;}
.ydb{bottom:359.493333pt;}
.y121{bottom:365.573333pt;}
.y31{bottom:367.173340pt;}
.yda{bottom:373.573333pt;}
.ya3{bottom:376.453333pt;}
.y120{bottom:378.053333pt;}
.y66{bottom:381.573324pt;}
.y30{bottom:383.493327pt;}
.yd9{bottom:387.653333pt;}
.y11f{bottom:390.213333pt;}
.y2f{bottom:399.493327pt;}
.ya2{bottom:400.453333pt;}
.yd8{bottom:401.733333pt;}
.y11e{bottom:402.373333pt;}
.y65{bottom:413.893351pt;}
.y11d{bottom:414.853333pt;}
.y2e{bottom:415.493327pt;}
.yd7{bottom:415.813333pt;}
.ya1{bottom:416.453333pt;}
.y11c{bottom:427.013333pt;}
.yd6{bottom:429.893333pt;}
.y64{bottom:429.893351pt;}
.y2d{bottom:431.813314pt;}
.ya0{bottom:432.773333pt;}
.y11b{bottom:439.173333pt;}
.yd5{bottom:443.973333pt;}
.y63{bottom:445.893351pt;}
.y2c{bottom:447.813314pt;}
.y9f{bottom:448.773333pt;}
.y11a{bottom:451.653333pt;}
.yd4{bottom:458.053333pt;}
.y2b{bottom:463.813314pt;}
.y119{bottom:463.813333pt;}
.y9e{bottom:464.773333pt;}
.y62{bottom:465.093343pt;}
.yaa{bottom:465.413333pt;}
.y118{bottom:476.000000pt;}
.yd3{bottom:478.880000pt;}
.y2a{bottom:479.840007pt;}
.y9d{bottom:481.120000pt;}
.ya9{bottom:483.360000pt;}
.y61{bottom:485.600016pt;}
.y117{bottom:488.480000pt;}
.y29{bottom:496.159993pt;}
.y9c{bottom:497.120000pt;}
.y116{bottom:500.640000pt;}
.y60{bottom:501.600016pt;}
.yd2{bottom:510.880000pt;}
.y28{bottom:512.159993pt;}
.y115{bottom:512.800000pt;}
.y9b{bottom:513.120000pt;}
.y5f{bottom:517.600016pt;}
.y114{bottom:525.280000pt;}
.yd1{bottom:527.200000pt;}
.y27{bottom:528.159993pt;}
.y9a{bottom:529.440000pt;}
.y5e{bottom:537.119995pt;}
.y113{bottom:537.440000pt;}
.yd0{bottom:543.200000pt;}
.y26{bottom:544.479981pt;}
.y99{bottom:545.440000pt;}
.y112{bottom:549.600000pt;}
.y5d{bottom:556.319987pt;}
.ycf{bottom:559.200000pt;}
.y25{bottom:560.479981pt;}
.y98{bottom:561.440000pt;}
.y111{bottom:562.080000pt;}
.y110{bottom:574.240000pt;}
.yce{bottom:575.520000pt;}
.y24{bottom:576.479981pt;}
.y97{bottom:577.440000pt;}
.y5c{bottom:579.680013pt;}
.y10f{bottom:586.400000pt;}
.ycd{bottom:591.520000pt;}
.y23{bottom:592.826660pt;}
.y96{bottom:593.786667pt;}
.y5b{bottom:595.066650pt;}
.y10e{bottom:598.906667pt;}
.ycc{bottom:607.546667pt;}
.y22{bottom:608.826660pt;}
.y95{bottom:609.786667pt;}
.y5a{bottom:610.426676pt;}
.y10d{bottom:611.066667pt;}
.ycb{bottom:623.866667pt;}
.y21{bottom:624.826660pt;}
.y59{bottom:625.786662pt;}
.y94{bottom:625.786667pt;}
.y10c{bottom:631.866667pt;}
.yca{bottom:639.866667pt;}
.y20{bottom:641.146647pt;}
.y93{bottom:642.106667pt;}
.yc9{bottom:655.866667pt;}
.y58{bottom:656.506673pt;}
.y92{bottom:658.106667pt;}
.y1f{bottom:660.666667pt;}
.y10b{bottom:664.506667pt;}
.y57{bottom:671.546672pt;}
.yc8{bottom:671.866667pt;}
.y91{bottom:674.106667pt;}
.y10a{bottom:678.586667pt;}
.yc7{bottom:688.186667pt;}
.y90{bottom:690.426667pt;}
.y56{bottom:691.066650pt;}
.y109{bottom:692.666667pt;}
.y1e{bottom:696.506673pt;}
.yc6{bottom:704.186667pt;}
.y8f{bottom:706.426667pt;}
.y108{bottom:706.746667pt;}
.y55{bottom:715.106689pt;}
.yc5{bottom:720.226667pt;}
.y107{bottom:720.866667pt;}
.y8e{bottom:722.466667pt;}
.y1d{bottom:727.586670pt;}
.y54{bottom:731.106689pt;}
.y106{bottom:734.946667pt;}
.yc4{bottom:736.546667pt;}
.y14b{bottom:738.146667pt;}
.y8d{bottom:738.786667pt;}
.y1c{bottom:742.306641pt;}
.y53{bottom:747.426676pt;}
.y105{bottom:749.026667pt;}
.yc3{bottom:752.546667pt;}
.y14a{bottom:757.346667pt;}
.y1b{bottom:761.506673pt;}
.y8c{bottom:761.826667pt;}
.y104{bottom:763.106667pt;}
.y52{bottom:763.426676pt;}
.ya8{bottom:765.666667pt;}
.yc2{bottom:770.146667pt;}
.y1a{bottom:775.266683pt;}
.y149{bottom:776.226667pt;}
.y103{bottom:777.186667pt;}
.y51{bottom:779.426676pt;}
.ya7{bottom:783.586667pt;}
.yc1{bottom:787.746667pt;}
.y102{bottom:791.586667pt;}
.y8b{bottom:794.146667pt;}
.y19{bottom:794.466634pt;}
.y50{bottom:795.746663pt;}
.y148{bottom:795.746667pt;}
.yc0{bottom:805.346667pt;}
.y101{bottom:805.666667pt;}
.y18{bottom:808.226644pt;}
.y8a{bottom:810.146667pt;}
.y4f{bottom:811.746663pt;}
.y147{bottom:815.266667pt;}
.y100{bottom:819.746667pt;}
.y17{bottom:821.986654pt;}
.y89{bottom:826.146667pt;}
.y4e{bottom:827.746663pt;}
.ybf{bottom:828.706667pt;}
.y146{bottom:832.893333pt;}
.yff{bottom:833.853333pt;}
.y16{bottom:835.773356pt;}
.y88{bottom:842.493333pt;}
.y4d{bottom:844.093343pt;}
.y145{bottom:845.693333pt;}
.yfe{bottom:847.933333pt;}
.y15{bottom:849.533366pt;}
.y87{bottom:858.493333pt;}
.y4c{bottom:860.093343pt;}
.y144{bottom:861.053333pt;}
.yfd{bottom:862.013333pt;}
.ybe{bottom:862.333333pt;}
.y14{bottom:863.293294pt;}
.y86{bottom:874.493333pt;}
.yfc{bottom:876.093333pt;}
.y4b{bottom:876.093343pt;}
.y143{bottom:876.413333pt;}
.y13{bottom:877.053304pt;}
.ybd{bottom:879.933333pt;}
.yfb{bottom:890.173333pt;}
.y12{bottom:890.813314pt;}
.y85{bottom:890.813333pt;}
.y142{bottom:891.773333pt;}
.y4a{bottom:895.613363pt;}
.ybc{bottom:897.533333pt;}
.yfa{bottom:904.253333pt;}
.y11{bottom:904.893311pt;}
.y84{bottom:906.813333pt;}
.y141{bottom:907.133333pt;}
.ybb{bottom:915.453333pt;}
.yf9{bottom:918.333333pt;}
.y140{bottom:922.493333pt;}
.y83{bottom:922.813333pt;}
.yf8{bottom:932.413333pt;}
.y10{bottom:934.973307pt;}
.y13f{bottom:937.853333pt;}
.yba{bottom:938.813333pt;}
.y82{bottom:939.133333pt;}
.yf7{bottom:946.493333pt;}
.yf{bottom:951.973307pt;}
.y13e{bottom:953.253333pt;}
.y81{bottom:955.173333pt;}
.yf6{bottom:960.933333pt;}
.y13d{bottom:966.373333pt;}
.y80{bottom:971.173333pt;}
.yb9{bottom:972.453333pt;}
.yf5{bottom:975.013333pt;}
.y13c{bottom:983.973333pt;}
.y7f{bottom:987.173333pt;}
.ye{bottom:988.773356pt;}
.yf4{bottom:989.093333pt;}
.yb8{bottom:990.053333pt;}
.y13b{bottom:996.453333pt;}
.yf3{bottom:1003.173333pt;}
.y7e{bottom:1003.493333pt;}
.yb7{bottom:1007.653333pt;}
.y13a{bottom:1008.613333pt;}
.yf2{bottom:1017.253333pt;}
.y7d{bottom:1019.493333pt;}
.y139{bottom:1020.773333pt;}
.yb6{bottom:1025.253333pt;}
.yd{bottom:1025.573324pt;}
.yf1{bottom:1031.333333pt;}
.y138{bottom:1033.253333pt;}
.y7c{bottom:1042.853333pt;}
.yf0{bottom:1045.413333pt;}
.yb5{bottom:1065.253333pt;}
.y3{bottom:1065.253337pt;}
.y7a{bottom:1079.680000pt;}
.y2{bottom:1082.239990pt;}
.yb4{bottom:1082.240000pt;}
.y79{bottom:1096.320000pt;}
.yb3{bottom:1097.600000pt;}
.y1{bottom:1097.600016pt;}
.h12{height:22.430625pt;}
.h18{height:29.328750pt;}
.h13{height:30.975625pt;}
.h7{height:32.133750pt;}
.h14{height:34.318750pt;}
.hc{height:35.245000pt;}
.h9{height:35.248125pt;}
.he{height:36.741250pt;}
.h6{height:36.800001pt;}
.h3{height:37.931250pt;}
.h8{height:38.399999pt;}
.h16{height:38.400000pt;}
.h10{height:39.138750pt;}
.h17{height:39.821250pt;}
.hf{height:40.588750pt;}
.h15{height:40.897500pt;}
.hb{height:41.543750pt;}
.h5{height:44.861250pt;}
.hd{height:53.406250pt;}
.h4{height:58.563750pt;}
.h19{height:63.656250pt;}
.h11{height:88.654375pt;}
.ha{height:106.812500pt;}
.h2{height:1122.559977pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:168.093333pt;}
.w5{width:238.173333pt;}
.w4{width:238.173340pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:9.626668pt;}
.x7{left:56.031998pt;}
.xd{left:62.431990pt;}
.x1c{left:68.191988pt;}
.xa{left:70.111988pt;}
.xc{left:72.031986pt;}
.x8{left:74.591988pt;}
.x11{left:75.871987pt;}
.x25{left:81.311988pt;}
.x24{left:90.911988pt;}
.xe{left:112.992004pt;}
.x19{left:116.543988pt;}
.x23{left:132.863988pt;}
.x2a{left:144.386655pt;}
.x1d{left:145.986655pt;}
.x3{left:155.906655pt;}
.x10{left:158.146656pt;}
.x1a{left:161.026655pt;}
.x18{left:169.346655pt;}
.xf{left:171.586658pt;}
.x4{left:236.253325pt;}
.x9{left:264.093331pt;}
.x1{left:275.973316pt;}
.xb{left:323.973316pt;}
.x1b{left:371.039988pt;}
.x2{left:384.799996pt;}
.x2b{left:387.359988pt;}
.x17{left:396.959988pt;}
.x12{left:406.560006pt;}
.x13{left:416.159982pt;}
.x15{left:419.359973pt;}
.x14{left:422.879993pt;}
.x5{left:426.079997pt;}
.x21{left:430.586655pt;}
.x1f{left:472.506655pt;}
.x20{left:478.586655pt;}
.x28{left:484.026655pt;}
.x27{left:487.226655pt;}
.x29{left:491.066655pt;}
.x16{left:500.026640pt;}
.x26{left:502.586655pt;}
.x22{left:515.746655pt;}
.x1e{left:731.173322pt;}
}




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