
    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_f74548c0646ef3470b2e608b.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_b91d3dd16f47737f5dabfd78.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0eed8d286e9195fd247b273a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_532f901d7f4aeb1a540ae9ab.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_5f5a9d484b05bf211aeab86b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_83b5042d83b96af153d0fb60.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_11987625fcd7bb98751ca38e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6958672a7bfe962718ea55f0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0c906bce5b8e1fa6d51cf078.woff2')format("woff");}.ffa{font-family:ffa;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;}
.v7{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v5{vertical-align:18.000000px;}
.v6{vertical-align:40.320000px;}
.v3{vertical-align:45.360000px;}
.v4{vertical-align:67.320000px;}
.ls13{letter-spacing:-0.243600px;}
.lsc{letter-spacing:-0.186600px;}
.lsd{letter-spacing:-0.160800px;}
.ls8{letter-spacing:-0.135000px;}
.ls10{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls1f{letter-spacing:-0.067200px;}
.ls18{letter-spacing:-0.063600px;}
.ls9{letter-spacing:-0.057000px;}
.ls1b{letter-spacing:-0.031680px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls11{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls19{letter-spacing:0.060480px;}
.ls1a{letter-spacing:0.060600px;}
.ls4{letter-spacing:0.074160px;}
.ls22{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1d{letter-spacing:0.095400px;}
.ls1e{letter-spacing:0.116400px;}
.lse{letter-spacing:0.127200px;}
.ls6{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls1c{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.559200px;}
.ls14{letter-spacing:2.568960px;}
.ls15{letter-spacing:2.612520px;}
.ls16{letter-spacing:3.300480px;}
.ls21{letter-spacing:47.726640px;}
.ls20{letter-spacing:80.846640px;}
.ls17{letter-spacing:116.372520px;}
.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;}
}
.wse{word-spacing:-47.069640px;}
.wsd{word-spacing:-43.469640px;}
.ws8{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.399800px;}
.ws6{word-spacing:-13.353600px;}
.ws12{word-spacing:-13.342800px;}
.ws11{word-spacing:-13.321800px;}
.ws13{word-spacing:-13.300800px;}
.wsc{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.162800px;}
.ws5{word-spacing:-13.065600px;}
.ws4{word-spacing:-13.039800px;}
.wsa{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws10{word-spacing:-8.614200px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._c{margin-left:-3.899399px;}
._7{margin-left:-2.886000px;}
._0{margin-left:-1.110000px;}
._2{width:1.057644px;}
._6{width:2.612759px;}
._5{width:3.847800px;}
._9{width:4.929600px;}
._4{width:6.845401px;}
._3{width:7.875600px;}
._8{width:9.011798px;}
._b{width:10.619040px;}
._a{width:11.900400px;}
._d{width:14.308560px;}
._e{width:15.475356px;}
._11{width:16.646244px;}
._f{width:17.691120px;}
._1{width:20.483160px;}
._14{width:25.454520px;}
._10{width:27.414720px;}
._12{width:104.608800px;}
._13{width:105.690960px;}
.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;}
.y8c{bottom:7.830000px;}
.yeb{bottom:7.860000px;}
.y8e{bottom:7.920000px;}
.yaf{bottom:8.100000px;}
.ya4{bottom:8.190000px;}
.yae{bottom:9.540000px;}
.ya3{bottom:9.630000px;}
.yac{bottom:67.770000px;}
.ya1{bottom:67.800000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.yd3{bottom:89.910000px;}
.ya7{bottom:96.930000px;}
.y1{bottom:101.640000px;}
.yf6{bottom:116.310000px;}
.y89{bottom:120.090000px;}
.yb4{bottom:128.370000px;}
.y117{bottom:133.770000px;}
.y88{bottom:137.640000px;}
.y5a{bottom:138.270000px;}
.y29{bottom:142.860000px;}
.yb3{bottom:146.010000px;}
.yf5{bottom:151.950000px;}
.yd2{bottom:154.290000px;}
.y87{bottom:155.190000px;}
.y59{bottom:155.910000px;}
.y28{bottom:160.500000px;}
.yb2{bottom:163.560000px;}
.y116{bottom:169.410000px;}
.y86{bottom:172.830000px;}
.y58{bottom:173.460000px;}
.y27{bottom:178.050000px;}
.yd5{bottom:181.650000px;}
.yf4{bottom:184.170000px;}
.y115{bottom:186.960000px;}
.y85{bottom:190.380000px;}
.y57{bottom:191.100000px;}
.y26{bottom:195.600000px;}
.yb1{bottom:199.200000px;}
.y84{bottom:208.020000px;}
.yd4{bottom:209.010000px;}
.y25{bottom:213.240000px;}
.y114{bottom:213.870000px;}
.yab{bottom:214.140000px;}
.y56{bottom:217.650000px;}
.y83{bottom:225.570000px;}
.y24{bottom:230.790000px;}
.y13e{bottom:232.680000px;}
.yd1{bottom:236.280000px;}
.y82{bottom:243.120000px;}
.yb0{bottom:243.210000px;}
.y13d{bottom:250.230000px;}
.y113{bottom:250.860000px;}
.y55{bottom:253.200000px;}
.y23{bottom:257.700000px;}
.yd0{bottom:263.640000px;}
.y13c{bottom:267.780000px;}
.y112{bottom:268.500000px;}
.y81{bottom:269.760000px;}
.y54{bottom:270.840000px;}
.yad{bottom:272.370000px;}
.y111{bottom:286.050000px;}
.y53{bottom:288.390000px;}
.yf3{bottom:293.250000px;}
.y13b{bottom:294.420000px;}
.ya6{bottom:301.440000px;}
.y80{bottom:305.310000px;}
.y52{bottom:305.940000px;}
.y22{bottom:306.300000px;}
.yf2{bottom:310.800000px;}
.ycf{bottom:312.330000px;}
.y110{bottom:312.960000px;}
.y13a{bottom:320.970000px;}
.y7f{bottom:322.950000px;}
.y51{bottom:323.580000px;}
.yf1{bottom:328.440000px;}
.yaa{bottom:330.510000px;}
.y7e{bottom:340.500000px;}
.y21{bottom:343.290000px;}
.yf0{bottom:345.990000px;}
.y139{bottom:347.610000px;}
.yce{bottom:347.970000px;}
.y50{bottom:350.130000px;}
.y10f{bottom:350.310000px;}
.ya9{bottom:359.580000px;}
.y20{bottom:360.930000px;}
.yef{bottom:363.630000px;}
.y138{bottom:365.160000px;}
.y7d{bottom:367.410000px;}
.y1f{bottom:378.480000px;}
.ycd{bottom:380.190000px;}
.yee{bottom:381.180000px;}
.y137{bottom:382.710000px;}
.y4f{bottom:385.770000px;}
.ya8{bottom:388.740000px;}
.y1e{bottom:396.120000px;}
.y10e{bottom:398.550000px;}
.y4e{bottom:403.320000px;}
.y136{bottom:409.350000px;}
.y1d{bottom:413.670000px;}
.yed{bottom:414.120000px;}
.y7c{bottom:415.650000px;}
.y10d{bottom:416.190000px;}
.ya0{bottom:417.810000px;}
.y135{bottom:426.900000px;}
.y4d{bottom:429.870000px;}
.y1c{bottom:431.220000px;}
.y7b{bottom:433.290000px;}
.y10c{bottom:433.740000px;}
.yec{bottom:441.480000px;}
.ya5{bottom:446.880000px;}
.y1b{bottom:448.860000px;}
.y7a{bottom:450.840000px;}
.y10b{bottom:451.380000px;}
.y134{bottom:453.450000px;}
.y4c{bottom:465.510000px;}
.y1a{bottom:466.410000px;}
.y79{bottom:468.390000px;}
.yea{bottom:468.840000px;}
.y10a{bottom:468.930000px;}
.y133{bottom:471.120000px;}
.ya2{bottom:475.980000px;}
.y4b{bottom:483.090000px;}
.y19{bottom:484.080000px;}
.y109{bottom:486.510000px;}
.y78{bottom:495.060000px;}
.y132{bottom:497.670000px;}
.y4a{bottom:500.730000px;}
.y18{bottom:501.630000px;}
.y108{bottom:504.150000px;}
.y9f{bottom:505.140000px;}
.y131{bottom:515.310000px;}
.ye9{bottom:517.560000px;}
.y49{bottom:518.280000px;}
.y17{bottom:519.180000px;}
.y107{bottom:521.700000px;}
.y77{bottom:530.610000px;}
.y48{bottom:535.830000px;}
.ycc{bottom:536.550000px;}
.y16{bottom:536.820000px;}
.y106{bottom:539.340000px;}
.y130{bottom:541.860000px;}
.y76{bottom:548.250000px;}
.ye8{bottom:553.110000px;}
.y47{bottom:553.470000px;}
.y9e{bottom:553.830000px;}
.ycb{bottom:554.100000px;}
.y15{bottom:554.370000px;}
.y105{bottom:556.890000px;}
.y75{bottom:565.800000px;}
.y12f{bottom:568.410000px;}
.y46{bottom:571.020000px;}
.yca{bottom:571.740000px;}
.y14{bottom:571.920000px;}
.y104{bottom:574.440000px;}
.y9d{bottom:580.380000px;}
.ye7{bottom:585.330000px;}
.y45{bottom:588.660000px;}
.yc9{bottom:589.290000px;}
.y13{bottom:589.560000px;}
.y103{bottom:592.080000px;}
.y74{bottom:592.350000px;}
.y12e{bottom:595.050000px;}
.yc8{bottom:606.840000px;}
.y12{bottom:607.110000px;}
.y102{bottom:609.630000px;}
.y44{bottom:615.210000px;}
.y9c{bottom:616.020000px;}
.y12d{bottom:621.600000px;}
.yc7{bottom:624.480000px;}
.y11{bottom:624.750000px;}
.y101{bottom:627.270000px;}
.y73{bottom:627.990000px;}
.y9b{bottom:633.570000px;}
.y12c{bottom:639.240000px;}
.yc6{bottom:642.030000px;}
.y10{bottom:642.300000px;}
.y100{bottom:644.820000px;}
.y72{bottom:645.540000px;}
.y43{bottom:651.120000px;}
.y12b{bottom:656.790000px;}
.yc5{bottom:659.670000px;}
.yf{bottom:659.850000px;}
.y9a{bottom:660.120000px;}
.yff{bottom:662.370000px;}
.y71{bottom:663.180000px;}
.yc4{bottom:677.220000px;}
.ye{bottom:677.490000px;}
.yfe{bottom:680.010000px;}
.y12a{bottom:683.340000px;}
.y70{bottom:689.730000px;}
.y99{bottom:693.150000px;}
.yc3{bottom:694.770000px;}
.yd{bottom:695.040000px;}
.yfd{bottom:697.560000px;}
.y42{bottom:699.360000px;}
.y129{bottom:709.980000px;}
.yc2{bottom:712.410000px;}
.yc{bottom:712.680000px;}
.yfc{bottom:715.200000px;}
.y41{bottom:717.000000px;}
.y98{bottom:720.420000px;}
.y6f{bottom:725.280000px;}
.ye6{bottom:726.000000px;}
.y128{bottom:727.530000px;}
.yc1{bottom:729.960000px;}
.yb{bottom:730.230000px;}
.yfb{bottom:732.750000px;}
.y40{bottom:734.550000px;}
.y6e{bottom:742.920000px;}
.ye5{bottom:743.550000px;}
.yc0{bottom:747.600000px;}
.y97{bottom:747.780000px;}
.yfa{bottom:750.300000px;}
.y3f{bottom:752.190000px;}
.y127{bottom:754.170000px;}
.ya{bottom:757.140000px;}
.y6d{bottom:760.470000px;}
.ye4{bottom:761.190000px;}
.ybf{bottom:765.150000px;}
.y3e{bottom:769.740000px;}
.y126{bottom:771.720000px;}
.y96{bottom:775.140000px;}
.yf9{bottom:777.210000px;}
.y6c{bottom:778.110000px;}
.ye3{bottom:778.740000px;}
.ybe{bottom:782.700000px;}
.y3d{bottom:787.290000px;}
.y6b{bottom:795.660000px;}
.ye2{bottom:796.290000px;}
.y125{bottom:798.270000px;}
.ybd{bottom:800.340000px;}
.y3c{bottom:804.930000px;}
.y9{bottom:805.380000px;}
.y6a{bottom:813.210000px;}
.ye1{bottom:813.930000px;}
.y124{bottom:815.910000px;}
.ybc{bottom:817.890000px;}
.y95{bottom:823.830000px;}
.yf8{bottom:825.540000px;}
.y69{bottom:830.850000px;}
.ye0{bottom:831.480000px;}
.y3b{bottom:840.480000px;}
.y8{bottom:841.200000px;}
.y123{bottom:842.460000px;}
.y68{bottom:848.400000px;}
.ydf{bottom:849.030000px;}
.ybb{bottom:850.920000px;}
.yf7{bottom:857.760000px;}
.y3a{bottom:858.030000px;}
.y94{bottom:859.380000px;}
.y67{bottom:866.040000px;}
.yde{bottom:866.670000px;}
.y122{bottom:869.100000px;}
.y93{bottom:874.410000px;}
.y39{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.yba{bottom:878.190000px;}
.ydd{bottom:884.220000px;}
.y121{bottom:886.650000px;}
.y38{bottom:893.220000px;}
.y66{bottom:898.350000px;}
.y92{bottom:901.680000px;}
.ydc{bottom:901.860000px;}
.yb9{bottom:905.550000px;}
.y65{bottom:908.430000px;}
.y6{bottom:913.200000px;}
.ydb{bottom:919.410000px;}
.y37{bottom:928.860000px;}
.y91{bottom:929.040000px;}
.yb8{bottom:932.910000px;}
.yda{bottom:936.960000px;}
.y120{bottom:939.840000px;}
.y36{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.yd9{bottom:954.600000px;}
.y64{bottom:955.410000px;}
.y90{bottom:956.400000px;}
.y11f{bottom:957.390000px;}
.y35{bottom:963.960000px;}
.yd8{bottom:972.150000px;}
.y63{bottom:972.960000px;}
.y11e{bottom:975.030000px;}
.y34{bottom:981.600000px;}
.y8f{bottom:983.760000px;}
.y4{bottom:987.630000px;}
.yd7{bottom:989.790000px;}
.y62{bottom:990.600000px;}
.y11d{bottom:992.580000px;}
.y33{bottom:999.150000px;}
.y61{bottom:1008.150000px;}
.y8d{bottom:1011.060000px;}
.y3{bottom:1012.320000px;}
.y32{bottom:1016.820000px;}
.yb7{bottom:1017.180000px;}
.y11c{bottom:1019.160000px;}
.yd6{bottom:1025.370000px;}
.y60{bottom:1025.820000px;}
.y31{bottom:1034.370000px;}
.yb6{bottom:1034.820000px;}
.y11b{bottom:1036.800000px;}
.y8b{bottom:1038.420000px;}
.y5f{bottom:1043.370000px;}
.yb5{bottom:1052.370000px;}
.y5e{bottom:1060.920000px;}
.y11a{bottom:1063.710000px;}
.y30{bottom:1069.920000px;}
.y5d{bottom:1078.560000px;}
.y8a{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.y5c{bottom:1096.110000px;}
.y2e{bottom:1105.110000px;}
.y119{bottom:1111.950000px;}
.y5b{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y118{bottom:1138.860000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hd{height:26.550000px;}
.hf{height:26.580000px;}
.he{height:26.640000px;}
.h15{height:28.260000px;}
.h11{height:28.350000px;}
.h12{height:28.380000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.hc{height:59.973223px;}
.h7{height:60.960938px;}
.h17{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h14{height:86.490000px;}
.h10{height:86.520000px;}
.hb{height:91.222383px;}
.ha{height:102.817617px;}
.h16{height:108.630000px;}
.h13{height:115.650000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w10{width:35.850000px;}
.wa{width:59.310000px;}
.wf{width:60.120000px;}
.w12{width:62.220000px;}
.w5{width:66.060000px;}
.wd{width:67.230000px;}
.w3{width:88.560000px;}
.w11{width:91.260000px;}
.w4{width:92.910000px;}
.w8{width:94.860000px;}
.w9{width:98.100000px;}
.wb{width:132.840000px;}
.we{width:132.930000px;}
.w6{width:132.960000px;}
.wc{width:135.570000px;}
.w7{width:280.110000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x24{left:111.239987px;}
.xd{left:112.410000px;}
.x2{left:201.539987px;}
.xe{left:246.090000px;}
.x12{left:278.040000px;}
.x17{left:285.420000px;}
.x6{left:310.890000px;}
.xa{left:322.140000px;}
.x21{left:327.719987px;}
.x1b{left:342.929987px;}
.x1e{left:348.690000px;}
.x1d{left:353.819987px;}
.x23{left:357.869987px;}
.x16{left:364.079987px;}
.xb{left:388.920000px;}
.x4{left:396.389987px;}
.x8{left:400.170000px;}
.x13{left:411.690000px;}
.x18{left:419.070000px;}
.x5{left:453.359987px;}
.xc{left:478.200000px;}
.x19{left:479.910000px;}
.x1f{left:482.340000px;}
.x9{left:489.450000px;}
.x1a{left:516.570000px;}
.xf{left:526.920000px;}
.x14{left:547.980000px;}
.x20{left:613.139987px;}
.x10{left:622.590000px;}
.x15{left:646.889987px;}
.x1c{left:685.139987px;}
.x11{left:721.500000px;}
.x22{left:733.559987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v7{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v5{vertical-align:16.000000pt;}
.v6{vertical-align:35.840000pt;}
.v3{vertical-align:40.320000pt;}
.v4{vertical-align:59.840000pt;}
.ls13{letter-spacing:-0.216533pt;}
.lsc{letter-spacing:-0.165867pt;}
.lsd{letter-spacing:-0.142933pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls10{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls1f{letter-spacing:-0.059733pt;}
.ls18{letter-spacing:-0.056533pt;}
.ls9{letter-spacing:-0.050667pt;}
.ls1b{letter-spacing:-0.028160pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls11{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls19{letter-spacing:0.053760pt;}
.ls1a{letter-spacing:0.053867pt;}
.ls4{letter-spacing:0.065920pt;}
.ls22{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1d{letter-spacing:0.084800pt;}
.ls1e{letter-spacing:0.103467pt;}
.lse{letter-spacing:0.113067pt;}
.ls6{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.497067pt;}
.ls14{letter-spacing:2.283520pt;}
.ls15{letter-spacing:2.322240pt;}
.ls16{letter-spacing:2.933760pt;}
.ls21{letter-spacing:42.423680pt;}
.ls20{letter-spacing:71.863680pt;}
.ls17{letter-spacing:103.442240pt;}
.wse{word-spacing:-41.839680pt;}
.wsd{word-spacing:-38.639680pt;}
.ws8{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.ws6{word-spacing:-11.869867pt;}
.ws12{word-spacing:-11.860267pt;}
.ws11{word-spacing:-11.841600pt;}
.ws13{word-spacing:-11.822933pt;}
.wsc{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.700267pt;}
.ws5{word-spacing:-11.613867pt;}
.ws4{word-spacing:-11.590933pt;}
.wsa{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws10{word-spacing:-7.657067pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._c{margin-left:-3.466132pt;}
._7{margin-left:-2.565334pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.940128pt;}
._6{width:2.322453pt;}
._5{width:3.420267pt;}
._9{width:4.381866pt;}
._4{width:6.084801pt;}
._3{width:7.000533pt;}
._8{width:8.010487pt;}
._b{width:9.439147pt;}
._a{width:10.578133pt;}
._d{width:12.718720pt;}
._e{width:13.755872pt;}
._11{width:14.796661pt;}
._f{width:15.725440pt;}
._1{width:18.207253pt;}
._14{width:22.626240pt;}
._10{width:24.368640pt;}
._12{width:92.985600pt;}
._13{width:93.947520pt;}
.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;}
.y8c{bottom:6.960000pt;}
.yeb{bottom:6.986667pt;}
.y8e{bottom:7.040000pt;}
.yaf{bottom:7.200000pt;}
.ya4{bottom:7.280000pt;}
.yae{bottom:8.480000pt;}
.ya3{bottom:8.560000pt;}
.yac{bottom:60.240000pt;}
.ya1{bottom:60.266667pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.yd3{bottom:79.920000pt;}
.ya7{bottom:86.160000pt;}
.y1{bottom:90.346667pt;}
.yf6{bottom:103.386667pt;}
.y89{bottom:106.746667pt;}
.yb4{bottom:114.106667pt;}
.y117{bottom:118.906667pt;}
.y88{bottom:122.346667pt;}
.y5a{bottom:122.906667pt;}
.y29{bottom:126.986667pt;}
.yb3{bottom:129.786667pt;}
.yf5{bottom:135.066667pt;}
.yd2{bottom:137.146667pt;}
.y87{bottom:137.946667pt;}
.y59{bottom:138.586667pt;}
.y28{bottom:142.666667pt;}
.yb2{bottom:145.386667pt;}
.y116{bottom:150.586667pt;}
.y86{bottom:153.626667pt;}
.y58{bottom:154.186667pt;}
.y27{bottom:158.266667pt;}
.yd5{bottom:161.466667pt;}
.yf4{bottom:163.706667pt;}
.y115{bottom:166.186667pt;}
.y85{bottom:169.226667pt;}
.y57{bottom:169.866667pt;}
.y26{bottom:173.866667pt;}
.yb1{bottom:177.066667pt;}
.y84{bottom:184.906667pt;}
.yd4{bottom:185.786667pt;}
.y25{bottom:189.546667pt;}
.y114{bottom:190.106667pt;}
.yab{bottom:190.346667pt;}
.y56{bottom:193.466667pt;}
.y83{bottom:200.506667pt;}
.y24{bottom:205.146667pt;}
.y13e{bottom:206.826667pt;}
.yd1{bottom:210.026667pt;}
.y82{bottom:216.106667pt;}
.yb0{bottom:216.186667pt;}
.y13d{bottom:222.426667pt;}
.y113{bottom:222.986667pt;}
.y55{bottom:225.066667pt;}
.y23{bottom:229.066667pt;}
.yd0{bottom:234.346667pt;}
.y13c{bottom:238.026667pt;}
.y112{bottom:238.666667pt;}
.y81{bottom:239.786667pt;}
.y54{bottom:240.746667pt;}
.yad{bottom:242.106667pt;}
.y111{bottom:254.266667pt;}
.y53{bottom:256.346667pt;}
.yf3{bottom:260.666667pt;}
.y13b{bottom:261.706667pt;}
.ya6{bottom:267.946667pt;}
.y80{bottom:271.386667pt;}
.y52{bottom:271.946667pt;}
.y22{bottom:272.266667pt;}
.yf2{bottom:276.266667pt;}
.ycf{bottom:277.626667pt;}
.y110{bottom:278.186667pt;}
.y13a{bottom:285.306667pt;}
.y7f{bottom:287.066667pt;}
.y51{bottom:287.626667pt;}
.yf1{bottom:291.946667pt;}
.yaa{bottom:293.786667pt;}
.y7e{bottom:302.666667pt;}
.y21{bottom:305.146667pt;}
.yf0{bottom:307.546667pt;}
.y139{bottom:308.986667pt;}
.yce{bottom:309.306667pt;}
.y50{bottom:311.226667pt;}
.y10f{bottom:311.386667pt;}
.ya9{bottom:319.626667pt;}
.y20{bottom:320.826667pt;}
.yef{bottom:323.226667pt;}
.y138{bottom:324.586667pt;}
.y7d{bottom:326.586667pt;}
.y1f{bottom:336.426667pt;}
.ycd{bottom:337.946667pt;}
.yee{bottom:338.826667pt;}
.y137{bottom:340.186667pt;}
.y4f{bottom:342.906667pt;}
.ya8{bottom:345.546667pt;}
.y1e{bottom:352.106667pt;}
.y10e{bottom:354.266667pt;}
.y4e{bottom:358.506667pt;}
.y136{bottom:363.866667pt;}
.y1d{bottom:367.706667pt;}
.yed{bottom:368.106667pt;}
.y7c{bottom:369.466667pt;}
.y10d{bottom:369.946667pt;}
.ya0{bottom:371.386667pt;}
.y135{bottom:379.466667pt;}
.y4d{bottom:382.106667pt;}
.y1c{bottom:383.306667pt;}
.y7b{bottom:385.146667pt;}
.y10c{bottom:385.546667pt;}
.yec{bottom:392.426667pt;}
.ya5{bottom:397.226667pt;}
.y1b{bottom:398.986667pt;}
.y7a{bottom:400.746667pt;}
.y10b{bottom:401.226667pt;}
.y134{bottom:403.066667pt;}
.y4c{bottom:413.786667pt;}
.y1a{bottom:414.586667pt;}
.y79{bottom:416.346667pt;}
.yea{bottom:416.746667pt;}
.y10a{bottom:416.826667pt;}
.y133{bottom:418.773333pt;}
.ya2{bottom:423.093333pt;}
.y4b{bottom:429.413333pt;}
.y19{bottom:430.293333pt;}
.y109{bottom:432.453333pt;}
.y78{bottom:440.053333pt;}
.y132{bottom:442.373333pt;}
.y4a{bottom:445.093333pt;}
.y18{bottom:445.893333pt;}
.y108{bottom:448.133333pt;}
.y9f{bottom:449.013333pt;}
.y131{bottom:458.053333pt;}
.ye9{bottom:460.053333pt;}
.y49{bottom:460.693333pt;}
.y17{bottom:461.493333pt;}
.y107{bottom:463.733333pt;}
.y77{bottom:471.653333pt;}
.y48{bottom:476.293333pt;}
.ycc{bottom:476.933333pt;}
.y16{bottom:477.173333pt;}
.y106{bottom:479.413333pt;}
.y130{bottom:481.653333pt;}
.y76{bottom:487.333333pt;}
.ye8{bottom:491.653333pt;}
.y47{bottom:491.973333pt;}
.y9e{bottom:492.293333pt;}
.ycb{bottom:492.533333pt;}
.y15{bottom:492.773333pt;}
.y105{bottom:495.013333pt;}
.y75{bottom:502.933333pt;}
.y12f{bottom:505.253333pt;}
.y46{bottom:507.573333pt;}
.yca{bottom:508.213333pt;}
.y14{bottom:508.373333pt;}
.y104{bottom:510.613333pt;}
.y9d{bottom:515.893333pt;}
.ye7{bottom:520.293333pt;}
.y45{bottom:523.253333pt;}
.yc9{bottom:523.813333pt;}
.y13{bottom:524.053333pt;}
.y103{bottom:526.293333pt;}
.y74{bottom:526.533333pt;}
.y12e{bottom:528.933333pt;}
.yc8{bottom:539.413333pt;}
.y12{bottom:539.653333pt;}
.y102{bottom:541.893333pt;}
.y44{bottom:546.853333pt;}
.y9c{bottom:547.573333pt;}
.y12d{bottom:552.533333pt;}
.yc7{bottom:555.093333pt;}
.y11{bottom:555.333333pt;}
.y101{bottom:557.573333pt;}
.y73{bottom:558.213333pt;}
.y9b{bottom:563.173333pt;}
.y12c{bottom:568.213333pt;}
.yc6{bottom:570.693333pt;}
.y10{bottom:570.933333pt;}
.y100{bottom:573.173333pt;}
.y72{bottom:573.813333pt;}
.y43{bottom:578.773333pt;}
.y12b{bottom:583.813333pt;}
.yc5{bottom:586.373333pt;}
.yf{bottom:586.533333pt;}
.y9a{bottom:586.773333pt;}
.yff{bottom:588.773333pt;}
.y71{bottom:589.493333pt;}
.yc4{bottom:601.973333pt;}
.ye{bottom:602.213333pt;}
.yfe{bottom:604.453333pt;}
.y12a{bottom:607.413333pt;}
.y70{bottom:613.093333pt;}
.y99{bottom:616.133333pt;}
.yc3{bottom:617.573333pt;}
.yd{bottom:617.813333pt;}
.yfd{bottom:620.053333pt;}
.y42{bottom:621.653333pt;}
.y129{bottom:631.093333pt;}
.yc2{bottom:633.253333pt;}
.yc{bottom:633.493333pt;}
.yfc{bottom:635.733333pt;}
.y41{bottom:637.333333pt;}
.y98{bottom:640.373333pt;}
.y6f{bottom:644.693333pt;}
.ye6{bottom:645.333333pt;}
.y128{bottom:646.693333pt;}
.yc1{bottom:648.853333pt;}
.yb{bottom:649.093333pt;}
.yfb{bottom:651.333333pt;}
.y40{bottom:652.933333pt;}
.y6e{bottom:660.373333pt;}
.ye5{bottom:660.933333pt;}
.yc0{bottom:664.533333pt;}
.y97{bottom:664.693333pt;}
.yfa{bottom:666.933333pt;}
.y3f{bottom:668.613333pt;}
.y127{bottom:670.373333pt;}
.ya{bottom:673.013333pt;}
.y6d{bottom:675.973333pt;}
.ye4{bottom:676.613333pt;}
.ybf{bottom:680.133333pt;}
.y3e{bottom:684.213333pt;}
.y126{bottom:685.973333pt;}
.y96{bottom:689.013333pt;}
.yf9{bottom:690.853333pt;}
.y6c{bottom:691.653333pt;}
.ye3{bottom:692.213333pt;}
.ybe{bottom:695.733333pt;}
.y3d{bottom:699.813333pt;}
.y6b{bottom:707.253333pt;}
.ye2{bottom:707.813333pt;}
.y125{bottom:709.573333pt;}
.ybd{bottom:711.413333pt;}
.y3c{bottom:715.493333pt;}
.y9{bottom:715.893333pt;}
.y6a{bottom:722.853333pt;}
.ye1{bottom:723.493333pt;}
.y124{bottom:725.253333pt;}
.ybc{bottom:727.013333pt;}
.y95{bottom:732.293333pt;}
.yf8{bottom:733.813333pt;}
.y69{bottom:738.533333pt;}
.ye0{bottom:739.093333pt;}
.y3b{bottom:747.093333pt;}
.y8{bottom:747.733333pt;}
.y123{bottom:748.853333pt;}
.y68{bottom:754.133333pt;}
.ydf{bottom:754.693333pt;}
.ybb{bottom:756.373333pt;}
.yf7{bottom:762.453333pt;}
.y3a{bottom:762.693333pt;}
.y94{bottom:763.893333pt;}
.y67{bottom:769.813333pt;}
.yde{bottom:770.373333pt;}
.y122{bottom:772.533333pt;}
.y93{bottom:777.253333pt;}
.y39{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.yba{bottom:780.613333pt;}
.ydd{bottom:785.973333pt;}
.y121{bottom:788.133333pt;}
.y38{bottom:793.973333pt;}
.y66{bottom:798.533333pt;}
.y92{bottom:801.493333pt;}
.ydc{bottom:801.653333pt;}
.yb9{bottom:804.933333pt;}
.y65{bottom:807.493333pt;}
.y6{bottom:811.733333pt;}
.ydb{bottom:817.253333pt;}
.y37{bottom:825.653333pt;}
.y91{bottom:825.813333pt;}
.yb8{bottom:829.253333pt;}
.yda{bottom:832.853333pt;}
.y120{bottom:835.413333pt;}
.y36{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.yd9{bottom:848.533333pt;}
.y64{bottom:849.253333pt;}
.y90{bottom:850.133333pt;}
.y11f{bottom:851.013333pt;}
.y35{bottom:856.853333pt;}
.yd8{bottom:864.133333pt;}
.y63{bottom:864.853333pt;}
.y11e{bottom:866.693333pt;}
.y34{bottom:872.533333pt;}
.y8f{bottom:874.453333pt;}
.y4{bottom:877.893333pt;}
.yd7{bottom:879.813333pt;}
.y62{bottom:880.533333pt;}
.y11d{bottom:882.293333pt;}
.y33{bottom:888.133333pt;}
.y61{bottom:896.133333pt;}
.y8d{bottom:898.720000pt;}
.y3{bottom:899.840000pt;}
.y32{bottom:903.840000pt;}
.yb7{bottom:904.160000pt;}
.y11c{bottom:905.920000pt;}
.yd6{bottom:911.440000pt;}
.y60{bottom:911.840000pt;}
.y31{bottom:919.440000pt;}
.yb6{bottom:919.840000pt;}
.y11b{bottom:921.600000pt;}
.y8b{bottom:923.040000pt;}
.y5f{bottom:927.440000pt;}
.yb5{bottom:935.440000pt;}
.y5e{bottom:943.040000pt;}
.y11a{bottom:945.520000pt;}
.y30{bottom:951.040000pt;}
.y5d{bottom:958.720000pt;}
.y8a{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.y5c{bottom:974.320000pt;}
.y2e{bottom:982.320000pt;}
.y119{bottom:988.400000pt;}
.y5b{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y118{bottom:1012.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.hf{height:23.626667pt;}
.he{height:23.680000pt;}
.h15{height:25.120000pt;}
.h11{height:25.200000pt;}
.h12{height:25.226667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.hc{height:53.309531pt;}
.h7{height:54.187500pt;}
.h17{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h14{height:76.880000pt;}
.h10{height:76.906667pt;}
.hb{height:81.086563pt;}
.ha{height:91.393437pt;}
.h16{height:96.560000pt;}
.h13{height:102.800000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w10{width:31.866667pt;}
.wa{width:52.720000pt;}
.wf{width:53.440000pt;}
.w12{width:55.306667pt;}
.w5{width:58.720000pt;}
.wd{width:59.760000pt;}
.w3{width:78.720000pt;}
.w11{width:81.120000pt;}
.w4{width:82.586667pt;}
.w8{width:84.320000pt;}
.w9{width:87.200000pt;}
.wb{width:118.080000pt;}
.we{width:118.160000pt;}
.w6{width:118.186667pt;}
.wc{width:120.506667pt;}
.w7{width:248.986667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x24{left:98.879988pt;}
.xd{left:99.920000pt;}
.x2{left:179.146655pt;}
.xe{left:218.746667pt;}
.x12{left:247.146667pt;}
.x17{left:253.706667pt;}
.x6{left:276.346667pt;}
.xa{left:286.346667pt;}
.x21{left:291.306655pt;}
.x1b{left:304.826655pt;}
.x1e{left:309.946667pt;}
.x1d{left:314.506655pt;}
.x23{left:318.106655pt;}
.x16{left:323.626655pt;}
.xb{left:345.706667pt;}
.x4{left:352.346655pt;}
.x8{left:355.706667pt;}
.x13{left:365.946667pt;}
.x18{left:372.506667pt;}
.x5{left:402.986655pt;}
.xc{left:425.066667pt;}
.x19{left:426.586667pt;}
.x1f{left:428.746667pt;}
.x9{left:435.066667pt;}
.x1a{left:459.173333pt;}
.xf{left:468.373333pt;}
.x14{left:487.093333pt;}
.x20{left:545.013322pt;}
.x10{left:553.413333pt;}
.x15{left:575.013322pt;}
.x1c{left:609.013322pt;}
.x11{left:641.333333pt;}
.x22{left:652.053322pt;}
.x3{left:704.053322pt;}
}




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