
    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_9d3cecac1c88eb4acca7f429.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_ee57a6136bdb83659791f10b.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_1f1bf09674c234a5c3210c59.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.682129;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_a1d67223188a894ad262348c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_11ad47f79f702f49ccb26519.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_70a1dc57638aa753e68e4f78.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908203;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_d5ec29943f49562cc1aae7b8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4107ce0d2c72bfb5eb9a111a.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_33f1c7a79846eb66767d7a05.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_93569096ba1289f8ead0856d.woff2')format("woff");}.ffb{font-family:ffb;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;}
.v3{vertical-align:-18.636000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls11{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.160800px;}
.ls1b{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.049680px;}
.ls17{letter-spacing:-0.011160px;}
.ls16{letter-spacing:-0.006120px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.006000px;}
.ls3{letter-spacing:0.014016px;}
.ls15{letter-spacing:0.041760px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.lsd{letter-spacing:0.074160px;}
.ls12{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1a{letter-spacing:0.143400px;}
.ls7{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:47.726640px;}
.ls18{letter-spacing:80.846640px;}
.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:-26.240760px;}
.ws8{word-spacing:-14.493600px;}
.ws20{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.399800px;}
.ws27{word-spacing:-13.369800px;}
.ws22{word-spacing:-13.300800px;}
.ws21{word-spacing:-13.275360px;}
.ws25{word-spacing:-13.268160px;}
.ws6{word-spacing:-13.226400px;}
.ws24{word-spacing:-13.220280px;}
.ws26{word-spacing:-13.215240px;}
.ws28{word-spacing:-13.072800px;}
.ws23{word-spacing:-13.065600px;}
.ws1f{word-spacing:-13.039800px;}
.ws4{word-spacing:-9.919500px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.266400px;}
.ws11{word-spacing:-0.408000px;}
.ws1c{word-spacing:-0.300000px;}
.ws17{word-spacing:-0.294000px;}
.ws18{word-spacing:-0.288000px;}
.ws1d{word-spacing:-0.264000px;}
.ws1b{word-spacing:-0.252000px;}
.ws1a{word-spacing:-0.240000px;}
.ws14{word-spacing:-0.216000px;}
.ws15{word-spacing:-0.186000px;}
.ws19{word-spacing:-0.174000px;}
.wsf{word-spacing:-0.150000px;}
.ws1e{word-spacing:-0.096000px;}
.wse{word-spacing:-0.084000px;}
.ws9{word-spacing:0.000000px;}
.wsc{word-spacing:0.066000px;}
.wsd{word-spacing:0.090000px;}
.ws10{word-spacing:0.096000px;}
.ws13{word-spacing:0.120000px;}
.ws12{word-spacing:0.162000px;}
.wsb{word-spacing:0.426000px;}
.ws16{word-spacing:0.678000px;}
.wsa{word-spacing:3.954000px;}
.ws7{word-spacing:4.304880px;}
._8{margin-left:-3.563410px;}
._4{margin-left:-2.344800px;}
._0{margin-left:-1.110000px;}
._1{width:1.006812px;}
._3{width:2.564392px;}
._2{width:4.263960px;}
._9{width:5.892000px;}
._5{width:7.154400px;}
._6{width:8.476800px;}
._a{width:10.220400px;}
._7{width:11.975149px;}
._c{width:12.985920px;}
._b{width:15.055068px;}
._10{width:16.242383px;}
._d{width:17.374680px;}
._e{width:18.697200px;}
._12{width:19.915668px;}
._f{width:21.042000px;}
._11{width:22.845600px;}
._1a{width:33.690960px;}
._1b{width:34.824948px;}
._1c{width:36.306360px;}
._15{width:37.484640px;}
._1d{width:43.526880px;}
._1f{width:71.843400px;}
._20{width:73.105920px;}
._18{width:92.224080px;}
._19{width:93.246120px;}
._13{width:113.025600px;}
._14{width:114.708960px;}
._17{width:149.546280px;}
._16{width:150.600600px;}
._1e{width:1147.450320px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs7{font-size:39.678000px;}
.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;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yd6{bottom:7.830000px;}
.yd4{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y2c{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y92{bottom:113.340000px;}
.yc7{bottom:115.680000px;}
.y13d{bottom:123.150000px;}
.yaf{bottom:124.050000px;}
.y117{bottom:126.930000px;}
.y91{bottom:130.890000px;}
.ye8{bottom:132.330000px;}
.y2a{bottom:139.440000px;}
.y13c{bottom:140.700000px;}
.y61{bottom:141.150000px;}
.y116{bottom:144.570000px;}
.yc6{bottom:147.900000px;}
.y90{bottom:148.440000px;}
.ye7{bottom:149.880000px;}
.y29{bottom:157.080000px;}
.y13b{bottom:158.250000px;}
.y60{bottom:158.700000px;}
.yae{bottom:159.690000px;}
.y115{bottom:162.120000px;}
.y8f{bottom:166.080000px;}
.ye6{bottom:167.430000px;}
.y28{bottom:174.630000px;}
.y5f{bottom:176.340000px;}
.y114{bottom:179.670000px;}
.y8e{bottom:183.630000px;}
.y13a{bottom:184.890000px;}
.ye5{bottom:185.070000px;}
.yad{bottom:191.910000px;}
.y27{bottom:192.180000px;}
.y5e{bottom:193.890000px;}
.y113{bottom:197.310000px;}
.y8d{bottom:201.180000px;}
.y139{bottom:202.440000px;}
.ye4{bottom:202.620000px;}
.y26{bottom:209.820000px;}
.y5d{bottom:211.440000px;}
.y112{bottom:214.860000px;}
.y8c{bottom:218.820000px;}
.y138{bottom:220.080000px;}
.ye3{bottom:220.260000px;}
.y25{bottom:227.370000px;}
.y5c{bottom:229.080000px;}
.y111{bottom:232.500000px;}
.y8b{bottom:236.370000px;}
.ye2{bottom:237.810000px;}
.y24{bottom:245.010000px;}
.y5b{bottom:246.630000px;}
.y110{bottom:250.050000px;}
.y8a{bottom:254.010000px;}
.ye1{bottom:255.360000px;}
.y23{bottom:262.560000px;}
.y5a{bottom:264.180000px;}
.y10f{bottom:267.600000px;}
.ye0{bottom:273.000000px;}
.y22{bottom:280.110000px;}
.y89{bottom:280.560000px;}
.y59{bottom:281.820000px;}
.y10e{bottom:285.240000px;}
.y137{bottom:290.820000px;}
.y21{bottom:297.750000px;}
.y58{bottom:299.370000px;}
.y10d{bottom:302.790000px;}
.y136{bottom:308.370000px;}
.ydf{bottom:308.550000px;}
.y20{bottom:315.300000px;}
.y88{bottom:316.110000px;}
.y57{bottom:317.010000px;}
.y10c{bottom:320.430000px;}
.y1f{bottom:332.850000px;}
.y87{bottom:333.750000px;}
.y56{bottom:334.560000px;}
.y135{bottom:335.010000px;}
.y10b{bottom:337.980000px;}
.yde{bottom:340.770000px;}
.y1e{bottom:350.490000px;}
.y86{bottom:351.300000px;}
.y55{bottom:352.110000px;}
.y134{bottom:352.560000px;}
.y10a{bottom:355.530000px;}
.y85{bottom:368.940000px;}
.y54{bottom:369.750000px;}
.y133{bottom:370.110000px;}
.y109{bottom:373.170000px;}
.yda{bottom:376.950000px;}
.y1d{bottom:377.400000px;}
.y84{bottom:386.490000px;}
.y53{bottom:387.300000px;}
.yd9{bottom:391.890000px;}
.y132{bottom:396.750000px;}
.y83{bottom:404.040000px;}
.y52{bottom:404.940000px;}
.y108{bottom:408.720000px;}
.y131{bottom:414.300000px;}
.yd8{bottom:419.250000px;}
.y82{bottom:421.680000px;}
.y51{bottom:422.490000px;}
.y1c{bottom:425.640000px;}
.y107{bottom:426.360000px;}
.y81{bottom:439.230000px;}
.y50{bottom:440.040000px;}
.y130{bottom:440.940000px;}
.y1b{bottom:443.550000px;}
.y106{bottom:443.910000px;}
.yd7{bottom:446.610000px;}
.y80{bottom:456.870000px;}
.y4f{bottom:457.680000px;}
.y12f{bottom:458.490000px;}
.y105{bottom:461.460000px;}
.ybb{bottom:461.640000px;}
.y157{bottom:469.470000px;}
.yd5{bottom:474.000000px;}
.y4e{bottom:475.260000px;}
.y104{bottom:479.130000px;}
.y1a{bottom:480.660000px;}
.y7f{bottom:483.450000px;}
.y12e{bottom:485.070000px;}
.y156{bottom:487.140000px;}
.yba{bottom:488.220000px;}
.y4d{bottom:492.900000px;}
.y103{bottom:496.680000px;}
.y19{bottom:498.210000px;}
.yd3{bottom:501.270000px;}
.y155{bottom:504.690000px;}
.yc5{bottom:506.850000px;}
.y4c{bottom:510.450000px;}
.y12d{bottom:511.710000px;}
.y18{bottom:515.760000px;}
.y7e{bottom:519.000000px;}
.y102{bottom:523.590000px;}
.yb9{bottom:523.860000px;}
.yc4{bottom:524.400000px;}
.y4b{bottom:528.000000px;}
.y12c{bottom:529.260000px;}
.y154{bottom:531.330000px;}
.y17{bottom:533.400000px;}
.y7d{bottom:536.640000px;}
.yb8{bottom:541.410000px;}
.y4a{bottom:545.640000px;}
.y153{bottom:548.880000px;}
.yd2{bottom:549.960000px;}
.y16{bottom:550.950000px;}
.yc3{bottom:551.040000px;}
.y7c{bottom:554.190000px;}
.y12b{bottom:555.900000px;}
.yb7{bottom:558.960000px;}
.y49{bottom:563.190000px;}
.y152{bottom:566.430000px;}
.y15{bottom:568.590000px;}
.y101{bottom:571.830000px;}
.y12a{bottom:573.450000px;}
.yb6{bottom:576.600000px;}
.y48{bottom:580.830000px;}
.y7b{bottom:581.100000px;}
.yd1{bottom:585.600000px;}
.y14{bottom:586.140000px;}
.yc2{bottom:586.590000px;}
.yac{bottom:589.020000px;}
.y100{bottom:589.470000px;}
.y151{bottom:593.070000px;}
.yb5{bottom:594.150000px;}
.y47{bottom:598.380000px;}
.y129{bottom:600.000000px;}
.yd0{bottom:603.150000px;}
.y13{bottom:603.690000px;}
.yc1{bottom:604.140000px;}
.yab{bottom:606.660000px;}
.yff{bottom:607.020000px;}
.y150{bottom:610.620000px;}
.y46{bottom:615.930000px;}
.y128{bottom:617.640000px;}
.ycf{bottom:620.790000px;}
.y12{bottom:621.330000px;}
.yc0{bottom:621.780000px;}
.yaa{bottom:624.210000px;}
.yfe{bottom:624.660000px;}
.y14f{bottom:628.260000px;}
.y7a{bottom:629.430000px;}
.yb4{bottom:629.790000px;}
.y45{bottom:633.570000px;}
.y11{bottom:638.880000px;}
.ybf{bottom:639.330000px;}
.yfd{bottom:642.210000px;}
.y127{bottom:644.190000px;}
.y79{bottom:646.980000px;}
.yce{bottom:647.340000px;}
.ya9{bottom:650.760000px;}
.y44{bottom:651.120000px;}
.y14e{bottom:654.810000px;}
.ybe{bottom:656.970000px;}
.y126{bottom:661.830000px;}
.yb3{bottom:662.010000px;}
.y78{bottom:664.530000px;}
.y10{bottom:665.790000px;}
.y43{bottom:668.760000px;}
.y14d{bottom:672.360000px;}
.yfc{bottom:677.760000px;}
.y77{bottom:682.170000px;}
.ycd{bottom:682.890000px;}
.y42{bottom:686.310000px;}
.ya8{bottom:686.670000px;}
.y125{bottom:688.380000px;}
.ybd{bottom:692.520000px;}
.yfb{bottom:695.400000px;}
.y14c{bottom:699.000000px;}
.y76{bottom:699.720000px;}
.ycc{bottom:700.530000px;}
.y41{bottom:703.860000px;}
.yf{bottom:705.030000px;}
.y124{bottom:705.930000px;}
.yfa{bottom:712.950000px;}
.y14b{bottom:716.550000px;}
.y75{bottom:717.270000px;}
.ycb{bottom:718.080000px;}
.y40{bottom:721.500000px;}
.y123{bottom:723.570000px;}
.ybc{bottom:724.740000px;}
.yf9{bottom:730.590000px;}
.ydd{bottom:731.220000px;}
.y74{bottom:734.910000px;}
.ya7{bottom:735.000000px;}
.yca{bottom:735.720000px;}
.y3f{bottom:739.050000px;}
.ye{bottom:740.850000px;}
.y14a{bottom:743.190000px;}
.yf8{bottom:748.140000px;}
.y122{bottom:750.120000px;}
.ya6{bottom:752.550000px;}
.y149{bottom:760.740000px;}
.y73{bottom:761.460000px;}
.y3e{bottom:765.690000px;}
.ydc{bottom:766.770000px;}
.y121{bottom:767.670000px;}
.ya5{bottom:770.190000px;}
.yc9{bottom:771.270000px;}
.yd{bottom:772.350000px;}
.yf7{bottom:783.330000px;}
.y120{bottom:785.310000px;}
.y148{bottom:787.290000px;}
.ya4{bottom:787.740000px;}
.y72{bottom:797.100000px;}
.ydb{bottom:798.990000px;}
.yf6{bottom:800.880000px;}
.y3d{bottom:801.240000px;}
.yc8{bottom:803.490000px;}
.y147{bottom:804.930000px;}
.ya3{bottom:805.290000px;}
.yc{bottom:812.160000px;}
.y11f{bottom:812.220000px;}
.y71{bottom:814.650000px;}
.yf5{bottom:818.520000px;}
.y3c{bottom:818.790000px;}
.y146{bottom:822.480000px;}
.ya2{bottom:822.930000px;}
.yb{bottom:830.254500px;}
.y70{bottom:832.200000px;}
.yf4{bottom:836.070000px;}
.y3b{bottom:836.430000px;}
.ya1{bottom:840.480000px;}
.ya{bottom:848.254500px;}
.y145{bottom:849.030000px;}
.y6f{bottom:849.840000px;}
.y3a{bottom:853.980000px;}
.ya0{bottom:858.030000px;}
.y11e{bottom:860.460000px;}
.y9{bottom:866.254500px;}
.y144{bottom:866.670000px;}
.y6e{bottom:867.390000px;}
.y39{bottom:871.530000px;}
.yf3{bottom:871.620000px;}
.y9f{bottom:875.670000px;}
.y8{bottom:884.254500px;}
.y6d{bottom:885.030000px;}
.y11d{bottom:887.370000px;}
.y38{bottom:889.170000px;}
.yf2{bottom:889.260000px;}
.y9e{bottom:893.220000px;}
.y7{bottom:902.254500px;}
.y6c{bottom:902.580000px;}
.y37{bottom:906.630000px;}
.yf1{bottom:906.810000px;}
.y9d{bottom:910.860000px;}
.y36{bottom:924.000000px;}
.yf0{bottom:924.450000px;}
.y11c{bottom:924.720000px;}
.y9c{bottom:928.410000px;}
.y6b{bottom:929.130000px;}
.y6{bottom:929.940000px;}
.y143{bottom:937.410000px;}
.y35{bottom:941.550000px;}
.yef{bottom:942.000000px;}
.y9b{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y142{bottom:954.960000px;}
.y34{bottom:959.190000px;}
.yee{bottom:959.550000px;}
.y9a{bottom:963.600000px;}
.y6a{bottom:964.770000px;}
.y141{bottom:972.600000px;}
.y11b{bottom:972.960000px;}
.y33{bottom:976.740000px;}
.yed{bottom:977.190000px;}
.y99{bottom:981.150000px;}
.y69{bottom:982.320000px;}
.y4{bottom:987.630000px;}
.y11a{bottom:990.600000px;}
.yec{bottom:994.740000px;}
.y140{bottom:999.150000px;}
.y68{bottom:999.960000px;}
.y32{bottom:1003.290000px;}
.y98{bottom:1007.790000px;}
.y119{bottom:1008.150000px;}
.y3{bottom:1012.320000px;}
.y13f{bottom:1016.820000px;}
.y67{bottom:1017.540000px;}
.yb2{bottom:1025.370000px;}
.y118{bottom:1025.820000px;}
.yeb{bottom:1029.960000px;}
.y13e{bottom:1034.370000px;}
.y66{bottom:1035.090000px;}
.y31{bottom:1039.230000px;}
.yb1{bottom:1042.920000px;}
.y97{bottom:1043.370000px;}
.yea{bottom:1047.510000px;}
.y65{bottom:1052.730000px;}
.y96{bottom:1060.920000px;}
.yb0{bottom:1069.560000px;}
.y64{bottom:1070.280000px;}
.ye9{bottom:1074.420000px;}
.y95{bottom:1078.560000px;}
.y30{bottom:1087.560000px;}
.y63{bottom:1087.920000px;}
.y94{bottom:1096.110000px;}
.y2f{bottom:1105.110000px;}
.y62{bottom:1105.380000px;}
.y93{bottom:1113.750000px;}
.y2e{bottom:1122.750000px;}
.y2d{bottom:1140.300000px;}
.y2b{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h10{height:26.580000px;}
.hd{height:26.640000px;}
.h7{height:27.549861px;}
.h2{height:30.022383px;}
.h6{height:33.594557px;}
.h3{height:39.155273px;}
.he{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.004492px;}
.h11{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:60.150000px;}
.w7{width:75.060000px;}
.w8{width:78.030000px;}
.w4{width:78.210000px;}
.w5{width:80.550000px;}
.w3{width:139.590000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.650000px;}
.x1{left:68.040000px;}
.x1a{left:111.239987px;}
.xf{left:189.030000px;}
.x2{left:211.079987px;}
.xc{left:261.299987px;}
.x8{left:307.469987px;}
.x5{left:308.729987px;}
.xe{left:314.489987px;}
.xa{left:322.859987px;}
.x11{left:329.430000px;}
.x17{left:361.469987px;}
.x19{left:382.259987px;}
.x12{left:408.360000px;}
.x6{left:446.609987px;}
.x13{left:489.630000px;}
.x14{left:550.500000px;}
.x15{left:626.280000px;}
.x7{left:672.809987px;}
.x16{left:678.389987px;}
.x18{left:688.559987px;}
.xb{left:698.639987px;}
.xd{left:699.809987px;}
.x9{left:720.059987px;}
.x4{left:723.389987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-16.565333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.142933pt;}
.ls1b{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.044160pt;}
.ls17{letter-spacing:-0.009920pt;}
.ls16{letter-spacing:-0.005440pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.005333pt;}
.ls3{letter-spacing:0.012459pt;}
.ls15{letter-spacing:0.037120pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.lsd{letter-spacing:0.065920pt;}
.ls12{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1a{letter-spacing:0.127467pt;}
.ls7{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:42.423680pt;}
.ls18{letter-spacing:71.863680pt;}
.ws3{word-spacing:-23.325120pt;}
.ws8{word-spacing:-12.883200pt;}
.ws20{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.910933pt;}
.ws27{word-spacing:-11.884267pt;}
.ws22{word-spacing:-11.822933pt;}
.ws21{word-spacing:-11.800320pt;}
.ws25{word-spacing:-11.793920pt;}
.ws6{word-spacing:-11.756800pt;}
.ws24{word-spacing:-11.751360pt;}
.ws26{word-spacing:-11.746880pt;}
.ws28{word-spacing:-11.620267pt;}
.ws23{word-spacing:-11.613867pt;}
.ws1f{word-spacing:-11.590933pt;}
.ws4{word-spacing:-8.817333pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.236800pt;}
.ws11{word-spacing:-0.362667pt;}
.ws1c{word-spacing:-0.266667pt;}
.ws17{word-spacing:-0.261333pt;}
.ws18{word-spacing:-0.256000pt;}
.ws1d{word-spacing:-0.234667pt;}
.ws1b{word-spacing:-0.224000pt;}
.ws1a{word-spacing:-0.213333pt;}
.ws14{word-spacing:-0.192000pt;}
.ws15{word-spacing:-0.165333pt;}
.ws19{word-spacing:-0.154667pt;}
.wsf{word-spacing:-0.133333pt;}
.ws1e{word-spacing:-0.085333pt;}
.wse{word-spacing:-0.074667pt;}
.ws9{word-spacing:0.000000pt;}
.wsc{word-spacing:0.058667pt;}
.wsd{word-spacing:0.080000pt;}
.ws10{word-spacing:0.085333pt;}
.ws13{word-spacing:0.106667pt;}
.ws12{word-spacing:0.144000pt;}
.wsb{word-spacing:0.378667pt;}
.ws16{word-spacing:0.602667pt;}
.wsa{word-spacing:3.514667pt;}
.ws7{word-spacing:3.826560pt;}
._8{margin-left:-3.167476pt;}
._4{margin-left:-2.084267pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.894944pt;}
._3{width:2.279460pt;}
._2{width:3.790187pt;}
._9{width:5.237334pt;}
._5{width:6.359467pt;}
._6{width:7.534933pt;}
._a{width:9.084800pt;}
._7{width:10.644577pt;}
._c{width:11.543040pt;}
._b{width:13.382283pt;}
._10{width:14.437674pt;}
._d{width:15.444160pt;}
._e{width:16.619733pt;}
._12{width:17.702816pt;}
._f{width:18.704000pt;}
._11{width:20.307200pt;}
._1a{width:29.947520pt;}
._1b{width:30.955510pt;}
._1c{width:32.272320pt;}
._15{width:33.319680pt;}
._1d{width:38.690560pt;}
._1f{width:63.860800pt;}
._20{width:64.983040pt;}
._18{width:81.976960pt;}
._19{width:82.885440pt;}
._13{width:100.467200pt;}
._14{width:101.963520pt;}
._17{width:132.930027pt;}
._16{width:133.867200pt;}
._1e{width:1019.955840pt;}
.fs0{font-size:34.560000pt;}
.fs7{font-size:35.269333pt;}
.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;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:6.960000pt;}
.yd4{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y2c{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y92{bottom:100.746667pt;}
.yc7{bottom:102.826667pt;}
.y13d{bottom:109.466667pt;}
.yaf{bottom:110.266667pt;}
.y117{bottom:112.826667pt;}
.y91{bottom:116.346667pt;}
.ye8{bottom:117.626667pt;}
.y2a{bottom:123.946667pt;}
.y13c{bottom:125.066667pt;}
.y61{bottom:125.466667pt;}
.y116{bottom:128.506667pt;}
.yc6{bottom:131.466667pt;}
.y90{bottom:131.946667pt;}
.ye7{bottom:133.226667pt;}
.y29{bottom:139.626667pt;}
.y13b{bottom:140.666667pt;}
.y60{bottom:141.066667pt;}
.yae{bottom:141.946667pt;}
.y115{bottom:144.106667pt;}
.y8f{bottom:147.626667pt;}
.ye6{bottom:148.826667pt;}
.y28{bottom:155.226667pt;}
.y5f{bottom:156.746667pt;}
.y114{bottom:159.706667pt;}
.y8e{bottom:163.226667pt;}
.y13a{bottom:164.346667pt;}
.ye5{bottom:164.506667pt;}
.yad{bottom:170.586667pt;}
.y27{bottom:170.826667pt;}
.y5e{bottom:172.346667pt;}
.y113{bottom:175.386667pt;}
.y8d{bottom:178.826667pt;}
.y139{bottom:179.946667pt;}
.ye4{bottom:180.106667pt;}
.y26{bottom:186.506667pt;}
.y5d{bottom:187.946667pt;}
.y112{bottom:190.986667pt;}
.y8c{bottom:194.506667pt;}
.y138{bottom:195.626667pt;}
.ye3{bottom:195.786667pt;}
.y25{bottom:202.106667pt;}
.y5c{bottom:203.626667pt;}
.y111{bottom:206.666667pt;}
.y8b{bottom:210.106667pt;}
.ye2{bottom:211.386667pt;}
.y24{bottom:217.786667pt;}
.y5b{bottom:219.226667pt;}
.y110{bottom:222.266667pt;}
.y8a{bottom:225.786667pt;}
.ye1{bottom:226.986667pt;}
.y23{bottom:233.386667pt;}
.y5a{bottom:234.826667pt;}
.y10f{bottom:237.866667pt;}
.ye0{bottom:242.666667pt;}
.y22{bottom:248.986667pt;}
.y89{bottom:249.386667pt;}
.y59{bottom:250.506667pt;}
.y10e{bottom:253.546667pt;}
.y137{bottom:258.506667pt;}
.y21{bottom:264.666667pt;}
.y58{bottom:266.106667pt;}
.y10d{bottom:269.146667pt;}
.y136{bottom:274.106667pt;}
.ydf{bottom:274.266667pt;}
.y20{bottom:280.266667pt;}
.y88{bottom:280.986667pt;}
.y57{bottom:281.786667pt;}
.y10c{bottom:284.826667pt;}
.y1f{bottom:295.866667pt;}
.y87{bottom:296.666667pt;}
.y56{bottom:297.386667pt;}
.y135{bottom:297.786667pt;}
.y10b{bottom:300.426667pt;}
.yde{bottom:302.906667pt;}
.y1e{bottom:311.546667pt;}
.y86{bottom:312.266667pt;}
.y55{bottom:312.986667pt;}
.y134{bottom:313.386667pt;}
.y10a{bottom:316.026667pt;}
.y85{bottom:327.946667pt;}
.y54{bottom:328.666667pt;}
.y133{bottom:328.986667pt;}
.y109{bottom:331.706667pt;}
.yda{bottom:335.066667pt;}
.y1d{bottom:335.466667pt;}
.y84{bottom:343.546667pt;}
.y53{bottom:344.266667pt;}
.yd9{bottom:348.346667pt;}
.y132{bottom:352.666667pt;}
.y83{bottom:359.146667pt;}
.y52{bottom:359.946667pt;}
.y108{bottom:363.306667pt;}
.y131{bottom:368.266667pt;}
.yd8{bottom:372.666667pt;}
.y82{bottom:374.826667pt;}
.y51{bottom:375.546667pt;}
.y1c{bottom:378.346667pt;}
.y107{bottom:378.986667pt;}
.y81{bottom:390.426667pt;}
.y50{bottom:391.146667pt;}
.y130{bottom:391.946667pt;}
.y1b{bottom:394.266667pt;}
.y106{bottom:394.586667pt;}
.yd7{bottom:396.986667pt;}
.y80{bottom:406.106667pt;}
.y4f{bottom:406.826667pt;}
.y12f{bottom:407.546667pt;}
.y105{bottom:410.186667pt;}
.ybb{bottom:410.346667pt;}
.y157{bottom:417.306667pt;}
.yd5{bottom:421.333333pt;}
.y4e{bottom:422.453333pt;}
.y104{bottom:425.893333pt;}
.y1a{bottom:427.253333pt;}
.y7f{bottom:429.733333pt;}
.y12e{bottom:431.173333pt;}
.y156{bottom:433.013333pt;}
.yba{bottom:433.973333pt;}
.y4d{bottom:438.133333pt;}
.y103{bottom:441.493333pt;}
.y19{bottom:442.853333pt;}
.yd3{bottom:445.573333pt;}
.y155{bottom:448.613333pt;}
.yc5{bottom:450.533333pt;}
.y4c{bottom:453.733333pt;}
.y12d{bottom:454.853333pt;}
.y18{bottom:458.453333pt;}
.y7e{bottom:461.333333pt;}
.y102{bottom:465.413333pt;}
.yb9{bottom:465.653333pt;}
.yc4{bottom:466.133333pt;}
.y4b{bottom:469.333333pt;}
.y12c{bottom:470.453333pt;}
.y154{bottom:472.293333pt;}
.y17{bottom:474.133333pt;}
.y7d{bottom:477.013333pt;}
.yb8{bottom:481.253333pt;}
.y4a{bottom:485.013333pt;}
.y153{bottom:487.893333pt;}
.yd2{bottom:488.853333pt;}
.y16{bottom:489.733333pt;}
.yc3{bottom:489.813333pt;}
.y7c{bottom:492.613333pt;}
.y12b{bottom:494.133333pt;}
.yb7{bottom:496.853333pt;}
.y49{bottom:500.613333pt;}
.y152{bottom:503.493333pt;}
.y15{bottom:505.413333pt;}
.y101{bottom:508.293333pt;}
.y12a{bottom:509.733333pt;}
.yb6{bottom:512.533333pt;}
.y48{bottom:516.293333pt;}
.y7b{bottom:516.533333pt;}
.yd1{bottom:520.533333pt;}
.y14{bottom:521.013333pt;}
.yc2{bottom:521.413333pt;}
.yac{bottom:523.573333pt;}
.y100{bottom:523.973333pt;}
.y151{bottom:527.173333pt;}
.yb5{bottom:528.133333pt;}
.y47{bottom:531.893333pt;}
.y129{bottom:533.333333pt;}
.yd0{bottom:536.133333pt;}
.y13{bottom:536.613333pt;}
.yc1{bottom:537.013333pt;}
.yab{bottom:539.253333pt;}
.yff{bottom:539.573333pt;}
.y150{bottom:542.773333pt;}
.y46{bottom:547.493333pt;}
.y128{bottom:549.013333pt;}
.ycf{bottom:551.813333pt;}
.y12{bottom:552.293333pt;}
.yc0{bottom:552.693333pt;}
.yaa{bottom:554.853333pt;}
.yfe{bottom:555.253333pt;}
.y14f{bottom:558.453333pt;}
.y7a{bottom:559.493333pt;}
.yb4{bottom:559.813333pt;}
.y45{bottom:563.173333pt;}
.y11{bottom:567.893333pt;}
.ybf{bottom:568.293333pt;}
.yfd{bottom:570.853333pt;}
.y127{bottom:572.613333pt;}
.y79{bottom:575.093333pt;}
.yce{bottom:575.413333pt;}
.ya9{bottom:578.453333pt;}
.y44{bottom:578.773333pt;}
.y14e{bottom:582.053333pt;}
.ybe{bottom:583.973333pt;}
.y126{bottom:588.293333pt;}
.yb3{bottom:588.453333pt;}
.y78{bottom:590.693333pt;}
.y10{bottom:591.813333pt;}
.y43{bottom:594.453333pt;}
.y14d{bottom:597.653333pt;}
.yfc{bottom:602.453333pt;}
.y77{bottom:606.373333pt;}
.ycd{bottom:607.013333pt;}
.y42{bottom:610.053333pt;}
.ya8{bottom:610.373333pt;}
.y125{bottom:611.893333pt;}
.ybd{bottom:615.573333pt;}
.yfb{bottom:618.133333pt;}
.y14c{bottom:621.333333pt;}
.y76{bottom:621.973333pt;}
.ycc{bottom:622.693333pt;}
.y41{bottom:625.653333pt;}
.yf{bottom:626.693333pt;}
.y124{bottom:627.493333pt;}
.yfa{bottom:633.733333pt;}
.y14b{bottom:636.933333pt;}
.y75{bottom:637.573333pt;}
.ycb{bottom:638.293333pt;}
.y40{bottom:641.333333pt;}
.y123{bottom:643.173333pt;}
.ybc{bottom:644.213333pt;}
.yf9{bottom:649.413333pt;}
.ydd{bottom:649.973333pt;}
.y74{bottom:653.253333pt;}
.ya7{bottom:653.333333pt;}
.yca{bottom:653.973333pt;}
.y3f{bottom:656.933333pt;}
.ye{bottom:658.533333pt;}
.y14a{bottom:660.613333pt;}
.yf8{bottom:665.013333pt;}
.y122{bottom:666.773333pt;}
.ya6{bottom:668.933333pt;}
.y149{bottom:676.213333pt;}
.y73{bottom:676.853333pt;}
.y3e{bottom:680.613333pt;}
.ydc{bottom:681.573333pt;}
.y121{bottom:682.373333pt;}
.ya5{bottom:684.613333pt;}
.yc9{bottom:685.573333pt;}
.yd{bottom:686.533333pt;}
.yf7{bottom:696.293333pt;}
.y120{bottom:698.053333pt;}
.y148{bottom:699.813333pt;}
.ya4{bottom:700.213333pt;}
.y72{bottom:708.533333pt;}
.ydb{bottom:710.213333pt;}
.yf6{bottom:711.893333pt;}
.y3d{bottom:712.213333pt;}
.yc8{bottom:714.213333pt;}
.y147{bottom:715.493333pt;}
.ya3{bottom:715.813333pt;}
.yc{bottom:721.920000pt;}
.y11f{bottom:721.973333pt;}
.y71{bottom:724.133333pt;}
.yf5{bottom:727.573333pt;}
.y3c{bottom:727.813333pt;}
.y146{bottom:731.093333pt;}
.ya2{bottom:731.493333pt;}
.yb{bottom:738.004000pt;}
.y70{bottom:739.733333pt;}
.yf4{bottom:743.173333pt;}
.y3b{bottom:743.493333pt;}
.ya1{bottom:747.093333pt;}
.ya{bottom:754.004000pt;}
.y145{bottom:754.693333pt;}
.y6f{bottom:755.413333pt;}
.y3a{bottom:759.093333pt;}
.ya0{bottom:762.693333pt;}
.y11e{bottom:764.853333pt;}
.y9{bottom:770.004000pt;}
.y144{bottom:770.373333pt;}
.y6e{bottom:771.013333pt;}
.y39{bottom:774.693333pt;}
.yf3{bottom:774.773333pt;}
.y9f{bottom:778.373333pt;}
.y8{bottom:786.004000pt;}
.y6d{bottom:786.693333pt;}
.y11d{bottom:788.773333pt;}
.y38{bottom:790.373333pt;}
.yf2{bottom:790.453333pt;}
.y9e{bottom:793.973333pt;}
.y7{bottom:802.004000pt;}
.y6c{bottom:802.293333pt;}
.y37{bottom:805.893333pt;}
.yf1{bottom:806.053333pt;}
.y9d{bottom:809.653333pt;}
.y36{bottom:821.333333pt;}
.yf0{bottom:821.733333pt;}
.y11c{bottom:821.973333pt;}
.y9c{bottom:825.253333pt;}
.y6b{bottom:825.893333pt;}
.y6{bottom:826.613333pt;}
.y143{bottom:833.253333pt;}
.y35{bottom:836.933333pt;}
.yef{bottom:837.333333pt;}
.y9b{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y142{bottom:848.853333pt;}
.y34{bottom:852.613333pt;}
.yee{bottom:852.933333pt;}
.y9a{bottom:856.533333pt;}
.y6a{bottom:857.573333pt;}
.y141{bottom:864.533333pt;}
.y11b{bottom:864.853333pt;}
.y33{bottom:868.213333pt;}
.yed{bottom:868.613333pt;}
.y99{bottom:872.133333pt;}
.y69{bottom:873.173333pt;}
.y4{bottom:877.893333pt;}
.y11a{bottom:880.533333pt;}
.yec{bottom:884.213333pt;}
.y140{bottom:888.133333pt;}
.y68{bottom:888.853333pt;}
.y32{bottom:891.813333pt;}
.y98{bottom:895.813333pt;}
.y119{bottom:896.133333pt;}
.y3{bottom:899.840000pt;}
.y13f{bottom:903.840000pt;}
.y67{bottom:904.480000pt;}
.yb2{bottom:911.440000pt;}
.y118{bottom:911.840000pt;}
.yeb{bottom:915.520000pt;}
.y13e{bottom:919.440000pt;}
.y66{bottom:920.080000pt;}
.y31{bottom:923.760000pt;}
.yb1{bottom:927.040000pt;}
.y97{bottom:927.440000pt;}
.yea{bottom:931.120000pt;}
.y65{bottom:935.760000pt;}
.y96{bottom:943.040000pt;}
.yb0{bottom:950.720000pt;}
.y64{bottom:951.360000pt;}
.ye9{bottom:955.040000pt;}
.y95{bottom:958.720000pt;}
.y30{bottom:966.720000pt;}
.y63{bottom:967.040000pt;}
.y94{bottom:974.320000pt;}
.y2f{bottom:982.320000pt;}
.y62{bottom:982.560000pt;}
.y93{bottom:990.000000pt;}
.y2e{bottom:998.000000pt;}
.y2d{bottom:1013.600000pt;}
.y2b{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h10{height:23.626667pt;}
.hd{height:23.680000pt;}
.h7{height:24.488766pt;}
.h2{height:26.686562pt;}
.h6{height:29.861828pt;}
.h3{height:34.804688pt;}
.he{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:52.448437pt;}
.h11{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:53.466667pt;}
.w7{width:66.720000pt;}
.w8{width:69.360000pt;}
.w4{width:69.520000pt;}
.w5{width:71.600000pt;}
.w3{width:124.080000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.800000pt;}
.x1{left:60.480000pt;}
.x1a{left:98.879988pt;}
.xf{left:168.026667pt;}
.x2{left:187.626655pt;}
.xc{left:232.266655pt;}
.x8{left:273.306655pt;}
.x5{left:274.426655pt;}
.xe{left:279.546655pt;}
.xa{left:286.986655pt;}
.x11{left:292.826667pt;}
.x17{left:321.306655pt;}
.x19{left:339.786655pt;}
.x12{left:362.986667pt;}
.x6{left:396.986655pt;}
.x13{left:435.226667pt;}
.x14{left:489.333333pt;}
.x15{left:556.693333pt;}
.x7{left:598.053322pt;}
.x16{left:603.013322pt;}
.x18{left:612.053322pt;}
.xb{left:621.013322pt;}
.xd{left:622.053322pt;}
.x9{left:640.053322pt;}
.x4{left:643.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; }
  