
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7860944f043970f20ecead2c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_e0401d4a9e4848694f74c01c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_e968d0c593a427b769bf0055.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_b1cb537b7aac90d33d13358a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_801381bc8684cf1f9798b9f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_3ed13608cb0af94f3aa6c2c9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854492;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_db30964b474539a6b3425ab2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b08323661069de98639bcea9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_0964c634f28dd1c6ac9061cc.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_91de69504fc7f3a20a510349.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d39e9d6a396ffc77fcd36da4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.372070;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_630525dcf7974e0367f106c7.woff2')format("woff");}.ffd{font-family:ffd;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v4{vertical-align:30.240000px;}
.v3{vertical-align:35.280000px;}
.v6{vertical-align:40.320000px;}
.v5{vertical-align:45.360000px;}
.v7{vertical-align:85.680000px;}
.ls2b{letter-spacing:-0.391800px;}
.ls1c{letter-spacing:-0.190200px;}
.ls12{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls24{letter-spacing:-0.101400px;}
.ls8{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls2c{letter-spacing:-0.084000px;}
.ls25{letter-spacing:-0.063600px;}
.ls14{letter-spacing:-0.048960px;}
.ls23{letter-spacing:-0.036000px;}
.ls1d{letter-spacing:-0.024120px;}
.ls20{letter-spacing:-0.006840px;}
.ls1f{letter-spacing:-0.004680px;}
.ls1e{letter-spacing:-0.003960px;}
.lsa{letter-spacing:-0.003000px;}
.ls6{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.012600px;}
.ls4{letter-spacing:0.014760px;}
.ls1b{letter-spacing:0.031320px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls18{letter-spacing:0.051120px;}
.ls22{letter-spacing:0.053280px;}
.ls1a{letter-spacing:0.054000px;}
.ls13{letter-spacing:0.060480px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls7{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.169800px;}
.lsc{letter-spacing:0.173400px;}
.ls2a{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.266400px;}
.ls28{letter-spacing:0.276120px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:4.413600px;}
.ls3{letter-spacing:6.746400px;}
.ls26{letter-spacing:8.733600px;}
.ls15{letter-spacing:16.650360px;}
.ls29{letter-spacing:47.726640px;}
.ls27{letter-spacing:80.846640px;}
.ls17{letter-spacing:541.662600px;}
.ls19{letter-spacing:548.382600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3{word-spacing:-60.120000px;}
.ws7{word-spacing:-14.493600px;}
.ws2{word-spacing:-14.490600px;}
.wsa{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.ws15{word-spacing:-13.396200px;}
.ws16{word-spacing:-13.280400px;}
.ws18{word-spacing:-13.279680px;}
.ws14{word-spacing:-13.277520px;}
.wsb{word-spacing:-13.275360px;}
.ws11{word-spacing:-13.239000px;}
.ws5{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.222440px;}
.ws12{word-spacing:-13.221720px;}
.ws13{word-spacing:-13.219560px;}
.wsc{word-spacing:-13.177440px;}
.ws1b{word-spacing:-13.162800px;}
.ws1a{word-spacing:-13.125000px;}
.ws9{word-spacing:-13.039800px;}
.wse{word-spacing:-13.036200px;}
.ws19{word-spacing:-11.844000px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsd{word-spacing:-9.297720px;}
.wsf{word-spacing:-9.242280px;}
.ws8{word-spacing:0.000000px;}
.ws17{word-spacing:0.267120px;}
.ws6{word-spacing:4.304880px;}
._18{margin-left:-4.321602px;}
._e{margin-left:-3.313638px;}
._7{margin-left:-2.191200px;}
._0{margin-left:-1.110000px;}
._2{width:1.258284px;}
._9{width:2.284800px;}
._5{width:3.336973px;}
._6{width:4.449000px;}
._8{width:5.605631px;}
._3{width:6.785442px;}
._4{width:8.118664px;}
._d{width:9.138240px;}
._a{width:10.521000px;}
._15{width:12.024000px;}
._19{width:14.322960px;}
._f{width:15.376320px;}
._10{width:16.650360px;}
._b{width:17.675400px;}
._c{width:18.817199px;}
._17{width:19.869720px;}
._16{width:20.921760px;}
._1{width:25.499436px;}
._13{width:36.539701px;}
._12{width:129.361560px;}
._11{width:226.635792px;}
._14{width:301.381668px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yc9{bottom:2.160000px;}
.y4f{bottom:7.830000px;}
.ya4{bottom:7.860000px;}
.y4d{bottom:7.920000px;}
.y9f{bottom:8.190000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y9d{bottom:128.010000px;}
.yc7{bottom:129.900000px;}
.ye8{bottom:130.620000px;}
.y8b{bottom:133.050000px;}
.y10d{bottom:134.490000px;}
.y48{bottom:135.750000px;}
.y66{bottom:137.730000px;}
.y27{bottom:139.890000px;}
.y9c{bottom:145.650000px;}
.yc6{bottom:147.450000px;}
.ye7{bottom:148.260000px;}
.y8a{bottom:150.690000px;}
.y10c{bottom:152.130000px;}
.y47{bottom:153.300000px;}
.y26{bottom:157.440000px;}
.y9b{bottom:163.200000px;}
.yc5{bottom:165.000000px;}
.y10b{bottom:169.680000px;}
.y46{bottom:170.940000px;}
.y65{bottom:173.370000px;}
.y9a{bottom:180.750000px;}
.ye6{bottom:183.810000px;}
.y89{bottom:186.240000px;}
.y10a{bottom:187.320000px;}
.y64{bottom:190.920000px;}
.y25{bottom:193.080000px;}
.yc4{bottom:200.640000px;}
.ye5{bottom:201.450000px;}
.y45{bottom:206.490000px;}
.y63{bottom:208.560000px;}
.y24{bottom:210.630000px;}
.y88{bottom:212.790000px;}
.y109{bottom:213.870000px;}
.y99{bottom:216.390000px;}
.ye4{bottom:219.000000px;}
.y44{bottom:224.130000px;}
.y62{bottom:226.110000px;}
.yc3{bottom:227.190000px;}
.y23{bottom:228.180000px;}
.y108{bottom:231.420000px;}
.y98{bottom:233.940000px;}
.ye3{bottom:236.550000px;}
.y43{bottom:241.680000px;}
.y61{bottom:243.660000px;}
.y22{bottom:245.820000px;}
.y107{bottom:249.060000px;}
.ye2{bottom:254.190000px;}
.y42{bottom:259.230000px;}
.y97{bottom:260.580000px;}
.y60{bottom:261.300000px;}
.yc2{bottom:262.830000px;}
.y21{bottom:263.370000px;}
.ye1{bottom:271.740000px;}
.y87{bottom:273.090000px;}
.y106{bottom:275.610000px;}
.y41{bottom:276.870000px;}
.y20{bottom:281.010000px;}
.y5f{bottom:287.850000px;}
.ye0{bottom:289.380000px;}
.y105{bottom:293.250000px;}
.y40{bottom:294.420000px;}
.yc1{bottom:295.050000px;}
.y96{bottom:296.130000px;}
.y1f{bottom:298.560000px;}
.y86{bottom:300.450000px;}
.ydf{bottom:306.930000px;}
.y3f{bottom:312.060000px;}
.y104{bottom:319.800000px;}
.y5e{bottom:323.490000px;}
.yde{bottom:324.480000px;}
.y85{bottom:327.810000px;}
.y95{bottom:328.350000px;}
.y3e{bottom:329.610000px;}
.y1e{bottom:334.110000px;}
.y103{bottom:337.350000px;}
.yc8{bottom:339.510000px;}
.y5d{bottom:341.040000px;}
.y3d{bottom:347.160000px;}
.y1d{bottom:351.750000px;}
.y84{bottom:355.170000px;}
.yb4{bottom:357.600000px;}
.y5c{bottom:358.590000px;}
.ydd{bottom:360.120000px;}
.y102{bottom:363.990000px;}
.y1c{bottom:369.300000px;}
.y3c{bottom:373.800000px;}
.yb3{bottom:375.240000px;}
.ydc{bottom:377.670000px;}
.y101{bottom:381.540000px;}
.y1b{bottom:386.850000px;}
.yb2{bottom:392.790000px;}
.y5b{bottom:394.230000px;}
.ydb{bottom:395.310000px;}
.y83{bottom:403.860000px;}
.y1a{bottom:404.490000px;}
.y100{bottom:408.090000px;}
.y3b{bottom:409.350000px;}
.yb1{bottom:410.340000px;}
.y5a{bottom:411.780000px;}
.yda{bottom:412.860000px;}
.y19{bottom:422.040000px;}
.yff{bottom:425.730000px;}
.yb0{bottom:427.980000px;}
.y59{bottom:429.420000px;}
.yd9{bottom:430.410000px;}
.y82{bottom:439.410000px;}
.y18{bottom:439.680000px;}
.y3a{bottom:441.570000px;}
.y58{bottom:446.970000px;}
.yd8{bottom:448.050000px;}
.yfe{bottom:452.640000px;}
.yaf{bottom:454.530000px;}
.y81{bottom:457.050000px;}
.y17{bottom:457.230000px;}
.y57{bottom:464.520000px;}
.yd7{bottom:465.600000px;}
.y80{bottom:474.630000px;}
.yd6{bottom:483.270000px;}
.y16{bottom:484.170000px;}
.yae{bottom:490.200000px;}
.y7f{bottom:492.180000px;}
.y56{bottom:497.580000px;}
.yfd{bottom:500.910000px;}
.y7e{bottom:509.820000px;}
.yd5{bottom:518.820000px;}
.yad{bottom:522.420000px;}
.y55{bottom:524.850000px;}
.yfc{bottom:527.820000px;}
.y15{bottom:532.770000px;}
.y7d{bottom:536.370000px;}
.y54{bottom:552.210000px;}
.yd4{bottom:554.010000px;}
.yfb{bottom:564.900000px;}
.y14{bottom:569.760000px;}
.yd3{bottom:571.560000px;}
.y7c{bottom:572.280000px;}
.y53{bottom:579.570000px;}
.yfa{bottom:582.450000px;}
.y13{bottom:587.400000px;}
.yd2{bottom:589.200000px;}
.yf9{bottom:600.000000px;}
.y12{bottom:604.950000px;}
.yd1{bottom:606.750000px;}
.y52{bottom:606.930000px;}
.yc0{bottom:608.910000px;}
.yf8{bottom:617.640000px;}
.y7b{bottom:620.520000px;}
.y94{bottom:621.960000px;}
.y11{bottom:622.590000px;}
.yd0{bottom:624.300000px;}
.ybf{bottom:626.460000px;}
.y51{bottom:634.200000px;}
.yf7{bottom:635.190000px;}
.y7a{bottom:638.160000px;}
.y10{bottom:640.140000px;}
.ycf{bottom:641.940000px;}
.ybe{bottom:644.100000px;}
.y11f{bottom:645.810000px;}
.y79{bottom:655.710000px;}
.y93{bottom:657.600000px;}
.yf{bottom:657.690000px;}
.yce{bottom:659.490000px;}
.y50{bottom:661.560000px;}
.ybd{bottom:661.650000px;}
.yf6{bottom:662.100000px;}
.y11e{bottom:663.360000px;}
.y78{bottom:673.350000px;}
.ye{bottom:675.330000px;}
.ycd{bottom:677.040000px;}
.ybc{bottom:679.290000px;}
.y11d{bottom:681.000000px;}
.y4e{bottom:688.920000px;}
.y92{bottom:689.820000px;}
.yd{bottom:692.880000px;}
.ybb{bottom:696.840000px;}
.yf5{bottom:699.450000px;}
.y77{bottom:699.900000px;}
.ycc{bottom:703.950000px;}
.y11c{bottom:707.550000px;}
.y4c{bottom:716.190000px;}
.yc{bottom:719.790000px;}
.y11b{bottom:725.190000px;}
.yba{bottom:732.390000px;}
.y76{bottom:735.450000px;}
.y11a{bottom:742.740000px;}
.y9e{bottom:747.600000px;}
.yf4{bottom:747.690000px;}
.yb9{bottom:750.030000px;}
.ycb{bottom:752.280000px;}
.y75{bottom:753.090000px;}
.y4b{bottom:764.970000px;}
.yf3{bottom:765.330000px;}
.yb{bottom:768.030000px;}
.y119{bottom:769.290000px;}
.yf2{bottom:782.880000px;}
.yca{bottom:784.500000px;}
.yb8{bottom:785.580000px;}
.y118{bottom:786.930000px;}
.y74{bottom:788.550000px;}
.y73{bottom:798.630000px;}
.y4a{bottom:800.520000px;}
.ya{bottom:803.850000px;}
.yb7{bottom:812.220000px;}
.y117{bottom:813.480000px;}
.yf1{bottom:818.070000px;}
.y39{bottom:818.520000px;}
.yac{bottom:829.500000px;}
.y116{bottom:831.030000px;}
.y49{bottom:832.740000px;}
.yf0{bottom:835.620000px;}
.y38{bottom:836.070000px;}
.y9{bottom:839.850000px;}
.y72{bottom:844.080000px;}
.yab{bottom:847.050000px;}
.yb6{bottom:847.770000px;}
.yef{bottom:853.260000px;}
.y37{bottom:853.620000px;}
.y71{bottom:854.160000px;}
.y115{bottom:857.670000px;}
.yaa{bottom:864.690000px;}
.y36{bottom:871.260000px;}
.y114{bottom:875.220000px;}
.y8{bottom:875.850000px;}
.yb5{bottom:879.990000px;}
.yee{bottom:880.170000px;}
.y70{bottom:881.520000px;}
.ya9{bottom:882.240000px;}
.y35{bottom:888.810000px;}
.y7{bottom:893.850000px;}
.ya8{bottom:899.880000px;}
.y113{bottom:901.860000px;}
.y34{bottom:906.450000px;}
.y112{bottom:919.410000px;}
.y6f{bottom:919.770000px;}
.y33{bottom:924.000000px;}
.ya7{bottom:926.430000px;}
.yed{bottom:928.410000px;}
.y6e{bottom:929.850000px;}
.y6{bottom:929.940000px;}
.y32{bottom:941.550000px;}
.yec{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.ya6{bottom:959.010000px;}
.y31{bottom:959.190000px;}
.yeb{bottom:963.600000px;}
.y6d{bottom:966.030000px;}
.y30{bottom:976.740000px;}
.yea{bottom:981.150000px;}
.y4{bottom:987.630000px;}
.y111{bottom:990.150000px;}
.ya5{bottom:994.560000px;}
.ye9{bottom:998.790000px;}
.y91{bottom:999.150000px;}
.y6c{bottom:1000.230000px;}
.y2f{bottom:1003.290000px;}
.y6b{bottom:1007.790000px;}
.ya3{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y90{bottom:1016.820000px;}
.y8f{bottom:1034.370000px;}
.ya2{bottom:1036.890000px;}
.y2e{bottom:1039.230000px;}
.y110{bottom:1043.370000px;}
.y6a{bottom:1048.950000px;}
.y8e{bottom:1051.920000px;}
.y69{bottom:1056.510000px;}
.y10f{bottom:1060.920000px;}
.ya1{bottom:1064.250000px;}
.y8d{bottom:1069.560000px;}
.y10e{bottom:1078.560000px;}
.y8c{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.ya0{bottom:1091.610000px;}
.y68{bottom:1096.110000px;}
.y2c{bottom:1105.110000px;}
.y67{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h1b{height:16.380000px;}
.h17{height:21.060000px;}
.hc{height:26.550000px;}
.h19{height:26.580000px;}
.ha{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h18{height:46.986328px;}
.h11{height:50.667539px;}
.hb{height:50.902383px;}
.h6{height:52.311445px;}
.h7{height:55.779258px;}
.h5{height:57.323320px;}
.h1a{height:59.973223px;}
.h1c{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.hd{height:70.777617px;}
.hf{height:70.897617px;}
.h4{height:72.985430px;}
.h16{height:74.953125px;}
.h10{height:82.551445px;}
.h14{height:91.222383px;}
.h15{height:92.631445px;}
.h12{height:96.027539px;}
.he{height:100.904062px;}
.h13{height:136.347539px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:40.860000px;}
.wf{width:58.320000px;}
.wd{width:69.750000px;}
.we{width:69.780000px;}
.wb{width:69.930000px;}
.w9{width:94.680000px;}
.w7{width:94.770000px;}
.w8{width:94.800000px;}
.w3{width:104.760000px;}
.w4{width:106.770000px;}
.w5{width:199.200000px;}
.wc{width:351.840000px;}
.w6{width:381.180000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x21{left:10.800000px;}
.x1{left:68.040000px;}
.x2f{left:111.239987px;}
.x1d{left:117.539987px;}
.xf{left:119.699987px;}
.x10{left:141.479987px;}
.x17{left:145.800000px;}
.x12{left:156.059987px;}
.x1c{left:203.519987px;}
.x2c{left:207.119987px;}
.x2{left:211.079987px;}
.x1f{left:221.429987px;}
.xb{left:224.039987px;}
.xd{left:230.699987px;}
.x14{left:232.409987px;}
.x22{left:235.380000px;}
.x28{left:244.829987px;}
.x20{left:287.310000px;}
.x5{left:300.449987px;}
.x23{left:306.030000px;}
.x2a{left:315.929987px;}
.x7{left:319.439987px;}
.x8{left:340.500000px;}
.x16{left:355.980000px;}
.x24{left:376.590000px;}
.x15{left:386.219987px;}
.xe{left:426.809987px;}
.xa{left:445.980000px;}
.xc{left:448.049987px;}
.x18{left:451.470000px;}
.x11{left:456.959987px;}
.x25{left:517.560000px;}
.x13{left:541.049987px;}
.x19{left:546.990000px;}
.x26{left:588.120000px;}
.x1a{left:642.480000px;}
.x2d{left:666.240000px;}
.x4{left:734.639987px;}
.x27{left:741.389987px;}
.x29{left:752.639987px;}
.x1e{left:780.809987px;}
.x1b{left:783.059987px;}
.x2b{left:786.389987px;}
.x6{left:788.639987px;}
.x2e{left:793.139987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v4{vertical-align:26.880000pt;}
.v3{vertical-align:31.360000pt;}
.v6{vertical-align:35.840000pt;}
.v5{vertical-align:40.320000pt;}
.v7{vertical-align:76.160000pt;}
.ls2b{letter-spacing:-0.348267pt;}
.ls1c{letter-spacing:-0.169067pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls24{letter-spacing:-0.090133pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls2c{letter-spacing:-0.074667pt;}
.ls25{letter-spacing:-0.056533pt;}
.ls14{letter-spacing:-0.043520pt;}
.ls23{letter-spacing:-0.032000pt;}
.ls1d{letter-spacing:-0.021440pt;}
.ls20{letter-spacing:-0.006080pt;}
.ls1f{letter-spacing:-0.004160pt;}
.ls1e{letter-spacing:-0.003520pt;}
.lsa{letter-spacing:-0.002667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.011200pt;}
.ls4{letter-spacing:0.013120pt;}
.ls1b{letter-spacing:0.027840pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls18{letter-spacing:0.045440pt;}
.ls22{letter-spacing:0.047360pt;}
.ls1a{letter-spacing:0.048000pt;}
.ls13{letter-spacing:0.053760pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls7{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.150933pt;}
.lsc{letter-spacing:0.154133pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.236800pt;}
.ls28{letter-spacing:0.245440pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:3.923200pt;}
.ls3{letter-spacing:5.996800pt;}
.ls26{letter-spacing:7.763200pt;}
.ls15{letter-spacing:14.800320pt;}
.ls29{letter-spacing:42.423680pt;}
.ls27{letter-spacing:71.863680pt;}
.ls17{letter-spacing:481.477867pt;}
.ls19{letter-spacing:487.451200pt;}
.ws3{word-spacing:-53.440000pt;}
.ws7{word-spacing:-12.883200pt;}
.ws2{word-spacing:-12.880533pt;}
.wsa{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.ws15{word-spacing:-11.907733pt;}
.ws16{word-spacing:-11.804800pt;}
.ws18{word-spacing:-11.804160pt;}
.ws14{word-spacing:-11.802240pt;}
.wsb{word-spacing:-11.800320pt;}
.ws11{word-spacing:-11.768000pt;}
.ws5{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.753280pt;}
.ws12{word-spacing:-11.752640pt;}
.ws13{word-spacing:-11.750720pt;}
.wsc{word-spacing:-11.713280pt;}
.ws1b{word-spacing:-11.700267pt;}
.ws1a{word-spacing:-11.666667pt;}
.ws9{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.587733pt;}
.ws19{word-spacing:-10.528000pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsd{word-spacing:-8.264640pt;}
.wsf{word-spacing:-8.215360pt;}
.ws8{word-spacing:0.000000pt;}
.ws17{word-spacing:0.237440pt;}
.ws6{word-spacing:3.826560pt;}
._18{margin-left:-3.841424pt;}
._e{margin-left:-2.945456pt;}
._7{margin-left:-1.947734pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.118475pt;}
._9{width:2.030934pt;}
._5{width:2.966198pt;}
._6{width:3.954667pt;}
._8{width:4.982783pt;}
._3{width:6.031504pt;}
._4{width:7.216591pt;}
._d{width:8.122880pt;}
._a{width:9.352000pt;}
._15{width:10.688000pt;}
._19{width:12.731520pt;}
._f{width:13.667840pt;}
._10{width:14.800320pt;}
._b{width:15.711467pt;}
._c{width:16.726399pt;}
._17{width:17.661974pt;}
._16{width:18.597120pt;}
._1{width:22.666165pt;}
._13{width:32.479734pt;}
._12{width:114.988053pt;}
._11{width:201.454038pt;}
._14{width:267.894816pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yc9{bottom:1.920000pt;}
.y4f{bottom:6.960000pt;}
.ya4{bottom:6.986667pt;}
.y4d{bottom:7.040000pt;}
.y9f{bottom:7.280000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y9d{bottom:113.786667pt;}
.yc7{bottom:115.466667pt;}
.ye8{bottom:116.106667pt;}
.y8b{bottom:118.266667pt;}
.y10d{bottom:119.546667pt;}
.y48{bottom:120.666667pt;}
.y66{bottom:122.426667pt;}
.y27{bottom:124.346667pt;}
.y9c{bottom:129.466667pt;}
.yc6{bottom:131.066667pt;}
.ye7{bottom:131.786667pt;}
.y8a{bottom:133.946667pt;}
.y10c{bottom:135.226667pt;}
.y47{bottom:136.266667pt;}
.y26{bottom:139.946667pt;}
.y9b{bottom:145.066667pt;}
.yc5{bottom:146.666667pt;}
.y10b{bottom:150.826667pt;}
.y46{bottom:151.946667pt;}
.y65{bottom:154.106667pt;}
.y9a{bottom:160.666667pt;}
.ye6{bottom:163.386667pt;}
.y89{bottom:165.546667pt;}
.y10a{bottom:166.506667pt;}
.y64{bottom:169.706667pt;}
.y25{bottom:171.626667pt;}
.yc4{bottom:178.346667pt;}
.ye5{bottom:179.066667pt;}
.y45{bottom:183.546667pt;}
.y63{bottom:185.386667pt;}
.y24{bottom:187.226667pt;}
.y88{bottom:189.146667pt;}
.y109{bottom:190.106667pt;}
.y99{bottom:192.346667pt;}
.ye4{bottom:194.666667pt;}
.y44{bottom:199.226667pt;}
.y62{bottom:200.986667pt;}
.yc3{bottom:201.946667pt;}
.y23{bottom:202.826667pt;}
.y108{bottom:205.706667pt;}
.y98{bottom:207.946667pt;}
.ye3{bottom:210.266667pt;}
.y43{bottom:214.826667pt;}
.y61{bottom:216.586667pt;}
.y22{bottom:218.506667pt;}
.y107{bottom:221.386667pt;}
.ye2{bottom:225.946667pt;}
.y42{bottom:230.426667pt;}
.y97{bottom:231.626667pt;}
.y60{bottom:232.266667pt;}
.yc2{bottom:233.626667pt;}
.y21{bottom:234.106667pt;}
.ye1{bottom:241.546667pt;}
.y87{bottom:242.746667pt;}
.y106{bottom:244.986667pt;}
.y41{bottom:246.106667pt;}
.y20{bottom:249.786667pt;}
.y5f{bottom:255.866667pt;}
.ye0{bottom:257.226667pt;}
.y105{bottom:260.666667pt;}
.y40{bottom:261.706667pt;}
.yc1{bottom:262.266667pt;}
.y96{bottom:263.226667pt;}
.y1f{bottom:265.386667pt;}
.y86{bottom:267.066667pt;}
.ydf{bottom:272.826667pt;}
.y3f{bottom:277.386667pt;}
.y104{bottom:284.266667pt;}
.y5e{bottom:287.546667pt;}
.yde{bottom:288.426667pt;}
.y85{bottom:291.386667pt;}
.y95{bottom:291.866667pt;}
.y3e{bottom:292.986667pt;}
.y1e{bottom:296.986667pt;}
.y103{bottom:299.866667pt;}
.yc8{bottom:301.786667pt;}
.y5d{bottom:303.146667pt;}
.y3d{bottom:308.586667pt;}
.y1d{bottom:312.666667pt;}
.y84{bottom:315.706667pt;}
.yb4{bottom:317.866667pt;}
.y5c{bottom:318.746667pt;}
.ydd{bottom:320.106667pt;}
.y102{bottom:323.546667pt;}
.y1c{bottom:328.266667pt;}
.y3c{bottom:332.266667pt;}
.yb3{bottom:333.546667pt;}
.ydc{bottom:335.706667pt;}
.y101{bottom:339.146667pt;}
.y1b{bottom:343.866667pt;}
.yb2{bottom:349.146667pt;}
.y5b{bottom:350.426667pt;}
.ydb{bottom:351.386667pt;}
.y83{bottom:358.986667pt;}
.y1a{bottom:359.546667pt;}
.y100{bottom:362.746667pt;}
.y3b{bottom:363.866667pt;}
.yb1{bottom:364.746667pt;}
.y5a{bottom:366.026667pt;}
.yda{bottom:366.986667pt;}
.y19{bottom:375.146667pt;}
.yff{bottom:378.426667pt;}
.yb0{bottom:380.426667pt;}
.y59{bottom:381.706667pt;}
.yd9{bottom:382.586667pt;}
.y82{bottom:390.586667pt;}
.y18{bottom:390.826667pt;}
.y3a{bottom:392.506667pt;}
.y58{bottom:397.306667pt;}
.yd8{bottom:398.266667pt;}
.yfe{bottom:402.346667pt;}
.yaf{bottom:404.026667pt;}
.y81{bottom:406.266667pt;}
.y17{bottom:406.426667pt;}
.y57{bottom:412.906667pt;}
.yd7{bottom:413.866667pt;}
.y80{bottom:421.893333pt;}
.yd6{bottom:429.573333pt;}
.y16{bottom:430.373333pt;}
.yae{bottom:435.733333pt;}
.y7f{bottom:437.493333pt;}
.y56{bottom:442.293333pt;}
.yfd{bottom:445.253333pt;}
.y7e{bottom:453.173333pt;}
.yd5{bottom:461.173333pt;}
.yad{bottom:464.373333pt;}
.y55{bottom:466.533333pt;}
.yfc{bottom:469.173333pt;}
.y15{bottom:473.573333pt;}
.y7d{bottom:476.773333pt;}
.y54{bottom:490.853333pt;}
.yd4{bottom:492.453333pt;}
.yfb{bottom:502.133333pt;}
.y14{bottom:506.453333pt;}
.yd3{bottom:508.053333pt;}
.y7c{bottom:508.693333pt;}
.y53{bottom:515.173333pt;}
.yfa{bottom:517.733333pt;}
.y13{bottom:522.133333pt;}
.yd2{bottom:523.733333pt;}
.yf9{bottom:533.333333pt;}
.y12{bottom:537.733333pt;}
.yd1{bottom:539.333333pt;}
.y52{bottom:539.493333pt;}
.yc0{bottom:541.253333pt;}
.yf8{bottom:549.013333pt;}
.y7b{bottom:551.573333pt;}
.y94{bottom:552.853333pt;}
.y11{bottom:553.413333pt;}
.yd0{bottom:554.933333pt;}
.ybf{bottom:556.853333pt;}
.y51{bottom:563.733333pt;}
.yf7{bottom:564.613333pt;}
.y7a{bottom:567.253333pt;}
.y10{bottom:569.013333pt;}
.ycf{bottom:570.613333pt;}
.ybe{bottom:572.533333pt;}
.y11f{bottom:574.053333pt;}
.y79{bottom:582.853333pt;}
.y93{bottom:584.533333pt;}
.yf{bottom:584.613333pt;}
.yce{bottom:586.213333pt;}
.y50{bottom:588.053333pt;}
.ybd{bottom:588.133333pt;}
.yf6{bottom:588.533333pt;}
.y11e{bottom:589.653333pt;}
.y78{bottom:598.533333pt;}
.ye{bottom:600.293333pt;}
.ycd{bottom:601.813333pt;}
.ybc{bottom:603.813333pt;}
.y11d{bottom:605.333333pt;}
.y4e{bottom:612.373333pt;}
.y92{bottom:613.173333pt;}
.yd{bottom:615.893333pt;}
.ybb{bottom:619.413333pt;}
.yf5{bottom:621.733333pt;}
.y77{bottom:622.133333pt;}
.ycc{bottom:625.733333pt;}
.y11c{bottom:628.933333pt;}
.y4c{bottom:636.613333pt;}
.yc{bottom:639.813333pt;}
.y11b{bottom:644.613333pt;}
.yba{bottom:651.013333pt;}
.y76{bottom:653.733333pt;}
.y11a{bottom:660.213333pt;}
.y9e{bottom:664.533333pt;}
.yf4{bottom:664.613333pt;}
.yb9{bottom:666.693333pt;}
.ycb{bottom:668.693333pt;}
.y75{bottom:669.413333pt;}
.y4b{bottom:679.973333pt;}
.yf3{bottom:680.293333pt;}
.yb{bottom:682.693333pt;}
.y119{bottom:683.813333pt;}
.yf2{bottom:695.893333pt;}
.yca{bottom:697.333333pt;}
.yb8{bottom:698.293333pt;}
.y118{bottom:699.493333pt;}
.y74{bottom:700.933333pt;}
.y73{bottom:709.893333pt;}
.y4a{bottom:711.573333pt;}
.ya{bottom:714.533333pt;}
.yb7{bottom:721.973333pt;}
.y117{bottom:723.093333pt;}
.yf1{bottom:727.173333pt;}
.y39{bottom:727.573333pt;}
.yac{bottom:737.333333pt;}
.y116{bottom:738.693333pt;}
.y49{bottom:740.213333pt;}
.yf0{bottom:742.773333pt;}
.y38{bottom:743.173333pt;}
.y9{bottom:746.533333pt;}
.y72{bottom:750.293333pt;}
.yab{bottom:752.933333pt;}
.yb6{bottom:753.573333pt;}
.yef{bottom:758.453333pt;}
.y37{bottom:758.773333pt;}
.y71{bottom:759.253333pt;}
.y115{bottom:762.373333pt;}
.yaa{bottom:768.613333pt;}
.y36{bottom:774.453333pt;}
.y114{bottom:777.973333pt;}
.y8{bottom:778.533333pt;}
.yb5{bottom:782.213333pt;}
.yee{bottom:782.373333pt;}
.y70{bottom:783.573333pt;}
.ya9{bottom:784.213333pt;}
.y35{bottom:790.053333pt;}
.y7{bottom:794.533333pt;}
.ya8{bottom:799.893333pt;}
.y113{bottom:801.653333pt;}
.y34{bottom:805.733333pt;}
.y112{bottom:817.253333pt;}
.y6f{bottom:817.573333pt;}
.y33{bottom:821.333333pt;}
.ya7{bottom:823.493333pt;}
.yed{bottom:825.253333pt;}
.y6e{bottom:826.533333pt;}
.y6{bottom:826.613333pt;}
.y32{bottom:836.933333pt;}
.yec{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.ya6{bottom:852.453333pt;}
.y31{bottom:852.613333pt;}
.yeb{bottom:856.533333pt;}
.y6d{bottom:858.693333pt;}
.y30{bottom:868.213333pt;}
.yea{bottom:872.133333pt;}
.y4{bottom:877.893333pt;}
.y111{bottom:880.133333pt;}
.ya5{bottom:884.053333pt;}
.ye9{bottom:887.813333pt;}
.y91{bottom:888.133333pt;}
.y6c{bottom:889.093333pt;}
.y2f{bottom:891.813333pt;}
.y6b{bottom:895.813333pt;}
.ya3{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y90{bottom:903.840000pt;}
.y8f{bottom:919.440000pt;}
.ya2{bottom:921.680000pt;}
.y2e{bottom:923.760000pt;}
.y110{bottom:927.440000pt;}
.y6a{bottom:932.400000pt;}
.y8e{bottom:935.040000pt;}
.y69{bottom:939.120000pt;}
.y10f{bottom:943.040000pt;}
.ya1{bottom:946.000000pt;}
.y8d{bottom:950.720000pt;}
.y10e{bottom:958.720000pt;}
.y8c{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.ya0{bottom:970.320000pt;}
.y68{bottom:974.320000pt;}
.y2c{bottom:982.320000pt;}
.y67{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h1b{height:14.560000pt;}
.h17{height:18.720000pt;}
.hc{height:23.600000pt;}
.h19{height:23.626667pt;}
.ha{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h18{height:41.765625pt;}
.h11{height:45.037812pt;}
.hb{height:45.246562pt;}
.h6{height:46.499062pt;}
.h7{height:49.581562pt;}
.h5{height:50.954062pt;}
.h1a{height:53.309531pt;}
.h1c{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.hd{height:62.913438pt;}
.hf{height:63.020104pt;}
.h4{height:64.875937pt;}
.h16{height:66.625000pt;}
.h10{height:73.379062pt;}
.h14{height:81.086562pt;}
.h15{height:82.339062pt;}
.h12{height:85.357812pt;}
.he{height:89.692500pt;}
.h13{height:121.197812pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:36.320000pt;}
.wf{width:51.840000pt;}
.wd{width:62.000000pt;}
.we{width:62.026667pt;}
.wb{width:62.160000pt;}
.w9{width:84.160000pt;}
.w7{width:84.240000pt;}
.w8{width:84.266667pt;}
.w3{width:93.120000pt;}
.w4{width:94.906667pt;}
.w5{width:177.066667pt;}
.wc{width:312.746667pt;}
.w6{width:338.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x21{left:9.600000pt;}
.x1{left:60.480000pt;}
.x2f{left:98.879988pt;}
.x1d{left:104.479988pt;}
.xf{left:106.399988pt;}
.x10{left:125.759988pt;}
.x17{left:129.600000pt;}
.x12{left:138.719988pt;}
.x1c{left:180.906655pt;}
.x2c{left:184.106655pt;}
.x2{left:187.626655pt;}
.x1f{left:196.826655pt;}
.xb{left:199.146655pt;}
.xd{left:205.066655pt;}
.x14{left:206.586655pt;}
.x22{left:209.226667pt;}
.x28{left:217.626655pt;}
.x20{left:255.386667pt;}
.x5{left:267.066655pt;}
.x23{left:272.026667pt;}
.x2a{left:280.826655pt;}
.x7{left:283.946655pt;}
.x8{left:302.666667pt;}
.x16{left:316.426667pt;}
.x24{left:334.746667pt;}
.x15{left:343.306655pt;}
.xe{left:379.386655pt;}
.xa{left:396.426667pt;}
.xc{left:398.266655pt;}
.x18{left:401.306667pt;}
.x11{left:406.186655pt;}
.x25{left:460.053333pt;}
.x13{left:480.933322pt;}
.x19{left:486.213333pt;}
.x26{left:522.773333pt;}
.x1a{left:571.093333pt;}
.x2d{left:592.213333pt;}
.x4{left:653.013322pt;}
.x27{left:659.013322pt;}
.x29{left:669.013322pt;}
.x1e{left:694.053322pt;}
.x1b{left:696.053322pt;}
.x2b{left:699.013322pt;}
.x6{left:701.013322pt;}
.x2e{left:705.013322pt;}
.x3{left:711.413322pt;}
}




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