
    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_188af5b3b0f63f06bea3ffc9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196289;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_540dfa071551397e416ca041.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_1735348b41bab8cd529cda11.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_54e4b7581c22cf7a7ae81dff.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.073242;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_bcf8f30d65866fe36cbc96ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_ca493e038e28ab67dbfcbfb4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050293;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d7e8a25f23933a28a6f4dce6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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_c03facef8db54fff597543dd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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_f3d2b9827415df2d17709098.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.946777;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.504000px;}
.ls12{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.033840px;}
.lsd{letter-spacing:0.070560px;}
.ls10{letter-spacing:0.153600px;}
.lsf{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.900000px;}
.ls7{letter-spacing:33.960000px;}
.lsc{letter-spacing:38.106720px;}
.lse{letter-spacing:43.842720px;}
.ls9{letter-spacing:51.984000px;}
.ls8{letter-spacing:64.002720px;}
.ls0{letter-spacing:194.376000px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws9{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.432000px;}
.ws2{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.712000px;}
.ws1{word-spacing:-15.768000px;}
.ws6{word-spacing:-15.093600px;}
.ws5{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.447440px;}
.ws3{word-spacing:0.000000px;}
._d{margin-left:-4.248000px;}
._4{margin-left:-3.204000px;}
._1d{margin-left:-2.203920px;}
._0{margin-left:-1.192320px;}
._1{width:1.015920px;}
._2{width:2.216880px;}
._14{width:3.600000px;}
._15{width:4.968000px;}
._a{width:5.976000px;}
._e{width:7.416000px;}
._f{width:8.428080px;}
._10{width:10.063920px;}
._8{width:11.808000px;}
._9{width:13.320000px;}
._16{width:14.872320px;}
._12{width:16.056000px;}
._11{width:19.452000px;}
._1a{width:20.452320px;}
._17{width:22.576320px;}
._13{width:23.760000px;}
._7{width:25.704000px;}
._6{width:26.712000px;}
._b{width:29.376000px;}
._c{width:30.888000px;}
._19{width:32.175360px;}
._18{width:33.232320px;}
._1c{width:34.296960px;}
._1e{width:42.840000px;}
._1f{width:43.992000px;}
._1b{width:53.400000px;}
._21{width:54.528000px;}
._26{width:62.568000px;}
._27{width:63.876000px;}
._24{width:66.456000px;}
._25{width:67.680000px;}
._23{width:137.304000px;}
._22{width:636.336000px;}
._20{width:961.632000px;}
._3{width:1420.012320px;}
._5{width:1859.352000px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:87.120000px;}
.y9{bottom:-12.060000px;}
.yb{bottom:-11.700000px;}
.ye{bottom:-10.440000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.680000px;}
.ya{bottom:5.040000px;}
.yd{bottom:6.300000px;}
.y12e{bottom:12.060000px;}
.y132{bottom:12.240000px;}
.y130{bottom:12.285000px;}
.y14{bottom:12.780000px;}
.y6{bottom:18.000000px;}
.y3{bottom:19.800000px;}
.yc{bottom:20.160000px;}
.y7{bottom:21.420000px;}
.y5{bottom:37.260000px;}
.y2{bottom:39.060000px;}
.y12{bottom:57.420000px;}
.y11{bottom:73.260000px;}
.y98{bottom:111.060000px;}
.y40{bottom:112.320000px;}
.y70{bottom:112.860000px;}
.y12c{bottom:116.460000px;}
.yf9{bottom:117.360000px;}
.y16b{bottom:118.260000px;}
.y116{bottom:125.460000px;}
.yb8{bottom:131.760000px;}
.y3f{bottom:133.020000px;}
.y6f{bottom:133.560000px;}
.y12b{bottom:137.160000px;}
.y16a{bottom:138.960000px;}
.y97{bottom:140.760000px;}
.y115{bottom:146.160000px;}
.yf8{bottom:147.060000px;}
.y3e{bottom:153.720000px;}
.y6e{bottom:154.260000px;}
.y12a{bottom:157.860000px;}
.y169{bottom:159.660000px;}
.yb7{bottom:161.460000px;}
.ydb{bottom:163.260000px;}
.y114{bottom:166.860000px;}
.yf7{bottom:167.760000px;}
.y96{bottom:170.460000px;}
.y6d{bottom:174.960000px;}
.y17e{bottom:175.860000px;}
.y129{bottom:178.560000px;}
.y168{bottom:180.360000px;}
.y3d{bottom:183.420000px;}
.y113{bottom:187.560000px;}
.yf6{bottom:188.460000px;}
.y95{bottom:191.160000px;}
.yda{bottom:192.960000px;}
.y6c{bottom:195.660000px;}
.y128{bottom:199.290000px;}
.y167{bottom:201.090000px;}
.y3c{bottom:204.150000px;}
.y17d{bottom:205.590000px;}
.yf5{bottom:209.190000px;}
.y94{bottom:211.890000px;}
.y146{bottom:216.390000px;}
.y112{bottom:217.290000px;}
.y127{bottom:219.990000px;}
.yb6{bottom:220.890000px;}
.y166{bottom:221.790000px;}
.yd9{bottom:222.690000px;}
.y3b{bottom:224.850000px;}
.y6b{bottom:225.390000px;}
.yf4{bottom:229.890000px;}
.y93{bottom:232.590000px;}
.y17c{bottom:235.290000px;}
.y111{bottom:237.990000px;}
.y18d{bottom:241.590000px;}
.y165{bottom:242.490000px;}
.yd8{bottom:243.390000px;}
.y3a{bottom:245.550000px;}
.y6a{bottom:246.090000px;}
.y126{bottom:249.690000px;}
.yb5{bottom:250.590000px;}
.y92{bottom:253.290000px;}
.y110{bottom:258.690000px;}
.y164{bottom:263.190000px;}
.yd7{bottom:264.090000px;}
.y17b{bottom:264.990000px;}
.y39{bottom:266.250000px;}
.y69{bottom:266.790000px;}
.yf3{bottom:271.290000px;}
.y91{bottom:273.990000px;}
.y145{bottom:275.790000px;}
.y125{bottom:279.390000px;}
.yb4{bottom:280.290000px;}
.y38{bottom:286.950000px;}
.y68{bottom:287.490000px;}
.y10f{bottom:288.390000px;}
.y163{bottom:292.890000px;}
.yd6{bottom:293.790000px;}
.y17a{bottom:294.690000px;}
.y144{bottom:296.490000px;}
.yf2{bottom:300.990000px;}
.y90{bottom:303.690000px;}
.y37{bottom:307.650000px;}
.y67{bottom:308.190000px;}
.y124{bottom:309.090000px;}
.yb3{bottom:309.990000px;}
.y134{bottom:313.770000px;}
.y143{bottom:317.190000px;}
.y10e{bottom:318.090000px;}
.yf1{bottom:321.690000px;}
.y162{bottom:322.590000px;}
.yd5{bottom:323.490000px;}
.y179{bottom:324.390000px;}
.y36{bottom:328.350000px;}
.y18c{bottom:330.690000px;}
.y8f{bottom:333.390000px;}
.y66{bottom:337.890000px;}
.y123{bottom:338.790000px;}
.yb2{bottom:339.690000px;}
.yf0{bottom:342.390000px;}
.y161{bottom:343.290000px;}
.y10d{bottom:347.790000px;}
.y35{bottom:349.050000px;}
.y18b{bottom:351.390000px;}
.yd4{bottom:353.190000px;}
.y133{bottom:353.550000px;}
.y178{bottom:354.090000px;}
.y65{bottom:358.590000px;}
.y8e{bottom:363.090000px;}
.y160{bottom:363.990000px;}
.y122{bottom:368.490000px;}
.yb1{bottom:369.390000px;}
.y10c{bottom:377.490000px;}
.y34{bottom:378.750000px;}
.y64{bottom:379.290000px;}
.y18a{bottom:381.090000px;}
.yd3{bottom:382.890000px;}
.yef{bottom:383.790000px;}
.y15f{bottom:384.690000px;}
.y8d{bottom:392.790000px;}
.y131{bottom:393.330000px;}
.y121{bottom:398.190000px;}
.yb0{bottom:399.090000px;}
.y63{bottom:399.990000px;}
.y189{bottom:401.790000px;}
.y177{bottom:404.490000px;}
.y15e{bottom:405.390000px;}
.y10b{bottom:407.190000px;}
.y33{bottom:408.450000px;}
.yd2{bottom:412.590000px;}
.yee{bottom:413.490000px;}
.y62{bottom:420.690000px;}
.y8c{bottom:422.490000px;}
.y176{bottom:425.190000px;}
.y15d{bottom:426.090000px;}
.y10a{bottom:427.890000px;}
.yaf{bottom:428.790000px;}
.y12f{bottom:433.110000px;}
.yd1{bottom:433.290000px;}
.y32{bottom:438.195000px;}
.y61{bottom:441.435000px;}
.y8b{bottom:443.235000px;}
.y142{bottom:450.435000px;}
.y175{bottom:454.935000px;}
.y15c{bottom:455.835000px;}
.y109{bottom:457.635000px;}
.yae{bottom:458.535000px;}
.y60{bottom:462.135000px;}
.yd0{bottom:463.035000px;}
.y31{bottom:467.895000px;}
.y141{bottom:471.135000px;}
.y8a{bottom:472.935000px;}
.y12d{bottom:473.655000px;}
.yad{bottom:479.235000px;}
.y5f{bottom:482.835000px;}
.ycf{bottom:483.735000px;}
.y174{bottom:484.635000px;}
.y15b{bottom:485.535000px;}
.y108{bottom:487.335000px;}
.yed{bottom:493.635000px;}
.y30{bottom:497.595000px;}
.yac{bottom:499.935000px;}
.y140{bottom:500.835000px;}
.y89{bottom:502.635000px;}
.y173{bottom:505.335000px;}
.y15a{bottom:506.235000px;}
.y107{bottom:508.035000px;}
.y5e{bottom:512.535000px;}
.yce{bottom:513.435000px;}
.yec{bottom:514.335000px;}
.y2f{bottom:518.295000px;}
.yab{bottom:520.635000px;}
.y13f{bottom:521.535000px;}
.y120{bottom:526.035000px;}
.y159{bottom:526.935000px;}
.y88{bottom:532.335000px;}
.y5d{bottom:533.235000px;}
.yeb{bottom:535.035000px;}
.y106{bottom:537.735000px;}
.y2e{bottom:538.995000px;}
.y13e{bottom:542.235000px;}
.ycd{bottom:543.135000px;}
.y188{bottom:544.035000px;}
.y158{bottom:547.635000px;}
.yaa{bottom:550.335000px;}
.y87{bottom:553.035000px;}
.y5c{bottom:553.935000px;}
.yea{bottom:555.735000px;}
.y2d{bottom:559.695000px;}
.y13d{bottom:562.935000px;}
.ycc{bottom:563.835000px;}
.y172{bottom:564.735000px;}
.y105{bottom:567.435000px;}
.y157{bottom:568.335000px;}
.y86{bottom:573.735000px;}
.y5b{bottom:574.635000px;}
.y11f{bottom:576.435000px;}
.ya9{bottom:580.035000px;}
.y2c{bottom:580.395000px;}
.y13c{bottom:583.635000px;}
.ye9{bottom:585.435000px;}
.y104{bottom:588.135000px;}
.y156{bottom:589.035000px;}
.ycb{bottom:593.535000px;}
.y85{bottom:594.435000px;}
.y5a{bottom:595.335000px;}
.y11e{bottom:597.135000px;}
.ya8{bottom:600.735000px;}
.y2b{bottom:601.095000px;}
.y13b{bottom:604.335000px;}
.ye8{bottom:606.135000px;}
.y155{bottom:609.735000px;}
.y84{bottom:615.135000px;}
.y59{bottom:616.035000px;}
.y13{bottom:617.475000px;}
.y103{bottom:617.835000px;}
.ya7{bottom:621.435000px;}
.y2a{bottom:621.795000px;}
.yca{bottom:623.235000px;}
.y13a{bottom:625.035000px;}
.ye7{bottom:626.835000px;}
.y187{bottom:635.835000px;}
.y58{bottom:636.735000px;}
.y102{bottom:638.535000px;}
.y154{bottom:639.435000px;}
.ya6{bottom:642.135000px;}
.y29{bottom:642.495000px;}
.y83{bottom:644.835000px;}
.y139{bottom:645.735000px;}
.ye6{bottom:647.535000px;}
.yc9{bottom:652.935000px;}
.y11d{bottom:656.535000px;}
.y57{bottom:657.435000px;}
.y28{bottom:663.195000px;}
.y171{bottom:665.535000px;}
.y138{bottom:666.435000px;}
.y101{bottom:668.235000px;}
.y153{bottom:669.135000px;}
.ya5{bottom:671.835000px;}
.y82{bottom:674.565000px;}
.ye5{bottom:677.265000px;}
.yc8{bottom:682.665000px;}
.y27{bottom:683.925000px;}
.y186{bottom:686.265000px;}
.y56{bottom:687.165000px;}
.y100{bottom:688.965000px;}
.y152{bottom:689.865000px;}
.ya4{bottom:692.565000px;}
.y81{bottom:695.265000px;}
.y11c{bottom:697.965000px;}
.y26{bottom:704.625000px;}
.ye4{bottom:706.965000px;}
.y55{bottom:707.865000px;}
.y151{bottom:710.565000px;}
.yc7{bottom:712.365000px;}
.ya3{bottom:713.265000px;}
.y185{bottom:715.965000px;}
.yff{bottom:718.665000px;}
.y80{bottom:724.965000px;}
.y25{bottom:725.325000px;}
.ye3{bottom:727.665000px;}
.y54{bottom:728.565000px;}
.y150{bottom:731.265000px;}
.yc6{bottom:733.065000px;}
.ya2{bottom:733.965000px;}
.y184{bottom:736.665000px;}
.y7f{bottom:745.665000px;}
.y24{bottom:746.025000px;}
.ye2{bottom:748.365000px;}
.y53{bottom:749.265000px;}
.y14f{bottom:751.965000px;}
.ya1{bottom:754.665000px;}
.yc5{bottom:762.765000px;}
.y183{bottom:766.365000px;}
.y23{bottom:766.725000px;}
.ye1{bottom:769.065000px;}
.y52{bottom:769.965000px;}
.y14e{bottom:772.665000px;}
.y7e{bottom:775.365000px;}
.y11b{bottom:778.065000px;}
.ya0{bottom:784.365000px;}
.y182{bottom:787.065000px;}
.y22{bottom:787.425000px;}
.ye0{bottom:789.765000px;}
.y51{bottom:790.665000px;}
.yc4{bottom:792.465000px;}
.y14d{bottom:793.365000px;}
.y7d{bottom:796.065000px;}
.y11a{bottom:798.765000px;}
.y9f{bottom:805.065000px;}
.y21{bottom:808.125000px;}
.yfe{bottom:810.465000px;}
.y50{bottom:811.365000px;}
.y181{bottom:816.765000px;}
.ydf{bottom:819.465000px;}
.y137{bottom:820.365000px;}
.yc3{bottom:822.165000px;}
.y14c{bottom:823.065000px;}
.y7c{bottom:825.765000px;}
.y4f{bottom:832.065000px;}
.y180{bottom:837.465000px;}
.y20{bottom:837.825000px;}
.yfd{bottom:840.165000px;}
.y136{bottom:841.065000px;}
.y7b{bottom:846.465000px;}
.yde{bottom:849.165000px;}
.yc2{bottom:851.865000px;}
.y14b{bottom:852.765000px;}
.y170{bottom:855.465000px;}
.y4e{bottom:861.765000px;}
.y9e{bottom:867.165000px;}
.y1f{bottom:867.525000px;}
.ydd{bottom:869.865000px;}
.y14a{bottom:873.465000px;}
.y7a{bottom:876.165000px;}
.y119{bottom:878.865000px;}
.yc1{bottom:881.565000px;}
.y4d{bottom:882.465000px;}
.y16f{bottom:885.165000px;}
.ydc{bottom:890.565000px;}
.y149{bottom:894.165000px;}
.y79{bottom:896.865000px;}
.yfc{bottom:899.565000px;}
.y4c{bottom:903.165000px;}
.y1e{bottom:904.065000px;}
.y16e{bottom:905.865000px;}
.y118{bottom:908.565000px;}
.yc0{bottom:911.265000px;}
.y148{bottom:914.910000px;}
.y17f{bottom:917.610000px;}
.y4b{bottom:923.910000px;}
.y78{bottom:926.610000px;}
.yfb{bottom:929.310000px;}
.y1d{bottom:933.810000px;}
.y147{bottom:935.610000px;}
.y117{bottom:938.310000px;}
.ybf{bottom:941.010000px;}
.y4a{bottom:944.610000px;}
.y9d{bottom:947.310000px;}
.y77{bottom:956.310000px;}
.y1c{bottom:956.670000px;}
.yfa{bottom:959.010000px;}
.y49{bottom:965.310000px;}
.y9c{bottom:968.010000px;}
.ybe{bottom:970.710000px;}
.y76{bottom:977.010000px;}
.y48{bottom:986.010000px;}
.y1b{bottom:986.370000px;}
.y9b{bottom:988.710000px;}
.ybd{bottom:991.410000px;}
.y16d{bottom:995.010000px;}
.y75{bottom:997.710000px;}
.y47{bottom:1006.710000px;}
.y9a{bottom:1009.410000px;}
.y16c{bottom:1015.710000px;}
.y1a{bottom:1016.070000px;}
.y74{bottom:1018.410000px;}
.ybc{bottom:1021.110000px;}
.y135{bottom:1027.410000px;}
.y46{bottom:1036.410000px;}
.y19{bottom:1036.770000px;}
.y73{bottom:1039.110000px;}
.ybb{bottom:1050.810000px;}
.y45{bottom:1057.110000px;}
.y72{bottom:1059.810000px;}
.y18{bottom:1066.110000px;}
.y99{bottom:1068.810000px;}
.y44{bottom:1077.810000px;}
.yba{bottom:1080.510000px;}
.y17{bottom:1086.270000px;}
.y71{bottom:1089.510000px;}
.y43{bottom:1098.510000px;}
.y16{bottom:1109.850000px;}
.yb9{bottom:1110.210000px;}
.y42{bottom:1119.210000px;}
.y15{bottom:1135.590000px;}
.y41{bottom:1139.910000px;}
.y10{bottom:1193.220000px;}
.y1{bottom:1206.180000px;}
.y4{bottom:1207.980000px;}
.yf{bottom:1208.880000px;}
.h6{height:18.000000px;}
.h8{height:18.360000px;}
.h9{height:19.620000px;}
.hb{height:28.260000px;}
.h13{height:35.100000px;}
.h15{height:35.280000px;}
.h14{height:35.316000px;}
.h11{height:40.254961px;}
.ha{height:49.868086px;}
.h5{height:52.020000px;}
.h2{height:53.820000px;}
.hc{height:55.275469px;}
.h12{height:60.082031px;}
.h7{height:61.189805px;}
.hf{height:61.734375px;}
.h10{height:65.122031px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.hd{height:72.699258px;}
.he{height:73.722656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:71.136000px;}
.w3{width:75.060000px;}
.wb{width:82.800000px;}
.w8{width:84.990000px;}
.wc{width:93.420000px;}
.wa{width:118.080000px;}
.w6{width:170.100000px;}
.w5{width:175.890000px;}
.w9{width:177.330000px;}
.w4{width:184.530000px;}
.w2{width:383.115000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.xb{left:10.800000px;}
.x5{left:21.960000px;}
.x6{left:61.380000px;}
.x9{left:106.235987px;}
.xd{left:123.515987px;}
.xc{left:130.535987px;}
.x13{left:133.235987px;}
.x2{left:148.005000px;}
.x14{left:160.229987px;}
.x1{left:165.270000px;}
.x15{left:170.130000px;}
.x12{left:245.369987px;}
.x11{left:247.709987px;}
.xe{left:262.109987px;}
.x10{left:269.489987px;}
.x16{left:349.815000px;}
.x7{left:378.075000px;}
.xf{left:446.474987px;}
.x17{left:470.085000px;}
.x18{left:555.225000px;}
.x19{left:650.805000px;}
.x8{left:662.730000px;}
.x4{left:765.510000px;}
.xa{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.448000pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.030080pt;}
.lsd{letter-spacing:0.062720pt;}
.ls10{letter-spacing:0.136533pt;}
.lsf{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.800000pt;}
.ls7{letter-spacing:30.186667pt;}
.lsc{letter-spacing:33.872640pt;}
.lse{letter-spacing:38.971307pt;}
.ls9{letter-spacing:46.208000pt;}
.ls8{letter-spacing:56.891307pt;}
.ls0{letter-spacing:172.778667pt;}
.ws4{word-spacing:-53.120000pt;}
.ws9{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.384000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws1{word-spacing:-14.016000pt;}
.ws6{word-spacing:-13.416533pt;}
.ws5{word-spacing:-13.280000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws3{word-spacing:0.000000pt;}
._d{margin-left:-3.776000pt;}
._4{margin-left:-2.848000pt;}
._1d{margin-left:-1.959040pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.903040pt;}
._2{width:1.970560pt;}
._14{width:3.200000pt;}
._15{width:4.416000pt;}
._a{width:5.312000pt;}
._e{width:6.592000pt;}
._f{width:7.491627pt;}
._10{width:8.945707pt;}
._8{width:10.496000pt;}
._9{width:11.840000pt;}
._16{width:13.219840pt;}
._12{width:14.272000pt;}
._11{width:17.290667pt;}
._1a{width:18.179840pt;}
._17{width:20.067840pt;}
._13{width:21.120000pt;}
._7{width:22.848000pt;}
._6{width:23.744000pt;}
._b{width:26.112000pt;}
._c{width:27.456000pt;}
._19{width:28.600320pt;}
._18{width:29.539840pt;}
._1c{width:30.486187pt;}
._1e{width:38.080000pt;}
._1f{width:39.104000pt;}
._1b{width:47.466667pt;}
._21{width:48.469333pt;}
._26{width:55.616000pt;}
._27{width:56.778667pt;}
._24{width:59.072000pt;}
._25{width:60.160000pt;}
._23{width:122.048000pt;}
._22{width:565.632000pt;}
._20{width:854.784000pt;}
._3{width:1262.233173pt;}
._5{width:1652.757333pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:77.440000pt;}
.y9{bottom:-10.720000pt;}
.yb{bottom:-10.400000pt;}
.ye{bottom:-9.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.160000pt;}
.ya{bottom:4.480000pt;}
.yd{bottom:5.600000pt;}
.y12e{bottom:10.720000pt;}
.y132{bottom:10.880000pt;}
.y130{bottom:10.920000pt;}
.y14{bottom:11.360000pt;}
.y6{bottom:16.000000pt;}
.y3{bottom:17.600000pt;}
.yc{bottom:17.920000pt;}
.y7{bottom:19.040000pt;}
.y5{bottom:33.120000pt;}
.y2{bottom:34.720000pt;}
.y12{bottom:51.040000pt;}
.y11{bottom:65.120000pt;}
.y98{bottom:98.720000pt;}
.y40{bottom:99.840000pt;}
.y70{bottom:100.320000pt;}
.y12c{bottom:103.520000pt;}
.yf9{bottom:104.320000pt;}
.y16b{bottom:105.120000pt;}
.y116{bottom:111.520000pt;}
.yb8{bottom:117.120000pt;}
.y3f{bottom:118.240000pt;}
.y6f{bottom:118.720000pt;}
.y12b{bottom:121.920000pt;}
.y16a{bottom:123.520000pt;}
.y97{bottom:125.120000pt;}
.y115{bottom:129.920000pt;}
.yf8{bottom:130.720000pt;}
.y3e{bottom:136.640000pt;}
.y6e{bottom:137.120000pt;}
.y12a{bottom:140.320000pt;}
.y169{bottom:141.920000pt;}
.yb7{bottom:143.520000pt;}
.ydb{bottom:145.120000pt;}
.y114{bottom:148.320000pt;}
.yf7{bottom:149.120000pt;}
.y96{bottom:151.520000pt;}
.y6d{bottom:155.520000pt;}
.y17e{bottom:156.320000pt;}
.y129{bottom:158.720000pt;}
.y168{bottom:160.320000pt;}
.y3d{bottom:163.040000pt;}
.y113{bottom:166.720000pt;}
.yf6{bottom:167.520000pt;}
.y95{bottom:169.920000pt;}
.yda{bottom:171.520000pt;}
.y6c{bottom:173.920000pt;}
.y128{bottom:177.146667pt;}
.y167{bottom:178.746667pt;}
.y3c{bottom:181.466667pt;}
.y17d{bottom:182.746667pt;}
.yf5{bottom:185.946667pt;}
.y94{bottom:188.346667pt;}
.y146{bottom:192.346667pt;}
.y112{bottom:193.146667pt;}
.y127{bottom:195.546667pt;}
.yb6{bottom:196.346667pt;}
.y166{bottom:197.146667pt;}
.yd9{bottom:197.946667pt;}
.y3b{bottom:199.866667pt;}
.y6b{bottom:200.346667pt;}
.yf4{bottom:204.346667pt;}
.y93{bottom:206.746667pt;}
.y17c{bottom:209.146667pt;}
.y111{bottom:211.546667pt;}
.y18d{bottom:214.746667pt;}
.y165{bottom:215.546667pt;}
.yd8{bottom:216.346667pt;}
.y3a{bottom:218.266667pt;}
.y6a{bottom:218.746667pt;}
.y126{bottom:221.946667pt;}
.yb5{bottom:222.746667pt;}
.y92{bottom:225.146667pt;}
.y110{bottom:229.946667pt;}
.y164{bottom:233.946667pt;}
.yd7{bottom:234.746667pt;}
.y17b{bottom:235.546667pt;}
.y39{bottom:236.666667pt;}
.y69{bottom:237.146667pt;}
.yf3{bottom:241.146667pt;}
.y91{bottom:243.546667pt;}
.y145{bottom:245.146667pt;}
.y125{bottom:248.346667pt;}
.yb4{bottom:249.146667pt;}
.y38{bottom:255.066667pt;}
.y68{bottom:255.546667pt;}
.y10f{bottom:256.346667pt;}
.y163{bottom:260.346667pt;}
.yd6{bottom:261.146667pt;}
.y17a{bottom:261.946667pt;}
.y144{bottom:263.546667pt;}
.yf2{bottom:267.546667pt;}
.y90{bottom:269.946667pt;}
.y37{bottom:273.466667pt;}
.y67{bottom:273.946667pt;}
.y124{bottom:274.746667pt;}
.yb3{bottom:275.546667pt;}
.y134{bottom:278.906667pt;}
.y143{bottom:281.946667pt;}
.y10e{bottom:282.746667pt;}
.yf1{bottom:285.946667pt;}
.y162{bottom:286.746667pt;}
.yd5{bottom:287.546667pt;}
.y179{bottom:288.346667pt;}
.y36{bottom:291.866667pt;}
.y18c{bottom:293.946667pt;}
.y8f{bottom:296.346667pt;}
.y66{bottom:300.346667pt;}
.y123{bottom:301.146667pt;}
.yb2{bottom:301.946667pt;}
.yf0{bottom:304.346667pt;}
.y161{bottom:305.146667pt;}
.y10d{bottom:309.146667pt;}
.y35{bottom:310.266667pt;}
.y18b{bottom:312.346667pt;}
.yd4{bottom:313.946667pt;}
.y133{bottom:314.266667pt;}
.y178{bottom:314.746667pt;}
.y65{bottom:318.746667pt;}
.y8e{bottom:322.746667pt;}
.y160{bottom:323.546667pt;}
.y122{bottom:327.546667pt;}
.yb1{bottom:328.346667pt;}
.y10c{bottom:335.546667pt;}
.y34{bottom:336.666667pt;}
.y64{bottom:337.146667pt;}
.y18a{bottom:338.746667pt;}
.yd3{bottom:340.346667pt;}
.yef{bottom:341.146667pt;}
.y15f{bottom:341.946667pt;}
.y8d{bottom:349.146667pt;}
.y131{bottom:349.626667pt;}
.y121{bottom:353.946667pt;}
.yb0{bottom:354.746667pt;}
.y63{bottom:355.546667pt;}
.y189{bottom:357.146667pt;}
.y177{bottom:359.546667pt;}
.y15e{bottom:360.346667pt;}
.y10b{bottom:361.946667pt;}
.y33{bottom:363.066667pt;}
.yd2{bottom:366.746667pt;}
.yee{bottom:367.546667pt;}
.y62{bottom:373.946667pt;}
.y8c{bottom:375.546667pt;}
.y176{bottom:377.946667pt;}
.y15d{bottom:378.746667pt;}
.y10a{bottom:380.346667pt;}
.yaf{bottom:381.146667pt;}
.y12f{bottom:384.986667pt;}
.yd1{bottom:385.146667pt;}
.y32{bottom:389.506667pt;}
.y61{bottom:392.386667pt;}
.y8b{bottom:393.986667pt;}
.y142{bottom:400.386667pt;}
.y175{bottom:404.386667pt;}
.y15c{bottom:405.186667pt;}
.y109{bottom:406.786667pt;}
.yae{bottom:407.586667pt;}
.y60{bottom:410.786667pt;}
.yd0{bottom:411.586667pt;}
.y31{bottom:415.906667pt;}
.y141{bottom:418.786667pt;}
.y8a{bottom:420.386667pt;}
.y12d{bottom:421.026667pt;}
.yad{bottom:425.986667pt;}
.y5f{bottom:429.186667pt;}
.ycf{bottom:429.986667pt;}
.y174{bottom:430.786667pt;}
.y15b{bottom:431.586667pt;}
.y108{bottom:433.186667pt;}
.yed{bottom:438.786667pt;}
.y30{bottom:442.306667pt;}
.yac{bottom:444.386667pt;}
.y140{bottom:445.186667pt;}
.y89{bottom:446.786667pt;}
.y173{bottom:449.186667pt;}
.y15a{bottom:449.986667pt;}
.y107{bottom:451.586667pt;}
.y5e{bottom:455.586667pt;}
.yce{bottom:456.386667pt;}
.yec{bottom:457.186667pt;}
.y2f{bottom:460.706667pt;}
.yab{bottom:462.786667pt;}
.y13f{bottom:463.586667pt;}
.y120{bottom:467.586667pt;}
.y159{bottom:468.386667pt;}
.y88{bottom:473.186667pt;}
.y5d{bottom:473.986667pt;}
.yeb{bottom:475.586667pt;}
.y106{bottom:477.986667pt;}
.y2e{bottom:479.106667pt;}
.y13e{bottom:481.986667pt;}
.ycd{bottom:482.786667pt;}
.y188{bottom:483.586667pt;}
.y158{bottom:486.786667pt;}
.yaa{bottom:489.186667pt;}
.y87{bottom:491.586667pt;}
.y5c{bottom:492.386667pt;}
.yea{bottom:493.986667pt;}
.y2d{bottom:497.506667pt;}
.y13d{bottom:500.386667pt;}
.ycc{bottom:501.186667pt;}
.y172{bottom:501.986667pt;}
.y105{bottom:504.386667pt;}
.y157{bottom:505.186667pt;}
.y86{bottom:509.986667pt;}
.y5b{bottom:510.786667pt;}
.y11f{bottom:512.386667pt;}
.ya9{bottom:515.586667pt;}
.y2c{bottom:515.906667pt;}
.y13c{bottom:518.786667pt;}
.ye9{bottom:520.386667pt;}
.y104{bottom:522.786667pt;}
.y156{bottom:523.586667pt;}
.ycb{bottom:527.586667pt;}
.y85{bottom:528.386667pt;}
.y5a{bottom:529.186667pt;}
.y11e{bottom:530.786667pt;}
.ya8{bottom:533.986667pt;}
.y2b{bottom:534.306667pt;}
.y13b{bottom:537.186667pt;}
.ye8{bottom:538.786667pt;}
.y155{bottom:541.986667pt;}
.y84{bottom:546.786667pt;}
.y59{bottom:547.586667pt;}
.y13{bottom:548.866667pt;}
.y103{bottom:549.186667pt;}
.ya7{bottom:552.386667pt;}
.y2a{bottom:552.706667pt;}
.yca{bottom:553.986667pt;}
.y13a{bottom:555.586667pt;}
.ye7{bottom:557.186667pt;}
.y187{bottom:565.186667pt;}
.y58{bottom:565.986667pt;}
.y102{bottom:567.586667pt;}
.y154{bottom:568.386667pt;}
.ya6{bottom:570.786667pt;}
.y29{bottom:571.106667pt;}
.y83{bottom:573.186667pt;}
.y139{bottom:573.986667pt;}
.ye6{bottom:575.586667pt;}
.yc9{bottom:580.386667pt;}
.y11d{bottom:583.586667pt;}
.y57{bottom:584.386667pt;}
.y28{bottom:589.506667pt;}
.y171{bottom:591.586667pt;}
.y138{bottom:592.386667pt;}
.y101{bottom:593.986667pt;}
.y153{bottom:594.786667pt;}
.ya5{bottom:597.186667pt;}
.y82{bottom:599.613333pt;}
.ye5{bottom:602.013333pt;}
.yc8{bottom:606.813333pt;}
.y27{bottom:607.933333pt;}
.y186{bottom:610.013333pt;}
.y56{bottom:610.813333pt;}
.y100{bottom:612.413333pt;}
.y152{bottom:613.213333pt;}
.ya4{bottom:615.613333pt;}
.y81{bottom:618.013333pt;}
.y11c{bottom:620.413333pt;}
.y26{bottom:626.333333pt;}
.ye4{bottom:628.413333pt;}
.y55{bottom:629.213333pt;}
.y151{bottom:631.613333pt;}
.yc7{bottom:633.213333pt;}
.ya3{bottom:634.013333pt;}
.y185{bottom:636.413333pt;}
.yff{bottom:638.813333pt;}
.y80{bottom:644.413333pt;}
.y25{bottom:644.733333pt;}
.ye3{bottom:646.813333pt;}
.y54{bottom:647.613333pt;}
.y150{bottom:650.013333pt;}
.yc6{bottom:651.613333pt;}
.ya2{bottom:652.413333pt;}
.y184{bottom:654.813333pt;}
.y7f{bottom:662.813333pt;}
.y24{bottom:663.133333pt;}
.ye2{bottom:665.213333pt;}
.y53{bottom:666.013333pt;}
.y14f{bottom:668.413333pt;}
.ya1{bottom:670.813333pt;}
.yc5{bottom:678.013333pt;}
.y183{bottom:681.213333pt;}
.y23{bottom:681.533333pt;}
.ye1{bottom:683.613333pt;}
.y52{bottom:684.413333pt;}
.y14e{bottom:686.813333pt;}
.y7e{bottom:689.213333pt;}
.y11b{bottom:691.613333pt;}
.ya0{bottom:697.213333pt;}
.y182{bottom:699.613333pt;}
.y22{bottom:699.933333pt;}
.ye0{bottom:702.013333pt;}
.y51{bottom:702.813333pt;}
.yc4{bottom:704.413333pt;}
.y14d{bottom:705.213333pt;}
.y7d{bottom:707.613333pt;}
.y11a{bottom:710.013333pt;}
.y9f{bottom:715.613333pt;}
.y21{bottom:718.333333pt;}
.yfe{bottom:720.413333pt;}
.y50{bottom:721.213333pt;}
.y181{bottom:726.013333pt;}
.ydf{bottom:728.413333pt;}
.y137{bottom:729.213333pt;}
.yc3{bottom:730.813333pt;}
.y14c{bottom:731.613333pt;}
.y7c{bottom:734.013333pt;}
.y4f{bottom:739.613333pt;}
.y180{bottom:744.413333pt;}
.y20{bottom:744.733333pt;}
.yfd{bottom:746.813333pt;}
.y136{bottom:747.613333pt;}
.y7b{bottom:752.413333pt;}
.yde{bottom:754.813333pt;}
.yc2{bottom:757.213333pt;}
.y14b{bottom:758.013333pt;}
.y170{bottom:760.413333pt;}
.y4e{bottom:766.013333pt;}
.y9e{bottom:770.813333pt;}
.y1f{bottom:771.133333pt;}
.ydd{bottom:773.213333pt;}
.y14a{bottom:776.413333pt;}
.y7a{bottom:778.813333pt;}
.y119{bottom:781.213333pt;}
.yc1{bottom:783.613333pt;}
.y4d{bottom:784.413333pt;}
.y16f{bottom:786.813333pt;}
.ydc{bottom:791.613333pt;}
.y149{bottom:794.813333pt;}
.y79{bottom:797.213333pt;}
.yfc{bottom:799.613333pt;}
.y4c{bottom:802.813333pt;}
.y1e{bottom:803.613333pt;}
.y16e{bottom:805.213333pt;}
.y118{bottom:807.613333pt;}
.yc0{bottom:810.013333pt;}
.y148{bottom:813.253333pt;}
.y17f{bottom:815.653333pt;}
.y4b{bottom:821.253333pt;}
.y78{bottom:823.653333pt;}
.yfb{bottom:826.053333pt;}
.y1d{bottom:830.053333pt;}
.y147{bottom:831.653333pt;}
.y117{bottom:834.053333pt;}
.ybf{bottom:836.453333pt;}
.y4a{bottom:839.653333pt;}
.y9d{bottom:842.053333pt;}
.y77{bottom:850.053333pt;}
.y1c{bottom:850.373333pt;}
.yfa{bottom:852.453333pt;}
.y49{bottom:858.053333pt;}
.y9c{bottom:860.453333pt;}
.ybe{bottom:862.853333pt;}
.y76{bottom:868.453333pt;}
.y48{bottom:876.453333pt;}
.y1b{bottom:876.773333pt;}
.y9b{bottom:878.853333pt;}
.ybd{bottom:881.253333pt;}
.y16d{bottom:884.453333pt;}
.y75{bottom:886.853333pt;}
.y47{bottom:894.853333pt;}
.y9a{bottom:897.253333pt;}
.y16c{bottom:902.853333pt;}
.y1a{bottom:903.173333pt;}
.y74{bottom:905.253333pt;}
.ybc{bottom:907.653333pt;}
.y135{bottom:913.253333pt;}
.y46{bottom:921.253333pt;}
.y19{bottom:921.573333pt;}
.y73{bottom:923.653333pt;}
.ybb{bottom:934.053333pt;}
.y45{bottom:939.653333pt;}
.y72{bottom:942.053333pt;}
.y18{bottom:947.653333pt;}
.y99{bottom:950.053333pt;}
.y44{bottom:958.053333pt;}
.yba{bottom:960.453333pt;}
.y17{bottom:965.573333pt;}
.y71{bottom:968.453333pt;}
.y43{bottom:976.453333pt;}
.y16{bottom:986.533333pt;}
.yb9{bottom:986.853333pt;}
.y42{bottom:994.853333pt;}
.y15{bottom:1009.413333pt;}
.y41{bottom:1013.253333pt;}
.y10{bottom:1060.640000pt;}
.y1{bottom:1072.160000pt;}
.y4{bottom:1073.760000pt;}
.yf{bottom:1074.560000pt;}
.h6{height:16.000000pt;}
.h8{height:16.320000pt;}
.h9{height:17.440000pt;}
.hb{height:25.120000pt;}
.h13{height:31.200000pt;}
.h15{height:31.360000pt;}
.h14{height:31.392000pt;}
.h11{height:35.782187pt;}
.ha{height:44.327188pt;}
.h5{height:46.240000pt;}
.h2{height:47.840000pt;}
.hc{height:49.133750pt;}
.h12{height:53.406250pt;}
.h7{height:54.390938pt;}
.hf{height:54.875000pt;}
.h10{height:57.886250pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.hd{height:64.621563pt;}
.he{height:65.531250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:63.232000pt;}
.w3{width:66.720000pt;}
.wb{width:73.600000pt;}
.w8{width:75.546667pt;}
.wc{width:83.040000pt;}
.wa{width:104.960000pt;}
.w6{width:151.200000pt;}
.w5{width:156.346667pt;}
.w9{width:157.626667pt;}
.w4{width:164.026667pt;}
.w2{width:340.546667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.xb{left:9.600000pt;}
.x5{left:19.520000pt;}
.x6{left:54.560000pt;}
.x9{left:94.431988pt;}
.xd{left:109.791988pt;}
.xc{left:116.031988pt;}
.x13{left:118.431988pt;}
.x2{left:131.560000pt;}
.x14{left:142.426655pt;}
.x1{left:146.906667pt;}
.x15{left:151.226667pt;}
.x12{left:218.106655pt;}
.x11{left:220.186655pt;}
.xe{left:232.986655pt;}
.x10{left:239.546655pt;}
.x16{left:310.946667pt;}
.x7{left:336.066667pt;}
.xf{left:396.866655pt;}
.x17{left:417.853333pt;}
.x18{left:493.533333pt;}
.x19{left:578.493333pt;}
.x8{left:589.093333pt;}
.x4{left:680.453333pt;}
.xa{left:718.213333pt;}
}




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