
    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_efd6610e8d7dc58f249488c8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.991699;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_73ea46dac2b584ad7fae7f75.woff')format("woff");}.ff2{font-family:ff2;line-height:1.213379;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_3accab7f77871769dea6581b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_a868cd8c0e06cc6f21a19db2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_1606eef852ceb44ba4ea5bb2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.746094;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_abc13549c75366ff775adf60.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6d0e9699dcbfe31a1117bc99.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6b4489ee8f4a7acfe1852162.woff')format("woff");}.ff8{font-family:ff8;line-height:1.213379;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_c5b6cd1cb2b5cd0dc0b69195.woff')format("woff");}.ff9{font-family:ff9;line-height:1.005371;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_b62ac47fba6534dc7007ae63.woff')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a6f1fbc7bb73ec7a9ceacbfa.woff')format("woff");}.ffb{font-family:ffb;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f714c594678e59a57f3f59fa.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fd953ec2127081465029c5ef.woff')format("woff");}.ffd{font-family:ffd;line-height:1.344727;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_f5c0ce105132210c1e4203c4.woff')format("woff");}.ffe{font-family:ffe;line-height:0.734863;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;}
.m2{transform:matrix(0.170733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170733,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v6{vertical-align:-33.120000px;}
.v4{vertical-align:-30.960000px;}
.v11{vertical-align:-29.520000px;}
.v2{vertical-align:-28.080000px;}
.ve{vertical-align:-26.640000px;}
.va{vertical-align:-25.200000px;}
.vf{vertical-align:-23.760000px;}
.v3{vertical-align:-22.320000px;}
.v7{vertical-align:-17.280000px;}
.v12{vertical-align:-15.120000px;}
.v14{vertical-align:-13.680000px;}
.v16{vertical-align:-12.240000px;}
.v10{vertical-align:-5.760000px;}
.v9{vertical-align:-4.320000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.040000px;}
.v13{vertical-align:8.640000px;}
.v5{vertical-align:11.520000px;}
.v15{vertical-align:13.680000px;}
.v8{vertical-align:17.280000px;}
.vd{vertical-align:23.040000px;}
.vb{vertical-align:25.200000px;}
.vc{vertical-align:28.080000px;}
.ls9{letter-spacing:-1.896000px;}
.ls3{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.272400px;}
.lsd{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.121680px;}
.lsf{letter-spacing:0.174240px;}
.ls5{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.213600px;}
.ls13{letter-spacing:0.255600px;}
.ls6{letter-spacing:0.308493px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.841680px;}
.ls17{letter-spacing:1.628640px;}
.ls12{letter-spacing:2.755440px;}
.ls16{letter-spacing:2.831760px;}
.ls18{letter-spacing:3.068640px;}
.ls15{letter-spacing:3.721680px;}
.ls1{letter-spacing:7.356000px;}
.ls10{letter-spacing:31.285440px;}
.ls8{letter-spacing:33.984000px;}
.lsb{letter-spacing:38.304000px;}
.lse{letter-spacing:39.905280px;}
.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;}
}
.ws7{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.712000px;}
.ws6{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.840000px;}
.ws0{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.140000px;}
.ws9{word-spacing:-4.548960px;}
.ws5{word-spacing:0.000000px;}
._19{margin-left:-1713.948240px;}
._1f{margin-left:-1558.924560px;}
._1a{margin-left:-21.274560px;}
._1e{margin-left:-16.763760px;}
._1c{margin-left:-15.400080px;}
._1d{margin-left:-13.847760px;}
._18{margin-left:-12.324240px;}
._1b{margin-left:-8.513280px;}
._7{margin-left:-4.952160px;}
._6{margin-left:-3.828240px;}
._2{margin-left:-2.494080px;}
._0{margin-left:-1.175040px;}
._1{width:1.152000px;}
._8{width:2.194560px;}
._4{width:3.402000px;}
._3{width:4.422240px;}
._9{width:5.556960px;}
._5{width:6.578880px;}
._d{width:7.649280px;}
._c{width:8.743680px;}
._e{width:9.803520px;}
._a{width:10.900080px;}
._b{width:11.900880px;}
._f{width:13.711680px;}
._16{width:15.456960px;}
._15{width:16.608000px;}
._14{width:17.686080px;}
._12{width:18.812160px;}
._13{width:19.886400px;}
._10{width:21.312000px;}
._11{width:22.515840px;}
._17{width:24.111360px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(47,2,10);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y14{bottom:3.960000px;}
.y6{bottom:5.040000px;}
.y5{bottom:27.000000px;}
.y4{bottom:47.520000px;}
.y3{bottom:70.560000px;}
.y2{bottom:79.020000px;}
.y175{bottom:88.200000px;}
.y71{bottom:88.920000px;}
.y70{bottom:94.140000px;}
.y39{bottom:95.940000px;}
.y174{bottom:106.200000px;}
.y6f{bottom:106.560000px;}
.ya6{bottom:107.280000px;}
.y182{bottom:107.820000px;}
.y173{bottom:111.420000px;}
.ya5{bottom:112.500000px;}
.y38{bottom:117.720000px;}
.y172{bottom:123.660000px;}
.y6e{bottom:124.380000px;}
.ya4{bottom:124.740000px;}
.yd4{bottom:125.460000px;}
.y6d{bottom:129.600000px;}
.y181{bottom:129.960000px;}
.yd3{bottom:130.680000px;}
.y37{bottom:139.320000px;}
.y171{bottom:141.660000px;}
.ya3{bottom:142.740000px;}
.yd2{bottom:143.100000px;}
.y6c{bottom:143.280000px;}
.y13c{bottom:143.820000px;}
.y106{bottom:144.360000px;}
.y170{bottom:146.880000px;}
.ya2{bottom:147.960000px;}
.yd1{bottom:148.320000px;}
.y13b{bottom:149.040000px;}
.y180{bottom:150.480000px;}
.y16f{bottom:159.300000px;}
.ya1{bottom:160.380000px;}
.y36{bottom:161.100000px;}
.y153{bottom:162.180000px;}
.y13a{bottom:162.720000px;}
.yd0{bottom:165.600000px;}
.y152{bottom:167.400000px;}
.y6b{bottom:169.020000px;}
.y17f{bottom:171.000000px;}
.y16e{bottom:177.300000px;}
.ya0{bottom:178.380000px;}
.ycf{bottom:178.920000px;}
.y151{bottom:180.360000px;}
.y16d{bottom:182.520000px;}
.y35{bottom:182.700000px;}
.y105{bottom:182.880000px;}
.y9f{bottom:183.600000px;}
.y150{bottom:185.580000px;}
.y6a{bottom:189.540000px;}
.y139{bottom:190.800000px;}
.y17e{bottom:191.520000px;}
.y16c{bottom:196.020000px;}
.y9e{bottom:197.100000px;}
.y14f{bottom:199.260000px;}
.yce{bottom:203.400000px;}
.y34{bottom:204.480000px;}
.y69{bottom:210.060000px;}
.y138{bottom:211.320000px;}
.y17d{bottom:211.860000px;}
.y103{bottom:223.920000px;}
.ycc{bottom:224.100000px;}
.y33{bottom:225.540000px;}
.y104{bottom:227.700000px;}
.y16b{bottom:229.890000px;}
.y68{bottom:230.610000px;}
.ycd{bottom:230.970000px;}
.y9d{bottom:231.330000px;}
.y137{bottom:231.870000px;}
.y14e{bottom:232.410000px;}
.y32{bottom:244.290000px;}
.y102{bottom:244.470000px;}
.ycb{bottom:244.830000px;}
.y16a{bottom:250.410000px;}
.y67{bottom:251.130000px;}
.y9c{bottom:251.670000px;}
.y136{bottom:252.390000px;}
.y14d{bottom:252.930000px;}
.y31{bottom:262.830000px;}
.y101{bottom:264.810000px;}
.yca{bottom:265.530000px;}
.y169{bottom:270.930000px;}
.y66{bottom:271.650000px;}
.y9b{bottom:272.190000px;}
.y134{bottom:272.910000px;}
.y14c{bottom:273.450000px;}
.y135{bottom:276.690000px;}
.y30{bottom:281.550000px;}
.y100{bottom:285.330000px;}
.yc9{bottom:286.230000px;}
.y168{bottom:291.450000px;}
.y65{bottom:292.170000px;}
.y9a{bottom:292.710000px;}
.y133{bottom:293.430000px;}
.y14b{bottom:293.970000px;}
.y2f{bottom:300.270000px;}
.yff{bottom:305.850000px;}
.yc8{bottom:306.930000px;}
.y167{bottom:311.970000px;}
.y64{bottom:312.690000px;}
.y98{bottom:313.230000px;}
.y132{bottom:313.950000px;}
.y14a{bottom:314.490000px;}
.y99{bottom:317.010000px;}
.y2e{bottom:318.810000px;}
.yfe{bottom:326.370000px;}
.yc7{bottom:327.630000px;}
.y166{bottom:332.310000px;}
.y62{bottom:333.210000px;}
.y97{bottom:333.750000px;}
.y131{bottom:334.290000px;}
.y149{bottom:335.010000px;}
.y63{bottom:336.990000px;}
.y2d{bottom:337.530000px;}
.yfd{bottom:346.530000px;}
.yc6{bottom:348.330000px;}
.y165{bottom:352.830000px;}
.y61{bottom:353.730000px;}
.y96{bottom:354.270000px;}
.y130{bottom:354.810000px;}
.y148{bottom:355.530000px;}
.y2c{bottom:356.070000px;}
.yfc{bottom:366.150000px;}
.yc5{bottom:369.030000px;}
.y164{bottom:373.350000px;}
.y60{bottom:374.250000px;}
.y2b{bottom:374.790000px;}
.y12f{bottom:375.330000px;}
.y147{bottom:376.050000px;}
.yfb{bottom:386.850000px;}
.yc4{bottom:389.730000px;}
.y2a{bottom:393.330000px;}
.y163{bottom:393.870000px;}
.y5f{bottom:394.770000px;}
.y95{bottom:395.310000px;}
.y12e{bottom:395.850000px;}
.y146{bottom:396.570000px;}
.yfa{bottom:407.550000px;}
.yc3{bottom:410.430000px;}
.y29{bottom:412.050000px;}
.y162{bottom:414.390000px;}
.y5e{bottom:415.110000px;}
.y94{bottom:415.830000px;}
.y12d{bottom:416.370000px;}
.y145{bottom:416.730000px;}
.y17c{bottom:417.090000px;}
.yf8{bottom:428.250000px;}
.y28{bottom:430.590000px;}
.yc2{bottom:431.130000px;}
.y161{bottom:434.910000px;}
.yf9{bottom:435.090000px;}
.y5d{bottom:435.630000px;}
.y93{bottom:436.350000px;}
.y144{bottom:436.530000px;}
.y12b{bottom:436.890000px;}
.y17b{bottom:437.070000px;}
.y12c{bottom:440.670000px;}
.yf7{bottom:448.950000px;}
.y27{bottom:449.310000px;}
.yc1{bottom:451.830000px;}
.y160{bottom:455.430000px;}
.y5b{bottom:456.150000px;}
.y143{bottom:456.510000px;}
.y92{bottom:456.870000px;}
.y12a{bottom:457.410000px;}
.y5c{bottom:459.975000px;}
.y26{bottom:468.075000px;}
.yf6{bottom:469.695000px;}
.yc0{bottom:472.575000px;}
.y15f{bottom:475.995000px;}
.y5a{bottom:476.715000px;}
.y91{bottom:477.435000px;}
.y129{bottom:477.975000px;}
.y142{bottom:480.495000px;}
.y25{bottom:486.615000px;}
.yf5{bottom:490.395000px;}
.ybf{bottom:493.275000px;}
.y15d{bottom:496.515000px;}
.y59{bottom:497.235000px;}
.y90{bottom:497.775000px;}
.y128{bottom:498.495000px;}
.y15e{bottom:500.295000px;}
.y24{bottom:505.155000px;}
.yf4{bottom:511.095000px;}
.ybe{bottom:513.975000px;}
.y15c{bottom:517.035000px;}
.y58{bottom:517.755000px;}
.y8f{bottom:518.295000px;}
.y127{bottom:519.015000px;}
.y23{bottom:523.335000px;}
.yf3{bottom:531.615000px;}
.ybc{bottom:534.675000px;}
.y15b{bottom:537.555000px;}
.y57{bottom:538.275000px;}
.y8e{bottom:538.815000px;}
.y126{bottom:539.535000px;}
.ybd{bottom:541.515000px;}
.y22{bottom:542.055000px;}
.yf2{bottom:552.315000px;}
.ybb{bottom:555.375000px;}
.y56{bottom:558.795000px;}
.y8d{bottom:559.335000px;}
.y125{bottom:559.875000px;}
.y17a{bottom:560.055000px;}
.y21{bottom:560.595000px;}
.y15a{bottom:560.955000px;}
.yf1{bottom:573.015000px;}
.yba{bottom:576.075000px;}
.y20{bottom:579.315000px;}
.y8c{bottom:579.855000px;}
.y124{bottom:580.395000px;}
.y159{bottom:584.535000px;}
.yf0{bottom:593.715000px;}
.yb9{bottom:596.775000px;}
.y1f{bottom:597.855000px;}
.y55{bottom:599.835000px;}
.y8b{bottom:600.375000px;}
.y123{bottom:600.915000px;}
.y158{bottom:608.115000px;}
.yef{bottom:614.415000px;}
.y1e{bottom:616.575000px;}
.yb8{bottom:617.475000px;}
.y140{bottom:620.175000px;}
.y54{bottom:620.355000px;}
.y8a{bottom:620.895000px;}
.y122{bottom:621.435000px;}
.y141{bottom:623.955000px;}
.y157{bottom:631.155000px;}
.yee{bottom:635.115000px;}
.y1d{bottom:635.295000px;}
.yb7{bottom:638.175000px;}
.y53{bottom:640.695000px;}
.y89{bottom:641.415000px;}
.y121{bottom:641.955000px;}
.y1c{bottom:653.835000px;}
.yed{bottom:655.815000px;}
.y156{bottom:657.435000px;}
.yb6{bottom:658.875000px;}
.y52{bottom:661.215000px;}
.y88{bottom:661.935000px;}
.y120{bottom:662.475000px;}
.y1b{bottom:672.555000px;}
.yec{bottom:676.515000px;}
.yb5{bottom:679.575000px;}
.y51{bottom:681.735000px;}
.y87{bottom:682.455000px;}
.y11f{bottom:682.995000px;}
.y1a{bottom:691.125000px;}
.yeb{bottom:697.245000px;}
.yb3{bottom:700.305000px;}
.y50{bottom:702.285000px;}
.y86{bottom:703.005000px;}
.y11e{bottom:703.545000px;}
.yb4{bottom:707.145000px;}
.y19{bottom:709.845000px;}
.yea{bottom:717.945000px;}
.yb2{bottom:721.005000px;}
.y4f{bottom:722.805000px;}
.y85{bottom:723.345000px;}
.y11d{bottom:724.065000px;}
.y18{bottom:728.385000px;}
.ye9{bottom:738.645000px;}
.yb1{bottom:741.705000px;}
.y4e{bottom:743.325000px;}
.y83{bottom:743.865000px;}
.y11c{bottom:744.585000px;}
.y17{bottom:747.105000px;}
.y84{bottom:747.645000px;}
.ye8{bottom:759.345000px;}
.yb0{bottom:762.405000px;}
.y4d{bottom:763.845000px;}
.y82{bottom:764.385000px;}
.y11b{bottom:765.105000px;}
.y16{bottom:766.005000px;}
.ye7{bottom:780.045000px;}
.yaf{bottom:783.105000px;}
.y4c{bottom:784.365000px;}
.y81{bottom:784.905000px;}
.y11a{bottom:785.625000px;}
.y15{bottom:785.985000px;}
.y184{bottom:791.025000px;}
.ye6{bottom:800.745000px;}
.y13{bottom:801.105000px;}
.yae{bottom:803.805000px;}
.y4b{bottom:804.885000px;}
.y80{bottom:805.425000px;}
.y119{bottom:805.965000px;}
.y179{bottom:806.145000px;}
.y183{bottom:811.545000px;}
.ye5{bottom:821.445000px;}
.y12{bottom:821.805000px;}
.yad{bottom:824.505000px;}
.y4a{bottom:825.405000px;}
.y7e{bottom:825.945000px;}
.y178{bottom:826.125000px;}
.y118{bottom:826.485000px;}
.y7f{bottom:829.725000px;}
.y155{bottom:830.265000px;}
.y11{bottom:839.445000px;}
.ye4{bottom:842.145000px;}
.yac{bottom:845.205000px;}
.y49{bottom:845.925000px;}
.y177{bottom:846.105000px;}
.y7d{bottom:846.465000px;}
.y116{bottom:847.005000px;}
.y117{bottom:850.785000px;}
.y10{bottom:854.745000px;}
.ye3{bottom:862.845000px;}
.yab{bottom:865.905000px;}
.y13f{bottom:866.265000px;}
.y48{bottom:866.445000px;}
.y7c{bottom:866.985000px;}
.y115{bottom:867.525000px;}
.yf{bottom:872.205000px;}
.ye2{bottom:883.545000px;}
.yaa{bottom:886.605000px;}
.y47{bottom:886.785000px;}
.y7b{bottom:887.505000px;}
.y114{bottom:888.045000px;}
.ye{bottom:892.545000px;}
.ye1{bottom:904.245000px;}
.y46{bottom:907.305000px;}
.ya9{bottom:907.665000px;}
.y7a{bottom:908.025000px;}
.y113{bottom:908.565000px;}
.y13e{bottom:911.085000px;}
.yd{bottom:913.065000px;}
.ye0{bottom:924.990000px;}
.y45{bottom:927.870000px;}
.y79{bottom:928.590000px;}
.y112{bottom:929.130000px;}
.y154{bottom:932.910000px;}
.yc{bottom:933.270000px;}
.ydf{bottom:945.690000px;}
.y44{bottom:948.390000px;}
.y78{bottom:948.930000px;}
.y111{bottom:949.650000px;}
.ya8{bottom:952.170000px;}
.yb{bottom:952.890000px;}
.yde{bottom:966.390000px;}
.y43{bottom:968.910000px;}
.y76{bottom:969.450000px;}
.y110{bottom:970.170000px;}
.y176{bottom:972.690000px;}
.y77{bottom:973.230000px;}
.ya{bottom:976.650000px;}
.ydd{bottom:987.090000px;}
.y42{bottom:989.430000px;}
.y10f{bottom:990.690000px;}
.y9{bottom:1002.030000px;}
.ydc{bottom:1007.790000px;}
.y41{bottom:1009.950000px;}
.y10e{bottom:1011.210000px;}
.y8{bottom:1027.050000px;}
.ydb{bottom:1028.490000px;}
.y40{bottom:1030.470000px;}
.y10d{bottom:1031.550000px;}
.yd9{bottom:1049.190000px;}
.y7{bottom:1050.450000px;}
.y3f{bottom:1050.990000px;}
.y10c{bottom:1052.070000px;}
.yda{bottom:1056.030000px;}
.y1{bottom:1068.810000px;}
.yd8{bottom:1069.890000px;}
.y3e{bottom:1071.510000px;}
.y10a{bottom:1072.590000px;}
.ya7{bottom:1075.290000px;}
.y10b{bottom:1076.370000px;}
.yd7{bottom:1090.590000px;}
.y75{bottom:1091.850000px;}
.y3d{bottom:1092.030000px;}
.y109{bottom:1093.110000px;}
.yd6{bottom:1111.290000px;}
.y3c{bottom:1112.370000px;}
.y108{bottom:1113.630000px;}
.yd5{bottom:1131.990000px;}
.y74{bottom:1132.890000px;}
.y3b{bottom:1133.070000px;}
.y107{bottom:1134.150000px;}
.y13d{bottom:1136.670000px;}
.y73{bottom:1148.760000px;}
.y72{bottom:1171.260000px;}
.y3a{bottom:1172.700000px;}
.hd{height:16.380000px;}
.h15{height:30.300469px;}
.h11{height:38.008125px;}
.h1d{height:38.158594px;}
.h12{height:38.671172px;}
.he{height:39.181641px;}
.hf{height:43.361016px;}
.hc{height:43.905937px;}
.h1e{height:47.321367px;}
.h1b{height:47.344922px;}
.h14{height:48.062812px;}
.h18{height:48.127500px;}
.h10{height:48.289219px;}
.hb{height:49.148438px;}
.h3{height:52.312500px;}
.ha{height:54.390938px;}
.h8{height:56.497500px;}
.h16{height:58.621992px;}
.h13{height:58.651172px;}
.h21{height:59.439023px;}
.h6{height:60.288750px;}
.h9{height:61.205625px;}
.h17{height:65.010937px;}
.h7{height:65.531250px;}
.h5{height:65.884219px;}
.h20{height:68.084282px;}
.h1f{height:70.628906px;}
.h1a{height:70.664062px;}
.h19{height:72.562500px;}
.h1c{height:74.004654px;}
.h23{height:77.165156px;}
.h4{height:78.468750px;}
.h22{height:82.205156px;}
.h24{height:88.685156px;}
.h2{height:95.976000px;}
.h25{height:100.205156px;}
.h26{height:100.925156px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:182.370000px;}
.w6{width:182.550000px;}
.w7{width:214.050000px;}
.w2{width:223.455000px;}
.w3{width:446.475000px;}
.w8{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:6.840000px;}
.x2{left:8.100000px;}
.x1{left:84.960000px;}
.x13{left:106.235973px;}
.x14{left:111.095987px;}
.x2b{left:115.955987px;}
.xd{left:127.475987px;}
.x61{left:138.995987px;}
.x62{left:148.895987px;}
.x9{left:155.910000px;}
.x44{left:170.309973px;}
.x45{left:180.749987px;}
.x19{left:191.369973px;}
.x1a{left:196.589987px;}
.xe{left:212.609973px;}
.xf{left:217.829987px;}
.x30{left:252.569973px;}
.x1b{left:260.489973px;}
.x31{left:263.009987px;}
.x1c{left:265.709987px;}
.x42{left:280.109973px;}
.x7{left:286.049987px;}
.x43{left:290.549987px;}
.x12{left:301.034987px;}
.x3{left:308.415000px;}
.x1f{left:312.734973px;}
.x20{left:317.954987px;}
.x27{left:319.574973px;}
.x5{left:326.594987px;}
.x2c{left:330.554973px;}
.x28{left:331.814987px;}
.x36{left:333.614973px;}
.xb{left:340.635000px;}
.x2d{left:342.794987px;}
.x2e{left:344.054973px;}
.x8{left:345.314987px;}
.x2f{left:356.294987px;}
.x37{left:358.994973px;}
.x38{left:369.434987px;}
.x3f{left:390.674973px;}
.x34{left:400.574973px;}
.x32{left:401.654973px;}
.x6{left:408.674987px;}
.x35{left:411.014987px;}
.x33{left:412.094987px;}
.x40{left:416.954973px;}
.x5e{left:419.114973px;}
.x4c{left:423.254987px;}
.x41{left:427.394987px;}
.x5f{left:429.554987px;}
.x4d{left:430.634987px;}
.x4{left:446.474987px;}
.x4e{left:455.294987px;}
.x3d{left:477.434973px;}
.x4f{left:486.614987px;}
.x3e{left:487.904987px;}
.x50{left:499.574987px;}
.x1d{left:510.404973px;}
.x1e{left:515.624987px;}
.x3b{left:518.504973px;}
.x51{left:521.714987px;}
.xc{left:525.525000px;}
.x3c{left:528.944987px;}
.x15{left:547.304987px;}
.x52{left:552.854987px;}
.x53{left:574.994987px;}
.x54{left:584.354987px;}
.x60{left:609.404973px;}
.x55{left:615.674987px;}
.x21{left:619.844973px;}
.x46{left:622.184973px;}
.x56{left:623.594987px;}
.x22{left:625.064987px;}
.x57{left:630.974987px;}
.x47{left:632.624987px;}
.x58{left:638.354987px;}
.x29{left:653.324973px;}
.x59{left:660.674987px;}
.x10{left:663.404973px;}
.x2a{left:665.564987px;}
.x11{left:668.624987px;}
.x5a{left:684.974987px;}
.x25{left:690.089973px;}
.x26{left:696.209987px;}
.x23{left:704.309973px;}
.x24{left:709.529987px;}
.x5b{left:711.074987px;}
.x5c{left:720.254987px;}
.x5d{left:726.734987px;}
.x48{left:734.549987px;}
.x49{left:739.769987px;}
.x39{left:743.189973px;}
.x3a{left:753.629987px;}
.x4a{left:759.749987px;}
.x4b{left:769.109987px;}
.x16{left:775.949987px;}
.x17{left:789.809987px;}
.x18{left:807.989987px;}
@media print{
.v6{vertical-align:-29.440000pt;}
.v4{vertical-align:-27.520000pt;}
.v11{vertical-align:-26.240000pt;}
.v2{vertical-align:-24.960000pt;}
.ve{vertical-align:-23.680000pt;}
.va{vertical-align:-22.400000pt;}
.vf{vertical-align:-21.120000pt;}
.v3{vertical-align:-19.840000pt;}
.v7{vertical-align:-15.360000pt;}
.v12{vertical-align:-13.440000pt;}
.v14{vertical-align:-12.160000pt;}
.v16{vertical-align:-10.880000pt;}
.v10{vertical-align:-5.120000pt;}
.v9{vertical-align:-3.840000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.480000pt;}
.v13{vertical-align:7.680000pt;}
.v5{vertical-align:10.240000pt;}
.v15{vertical-align:12.160000pt;}
.v8{vertical-align:15.360000pt;}
.vd{vertical-align:20.480000pt;}
.vb{vertical-align:22.400000pt;}
.vc{vertical-align:24.960000pt;}
.ls9{letter-spacing:-1.685333pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.242133pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.108160pt;}
.lsf{letter-spacing:0.154880pt;}
.ls5{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.189867pt;}
.ls13{letter-spacing:0.227200pt;}
.ls6{letter-spacing:0.274216pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.748160pt;}
.ls17{letter-spacing:1.447680pt;}
.ls12{letter-spacing:2.449280pt;}
.ls16{letter-spacing:2.517120pt;}
.ls18{letter-spacing:2.727680pt;}
.ls15{letter-spacing:3.308160pt;}
.ls1{letter-spacing:6.538667pt;}
.ls10{letter-spacing:27.809280pt;}
.ls8{letter-spacing:30.208000pt;}
.lsb{letter-spacing:34.048000pt;}
.lse{letter-spacing:35.471360pt;}
.ws7{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws4{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.680000pt;}
.ws9{word-spacing:-4.043520pt;}
.ws5{word-spacing:0.000000pt;}
._19{margin-left:-1523.509547pt;}
._1f{margin-left:-1385.710720pt;}
._1a{margin-left:-18.910720pt;}
._1e{margin-left:-14.901120pt;}
._1c{margin-left:-13.688960pt;}
._1d{margin-left:-12.309120pt;}
._18{margin-left:-10.954880pt;}
._1b{margin-left:-7.567360pt;}
._7{margin-left:-4.401920pt;}
._6{margin-left:-3.402880pt;}
._2{margin-left:-2.216960pt;}
._0{margin-left:-1.044480pt;}
._1{width:1.024000pt;}
._8{width:1.950720pt;}
._4{width:3.024000pt;}
._3{width:3.930880pt;}
._9{width:4.939520pt;}
._5{width:5.847893pt;}
._d{width:6.799360pt;}
._c{width:7.772160pt;}
._e{width:8.714240pt;}
._a{width:9.688960pt;}
._b{width:10.578560pt;}
._f{width:12.188160pt;}
._16{width:13.739520pt;}
._15{width:14.762667pt;}
._14{width:15.720960pt;}
._12{width:16.721920pt;}
._13{width:17.676800pt;}
._10{width:18.944000pt;}
._11{width:20.014080pt;}
._17{width:21.432320pt;}
.fs9{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:3.520000pt;}
.y6{bottom:4.480000pt;}
.y5{bottom:24.000000pt;}
.y4{bottom:42.240000pt;}
.y3{bottom:62.720000pt;}
.y2{bottom:70.240000pt;}
.y175{bottom:78.400000pt;}
.y71{bottom:79.040000pt;}
.y70{bottom:83.680000pt;}
.y39{bottom:85.280000pt;}
.y174{bottom:94.400000pt;}
.y6f{bottom:94.720000pt;}
.ya6{bottom:95.360000pt;}
.y182{bottom:95.840000pt;}
.y173{bottom:99.040000pt;}
.ya5{bottom:100.000000pt;}
.y38{bottom:104.640000pt;}
.y172{bottom:109.920000pt;}
.y6e{bottom:110.560000pt;}
.ya4{bottom:110.880000pt;}
.yd4{bottom:111.520000pt;}
.y6d{bottom:115.200000pt;}
.y181{bottom:115.520000pt;}
.yd3{bottom:116.160000pt;}
.y37{bottom:123.840000pt;}
.y171{bottom:125.920000pt;}
.ya3{bottom:126.880000pt;}
.yd2{bottom:127.200000pt;}
.y6c{bottom:127.360000pt;}
.y13c{bottom:127.840000pt;}
.y106{bottom:128.320000pt;}
.y170{bottom:130.560000pt;}
.ya2{bottom:131.520000pt;}
.yd1{bottom:131.840000pt;}
.y13b{bottom:132.480000pt;}
.y180{bottom:133.760000pt;}
.y16f{bottom:141.600000pt;}
.ya1{bottom:142.560000pt;}
.y36{bottom:143.200000pt;}
.y153{bottom:144.160000pt;}
.y13a{bottom:144.640000pt;}
.yd0{bottom:147.200000pt;}
.y152{bottom:148.800000pt;}
.y6b{bottom:150.240000pt;}
.y17f{bottom:152.000000pt;}
.y16e{bottom:157.600000pt;}
.ya0{bottom:158.560000pt;}
.ycf{bottom:159.040000pt;}
.y151{bottom:160.320000pt;}
.y16d{bottom:162.240000pt;}
.y35{bottom:162.400000pt;}
.y105{bottom:162.560000pt;}
.y9f{bottom:163.200000pt;}
.y150{bottom:164.960000pt;}
.y6a{bottom:168.480000pt;}
.y139{bottom:169.600000pt;}
.y17e{bottom:170.240000pt;}
.y16c{bottom:174.240000pt;}
.y9e{bottom:175.200000pt;}
.y14f{bottom:177.120000pt;}
.yce{bottom:180.800000pt;}
.y34{bottom:181.760000pt;}
.y69{bottom:186.720000pt;}
.y138{bottom:187.840000pt;}
.y17d{bottom:188.320000pt;}
.y103{bottom:199.040000pt;}
.ycc{bottom:199.200000pt;}
.y33{bottom:200.480000pt;}
.y104{bottom:202.400000pt;}
.y16b{bottom:204.346667pt;}
.y68{bottom:204.986667pt;}
.ycd{bottom:205.306667pt;}
.y9d{bottom:205.626667pt;}
.y137{bottom:206.106667pt;}
.y14e{bottom:206.586667pt;}
.y32{bottom:217.146667pt;}
.y102{bottom:217.306667pt;}
.ycb{bottom:217.626667pt;}
.y16a{bottom:222.586667pt;}
.y67{bottom:223.226667pt;}
.y9c{bottom:223.706667pt;}
.y136{bottom:224.346667pt;}
.y14d{bottom:224.826667pt;}
.y31{bottom:233.626667pt;}
.y101{bottom:235.386667pt;}
.yca{bottom:236.026667pt;}
.y169{bottom:240.826667pt;}
.y66{bottom:241.466667pt;}
.y9b{bottom:241.946667pt;}
.y134{bottom:242.586667pt;}
.y14c{bottom:243.066667pt;}
.y135{bottom:245.946667pt;}
.y30{bottom:250.266667pt;}
.y100{bottom:253.626667pt;}
.yc9{bottom:254.426667pt;}
.y168{bottom:259.066667pt;}
.y65{bottom:259.706667pt;}
.y9a{bottom:260.186667pt;}
.y133{bottom:260.826667pt;}
.y14b{bottom:261.306667pt;}
.y2f{bottom:266.906667pt;}
.yff{bottom:271.866667pt;}
.yc8{bottom:272.826667pt;}
.y167{bottom:277.306667pt;}
.y64{bottom:277.946667pt;}
.y98{bottom:278.426667pt;}
.y132{bottom:279.066667pt;}
.y14a{bottom:279.546667pt;}
.y99{bottom:281.786667pt;}
.y2e{bottom:283.386667pt;}
.yfe{bottom:290.106667pt;}
.yc7{bottom:291.226667pt;}
.y166{bottom:295.386667pt;}
.y62{bottom:296.186667pt;}
.y97{bottom:296.666667pt;}
.y131{bottom:297.146667pt;}
.y149{bottom:297.786667pt;}
.y63{bottom:299.546667pt;}
.y2d{bottom:300.026667pt;}
.yfd{bottom:308.026667pt;}
.yc6{bottom:309.626667pt;}
.y165{bottom:313.626667pt;}
.y61{bottom:314.426667pt;}
.y96{bottom:314.906667pt;}
.y130{bottom:315.386667pt;}
.y148{bottom:316.026667pt;}
.y2c{bottom:316.506667pt;}
.yfc{bottom:325.466667pt;}
.yc5{bottom:328.026667pt;}
.y164{bottom:331.866667pt;}
.y60{bottom:332.666667pt;}
.y2b{bottom:333.146667pt;}
.y12f{bottom:333.626667pt;}
.y147{bottom:334.266667pt;}
.yfb{bottom:343.866667pt;}
.yc4{bottom:346.426667pt;}
.y2a{bottom:349.626667pt;}
.y163{bottom:350.106667pt;}
.y5f{bottom:350.906667pt;}
.y95{bottom:351.386667pt;}
.y12e{bottom:351.866667pt;}
.y146{bottom:352.506667pt;}
.yfa{bottom:362.266667pt;}
.yc3{bottom:364.826667pt;}
.y29{bottom:366.266667pt;}
.y162{bottom:368.346667pt;}
.y5e{bottom:368.986667pt;}
.y94{bottom:369.626667pt;}
.y12d{bottom:370.106667pt;}
.y145{bottom:370.426667pt;}
.y17c{bottom:370.746667pt;}
.yf8{bottom:380.666667pt;}
.y28{bottom:382.746667pt;}
.yc2{bottom:383.226667pt;}
.y161{bottom:386.586667pt;}
.yf9{bottom:386.746667pt;}
.y5d{bottom:387.226667pt;}
.y93{bottom:387.866667pt;}
.y144{bottom:388.026667pt;}
.y12b{bottom:388.346667pt;}
.y17b{bottom:388.506667pt;}
.y12c{bottom:391.706667pt;}
.yf7{bottom:399.066667pt;}
.y27{bottom:399.386667pt;}
.yc1{bottom:401.626667pt;}
.y160{bottom:404.826667pt;}
.y5b{bottom:405.466667pt;}
.y143{bottom:405.786667pt;}
.y92{bottom:406.106667pt;}
.y12a{bottom:406.586667pt;}
.y5c{bottom:408.866667pt;}
.y26{bottom:416.066667pt;}
.yf6{bottom:417.506667pt;}
.yc0{bottom:420.066667pt;}
.y15f{bottom:423.106667pt;}
.y5a{bottom:423.746667pt;}
.y91{bottom:424.386667pt;}
.y129{bottom:424.866667pt;}
.y142{bottom:427.106667pt;}
.y25{bottom:432.546667pt;}
.yf5{bottom:435.906667pt;}
.ybf{bottom:438.466667pt;}
.y15d{bottom:441.346667pt;}
.y59{bottom:441.986667pt;}
.y90{bottom:442.466667pt;}
.y128{bottom:443.106667pt;}
.y15e{bottom:444.706667pt;}
.y24{bottom:449.026667pt;}
.yf4{bottom:454.306667pt;}
.ybe{bottom:456.866667pt;}
.y15c{bottom:459.586667pt;}
.y58{bottom:460.226667pt;}
.y8f{bottom:460.706667pt;}
.y127{bottom:461.346667pt;}
.y23{bottom:465.186667pt;}
.yf3{bottom:472.546667pt;}
.ybc{bottom:475.266667pt;}
.y15b{bottom:477.826667pt;}
.y57{bottom:478.466667pt;}
.y8e{bottom:478.946667pt;}
.y126{bottom:479.586667pt;}
.ybd{bottom:481.346667pt;}
.y22{bottom:481.826667pt;}
.yf2{bottom:490.946667pt;}
.ybb{bottom:493.666667pt;}
.y56{bottom:496.706667pt;}
.y8d{bottom:497.186667pt;}
.y125{bottom:497.666667pt;}
.y17a{bottom:497.826667pt;}
.y21{bottom:498.306667pt;}
.y15a{bottom:498.626667pt;}
.yf1{bottom:509.346667pt;}
.yba{bottom:512.066667pt;}
.y20{bottom:514.946667pt;}
.y8c{bottom:515.426667pt;}
.y124{bottom:515.906667pt;}
.y159{bottom:519.586667pt;}
.yf0{bottom:527.746667pt;}
.yb9{bottom:530.466667pt;}
.y1f{bottom:531.426667pt;}
.y55{bottom:533.186667pt;}
.y8b{bottom:533.666667pt;}
.y123{bottom:534.146667pt;}
.y158{bottom:540.546667pt;}
.yef{bottom:546.146667pt;}
.y1e{bottom:548.066667pt;}
.yb8{bottom:548.866667pt;}
.y140{bottom:551.266667pt;}
.y54{bottom:551.426667pt;}
.y8a{bottom:551.906667pt;}
.y122{bottom:552.386667pt;}
.y141{bottom:554.626667pt;}
.y157{bottom:561.026667pt;}
.yee{bottom:564.546667pt;}
.y1d{bottom:564.706667pt;}
.yb7{bottom:567.266667pt;}
.y53{bottom:569.506667pt;}
.y89{bottom:570.146667pt;}
.y121{bottom:570.626667pt;}
.y1c{bottom:581.186667pt;}
.yed{bottom:582.946667pt;}
.y156{bottom:584.386667pt;}
.yb6{bottom:585.666667pt;}
.y52{bottom:587.746667pt;}
.y88{bottom:588.386667pt;}
.y120{bottom:588.866667pt;}
.y1b{bottom:597.826667pt;}
.yec{bottom:601.346667pt;}
.yb5{bottom:604.066667pt;}
.y51{bottom:605.986667pt;}
.y87{bottom:606.626667pt;}
.y11f{bottom:607.106667pt;}
.y1a{bottom:614.333333pt;}
.yeb{bottom:619.773333pt;}
.yb3{bottom:622.493333pt;}
.y50{bottom:624.253333pt;}
.y86{bottom:624.893333pt;}
.y11e{bottom:625.373333pt;}
.yb4{bottom:628.573333pt;}
.y19{bottom:630.973333pt;}
.yea{bottom:638.173333pt;}
.yb2{bottom:640.893333pt;}
.y4f{bottom:642.493333pt;}
.y85{bottom:642.973333pt;}
.y11d{bottom:643.613333pt;}
.y18{bottom:647.453333pt;}
.ye9{bottom:656.573333pt;}
.yb1{bottom:659.293333pt;}
.y4e{bottom:660.733333pt;}
.y83{bottom:661.213333pt;}
.y11c{bottom:661.853333pt;}
.y17{bottom:664.093333pt;}
.y84{bottom:664.573333pt;}
.ye8{bottom:674.973333pt;}
.yb0{bottom:677.693333pt;}
.y4d{bottom:678.973333pt;}
.y82{bottom:679.453333pt;}
.y11b{bottom:680.093333pt;}
.y16{bottom:680.893333pt;}
.ye7{bottom:693.373333pt;}
.yaf{bottom:696.093333pt;}
.y4c{bottom:697.213333pt;}
.y81{bottom:697.693333pt;}
.y11a{bottom:698.333333pt;}
.y15{bottom:698.653333pt;}
.y184{bottom:703.133333pt;}
.ye6{bottom:711.773333pt;}
.y13{bottom:712.093333pt;}
.yae{bottom:714.493333pt;}
.y4b{bottom:715.453333pt;}
.y80{bottom:715.933333pt;}
.y119{bottom:716.413333pt;}
.y179{bottom:716.573333pt;}
.y183{bottom:721.373333pt;}
.ye5{bottom:730.173333pt;}
.y12{bottom:730.493333pt;}
.yad{bottom:732.893333pt;}
.y4a{bottom:733.693333pt;}
.y7e{bottom:734.173333pt;}
.y178{bottom:734.333333pt;}
.y118{bottom:734.653333pt;}
.y7f{bottom:737.533333pt;}
.y155{bottom:738.013333pt;}
.y11{bottom:746.173333pt;}
.ye4{bottom:748.573333pt;}
.yac{bottom:751.293333pt;}
.y49{bottom:751.933333pt;}
.y177{bottom:752.093333pt;}
.y7d{bottom:752.413333pt;}
.y116{bottom:752.893333pt;}
.y117{bottom:756.253333pt;}
.y10{bottom:759.773333pt;}
.ye3{bottom:766.973333pt;}
.yab{bottom:769.693333pt;}
.y13f{bottom:770.013333pt;}
.y48{bottom:770.173333pt;}
.y7c{bottom:770.653333pt;}
.y115{bottom:771.133333pt;}
.yf{bottom:775.293333pt;}
.ye2{bottom:785.373333pt;}
.yaa{bottom:788.093333pt;}
.y47{bottom:788.253333pt;}
.y7b{bottom:788.893333pt;}
.y114{bottom:789.373333pt;}
.ye{bottom:793.373333pt;}
.ye1{bottom:803.773333pt;}
.y46{bottom:806.493333pt;}
.ya9{bottom:806.813333pt;}
.y7a{bottom:807.133333pt;}
.y113{bottom:807.613333pt;}
.y13e{bottom:809.853333pt;}
.yd{bottom:811.613333pt;}
.ye0{bottom:822.213333pt;}
.y45{bottom:824.773333pt;}
.y79{bottom:825.413333pt;}
.y112{bottom:825.893333pt;}
.y154{bottom:829.253333pt;}
.yc{bottom:829.573333pt;}
.ydf{bottom:840.613333pt;}
.y44{bottom:843.013333pt;}
.y78{bottom:843.493333pt;}
.y111{bottom:844.133333pt;}
.ya8{bottom:846.373333pt;}
.yb{bottom:847.013333pt;}
.yde{bottom:859.013333pt;}
.y43{bottom:861.253333pt;}
.y76{bottom:861.733333pt;}
.y110{bottom:862.373333pt;}
.y176{bottom:864.613333pt;}
.y77{bottom:865.093333pt;}
.ya{bottom:868.133333pt;}
.ydd{bottom:877.413333pt;}
.y42{bottom:879.493333pt;}
.y10f{bottom:880.613333pt;}
.y9{bottom:890.693333pt;}
.ydc{bottom:895.813333pt;}
.y41{bottom:897.733333pt;}
.y10e{bottom:898.853333pt;}
.y8{bottom:912.933333pt;}
.ydb{bottom:914.213333pt;}
.y40{bottom:915.973333pt;}
.y10d{bottom:916.933333pt;}
.yd9{bottom:932.613333pt;}
.y7{bottom:933.733333pt;}
.y3f{bottom:934.213333pt;}
.y10c{bottom:935.173333pt;}
.yda{bottom:938.693333pt;}
.y1{bottom:950.053333pt;}
.yd8{bottom:951.013333pt;}
.y3e{bottom:952.453333pt;}
.y10a{bottom:953.413333pt;}
.ya7{bottom:955.813333pt;}
.y10b{bottom:956.773333pt;}
.yd7{bottom:969.413333pt;}
.y75{bottom:970.533333pt;}
.y3d{bottom:970.693333pt;}
.y109{bottom:971.653333pt;}
.yd6{bottom:987.813333pt;}
.y3c{bottom:988.773333pt;}
.y108{bottom:989.893333pt;}
.yd5{bottom:1006.213333pt;}
.y74{bottom:1007.013333pt;}
.y3b{bottom:1007.173333pt;}
.y107{bottom:1008.133333pt;}
.y13d{bottom:1010.373333pt;}
.y73{bottom:1021.120000pt;}
.y72{bottom:1041.120000pt;}
.y3a{bottom:1042.400000pt;}
.hd{height:14.560000pt;}
.h15{height:26.933750pt;}
.h11{height:33.785000pt;}
.h1d{height:33.918750pt;}
.h12{height:34.374375pt;}
.he{height:34.828125pt;}
.hf{height:38.543125pt;}
.hc{height:39.027500pt;}
.h1e{height:42.063437pt;}
.h1b{height:42.084375pt;}
.h14{height:42.722500pt;}
.h18{height:42.780000pt;}
.h10{height:42.923750pt;}
.hb{height:43.687500pt;}
.h3{height:46.500000pt;}
.ha{height:48.347500pt;}
.h8{height:50.220000pt;}
.h16{height:52.108438pt;}
.h13{height:52.134375pt;}
.h21{height:52.834688pt;}
.h6{height:53.590000pt;}
.h9{height:54.405000pt;}
.h17{height:57.787500pt;}
.h7{height:58.250000pt;}
.h5{height:58.563750pt;}
.h20{height:60.519362pt;}
.h1f{height:62.781250pt;}
.h1a{height:62.812500pt;}
.h19{height:64.500000pt;}
.h1c{height:65.781915pt;}
.h23{height:68.591250pt;}
.h4{height:69.750000pt;}
.h22{height:73.071250pt;}
.h24{height:78.831250pt;}
.h2{height:85.312000pt;}
.h25{height:89.071250pt;}
.h26{height:89.711250pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:162.106667pt;}
.w6{width:162.266667pt;}
.w7{width:190.266667pt;}
.w2{width:198.626667pt;}
.w3{width:396.866667pt;}
.w8{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.080000pt;}
.x2{left:7.200000pt;}
.x1{left:75.520000pt;}
.x13{left:94.431976pt;}
.x14{left:98.751988pt;}
.x2b{left:103.071988pt;}
.xd{left:113.311988pt;}
.x61{left:123.551988pt;}
.x62{left:132.351988pt;}
.x9{left:138.586667pt;}
.x44{left:151.386643pt;}
.x45{left:160.666655pt;}
.x19{left:170.106643pt;}
.x1a{left:174.746655pt;}
.xe{left:188.986643pt;}
.xf{left:193.626655pt;}
.x30{left:224.506643pt;}
.x1b{left:231.546643pt;}
.x31{left:233.786655pt;}
.x1c{left:236.186655pt;}
.x42{left:248.986643pt;}
.x7{left:254.266655pt;}
.x43{left:258.266655pt;}
.x12{left:267.586655pt;}
.x3{left:274.146667pt;}
.x1f{left:277.986643pt;}
.x20{left:282.626655pt;}
.x27{left:284.066643pt;}
.x5{left:290.306655pt;}
.x2c{left:293.826643pt;}
.x28{left:294.946655pt;}
.x36{left:296.546643pt;}
.xb{left:302.786667pt;}
.x2d{left:304.706655pt;}
.x2e{left:305.826643pt;}
.x8{left:306.946655pt;}
.x2f{left:316.706655pt;}
.x37{left:319.106643pt;}
.x38{left:328.386655pt;}
.x3f{left:347.266643pt;}
.x34{left:356.066643pt;}
.x32{left:357.026643pt;}
.x6{left:363.266655pt;}
.x35{left:365.346655pt;}
.x33{left:366.306655pt;}
.x40{left:370.626643pt;}
.x5e{left:372.546643pt;}
.x4c{left:376.226655pt;}
.x41{left:379.906655pt;}
.x5f{left:381.826655pt;}
.x4d{left:382.786655pt;}
.x4{left:396.866655pt;}
.x4e{left:404.706655pt;}
.x3d{left:424.386643pt;}
.x4f{left:432.546655pt;}
.x3e{left:433.693322pt;}
.x50{left:444.066655pt;}
.x1d{left:453.693310pt;}
.x1e{left:458.333322pt;}
.x3b{left:460.893310pt;}
.x51{left:463.746655pt;}
.xc{left:467.133333pt;}
.x3c{left:470.173322pt;}
.x15{left:486.493322pt;}
.x52{left:491.426655pt;}
.x53{left:511.106655pt;}
.x54{left:519.426655pt;}
.x60{left:541.693310pt;}
.x55{left:547.266655pt;}
.x21{left:550.973310pt;}
.x46{left:553.053310pt;}
.x56{left:554.306655pt;}
.x22{left:555.613322pt;}
.x57{left:560.866655pt;}
.x47{left:562.333322pt;}
.x58{left:567.426655pt;}
.x29{left:580.733310pt;}
.x59{left:587.266655pt;}
.x10{left:589.693310pt;}
.x2a{left:591.613322pt;}
.x11{left:594.333322pt;}
.x5a{left:608.866655pt;}
.x25{left:613.413310pt;}
.x26{left:618.853322pt;}
.x23{left:626.053310pt;}
.x24{left:630.693322pt;}
.x5b{left:632.066655pt;}
.x5c{left:640.226655pt;}
.x5d{left:645.986655pt;}
.x48{left:652.933322pt;}
.x49{left:657.573322pt;}
.x39{left:660.613310pt;}
.x3a{left:669.893322pt;}
.x4a{left:675.333322pt;}
.x4b{left:683.653322pt;}
.x16{left:689.733322pt;}
.x17{left:702.053322pt;}
.x18{left:718.213322pt;}
}




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