
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_e3b2369f6d5da9f05941ae51.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_d9b81e0e70c929a1e8e43d7d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_a4448397bf5f0abf46187d5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_e58202c992e84e5d56eadce1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_761540d47bf13b142b58bf1f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_85d077a6f95663ce68cb2fe4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.766602;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_6530991eb0f6a190f63c776d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_f570ed878c6947610405eaa4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.766602;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_622e8deb790b363478b84e01.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_5ad5a39f4644585f3cff0111.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.696000px;}
.ls1e{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.463800px;}
.ls24{letter-spacing:-0.326400px;}
.ls17{letter-spacing:-0.298200px;}
.ls22{letter-spacing:-0.240600px;}
.ls13{letter-spacing:-0.186600px;}
.ls18{letter-spacing:-0.175800px;}
.ls1f{letter-spacing:-0.143400px;}
.ls7{letter-spacing:-0.115800px;}
.lsa{letter-spacing:-0.082200px;}
.ls1d{letter-spacing:-0.067200px;}
.ls29{letter-spacing:-0.064800px;}
.ls14{letter-spacing:-0.058320px;}
.ls5{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.025200px;}
.ls28{letter-spacing:0.060600px;}
.ls21{letter-spacing:0.126720px;}
.ls15{letter-spacing:0.140400px;}
.ls10{letter-spacing:0.174000px;}
.ls16{letter-spacing:0.174240px;}
.lsc{letter-spacing:0.175200px;}
.ls11{letter-spacing:0.180000px;}
.ls2b{letter-spacing:0.186600px;}
.ls1b{letter-spacing:0.195120px;}
.lsd{letter-spacing:0.306000px;}
.ls1a{letter-spacing:0.314640px;}
.ls23{letter-spacing:0.348600px;}
.ls12{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.617760px;}
.ls9{letter-spacing:0.900000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls3{letter-spacing:1.614240px;}
.ls1{letter-spacing:2.016000px;}
.ls25{letter-spacing:2.106720px;}
.ls19{letter-spacing:4.494240px;}
.ls2a{letter-spacing:5.214000px;}
.lse{letter-spacing:5.706720px;}
.ls27{letter-spacing:12.186720px;}
.lsb{letter-spacing:21.546720px;}
.ls4{letter-spacing:38.106720px;}
.ls26{letter-spacing:42.570720px;}
.ls20{letter-spacing:65.118240px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws11{word-spacing:-13.854360px;}
.ws13{word-spacing:-13.692360px;}
.ws9{word-spacing:-13.680960px;}
.ws10{word-spacing:-13.530960px;}
.ws5{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.447440px;}
.ws12{word-spacing:-13.440960px;}
.ws6{word-spacing:-13.389960px;}
.wse{word-spacing:-13.362360px;}
.wsa{word-spacing:-13.319160px;}
.wsf{word-spacing:-12.204000px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.ws7{word-spacing:-8.704680px;}
.wsc{word-spacing:-0.059760px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-581.774400px;}
._22{margin-left:-6.913680px;}
._10{margin-left:-5.079600px;}
._12{margin-left:-3.793680px;}
._d{margin-left:-2.720160px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._6{width:2.974560px;}
._8{width:4.362480px;}
._9{width:5.677200px;}
._7{width:6.721680px;}
._b{width:7.970160px;}
._a{width:9.069600px;}
._f{width:10.114080px;}
._c{width:11.357760px;}
._e{width:12.502800px;}
._13{width:15.477840px;}
._2a{width:17.177760px;}
._29{width:18.642000px;}
._2b{width:20.396400px;}
._1e{width:21.711840px;}
._2c{width:23.306400px;}
._26{width:24.487200px;}
._25{width:25.830000px;}
._27{width:29.276160px;}
._28{width:30.364320px;}
._17{width:36.245280px;}
._1f{width:39.212880px;}
._20{width:43.157040px;}
._11{width:51.010560px;}
._1d{width:52.165680px;}
._1c{width:65.369520px;}
._16{width:68.077440px;}
._1a{width:75.443520px;}
._19{width:105.715440px;}
._23{width:137.809680px;}
._1b{width:173.998320px;}
._15{width:181.624560px;}
._21{width:188.988480px;}
._14{width:192.388800px;}
._24{width:197.066880px;}
._18{width:202.674240px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf8{bottom:3.960000px;}
.yf5{bottom:5.040000px;}
.ye4{bottom:6.480000px;}
.yea{bottom:6.654000px;}
.y67{bottom:6.660000px;}
.y8d{bottom:6.840000px;}
.yec{bottom:7.380000px;}
.ye5{bottom:7.560000px;}
.yf2{bottom:7.740000px;}
.y93{bottom:8.640000px;}
.yf3{bottom:9.180000px;}
.y8f{bottom:9.360000px;}
.y65{bottom:9.720000px;}
.yef{bottom:10.110000px;}
.y91{bottom:10.620000px;}
.yf0{bottom:11.550000px;}
.yf9{bottom:18.180000px;}
.yf7{bottom:22.140000px;}
.yfb{bottom:22.320000px;}
.ye7{bottom:27.720000px;}
.ye2{bottom:28.440000px;}
.y102{bottom:28.620000px;}
.y6{bottom:61.236000px;}
.y12d{bottom:90.036000px;}
.y31{bottom:94.896000px;}
.ybd{bottom:97.416000px;}
.yeb{bottom:102.816000px;}
.y8b{bottom:103.176000px;}
.y10c{bottom:106.236000px;}
.y30{bottom:115.956000px;}
.ybc{bottom:118.476000px;}
.y12c{bottom:123.516000px;}
.y8a{bottom:124.236000px;}
.yed{bottom:124.596000px;}
.y10b{bottom:127.296000px;}
.y63{bottom:130.356000px;}
.y2f{bottom:137.016000px;}
.ybb{bottom:139.536000px;}
.y12b{bottom:144.576000px;}
.y89{bottom:145.296000px;}
.ye9{bottom:145.656000px;}
.y10a{bottom:148.356000px;}
.y62{bottom:151.410000px;}
.y2e{bottom:158.070000px;}
.yba{bottom:160.590000px;}
.y12a{bottom:165.630000px;}
.y88{bottom:166.350000px;}
.ye8{bottom:166.710000px;}
.y109{bottom:169.410000px;}
.y61{bottom:172.470000px;}
.y2d{bottom:179.130000px;}
.yb9{bottom:181.650000px;}
.y129{bottom:186.690000px;}
.y87{bottom:187.410000px;}
.ye6{bottom:187.770000px;}
.y108{bottom:190.470000px;}
.y60{bottom:193.530000px;}
.y2c{bottom:200.190000px;}
.yb8{bottom:202.710000px;}
.y128{bottom:207.750000px;}
.y86{bottom:208.470000px;}
.y107{bottom:211.530000px;}
.y5f{bottom:214.590000px;}
.y2b{bottom:221.250000px;}
.yb7{bottom:223.770000px;}
.y127{bottom:228.810000px;}
.y85{bottom:229.530000px;}
.ye1{bottom:229.890000px;}
.y106{bottom:232.590000px;}
.y5e{bottom:235.650000px;}
.y2a{bottom:242.310000px;}
.yb6{bottom:244.830000px;}
.y126{bottom:249.870000px;}
.y84{bottom:250.590000px;}
.ye3{bottom:251.850000px;}
.y105{bottom:253.650000px;}
.y5d{bottom:256.710000px;}
.y29{bottom:263.370000px;}
.yb5{bottom:265.890000px;}
.y125{bottom:270.930000px;}
.y83{bottom:271.650000px;}
.y104{bottom:274.710000px;}
.y5c{bottom:277.770000px;}
.ye0{bottom:280.290000px;}
.y28{bottom:284.475000px;}
.yb4{bottom:286.995000px;}
.y101{bottom:289.875000px;}
.y124{bottom:292.035000px;}
.y82{bottom:292.755000px;}
.y5b{bottom:298.875000px;}
.ydf{bottom:301.395000px;}
.y27{bottom:305.535000px;}
.yb3{bottom:308.055000px;}
.y103{bottom:311.835000px;}
.y123{bottom:313.095000px;}
.y81{bottom:313.815000px;}
.y5a{bottom:319.935000px;}
.yde{bottom:322.455000px;}
.y26{bottom:326.595000px;}
.yb2{bottom:329.115000px;}
.y100{bottom:332.895000px;}
.y122{bottom:334.155000px;}
.y80{bottom:334.875000px;}
.y59{bottom:340.995000px;}
.ydd{bottom:343.515000px;}
.y25{bottom:347.655000px;}
.yb1{bottom:350.175000px;}
.yff{bottom:353.955000px;}
.y121{bottom:355.215000px;}
.y7f{bottom:355.935000px;}
.y58{bottom:362.055000px;}
.ydc{bottom:364.575000px;}
.y24{bottom:368.715000px;}
.yb0{bottom:371.235000px;}
.yfe{bottom:375.015000px;}
.y120{bottom:376.275000px;}
.y7e{bottom:376.995000px;}
.y57{bottom:383.115000px;}
.ydb{bottom:385.635000px;}
.y23{bottom:389.775000px;}
.yaf{bottom:392.295000px;}
.y11f{bottom:397.335000px;}
.y7d{bottom:398.055000px;}
.y56{bottom:404.175000px;}
.yda{bottom:406.695000px;}
.y22{bottom:410.835000px;}
.yae{bottom:413.355000px;}
.yfc{bottom:417.135000px;}
.y11e{bottom:418.395000px;}
.y7c{bottom:419.115000px;}
.y55{bottom:425.235000px;}
.yd9{bottom:427.755000px;}
.y21{bottom:431.895000px;}
.yad{bottom:434.415000px;}
.yfd{bottom:438.915000px;}
.y11d{bottom:439.455000px;}
.y7b{bottom:440.175000px;}
.y54{bottom:446.295000px;}
.yd8{bottom:448.815000px;}
.y20{bottom:452.955000px;}
.yac{bottom:455.475000px;}
.y11c{bottom:460.515000px;}
.y7a{bottom:461.235000px;}
.y53{bottom:467.355000px;}
.yd7{bottom:469.695000px;}
.y1f{bottom:474.015000px;}
.yab{bottom:476.535000px;}
.y11b{bottom:481.575000px;}
.y79{bottom:482.295000px;}
.y52{bottom:488.415000px;}
.yd6{bottom:490.755000px;}
.y1e{bottom:495.075000px;}
.yaa{bottom:497.595000px;}
.y11a{bottom:502.635000px;}
.y78{bottom:503.355000px;}
.y51{bottom:509.475000px;}
.yd5{bottom:511.815000px;}
.y1d{bottom:516.135000px;}
.ya9{bottom:518.655000px;}
.y119{bottom:523.695000px;}
.y77{bottom:524.415000px;}
.y50{bottom:530.535000px;}
.yd4{bottom:532.875000px;}
.y1c{bottom:537.195000px;}
.ya8{bottom:539.715000px;}
.y118{bottom:543.495000px;}
.y76{bottom:545.475000px;}
.y4f{bottom:551.595000px;}
.yd3{bottom:553.935000px;}
.y1b{bottom:558.255000px;}
.ya7{bottom:560.775000px;}
.y117{bottom:563.295000px;}
.y75{bottom:566.385000px;}
.y4e{bottom:572.685000px;}
.yd2{bottom:575.025000px;}
.ya6{bottom:581.865000px;}
.y116{bottom:582.945000px;}
.y74{bottom:587.445000px;}
.y4d{bottom:593.745000px;}
.yd1{bottom:596.085000px;}
.y1a{bottom:602.745000px;}
.ya5{bottom:602.925000px;}
.y73{bottom:608.505000px;}
.y4c{bottom:614.805000px;}
.yd0{bottom:617.145000px;}
.y115{bottom:622.545000px;}
.ya4{bottom:623.985000px;}
.y72{bottom:629.565000px;}
.y19{bottom:632.625000px;}
.y4b{bottom:635.865000px;}
.ycf{bottom:638.205000px;}
.y114{bottom:642.345000px;}
.ya3{bottom:645.045000px;}
.y71{bottom:650.625000px;}
.y18{bottom:653.685000px;}
.y4a{bottom:656.925000px;}
.yce{bottom:659.265000px;}
.y113{bottom:663.405000px;}
.ya2{bottom:666.105000px;}
.y70{bottom:671.685000px;}
.y17{bottom:674.745000px;}
.y49{bottom:677.985000px;}
.ycd{bottom:680.325000px;}
.y112{bottom:684.465000px;}
.ya1{bottom:687.165000px;}
.y6f{bottom:692.745000px;}
.y16{bottom:695.805000px;}
.y48{bottom:699.045000px;}
.ycc{bottom:701.385000px;}
.y111{bottom:705.525000px;}
.ya0{bottom:708.225000px;}
.y6e{bottom:713.805000px;}
.y15{bottom:716.865000px;}
.y47{bottom:720.105000px;}
.ycb{bottom:722.445000px;}
.y110{bottom:725.145000px;}
.y9f{bottom:729.285000px;}
.y6d{bottom:734.865000px;}
.y14{bottom:737.925000px;}
.y46{bottom:741.165000px;}
.yca{bottom:743.505000px;}
.y10f{bottom:744.945000px;}
.y9e{bottom:750.345000px;}
.y6c{bottom:755.925000px;}
.y13{bottom:758.985000px;}
.y45{bottom:762.225000px;}
.yc9{bottom:764.565000px;}
.y10e{bottom:764.745000px;}
.y9d{bottom:771.405000px;}
.y6b{bottom:776.985000px;}
.y12{bottom:780.045000px;}
.y44{bottom:783.285000px;}
.y10d{bottom:784.545000px;}
.yc8{bottom:785.625000px;}
.y9c{bottom:792.465000px;}
.y6a{bottom:798.045000px;}
.y11{bottom:801.105000px;}
.y43{bottom:804.345000px;}
.yc7{bottom:806.685000px;}
.y69{bottom:813.165000px;}
.y9b{bottom:813.525000px;}
.y10{bottom:822.165000px;}
.y42{bottom:825.405000px;}
.yc6{bottom:827.745000px;}
.y9a{bottom:834.585000px;}
.y68{bottom:835.125000px;}
.yf{bottom:843.225000px;}
.y41{bottom:846.465000px;}
.yc5{bottom:848.850000px;}
.y99{bottom:855.690000px;}
.y66{bottom:856.230000px;}
.ye{bottom:864.330000px;}
.y40{bottom:867.570000px;}
.yc4{bottom:869.910000px;}
.y98{bottom:876.750000px;}
.y64{bottom:878.010000px;}
.yd{bottom:885.390000px;}
.y3f{bottom:888.630000px;}
.yc3{bottom:890.970000px;}
.y97{bottom:897.810000px;}
.yc{bottom:908.610000px;}
.y3e{bottom:909.690000px;}
.yc2{bottom:912.030000px;}
.y96{bottom:918.870000px;}
.y3d{bottom:930.570000px;}
.yc1{bottom:933.090000px;}
.yb{bottom:934.890000px;}
.y95{bottom:939.930000px;}
.y3c{bottom:951.630000px;}
.yc0{bottom:954.150000px;}
.ya{bottom:955.950000px;}
.y94{bottom:960.990000px;}
.y9{bottom:972.690000px;}
.ybf{bottom:975.210000px;}
.y92{bottom:976.110000px;}
.y3b{bottom:993.750000px;}
.y8{bottom:995.010000px;}
.ybe{bottom:996.270000px;}
.y90{bottom:999.870000px;}
.yfa{bottom:1011.390000px;}
.y3a{bottom:1014.810000px;}
.y7{bottom:1020.210000px;}
.y8e{bottom:1024.890000px;}
.y39{bottom:1035.870000px;}
.yf6{bottom:1048.110000px;}
.y8c{bottom:1049.370000px;}
.y38{bottom:1056.930000px;}
.y5{bottom:1060.350000px;}
.y37{bottom:1077.990000px;}
.yf4{bottom:1084.650000px;}
.y4{bottom:1092.570000px;}
.y36{bottom:1099.050000px;}
.yf1{bottom:1103.910000px;}
.y35{bottom:1120.110000px;}
.y3{bottom:1124.610000px;}
.yee{bottom:1126.590000px;}
.y34{bottom:1141.200000px;}
.y2{bottom:1156.860000px;}
.y33{bottom:1162.260000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.h19{height:19.260000px;}
.h14{height:20.880000px;}
.hc{height:21.060000px;}
.hd{height:21.096000px;}
.he{height:21.240000px;}
.h18{height:21.960000px;}
.h11{height:23.040000px;}
.hf{height:23.760000px;}
.hb{height:24.120000px;}
.h16{height:24.336000px;}
.h10{height:25.020000px;}
.h1a{height:36.540000px;}
.h1b{height:36.720000px;}
.h7{height:38.671172px;}
.h15{height:42.120000px;}
.h13{height:42.840000px;}
.h1c{height:43.020000px;}
.h12{height:45.637031px;}
.h1d{height:50.571563px;}
.h17{height:55.291992px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.ha{height:59.551172px;}
.h5{height:61.189805px;}
.h1e{height:61.423863px;}
.h9{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1e{width:60.660000px;}
.w1d{width:60.840000px;}
.w1a{width:67.536000px;}
.w19{width:74.340000px;}
.w27{width:80.316000px;}
.w28{width:80.460000px;}
.w14{width:87.120000px;}
.w13{width:87.156000px;}
.w1b{width:87.660000px;}
.w1f{width:87.876000px;}
.w24{width:88.380000px;}
.w10{width:95.040000px;}
.w9{width:96.840000px;}
.wa{width:97.056000px;}
.w4{width:97.380000px;}
.w5{width:97.416000px;}
.w12{width:102.960000px;}
.w20{width:103.140000px;}
.w23{width:104.436000px;}
.w1c{width:108.036000px;}
.wf{width:110.916000px;}
.w11{width:118.836000px;}
.w25{width:120.636000px;}
.w26{width:128.520000px;}
.wb{width:134.676000px;}
.w6{width:135.396000px;}
.w15{width:155.190000px;}
.w7{width:160.560000px;}
.w22{width:160.770000px;}
.we{width:174.270000px;}
.wc{width:175.320000px;}
.w21{width:184.350000px;}
.wd{width:189.570000px;}
.w8{width:289.155000px;}
.w3{width:290.595000px;}
.w18{width:312.510000px;}
.w17{width:337.575000px;}
.w16{width:650.085000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x17{left:13.320000px;}
.x1c{left:17.820000px;}
.x13{left:43.380000px;}
.x1{left:53.999987px;}
.x3{left:55.079987px;}
.x23{left:74.339987px;}
.x24{left:87.839987px;}
.x25{left:101.375987px;}
.x2{left:108.035987px;}
.x14{left:198.570000px;}
.x1d{left:238.350000px;}
.xd{left:243.570000px;}
.x15{left:272.910000px;}
.x22{left:318.675000px;}
.x12{left:330.735000px;}
.x16{left:340.455000px;}
.x9{left:343.155000px;}
.x5{left:344.595000px;}
.x1e{left:399.135000px;}
.xe{left:417.855000px;}
.x18{left:428.115000px;}
.xa{left:439.995000px;}
.x6{left:441.975000px;}
.x1f{left:503.565000px;}
.xf{left:528.765000px;}
.xb{left:537.045000px;}
.x7{left:539.385000px;}
.x20{left:591.945000px;}
.x19{left:596.985000px;}
.x10{left:623.805000px;}
.x1a{left:657.645000px;}
.xc{left:671.730000px;}
.x8{left:674.790000px;}
.x21{left:712.590000px;}
.x11{left:742.650000px;}
.x1b{left:745.530000px;}
.x26{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.618667pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls24{letter-spacing:-0.290133pt;}
.ls17{letter-spacing:-0.265067pt;}
.ls22{letter-spacing:-0.213867pt;}
.ls13{letter-spacing:-0.165867pt;}
.ls18{letter-spacing:-0.156267pt;}
.ls1f{letter-spacing:-0.127467pt;}
.ls7{letter-spacing:-0.102933pt;}
.lsa{letter-spacing:-0.073067pt;}
.ls1d{letter-spacing:-0.059733pt;}
.ls29{letter-spacing:-0.057600pt;}
.ls14{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.022400pt;}
.ls28{letter-spacing:0.053867pt;}
.ls21{letter-spacing:0.112640pt;}
.ls15{letter-spacing:0.124800pt;}
.ls10{letter-spacing:0.154667pt;}
.ls16{letter-spacing:0.154880pt;}
.lsc{letter-spacing:0.155733pt;}
.ls11{letter-spacing:0.160000pt;}
.ls2b{letter-spacing:0.165867pt;}
.ls1b{letter-spacing:0.173440pt;}
.lsd{letter-spacing:0.272000pt;}
.ls1a{letter-spacing:0.279680pt;}
.ls23{letter-spacing:0.309867pt;}
.ls12{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.549120pt;}
.ls9{letter-spacing:0.800000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls3{letter-spacing:1.434880pt;}
.ls1{letter-spacing:1.792000pt;}
.ls25{letter-spacing:1.872640pt;}
.ls19{letter-spacing:3.994880pt;}
.ls2a{letter-spacing:4.634667pt;}
.lse{letter-spacing:5.072640pt;}
.ls27{letter-spacing:10.832640pt;}
.lsb{letter-spacing:19.152640pt;}
.ls4{letter-spacing:33.872640pt;}
.ls26{letter-spacing:37.840640pt;}
.ls20{letter-spacing:57.882880pt;}
.wsd{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws11{word-spacing:-12.314987pt;}
.ws13{word-spacing:-12.170987pt;}
.ws9{word-spacing:-12.160853pt;}
.ws10{word-spacing:-12.027520pt;}
.ws5{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.953280pt;}
.ws12{word-spacing:-11.947520pt;}
.ws6{word-spacing:-11.902187pt;}
.wse{word-spacing:-11.877653pt;}
.wsa{word-spacing:-11.839253pt;}
.wsf{word-spacing:-10.848000pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.ws7{word-spacing:-7.737493pt;}
.wsc{word-spacing:-0.053120pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.132800pt;}
._22{margin-left:-6.145493pt;}
._10{margin-left:-4.515200pt;}
._12{margin-left:-3.372160pt;}
._d{margin-left:-2.417920pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._6{width:2.644053pt;}
._8{width:3.877760pt;}
._9{width:5.046400pt;}
._7{width:5.974827pt;}
._b{width:7.084587pt;}
._a{width:8.061867pt;}
._f{width:8.990293pt;}
._c{width:10.095787pt;}
._e{width:11.113600pt;}
._13{width:13.758080pt;}
._2a{width:15.269120pt;}
._29{width:16.570667pt;}
._2b{width:18.130133pt;}
._1e{width:19.299413pt;}
._2c{width:20.716800pt;}
._26{width:21.766400pt;}
._25{width:22.960000pt;}
._27{width:26.023253pt;}
._28{width:26.990507pt;}
._17{width:32.218027pt;}
._1f{width:34.855893pt;}
._20{width:38.361813pt;}
._11{width:45.342720pt;}
._1d{width:46.369493pt;}
._1c{width:58.106240pt;}
._16{width:60.513280pt;}
._1a{width:67.060907pt;}
._19{width:93.969280pt;}
._23{width:122.497493pt;}
._1b{width:154.665173pt;}
._15{width:161.444053pt;}
._21{width:167.989760pt;}
._14{width:171.012267pt;}
._24{width:175.170560pt;}
._18{width:180.154880pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf8{bottom:3.520000pt;}
.yf5{bottom:4.480000pt;}
.ye4{bottom:5.760000pt;}
.yea{bottom:5.914667pt;}
.y67{bottom:5.920000pt;}
.y8d{bottom:6.080000pt;}
.yec{bottom:6.560000pt;}
.ye5{bottom:6.720000pt;}
.yf2{bottom:6.880000pt;}
.y93{bottom:7.680000pt;}
.yf3{bottom:8.160000pt;}
.y8f{bottom:8.320000pt;}
.y65{bottom:8.640000pt;}
.yef{bottom:8.986667pt;}
.y91{bottom:9.440000pt;}
.yf0{bottom:10.266667pt;}
.yf9{bottom:16.160000pt;}
.yf7{bottom:19.680000pt;}
.yfb{bottom:19.840000pt;}
.ye7{bottom:24.640000pt;}
.ye2{bottom:25.280000pt;}
.y102{bottom:25.440000pt;}
.y6{bottom:54.432000pt;}
.y12d{bottom:80.032000pt;}
.y31{bottom:84.352000pt;}
.ybd{bottom:86.592000pt;}
.yeb{bottom:91.392000pt;}
.y8b{bottom:91.712000pt;}
.y10c{bottom:94.432000pt;}
.y30{bottom:103.072000pt;}
.ybc{bottom:105.312000pt;}
.y12c{bottom:109.792000pt;}
.y8a{bottom:110.432000pt;}
.yed{bottom:110.752000pt;}
.y10b{bottom:113.152000pt;}
.y63{bottom:115.872000pt;}
.y2f{bottom:121.792000pt;}
.ybb{bottom:124.032000pt;}
.y12b{bottom:128.512000pt;}
.y89{bottom:129.152000pt;}
.ye9{bottom:129.472000pt;}
.y10a{bottom:131.872000pt;}
.y62{bottom:134.586667pt;}
.y2e{bottom:140.506667pt;}
.yba{bottom:142.746667pt;}
.y12a{bottom:147.226667pt;}
.y88{bottom:147.866667pt;}
.ye8{bottom:148.186667pt;}
.y109{bottom:150.586667pt;}
.y61{bottom:153.306667pt;}
.y2d{bottom:159.226667pt;}
.yb9{bottom:161.466667pt;}
.y129{bottom:165.946667pt;}
.y87{bottom:166.586667pt;}
.ye6{bottom:166.906667pt;}
.y108{bottom:169.306667pt;}
.y60{bottom:172.026667pt;}
.y2c{bottom:177.946667pt;}
.yb8{bottom:180.186667pt;}
.y128{bottom:184.666667pt;}
.y86{bottom:185.306667pt;}
.y107{bottom:188.026667pt;}
.y5f{bottom:190.746667pt;}
.y2b{bottom:196.666667pt;}
.yb7{bottom:198.906667pt;}
.y127{bottom:203.386667pt;}
.y85{bottom:204.026667pt;}
.ye1{bottom:204.346667pt;}
.y106{bottom:206.746667pt;}
.y5e{bottom:209.466667pt;}
.y2a{bottom:215.386667pt;}
.yb6{bottom:217.626667pt;}
.y126{bottom:222.106667pt;}
.y84{bottom:222.746667pt;}
.ye3{bottom:223.866667pt;}
.y105{bottom:225.466667pt;}
.y5d{bottom:228.186667pt;}
.y29{bottom:234.106667pt;}
.yb5{bottom:236.346667pt;}
.y125{bottom:240.826667pt;}
.y83{bottom:241.466667pt;}
.y104{bottom:244.186667pt;}
.y5c{bottom:246.906667pt;}
.ye0{bottom:249.146667pt;}
.y28{bottom:252.866667pt;}
.yb4{bottom:255.106667pt;}
.y101{bottom:257.666667pt;}
.y124{bottom:259.586667pt;}
.y82{bottom:260.226667pt;}
.y5b{bottom:265.666667pt;}
.ydf{bottom:267.906667pt;}
.y27{bottom:271.586667pt;}
.yb3{bottom:273.826667pt;}
.y103{bottom:277.186667pt;}
.y123{bottom:278.306667pt;}
.y81{bottom:278.946667pt;}
.y5a{bottom:284.386667pt;}
.yde{bottom:286.626667pt;}
.y26{bottom:290.306667pt;}
.yb2{bottom:292.546667pt;}
.y100{bottom:295.906667pt;}
.y122{bottom:297.026667pt;}
.y80{bottom:297.666667pt;}
.y59{bottom:303.106667pt;}
.ydd{bottom:305.346667pt;}
.y25{bottom:309.026667pt;}
.yb1{bottom:311.266667pt;}
.yff{bottom:314.626667pt;}
.y121{bottom:315.746667pt;}
.y7f{bottom:316.386667pt;}
.y58{bottom:321.826667pt;}
.ydc{bottom:324.066667pt;}
.y24{bottom:327.746667pt;}
.yb0{bottom:329.986667pt;}
.yfe{bottom:333.346667pt;}
.y120{bottom:334.466667pt;}
.y7e{bottom:335.106667pt;}
.y57{bottom:340.546667pt;}
.ydb{bottom:342.786667pt;}
.y23{bottom:346.466667pt;}
.yaf{bottom:348.706667pt;}
.y11f{bottom:353.186667pt;}
.y7d{bottom:353.826667pt;}
.y56{bottom:359.266667pt;}
.yda{bottom:361.506667pt;}
.y22{bottom:365.186667pt;}
.yae{bottom:367.426667pt;}
.yfc{bottom:370.786667pt;}
.y11e{bottom:371.906667pt;}
.y7c{bottom:372.546667pt;}
.y55{bottom:377.986667pt;}
.yd9{bottom:380.226667pt;}
.y21{bottom:383.906667pt;}
.yad{bottom:386.146667pt;}
.yfd{bottom:390.146667pt;}
.y11d{bottom:390.626667pt;}
.y7b{bottom:391.266667pt;}
.y54{bottom:396.706667pt;}
.yd8{bottom:398.946667pt;}
.y20{bottom:402.626667pt;}
.yac{bottom:404.866667pt;}
.y11c{bottom:409.346667pt;}
.y7a{bottom:409.986667pt;}
.y53{bottom:415.426667pt;}
.yd7{bottom:417.506667pt;}
.y1f{bottom:421.346667pt;}
.yab{bottom:423.586667pt;}
.y11b{bottom:428.066667pt;}
.y79{bottom:428.706667pt;}
.y52{bottom:434.146667pt;}
.yd6{bottom:436.226667pt;}
.y1e{bottom:440.066667pt;}
.yaa{bottom:442.306667pt;}
.y11a{bottom:446.786667pt;}
.y78{bottom:447.426667pt;}
.y51{bottom:452.866667pt;}
.yd5{bottom:454.946667pt;}
.y1d{bottom:458.786667pt;}
.ya9{bottom:461.026667pt;}
.y119{bottom:465.506667pt;}
.y77{bottom:466.146667pt;}
.y50{bottom:471.586667pt;}
.yd4{bottom:473.666667pt;}
.y1c{bottom:477.506667pt;}
.ya8{bottom:479.746667pt;}
.y118{bottom:483.106667pt;}
.y76{bottom:484.866667pt;}
.y4f{bottom:490.306667pt;}
.yd3{bottom:492.386667pt;}
.y1b{bottom:496.226667pt;}
.ya7{bottom:498.466667pt;}
.y117{bottom:500.706667pt;}
.y75{bottom:503.453333pt;}
.y4e{bottom:509.053333pt;}
.yd2{bottom:511.133333pt;}
.ya6{bottom:517.213333pt;}
.y116{bottom:518.173333pt;}
.y74{bottom:522.173333pt;}
.y4d{bottom:527.773333pt;}
.yd1{bottom:529.853333pt;}
.y1a{bottom:535.773333pt;}
.ya5{bottom:535.933333pt;}
.y73{bottom:540.893333pt;}
.y4c{bottom:546.493333pt;}
.yd0{bottom:548.573333pt;}
.y115{bottom:553.373333pt;}
.ya4{bottom:554.653333pt;}
.y72{bottom:559.613333pt;}
.y19{bottom:562.333333pt;}
.y4b{bottom:565.213333pt;}
.ycf{bottom:567.293333pt;}
.y114{bottom:570.973333pt;}
.ya3{bottom:573.373333pt;}
.y71{bottom:578.333333pt;}
.y18{bottom:581.053333pt;}
.y4a{bottom:583.933333pt;}
.yce{bottom:586.013333pt;}
.y113{bottom:589.693333pt;}
.ya2{bottom:592.093333pt;}
.y70{bottom:597.053333pt;}
.y17{bottom:599.773333pt;}
.y49{bottom:602.653333pt;}
.ycd{bottom:604.733333pt;}
.y112{bottom:608.413333pt;}
.ya1{bottom:610.813333pt;}
.y6f{bottom:615.773333pt;}
.y16{bottom:618.493333pt;}
.y48{bottom:621.373333pt;}
.ycc{bottom:623.453333pt;}
.y111{bottom:627.133333pt;}
.ya0{bottom:629.533333pt;}
.y6e{bottom:634.493333pt;}
.y15{bottom:637.213333pt;}
.y47{bottom:640.093333pt;}
.ycb{bottom:642.173333pt;}
.y110{bottom:644.573333pt;}
.y9f{bottom:648.253333pt;}
.y6d{bottom:653.213333pt;}
.y14{bottom:655.933333pt;}
.y46{bottom:658.813333pt;}
.yca{bottom:660.893333pt;}
.y10f{bottom:662.173333pt;}
.y9e{bottom:666.973333pt;}
.y6c{bottom:671.933333pt;}
.y13{bottom:674.653333pt;}
.y45{bottom:677.533333pt;}
.yc9{bottom:679.613333pt;}
.y10e{bottom:679.773333pt;}
.y9d{bottom:685.693333pt;}
.y6b{bottom:690.653333pt;}
.y12{bottom:693.373333pt;}
.y44{bottom:696.253333pt;}
.y10d{bottom:697.373333pt;}
.yc8{bottom:698.333333pt;}
.y9c{bottom:704.413333pt;}
.y6a{bottom:709.373333pt;}
.y11{bottom:712.093333pt;}
.y43{bottom:714.973333pt;}
.yc7{bottom:717.053333pt;}
.y69{bottom:722.813333pt;}
.y9b{bottom:723.133333pt;}
.y10{bottom:730.813333pt;}
.y42{bottom:733.693333pt;}
.yc6{bottom:735.773333pt;}
.y9a{bottom:741.853333pt;}
.y68{bottom:742.333333pt;}
.yf{bottom:749.533333pt;}
.y41{bottom:752.413333pt;}
.yc5{bottom:754.533333pt;}
.y99{bottom:760.613333pt;}
.y66{bottom:761.093333pt;}
.ye{bottom:768.293333pt;}
.y40{bottom:771.173333pt;}
.yc4{bottom:773.253333pt;}
.y98{bottom:779.333333pt;}
.y64{bottom:780.453333pt;}
.yd{bottom:787.013333pt;}
.y3f{bottom:789.893333pt;}
.yc3{bottom:791.973333pt;}
.y97{bottom:798.053333pt;}
.yc{bottom:807.653333pt;}
.y3e{bottom:808.613333pt;}
.yc2{bottom:810.693333pt;}
.y96{bottom:816.773333pt;}
.y3d{bottom:827.173333pt;}
.yc1{bottom:829.413333pt;}
.yb{bottom:831.013333pt;}
.y95{bottom:835.493333pt;}
.y3c{bottom:845.893333pt;}
.yc0{bottom:848.133333pt;}
.ya{bottom:849.733333pt;}
.y94{bottom:854.213333pt;}
.y9{bottom:864.613333pt;}
.ybf{bottom:866.853333pt;}
.y92{bottom:867.653333pt;}
.y3b{bottom:883.333333pt;}
.y8{bottom:884.453333pt;}
.ybe{bottom:885.573333pt;}
.y90{bottom:888.773333pt;}
.yfa{bottom:899.013333pt;}
.y3a{bottom:902.053333pt;}
.y7{bottom:906.853333pt;}
.y8e{bottom:911.013333pt;}
.y39{bottom:920.773333pt;}
.yf6{bottom:931.653333pt;}
.y8c{bottom:932.773333pt;}
.y38{bottom:939.493333pt;}
.y5{bottom:942.533333pt;}
.y37{bottom:958.213333pt;}
.yf4{bottom:964.133333pt;}
.y4{bottom:971.173333pt;}
.y36{bottom:976.933333pt;}
.yf1{bottom:981.253333pt;}
.y35{bottom:995.653333pt;}
.y3{bottom:999.653333pt;}
.yee{bottom:1001.413333pt;}
.y34{bottom:1014.400000pt;}
.y2{bottom:1028.320000pt;}
.y33{bottom:1033.120000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.h19{height:17.120000pt;}
.h14{height:18.560000pt;}
.hc{height:18.720000pt;}
.hd{height:18.752000pt;}
.he{height:18.880000pt;}
.h18{height:19.520000pt;}
.h11{height:20.480000pt;}
.hf{height:21.120000pt;}
.hb{height:21.440000pt;}
.h16{height:21.632000pt;}
.h10{height:22.240000pt;}
.h1a{height:32.480000pt;}
.h1b{height:32.640000pt;}
.h7{height:34.374375pt;}
.h15{height:37.440000pt;}
.h13{height:38.080000pt;}
.h1c{height:38.240000pt;}
.h12{height:40.566250pt;}
.h1d{height:44.952500pt;}
.h17{height:49.148438pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.ha{height:52.934375pt;}
.h5{height:54.390938pt;}
.h1e{height:54.598989pt;}
.h9{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1e{width:53.920000pt;}
.w1d{width:54.080000pt;}
.w1a{width:60.032000pt;}
.w19{width:66.080000pt;}
.w27{width:71.392000pt;}
.w28{width:71.520000pt;}
.w14{width:77.440000pt;}
.w13{width:77.472000pt;}
.w1b{width:77.920000pt;}
.w1f{width:78.112000pt;}
.w24{width:78.560000pt;}
.w10{width:84.480000pt;}
.w9{width:86.080000pt;}
.wa{width:86.272000pt;}
.w4{width:86.560000pt;}
.w5{width:86.592000pt;}
.w12{width:91.520000pt;}
.w20{width:91.680000pt;}
.w23{width:92.832000pt;}
.w1c{width:96.032000pt;}
.wf{width:98.592000pt;}
.w11{width:105.632000pt;}
.w25{width:107.232000pt;}
.w26{width:114.240000pt;}
.wb{width:119.712000pt;}
.w6{width:120.352000pt;}
.w15{width:137.946667pt;}
.w7{width:142.720000pt;}
.w22{width:142.906667pt;}
.we{width:154.906667pt;}
.wc{width:155.840000pt;}
.w21{width:163.866667pt;}
.wd{width:168.506667pt;}
.w8{width:257.026667pt;}
.w3{width:258.306667pt;}
.w18{width:277.786667pt;}
.w17{width:300.066667pt;}
.w16{width:577.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x17{left:11.840000pt;}
.x1c{left:15.840000pt;}
.x13{left:38.560000pt;}
.x1{left:47.999988pt;}
.x3{left:48.959988pt;}
.x23{left:66.079988pt;}
.x24{left:78.079988pt;}
.x25{left:90.111988pt;}
.x2{left:96.031988pt;}
.x14{left:176.506667pt;}
.x1d{left:211.866667pt;}
.xd{left:216.506667pt;}
.x15{left:242.586667pt;}
.x22{left:283.266667pt;}
.x12{left:293.986667pt;}
.x16{left:302.626667pt;}
.x9{left:305.026667pt;}
.x5{left:306.306667pt;}
.x1e{left:354.786667pt;}
.xe{left:371.426667pt;}
.x18{left:380.546667pt;}
.xa{left:391.106667pt;}
.x6{left:392.866667pt;}
.x1f{left:447.613333pt;}
.xf{left:470.013333pt;}
.xb{left:477.373333pt;}
.x7{left:479.453333pt;}
.x20{left:526.173333pt;}
.x19{left:530.653333pt;}
.x10{left:554.493333pt;}
.x1a{left:584.573333pt;}
.xc{left:597.093333pt;}
.x8{left:599.813333pt;}
.x21{left:633.413333pt;}
.x11{left:660.133333pt;}
.x1b{left:662.693333pt;}
.x26{left:746.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; }
  