
    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_33d60b99ab8bac6b4d3f8559.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_eb7f6272ac7350e2dfe3555f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_99aef45604585c7bf2f89fd9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_722fcff24e10fc819cf69725.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a2532fa4e4f060649904bd9f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_21789b0434f06fd923ad1633.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4947442621a1ecfb524e0a25.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130371;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_49b14387ea04c69f6dbac895.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.934082;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_17d4791f74acc7ec0cfd147d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_d419b4a7474ba2a70d2d077c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.983398;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_453f5bb2c1ae318caa5d0b82.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_967403b0321b5e054e6ea934.woff2')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;}
.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);}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v5{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:30.240000px;}
.ls9{letter-spacing:-0.744000px;}
.ls1c{letter-spacing:-0.702000px;}
.lse{letter-spacing:-0.570000px;}
.ls16{letter-spacing:-0.463800px;}
.ls11{letter-spacing:-0.310200px;}
.ls2{letter-spacing:-0.229800px;}
.ls19{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.132600px;}
.ls18{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.093600px;}
.ls5{letter-spacing:-0.058320px;}
.ls1e{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.018000px;}
.ls15{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.075000px;}
.lsc{letter-spacing:0.086400px;}
.ls8{letter-spacing:0.089400px;}
.ls10{letter-spacing:0.132480px;}
.ls4{letter-spacing:0.142560px;}
.ls14{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.182400px;}
.ls17{letter-spacing:0.206400px;}
.ls3{letter-spacing:0.213600px;}
.ls1d{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.256200px;}
.ls13{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.371520px;}
.ls1a{letter-spacing:0.378000px;}
.ls12{letter-spacing:6.629760px;}
.lsf{letter-spacing:9.378720px;}
.ls20{letter-spacing:16.145280px;}
.ls1f{letter-spacing:391.134240px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(47,84,150),0 0.015em rgb(47,84,150),0.015em 0 rgb(47,84,150),0 -0.015em  rgb(47,84,150);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(47,84,150);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-27.174240px;}
.wse{word-spacing:-21.331560px;}
.ws6{word-spacing:-19.251840px;}
.ws5{word-spacing:-19.220640px;}
.ws4{word-spacing:-19.038240px;}
.ws7{word-spacing:-18.944640px;}
.ws1{word-spacing:-18.808440px;}
.wsb{word-spacing:-18.000000px;}
.wsa{word-spacing:-15.226440px;}
.ws12{word-spacing:-15.146400px;}
.wsc{word-spacing:-15.056640px;}
.wsd{word-spacing:-15.045240px;}
.wsf{word-spacing:-14.970240px;}
.ws11{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.837640px;}
.ws13{word-spacing:-14.833200px;}
.ws14{word-spacing:-14.754240px;}
.ws10{word-spacing:-14.506440px;}
.ws17{word-spacing:-13.878000px;}
.ws1b{word-spacing:-13.716000px;}
.ws16{word-spacing:-13.518000px;}
.ws19{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.447440px;}
.ws1a{word-spacing:-12.798000px;}
.ws8{word-spacing:-9.437760px;}
.ws18{word-spacing:-9.000000px;}
.ws15{word-spacing:-8.136000px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-14.912160px;}
._13{margin-left:-13.289280px;}
._16{margin-left:-12.238080px;}
._12{margin-left:-9.116160px;}
._17{margin-left:-7.393920px;}
._18{margin-left:-5.750640px;}
._a{margin-left:-3.312000px;}
._0{margin-left:-1.442880px;}
._1{width:1.135440px;}
._2{width:2.137440px;}
._7{width:3.297600px;}
._9{width:4.688640px;}
._f{width:5.961600px;}
._10{width:7.191360px;}
._b{width:8.412480px;}
._c{width:9.922560px;}
._8{width:11.790720px;}
._5{width:12.850560px;}
._6{width:13.919040px;}
._1e{width:16.361280px;}
._23{width:17.737920px;}
._22{width:18.878400px;}
._d{width:20.401920px;}
._e{width:21.519120px;}
._24{width:22.985280px;}
._1d{width:28.814400px;}
._1c{width:29.926080px;}
._20{width:31.037760px;}
._1f{width:32.126400px;}
._21{width:48.976320px;}
._15{width:66.001200px;}
._19{width:104.033280px;}
._1a{width:122.404560px;}
._4{width:193.337760px;}
._3{width:421.603920px;}
._11{width:845.007840px;}
._1b{width:849.185760px;}
.fc4{color:transparent;}
.fc5{color:rgb(47,84,150);}
.fc3{color:rgb(5,99,193);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(89,153,211);}
.fc0{color:rgb(30,76,119);}
.fsb{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fsa{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.fs0{font-size:144.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y10b{bottom:2.880000px;}
.y114{bottom:3.060000px;}
.yaa{bottom:3.240000px;}
.yd9{bottom:3.285000px;}
.yab{bottom:4.320000px;}
.ya8{bottom:4.500000px;}
.yae{bottom:4.860000px;}
.yd8{bottom:4.905000px;}
.yb1{bottom:5.040000px;}
.y37{bottom:5.580000px;}
.y35{bottom:5.760000px;}
.yb2{bottom:6.480000px;}
.yaf{bottom:6.660000px;}
.y10d{bottom:10.080000px;}
.y115{bottom:10.260000px;}
.yd6{bottom:11.880000px;}
.yc2{bottom:16.560000px;}
.yb5{bottom:17.280000px;}
.yc7{bottom:17.640000px;}
.y111{bottom:17.820000px;}
.y112{bottom:18.000000px;}
.y10a{bottom:18.360000px;}
.y110{bottom:18.540000px;}
.yd7{bottom:20.520000px;}
.yd3{bottom:23.805000px;}
.yb9{bottom:25.200000px;}
.y11b{bottom:25.380000px;}
.yac{bottom:25.560000px;}
.ybd{bottom:26.280000px;}
.y41{bottom:31.314000px;}
.y3b{bottom:31.320000px;}
.yca{bottom:33.660000px;}
.yc1{bottom:33.840000px;}
.y118{bottom:33.885000px;}
.y10f{bottom:34.020000px;}
.yce{bottom:34.380000px;}
.yb4{bottom:34.560000px;}
.yc6{bottom:34.920000px;}
.yd2{bottom:41.085000px;}
.y11a{bottom:49.500000px;}
.y1a{bottom:54.900000px;}
.y3f{bottom:56.880000px;}
.y19{bottom:73.080000px;}
.y3e{bottom:82.620000px;}
.ya0{bottom:111.780000px;}
.ye6{bottom:115.200000px;}
.y42{bottom:117.180000px;}
.y15{bottom:124.200000px;}
.y108{bottom:129.060000px;}
.y9f{bottom:131.940000px;}
.ye5{bottom:136.476000px;}
.y40{bottom:137.196000px;}
.y107{bottom:145.656000px;}
.y14{bottom:149.796000px;}
.y9e{bottom:151.950000px;}
.ye4{bottom:156.630000px;}
.y106{bottom:162.030000px;}
.y9d{bottom:172.110000px;}
.y105{bottom:174.990000px;}
.ye3{bottom:176.790000px;}
.y13{bottom:179.490000px;}
.y3d{bottom:188.490000px;}
.y9c{bottom:192.270000px;}
.ye2{bottom:196.950000px;}
.y9b{bottom:212.430000px;}
.ye1{bottom:217.110000px;}
.y12{bottom:223.410000px;}
.y9a{bottom:232.590000px;}
.ye0{bottom:237.090000px;}
.yff{bottom:240.870000px;}
.y99{bottom:252.750000px;}
.ydf{bottom:257.250000px;}
.yfe{bottom:261.030000px;}
.y11{bottom:267.330000px;}
.y98{bottom:272.910000px;}
.yde{bottom:277.410000px;}
.yfd{bottom:281.190000px;}
.y3c{bottom:291.090000px;}
.y97{bottom:293.070000px;}
.ydd{bottom:297.570000px;}
.yfc{bottom:301.350000px;}
.y10{bottom:311.430000px;}
.y73{bottom:311.970000px;}
.y96{bottom:313.230000px;}
.y3a{bottom:316.650000px;}
.ydc{bottom:317.730000px;}
.yfb{bottom:321.510000px;}
.y72{bottom:332.130000px;}
.y95{bottom:333.390000px;}
.ydb{bottom:337.890000px;}
.yfa{bottom:347.610000px;}
.y71{bottom:352.290000px;}
.y94{bottom:353.370000px;}
.yf{bottom:355.350000px;}
.yf9{bottom:361.830000px;}
.y39{bottom:367.950000px;}
.yda{bottom:372.090000px;}
.y70{bottom:372.450000px;}
.y93{bottom:373.530000px;}
.yf8{bottom:381.990000px;}
.yd1{bottom:385.770000px;}
.y6f{bottom:392.655000px;}
.y38{bottom:393.735000px;}
.ye{bottom:399.315000px;}
.yf7{bottom:402.195000px;}
.yd5{bottom:406.335000px;}
.y6e{bottom:412.815000px;}
.y92{bottom:413.895000px;}
.y36{bottom:419.295000px;}
.yf6{bottom:422.175000px;}
.y6d{bottom:432.975000px;}
.y91{bottom:434.055000px;}
.yd4{bottom:440.895000px;}
.yf5{bottom:442.335000px;}
.yd{bottom:443.235000px;}
.y34{bottom:444.855000px;}
.y90{bottom:454.215000px;}
.ycd{bottom:462.315000px;}
.yf4{bottom:462.495000px;}
.y6c{bottom:472.935000px;}
.y8f{bottom:474.375000px;}
.y33{bottom:476.175000px;}
.yf3{bottom:482.655000px;}
.yd0{bottom:482.835000px;}
.y8e{bottom:494.535000px;}
.y32{bottom:501.915000px;}
.y125{bottom:502.095000px;}
.yf2{bottom:502.815000px;}
.ycf{bottom:504.075000px;}
.yc{bottom:504.255000px;}
.y8d{bottom:514.695000px;}
.y6b{bottom:520.275000px;}
.y124{bottom:522.075000px;}
.yf1{bottom:522.975000px;}
.yc9{bottom:525.495000px;}
.y31{bottom:527.475000px;}
.y8c{bottom:534.675000px;}
.y123{bottom:542.235000px;}
.yf0{bottom:543.135000px;}
.ycc{bottom:546.195000px;}
.y30{bottom:553.035000px;}
.y8b{bottom:554.835000px;}
.yb{bottom:556.275000px;}
.y122{bottom:562.395000px;}
.yef{bottom:563.295000px;}
.y6a{bottom:565.635000px;}
.ycb{bottom:566.715000px;}
.y8a{bottom:574.995000px;}
.y2f{bottom:578.775000px;}
.y121{bottom:582.555000px;}
.yee{bottom:583.455000px;}
.y69{bottom:586.875000px;}
.yc5{bottom:587.235000px;}
.y89{bottom:595.155000px;}
.yed{bottom:603.615000px;}
.y2e{bottom:604.335000px;}
.y68{bottom:607.035000px;}
.yc8{bottom:608.655000px;}
.ya{bottom:610.455000px;}
.y88{bottom:615.315000px;}
.y120{bottom:622.695000px;}
.yec{bottom:623.595000px;}
.y67{bottom:627.195000px;}
.y2d{bottom:630.075000px;}
.y87{bottom:635.475000px;}
.yeb{bottom:643.785000px;}
.y66{bottom:648.465000px;}
.yc0{bottom:651.345000px;}
.y2c{bottom:655.665000px;}
.y104{bottom:660.165000px;}
.yea{bottom:663.945000px;}
.y11f{bottom:668.085000px;}
.y9{bottom:668.265000px;}
.y65{bottom:668.625000px;}
.yc4{bottom:672.045000px;}
.y86{bottom:675.645000px;}
.y103{bottom:676.545000px;}
.y2b{bottom:681.405000px;}
.y64{bottom:688.785000px;}
.yc3{bottom:691.665000px;}
.y102{bottom:693.105000px;}
.y11e{bottom:702.285000px;}
.ye9{bottom:704.085000px;}
.y8{bottom:704.985000px;}
.y2a{bottom:706.965000px;}
.y63{bottom:708.945000px;}
.y101{bottom:709.485000px;}
.ybc{bottom:713.085000px;}
.y11d{bottom:715.965000px;}
.y85{bottom:721.005000px;}
.y100{bottom:722.445000px;}
.y29{bottom:732.525000px;}
.ybf{bottom:734.505000px;}
.y84{bottom:741.165000px;}
.y7{bottom:741.525000px;}
.y54{bottom:742.605000px;}
.ye8{bottom:748.545000px;}
.y62{bottom:748.905000px;}
.ybe{bottom:755.925000px;}
.y28{bottom:758.265000px;}
.y83{bottom:761.145000px;}
.ye7{bottom:761.505000px;}
.y53{bottom:762.765000px;}
.y11c{bottom:763.305000px;}
.yb8{bottom:777.165000px;}
.y82{bottom:781.305000px;}
.y52{bottom:782.925000px;}
.y27{bottom:783.825000px;}
.y61{bottom:794.265000px;}
.ybb{bottom:796.965000px;}
.y6{bottom:799.125000px;}
.y81{bottom:801.465000px;}
.y51{bottom:803.085000px;}
.y119{bottom:810.645000px;}
.y60{bottom:814.425000px;}
.y26{bottom:816.945000px;}
.yba{bottom:817.665000px;}
.y80{bottom:821.625000px;}
.y50{bottom:823.245000px;}
.y5f{bottom:834.585000px;}
.yb3{bottom:838.905000px;}
.y7f{bottom:841.785000px;}
.y25{bottom:842.685000px;}
.y4f{bottom:843.225000px;}
.y5{bottom:856.725000px;}
.yb7{bottom:860.325000px;}
.y7e{bottom:861.945000px;}
.y4e{bottom:863.385000px;}
.y24{bottom:868.245000px;}
.y117{bottom:873.465000px;}
.y5e{bottom:874.725000px;}
.yb6{bottom:881.745000px;}
.y7d{bottom:882.105000px;}
.y4d{bottom:883.545000px;}
.y4{bottom:893.490000px;}
.y23{bottom:894.030000px;}
.y7c{bottom:902.310000px;}
.y4c{bottom:903.750000px;}
.y22{bottom:919.590000px;}
.y5d{bottom:920.130000px;}
.y116{bottom:920.850000px;}
.y7b{bottom:922.470000px;}
.yb0{bottom:922.830000px;}
.y4b{bottom:923.910000px;}
.y5c{bottom:940.290000px;}
.y7a{bottom:942.630000px;}
.yad{bottom:943.530000px;}
.y4a{bottom:944.070000px;}
.y21{bottom:945.150000px;}
.y3{bottom:957.390000px;}
.y5b{bottom:960.450000px;}
.y79{bottom:962.610000px;}
.y49{bottom:964.230000px;}
.ya9{bottom:964.950000px;}
.y113{bottom:968.010000px;}
.y20{bottom:970.890000px;}
.y5a{bottom:980.430000px;}
.y78{bottom:982.770000px;}
.y48{bottom:984.390000px;}
.ya7{bottom:985.290000px;}
.y1f{bottom:996.450000px;}
.y10e{bottom:999.870000px;}
.y59{bottom:1000.590000px;}
.y77{bottom:1002.930000px;}
.y47{bottom:1004.550000px;}
.ya6{bottom:1009.950000px;}
.y58{bottom:1020.750000px;}
.y1e{bottom:1022.190000px;}
.y76{bottom:1023.090000px;}
.y46{bottom:1024.710000px;}
.ya5{bottom:1030.110000px;}
.y2{bottom:1039.650000px;}
.y57{bottom:1040.910000px;}
.y75{bottom:1043.250000px;}
.y45{bottom:1044.690000px;}
.y10c{bottom:1047.210000px;}
.y1d{bottom:1047.750000px;}
.ya4{bottom:1050.270000px;}
.y56{bottom:1061.070000px;}
.y74{bottom:1063.410000px;}
.y44{bottom:1064.850000px;}
.ya3{bottom:1070.430000px;}
.y1c{bottom:1074.930000px;}
.y109{bottom:1079.070000px;}
.y43{bottom:1085.010000px;}
.ya2{bottom:1090.590000px;}
.y55{bottom:1103.550000px;}
.y1{bottom:1104.630000px;}
.y1b{bottom:1106.430000px;}
.ya1{bottom:1110.750000px;}
.y18{bottom:1130.910000px;}
.y17{bottom:1150.920000px;}
.y16{bottom:1192.140000px;}
.h16{height:19.620000px;}
.h1c{height:19.656000px;}
.h1e{height:19.800000px;}
.h14{height:20.160000px;}
.h18{height:20.520000px;}
.h21{height:20.556000px;}
.h19{height:20.700000px;}
.hd{height:25.560000px;}
.hc{height:25.740000px;}
.he{height:25.776000px;}
.h2c{height:30.960000px;}
.h2e{height:31.140000px;}
.h24{height:34.560000px;}
.h27{height:42.124219px;}
.h26{height:43.453125px;}
.h28{height:44.088750px;}
.h29{height:46.440000px;}
.h2f{height:46.476000px;}
.h2d{height:46.620000px;}
.hf{height:51.300000px;}
.h2a{height:54.421875px;}
.h2b{height:55.291992px;}
.h25{height:58.651172px;}
.h8{height:59.439023px;}
.h1b{height:60.226875px;}
.h1d{height:61.020000px;}
.h17{height:61.740000px;}
.h30{height:62.100000px;}
.h22{height:62.460000px;}
.h1a{height:62.496000px;}
.h1f{height:63.360000px;}
.h20{height:63.396000px;}
.h7{height:65.884219px;}
.h15{height:67.824844px;}
.h31{height:68.084282px;}
.h12{height:70.664062px;}
.h23{height:75.816000px;}
.h6{height:83.787539px;}
.hb{height:86.255508px;}
.h11{height:91.177734px;}
.h13{height:99.687656px;}
.h10{height:102.600000px;}
.h5{height:108.843750px;}
.h9{height:110.583984px;}
.ha{height:114.027539px;}
.h4{height:123.116836px;}
.h2{height:143.226562px;}
.h3{height:221.167969px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w13{width:74.880000px;}
.w16{width:74.916000px;}
.w14{width:75.060000px;}
.w15{width:75.096000px;}
.wd{width:75.240000px;}
.w12{width:75.276000px;}
.we{width:75.600000px;}
.w10{width:75.636000px;}
.w11{width:75.780000px;}
.wf{width:75.816000px;}
.w9{width:105.516000px;}
.wb{width:105.876000px;}
.w6{width:106.236000px;}
.w8{width:147.960000px;}
.w5{width:149.040000px;}
.w3{width:265.530000px;}
.w4{width:403.995000px;}
.wa{width:425.445000px;}
.wc{width:425.805000px;}
.w7{width:426.165000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x10{left:8.100000px;}
.x22{left:10.980000px;}
.x25{left:12.420000px;}
.x21{left:14.760000px;}
.x24{left:18.765000px;}
.x23{left:37.440000px;}
.x15{left:44.325000px;}
.x16{left:50.265000px;}
.xf{left:95.616000px;}
.x1{left:106.235987px;}
.x6{left:109.655987px;}
.x2{left:122.255987px;}
.x3{left:125.855987px;}
.x26{left:127.475987px;}
.x12{left:133.235987px;}
.x13{left:138.275987px;}
.x27{left:148.715987px;}
.x7{left:150.689987px;}
.x19{left:182.370000px;}
.xb{left:192.449987px;}
.xe{left:233.849987px;}
.x14{left:255.270000px;}
.x1a{left:257.970000px;}
.xd{left:294.554987px;}
.xa{left:311.834987px;}
.xc{left:321.734987px;}
.x1b{left:333.795000px;}
.x4{left:344.234987px;}
.x9{left:354.134987px;}
.x8{left:360.074987px;}
.x11{left:361.155000px;}
.x1c{left:409.395000px;}
.x5{left:446.324987px;}
.x1d{left:485.205000px;}
.x1e{left:560.805000px;}
.x1f{left:636.450000px;}
.x20{left:712.230000px;}
.x17{left:754.349987px;}
.x18{left:787.139987px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v5{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:26.880000pt;}
.ls9{letter-spacing:-0.661333pt;}
.ls1c{letter-spacing:-0.624000pt;}
.lse{letter-spacing:-0.506667pt;}
.ls16{letter-spacing:-0.412267pt;}
.ls11{letter-spacing:-0.275733pt;}
.ls2{letter-spacing:-0.204267pt;}
.ls19{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.117867pt;}
.ls18{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.083200pt;}
.ls5{letter-spacing:-0.051840pt;}
.ls1e{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.016000pt;}
.ls15{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.066667pt;}
.lsc{letter-spacing:0.076800pt;}
.ls8{letter-spacing:0.079467pt;}
.ls10{letter-spacing:0.117760pt;}
.ls4{letter-spacing:0.126720pt;}
.ls14{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.162133pt;}
.ls17{letter-spacing:0.183467pt;}
.ls3{letter-spacing:0.189867pt;}
.ls1d{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.227733pt;}
.ls13{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.330240pt;}
.ls1a{letter-spacing:0.336000pt;}
.ls12{letter-spacing:5.893120pt;}
.lsf{letter-spacing:8.336640pt;}
.ls20{letter-spacing:14.351360pt;}
.ls1f{letter-spacing:347.674880pt;}
.ws0{word-spacing:-24.154880pt;}
.wse{word-spacing:-18.961387pt;}
.ws6{word-spacing:-17.112747pt;}
.ws5{word-spacing:-17.085013pt;}
.ws4{word-spacing:-16.922880pt;}
.ws7{word-spacing:-16.839680pt;}
.ws1{word-spacing:-16.718613pt;}
.wsb{word-spacing:-16.000000pt;}
.wsa{word-spacing:-13.534613pt;}
.ws12{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.383680pt;}
.wsd{word-spacing:-13.373547pt;}
.wsf{word-spacing:-13.306880pt;}
.ws11{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.189013pt;}
.ws13{word-spacing:-13.185067pt;}
.ws14{word-spacing:-13.114880pt;}
.ws10{word-spacing:-12.894613pt;}
.ws17{word-spacing:-12.336000pt;}
.ws1b{word-spacing:-12.192000pt;}
.ws16{word-spacing:-12.016000pt;}
.ws19{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.953280pt;}
.ws1a{word-spacing:-11.376000pt;}
.ws8{word-spacing:-8.389120pt;}
.ws18{word-spacing:-8.000000pt;}
.ws15{word-spacing:-7.232000pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-13.255253pt;}
._13{margin-left:-11.812693pt;}
._16{margin-left:-10.878293pt;}
._12{margin-left:-8.103253pt;}
._17{margin-left:-6.572373pt;}
._18{margin-left:-5.111680pt;}
._a{margin-left:-2.944000pt;}
._0{margin-left:-1.282560pt;}
._1{width:1.009280pt;}
._2{width:1.899947pt;}
._7{width:2.931200pt;}
._9{width:4.167680pt;}
._f{width:5.299200pt;}
._10{width:6.392320pt;}
._b{width:7.477760pt;}
._c{width:8.820053pt;}
._8{width:10.480640pt;}
._5{width:11.422720pt;}
._6{width:12.372480pt;}
._1e{width:14.543360pt;}
._23{width:15.767040pt;}
._22{width:16.780800pt;}
._d{width:18.135040pt;}
._e{width:19.128107pt;}
._24{width:20.431360pt;}
._1d{width:25.612800pt;}
._1c{width:26.600960pt;}
._20{width:27.589120pt;}
._1f{width:28.556800pt;}
._21{width:43.534507pt;}
._15{width:58.667733pt;}
._19{width:92.474027pt;}
._1a{width:108.804053pt;}
._4{width:171.855787pt;}
._3{width:374.759040pt;}
._11{width:751.118080pt;}
._1b{width:754.831787pt;}
.fsb{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fsa{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.fs0{font-size:128.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y10b{bottom:2.560000pt;}
.y114{bottom:2.720000pt;}
.yaa{bottom:2.880000pt;}
.yd9{bottom:2.920000pt;}
.yab{bottom:3.840000pt;}
.ya8{bottom:4.000000pt;}
.yae{bottom:4.320000pt;}
.yd8{bottom:4.360000pt;}
.yb1{bottom:4.480000pt;}
.y37{bottom:4.960000pt;}
.y35{bottom:5.120000pt;}
.yb2{bottom:5.760000pt;}
.yaf{bottom:5.920000pt;}
.y10d{bottom:8.960000pt;}
.y115{bottom:9.120000pt;}
.yd6{bottom:10.560000pt;}
.yc2{bottom:14.720000pt;}
.yb5{bottom:15.360000pt;}
.yc7{bottom:15.680000pt;}
.y111{bottom:15.840000pt;}
.y112{bottom:16.000000pt;}
.y10a{bottom:16.320000pt;}
.y110{bottom:16.480000pt;}
.yd7{bottom:18.240000pt;}
.yd3{bottom:21.160000pt;}
.yb9{bottom:22.400000pt;}
.y11b{bottom:22.560000pt;}
.yac{bottom:22.720000pt;}
.ybd{bottom:23.360000pt;}
.y41{bottom:27.834667pt;}
.y3b{bottom:27.840000pt;}
.yca{bottom:29.920000pt;}
.yc1{bottom:30.080000pt;}
.y118{bottom:30.120000pt;}
.y10f{bottom:30.240000pt;}
.yce{bottom:30.560000pt;}
.yb4{bottom:30.720000pt;}
.yc6{bottom:31.040000pt;}
.yd2{bottom:36.520000pt;}
.y11a{bottom:44.000000pt;}
.y1a{bottom:48.800000pt;}
.y3f{bottom:50.560000pt;}
.y19{bottom:64.960000pt;}
.y3e{bottom:73.440000pt;}
.ya0{bottom:99.360000pt;}
.ye6{bottom:102.400000pt;}
.y42{bottom:104.160000pt;}
.y15{bottom:110.400000pt;}
.y108{bottom:114.720000pt;}
.y9f{bottom:117.280000pt;}
.ye5{bottom:121.312000pt;}
.y40{bottom:121.952000pt;}
.y107{bottom:129.472000pt;}
.y14{bottom:133.152000pt;}
.y9e{bottom:135.066667pt;}
.ye4{bottom:139.226667pt;}
.y106{bottom:144.026667pt;}
.y9d{bottom:152.986667pt;}
.y105{bottom:155.546667pt;}
.ye3{bottom:157.146667pt;}
.y13{bottom:159.546667pt;}
.y3d{bottom:167.546667pt;}
.y9c{bottom:170.906667pt;}
.ye2{bottom:175.066667pt;}
.y9b{bottom:188.826667pt;}
.ye1{bottom:192.986667pt;}
.y12{bottom:198.586667pt;}
.y9a{bottom:206.746667pt;}
.ye0{bottom:210.746667pt;}
.yff{bottom:214.106667pt;}
.y99{bottom:224.666667pt;}
.ydf{bottom:228.666667pt;}
.yfe{bottom:232.026667pt;}
.y11{bottom:237.626667pt;}
.y98{bottom:242.586667pt;}
.yde{bottom:246.586667pt;}
.yfd{bottom:249.946667pt;}
.y3c{bottom:258.746667pt;}
.y97{bottom:260.506667pt;}
.ydd{bottom:264.506667pt;}
.yfc{bottom:267.866667pt;}
.y10{bottom:276.826667pt;}
.y73{bottom:277.306667pt;}
.y96{bottom:278.426667pt;}
.y3a{bottom:281.466667pt;}
.ydc{bottom:282.426667pt;}
.yfb{bottom:285.786667pt;}
.y72{bottom:295.226667pt;}
.y95{bottom:296.346667pt;}
.ydb{bottom:300.346667pt;}
.yfa{bottom:308.986667pt;}
.y71{bottom:313.146667pt;}
.y94{bottom:314.106667pt;}
.yf{bottom:315.866667pt;}
.yf9{bottom:321.626667pt;}
.y39{bottom:327.066667pt;}
.yda{bottom:330.746667pt;}
.y70{bottom:331.066667pt;}
.y93{bottom:332.026667pt;}
.yf8{bottom:339.546667pt;}
.yd1{bottom:342.906667pt;}
.y6f{bottom:349.026667pt;}
.y38{bottom:349.986667pt;}
.ye{bottom:354.946667pt;}
.yf7{bottom:357.506667pt;}
.yd5{bottom:361.186667pt;}
.y6e{bottom:366.946667pt;}
.y92{bottom:367.906667pt;}
.y36{bottom:372.706667pt;}
.yf6{bottom:375.266667pt;}
.y6d{bottom:384.866667pt;}
.y91{bottom:385.826667pt;}
.yd4{bottom:391.906667pt;}
.yf5{bottom:393.186667pt;}
.yd{bottom:393.986667pt;}
.y34{bottom:395.426667pt;}
.y90{bottom:403.746667pt;}
.ycd{bottom:410.946667pt;}
.yf4{bottom:411.106667pt;}
.y6c{bottom:420.386667pt;}
.y8f{bottom:421.666667pt;}
.y33{bottom:423.266667pt;}
.yf3{bottom:429.026667pt;}
.yd0{bottom:429.186667pt;}
.y8e{bottom:439.586667pt;}
.y32{bottom:446.146667pt;}
.y125{bottom:446.306667pt;}
.yf2{bottom:446.946667pt;}
.ycf{bottom:448.066667pt;}
.yc{bottom:448.226667pt;}
.y8d{bottom:457.506667pt;}
.y6b{bottom:462.466667pt;}
.y124{bottom:464.066667pt;}
.yf1{bottom:464.866667pt;}
.yc9{bottom:467.106667pt;}
.y31{bottom:468.866667pt;}
.y8c{bottom:475.266667pt;}
.y123{bottom:481.986667pt;}
.yf0{bottom:482.786667pt;}
.ycc{bottom:485.506667pt;}
.y30{bottom:491.586667pt;}
.y8b{bottom:493.186667pt;}
.yb{bottom:494.466667pt;}
.y122{bottom:499.906667pt;}
.yef{bottom:500.706667pt;}
.y6a{bottom:502.786667pt;}
.ycb{bottom:503.746667pt;}
.y8a{bottom:511.106667pt;}
.y2f{bottom:514.466667pt;}
.y121{bottom:517.826667pt;}
.yee{bottom:518.626667pt;}
.y69{bottom:521.666667pt;}
.yc5{bottom:521.986667pt;}
.y89{bottom:529.026667pt;}
.yed{bottom:536.546667pt;}
.y2e{bottom:537.186667pt;}
.y68{bottom:539.586667pt;}
.yc8{bottom:541.026667pt;}
.ya{bottom:542.626667pt;}
.y88{bottom:546.946667pt;}
.y120{bottom:553.506667pt;}
.yec{bottom:554.306667pt;}
.y67{bottom:557.506667pt;}
.y2d{bottom:560.066667pt;}
.y87{bottom:564.866667pt;}
.yeb{bottom:572.253333pt;}
.y66{bottom:576.413333pt;}
.yc0{bottom:578.973333pt;}
.y2c{bottom:582.813333pt;}
.y104{bottom:586.813333pt;}
.yea{bottom:590.173333pt;}
.y11f{bottom:593.853333pt;}
.y9{bottom:594.013333pt;}
.y65{bottom:594.333333pt;}
.yc4{bottom:597.373333pt;}
.y86{bottom:600.573333pt;}
.y103{bottom:601.373333pt;}
.y2b{bottom:605.693333pt;}
.y64{bottom:612.253333pt;}
.yc3{bottom:614.813333pt;}
.y102{bottom:616.093333pt;}
.y11e{bottom:624.253333pt;}
.ye9{bottom:625.853333pt;}
.y8{bottom:626.653333pt;}
.y2a{bottom:628.413333pt;}
.y63{bottom:630.173333pt;}
.y101{bottom:630.653333pt;}
.ybc{bottom:633.853333pt;}
.y11d{bottom:636.413333pt;}
.y85{bottom:640.893333pt;}
.y100{bottom:642.173333pt;}
.y29{bottom:651.133333pt;}
.ybf{bottom:652.893333pt;}
.y84{bottom:658.813333pt;}
.y7{bottom:659.133333pt;}
.y54{bottom:660.093333pt;}
.ye8{bottom:665.373333pt;}
.y62{bottom:665.693333pt;}
.ybe{bottom:671.933333pt;}
.y28{bottom:674.013333pt;}
.y83{bottom:676.573333pt;}
.ye7{bottom:676.893333pt;}
.y53{bottom:678.013333pt;}
.y11c{bottom:678.493333pt;}
.yb8{bottom:690.813333pt;}
.y82{bottom:694.493333pt;}
.y52{bottom:695.933333pt;}
.y27{bottom:696.733333pt;}
.y61{bottom:706.013333pt;}
.ybb{bottom:708.413333pt;}
.y6{bottom:710.333333pt;}
.y81{bottom:712.413333pt;}
.y51{bottom:713.853333pt;}
.y119{bottom:720.573333pt;}
.y60{bottom:723.933333pt;}
.y26{bottom:726.173333pt;}
.yba{bottom:726.813333pt;}
.y80{bottom:730.333333pt;}
.y50{bottom:731.773333pt;}
.y5f{bottom:741.853333pt;}
.yb3{bottom:745.693333pt;}
.y7f{bottom:748.253333pt;}
.y25{bottom:749.053333pt;}
.y4f{bottom:749.533333pt;}
.y5{bottom:761.533333pt;}
.yb7{bottom:764.733333pt;}
.y7e{bottom:766.173333pt;}
.y4e{bottom:767.453333pt;}
.y24{bottom:771.773333pt;}
.y117{bottom:776.413333pt;}
.y5e{bottom:777.533333pt;}
.yb6{bottom:783.773333pt;}
.y7d{bottom:784.093333pt;}
.y4d{bottom:785.373333pt;}
.y4{bottom:794.213333pt;}
.y23{bottom:794.693333pt;}
.y7c{bottom:802.053333pt;}
.y4c{bottom:803.333333pt;}
.y22{bottom:817.413333pt;}
.y5d{bottom:817.893333pt;}
.y116{bottom:818.533333pt;}
.y7b{bottom:819.973333pt;}
.yb0{bottom:820.293333pt;}
.y4b{bottom:821.253333pt;}
.y5c{bottom:835.813333pt;}
.y7a{bottom:837.893333pt;}
.yad{bottom:838.693333pt;}
.y4a{bottom:839.173333pt;}
.y21{bottom:840.133333pt;}
.y3{bottom:851.013333pt;}
.y5b{bottom:853.733333pt;}
.y79{bottom:855.653333pt;}
.y49{bottom:857.093333pt;}
.ya9{bottom:857.733333pt;}
.y113{bottom:860.453333pt;}
.y20{bottom:863.013333pt;}
.y5a{bottom:871.493333pt;}
.y78{bottom:873.573333pt;}
.y48{bottom:875.013333pt;}
.ya7{bottom:875.813333pt;}
.y1f{bottom:885.733333pt;}
.y10e{bottom:888.773333pt;}
.y59{bottom:889.413333pt;}
.y77{bottom:891.493333pt;}
.y47{bottom:892.933333pt;}
.ya6{bottom:897.733333pt;}
.y58{bottom:907.333333pt;}
.y1e{bottom:908.613333pt;}
.y76{bottom:909.413333pt;}
.y46{bottom:910.853333pt;}
.ya5{bottom:915.653333pt;}
.y2{bottom:924.133333pt;}
.y57{bottom:925.253333pt;}
.y75{bottom:927.333333pt;}
.y45{bottom:928.613333pt;}
.y10c{bottom:930.853333pt;}
.y1d{bottom:931.333333pt;}
.ya4{bottom:933.573333pt;}
.y56{bottom:943.173333pt;}
.y74{bottom:945.253333pt;}
.y44{bottom:946.533333pt;}
.ya3{bottom:951.493333pt;}
.y1c{bottom:955.493333pt;}
.y109{bottom:959.173333pt;}
.y43{bottom:964.453333pt;}
.ya2{bottom:969.413333pt;}
.y55{bottom:980.933333pt;}
.y1{bottom:981.893333pt;}
.y1b{bottom:983.493333pt;}
.ya1{bottom:987.333333pt;}
.y18{bottom:1005.253333pt;}
.y17{bottom:1023.040000pt;}
.y16{bottom:1059.680000pt;}
.h16{height:17.440000pt;}
.h1c{height:17.472000pt;}
.h1e{height:17.600000pt;}
.h14{height:17.920000pt;}
.h18{height:18.240000pt;}
.h21{height:18.272000pt;}
.h19{height:18.400000pt;}
.hd{height:22.720000pt;}
.hc{height:22.880000pt;}
.he{height:22.912000pt;}
.h2c{height:27.520000pt;}
.h2e{height:27.680000pt;}
.h24{height:30.720000pt;}
.h27{height:37.443750pt;}
.h26{height:38.625000pt;}
.h28{height:39.190000pt;}
.h29{height:41.280000pt;}
.h2f{height:41.312000pt;}
.h2d{height:41.440000pt;}
.hf{height:45.600000pt;}
.h2a{height:48.375000pt;}
.h2b{height:49.148438pt;}
.h25{height:52.134375pt;}
.h8{height:52.834688pt;}
.h1b{height:53.535000pt;}
.h1d{height:54.240000pt;}
.h17{height:54.880000pt;}
.h30{height:55.200000pt;}
.h22{height:55.520000pt;}
.h1a{height:55.552000pt;}
.h1f{height:56.320000pt;}
.h20{height:56.352000pt;}
.h7{height:58.563750pt;}
.h15{height:60.288750pt;}
.h31{height:60.519362pt;}
.h12{height:62.812500pt;}
.h23{height:67.392000pt;}
.h6{height:74.477812pt;}
.hb{height:76.671562pt;}
.h11{height:81.046875pt;}
.h13{height:88.611250pt;}
.h10{height:91.200000pt;}
.h5{height:96.750000pt;}
.h9{height:98.296875pt;}
.ha{height:101.357813pt;}
.h4{height:109.437187pt;}
.h2{height:127.312500pt;}
.h3{height:196.593750pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w13{width:66.560000pt;}
.w16{width:66.592000pt;}
.w14{width:66.720000pt;}
.w15{width:66.752000pt;}
.wd{width:66.880000pt;}
.w12{width:66.912000pt;}
.we{width:67.200000pt;}
.w10{width:67.232000pt;}
.w11{width:67.360000pt;}
.wf{width:67.392000pt;}
.w9{width:93.792000pt;}
.wb{width:94.112000pt;}
.w6{width:94.432000pt;}
.w8{width:131.520000pt;}
.w5{width:132.480000pt;}
.w3{width:236.026667pt;}
.w4{width:359.106667pt;}
.wa{width:378.173333pt;}
.wc{width:378.493333pt;}
.w7{width:378.813333pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x10{left:7.200000pt;}
.x22{left:9.760000pt;}
.x25{left:11.040000pt;}
.x21{left:13.120000pt;}
.x24{left:16.680000pt;}
.x23{left:33.280000pt;}
.x15{left:39.400000pt;}
.x16{left:44.680000pt;}
.xf{left:84.992000pt;}
.x1{left:94.431988pt;}
.x6{left:97.471988pt;}
.x2{left:108.671988pt;}
.x3{left:111.871988pt;}
.x26{left:113.311988pt;}
.x12{left:118.431988pt;}
.x13{left:122.911988pt;}
.x27{left:132.191988pt;}
.x7{left:133.946655pt;}
.x19{left:162.106667pt;}
.xb{left:171.066655pt;}
.xe{left:207.866655pt;}
.x14{left:226.906667pt;}
.x1a{left:229.306667pt;}
.xd{left:261.826655pt;}
.xa{left:277.186655pt;}
.xc{left:285.986655pt;}
.x1b{left:296.706667pt;}
.x4{left:305.986655pt;}
.x9{left:314.786655pt;}
.x8{left:320.066655pt;}
.x11{left:321.026667pt;}
.x1c{left:363.906667pt;}
.x5{left:396.733322pt;}
.x1d{left:431.293333pt;}
.x1e{left:498.493333pt;}
.x1f{left:565.733333pt;}
.x20{left:633.093333pt;}
.x17{left:670.533322pt;}
.x18{left:699.679988pt;}
}




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