
    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_a69df85338835783a03f2dbe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.853516;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_e5326d66144be4655456a7ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_a284373ca992e7aac9a6ffea.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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_0ae2d22a9940de05100cf3c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_95ee2229c12271c071b581f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_7385b91efd2f861d8f3b0013.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_bcfba3f3434c890167876327.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.945312;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_6dbdd44466772c573e396e86.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.962402;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_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.738770;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_40d373168a9f2dd526d69bb6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_d3742c36a0320d279679d1bf.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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_4eb54ec9a62181370a2d88fc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-0.206400px;}
.ls5{letter-spacing:-0.141000px;}
.lsd{letter-spacing:-0.108000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.066000px;}
.ls13{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.192000px;}
.ls2{letter-spacing:0.198000px;}
.lse{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.233280px;}
.ls6{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.513600px;}
.ls12{letter-spacing:0.666000px;}
.lsf{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.900000px;}
.ls14{letter-spacing:1.080000px;}
.ls9{letter-spacing:1.123920px;}
.ls19{letter-spacing:16.506720px;}
.ls16{letter-spacing:46.026720px;}
.ls11{letter-spacing:50.129280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-38.684160px;}
.ws0{word-spacing:-17.818560px;}
.ws1{word-spacing:-17.677560px;}
.ws2{word-spacing:-16.493760px;}
.ws4{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.228000px;}
.ws9{word-spacing:-15.046800px;}
.ws8{word-spacing:-15.012000px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.904000px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-1432.537920px;}
._4{margin-left:-1087.505280px;}
._6{margin-left:-610.974720px;}
._7{margin-left:-534.603120px;}
._3{margin-left:-467.576640px;}
._1{margin-left:-419.958720px;}
._c{margin-left:-3.944160px;}
._b{margin-left:-2.450160px;}
._0{margin-left:-1.192320px;}
._2{width:1.592640px;}
._d{width:2.722560px;}
._9{width:3.961440px;}
._8{width:5.362560px;}
._a{width:6.770160px;}
._e{width:7.988160px;}
._13{width:9.684000px;}
._f{width:10.897200px;}
._10{width:12.292560px;}
._18{width:13.825440px;}
._16{width:16.096320px;}
._15{width:17.509680px;}
._12{width:18.720000px;}
._11{width:19.762560px;}
._1d{width:21.713760px;}
._1e{width:24.774000px;}
._21{width:30.139920px;}
._14{width:31.194720px;}
._20{width:32.769120px;}
._1c{width:55.875600px;}
._1b{width:57.130560px;}
._17{width:59.999040px;}
._19{width:65.855520px;}
._1a{width:66.962400px;}
._1f{width:68.363520px;}
.fc6{color:rgb(11,87,208);}
.fc5{color:transparent;}
.fc4{color:rgb(27,28,29);}
.fc3{color:rgb(91,155,213);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:113.760000px;}
.y0{bottom:0.000000px;}
.y94{bottom:1.800000px;}
.yc0{bottom:3.240000px;}
.yc7{bottom:3.270000px;}
.y49{bottom:5.760000px;}
.y45{bottom:5.940000px;}
.yb{bottom:6.120000px;}
.ya{bottom:7.920000px;}
.y99{bottom:10.695000px;}
.y85{bottom:11.340000px;}
.y88{bottom:11.520000px;}
.y92{bottom:15.480000px;}
.y7d{bottom:22.860000px;}
.y48{bottom:25.560000px;}
.y4e{bottom:25.740000px;}
.y6{bottom:25.920000px;}
.y84{bottom:27.000000px;}
.y87{bottom:27.180000px;}
.y9b{bottom:28.005000px;}
.y82{bottom:30.240000px;}
.y96{bottom:30.390000px;}
.y91{bottom:30.990000px;}
.y8e{bottom:31.860000px;}
.y9{bottom:32.220000px;}
.y7c{bottom:38.520000px;}
.y47{bottom:45.360000px;}
.y4d{bottom:45.540000px;}
.y5{bottom:45.720000px;}
.y90{bottom:46.650000px;}
.y8d{bottom:47.520000px;}
.y7b{bottom:54.000000px;}
.y8{bottom:59.070000px;}
.yd{bottom:60.480000px;}
.y81{bottom:61.380000px;}
.y8c{bottom:63.000000px;}
.y4c{bottom:65.340000px;}
.y4{bottom:65.550000px;}
.y7a{bottom:69.480000px;}
.y80{bottom:76.890000px;}
.y8b{bottom:78.480000px;}
.y79{bottom:84.990000px;}
.y3{bottom:85.350000px;}
.yca{bottom:85.680000px;}
.y3d{bottom:89.280000px;}
.y7f{bottom:92.370000px;}
.y7{bottom:93.270000px;}
.y76{bottom:94.500000px;}
.y78{bottom:100.650000px;}
.yf0{bottom:101.160000px;}
.y2{bottom:105.150000px;}
.yc9{bottom:105.480000px;}
.y3c{bottom:109.260000px;}
.y11a{bottom:111.420000px;}
.y75{bottom:114.300000px;}
.yef{bottom:120.960000px;}
.y98{bottom:121.605000px;}
.yc8{bottom:125.460000px;}
.y3b{bottom:129.060000px;}
.y119{bottom:131.220000px;}
.y9a{bottom:133.560000px;}
.y74{bottom:134.100000px;}
.y8f{bottom:135.900000px;}
.yee{bottom:140.940000px;}
.y3a{bottom:148.860000px;}
.yc6{bottom:149.580000px;}
.y118{bottom:151.200000px;}
.y73{bottom:154.110000px;}
.yed{bottom:160.770000px;}
.y39{bottom:168.690000px;}
.y117{bottom:171.030000px;}
.y72{bottom:173.910000px;}
.yec{bottom:182.010000px;}
.yc5{bottom:185.970000px;}
.y38{bottom:188.490000px;}
.y116{bottom:190.830000px;}
.y71{bottom:193.710000px;}
.yeb{bottom:201.810000px;}
.y37{bottom:208.470000px;}
.y115{bottom:210.630000px;}
.y70{bottom:213.510000px;}
.y146{bottom:218.010000px;}
.yea{bottom:221.790000px;}
.yc4{bottom:222.330000px;}
.y36{bottom:228.270000px;}
.y114{bottom:230.430000px;}
.y6f{bottom:233.310000px;}
.y145{bottom:237.810000px;}
.ye9{bottom:241.590000px;}
.y35{bottom:248.070000px;}
.y113{bottom:250.410000px;}
.y97{bottom:252.180000px;}
.y6e{bottom:253.290000px;}
.y8a{bottom:255.090000px;}
.y144{bottom:257.790000px;}
.yc3{bottom:258.690000px;}
.ye8{bottom:261.390000px;}
.y34{bottom:267.870000px;}
.y112{bottom:270.210000px;}
.y6d{bottom:273.090000px;}
.y143{bottom:277.590000px;}
.ye7{bottom:281.190000px;}
.y33{bottom:287.670000px;}
.y111{bottom:290.010000px;}
.y6c{bottom:292.890000px;}
.yc2{bottom:295.050000px;}
.y142{bottom:297.390000px;}
.ye6{bottom:300.990000px;}
.y89{bottom:304.050000px;}
.y32{bottom:307.650000px;}
.y110{bottom:309.810000px;}
.y6b{bottom:312.690000px;}
.y141{bottom:317.190000px;}
.ye5{bottom:320.970000px;}
.y31{bottom:327.450000px;}
.y10f{bottom:329.610000px;}
.yc1{bottom:331.410000px;}
.y6a{bottom:332.490000px;}
.y140{bottom:336.990000px;}
.ye4{bottom:340.770000px;}
.y30{bottom:347.250000px;}
.y10e{bottom:349.590000px;}
.y69{bottom:352.470000px;}
.y13f{bottom:356.970000px;}
.ye3{bottom:360.570000px;}
.y2f{bottom:367.050000px;}
.ybf{bottom:367.770000px;}
.y10d{bottom:369.390000px;}
.y68{bottom:372.270000px;}
.y13e{bottom:376.770000px;}
.ye2{bottom:380.370000px;}
.y2e{bottom:386.850000px;}
.y10c{bottom:389.190000px;}
.y67{bottom:392.070000px;}
.y13d{bottom:396.570000px;}
.ye1{bottom:400.170000px;}
.ybe{bottom:401.115000px;}
.y2d{bottom:406.875000px;}
.y10b{bottom:409.035000px;}
.y66{bottom:411.915000px;}
.y13c{bottom:416.415000px;}
.ybd{bottom:418.395000px;}
.ye0{bottom:420.195000px;}
.y2c{bottom:426.675000px;}
.y10a{bottom:428.835000px;}
.y65{bottom:431.715000px;}
.y13b{bottom:436.215000px;}
.ybc{bottom:438.195000px;}
.ydf{bottom:439.995000px;}
.y2b{bottom:446.475000px;}
.y109{bottom:448.815000px;}
.y64{bottom:451.695000px;}
.y13a{bottom:456.195000px;}
.ybb{bottom:457.995000px;}
.yde{bottom:459.795000px;}
.y2a{bottom:466.275000px;}
.y108{bottom:468.615000px;}
.y63{bottom:471.495000px;}
.y139{bottom:475.995000px;}
.yba{bottom:477.795000px;}
.y86{bottom:478.875000px;}
.ydd{bottom:479.595000px;}
.y83{bottom:481.035000px;}
.y29{bottom:486.075000px;}
.y107{bottom:488.415000px;}
.y62{bottom:491.295000px;}
.y138{bottom:495.795000px;}
.yb9{bottom:497.595000px;}
.ydc{bottom:499.395000px;}
.y28{bottom:506.055000px;}
.y106{bottom:508.215000px;}
.y61{bottom:511.095000px;}
.y137{bottom:515.595000px;}
.yb8{bottom:517.395000px;}
.y27{bottom:525.855000px;}
.y105{bottom:528.015000px;}
.ydb{bottom:528.375000px;}
.y60{bottom:530.895000px;}
.y136{bottom:535.395000px;}
.yb7{bottom:537.375000px;}
.y26{bottom:545.655000px;}
.y104{bottom:547.995000px;}
.yda{bottom:548.175000px;}
.y5f{bottom:550.875000px;}
.y135{bottom:555.375000px;}
.yb6{bottom:557.175000px;}
.y25{bottom:565.455000px;}
.y103{bottom:567.795000px;}
.yd9{bottom:567.975000px;}
.y95{bottom:568.620000px;}
.y5e{bottom:570.675000px;}
.y77{bottom:574.455000px;}
.y7e{bottom:574.815000px;}
.y134{bottom:575.175000px;}
.yb5{bottom:576.975000px;}
.y24{bottom:585.255000px;}
.y102{bottom:587.595000px;}
.yd8{bottom:587.775000px;}
.y5d{bottom:590.475000px;}
.y133{bottom:594.975000px;}
.yb4{bottom:596.775000px;}
.y23{bottom:605.235000px;}
.y101{bottom:607.395000px;}
.yd7{bottom:607.575000px;}
.y5c{bottom:610.275000px;}
.y132{bottom:614.775000px;}
.yb3{bottom:616.575000px;}
.y22{bottom:627.195000px;}
.yd6{bottom:627.555000px;}
.y5b{bottom:630.075000px;}
.y131{bottom:634.575000px;}
.yb2{bottom:636.555000px;}
.y21{bottom:646.995000px;}
.y100{bottom:647.175000px;}
.yd5{bottom:647.355000px;}
.y5a{bottom:650.085000px;}
.y130{bottom:654.585000px;}
.yb1{bottom:656.385000px;}
.y20{bottom:667.005000px;}
.yd4{bottom:667.185000px;}
.y59{bottom:669.885000px;}
.y12f{bottom:674.385000px;}
.yb0{bottom:676.185000px;}
.y1f{bottom:686.805000px;}
.yd3{bottom:686.985000px;}
.y58{bottom:689.685000px;}
.y12e{bottom:694.185000px;}
.yaf{bottom:695.985000px;}
.y1e{bottom:706.605000px;}
.yd2{bottom:706.785000px;}
.y57{bottom:709.485000px;}
.y12d{bottom:713.985000px;}
.yae{bottom:715.785000px;}
.y1d{bottom:726.405000px;}
.yd1{bottom:726.765000px;}
.y56{bottom:729.285000px;}
.y93{bottom:731.805000px;}
.y12c{bottom:733.785000px;}
.yad{bottom:735.765000px;}
.y1c{bottom:746.205000px;}
.yff{bottom:746.385000px;}
.y55{bottom:749.265000px;}
.y12b{bottom:753.765000px;}
.yac{bottom:755.565000px;}
.y1b{bottom:766.185000px;}
.y54{bottom:769.065000px;}
.y12a{bottom:773.565000px;}
.yab{bottom:775.365000px;}
.y1a{bottom:785.985000px;}
.y53{bottom:788.865000px;}
.y129{bottom:793.365000px;}
.yaa{bottom:795.165000px;}
.y19{bottom:805.785000px;}
.y52{bottom:808.665000px;}
.y128{bottom:813.165000px;}
.ya9{bottom:814.965000px;}
.y18{bottom:825.585000px;}
.y51{bottom:828.465000px;}
.y127{bottom:832.965000px;}
.ya8{bottom:834.945000px;}
.y17{bottom:845.385000px;}
.yfe{bottom:845.565000px;}
.y50{bottom:848.445000px;}
.y126{bottom:852.945000px;}
.ya7{bottom:854.745000px;}
.y4f{bottom:863.205000px;}
.y16{bottom:865.365000px;}
.y125{bottom:872.745000px;}
.ya6{bottom:874.545000px;}
.y15{bottom:885.165000px;}
.y124{bottom:892.545000px;}
.yd0{bottom:894.345000px;}
.ya5{bottom:903.390000px;}
.y4b{bottom:903.570000px;}
.y14{bottom:905.010000px;}
.y123{bottom:912.390000px;}
.ycf{bottom:914.190000px;}
.ya4{bottom:923.190000px;}
.yfd{bottom:924.810000px;}
.y13{bottom:927.150000px;}
.y122{bottom:932.190000px;}
.yce{bottom:934.170000px;}
.ya3{bottom:943.170000px;}
.yfc{bottom:944.790000px;}
.y12{bottom:946.950000px;}
.y121{bottom:952.170000px;}
.ycd{bottom:953.970000px;}
.ya2{bottom:962.970000px;}
.yfb{bottom:966.030000px;}
.y11{bottom:967.290000px;}
.y120{bottom:971.970000px;}
.ycc{bottom:973.770000px;}
.ya1{bottom:982.770000px;}
.y4a{bottom:983.670000px;}
.yfa{bottom:985.830000px;}
.y10{bottom:988.530000px;}
.y11f{bottom:991.770000px;}
.ycb{bottom:993.570000px;}
.ya0{bottom:1002.570000px;}
.y46{bottom:1004.370000px;}
.yf9{bottom:1005.630000px;}
.y11e{bottom:1011.570000px;}
.yf{bottom:1012.110000px;}
.y9f{bottom:1022.370000px;}
.yf8{bottom:1025.610000px;}
.y11d{bottom:1031.370000px;}
.y9e{bottom:1042.350000px;}
.ye{bottom:1043.790000px;}
.yf7{bottom:1046.850000px;}
.y11c{bottom:1051.350000px;}
.y9d{bottom:1062.150000px;}
.y44{bottom:1064.490000px;}
.yf6{bottom:1066.650000px;}
.yc{bottom:1069.530000px;}
.y11b{bottom:1071.150000px;}
.y9c{bottom:1081.950000px;}
.y1{bottom:1087.350000px;}
.yf5{bottom:1088.070000px;}
.y43{bottom:1090.950000px;}
.yf4{bottom:1107.870000px;}
.y42{bottom:1110.750000px;}
.yf3{bottom:1129.110000px;}
.y41{bottom:1130.550000px;}
.yf2{bottom:1148.940000px;}
.y40{bottom:1150.560000px;}
.yf1{bottom:1168.920000px;}
.y3f{bottom:1170.360000px;}
.y3e{bottom:1196.280000px;}
.h1a{height:14.400000px;}
.h1f{height:17.280000px;}
.h20{height:17.316000px;}
.hf{height:19.800000px;}
.hd{height:19.980000px;}
.hc{height:38.100586px;}
.h13{height:39.471680px;}
.h11{height:39.636000px;}
.h15{height:39.840820px;}
.h1b{height:40.605469px;}
.hb{height:42.164648px;}
.h9{height:43.215117px;}
.h22{height:43.681992px;}
.ha{height:46.736719px;}
.h16{height:48.240000px;}
.h6{height:48.418594px;}
.h17{height:48.420000px;}
.h21{height:49.255313px;}
.h7{height:51.706406px;}
.h3{height:52.590937px;}
.h5{height:55.987031px;}
.he{height:59.400000px;}
.h8{height:67.565039px;}
.h19{height:71.676000px;}
.h10{height:79.380000px;}
.h4{height:90.319219px;}
.h1e{height:111.780000px;}
.h18{height:120.060000px;}
.h2{height:121.536000px;}
.h14{height:132.336000px;}
.h12{height:133.056000px;}
.h1c{height:144.900000px;}
.h1d{height:308.700000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:14.400000px;}
.we{width:14.580000px;}
.w2{width:116.676000px;}
.wf{width:147.060000px;}
.w4{width:167.610000px;}
.wa{width:219.810000px;}
.w8{width:219.990000px;}
.wb{width:220.035000px;}
.w10{width:222.375000px;}
.w9{width:291.855000px;}
.w11{width:329.430000px;}
.w7{width:330.375000px;}
.w6{width:334.650000px;}
.w3{width:500.145000px;}
.wc{width:507.345000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.740000px;}
.x12{left:10.800000px;}
.x4{left:13.500000px;}
.xb{left:19.260000px;}
.x1a{left:28.152000px;}
.x13{left:32.034000px;}
.x6{left:36.720000px;}
.x3{left:47.016000px;}
.x1{left:54.000000px;}
.x1e{left:61.919987px;}
.x19{left:74.340000px;}
.x9{left:76.140000px;}
.x1f{left:80.999987px;}
.x18{left:87.294000px;}
.xd{left:88.955987px;}
.x1b{left:96.156000px;}
.x2{left:97.230000px;}
.x20{left:108.035987px;}
.x8{left:120.285000px;}
.x11{left:121.536000px;}
.x15{left:123.156000px;}
.xc{left:148.170000px;}
.x5{left:170.670000px;}
.x7{left:201.645000px;}
.x1c{left:244.290000px;}
.x14{left:414.435000px;}
.x17{left:415.875000px;}
.x16{left:420.015000px;}
.xf{left:425.055000px;}
.x10{left:446.504987px;}
.x1d{left:467.745000px;}
.xa{left:670.830000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:-0.125333pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.058667pt;}
.ls13{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.170667pt;}
.ls2{letter-spacing:0.176000pt;}
.lse{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.207360pt;}
.ls6{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.456533pt;}
.ls12{letter-spacing:0.592000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.800000pt;}
.ls14{letter-spacing:0.960000pt;}
.ls9{letter-spacing:0.999040pt;}
.ls19{letter-spacing:14.672640pt;}
.ls16{letter-spacing:40.912640pt;}
.ls11{letter-spacing:44.559360pt;}
.wsa{word-spacing:-34.385920pt;}
.ws0{word-spacing:-15.838720pt;}
.ws1{word-spacing:-15.713387pt;}
.ws2{word-spacing:-14.661120pt;}
.ws4{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.536000pt;}
.ws9{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.344000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.248000pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-1273.367040pt;}
._4{margin-left:-966.671360pt;}
._6{margin-left:-543.088640pt;}
._7{margin-left:-475.202773pt;}
._3{margin-left:-415.623680pt;}
._1{margin-left:-373.296640pt;}
._c{margin-left:-3.505920pt;}
._b{margin-left:-2.177920pt;}
._0{margin-left:-1.059840pt;}
._2{width:1.415680pt;}
._d{width:2.420053pt;}
._9{width:3.521280pt;}
._8{width:4.766720pt;}
._a{width:6.017920pt;}
._e{width:7.100587pt;}
._13{width:8.608000pt;}
._f{width:9.686400pt;}
._10{width:10.926720pt;}
._18{width:12.289280pt;}
._16{width:14.307840pt;}
._15{width:15.564160pt;}
._12{width:16.640000pt;}
._11{width:17.566720pt;}
._1d{width:19.301120pt;}
._1e{width:22.021333pt;}
._21{width:26.791040pt;}
._14{width:27.728640pt;}
._20{width:29.128107pt;}
._1c{width:49.667200pt;}
._1b{width:50.782720pt;}
._17{width:53.332480pt;}
._19{width:58.538240pt;}
._1a{width:59.522133pt;}
._1f{width:60.767573pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:101.120000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:1.600000pt;}
.yc0{bottom:2.880000pt;}
.yc7{bottom:2.906667pt;}
.y49{bottom:5.120000pt;}
.y45{bottom:5.280000pt;}
.yb{bottom:5.440000pt;}
.ya{bottom:7.040000pt;}
.y99{bottom:9.506667pt;}
.y85{bottom:10.080000pt;}
.y88{bottom:10.240000pt;}
.y92{bottom:13.760000pt;}
.y7d{bottom:20.320000pt;}
.y48{bottom:22.720000pt;}
.y4e{bottom:22.880000pt;}
.y6{bottom:23.040000pt;}
.y84{bottom:24.000000pt;}
.y87{bottom:24.160000pt;}
.y9b{bottom:24.893333pt;}
.y82{bottom:26.880000pt;}
.y96{bottom:27.013333pt;}
.y91{bottom:27.546667pt;}
.y8e{bottom:28.320000pt;}
.y9{bottom:28.640000pt;}
.y7c{bottom:34.240000pt;}
.y47{bottom:40.320000pt;}
.y4d{bottom:40.480000pt;}
.y5{bottom:40.640000pt;}
.y90{bottom:41.466667pt;}
.y8d{bottom:42.240000pt;}
.y7b{bottom:48.000000pt;}
.y8{bottom:52.506667pt;}
.yd{bottom:53.760000pt;}
.y81{bottom:54.560000pt;}
.y8c{bottom:56.000000pt;}
.y4c{bottom:58.080000pt;}
.y4{bottom:58.266667pt;}
.y7a{bottom:61.760000pt;}
.y80{bottom:68.346667pt;}
.y8b{bottom:69.760000pt;}
.y79{bottom:75.546667pt;}
.y3{bottom:75.866667pt;}
.yca{bottom:76.160000pt;}
.y3d{bottom:79.360000pt;}
.y7f{bottom:82.106667pt;}
.y7{bottom:82.906667pt;}
.y76{bottom:84.000000pt;}
.y78{bottom:89.466667pt;}
.yf0{bottom:89.920000pt;}
.y2{bottom:93.466667pt;}
.yc9{bottom:93.760000pt;}
.y3c{bottom:97.120000pt;}
.y11a{bottom:99.040000pt;}
.y75{bottom:101.600000pt;}
.yef{bottom:107.520000pt;}
.y98{bottom:108.093333pt;}
.yc8{bottom:111.520000pt;}
.y3b{bottom:114.720000pt;}
.y119{bottom:116.640000pt;}
.y9a{bottom:118.720000pt;}
.y74{bottom:119.200000pt;}
.y8f{bottom:120.800000pt;}
.yee{bottom:125.280000pt;}
.y3a{bottom:132.320000pt;}
.yc6{bottom:132.960000pt;}
.y118{bottom:134.400000pt;}
.y73{bottom:136.986667pt;}
.yed{bottom:142.906667pt;}
.y39{bottom:149.946667pt;}
.y117{bottom:152.026667pt;}
.y72{bottom:154.586667pt;}
.yec{bottom:161.786667pt;}
.yc5{bottom:165.306667pt;}
.y38{bottom:167.546667pt;}
.y116{bottom:169.626667pt;}
.y71{bottom:172.186667pt;}
.yeb{bottom:179.386667pt;}
.y37{bottom:185.306667pt;}
.y115{bottom:187.226667pt;}
.y70{bottom:189.786667pt;}
.y146{bottom:193.786667pt;}
.yea{bottom:197.146667pt;}
.yc4{bottom:197.626667pt;}
.y36{bottom:202.906667pt;}
.y114{bottom:204.826667pt;}
.y6f{bottom:207.386667pt;}
.y145{bottom:211.386667pt;}
.ye9{bottom:214.746667pt;}
.y35{bottom:220.506667pt;}
.y113{bottom:222.586667pt;}
.y97{bottom:224.160000pt;}
.y6e{bottom:225.146667pt;}
.y8a{bottom:226.746667pt;}
.y144{bottom:229.146667pt;}
.yc3{bottom:229.946667pt;}
.ye8{bottom:232.346667pt;}
.y34{bottom:238.106667pt;}
.y112{bottom:240.186667pt;}
.y6d{bottom:242.746667pt;}
.y143{bottom:246.746667pt;}
.ye7{bottom:249.946667pt;}
.y33{bottom:255.706667pt;}
.y111{bottom:257.786667pt;}
.y6c{bottom:260.346667pt;}
.yc2{bottom:262.266667pt;}
.y142{bottom:264.346667pt;}
.ye6{bottom:267.546667pt;}
.y89{bottom:270.266667pt;}
.y32{bottom:273.466667pt;}
.y110{bottom:275.386667pt;}
.y6b{bottom:277.946667pt;}
.y141{bottom:281.946667pt;}
.ye5{bottom:285.306667pt;}
.y31{bottom:291.066667pt;}
.y10f{bottom:292.986667pt;}
.yc1{bottom:294.586667pt;}
.y6a{bottom:295.546667pt;}
.y140{bottom:299.546667pt;}
.ye4{bottom:302.906667pt;}
.y30{bottom:308.666667pt;}
.y10e{bottom:310.746667pt;}
.y69{bottom:313.306667pt;}
.y13f{bottom:317.306667pt;}
.ye3{bottom:320.506667pt;}
.y2f{bottom:326.266667pt;}
.ybf{bottom:326.906667pt;}
.y10d{bottom:328.346667pt;}
.y68{bottom:330.906667pt;}
.y13e{bottom:334.906667pt;}
.ye2{bottom:338.106667pt;}
.y2e{bottom:343.866667pt;}
.y10c{bottom:345.946667pt;}
.y67{bottom:348.506667pt;}
.y13d{bottom:352.506667pt;}
.ye1{bottom:355.706667pt;}
.ybe{bottom:356.546667pt;}
.y2d{bottom:361.666667pt;}
.y10b{bottom:363.586667pt;}
.y66{bottom:366.146667pt;}
.y13c{bottom:370.146667pt;}
.ybd{bottom:371.906667pt;}
.ye0{bottom:373.506667pt;}
.y2c{bottom:379.266667pt;}
.y10a{bottom:381.186667pt;}
.y65{bottom:383.746667pt;}
.y13b{bottom:387.746667pt;}
.ybc{bottom:389.506667pt;}
.ydf{bottom:391.106667pt;}
.y2b{bottom:396.866667pt;}
.y109{bottom:398.946667pt;}
.y64{bottom:401.506667pt;}
.y13a{bottom:405.506667pt;}
.ybb{bottom:407.106667pt;}
.yde{bottom:408.706667pt;}
.y2a{bottom:414.466667pt;}
.y108{bottom:416.546667pt;}
.y63{bottom:419.106667pt;}
.y139{bottom:423.106667pt;}
.yba{bottom:424.706667pt;}
.y86{bottom:425.666667pt;}
.ydd{bottom:426.306667pt;}
.y83{bottom:427.586667pt;}
.y29{bottom:432.066667pt;}
.y107{bottom:434.146667pt;}
.y62{bottom:436.706667pt;}
.y138{bottom:440.706667pt;}
.yb9{bottom:442.306667pt;}
.ydc{bottom:443.906667pt;}
.y28{bottom:449.826667pt;}
.y106{bottom:451.746667pt;}
.y61{bottom:454.306667pt;}
.y137{bottom:458.306667pt;}
.yb8{bottom:459.906667pt;}
.y27{bottom:467.426667pt;}
.y105{bottom:469.346667pt;}
.ydb{bottom:469.666667pt;}
.y60{bottom:471.906667pt;}
.y136{bottom:475.906667pt;}
.yb7{bottom:477.666667pt;}
.y26{bottom:485.026667pt;}
.y104{bottom:487.106667pt;}
.yda{bottom:487.266667pt;}
.y5f{bottom:489.666667pt;}
.y135{bottom:493.666667pt;}
.yb6{bottom:495.266667pt;}
.y25{bottom:502.626667pt;}
.y103{bottom:504.706667pt;}
.yd9{bottom:504.866667pt;}
.y95{bottom:505.440000pt;}
.y5e{bottom:507.266667pt;}
.y77{bottom:510.626667pt;}
.y7e{bottom:510.946667pt;}
.y134{bottom:511.266667pt;}
.yb5{bottom:512.866667pt;}
.y24{bottom:520.226667pt;}
.y102{bottom:522.306667pt;}
.yd8{bottom:522.466667pt;}
.y5d{bottom:524.866667pt;}
.y133{bottom:528.866667pt;}
.yb4{bottom:530.466667pt;}
.y23{bottom:537.986667pt;}
.y101{bottom:539.906667pt;}
.yd7{bottom:540.066667pt;}
.y5c{bottom:542.466667pt;}
.y132{bottom:546.466667pt;}
.yb3{bottom:548.066667pt;}
.y22{bottom:557.506667pt;}
.yd6{bottom:557.826667pt;}
.y5b{bottom:560.066667pt;}
.y131{bottom:564.066667pt;}
.yb2{bottom:565.826667pt;}
.y21{bottom:575.106667pt;}
.y100{bottom:575.266667pt;}
.yd5{bottom:575.426667pt;}
.y5a{bottom:577.853333pt;}
.y130{bottom:581.853333pt;}
.yb1{bottom:583.453333pt;}
.y20{bottom:592.893333pt;}
.yd4{bottom:593.053333pt;}
.y59{bottom:595.453333pt;}
.y12f{bottom:599.453333pt;}
.yb0{bottom:601.053333pt;}
.y1f{bottom:610.493333pt;}
.yd3{bottom:610.653333pt;}
.y58{bottom:613.053333pt;}
.y12e{bottom:617.053333pt;}
.yaf{bottom:618.653333pt;}
.y1e{bottom:628.093333pt;}
.yd2{bottom:628.253333pt;}
.y57{bottom:630.653333pt;}
.y12d{bottom:634.653333pt;}
.yae{bottom:636.253333pt;}
.y1d{bottom:645.693333pt;}
.yd1{bottom:646.013333pt;}
.y56{bottom:648.253333pt;}
.y93{bottom:650.493333pt;}
.y12c{bottom:652.253333pt;}
.yad{bottom:654.013333pt;}
.y1c{bottom:663.293333pt;}
.yff{bottom:663.453333pt;}
.y55{bottom:666.013333pt;}
.y12b{bottom:670.013333pt;}
.yac{bottom:671.613333pt;}
.y1b{bottom:681.053333pt;}
.y54{bottom:683.613333pt;}
.y12a{bottom:687.613333pt;}
.yab{bottom:689.213333pt;}
.y1a{bottom:698.653333pt;}
.y53{bottom:701.213333pt;}
.y129{bottom:705.213333pt;}
.yaa{bottom:706.813333pt;}
.y19{bottom:716.253333pt;}
.y52{bottom:718.813333pt;}
.y128{bottom:722.813333pt;}
.ya9{bottom:724.413333pt;}
.y18{bottom:733.853333pt;}
.y51{bottom:736.413333pt;}
.y127{bottom:740.413333pt;}
.ya8{bottom:742.173333pt;}
.y17{bottom:751.453333pt;}
.yfe{bottom:751.613333pt;}
.y50{bottom:754.173333pt;}
.y126{bottom:758.173333pt;}
.ya7{bottom:759.773333pt;}
.y4f{bottom:767.293333pt;}
.y16{bottom:769.213333pt;}
.y125{bottom:775.773333pt;}
.ya6{bottom:777.373333pt;}
.y15{bottom:786.813333pt;}
.y124{bottom:793.373333pt;}
.yd0{bottom:794.973333pt;}
.ya5{bottom:803.013333pt;}
.y4b{bottom:803.173333pt;}
.y14{bottom:804.453333pt;}
.y123{bottom:811.013333pt;}
.ycf{bottom:812.613333pt;}
.ya4{bottom:820.613333pt;}
.yfd{bottom:822.053333pt;}
.y13{bottom:824.133333pt;}
.y122{bottom:828.613333pt;}
.yce{bottom:830.373333pt;}
.ya3{bottom:838.373333pt;}
.yfc{bottom:839.813333pt;}
.y12{bottom:841.733333pt;}
.y121{bottom:846.373333pt;}
.ycd{bottom:847.973333pt;}
.ya2{bottom:855.973333pt;}
.yfb{bottom:858.693333pt;}
.y11{bottom:859.813333pt;}
.y120{bottom:863.973333pt;}
.ycc{bottom:865.573333pt;}
.ya1{bottom:873.573333pt;}
.y4a{bottom:874.373333pt;}
.yfa{bottom:876.293333pt;}
.y10{bottom:878.693333pt;}
.y11f{bottom:881.573333pt;}
.ycb{bottom:883.173333pt;}
.ya0{bottom:891.173333pt;}
.y46{bottom:892.773333pt;}
.yf9{bottom:893.893333pt;}
.y11e{bottom:899.173333pt;}
.yf{bottom:899.653333pt;}
.y9f{bottom:908.773333pt;}
.yf8{bottom:911.653333pt;}
.y11d{bottom:916.773333pt;}
.y9e{bottom:926.533333pt;}
.ye{bottom:927.813333pt;}
.yf7{bottom:930.533333pt;}
.y11c{bottom:934.533333pt;}
.y9d{bottom:944.133333pt;}
.y44{bottom:946.213333pt;}
.yf6{bottom:948.133333pt;}
.yc{bottom:950.693333pt;}
.y11b{bottom:952.133333pt;}
.y9c{bottom:961.733333pt;}
.y1{bottom:966.533333pt;}
.yf5{bottom:967.173333pt;}
.y43{bottom:969.733333pt;}
.yf4{bottom:984.773333pt;}
.y42{bottom:987.333333pt;}
.yf3{bottom:1003.653333pt;}
.y41{bottom:1004.933333pt;}
.yf2{bottom:1021.280000pt;}
.y40{bottom:1022.720000pt;}
.yf1{bottom:1039.040000pt;}
.y3f{bottom:1040.320000pt;}
.y3e{bottom:1063.360000pt;}
.h1a{height:12.800000pt;}
.h1f{height:15.360000pt;}
.h20{height:15.392000pt;}
.hf{height:17.600000pt;}
.hd{height:17.760000pt;}
.hc{height:33.867188pt;}
.h13{height:35.085938pt;}
.h11{height:35.232000pt;}
.h15{height:35.414062pt;}
.h1b{height:36.093750pt;}
.hb{height:37.479688pt;}
.h9{height:38.413438pt;}
.h22{height:38.828437pt;}
.ha{height:41.543750pt;}
.h16{height:42.880000pt;}
.h6{height:43.038750pt;}
.h17{height:43.040000pt;}
.h21{height:43.782500pt;}
.h7{height:45.961250pt;}
.h3{height:46.747500pt;}
.h5{height:49.766250pt;}
.he{height:52.800000pt;}
.h8{height:60.057813pt;}
.h19{height:63.712000pt;}
.h10{height:70.560000pt;}
.h4{height:80.283750pt;}
.h1e{height:99.360000pt;}
.h18{height:106.720000pt;}
.h2{height:108.032000pt;}
.h14{height:117.632000pt;}
.h12{height:118.272000pt;}
.h1c{height:128.800000pt;}
.h1d{height:274.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:12.800000pt;}
.we{width:12.960000pt;}
.w2{width:103.712000pt;}
.wf{width:130.720000pt;}
.w4{width:148.986667pt;}
.wa{width:195.386667pt;}
.w8{width:195.546667pt;}
.wb{width:195.586667pt;}
.w10{width:197.666667pt;}
.w9{width:259.426667pt;}
.w11{width:292.826667pt;}
.w7{width:293.666667pt;}
.w6{width:297.466667pt;}
.w3{width:444.573333pt;}
.wc{width:450.973333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.880000pt;}
.x12{left:9.600000pt;}
.x4{left:12.000000pt;}
.xb{left:17.120000pt;}
.x1a{left:25.024000pt;}
.x13{left:28.474667pt;}
.x6{left:32.640000pt;}
.x3{left:41.792000pt;}
.x1{left:48.000000pt;}
.x1e{left:55.039988pt;}
.x19{left:66.080000pt;}
.x9{left:67.680000pt;}
.x1f{left:71.999988pt;}
.x18{left:77.594667pt;}
.xd{left:79.071988pt;}
.x1b{left:85.472000pt;}
.x2{left:86.426667pt;}
.x20{left:96.031988pt;}
.x8{left:106.920000pt;}
.x11{left:108.032000pt;}
.x15{left:109.472000pt;}
.xc{left:131.706667pt;}
.x5{left:151.706667pt;}
.x7{left:179.240000pt;}
.x1c{left:217.146667pt;}
.x14{left:368.386667pt;}
.x17{left:369.666667pt;}
.x16{left:373.346667pt;}
.xf{left:377.826667pt;}
.x10{left:396.893322pt;}
.x1d{left:415.773333pt;}
.xa{left:596.293333pt;}
}




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