
    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_f973c883c4398fae77df1747.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.747559;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_55701e21135d4558a543284b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_43179581ef397e819d900bf0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939941;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_a4beb75c4cf219bed16330f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_ad85e74d62a7d8cd7878b13c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.688477;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_3e6d8b06c4f54fdd6dd82c79.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.688477;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_e698a6201d6ce4bc978d7a22.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_c48d3c155e1fac5b6f6bad8a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.700195;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8b8e3097f7b12cff24312ca1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.700195;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_d8310ffa42ec046f77a734b8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.066406;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:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.160000px;}
.ls11{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.414600px;}
.ls1c{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.012960px;}
.ls18{letter-spacing:0.053280px;}
.ls26{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.091440px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.237600px;}
.ls2d{letter-spacing:0.259920px;}
.ls2e{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.480000px;}
.ls23{letter-spacing:0.709200px;}
.lsa{letter-spacing:0.720000px;}
.lsc{letter-spacing:1.440000px;}
.lsb{letter-spacing:2.160000px;}
.ls0{letter-spacing:2.880000px;}
.ls1a{letter-spacing:4.320000px;}
.ls1{letter-spacing:6.480000px;}
.ls29{letter-spacing:7.920000px;}
.lsf{letter-spacing:8.640000px;}
.ls27{letter-spacing:10.080000px;}
.ls28{letter-spacing:10.260000px;}
.ls9{letter-spacing:10.800000px;}
.ls1e{letter-spacing:12.924000px;}
.ls1d{letter-spacing:13.479600px;}
.ls24{letter-spacing:13.491360px;}
.ls25{letter-spacing:13.679280px;}
.ls17{letter-spacing:13.680000px;}
.ls2c{letter-spacing:16.506720px;}
.ls22{letter-spacing:16.559280px;}
.ls21{letter-spacing:16.959600px;}
.lsd{letter-spacing:19.440000px;}
.ls15{letter-spacing:21.600000px;}
.ls16{letter-spacing:21.720000px;}
.ls1b{letter-spacing:24.480000px;}
.ls13{letter-spacing:24.600000px;}
.ls14{letter-spacing:37.440000px;}
.ls2a{letter-spacing:46.026720px;}
.lse{letter-spacing:49.860000px;}
.ls8{letter-spacing:106.901280px;}
.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;}
}
.ws1{word-spacing:-84.240000px;}
.wsf{word-spacing:-59.772960px;}
.wsb{word-spacing:-59.760000px;}
.wsc{word-spacing:-46.268640px;}
.ws11{word-spacing:-46.092960px;}
.wsd{word-spacing:-46.080720px;}
.ws10{word-spacing:-46.067040px;}
.wse{word-spacing:-43.200720px;}
.ws6{word-spacing:-21.060000px;}
.ws8{word-spacing:-18.720000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws2{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.wsa{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws5{word-spacing:0.000000px;}
._1d{margin-left:-4.679760px;}
._1c{margin-left:-3.336240px;}
._8{margin-left:-2.303760px;}
._0{margin-left:-1.222800px;}
._4{width:1.156560px;}
._11{width:2.187120px;}
._7{width:3.546240px;}
._6{width:5.064720px;}
._b{width:6.486240px;}
._1{width:7.551360px;}
._5{width:8.707920px;}
._10{width:10.695120px;}
._f{width:11.709840px;}
._12{width:12.881040px;}
._d{width:13.976640px;}
._e{width:15.018720px;}
._17{width:16.067280px;}
._24{width:17.268720px;}
._1a{width:19.417440px;}
._c{width:21.130560px;}
._22{width:22.583760px;}
._20{width:24.385680px;}
._15{width:25.701120px;}
._16{width:26.725200px;}
._19{width:28.219440px;}
._14{width:29.308560px;}
._13{width:30.323280px;}
._2{width:31.993920px;}
._3{width:33.517440px;}
._1f{width:34.738560px;}
._1b{width:35.904000px;}
._21{width:37.582800px;}
._18{width:38.664000px;}
._9{width:40.803840px;}
._a{width:41.827920px;}
._23{width:45.504000px;}
._1e{width:49.650240px;}
._26{width:52.529040px;}
._25{width:54.142560px;}
._29{width:96.094080px;}
._28{width:97.349040px;}
._2a{width:99.539040px;}
._27{width:100.554960px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y72{bottom:3.240000px;}
.y6f{bottom:3.270000px;}
.ya2{bottom:3.420000px;}
.ya0{bottom:3.600000px;}
.ya1{bottom:3.960000px;}
.y7a{bottom:11.880000px;}
.y82{bottom:20.340000px;}
.y71{bottom:20.520000px;}
.y7d{bottom:20.550000px;}
.y81{bottom:37.620000px;}
.y74{bottom:37.800000px;}
.y80{bottom:54.900000px;}
.y3{bottom:57.060000px;}
.y2{bottom:74.340000px;}
.y33{bottom:111.060000px;}
.ye0{bottom:115.200000px;}
.y32{bottom:116.280000px;}
.yb4{bottom:116.460000px;}
.y31{bottom:128.340000px;}
.yfc{bottom:128.700000px;}
.y5b{bottom:130.860000px;}
.y30{bottom:133.560000px;}
.ydf{bottom:137.700000px;}
.yb3{bottom:138.960000px;}
.y2f{bottom:145.620000px;}
.y2e{bottom:150.840000px;}
.yfb{bottom:151.200000px;}
.y5a{bottom:153.360000px;}
.y12f{bottom:159.300000px;}
.yde{bottom:160.200000px;}
.yb2{bottom:161.460000px;}
.y2d{bottom:162.900000px;}
.y73{bottom:165.420000px;}
.y2c{bottom:168.120000px;}
.yfa{bottom:173.700000px;}
.y59{bottom:175.860000px;}
.y12e{bottom:176.580000px;}
.y2b{bottom:180.180000px;}
.ydd{bottom:182.700000px;}
.yb1{bottom:183.960000px;}
.y2a{bottom:185.400000px;}
.y12d{bottom:193.860000px;}
.y29{bottom:197.280000px;}
.y58{bottom:198.360000px;}
.ydc{bottom:205.200000px;}
.yb0{bottom:206.460000px;}
.y12c{bottom:211.140000px;}
.yf9{bottom:215.100000px;}
.y70{bottom:217.080000px;}
.y57{bottom:220.860000px;}
.ydb{bottom:227.700000px;}
.y12b{bottom:228.420000px;}
.yaf{bottom:228.960000px;}
.y12a{bottom:245.520000px;}
.yda{bottom:250.200000px;}
.y6e{bottom:252.360000px;}
.yf8{bottom:255.810000px;}
.y28{bottom:256.170000px;}
.y8e{bottom:256.530000px;}
.y56{bottom:262.290000px;}
.y129{bottom:262.830000px;}
.yae{bottom:270.570000px;}
.yd9{bottom:272.730000px;}
.y27{bottom:277.950000px;}
.yf7{bottom:278.310000px;}
.y8d{bottom:279.030000px;}
.y128{bottom:280.110000px;}
.y6d{bottom:282.630000px;}
.yd8{bottom:295.230000px;}
.y26{bottom:297.210000px;}
.y127{bottom:297.390000px;}
.yf6{bottom:300.810000px;}
.y8c{bottom:301.530000px;}
.y55{bottom:302.970000px;}
.yd2{bottom:307.470000px;}
.y6c{bottom:310.170000px;}
.yad{bottom:311.250000px;}
.y126{bottom:314.670000px;}
.yd7{bottom:317.730000px;}
.y25{bottom:318.810000px;}
.yf5{bottom:323.310000px;}
.y8b{bottom:324.030000px;}
.y54{bottom:325.470000px;}
.yd1{bottom:329.970000px;}
.y125{bottom:331.770000px;}
.y6b{bottom:332.670000px;}
.yac{bottom:333.750000px;}
.y24{bottom:340.590000px;}
.yf4{bottom:345.810000px;}
.y8a{bottom:346.530000px;}
.y53{bottom:347.970000px;}
.y124{bottom:349.050000px;}
.yd6{bottom:349.230000px;}
.yd0{bottom:352.470000px;}
.y6a{bottom:355.170000px;}
.yab{bottom:356.250000px;}
.y23{bottom:362.370000px;}
.y123{bottom:366.330000px;}
.yf3{bottom:368.310000px;}
.y89{bottom:369.030000px;}
.y52{bottom:370.470000px;}
.ycf{bottom:374.970000px;}
.y69{bottom:377.670000px;}
.yaa{bottom:378.750000px;}
.y122{bottom:383.610000px;}
.y22{bottom:384.150000px;}
.yd5{bottom:387.750000px;}
.yf2{bottom:390.810000px;}
.y88{bottom:391.530000px;}
.y51{bottom:392.970000px;}
.y68{bottom:400.170000px;}
.y121{bottom:400.890000px;}
.yd4{bottom:404.850000px;}
.y21{bottom:406.110000px;}
.yce{bottom:406.470000px;}
.ya9{bottom:410.250000px;}
.yf1{bottom:413.310000px;}
.y87{bottom:414.030000px;}
.y50{bottom:415.470000px;}
.y120{bottom:418.170000px;}
.yd3{bottom:418.890000px;}
.y67{bottom:421.410000px;}
.y20{bottom:427.890000px;}
.ya8{bottom:428.970000px;}
.y11f{bottom:435.270000px;}
.yf0{bottom:435.810000px;}
.y86{bottom:436.530000px;}
.y4f{bottom:437.970000px;}
.y66{bottom:438.690000px;}
.ya7{bottom:446.250000px;}
.y1f{bottom:449.670000px;}
.ycd{bottom:451.470000px;}
.y11e{bottom:452.550000px;}
.y65{bottom:452.730000px;}
.y4e{bottom:460.470000px;}
.ya6{bottom:463.710000px;}
.yef{bottom:467.310000px;}
.y85{bottom:468.030000px;}
.y11d{bottom:469.830000px;}
.y1e{bottom:471.450000px;}
.ycc{bottom:473.970000px;}
.ya5{bottom:481.395000px;}
.y4d{bottom:483.015000px;}
.y84{bottom:486.795000px;}
.y11c{bottom:487.155000px;}
.yee{bottom:489.855000px;}
.y1d{bottom:493.455000px;}
.ycb{bottom:496.515000px;}
.ya4{bottom:499.035000px;}
.y11b{bottom:504.435000px;}
.yed{bottom:512.355000px;}
.y4c{bottom:514.515000px;}
.y1c{bottom:515.235000px;}
.ya3{bottom:516.495000px;}
.yca{bottom:519.015000px;}
.y83{bottom:521.355000px;}
.y11a{bottom:521.715000px;}
.y9f{bottom:534.135000px;}
.yec{bottom:534.855000px;}
.y1b{bottom:537.015000px;}
.y119{bottom:538.815000px;}
.y14f{bottom:540.075000px;}
.yc9{bottom:541.515000px;}
.y9e{bottom:552.495000px;}
.y118{bottom:556.095000px;}
.yeb{bottom:557.355000px;}
.y1a{bottom:558.795000px;}
.y4b{bottom:559.515000px;}
.yc8{bottom:564.015000px;}
.y7f{bottom:573.195000px;}
.y117{bottom:573.375000px;}
.y14e{bottom:574.455000px;}
.yea{bottom:579.855000px;}
.y19{bottom:580.575000px;}
.y4a{bottom:582.015000px;}
.yc7{bottom:586.515000px;}
.y116{bottom:590.655000px;}
.y14d{bottom:591.735000px;}
.y9d{bottom:600.015000px;}
.ye9{bottom:602.355000px;}
.y18{bottom:602.535000px;}
.y49{bottom:604.515000px;}
.y115{bottom:607.935000px;}
.yc6{bottom:609.015000px;}
.y17{bottom:624.315000px;}
.ye8{bottom:624.855000px;}
.y114{bottom:625.215000px;}
.y14c{bottom:626.295000px;}
.y48{bottom:627.015000px;}
.y9c{bottom:627.555000px;}
.yc5{bottom:631.515000px;}
.y7e{bottom:642.135000px;}
.y113{bottom:642.315000px;}
.y14b{bottom:643.575000px;}
.y16{bottom:646.095000px;}
.ye7{bottom:647.355000px;}
.y47{bottom:649.515000px;}
.y9b{bottom:650.055000px;}
.yc4{bottom:654.015000px;}
.y112{bottom:659.595000px;}
.y14a{bottom:660.675000px;}
.y15{bottom:667.875000px;}
.ye6{bottom:669.855000px;}
.y46{bottom:672.015000px;}
.y9a{bottom:672.555000px;}
.yc3{bottom:676.515000px;}
.y111{bottom:676.875000px;}
.y149{bottom:677.955000px;}
.y14{bottom:689.835000px;}
.y7c{bottom:693.795000px;}
.y110{bottom:694.155000px;}
.y45{bottom:694.515000px;}
.y99{bottom:695.055000px;}
.y148{bottom:695.235000px;}
.yc2{bottom:699.015000px;}
.ye5{bottom:711.285000px;}
.y10f{bottom:711.465000px;}
.y13{bottom:711.645000px;}
.y147{bottom:712.545000px;}
.y44{bottom:717.045000px;}
.y98{bottom:717.585000px;}
.yc1{bottom:721.545000px;}
.y7b{bottom:728.385000px;}
.y10e{bottom:728.565000px;}
.y146{bottom:729.825000px;}
.y12{bottom:733.425000px;}
.y43{bottom:739.545000px;}
.y97{bottom:740.085000px;}
.yc0{bottom:744.045000px;}
.y10d{bottom:745.845000px;}
.y145{bottom:747.105000px;}
.ye4{bottom:750.705000px;}
.y11{bottom:755.205000px;}
.y42{bottom:762.045000px;}
.y96{bottom:762.585000px;}
.y10c{bottom:763.125000px;}
.y79{bottom:763.665000px;}
.y144{bottom:764.205000px;}
.ybf{bottom:766.545000px;}
.ye3{bottom:767.985000px;}
.y10{bottom:776.985000px;}
.y10b{bottom:780.405000px;}
.y143{bottom:781.485000px;}
.y41{bottom:784.545000px;}
.y95{bottom:785.085000px;}
.ye2{bottom:785.265000px;}
.ybe{bottom:789.045000px;}
.y10a{bottom:797.685000px;}
.y142{bottom:798.765000px;}
.yf{bottom:798.945000px;}
.ye1{bottom:799.305000px;}
.y40{bottom:807.045000px;}
.y94{bottom:807.585000px;}
.y78{bottom:811.005000px;}
.ybd{bottom:811.545000px;}
.y109{bottom:814.965000px;}
.y141{bottom:816.045000px;}
.ye{bottom:820.725000px;}
.y3f{bottom:829.545000px;}
.y93{bottom:830.085000px;}
.y108{bottom:832.065000px;}
.y140{bottom:833.325000px;}
.y77{bottom:838.545000px;}
.y107{bottom:849.345000px;}
.y13f{bottom:850.605000px;}
.y3e{bottom:852.045000px;}
.y92{bottom:852.585000px;}
.ybc{bottom:853.125000px;}
.yd{bottom:859.605000px;}
.y76{bottom:861.045000px;}
.y106{bottom:866.625000px;}
.y13e{bottom:867.705000px;}
.y91{bottom:873.825000px;}
.y3d{bottom:874.545000px;}
.y75{bottom:883.545000px;}
.y105{bottom:883.905000px;}
.y13d{bottom:884.985000px;}
.y90{bottom:890.925000px;}
.ybb{bottom:893.805000px;}
.yc{bottom:899.745000px;}
.y104{bottom:901.185000px;}
.y13c{bottom:902.265000px;}
.y8f{bottom:904.965000px;}
.y3c{bottom:906.045000px;}
.yba{bottom:916.305000px;}
.y103{bottom:918.465000px;}
.y13b{bottom:919.545000px;}
.yb{bottom:920.445000px;}
.y64{bottom:925.305000px;}
.y3b{bottom:928.545000px;}
.y102{bottom:935.610000px;}
.y13a{bottom:936.870000px;}
.yb9{bottom:938.850000px;}
.y8{bottom:941.190000px;}
.ya{bottom:947.130000px;}
.y63{bottom:947.850000px;}
.y9{bottom:948.030000px;}
.y3a{bottom:951.090000px;}
.y101{bottom:952.890000px;}
.y139{bottom:953.970000px;}
.yb8{bottom:961.350000px;}
.y7{bottom:961.890000px;}
.y100{bottom:970.170000px;}
.y62{bottom:970.350000px;}
.y138{bottom:971.250000px;}
.y39{bottom:973.590000px;}
.yb7{bottom:983.850000px;}
.yff{bottom:987.450000px;}
.y137{bottom:988.530000px;}
.y61{bottom:992.850000px;}
.y38{bottom:996.090000px;}
.y6{bottom:996.450000px;}
.yfe{bottom:1004.730000px;}
.y136{bottom:1005.810000px;}
.yb6{bottom:1006.350000px;}
.y60{bottom:1015.350000px;}
.y37{bottom:1018.590000px;}
.y135{bottom:1023.090000px;}
.yb5{bottom:1028.850000px;}
.y5{bottom:1035.150000px;}
.y5f{bottom:1037.850000px;}
.y134{bottom:1040.370000px;}
.y36{bottom:1041.090000px;}
.yfd{bottom:1042.170000px;}
.y133{bottom:1057.470000px;}
.y5e{bottom:1060.350000px;}
.y35{bottom:1063.590000px;}
.y132{bottom:1074.750000px;}
.y5d{bottom:1082.850000px;}
.y4{bottom:1088.610000px;}
.y131{bottom:1092.030000px;}
.y34{bottom:1105.170000px;}
.y5c{bottom:1105.350000px;}
.y130{bottom:1109.310000px;}
.y1{bottom:1141.350000px;}
.h19{height:17.280000px;}
.hf{height:17.316000px;}
.h17{height:17.460000px;}
.h15{height:17.640000px;}
.h18{height:17.676000px;}
.h2{height:33.494766px;}
.h10{height:34.560000px;}
.h12{height:34.596000px;}
.hc{height:34.855313px;}
.h8{height:34.931602px;}
.h7{height:43.246406px;}
.he{height:43.273477px;}
.h9{height:49.992188px;}
.h16{height:51.413906px;}
.h11{height:51.660000px;}
.h14{height:51.840000px;}
.h4{height:52.136719px;}
.h3{height:53.573906px;}
.ha{height:57.051211px;}
.hb{height:59.383125px;}
.hd{height:61.329023px;}
.h6{height:64.546875px;}
.h5{height:65.170898px;}
.h13{height:68.940000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:63.720000px;}
.wa{width:72.180000px;}
.w8{width:95.616000px;}
.w10{width:97.596000px;}
.w7{width:106.380000px;}
.w6{width:106.416000px;}
.wf{width:117.936000px;}
.wb{width:140.436000px;}
.w4{width:148.896000px;}
.w9{width:164.910000px;}
.wd{width:180.750000px;}
.we{width:297.030000px;}
.wc{width:472.065000px;}
.w11{width:595.725000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:8.640000px;}
.x2c{left:9.720000px;}
.x25{left:10.980000px;}
.x29{left:12.240000px;}
.x23{left:13.680000px;}
.x27{left:15.660000px;}
.x35{left:16.920000px;}
.x1c{left:18.540000px;}
.x45{left:19.620000px;}
.x2a{left:20.700000px;}
.x46{left:22.680000px;}
.x2d{left:24.840000px;}
.x1a{left:26.460000px;}
.x42{left:28.080000px;}
.x26{left:29.520000px;}
.x2b{left:31.680000px;}
.x33{left:33.480000px;}
.x20{left:34.560000px;}
.x2f{left:36.540000px;}
.x1d{left:39.780000px;}
.x32{left:41.940000px;}
.x34{left:43.740000px;}
.x28{left:46.620000px;}
.x37{left:48.240000px;}
.x41{left:49.725000px;}
.x30{left:53.640000px;}
.x31{left:58.860000px;}
.x3c{left:65.874000px;}
.x22{left:69.120000px;}
.x44{left:77.625000px;}
.x3e{left:88.200000px;}
.x3{left:106.415987px;}
.x19{left:110.016000px;}
.x15{left:111.275987px;}
.x4c{left:119.915987px;}
.x4a{left:121.895987px;}
.x5{left:126.215987px;}
.x7{left:133.055987px;}
.x36{left:143.310000px;}
.x13{left:159.509987px;}
.x47{left:162.030000px;}
.x17{left:178.409987px;}
.x4e{left:181.469987px;}
.x2e{left:182.910000px;}
.x4f{left:208.469987px;}
.x38{left:212.430000px;}
.x3a{left:255.494987px;}
.x1b{left:258.915000px;}
.x8{left:260.534973px;}
.x43{left:262.650000px;}
.x9{left:266.654987px;}
.x18{left:276.014987px;}
.x3d{left:287.175000px;}
.x6{left:312.554987px;}
.x3b{left:313.814987px;}
.x14{left:322.454987px;}
.x4b{left:334.154987px;}
.x4d{left:370.514987px;}
.x12{left:391.574987px;}
.xa{left:394.634973px;}
.xb{left:400.754987px;}
.x1e{left:429.045000px;}
.x4{left:452.984987px;}
.xc{left:511.844973px;}
.xd{left:517.964987px;}
.x1f{left:535.425000px;}
.x48{left:542.634000px;}
.x3f{left:584.205000px;}
.x1{left:601.529987px;}
.x21{left:631.050000px;}
.xe{left:633.929973px;}
.xf{left:640.049987px;}
.x40{left:702.150000px;}
.x49{left:714.029987px;}
.x10{left:766.979973px;}
.x11{left:773.099987px;}
.x16{left:777.419987px;}
.x50{left:784.799987px;}
.x2{left:792.179987px;}
.x39{left:799.559987px;}
@media print{
.v1{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.920000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.368533pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.011520pt;}
.ls18{letter-spacing:0.047360pt;}
.ls26{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.081280pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.211200pt;}
.ls2d{letter-spacing:0.231040pt;}
.ls2e{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.426667pt;}
.ls23{letter-spacing:0.630400pt;}
.lsa{letter-spacing:0.640000pt;}
.lsc{letter-spacing:1.280000pt;}
.lsb{letter-spacing:1.920000pt;}
.ls0{letter-spacing:2.560000pt;}
.ls1a{letter-spacing:3.840000pt;}
.ls1{letter-spacing:5.760000pt;}
.ls29{letter-spacing:7.040000pt;}
.lsf{letter-spacing:7.680000pt;}
.ls27{letter-spacing:8.960000pt;}
.ls28{letter-spacing:9.120000pt;}
.ls9{letter-spacing:9.600000pt;}
.ls1e{letter-spacing:11.488000pt;}
.ls1d{letter-spacing:11.981867pt;}
.ls24{letter-spacing:11.992320pt;}
.ls25{letter-spacing:12.159360pt;}
.ls17{letter-spacing:12.160000pt;}
.ls2c{letter-spacing:14.672640pt;}
.ls22{letter-spacing:14.719360pt;}
.ls21{letter-spacing:15.075200pt;}
.lsd{letter-spacing:17.280000pt;}
.ls15{letter-spacing:19.200000pt;}
.ls16{letter-spacing:19.306667pt;}
.ls1b{letter-spacing:21.760000pt;}
.ls13{letter-spacing:21.866667pt;}
.ls14{letter-spacing:33.280000pt;}
.ls2a{letter-spacing:40.912640pt;}
.lse{letter-spacing:44.320000pt;}
.ls8{letter-spacing:95.023360pt;}
.ws1{word-spacing:-74.880000pt;}
.wsf{word-spacing:-53.131520pt;}
.wsb{word-spacing:-53.120000pt;}
.wsc{word-spacing:-41.127680pt;}
.ws11{word-spacing:-40.971520pt;}
.wsd{word-spacing:-40.960640pt;}
.ws10{word-spacing:-40.948480pt;}
.wse{word-spacing:-38.400640pt;}
.ws6{word-spacing:-18.720000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5{word-spacing:0.000000pt;}
._1d{margin-left:-4.159787pt;}
._1c{margin-left:-2.965547pt;}
._8{margin-left:-2.047787pt;}
._0{margin-left:-1.086933pt;}
._4{width:1.028053pt;}
._11{width:1.944107pt;}
._7{width:3.152213pt;}
._6{width:4.501973pt;}
._b{width:5.765547pt;}
._1{width:6.712320pt;}
._5{width:7.740373pt;}
._10{width:9.506773pt;}
._f{width:10.408747pt;}
._12{width:11.449813pt;}
._d{width:12.423680pt;}
._e{width:13.349973pt;}
._17{width:14.282027pt;}
._24{width:15.349973pt;}
._1a{width:17.259947pt;}
._c{width:18.782720pt;}
._22{width:20.074453pt;}
._20{width:21.676160pt;}
._15{width:22.845440pt;}
._16{width:23.755733pt;}
._19{width:25.083947pt;}
._14{width:26.052053pt;}
._13{width:26.954027pt;}
._2{width:28.439040pt;}
._3{width:29.793280pt;}
._1f{width:30.878720pt;}
._1b{width:31.914667pt;}
._21{width:33.406933pt;}
._18{width:34.368000pt;}
._9{width:36.270080pt;}
._a{width:37.180373pt;}
._23{width:40.448000pt;}
._1e{width:44.133547pt;}
._26{width:46.692480pt;}
._25{width:48.126720pt;}
._29{width:85.416960pt;}
._28{width:86.532480pt;}
._2a{width:88.479147pt;}
._27{width:89.382187pt;}
.fs6{font-size:34.560000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:2.880000pt;}
.y6f{bottom:2.906667pt;}
.ya2{bottom:3.040000pt;}
.ya0{bottom:3.200000pt;}
.ya1{bottom:3.520000pt;}
.y7a{bottom:10.560000pt;}
.y82{bottom:18.080000pt;}
.y71{bottom:18.240000pt;}
.y7d{bottom:18.266667pt;}
.y81{bottom:33.440000pt;}
.y74{bottom:33.600000pt;}
.y80{bottom:48.800000pt;}
.y3{bottom:50.720000pt;}
.y2{bottom:66.080000pt;}
.y33{bottom:98.720000pt;}
.ye0{bottom:102.400000pt;}
.y32{bottom:103.360000pt;}
.yb4{bottom:103.520000pt;}
.y31{bottom:114.080000pt;}
.yfc{bottom:114.400000pt;}
.y5b{bottom:116.320000pt;}
.y30{bottom:118.720000pt;}
.ydf{bottom:122.400000pt;}
.yb3{bottom:123.520000pt;}
.y2f{bottom:129.440000pt;}
.y2e{bottom:134.080000pt;}
.yfb{bottom:134.400000pt;}
.y5a{bottom:136.320000pt;}
.y12f{bottom:141.600000pt;}
.yde{bottom:142.400000pt;}
.yb2{bottom:143.520000pt;}
.y2d{bottom:144.800000pt;}
.y73{bottom:147.040000pt;}
.y2c{bottom:149.440000pt;}
.yfa{bottom:154.400000pt;}
.y59{bottom:156.320000pt;}
.y12e{bottom:156.960000pt;}
.y2b{bottom:160.160000pt;}
.ydd{bottom:162.400000pt;}
.yb1{bottom:163.520000pt;}
.y2a{bottom:164.800000pt;}
.y12d{bottom:172.320000pt;}
.y29{bottom:175.360000pt;}
.y58{bottom:176.320000pt;}
.ydc{bottom:182.400000pt;}
.yb0{bottom:183.520000pt;}
.y12c{bottom:187.680000pt;}
.yf9{bottom:191.200000pt;}
.y70{bottom:192.960000pt;}
.y57{bottom:196.320000pt;}
.ydb{bottom:202.400000pt;}
.y12b{bottom:203.040000pt;}
.yaf{bottom:203.520000pt;}
.y12a{bottom:218.240000pt;}
.yda{bottom:222.400000pt;}
.y6e{bottom:224.320000pt;}
.yf8{bottom:227.386667pt;}
.y28{bottom:227.706667pt;}
.y8e{bottom:228.026667pt;}
.y56{bottom:233.146667pt;}
.y129{bottom:233.626667pt;}
.yae{bottom:240.506667pt;}
.yd9{bottom:242.426667pt;}
.y27{bottom:247.066667pt;}
.yf7{bottom:247.386667pt;}
.y8d{bottom:248.026667pt;}
.y128{bottom:248.986667pt;}
.y6d{bottom:251.226667pt;}
.yd8{bottom:262.426667pt;}
.y26{bottom:264.186667pt;}
.y127{bottom:264.346667pt;}
.yf6{bottom:267.386667pt;}
.y8c{bottom:268.026667pt;}
.y55{bottom:269.306667pt;}
.yd2{bottom:273.306667pt;}
.y6c{bottom:275.706667pt;}
.yad{bottom:276.666667pt;}
.y126{bottom:279.706667pt;}
.yd7{bottom:282.426667pt;}
.y25{bottom:283.386667pt;}
.yf5{bottom:287.386667pt;}
.y8b{bottom:288.026667pt;}
.y54{bottom:289.306667pt;}
.yd1{bottom:293.306667pt;}
.y125{bottom:294.906667pt;}
.y6b{bottom:295.706667pt;}
.yac{bottom:296.666667pt;}
.y24{bottom:302.746667pt;}
.yf4{bottom:307.386667pt;}
.y8a{bottom:308.026667pt;}
.y53{bottom:309.306667pt;}
.y124{bottom:310.266667pt;}
.yd6{bottom:310.426667pt;}
.yd0{bottom:313.306667pt;}
.y6a{bottom:315.706667pt;}
.yab{bottom:316.666667pt;}
.y23{bottom:322.106667pt;}
.y123{bottom:325.626667pt;}
.yf3{bottom:327.386667pt;}
.y89{bottom:328.026667pt;}
.y52{bottom:329.306667pt;}
.ycf{bottom:333.306667pt;}
.y69{bottom:335.706667pt;}
.yaa{bottom:336.666667pt;}
.y122{bottom:340.986667pt;}
.y22{bottom:341.466667pt;}
.yd5{bottom:344.666667pt;}
.yf2{bottom:347.386667pt;}
.y88{bottom:348.026667pt;}
.y51{bottom:349.306667pt;}
.y68{bottom:355.706667pt;}
.y121{bottom:356.346667pt;}
.yd4{bottom:359.866667pt;}
.y21{bottom:360.986667pt;}
.yce{bottom:361.306667pt;}
.ya9{bottom:364.666667pt;}
.yf1{bottom:367.386667pt;}
.y87{bottom:368.026667pt;}
.y50{bottom:369.306667pt;}
.y120{bottom:371.706667pt;}
.yd3{bottom:372.346667pt;}
.y67{bottom:374.586667pt;}
.y20{bottom:380.346667pt;}
.ya8{bottom:381.306667pt;}
.y11f{bottom:386.906667pt;}
.yf0{bottom:387.386667pt;}
.y86{bottom:388.026667pt;}
.y4f{bottom:389.306667pt;}
.y66{bottom:389.946667pt;}
.ya7{bottom:396.666667pt;}
.y1f{bottom:399.706667pt;}
.ycd{bottom:401.306667pt;}
.y11e{bottom:402.266667pt;}
.y65{bottom:402.426667pt;}
.y4e{bottom:409.306667pt;}
.ya6{bottom:412.186667pt;}
.yef{bottom:415.386667pt;}
.y85{bottom:416.026667pt;}
.y11d{bottom:417.626667pt;}
.y1e{bottom:419.066667pt;}
.ycc{bottom:421.306667pt;}
.ya5{bottom:427.906667pt;}
.y4d{bottom:429.346667pt;}
.y84{bottom:432.706667pt;}
.y11c{bottom:433.026667pt;}
.yee{bottom:435.426667pt;}
.y1d{bottom:438.626667pt;}
.ycb{bottom:441.346667pt;}
.ya4{bottom:443.586667pt;}
.y11b{bottom:448.386667pt;}
.yed{bottom:455.426667pt;}
.y4c{bottom:457.346667pt;}
.y1c{bottom:457.986667pt;}
.ya3{bottom:459.106667pt;}
.yca{bottom:461.346667pt;}
.y83{bottom:463.426667pt;}
.y11a{bottom:463.746667pt;}
.y9f{bottom:474.786667pt;}
.yec{bottom:475.426667pt;}
.y1b{bottom:477.346667pt;}
.y119{bottom:478.946667pt;}
.y14f{bottom:480.066667pt;}
.yc9{bottom:481.346667pt;}
.y9e{bottom:491.106667pt;}
.y118{bottom:494.306667pt;}
.yeb{bottom:495.426667pt;}
.y1a{bottom:496.706667pt;}
.y4b{bottom:497.346667pt;}
.yc8{bottom:501.346667pt;}
.y7f{bottom:509.506667pt;}
.y117{bottom:509.666667pt;}
.y14e{bottom:510.626667pt;}
.yea{bottom:515.426667pt;}
.y19{bottom:516.066667pt;}
.y4a{bottom:517.346667pt;}
.yc7{bottom:521.346667pt;}
.y116{bottom:525.026667pt;}
.y14d{bottom:525.986667pt;}
.y9d{bottom:533.346667pt;}
.ye9{bottom:535.426667pt;}
.y18{bottom:535.586667pt;}
.y49{bottom:537.346667pt;}
.y115{bottom:540.386667pt;}
.yc6{bottom:541.346667pt;}
.y17{bottom:554.946667pt;}
.ye8{bottom:555.426667pt;}
.y114{bottom:555.746667pt;}
.y14c{bottom:556.706667pt;}
.y48{bottom:557.346667pt;}
.y9c{bottom:557.826667pt;}
.yc5{bottom:561.346667pt;}
.y7e{bottom:570.786667pt;}
.y113{bottom:570.946667pt;}
.y14b{bottom:572.066667pt;}
.y16{bottom:574.306667pt;}
.ye7{bottom:575.426667pt;}
.y47{bottom:577.346667pt;}
.y9b{bottom:577.826667pt;}
.yc4{bottom:581.346667pt;}
.y112{bottom:586.306667pt;}
.y14a{bottom:587.266667pt;}
.y15{bottom:593.666667pt;}
.ye6{bottom:595.426667pt;}
.y46{bottom:597.346667pt;}
.y9a{bottom:597.826667pt;}
.yc3{bottom:601.346667pt;}
.y111{bottom:601.666667pt;}
.y149{bottom:602.626667pt;}
.y14{bottom:613.186667pt;}
.y7c{bottom:616.706667pt;}
.y110{bottom:617.026667pt;}
.y45{bottom:617.346667pt;}
.y99{bottom:617.826667pt;}
.y148{bottom:617.986667pt;}
.yc2{bottom:621.346667pt;}
.ye5{bottom:632.253333pt;}
.y10f{bottom:632.413333pt;}
.y13{bottom:632.573333pt;}
.y147{bottom:633.373333pt;}
.y44{bottom:637.373333pt;}
.y98{bottom:637.853333pt;}
.yc1{bottom:641.373333pt;}
.y7b{bottom:647.453333pt;}
.y10e{bottom:647.613333pt;}
.y146{bottom:648.733333pt;}
.y12{bottom:651.933333pt;}
.y43{bottom:657.373333pt;}
.y97{bottom:657.853333pt;}
.yc0{bottom:661.373333pt;}
.y10d{bottom:662.973333pt;}
.y145{bottom:664.093333pt;}
.ye4{bottom:667.293333pt;}
.y11{bottom:671.293333pt;}
.y42{bottom:677.373333pt;}
.y96{bottom:677.853333pt;}
.y10c{bottom:678.333333pt;}
.y79{bottom:678.813333pt;}
.y144{bottom:679.293333pt;}
.ybf{bottom:681.373333pt;}
.ye3{bottom:682.653333pt;}
.y10{bottom:690.653333pt;}
.y10b{bottom:693.693333pt;}
.y143{bottom:694.653333pt;}
.y41{bottom:697.373333pt;}
.y95{bottom:697.853333pt;}
.ye2{bottom:698.013333pt;}
.ybe{bottom:701.373333pt;}
.y10a{bottom:709.053333pt;}
.y142{bottom:710.013333pt;}
.yf{bottom:710.173333pt;}
.ye1{bottom:710.493333pt;}
.y40{bottom:717.373333pt;}
.y94{bottom:717.853333pt;}
.y78{bottom:720.893333pt;}
.ybd{bottom:721.373333pt;}
.y109{bottom:724.413333pt;}
.y141{bottom:725.373333pt;}
.ye{bottom:729.533333pt;}
.y3f{bottom:737.373333pt;}
.y93{bottom:737.853333pt;}
.y108{bottom:739.613333pt;}
.y140{bottom:740.733333pt;}
.y77{bottom:745.373333pt;}
.y107{bottom:754.973333pt;}
.y13f{bottom:756.093333pt;}
.y3e{bottom:757.373333pt;}
.y92{bottom:757.853333pt;}
.ybc{bottom:758.333333pt;}
.yd{bottom:764.093333pt;}
.y76{bottom:765.373333pt;}
.y106{bottom:770.333333pt;}
.y13e{bottom:771.293333pt;}
.y91{bottom:776.733333pt;}
.y3d{bottom:777.373333pt;}
.y75{bottom:785.373333pt;}
.y105{bottom:785.693333pt;}
.y13d{bottom:786.653333pt;}
.y90{bottom:791.933333pt;}
.ybb{bottom:794.493333pt;}
.yc{bottom:799.773333pt;}
.y104{bottom:801.053333pt;}
.y13c{bottom:802.013333pt;}
.y8f{bottom:804.413333pt;}
.y3c{bottom:805.373333pt;}
.yba{bottom:814.493333pt;}
.y103{bottom:816.413333pt;}
.y13b{bottom:817.373333pt;}
.yb{bottom:818.173333pt;}
.y64{bottom:822.493333pt;}
.y3b{bottom:825.373333pt;}
.y102{bottom:831.653333pt;}
.y13a{bottom:832.773333pt;}
.yb9{bottom:834.533333pt;}
.y8{bottom:836.613333pt;}
.ya{bottom:841.893333pt;}
.y63{bottom:842.533333pt;}
.y9{bottom:842.693333pt;}
.y3a{bottom:845.413333pt;}
.y101{bottom:847.013333pt;}
.y139{bottom:847.973333pt;}
.yb8{bottom:854.533333pt;}
.y7{bottom:855.013333pt;}
.y100{bottom:862.373333pt;}
.y62{bottom:862.533333pt;}
.y138{bottom:863.333333pt;}
.y39{bottom:865.413333pt;}
.yb7{bottom:874.533333pt;}
.yff{bottom:877.733333pt;}
.y137{bottom:878.693333pt;}
.y61{bottom:882.533333pt;}
.y38{bottom:885.413333pt;}
.y6{bottom:885.733333pt;}
.yfe{bottom:893.093333pt;}
.y136{bottom:894.053333pt;}
.yb6{bottom:894.533333pt;}
.y60{bottom:902.533333pt;}
.y37{bottom:905.413333pt;}
.y135{bottom:909.413333pt;}
.yb5{bottom:914.533333pt;}
.y5{bottom:920.133333pt;}
.y5f{bottom:922.533333pt;}
.y134{bottom:924.773333pt;}
.y36{bottom:925.413333pt;}
.yfd{bottom:926.373333pt;}
.y133{bottom:939.973333pt;}
.y5e{bottom:942.533333pt;}
.y35{bottom:945.413333pt;}
.y132{bottom:955.333333pt;}
.y5d{bottom:962.533333pt;}
.y4{bottom:967.653333pt;}
.y131{bottom:970.693333pt;}
.y34{bottom:982.373333pt;}
.y5c{bottom:982.533333pt;}
.y130{bottom:986.053333pt;}
.y1{bottom:1014.533333pt;}
.h19{height:15.360000pt;}
.hf{height:15.392000pt;}
.h17{height:15.520000pt;}
.h15{height:15.680000pt;}
.h18{height:15.712000pt;}
.h2{height:29.773125pt;}
.h10{height:30.720000pt;}
.h12{height:30.752000pt;}
.hc{height:30.982500pt;}
.h8{height:31.050312pt;}
.h7{height:38.441250pt;}
.he{height:38.465312pt;}
.h9{height:44.437500pt;}
.h16{height:45.701250pt;}
.h11{height:45.920000pt;}
.h14{height:46.080000pt;}
.h4{height:46.343750pt;}
.h3{height:47.621250pt;}
.ha{height:50.712187pt;}
.hb{height:52.785000pt;}
.hd{height:54.514687pt;}
.h6{height:57.375000pt;}
.h5{height:57.929688pt;}
.h13{height:61.280000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:56.640000pt;}
.wa{width:64.160000pt;}
.w8{width:84.992000pt;}
.w10{width:86.752000pt;}
.w7{width:94.560000pt;}
.w6{width:94.592000pt;}
.wf{width:104.832000pt;}
.wb{width:124.832000pt;}
.w4{width:132.352000pt;}
.w9{width:146.586667pt;}
.wd{width:160.666667pt;}
.we{width:264.026667pt;}
.wc{width:419.613333pt;}
.w11{width:529.533333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:7.680000pt;}
.x2c{left:8.640000pt;}
.x25{left:9.760000pt;}
.x29{left:10.880000pt;}
.x23{left:12.160000pt;}
.x27{left:13.920000pt;}
.x35{left:15.040000pt;}
.x1c{left:16.480000pt;}
.x45{left:17.440000pt;}
.x2a{left:18.400000pt;}
.x46{left:20.160000pt;}
.x2d{left:22.080000pt;}
.x1a{left:23.520000pt;}
.x42{left:24.960000pt;}
.x26{left:26.240000pt;}
.x2b{left:28.160000pt;}
.x33{left:29.760000pt;}
.x20{left:30.720000pt;}
.x2f{left:32.480000pt;}
.x1d{left:35.360000pt;}
.x32{left:37.280000pt;}
.x34{left:38.880000pt;}
.x28{left:41.440000pt;}
.x37{left:42.880000pt;}
.x41{left:44.200000pt;}
.x30{left:47.680000pt;}
.x31{left:52.320000pt;}
.x3c{left:58.554667pt;}
.x22{left:61.440000pt;}
.x44{left:69.000000pt;}
.x3e{left:78.400000pt;}
.x3{left:94.591988pt;}
.x19{left:97.792000pt;}
.x15{left:98.911988pt;}
.x4c{left:106.591988pt;}
.x4a{left:108.351988pt;}
.x5{left:112.191988pt;}
.x7{left:118.271988pt;}
.x36{left:127.386667pt;}
.x13{left:141.786655pt;}
.x47{left:144.026667pt;}
.x17{left:158.586655pt;}
.x4e{left:161.306655pt;}
.x2e{left:162.586667pt;}
.x4f{left:185.306655pt;}
.x38{left:188.826667pt;}
.x3a{left:227.106655pt;}
.x1b{left:230.146667pt;}
.x8{left:231.586643pt;}
.x43{left:233.466667pt;}
.x9{left:237.026655pt;}
.x18{left:245.346655pt;}
.x3d{left:255.266667pt;}
.x6{left:277.826655pt;}
.x3b{left:278.946655pt;}
.x14{left:286.626655pt;}
.x4b{left:297.026655pt;}
.x4d{left:329.346655pt;}
.x12{left:348.066655pt;}
.xa{left:350.786643pt;}
.xb{left:356.226655pt;}
.x1e{left:381.373333pt;}
.x4{left:402.653322pt;}
.xc{left:454.973310pt;}
.xd{left:460.413322pt;}
.x1f{left:475.933333pt;}
.x48{left:482.341333pt;}
.x3f{left:519.293333pt;}
.x1{left:534.693322pt;}
.x21{left:560.933333pt;}
.xe{left:563.493310pt;}
.xf{left:568.933322pt;}
.x40{left:624.133333pt;}
.x49{left:634.693322pt;}
.x10{left:681.759976pt;}
.x11{left:687.199988pt;}
.x16{left:691.039988pt;}
.x50{left:697.599988pt;}
.x2{left:704.159988pt;}
.x39{left:710.719988pt;}
}




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