
    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_b45f2ac76888442f750b087f.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_ddbbf45f88725a096cfd0bd5.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_87d5718209860108ecb63ff2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.109375;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_aecfb0026c61c6cb0851cf06.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.109375;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_a4561a9b3cb6fc433be210c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.087402;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_874c5847038c4b84764d4efe.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.087402;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_38e6a0a855e708d13cc6374b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5b4e1365470ee07bc51866fe.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6286ab5b9b1211f6adc57683.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1cd28c0025e98e4339fc5484.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v5{vertical-align:-12.240000px;}
.v8{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.240000px;}
.v2{vertical-align:15.120000px;}
.v7{vertical-align:40.320000px;}
.v4{vertical-align:45.360000px;}
.ls1b{letter-spacing:-0.199200px;}
.lsf{letter-spacing:-0.186600px;}
.lsc{letter-spacing:-0.185400px;}
.lsb{letter-spacing:-0.135000px;}
.ls11{letter-spacing:-0.121200px;}
.ls27{letter-spacing:-0.101400px;}
.ls2e{letter-spacing:-0.096600px;}
.lsa{letter-spacing:-0.090000px;}
.lse{letter-spacing:-0.084600px;}
.ls17{letter-spacing:-0.063600px;}
.ls1f{letter-spacing:-0.037800px;}
.ls2d{letter-spacing:-0.031680px;}
.ls21{letter-spacing:-0.015480px;}
.ls2f{letter-spacing:-0.014760px;}
.ls1c{letter-spacing:-0.013320px;}
.ls23{letter-spacing:-0.009000px;}
.lsd{letter-spacing:-0.008400px;}
.ls1d{letter-spacing:-0.007560px;}
.ls24{letter-spacing:-0.006120px;}
.ls8{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.045360px;}
.ls14{letter-spacing:0.048960px;}
.ls22{letter-spacing:0.051840px;}
.ls20{letter-spacing:0.053280px;}
.ls1e{letter-spacing:0.055440px;}
.ls15{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.065520px;}
.ls12{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls25{letter-spacing:0.095400px;}
.ls26{letter-spacing:0.111000px;}
.ls1a{letter-spacing:0.115800px;}
.ls9{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.166200px;}
.ls29{letter-spacing:0.172200px;}
.ls7{letter-spacing:0.173400px;}
.ls2b{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.266400px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.428400px;}
.ls3{letter-spacing:3.333600px;}
.ls5{letter-spacing:7.625520px;}
.ls2c{letter-spacing:47.726640px;}
.ls16{letter-spacing:63.566640px;}
.ls18{letter-spacing:67.050360px;}
.ls2a{letter-spacing:80.846640px;}
.ls19{letter-spacing:202.773600px;}
.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;}
}
.ws6{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.ws1c{word-spacing:-13.398600px;}
.ws1b{word-spacing:-13.392600px;}
.wsc{word-spacing:-13.342200px;}
.ws19{word-spacing:-13.337400px;}
.ws18{word-spacing:-13.321800px;}
.ws11{word-spacing:-13.281840px;}
.ws13{word-spacing:-13.279680px;}
.ws15{word-spacing:-13.278240px;}
.wsa{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws17{word-spacing:-13.220280px;}
.ws10{word-spacing:-13.218840px;}
.ws16{word-spacing:-13.217400px;}
.wsf{word-spacing:-13.213080px;}
.ws14{word-spacing:-13.210920px;}
.ws12{word-spacing:-13.188600px;}
.wsb{word-spacing:-13.162800px;}
.ws1a{word-spacing:-13.125000px;}
.ws3{word-spacing:-13.039800px;}
.wse{word-spacing:-13.027200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsd{word-spacing:-9.266400px;}
.ws2{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._17{margin-left:-4.068240px;}
._a{margin-left:-3.066000px;}
._12{margin-left:-2.057281px;}
._0{margin-left:-1.050000px;}
._2{width:1.090188px;}
._4{width:2.344800px;}
._1{width:3.606588px;}
._3{width:5.467842px;}
._5{width:6.499115px;}
._16{width:7.502689px;}
._7{width:8.537401px;}
._6{width:9.739200px;}
._11{width:10.943283px;}
._15{width:11.975638px;}
._10{width:14.248440px;}
._19{width:15.404643px;}
._c{width:16.653000px;}
._d{width:17.796001px;}
._b{width:19.178400px;}
._13{width:20.681280px;}
._14{width:21.703320px;}
._8{width:23.988000px;}
._9{width:25.069800px;}
._e{width:28.075800px;}
._f{width:29.339402px;}
._1b{width:30.388188px;}
._1a{width:31.400281px;}
._18{width:202.773600px;}
.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;}
.yd8{bottom:7.830000px;}
.yd5{bottom:7.920000px;}
.yb9{bottom:8.190000px;}
.ybb{bottom:8.280000px;}
.y95{bottom:13.860000px;}
.ya5{bottom:16.290000px;}
.ye4{bottom:18.900000px;}
.y94{bottom:23.940000px;}
.ye5{bottom:29.970000px;}
.y96{bottom:33.390000px;}
.yf6{bottom:35.190000px;}
.ya3{bottom:35.460000px;}
.ya6{bottom:51.030000px;}
.ya4{bottom:57.870000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y147{bottom:114.150000px;}
.yf3{bottom:115.500000px;}
.yc9{bottom:121.890000px;}
.y117{bottom:124.500000px;}
.y146{bottom:131.700000px;}
.yf2{bottom:133.140000px;}
.y73{bottom:135.660000px;}
.yb7{bottom:137.460000px;}
.y8d{bottom:137.910000px;}
.y16b{bottom:138.990000px;}
.y27{bottom:139.440000px;}
.y145{bottom:149.250000px;}
.yf1{bottom:150.690000px;}
.y116{bottom:151.770000px;}
.yb6{bottom:155.100000px;}
.y8c{bottom:155.460000px;}
.y16a{bottom:156.540000px;}
.y26{bottom:157.080000px;}
.yc8{bottom:157.440000px;}
.y144{bottom:166.890000px;}
.yf0{bottom:168.240000px;}
.y18c{bottom:169.320000px;}
.y72{bottom:171.210000px;}
.yb5{bottom:172.650000px;}
.y8b{bottom:173.010000px;}
.y169{bottom:174.090000px;}
.y25{bottom:174.630000px;}
.y115{bottom:179.130000px;}
.y143{bottom:184.440000px;}
.y18b{bottom:186.870000px;}
.y71{bottom:188.760000px;}
.yb4{bottom:190.200000px;}
.y24{bottom:192.180000px;}
.yc7{bottom:193.080000px;}
.y8a{bottom:199.650000px;}
.y168{bottom:200.730000px;}
.yef{bottom:201.270000px;}
.y18a{bottom:204.510000px;}
.y70{bottom:206.400000px;}
.y114{bottom:206.490000px;}
.yb3{bottom:207.840000px;}
.y23{bottom:209.820000px;}
.y142{bottom:211.350000px;}
.y167{bottom:218.280000px;}
.yc6{bottom:225.300000px;}
.yb2{bottom:225.390000px;}
.yee{bottom:228.540000px;}
.y189{bottom:231.060000px;}
.y113{bottom:233.760000px;}
.y89{bottom:235.200000px;}
.y166{bottom:235.830000px;}
.y6f{bottom:241.950000px;}
.yb1{bottom:243.030000px;}
.y22{bottom:245.370000px;}
.y188{bottom:248.610000px;}
.yed{bottom:255.900000px;}
.y6e{bottom:259.500000px;}
.y141{bottom:259.680000px;}
.yb0{bottom:260.580000px;}
.y111{bottom:261.120000px;}
.y165{bottom:262.470000px;}
.y21{bottom:263.010000px;}
.y88{bottom:267.420000px;}
.y187{bottom:275.250000px;}
.y140{bottom:277.230000px;}
.y164{bottom:280.020000px;}
.y20{bottom:280.560000px;}
.yec{bottom:283.260000px;}
.yaf{bottom:287.130000px;}
.y112{bottom:288.480000px;}
.y186{bottom:292.800000px;}
.y6d{bottom:295.140000px;}
.y163{bottom:297.660000px;}
.y1f{bottom:298.110000px;}
.yeb{bottom:310.620000px;}
.y6c{bottom:312.690000px;}
.y13f{bottom:312.780000px;}
.y185{bottom:319.440000px;}
.yae{bottom:323.040000px;}
.y162{bottom:324.210000px;}
.y1e{bottom:325.020000px;}
.y6b{bottom:330.330000px;}
.y13e{bottom:330.420000px;}
.y184{bottom:336.990000px;}
.y110{bottom:337.170000px;}
.yea{bottom:337.890000px;}
.y161{bottom:341.760000px;}
.y6a{bottom:347.880000px;}
.y13d{bottom:347.970000px;}
.y183{bottom:354.540000px;}
.y160{bottom:359.400000px;}
.ye9{bottom:365.250000px;}
.y13c{bottom:365.610000px;}
.yad{bottom:371.370000px;}
.y10f{bottom:372.720000px;}
.y1d{bottom:373.620000px;}
.y15f{bottom:376.950000px;}
.y182{bottom:381.180000px;}
.y13b{bottom:383.160000px;}
.y69{bottom:383.430000px;}
.y10e{bottom:390.360000px;}
.ye8{bottom:392.610000px;}
.yac{bottom:397.920000px;}
.y181{bottom:398.730000px;}
.y13a{bottom:400.710000px;}
.y68{bottom:401.070000px;}
.y15e{bottom:403.590000px;}
.y10d{bottom:407.910000px;}
.y1c{bottom:410.700000px;}
.y180{bottom:416.370000px;}
.y139{bottom:418.350000px;}
.y67{bottom:418.620000px;}
.ye7{bottom:419.970000px;}
.y15d{bottom:421.140000px;}
.yab{bottom:424.560000px;}
.y10c{bottom:425.550000px;}
.y5e{bottom:427.710000px;}
.y1b{bottom:428.250000px;}
.y4a{bottom:429.510000px;}
.y138{bottom:435.900000px;}
.y66{bottom:436.260000px;}
.y15c{bottom:438.690000px;}
.y17f{bottom:442.920000px;}
.y10b{bottom:443.100000px;}
.y5d{bottom:445.260000px;}
.y1a{bottom:445.800000px;}
.y49{bottom:447.060000px;}
.ye6{bottom:447.240000px;}
.y137{bottom:453.540000px;}
.y65{bottom:453.810000px;}
.yaa{bottom:460.110000px;}
.y17e{bottom:460.470000px;}
.y10a{bottom:460.650000px;}
.y5c{bottom:462.900000px;}
.y48{bottom:464.700000px;}
.y15b{bottom:465.330000px;}
.y136{bottom:471.120000px;}
.ye3{bottom:474.630000px;}
.y17d{bottom:478.140000px;}
.y109{bottom:478.320000px;}
.y5b{bottom:480.480000px;}
.y19{bottom:481.470000px;}
.y47{bottom:482.280000px;}
.y15a{bottom:482.910000px;}
.y135{bottom:488.670000px;}
.y64{bottom:489.390000px;}
.ya9{bottom:495.690000px;}
.y108{bottom:495.870000px;}
.y5a{bottom:498.030000px;}
.y18{bottom:499.020000px;}
.y159{bottom:500.550000px;}
.y17c{bottom:504.690000px;}
.y134{bottom:506.310000px;}
.y63{bottom:507.030000px;}
.y107{bottom:513.510000px;}
.y59{bottom:515.670000px;}
.y17{bottom:516.660000px;}
.y46{bottom:517.830000px;}
.y158{bottom:518.100000px;}
.y17b{bottom:522.330000px;}
.y62{bottom:524.580000px;}
.y106{bottom:531.060000px;}
.ya8{bottom:531.330000px;}
.y58{bottom:533.220000px;}
.y16{bottom:534.210000px;}
.y45{bottom:535.470000px;}
.y133{bottom:541.860000px;}
.y157{bottom:544.650000px;}
.ye2{bottom:545.370000px;}
.y105{bottom:548.610000px;}
.y17a{bottom:548.880000px;}
.y57{bottom:550.860000px;}
.y61{bottom:551.220000px;}
.y15{bottom:551.760000px;}
.y44{bottom:553.020000px;}
.y132{bottom:559.410000px;}
.y156{bottom:562.290000px;}
.y179{bottom:566.430000px;}
.ya7{bottom:566.880000px;}
.y56{bottom:568.410000px;}
.y14{bottom:569.400000px;}
.y104{bottom:575.250000px;}
.y131{bottom:577.050000px;}
.y43{bottom:579.660000px;}
.ye1{bottom:581.010000px;}
.ya2{bottom:581.100000px;}
.y55{bottom:585.960000px;}
.y60{bottom:586.770000px;}
.y13{bottom:586.950000px;}
.y155{bottom:588.840000px;}
.y178{bottom:593.070000px;}
.y130{bottom:594.600000px;}
.ye0{bottom:598.560000px;}
.y54{bottom:603.600000px;}
.y12{bottom:604.590000px;}
.y154{bottom:606.480000px;}
.y103{bottom:608.190000px;}
.y177{bottom:610.620000px;}
.y12f{bottom:612.240000px;}
.y42{bottom:615.570000px;}
.ydf{bottom:616.200000px;}
.y5f{bottom:618.990000px;}
.y53{bottom:621.150000px;}
.y11{bottom:622.140000px;}
.y153{bottom:624.030000px;}
.y12e{bottom:629.790000px;}
.yde{bottom:633.750000px;}
.y176{bottom:637.260000px;}
.y52{bottom:638.790000px;}
.y10{bottom:639.690000px;}
.y12d{bottom:647.340000px;}
.y152{bottom:650.580000px;}
.y175{bottom:654.810000px;}
.y51{bottom:656.340000px;}
.yf{bottom:657.330000px;}
.y102{bottom:657.600000px;}
.ydd{bottom:660.300000px;}
.y41{bottom:663.810000px;}
.y12c{bottom:664.980000px;}
.ya1{bottom:667.680000px;}
.y151{bottom:668.220000px;}
.y174{bottom:672.360000px;}
.y50{bottom:673.890000px;}
.ye{bottom:674.880000px;}
.y40{bottom:681.360000px;}
.y12b{bottom:682.530000px;}
.y101{bottom:684.960000px;}
.ya0{bottom:685.320000px;}
.y4f{bottom:691.530000px;}
.ydc{bottom:693.330000px;}
.y150{bottom:694.770000px;}
.y3f{bottom:699.000000px;}
.yd{bottom:701.790000px;}
.y4e{bottom:709.080000px;}
.y9f{bottom:711.870000px;}
.y100{bottom:712.320000px;}
.y14f{bottom:712.410000px;}
.y3e{bottom:716.550000px;}
.y12a{bottom:718.170000px;}
.ydb{bottom:720.690000px;}
.y87{bottom:723.120000px;}
.y18f{bottom:734.190000px;}
.y4d{bottom:735.720000px;}
.y14e{bottom:739.230000px;}
.yff{bottom:739.590000px;}
.y86{bottom:740.670000px;}
.y173{bottom:743.190000px;}
.y9e{bottom:747.510000px;}
.yda{bottom:747.960000px;}
.yc{bottom:750.030000px;}
.y3d{bottom:752.190000px;}
.y129{bottom:753.270000px;}
.y85{bottom:758.220000px;}
.y172{bottom:760.740000px;}
.y9d{bottom:765.060000px;}
.yfe{bottom:766.950000px;}
.y3c{bottom:769.740000px;}
.y128{bottom:770.910000px;}
.y4c{bottom:771.270000px;}
.yd9{bottom:775.320000px;}
.y84{bottom:775.860000px;}
.y171{bottom:778.290000px;}
.y9c{bottom:782.610000px;}
.yb{bottom:785.850000px;}
.y3b{bottom:787.290000px;}
.y14d{bottom:787.560000px;}
.y127{bottom:788.460000px;}
.yc5{bottom:788.910000px;}
.y83{bottom:793.410000px;}
.yfd{bottom:794.310000px;}
.y9b{bottom:800.250000px;}
.yd7{bottom:802.680000px;}
.y4b{bottom:803.490000px;}
.yc4{bottom:803.940000px;}
.y3a{bottom:804.930000px;}
.y126{bottom:806.100000px;}
.y14c{bottom:814.470000px;}
.y82{bottom:820.050000px;}
.yfc{bottom:821.670000px;}
.ya{bottom:821.850000px;}
.y39{bottom:822.480000px;}
.y125{bottom:823.650000px;}
.yd4{bottom:829.950000px;}
.yc3{bottom:830.130000px;}
.y9a{bottom:835.800000px;}
.yfb{bottom:848.940000px;}
.y170{bottom:849.030000px;}
.y14b{bottom:851.460000px;}
.y81{bottom:855.600000px;}
.yc2{bottom:856.410000px;}
.yd6{bottom:857.310000px;}
.y9{bottom:857.850000px;}
.y38{bottom:858.030000px;}
.y124{bottom:859.200000px;}
.y16f{bottom:866.670000px;}
.y14a{bottom:869.100000px;}
.y99{bottom:871.440000px;}
.y80{bottom:873.150000px;}
.y37{bottom:875.670000px;}
.yfa{bottom:876.300000px;}
.y123{bottom:876.840000px;}
.y8{bottom:879.630000px;}
.yc1{bottom:882.690000px;}
.y18e{bottom:884.220000px;}
.y7f{bottom:890.790000px;}
.y36{bottom:893.220000px;}
.y122{bottom:894.390000px;}
.y149{bottom:896.010000px;}
.y7{bottom:897.630000px;}
.yf9{bottom:903.660000px;}
.yd3{bottom:906.000000px;}
.y98{bottom:906.990000px;}
.y7e{bottom:908.340000px;}
.yc0{bottom:908.880000px;}
.y35{bottom:910.860000px;}
.y121{bottom:912.030000px;}
.y97{bottom:924.540000px;}
.y7d{bottom:925.890000px;}
.y16e{bottom:928.410000px;}
.y120{bottom:929.580000px;}
.y6{bottom:929.940000px;}
.yf8{bottom:930.930000px;}
.y148{bottom:933.270000px;}
.ybf{bottom:935.160000px;}
.y93{bottom:938.760000px;}
.yd2{bottom:941.640000px;}
.y7c{bottom:943.530000px;}
.y34{bottom:946.410000px;}
.y11f{bottom:947.130000px;}
.y5{bottom:949.290000px;}
.y16d{bottom:954.960000px;}
.yf5{bottom:958.290000px;}
.yd1{bottom:959.190000px;}
.y7b{bottom:961.080000px;}
.ybe{bottom:961.440000px;}
.y33{bottom:963.960000px;}
.y11e{bottom:964.770000px;}
.y16c{bottom:972.600000px;}
.yd0{bottom:976.740000px;}
.y7a{bottom:978.720000px;}
.y32{bottom:981.600000px;}
.y11d{bottom:982.320000px;}
.yf7{bottom:985.650000px;}
.y4{bottom:987.630000px;}
.y18d{bottom:990.150000px;}
.ycf{bottom:994.380000px;}
.y31{bottom:999.150000px;}
.y11c{bottom:999.960000px;}
.y79{bottom:1005.270000px;}
.y92{bottom:1007.790000px;}
.yce{bottom:1011.960000px;}
.y3{bottom:1012.320000px;}
.ybd{bottom:1013.940000px;}
.y30{bottom:1016.820000px;}
.y11b{bottom:1026.810000px;}
.ycd{bottom:1029.600000px;}
.yf4{bottom:1034.370000px;}
.ybc{bottom:1040.220000px;}
.y78{bottom:1040.850000px;}
.y91{bottom:1043.370000px;}
.ycc{bottom:1047.150000px;}
.y2f{bottom:1052.370000px;}
.y77{bottom:1059.300000px;}
.y90{bottom:1060.920000px;}
.yba{bottom:1066.410000px;}
.y2e{bottom:1069.920000px;}
.y11a{bottom:1072.530000px;}
.y76{bottom:1077.750000px;}
.ycb{bottom:1078.110000px;}
.y8f{bottom:1078.560000px;}
.y2d{bottom:1087.560000px;}
.yb8{bottom:1092.690000px;}
.y75{bottom:1095.300000px;}
.y8e{bottom:1096.110000px;}
.y119{bottom:1099.890000px;}
.yca{bottom:1104.750000px;}
.y2c{bottom:1105.110000px;}
.y74{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y118{bottom:1127.160000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h16{height:25.470000px;}
.h18{height:25.560000px;}
.h19{height:25.590000px;}
.h1c{height:26.550000px;}
.h20{height:26.580000px;}
.h1b{height:26.640000px;}
.h1e{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:37.132734px;}
.h3{height:40.100098px;}
.hf{height:47.610000px;}
.h1d{height:48.690000px;}
.h17{height:50.902383px;}
.h15{height:52.238672px;}
.h7{height:52.252734px;}
.h8{height:53.573730px;}
.h21{height:53.910000px;}
.h1f{height:53.940000px;}
.h1a{height:54.000000px;}
.h9{height:55.779258px;}
.h22{height:57.258984px;}
.h5{height:58.706543px;}
.he{height:59.973223px;}
.hd{height:61.793886px;}
.hc{height:62.585859px;}
.h12{height:64.160156px;}
.h13{height:65.250000px;}
.hb{height:68.582109px;}
.ha{height:71.019492px;}
.h14{height:74.562891px;}
.h4{height:74.746582px;}
.h11{height:104.480156px;}
.h10{height:119.922891px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:47.520000px;}
.w11{width:54.360000px;}
.w24{width:65.970000px;}
.w17{width:66.780000px;}
.w26{width:67.860000px;}
.wf{width:68.670000px;}
.w13{width:68.700000px;}
.w25{width:70.050000px;}
.w22{width:72.450000px;}
.w21{width:72.900000px;}
.w23{width:72.990000px;}
.w18{width:73.530000px;}
.w1a{width:73.740000px;}
.w12{width:76.680000px;}
.wd{width:76.710000px;}
.w20{width:77.940000px;}
.we{width:78.750000px;}
.w27{width:79.560000px;}
.w1d{width:79.920000px;}
.w19{width:80.280000px;}
.w1b{width:81.810000px;}
.w1c{width:83.700000px;}
.w10{width:90.540000px;}
.w1e{width:93.090000px;}
.w7{width:104.850000px;}
.w4{width:105.660000px;}
.w14{width:124.200000px;}
.w15{width:133.950000px;}
.w8{width:186.030000px;}
.w9{width:203.790000px;}
.wa{width:217.260000px;}
.w5{width:269.910000px;}
.w6{width:269.940000px;}
.wb{width:273.900000px;}
.w3{width:339.870000px;}
.w1f{width:506.370000px;}
.w16{width:544.170000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:4.860000px;}
.x10{left:8.100000px;}
.x1{left:68.040000px;}
.x12{left:93.870000px;}
.x8{left:95.039987px;}
.x1b{left:102.329987px;}
.x27{left:107.190000px;}
.x35{left:111.239987px;}
.xd{left:119.610000px;}
.x9{left:122.039987px;}
.x16{left:125.040000px;}
.x14{left:132.300000px;}
.x13{left:138.150000px;}
.xe{left:155.610000px;}
.x11{left:176.700000px;}
.x17{left:198.570000px;}
.x1c{left:200.640000px;}
.x2{left:202.799987px;}
.xc{left:223.860000px;}
.x28{left:241.860000px;}
.x7{left:258.149987px;}
.x30{left:274.620000px;}
.x5{left:281.639987px;}
.x22{left:289.470000px;}
.x18{left:304.140000px;}
.x29{left:309.360000px;}
.xb{left:316.289987px;}
.x23{left:344.550000px;}
.x31{left:347.880000px;}
.x2a{left:383.610000px;}
.x1e{left:418.710000px;}
.x24{left:421.950000px;}
.x15{left:446.610000px;}
.x2b{left:464.610000px;}
.x1f{left:466.950000px;}
.x32{left:488.370000px;}
.x19{left:490.890000px;}
.x25{left:501.510000px;}
.x2c{left:539.160000px;}
.x20{left:544.380000px;}
.x33{left:559.140000px;}
.xf{left:563.730000px;}
.x26{left:570.930000px;}
.xa{left:595.139987px;}
.x2d{left:621.690000px;}
.x21{left:623.940000px;}
.x34{left:627.810000px;}
.x1a{left:680.639987px;}
.x4{left:693.059987px;}
.x2e{left:706.110000px;}
.x2f{left:708.090000px;}
.x6{left:713.309987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v5{vertical-align:-10.880000pt;}
.v8{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.880000pt;}
.v2{vertical-align:13.440000pt;}
.v7{vertical-align:35.840000pt;}
.v4{vertical-align:40.320000pt;}
.ls1b{letter-spacing:-0.177067pt;}
.lsf{letter-spacing:-0.165867pt;}
.lsc{letter-spacing:-0.164800pt;}
.lsb{letter-spacing:-0.120000pt;}
.ls11{letter-spacing:-0.107733pt;}
.ls27{letter-spacing:-0.090133pt;}
.ls2e{letter-spacing:-0.085867pt;}
.lsa{letter-spacing:-0.080000pt;}
.lse{letter-spacing:-0.075200pt;}
.ls17{letter-spacing:-0.056533pt;}
.ls1f{letter-spacing:-0.033600pt;}
.ls2d{letter-spacing:-0.028160pt;}
.ls21{letter-spacing:-0.013760pt;}
.ls2f{letter-spacing:-0.013120pt;}
.ls1c{letter-spacing:-0.011840pt;}
.ls23{letter-spacing:-0.008000pt;}
.lsd{letter-spacing:-0.007467pt;}
.ls1d{letter-spacing:-0.006720pt;}
.ls24{letter-spacing:-0.005440pt;}
.ls8{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.040320pt;}
.ls14{letter-spacing:0.043520pt;}
.ls22{letter-spacing:0.046080pt;}
.ls20{letter-spacing:0.047360pt;}
.ls1e{letter-spacing:0.049280pt;}
.ls15{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.058240pt;}
.ls12{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls25{letter-spacing:0.084800pt;}
.ls26{letter-spacing:0.098667pt;}
.ls1a{letter-spacing:0.102933pt;}
.ls9{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.147733pt;}
.ls29{letter-spacing:0.153067pt;}
.ls7{letter-spacing:0.154133pt;}
.ls2b{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.236800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.380800pt;}
.ls3{letter-spacing:2.963200pt;}
.ls5{letter-spacing:6.778240pt;}
.ls2c{letter-spacing:42.423680pt;}
.ls16{letter-spacing:56.503680pt;}
.ls18{letter-spacing:59.600320pt;}
.ls2a{letter-spacing:71.863680pt;}
.ls19{letter-spacing:180.243200pt;}
.ws6{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.ws1c{word-spacing:-11.909867pt;}
.ws1b{word-spacing:-11.904533pt;}
.wsc{word-spacing:-11.859733pt;}
.ws19{word-spacing:-11.855467pt;}
.ws18{word-spacing:-11.841600pt;}
.ws11{word-spacing:-11.806080pt;}
.ws13{word-spacing:-11.804160pt;}
.ws15{word-spacing:-11.802880pt;}
.wsa{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws17{word-spacing:-11.751360pt;}
.ws10{word-spacing:-11.750080pt;}
.ws16{word-spacing:-11.748800pt;}
.wsf{word-spacing:-11.744960pt;}
.ws14{word-spacing:-11.743040pt;}
.ws12{word-spacing:-11.723200pt;}
.wsb{word-spacing:-11.700267pt;}
.ws1a{word-spacing:-11.666667pt;}
.ws3{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.579733pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsd{word-spacing:-8.236800pt;}
.ws2{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._17{margin-left:-3.616213pt;}
._a{margin-left:-2.725333pt;}
._12{margin-left:-1.828694pt;}
._0{margin-left:-0.933333pt;}
._2{width:0.969056pt;}
._4{width:2.084267pt;}
._1{width:3.205856pt;}
._3{width:4.860304pt;}
._5{width:5.776991pt;}
._16{width:6.669057pt;}
._7{width:7.588801pt;}
._6{width:8.657066pt;}
._11{width:9.727363pt;}
._15{width:10.645012pt;}
._10{width:12.665280pt;}
._19{width:13.693016pt;}
._c{width:14.802666pt;}
._d{width:15.818668pt;}
._b{width:17.047467pt;}
._13{width:18.383360pt;}
._14{width:19.291840pt;}
._8{width:21.322667pt;}
._9{width:22.284266pt;}
._e{width:24.956266pt;}
._f{width:26.079468pt;}
._1b{width:27.011723pt;}
._1a{width:27.911361pt;}
._18{width:180.243200pt;}
.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;}
.yd8{bottom:6.960000pt;}
.yd5{bottom:7.040000pt;}
.yb9{bottom:7.280000pt;}
.ybb{bottom:7.360000pt;}
.y95{bottom:12.320000pt;}
.ya5{bottom:14.480000pt;}
.ye4{bottom:16.800000pt;}
.y94{bottom:21.280000pt;}
.ye5{bottom:26.640000pt;}
.y96{bottom:29.680000pt;}
.yf6{bottom:31.280000pt;}
.ya3{bottom:31.520000pt;}
.ya6{bottom:45.360000pt;}
.ya4{bottom:51.440000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y147{bottom:101.466667pt;}
.yf3{bottom:102.666667pt;}
.yc9{bottom:108.346667pt;}
.y117{bottom:110.666667pt;}
.y146{bottom:117.066667pt;}
.yf2{bottom:118.346667pt;}
.y73{bottom:120.586667pt;}
.yb7{bottom:122.186667pt;}
.y8d{bottom:122.586667pt;}
.y16b{bottom:123.546667pt;}
.y27{bottom:123.946667pt;}
.y145{bottom:132.666667pt;}
.yf1{bottom:133.946667pt;}
.y116{bottom:134.906667pt;}
.yb6{bottom:137.866667pt;}
.y8c{bottom:138.186667pt;}
.y16a{bottom:139.146667pt;}
.y26{bottom:139.626667pt;}
.yc8{bottom:139.946667pt;}
.y144{bottom:148.346667pt;}
.yf0{bottom:149.546667pt;}
.y18c{bottom:150.506667pt;}
.y72{bottom:152.186667pt;}
.yb5{bottom:153.466667pt;}
.y8b{bottom:153.786667pt;}
.y169{bottom:154.746667pt;}
.y25{bottom:155.226667pt;}
.y115{bottom:159.226667pt;}
.y143{bottom:163.946667pt;}
.y18b{bottom:166.106667pt;}
.y71{bottom:167.786667pt;}
.yb4{bottom:169.066667pt;}
.y24{bottom:170.826667pt;}
.yc7{bottom:171.626667pt;}
.y8a{bottom:177.466667pt;}
.y168{bottom:178.426667pt;}
.yef{bottom:178.906667pt;}
.y18a{bottom:181.786667pt;}
.y70{bottom:183.466667pt;}
.y114{bottom:183.546667pt;}
.yb3{bottom:184.746667pt;}
.y23{bottom:186.506667pt;}
.y142{bottom:187.866667pt;}
.y167{bottom:194.026667pt;}
.yc6{bottom:200.266667pt;}
.yb2{bottom:200.346667pt;}
.yee{bottom:203.146667pt;}
.y189{bottom:205.386667pt;}
.y113{bottom:207.786667pt;}
.y89{bottom:209.066667pt;}
.y166{bottom:209.626667pt;}
.y6f{bottom:215.066667pt;}
.yb1{bottom:216.026667pt;}
.y22{bottom:218.106667pt;}
.y188{bottom:220.986667pt;}
.yed{bottom:227.466667pt;}
.y6e{bottom:230.666667pt;}
.y141{bottom:230.826667pt;}
.yb0{bottom:231.626667pt;}
.y111{bottom:232.106667pt;}
.y165{bottom:233.306667pt;}
.y21{bottom:233.786667pt;}
.y88{bottom:237.706667pt;}
.y187{bottom:244.666667pt;}
.y140{bottom:246.426667pt;}
.y164{bottom:248.906667pt;}
.y20{bottom:249.386667pt;}
.yec{bottom:251.786667pt;}
.yaf{bottom:255.226667pt;}
.y112{bottom:256.426667pt;}
.y186{bottom:260.266667pt;}
.y6d{bottom:262.346667pt;}
.y163{bottom:264.586667pt;}
.y1f{bottom:264.986667pt;}
.yeb{bottom:276.106667pt;}
.y6c{bottom:277.946667pt;}
.y13f{bottom:278.026667pt;}
.y185{bottom:283.946667pt;}
.yae{bottom:287.146667pt;}
.y162{bottom:288.186667pt;}
.y1e{bottom:288.906667pt;}
.y6b{bottom:293.626667pt;}
.y13e{bottom:293.706667pt;}
.y184{bottom:299.546667pt;}
.y110{bottom:299.706667pt;}
.yea{bottom:300.346667pt;}
.y161{bottom:303.786667pt;}
.y6a{bottom:309.226667pt;}
.y13d{bottom:309.306667pt;}
.y183{bottom:315.146667pt;}
.y160{bottom:319.466667pt;}
.ye9{bottom:324.666667pt;}
.y13c{bottom:324.986667pt;}
.yad{bottom:330.106667pt;}
.y10f{bottom:331.306667pt;}
.y1d{bottom:332.106667pt;}
.y15f{bottom:335.066667pt;}
.y182{bottom:338.826667pt;}
.y13b{bottom:340.586667pt;}
.y69{bottom:340.826667pt;}
.y10e{bottom:346.986667pt;}
.ye8{bottom:348.986667pt;}
.yac{bottom:353.706667pt;}
.y181{bottom:354.426667pt;}
.y13a{bottom:356.186667pt;}
.y68{bottom:356.506667pt;}
.y15e{bottom:358.746667pt;}
.y10d{bottom:362.586667pt;}
.y1c{bottom:365.066667pt;}
.y180{bottom:370.106667pt;}
.y139{bottom:371.866667pt;}
.y67{bottom:372.106667pt;}
.ye7{bottom:373.306667pt;}
.y15d{bottom:374.346667pt;}
.yab{bottom:377.386667pt;}
.y10c{bottom:378.266667pt;}
.y5e{bottom:380.186667pt;}
.y1b{bottom:380.666667pt;}
.y4a{bottom:381.786667pt;}
.y138{bottom:387.466667pt;}
.y66{bottom:387.786667pt;}
.y15c{bottom:389.946667pt;}
.y17f{bottom:393.706667pt;}
.y10b{bottom:393.866667pt;}
.y5d{bottom:395.786667pt;}
.y1a{bottom:396.266667pt;}
.y49{bottom:397.386667pt;}
.ye6{bottom:397.546667pt;}
.y137{bottom:403.146667pt;}
.y65{bottom:403.386667pt;}
.yaa{bottom:408.986667pt;}
.y17e{bottom:409.306667pt;}
.y10a{bottom:409.466667pt;}
.y5c{bottom:411.466667pt;}
.y48{bottom:413.066667pt;}
.y15b{bottom:413.626667pt;}
.y136{bottom:418.773333pt;}
.ye3{bottom:421.893333pt;}
.y17d{bottom:425.013333pt;}
.y109{bottom:425.173333pt;}
.y5b{bottom:427.093333pt;}
.y19{bottom:427.973333pt;}
.y47{bottom:428.693333pt;}
.y15a{bottom:429.253333pt;}
.y135{bottom:434.373333pt;}
.y64{bottom:435.013333pt;}
.ya9{bottom:440.613333pt;}
.y108{bottom:440.773333pt;}
.y5a{bottom:442.693333pt;}
.y18{bottom:443.573333pt;}
.y159{bottom:444.933333pt;}
.y17c{bottom:448.613333pt;}
.y134{bottom:450.053333pt;}
.y63{bottom:450.693333pt;}
.y107{bottom:456.453333pt;}
.y59{bottom:458.373333pt;}
.y17{bottom:459.253333pt;}
.y46{bottom:460.293333pt;}
.y158{bottom:460.533333pt;}
.y17b{bottom:464.293333pt;}
.y62{bottom:466.293333pt;}
.y106{bottom:472.053333pt;}
.ya8{bottom:472.293333pt;}
.y58{bottom:473.973333pt;}
.y16{bottom:474.853333pt;}
.y45{bottom:475.973333pt;}
.y133{bottom:481.653333pt;}
.y157{bottom:484.133333pt;}
.ye2{bottom:484.773333pt;}
.y105{bottom:487.653333pt;}
.y17a{bottom:487.893333pt;}
.y57{bottom:489.653333pt;}
.y61{bottom:489.973333pt;}
.y15{bottom:490.453333pt;}
.y44{bottom:491.573333pt;}
.y132{bottom:497.253333pt;}
.y156{bottom:499.813333pt;}
.y179{bottom:503.493333pt;}
.ya7{bottom:503.893333pt;}
.y56{bottom:505.253333pt;}
.y14{bottom:506.133333pt;}
.y104{bottom:511.333333pt;}
.y131{bottom:512.933333pt;}
.y43{bottom:515.253333pt;}
.ye1{bottom:516.453333pt;}
.ya2{bottom:516.533333pt;}
.y55{bottom:520.853333pt;}
.y60{bottom:521.573333pt;}
.y13{bottom:521.733333pt;}
.y155{bottom:523.413333pt;}
.y178{bottom:527.173333pt;}
.y130{bottom:528.533333pt;}
.ye0{bottom:532.053333pt;}
.y54{bottom:536.533333pt;}
.y12{bottom:537.413333pt;}
.y154{bottom:539.093333pt;}
.y103{bottom:540.613333pt;}
.y177{bottom:542.773333pt;}
.y12f{bottom:544.213333pt;}
.y42{bottom:547.173333pt;}
.ydf{bottom:547.733333pt;}
.y5f{bottom:550.213333pt;}
.y53{bottom:552.133333pt;}
.y11{bottom:553.013333pt;}
.y153{bottom:554.693333pt;}
.y12e{bottom:559.813333pt;}
.yde{bottom:563.333333pt;}
.y176{bottom:566.453333pt;}
.y52{bottom:567.813333pt;}
.y10{bottom:568.613333pt;}
.y12d{bottom:575.413333pt;}
.y152{bottom:578.293333pt;}
.y175{bottom:582.053333pt;}
.y51{bottom:583.413333pt;}
.yf{bottom:584.293333pt;}
.y102{bottom:584.533333pt;}
.ydd{bottom:586.933333pt;}
.y41{bottom:590.053333pt;}
.y12c{bottom:591.093333pt;}
.ya1{bottom:593.493333pt;}
.y151{bottom:593.973333pt;}
.y174{bottom:597.653333pt;}
.y50{bottom:599.013333pt;}
.ye{bottom:599.893333pt;}
.y40{bottom:605.653333pt;}
.y12b{bottom:606.693333pt;}
.y101{bottom:608.853333pt;}
.ya0{bottom:609.173333pt;}
.y4f{bottom:614.693333pt;}
.ydc{bottom:616.293333pt;}
.y150{bottom:617.573333pt;}
.y3f{bottom:621.333333pt;}
.yd{bottom:623.813333pt;}
.y4e{bottom:630.293333pt;}
.y9f{bottom:632.773333pt;}
.y100{bottom:633.173333pt;}
.y14f{bottom:633.253333pt;}
.y3e{bottom:636.933333pt;}
.y12a{bottom:638.373333pt;}
.ydb{bottom:640.613333pt;}
.y87{bottom:642.773333pt;}
.y18f{bottom:652.613333pt;}
.y4d{bottom:653.973333pt;}
.y14e{bottom:657.093333pt;}
.yff{bottom:657.413333pt;}
.y86{bottom:658.373333pt;}
.y173{bottom:660.613333pt;}
.y9e{bottom:664.453333pt;}
.yda{bottom:664.853333pt;}
.yc{bottom:666.693333pt;}
.y3d{bottom:668.613333pt;}
.y129{bottom:669.573333pt;}
.y85{bottom:673.973333pt;}
.y172{bottom:676.213333pt;}
.y9d{bottom:680.053333pt;}
.yfe{bottom:681.733333pt;}
.y3c{bottom:684.213333pt;}
.y128{bottom:685.253333pt;}
.y4c{bottom:685.573333pt;}
.yd9{bottom:689.173333pt;}
.y84{bottom:689.653333pt;}
.y171{bottom:691.813333pt;}
.y9c{bottom:695.653333pt;}
.yb{bottom:698.533333pt;}
.y3b{bottom:699.813333pt;}
.y14d{bottom:700.053333pt;}
.y127{bottom:700.853333pt;}
.yc5{bottom:701.253333pt;}
.y83{bottom:705.253333pt;}
.yfd{bottom:706.053333pt;}
.y9b{bottom:711.333333pt;}
.yd7{bottom:713.493333pt;}
.y4b{bottom:714.213333pt;}
.yc4{bottom:714.613333pt;}
.y3a{bottom:715.493333pt;}
.y126{bottom:716.533333pt;}
.y14c{bottom:723.973333pt;}
.y82{bottom:728.933333pt;}
.yfc{bottom:730.373333pt;}
.ya{bottom:730.533333pt;}
.y39{bottom:731.093333pt;}
.y125{bottom:732.133333pt;}
.yd4{bottom:737.733333pt;}
.yc3{bottom:737.893333pt;}
.y9a{bottom:742.933333pt;}
.yfb{bottom:754.613333pt;}
.y170{bottom:754.693333pt;}
.y14b{bottom:756.853333pt;}
.y81{bottom:760.533333pt;}
.yc2{bottom:761.253333pt;}
.yd6{bottom:762.053333pt;}
.y9{bottom:762.533333pt;}
.y38{bottom:762.693333pt;}
.y124{bottom:763.733333pt;}
.y16f{bottom:770.373333pt;}
.y14a{bottom:772.533333pt;}
.y99{bottom:774.613333pt;}
.y80{bottom:776.133333pt;}
.y37{bottom:778.373333pt;}
.yfa{bottom:778.933333pt;}
.y123{bottom:779.413333pt;}
.y8{bottom:781.893333pt;}
.yc1{bottom:784.613333pt;}
.y18e{bottom:785.973333pt;}
.y7f{bottom:791.813333pt;}
.y36{bottom:793.973333pt;}
.y122{bottom:795.013333pt;}
.y149{bottom:796.453333pt;}
.y7{bottom:797.893333pt;}
.yf9{bottom:803.253333pt;}
.yd3{bottom:805.333333pt;}
.y98{bottom:806.213333pt;}
.y7e{bottom:807.413333pt;}
.yc0{bottom:807.893333pt;}
.y35{bottom:809.653333pt;}
.y121{bottom:810.693333pt;}
.y97{bottom:821.813333pt;}
.y7d{bottom:823.013333pt;}
.y16e{bottom:825.253333pt;}
.y120{bottom:826.293333pt;}
.y6{bottom:826.613333pt;}
.yf8{bottom:827.493333pt;}
.y148{bottom:829.573333pt;}
.ybf{bottom:831.253333pt;}
.y93{bottom:834.453333pt;}
.yd2{bottom:837.013333pt;}
.y7c{bottom:838.693333pt;}
.y34{bottom:841.253333pt;}
.y11f{bottom:841.893333pt;}
.y5{bottom:843.813333pt;}
.y16d{bottom:848.853333pt;}
.yf5{bottom:851.813333pt;}
.yd1{bottom:852.613333pt;}
.y7b{bottom:854.293333pt;}
.ybe{bottom:854.613333pt;}
.y33{bottom:856.853333pt;}
.y11e{bottom:857.573333pt;}
.y16c{bottom:864.533333pt;}
.yd0{bottom:868.213333pt;}
.y7a{bottom:869.973333pt;}
.y32{bottom:872.533333pt;}
.y11d{bottom:873.173333pt;}
.yf7{bottom:876.133333pt;}
.y4{bottom:877.893333pt;}
.y18d{bottom:880.133333pt;}
.ycf{bottom:883.893333pt;}
.y31{bottom:888.133333pt;}
.y11c{bottom:888.853333pt;}
.y79{bottom:893.573333pt;}
.y92{bottom:895.813333pt;}
.yce{bottom:899.520000pt;}
.y3{bottom:899.840000pt;}
.ybd{bottom:901.280000pt;}
.y30{bottom:903.840000pt;}
.y11b{bottom:912.720000pt;}
.ycd{bottom:915.200000pt;}
.yf4{bottom:919.440000pt;}
.ybc{bottom:924.640000pt;}
.y78{bottom:925.200000pt;}
.y91{bottom:927.440000pt;}
.ycc{bottom:930.800000pt;}
.y2f{bottom:935.440000pt;}
.y77{bottom:941.600000pt;}
.y90{bottom:943.040000pt;}
.yba{bottom:947.920000pt;}
.y2e{bottom:951.040000pt;}
.y11a{bottom:953.360000pt;}
.y76{bottom:958.000000pt;}
.ycb{bottom:958.320000pt;}
.y8f{bottom:958.720000pt;}
.y2d{bottom:966.720000pt;}
.yb8{bottom:971.280000pt;}
.y75{bottom:973.600000pt;}
.y8e{bottom:974.320000pt;}
.y119{bottom:977.680000pt;}
.yca{bottom:982.000000pt;}
.y2c{bottom:982.320000pt;}
.y74{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y118{bottom:1001.920000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h16{height:22.640000pt;}
.h18{height:22.720000pt;}
.h19{height:22.746667pt;}
.h1c{height:23.600000pt;}
.h20{height:23.626667pt;}
.h1b{height:23.680000pt;}
.h1e{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:33.006875pt;}
.h3{height:35.644531pt;}
.hf{height:42.320000pt;}
.h1d{height:43.280000pt;}
.h17{height:45.246562pt;}
.h15{height:46.434375pt;}
.h7{height:46.446875pt;}
.h8{height:47.621094pt;}
.h21{height:47.920000pt;}
.h1f{height:47.946667pt;}
.h1a{height:48.000000pt;}
.h9{height:49.581562pt;}
.h22{height:50.896875pt;}
.h5{height:52.183594pt;}
.he{height:53.309531pt;}
.hd{height:54.927899pt;}
.hc{height:55.631875pt;}
.h12{height:57.031250pt;}
.h13{height:58.000000pt;}
.hb{height:60.961875pt;}
.ha{height:63.128437pt;}
.h14{height:66.278125pt;}
.h4{height:66.441406pt;}
.h11{height:92.871250pt;}
.h10{height:106.598125pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:42.240000pt;}
.w11{width:48.320000pt;}
.w24{width:58.640000pt;}
.w17{width:59.360000pt;}
.w26{width:60.320000pt;}
.wf{width:61.040000pt;}
.w13{width:61.066667pt;}
.w25{width:62.266667pt;}
.w22{width:64.400000pt;}
.w21{width:64.800000pt;}
.w23{width:64.880000pt;}
.w18{width:65.360000pt;}
.w1a{width:65.546667pt;}
.w12{width:68.160000pt;}
.wd{width:68.186667pt;}
.w20{width:69.280000pt;}
.we{width:70.000000pt;}
.w27{width:70.720000pt;}
.w1d{width:71.040000pt;}
.w19{width:71.360000pt;}
.w1b{width:72.720000pt;}
.w1c{width:74.400000pt;}
.w10{width:80.480000pt;}
.w1e{width:82.746667pt;}
.w7{width:93.200000pt;}
.w4{width:93.920000pt;}
.w14{width:110.400000pt;}
.w15{width:119.066667pt;}
.w8{width:165.360000pt;}
.w9{width:181.146667pt;}
.wa{width:193.120000pt;}
.w5{width:239.920000pt;}
.w6{width:239.946667pt;}
.wb{width:243.466667pt;}
.w3{width:302.106667pt;}
.w1f{width:450.106667pt;}
.w16{width:483.706667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:4.320000pt;}
.x10{left:7.200000pt;}
.x1{left:60.480000pt;}
.x12{left:83.440000pt;}
.x8{left:84.479988pt;}
.x1b{left:90.959988pt;}
.x27{left:95.280000pt;}
.x35{left:98.879988pt;}
.xd{left:106.320000pt;}
.x9{left:108.479988pt;}
.x16{left:111.146667pt;}
.x14{left:117.600000pt;}
.x13{left:122.800000pt;}
.xe{left:138.320000pt;}
.x11{left:157.066667pt;}
.x17{left:176.506667pt;}
.x1c{left:178.346667pt;}
.x2{left:180.266655pt;}
.xc{left:198.986667pt;}
.x28{left:214.986667pt;}
.x7{left:229.466655pt;}
.x30{left:244.106667pt;}
.x5{left:250.346655pt;}
.x22{left:257.306667pt;}
.x18{left:270.346667pt;}
.x29{left:274.986667pt;}
.xb{left:281.146655pt;}
.x23{left:306.266667pt;}
.x31{left:309.226667pt;}
.x2a{left:340.986667pt;}
.x1e{left:372.186667pt;}
.x24{left:375.066667pt;}
.x15{left:396.986667pt;}
.x2b{left:412.986667pt;}
.x1f{left:415.066667pt;}
.x32{left:434.106667pt;}
.x19{left:436.346667pt;}
.x25{left:445.786667pt;}
.x2c{left:479.253333pt;}
.x20{left:483.893333pt;}
.x33{left:497.013333pt;}
.xf{left:501.093333pt;}
.x26{left:507.493333pt;}
.xa{left:529.013322pt;}
.x2d{left:552.613333pt;}
.x21{left:554.613333pt;}
.x34{left:558.053333pt;}
.x1a{left:605.013322pt;}
.x4{left:616.053322pt;}
.x2e{left:627.653333pt;}
.x2f{left:629.413333pt;}
.x6{left:634.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; }
  