
    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_4bb77492c9edff4bb3fc82ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_720f812818c31c0c20897a96.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_fe0e5e72bac19d02010b2270.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.771484;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_dea2c7d9cd0bd6a309aab06f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_7e2dd811f74d28925e430122.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.367800px;}
.ls8{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.132600px;}
.ls9{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.121200px;}
.lsa{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.305400px;}
.lsc{letter-spacing:0.720000px;}
.lsd{letter-spacing:68.400000px;}
.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:-19.934040px;}
.wsc{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.ws0{word-spacing:-17.352000px;}
.wsa{word-spacing:-16.865400px;}
.wsb{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.085040px;}
.ws2{word-spacing:-15.831240px;}
.ws5{word-spacing:0.000000px;}
._9{margin-left:-2.386560px;}
._1{margin-left:-1.056480px;}
._0{width:1.738560px;}
._f{width:2.907840px;}
._10{width:4.320000px;}
._11{width:5.400000px;}
._a{width:6.600480px;}
._14{width:8.424000px;}
._15{width:9.615360px;}
._b{width:11.520000px;}
._c{width:12.637920px;}
._8{width:13.824000px;}
._2{width:15.408000px;}
._e{width:16.464480px;}
._24{width:17.888640px;}
._1f{width:19.008000px;}
._3{width:20.016000px;}
._4{width:21.180000px;}
._6{width:22.441440px;}
._7{width:23.904000px;}
._13{width:25.582080px;}
._12{width:26.688480px;}
._d{width:27.888480px;}
._1b{width:29.135520px;}
._5{width:30.384000px;}
._18{width:32.115360px;}
._17{width:33.120000px;}
._16{width:34.176000px;}
._19{width:36.936000px;}
._1a{width:38.376000px;}
._20{width:39.936480px;}
._21{width:40.991520px;}
._25{width:42.181440px;}
._1d{width:43.488000px;}
._1e{width:44.496000px;}
._22{width:47.664000px;}
._23{width:48.864000px;}
._26{width:56.808000px;}
._28{width:86.256000px;}
._1c{width:104.256000px;}
._27{width:230.796000px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,72,126);}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.yd7{bottom:-5.220000px;}
.y0{bottom:0.000000px;}
.ycf{bottom:4.132500px;}
.ybd{bottom:4.140000px;}
.yd2{bottom:4.492500px;}
.ybf{bottom:4.500000px;}
.y98{bottom:4.860000px;}
.yd8{bottom:5.040000px;}
.y96{bottom:5.220000px;}
.y9a{bottom:5.430000px;}
.y94{bottom:5.580000px;}
.yb5{bottom:6.120000px;}
.yb0{bottom:6.300000px;}
.yb2{bottom:6.330000px;}
.y74{bottom:6.480000px;}
.ycb{bottom:6.652500px;}
.yb7{bottom:6.660000px;}
.yb3{bottom:6.690000px;}
.y6e{bottom:6.832500px;}
.y75{bottom:6.840000px;}
.y70{bottom:7.020000px;}
.y72{bottom:7.380000px;}
.yc9{bottom:16.912500px;}
.yd4{bottom:16.920000px;}
.yce{bottom:24.832500px;}
.ydb{bottom:24.840000px;}
.yd0{bottom:25.192500px;}
.ydc{bottom:25.200000px;}
.yd5{bottom:27.180000px;}
.yca{bottom:27.346500px;}
.yb{bottom:34.956000px;}
.ya{bottom:39.276000px;}
.ycd{bottom:45.532500px;}
.yda{bottom:45.540000px;}
.yd1{bottom:45.892500px;}
.ydd{bottom:45.900000px;}
.ycc{bottom:59.263500px;}
.y147{bottom:63.396000px;}
.ya4{bottom:63.756000px;}
.y6d{bottom:63.763500px;}
.y103{bottom:68.436000px;}
.y3c{bottom:68.796000px;}
.y146{bottom:82.656000px;}
.ya3{bottom:84.456000px;}
.y11a{bottom:86.616000px;}
.y102{bottom:89.136000px;}
.y3b{bottom:89.496000px;}
.y6c{bottom:98.316000px;}
.y178{bottom:98.676000px;}
.y145{bottom:101.736000px;}
.ya2{bottom:105.156000px;}
.y119{bottom:107.316000px;}
.y101{bottom:109.836000px;}
.y3a{bottom:110.196000px;}
.y6b{bottom:119.016000px;}
.y177{bottom:119.376000px;}
.y144{bottom:120.636000px;}
.ya1{bottom:125.856000px;}
.yc8{bottom:126.583500px;}
.y118{bottom:128.016000px;}
.y100{bottom:130.536000px;}
.y39{bottom:130.896000px;}
.y143{bottom:139.536000px;}
.y6a{bottom:139.716000px;}
.y176{bottom:140.076000px;}
.ya0{bottom:146.556000px;}
.y117{bottom:148.356000px;}
.y172{bottom:148.716000px;}
.yff{bottom:151.230000px;}
.y38{bottom:151.590000px;}
.y142{bottom:158.610000px;}
.y69{bottom:160.770000px;}
.y9f{bottom:167.250000px;}
.y116{bottom:169.050000px;}
.y171{bottom:169.410000px;}
.yfe{bottom:171.930000px;}
.y37{bottom:172.290000px;}
.y141{bottom:177.510000px;}
.yc7{bottom:181.110000px;}
.y68{bottom:181.470000px;}
.y9e{bottom:187.950000px;}
.y115{bottom:190.110000px;}
.yfd{bottom:192.630000px;}
.y36{bottom:192.990000px;}
.y140{bottom:196.230000px;}
.yc6{bottom:201.810000px;}
.y67{bottom:202.170000px;}
.y9d{bottom:208.650000px;}
.y114{bottom:210.810000px;}
.yfc{bottom:213.330000px;}
.y35{bottom:213.690000px;}
.y13f{bottom:215.130000px;}
.yc5{bottom:222.510000px;}
.y66{bottom:222.870000px;}
.y9c{bottom:228.990000px;}
.y113{bottom:231.510000px;}
.yfb{bottom:234.030000px;}
.y34{bottom:234.390000px;}
.y13e{bottom:234.570000px;}
.yc4{bottom:243.210000px;}
.y65{bottom:243.570000px;}
.y9b{bottom:249.690000px;}
.y170{bottom:251.310000px;}
.y112{bottom:252.210000px;}
.y13d{bottom:253.470000px;}
.y33{bottom:254.730000px;}
.yc3{bottom:263.910000px;}
.y64{bottom:264.270000px;}
.y16f{bottom:270.390000px;}
.y99{bottom:270.405000px;}
.y111{bottom:272.370000px;}
.yfa{bottom:275.475000px;}
.y32{bottom:275.835000px;}
.yc2{bottom:284.655000px;}
.y63{bottom:285.015000px;}
.y16e{bottom:290.235000px;}
.y110{bottom:291.495000px;}
.yf9{bottom:296.175000px;}
.y31{bottom:296.535000px;}
.y97{bottom:298.335000px;}
.yc1{bottom:305.355000px;}
.y62{bottom:305.715000px;}
.y10f{bottom:310.395000px;}
.y16d{bottom:310.935000px;}
.y30{bottom:316.875000px;}
.y95{bottom:325.155000px;}
.y61{bottom:326.415000px;}
.y10e{bottom:329.115000px;}
.yc0{bottom:330.555000px;}
.y16c{bottom:331.635000px;}
.yf8{bottom:337.215000px;}
.y2f{bottom:337.935000px;}
.y60{bottom:347.115000px;}
.y10d{bottom:348.015000px;}
.y16b{bottom:352.335000px;}
.y93{bottom:353.235000px;}
.ybe{bottom:355.755000px;}
.yf7{bottom:357.915000px;}
.y2e{bottom:358.635000px;}
.y13c{bottom:367.275000px;}
.y5f{bottom:367.455000px;}
.y10c{bottom:367.815000px;}
.y16a{bottom:373.035000px;}
.yf6{bottom:378.975000px;}
.y2d{bottom:379.335000px;}
.ybc{bottom:381.675000px;}
.y92{bottom:384.915000px;}
.y13b{bottom:386.355000px;}
.y5e{bottom:388.155000px;}
.y10b{bottom:388.515000px;}
.y169{bottom:392.835000px;}
.yf5{bottom:399.675000px;}
.y2c{bottom:400.035000px;}
.y13a{bottom:404.895000px;}
.y91{bottom:405.615000px;}
.y5d{bottom:409.215000px;}
.ybb{bottom:410.655000px;}
.y168{bottom:411.915000px;}
.yf4{bottom:420.375000px;}
.y2b{bottom:420.735000px;}
.y139{bottom:423.975000px;}
.y90{bottom:426.315000px;}
.y5c{bottom:429.915000px;}
.yba{bottom:431.355000px;}
.y167{bottom:431.715000px;}
.yf3{bottom:441.075000px;}
.y2a{bottom:441.435000px;}
.y138{bottom:443.235000px;}
.y8f{bottom:447.015000px;}
.y5b{bottom:450.615000px;}
.yb9{bottom:452.055000px;}
.y166{bottom:452.415000px;}
.yf2{bottom:461.775000px;}
.y29{bottom:462.135000px;}
.y8e{bottom:468.075000px;}
.y5a{bottom:470.955000px;}
.y175{bottom:471.315000px;}
.yb8{bottom:472.755000px;}
.y165{bottom:472.935000px;}
.y137{bottom:481.215000px;}
.yf1{bottom:482.475000px;}
.y28{bottom:482.835000px;}
.y8d{bottom:488.775000px;}
.y59{bottom:491.655000px;}
.y10a{bottom:492.015000px;}
.y164{bottom:493.275000px;}
.yb6{bottom:493.455000px;}
.y136{bottom:500.115000px;}
.yf0{bottom:503.175000px;}
.y27{bottom:503.535000px;}
.y8c{bottom:509.475000px;}
.y58{bottom:512.355000px;}
.y109{bottom:512.715000px;}
.y163{bottom:514.335000px;}
.y135{bottom:519.195000px;}
.yb4{bottom:522.975000px;}
.yef{bottom:523.875000px;}
.y26{bottom:524.235000px;}
.y8b{bottom:530.175000px;}
.y57{bottom:533.415000px;}
.y162{bottom:535.035000px;}
.y134{bottom:537.735000px;}
.yee{bottom:544.575000px;}
.y25{bottom:544.935000px;}
.y8a{bottom:550.875000px;}
.yb1{bottom:552.315000px;}
.y56{bottom:554.115000px;}
.y161{bottom:555.735000px;}
.y133{bottom:556.665000px;}
.yed{bottom:565.305000px;}
.y24{bottom:565.665000px;}
.y89{bottom:571.605000px;}
.y55{bottom:574.845000px;}
.y132{bottom:576.105000px;}
.y160{bottom:576.465000px;}
.yaf{bottom:582.585000px;}
.yec{bottom:585.645000px;}
.y23{bottom:586.365000px;}
.y88{bottom:592.305000px;}
.y131{bottom:595.005000px;}
.y108{bottom:595.185000px;}
.y54{bottom:595.545000px;}
.y15f{bottom:596.805000px;}
.yeb{bottom:606.345000px;}
.y22{bottom:607.065000px;}
.y87{bottom:613.005000px;}
.y130{bottom:614.085000px;}
.yae{bottom:615.885000px;}
.y53{bottom:616.245000px;}
.y15e{bottom:617.865000px;}
.yea{bottom:627.405000px;}
.y21{bottom:627.765000px;}
.y12f{bottom:632.985000px;}
.y86{bottom:633.705000px;}
.yad{bottom:636.585000px;}
.y52{bottom:636.945000px;}
.y15d{bottom:638.565000px;}
.ye9{bottom:648.105000px;}
.y20{bottom:648.465000px;}
.y12e{bottom:651.525000px;}
.y85{bottom:654.405000px;}
.yac{bottom:657.285000px;}
.y51{bottom:657.645000px;}
.y15c{bottom:659.265000px;}
.ye8{bottom:668.805000px;}
.y1f{bottom:669.165000px;}
.y12d{bottom:670.605000px;}
.y84{bottom:675.105000px;}
.yab{bottom:677.985000px;}
.y50{bottom:678.345000px;}
.y15b{bottom:679.605000px;}
.ye7{bottom:689.505000px;}
.y1e{bottom:689.865000px;}
.y83{bottom:695.805000px;}
.yaa{bottom:698.685000px;}
.y4f{bottom:699.045000px;}
.y15a{bottom:700.665000px;}
.y12c{bottom:708.945000px;}
.ye6{bottom:709.845000px;}
.y1d{bottom:710.565000px;}
.y82{bottom:716.505000px;}
.y4e{bottom:719.745000px;}
.y159{bottom:721.365000px;}
.y12b{bottom:727.485000px;}
.ye5{bottom:730.545000px;}
.y1c{bottom:731.265000px;}
.y81{bottom:737.205000px;}
.y4d{bottom:740.445000px;}
.y158{bottom:742.065000px;}
.y12a{bottom:746.565000px;}
.ye4{bottom:751.605000px;}
.y1b{bottom:751.965000px;}
.y80{bottom:757.905000px;}
.ya9{bottom:760.785000px;}
.y4c{bottom:761.145000px;}
.y157{bottom:762.765000px;}
.y129{bottom:765.825000px;}
.ye3{bottom:772.305000px;}
.y1a{bottom:772.665000px;}
.y7f{bottom:778.245000px;}
.ya8{bottom:781.485000px;}
.y4b{bottom:781.845000px;}
.y156{bottom:783.105000px;}
.y128{bottom:784.725000px;}
.ye2{bottom:793.005000px;}
.y19{bottom:793.365000px;}
.y7e{bottom:798.945000px;}
.y4a{bottom:802.545000px;}
.y127{bottom:803.805000px;}
.y155{bottom:804.165000px;}
.ye1{bottom:813.705000px;}
.y18{bottom:814.065000px;}
.y7d{bottom:820.005000px;}
.y126{bottom:822.345000px;}
.y107{bottom:822.885000px;}
.y49{bottom:823.245000px;}
.y154{bottom:824.865000px;}
.y17{bottom:834.405000px;}
.y7c{bottom:840.750000px;}
.y125{bottom:841.470000px;}
.y106{bottom:843.630000px;}
.y48{bottom:843.990000px;}
.y153{bottom:845.610000px;}
.ye0{bottom:854.790000px;}
.y16{bottom:855.150000px;}
.y124{bottom:860.730000px;}
.y7b{bottom:861.450000px;}
.y47{bottom:864.690000px;}
.y152{bottom:865.950000px;}
.y15{bottom:875.490000px;}
.y123{bottom:879.630000px;}
.y7a{bottom:882.150000px;}
.y46{bottom:885.390000px;}
.y151{bottom:887.010000px;}
.ydf{bottom:896.190000px;}
.y14{bottom:896.370000px;}
.y122{bottom:898.710000px;}
.y79{bottom:902.850000px;}
.ya7{bottom:905.730000px;}
.y45{bottom:906.090000px;}
.y150{bottom:907.710000px;}
.yde{bottom:916.890000px;}
.y13{bottom:917.070000px;}
.y121{bottom:917.610000px;}
.y78{bottom:923.550000px;}
.ya6{bottom:926.430000px;}
.y44{bottom:926.790000px;}
.y14f{bottom:928.410000px;}
.y120{bottom:936.330000px;}
.y12{bottom:937.410000px;}
.yd9{bottom:943.530000px;}
.y77{bottom:943.890000px;}
.y43{bottom:947.490000px;}
.y14e{bottom:949.110000px;}
.y11f{bottom:955.230000px;}
.y11{bottom:958.110000px;}
.y76{bottom:964.590000px;}
.y105{bottom:967.830000px;}
.y42{bottom:968.190000px;}
.y14d{bottom:969.450000px;}
.y11e{bottom:974.490000px;}
.y10{bottom:978.630000px;}
.y104{bottom:988.530000px;}
.y41{bottom:988.890000px;}
.y14c{bottom:990.510000px;}
.y11d{bottom:993.570000px;}
.y73{bottom:995.550000px;}
.yf{bottom:999.690000px;}
.y174{bottom:1009.230000px;}
.y40{bottom:1009.590000px;}
.yd6{bottom:1010.130000px;}
.y14b{bottom:1011.210000px;}
.y11c{bottom:1012.110000px;}
.ye{bottom:1023.810000px;}
.y71{bottom:1025.610000px;}
.y173{bottom:1029.930000px;}
.y3f{bottom:1030.290000px;}
.y11b{bottom:1031.190000px;}
.y14a{bottom:1031.910000px;}
.yd3{bottom:1037.490000px;}
.yd{bottom:1047.930000px;}
.y3e{bottom:1050.990000px;}
.y149{bottom:1052.610000px;}
.y6f{bottom:1057.290000px;}
.ya5{bottom:1071.330000px;}
.yc{bottom:1071.510000px;}
.y3d{bottom:1071.690000px;}
.y148{bottom:1072.590000px;}
.y9{bottom:1088.070000px;}
.y8{bottom:1093.650000px;}
.y7{bottom:1116.150000px;}
.y6{bottom:1133.280000px;}
.y5{bottom:1150.380000px;}
.y4{bottom:1167.300000px;}
.y3{bottom:1184.940000px;}
.y2{bottom:1207.620000px;}
.y1{bottom:1238.580000px;}
.h17{height:20.685000px;}
.h1b{height:21.945000px;}
.h1d{height:22.125000px;}
.h11{height:22.305000px;}
.h10{height:22.845000px;}
.hf{height:23.385000px;}
.h12{height:23.421000px;}
.h15{height:24.825000px;}
.h16{height:25.005000px;}
.h13{height:25.020000px;}
.h14{height:25.050000px;}
.hd{height:25.545000px;}
.hb{height:26.272500px;}
.hc{height:26.445000px;}
.h5{height:45.170156px;}
.h1a{height:46.245000px;}
.h18{height:46.252500px;}
.h7{height:50.068125px;}
.he{height:52.066406px;}
.h4{height:54.421875px;}
.h1c{height:62.085000px;}
.h19{height:62.092500px;}
.h6{height:63.673594px;}
.h1f{height:65.010937px;}
.h1e{height:66.757500px;}
.ha{height:70.664062px;}
.h9{height:72.562500px;}
.h3{height:81.632812px;}
.h8{height:84.898125px;}
.h2{height:105.996094px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w18{width:29.145000px;}
.w14{width:29.160000px;}
.w15{width:57.960000px;}
.w9{width:59.241000px;}
.w16{width:60.660000px;}
.w19{width:61.185000px;}
.we{width:63.381000px;}
.w13{width:66.261000px;}
.w2{width:69.829500px;}
.w17{width:88.056000px;}
.w10{width:94.536000px;}
.w5{width:100.789500px;}
.w1a{width:112.341000px;}
.w8{width:117.889500px;}
.wb{width:122.976000px;}
.wd{width:126.349500px;}
.w12{width:133.549500px;}
.w3{width:138.981000px;}
.wa{width:161.460000px;}
.wf{width:172.980000px;}
.w6{width:209.895000px;}
.wc{width:227.355000px;}
.w11{width:252.195000px;}
.w7{width:373.380000px;}
.w4{width:492.735000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x8{left:1.069500px;}
.xb{left:104.626500px;}
.x16{left:120.466500px;}
.x7{left:124.966500px;}
.x1{left:126.036000px;}
.x5{left:160.770000px;}
.x4{left:164.730000px;}
.x1f{left:180.030000px;}
.x9{left:197.145000px;}
.xc{left:207.765000px;}
.xe{left:245.205000px;}
.x12{left:253.665000px;}
.x17{left:256.365000px;}
.xf{left:306.615000px;}
.x13{left:319.395000px;}
.x18{left:324.975000px;}
.xa{left:338.475000px;}
.x19{left:356.475000px;}
.x6{left:415.155000px;}
.x1a{left:416.775000px;}
.xd{left:419.835000px;}
.x2{left:439.815000px;}
.x3{left:448.995000px;}
.x10{left:470.415000px;}
.x1b{left:479.775000px;}
.x14{left:494.535000px;}
.x1c{left:570.180000px;}
.x15{left:591.420000px;}
.x11{left:595.740000px;}
.x1d{left:601.680000px;}
.x1e{left:665.040000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.326933pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.117867pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.107733pt;}
.lsa{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.271467pt;}
.lsc{letter-spacing:0.640000pt;}
.lsd{letter-spacing:60.800000pt;}
.ws1{word-spacing:-17.719147pt;}
.wsc{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws0{word-spacing:-15.424000pt;}
.wsa{word-spacing:-14.991467pt;}
.wsb{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.297813pt;}
.ws2{word-spacing:-14.072213pt;}
.ws5{word-spacing:0.000000pt;}
._9{margin-left:-2.121387pt;}
._1{margin-left:-0.939093pt;}
._0{width:1.545387pt;}
._f{width:2.584747pt;}
._10{width:3.840000pt;}
._11{width:4.800000pt;}
._a{width:5.867093pt;}
._14{width:7.488000pt;}
._15{width:8.546987pt;}
._b{width:10.240000pt;}
._c{width:11.233707pt;}
._8{width:12.288000pt;}
._2{width:13.696000pt;}
._e{width:14.635093pt;}
._24{width:15.901013pt;}
._1f{width:16.896000pt;}
._3{width:17.792000pt;}
._4{width:18.826667pt;}
._6{width:19.947947pt;}
._7{width:21.248000pt;}
._13{width:22.739627pt;}
._12{width:23.723093pt;}
._d{width:24.789760pt;}
._1b{width:25.898240pt;}
._5{width:27.008000pt;}
._18{width:28.546987pt;}
._17{width:29.440000pt;}
._16{width:30.378667pt;}
._19{width:32.832000pt;}
._1a{width:34.112000pt;}
._20{width:35.499093pt;}
._21{width:36.436907pt;}
._25{width:37.494613pt;}
._1d{width:38.656000pt;}
._1e{width:39.552000pt;}
._22{width:42.368000pt;}
._23{width:43.434667pt;}
._26{width:50.496000pt;}
._28{width:76.672000pt;}
._1c{width:92.672000pt;}
._27{width:205.152000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.yd7{bottom:-4.640000pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:3.673333pt;}
.ybd{bottom:3.680000pt;}
.yd2{bottom:3.993333pt;}
.ybf{bottom:4.000000pt;}
.y98{bottom:4.320000pt;}
.yd8{bottom:4.480000pt;}
.y96{bottom:4.640000pt;}
.y9a{bottom:4.826667pt;}
.y94{bottom:4.960000pt;}
.yb5{bottom:5.440000pt;}
.yb0{bottom:5.600000pt;}
.yb2{bottom:5.626667pt;}
.y74{bottom:5.760000pt;}
.ycb{bottom:5.913333pt;}
.yb7{bottom:5.920000pt;}
.yb3{bottom:5.946667pt;}
.y6e{bottom:6.073333pt;}
.y75{bottom:6.080000pt;}
.y70{bottom:6.240000pt;}
.y72{bottom:6.560000pt;}
.yc9{bottom:15.033333pt;}
.yd4{bottom:15.040000pt;}
.yce{bottom:22.073333pt;}
.ydb{bottom:22.080000pt;}
.yd0{bottom:22.393333pt;}
.ydc{bottom:22.400000pt;}
.yd5{bottom:24.160000pt;}
.yca{bottom:24.308000pt;}
.yb{bottom:31.072000pt;}
.ya{bottom:34.912000pt;}
.ycd{bottom:40.473333pt;}
.yda{bottom:40.480000pt;}
.yd1{bottom:40.793333pt;}
.ydd{bottom:40.800000pt;}
.ycc{bottom:52.678667pt;}
.y147{bottom:56.352000pt;}
.ya4{bottom:56.672000pt;}
.y6d{bottom:56.678667pt;}
.y103{bottom:60.832000pt;}
.y3c{bottom:61.152000pt;}
.y146{bottom:73.472000pt;}
.ya3{bottom:75.072000pt;}
.y11a{bottom:76.992000pt;}
.y102{bottom:79.232000pt;}
.y3b{bottom:79.552000pt;}
.y6c{bottom:87.392000pt;}
.y178{bottom:87.712000pt;}
.y145{bottom:90.432000pt;}
.ya2{bottom:93.472000pt;}
.y119{bottom:95.392000pt;}
.y101{bottom:97.632000pt;}
.y3a{bottom:97.952000pt;}
.y6b{bottom:105.792000pt;}
.y177{bottom:106.112000pt;}
.y144{bottom:107.232000pt;}
.ya1{bottom:111.872000pt;}
.yc8{bottom:112.518667pt;}
.y118{bottom:113.792000pt;}
.y100{bottom:116.032000pt;}
.y39{bottom:116.352000pt;}
.y143{bottom:124.032000pt;}
.y6a{bottom:124.192000pt;}
.y176{bottom:124.512000pt;}
.ya0{bottom:130.272000pt;}
.y117{bottom:131.872000pt;}
.y172{bottom:132.192000pt;}
.yff{bottom:134.426667pt;}
.y38{bottom:134.746667pt;}
.y142{bottom:140.986667pt;}
.y69{bottom:142.906667pt;}
.y9f{bottom:148.666667pt;}
.y116{bottom:150.266667pt;}
.y171{bottom:150.586667pt;}
.yfe{bottom:152.826667pt;}
.y37{bottom:153.146667pt;}
.y141{bottom:157.786667pt;}
.yc7{bottom:160.986667pt;}
.y68{bottom:161.306667pt;}
.y9e{bottom:167.066667pt;}
.y115{bottom:168.986667pt;}
.yfd{bottom:171.226667pt;}
.y36{bottom:171.546667pt;}
.y140{bottom:174.426667pt;}
.yc6{bottom:179.386667pt;}
.y67{bottom:179.706667pt;}
.y9d{bottom:185.466667pt;}
.y114{bottom:187.386667pt;}
.yfc{bottom:189.626667pt;}
.y35{bottom:189.946667pt;}
.y13f{bottom:191.226667pt;}
.yc5{bottom:197.786667pt;}
.y66{bottom:198.106667pt;}
.y9c{bottom:203.546667pt;}
.y113{bottom:205.786667pt;}
.yfb{bottom:208.026667pt;}
.y34{bottom:208.346667pt;}
.y13e{bottom:208.506667pt;}
.yc4{bottom:216.186667pt;}
.y65{bottom:216.506667pt;}
.y9b{bottom:221.946667pt;}
.y170{bottom:223.386667pt;}
.y112{bottom:224.186667pt;}
.y13d{bottom:225.306667pt;}
.y33{bottom:226.426667pt;}
.yc3{bottom:234.586667pt;}
.y64{bottom:234.906667pt;}
.y16f{bottom:240.346667pt;}
.y99{bottom:240.360000pt;}
.y111{bottom:242.106667pt;}
.yfa{bottom:244.866667pt;}
.y32{bottom:245.186667pt;}
.yc2{bottom:253.026667pt;}
.y63{bottom:253.346667pt;}
.y16e{bottom:257.986667pt;}
.y110{bottom:259.106667pt;}
.yf9{bottom:263.266667pt;}
.y31{bottom:263.586667pt;}
.y97{bottom:265.186667pt;}
.yc1{bottom:271.426667pt;}
.y62{bottom:271.746667pt;}
.y10f{bottom:275.906667pt;}
.y16d{bottom:276.386667pt;}
.y30{bottom:281.666667pt;}
.y95{bottom:289.026667pt;}
.y61{bottom:290.146667pt;}
.y10e{bottom:292.546667pt;}
.yc0{bottom:293.826667pt;}
.y16c{bottom:294.786667pt;}
.yf8{bottom:299.746667pt;}
.y2f{bottom:300.386667pt;}
.y60{bottom:308.546667pt;}
.y10d{bottom:309.346667pt;}
.y16b{bottom:313.186667pt;}
.y93{bottom:313.986667pt;}
.ybe{bottom:316.226667pt;}
.yf7{bottom:318.146667pt;}
.y2e{bottom:318.786667pt;}
.y13c{bottom:326.466667pt;}
.y5f{bottom:326.626667pt;}
.y10c{bottom:326.946667pt;}
.y16a{bottom:331.586667pt;}
.yf6{bottom:336.866667pt;}
.y2d{bottom:337.186667pt;}
.ybc{bottom:339.266667pt;}
.y92{bottom:342.146667pt;}
.y13b{bottom:343.426667pt;}
.y5e{bottom:345.026667pt;}
.y10b{bottom:345.346667pt;}
.y169{bottom:349.186667pt;}
.yf5{bottom:355.266667pt;}
.y2c{bottom:355.586667pt;}
.y13a{bottom:359.906667pt;}
.y91{bottom:360.546667pt;}
.y5d{bottom:363.746667pt;}
.ybb{bottom:365.026667pt;}
.y168{bottom:366.146667pt;}
.yf4{bottom:373.666667pt;}
.y2b{bottom:373.986667pt;}
.y139{bottom:376.866667pt;}
.y90{bottom:378.946667pt;}
.y5c{bottom:382.146667pt;}
.yba{bottom:383.426667pt;}
.y167{bottom:383.746667pt;}
.yf3{bottom:392.066667pt;}
.y2a{bottom:392.386667pt;}
.y138{bottom:393.986667pt;}
.y8f{bottom:397.346667pt;}
.y5b{bottom:400.546667pt;}
.yb9{bottom:401.826667pt;}
.y166{bottom:402.146667pt;}
.yf2{bottom:410.466667pt;}
.y29{bottom:410.786667pt;}
.y8e{bottom:416.066667pt;}
.y5a{bottom:418.626667pt;}
.y175{bottom:418.946667pt;}
.yb8{bottom:420.226667pt;}
.y165{bottom:420.386667pt;}
.y137{bottom:427.746667pt;}
.yf1{bottom:428.866667pt;}
.y28{bottom:429.186667pt;}
.y8d{bottom:434.466667pt;}
.y59{bottom:437.026667pt;}
.y10a{bottom:437.346667pt;}
.y164{bottom:438.466667pt;}
.yb6{bottom:438.626667pt;}
.y136{bottom:444.546667pt;}
.yf0{bottom:447.266667pt;}
.y27{bottom:447.586667pt;}
.y8c{bottom:452.866667pt;}
.y58{bottom:455.426667pt;}
.y109{bottom:455.746667pt;}
.y163{bottom:457.186667pt;}
.y135{bottom:461.506667pt;}
.yb4{bottom:464.866667pt;}
.yef{bottom:465.666667pt;}
.y26{bottom:465.986667pt;}
.y8b{bottom:471.266667pt;}
.y57{bottom:474.146667pt;}
.y162{bottom:475.586667pt;}
.y134{bottom:477.986667pt;}
.yee{bottom:484.066667pt;}
.y25{bottom:484.386667pt;}
.y8a{bottom:489.666667pt;}
.yb1{bottom:490.946667pt;}
.y56{bottom:492.546667pt;}
.y161{bottom:493.986667pt;}
.y133{bottom:494.813333pt;}
.yed{bottom:502.493333pt;}
.y24{bottom:502.813333pt;}
.y89{bottom:508.093333pt;}
.y55{bottom:510.973333pt;}
.y132{bottom:512.093333pt;}
.y160{bottom:512.413333pt;}
.yaf{bottom:517.853333pt;}
.yec{bottom:520.573333pt;}
.y23{bottom:521.213333pt;}
.y88{bottom:526.493333pt;}
.y131{bottom:528.893333pt;}
.y108{bottom:529.053333pt;}
.y54{bottom:529.373333pt;}
.y15f{bottom:530.493333pt;}
.yeb{bottom:538.973333pt;}
.y22{bottom:539.613333pt;}
.y87{bottom:544.893333pt;}
.y130{bottom:545.853333pt;}
.yae{bottom:547.453333pt;}
.y53{bottom:547.773333pt;}
.y15e{bottom:549.213333pt;}
.yea{bottom:557.693333pt;}
.y21{bottom:558.013333pt;}
.y12f{bottom:562.653333pt;}
.y86{bottom:563.293333pt;}
.yad{bottom:565.853333pt;}
.y52{bottom:566.173333pt;}
.y15d{bottom:567.613333pt;}
.ye9{bottom:576.093333pt;}
.y20{bottom:576.413333pt;}
.y12e{bottom:579.133333pt;}
.y85{bottom:581.693333pt;}
.yac{bottom:584.253333pt;}
.y51{bottom:584.573333pt;}
.y15c{bottom:586.013333pt;}
.ye8{bottom:594.493333pt;}
.y1f{bottom:594.813333pt;}
.y12d{bottom:596.093333pt;}
.y84{bottom:600.093333pt;}
.yab{bottom:602.653333pt;}
.y50{bottom:602.973333pt;}
.y15b{bottom:604.093333pt;}
.ye7{bottom:612.893333pt;}
.y1e{bottom:613.213333pt;}
.y83{bottom:618.493333pt;}
.yaa{bottom:621.053333pt;}
.y4f{bottom:621.373333pt;}
.y15a{bottom:622.813333pt;}
.y12c{bottom:630.173333pt;}
.ye6{bottom:630.973333pt;}
.y1d{bottom:631.613333pt;}
.y82{bottom:636.893333pt;}
.y4e{bottom:639.773333pt;}
.y159{bottom:641.213333pt;}
.y12b{bottom:646.653333pt;}
.ye5{bottom:649.373333pt;}
.y1c{bottom:650.013333pt;}
.y81{bottom:655.293333pt;}
.y4d{bottom:658.173333pt;}
.y158{bottom:659.613333pt;}
.y12a{bottom:663.613333pt;}
.ye4{bottom:668.093333pt;}
.y1b{bottom:668.413333pt;}
.y80{bottom:673.693333pt;}
.ya9{bottom:676.253333pt;}
.y4c{bottom:676.573333pt;}
.y157{bottom:678.013333pt;}
.y129{bottom:680.733333pt;}
.ye3{bottom:686.493333pt;}
.y1a{bottom:686.813333pt;}
.y7f{bottom:691.773333pt;}
.ya8{bottom:694.653333pt;}
.y4b{bottom:694.973333pt;}
.y156{bottom:696.093333pt;}
.y128{bottom:697.533333pt;}
.ye2{bottom:704.893333pt;}
.y19{bottom:705.213333pt;}
.y7e{bottom:710.173333pt;}
.y4a{bottom:713.373333pt;}
.y127{bottom:714.493333pt;}
.y155{bottom:714.813333pt;}
.ye1{bottom:723.293333pt;}
.y18{bottom:723.613333pt;}
.y7d{bottom:728.893333pt;}
.y126{bottom:730.973333pt;}
.y107{bottom:731.453333pt;}
.y49{bottom:731.773333pt;}
.y154{bottom:733.213333pt;}
.y17{bottom:741.693333pt;}
.y7c{bottom:747.333333pt;}
.y125{bottom:747.973333pt;}
.y106{bottom:749.893333pt;}
.y48{bottom:750.213333pt;}
.y153{bottom:751.653333pt;}
.ye0{bottom:759.813333pt;}
.y16{bottom:760.133333pt;}
.y124{bottom:765.093333pt;}
.y7b{bottom:765.733333pt;}
.y47{bottom:768.613333pt;}
.y152{bottom:769.733333pt;}
.y15{bottom:778.213333pt;}
.y123{bottom:781.893333pt;}
.y7a{bottom:784.133333pt;}
.y46{bottom:787.013333pt;}
.y151{bottom:788.453333pt;}
.ydf{bottom:796.613333pt;}
.y14{bottom:796.773333pt;}
.y122{bottom:798.853333pt;}
.y79{bottom:802.533333pt;}
.ya7{bottom:805.093333pt;}
.y45{bottom:805.413333pt;}
.y150{bottom:806.853333pt;}
.yde{bottom:815.013333pt;}
.y13{bottom:815.173333pt;}
.y121{bottom:815.653333pt;}
.y78{bottom:820.933333pt;}
.ya6{bottom:823.493333pt;}
.y44{bottom:823.813333pt;}
.y14f{bottom:825.253333pt;}
.y120{bottom:832.293333pt;}
.y12{bottom:833.253333pt;}
.yd9{bottom:838.693333pt;}
.y77{bottom:839.013333pt;}
.y43{bottom:842.213333pt;}
.y14e{bottom:843.653333pt;}
.y11f{bottom:849.093333pt;}
.y11{bottom:851.653333pt;}
.y76{bottom:857.413333pt;}
.y105{bottom:860.293333pt;}
.y42{bottom:860.613333pt;}
.y14d{bottom:861.733333pt;}
.y11e{bottom:866.213333pt;}
.y10{bottom:869.893333pt;}
.y104{bottom:878.693333pt;}
.y41{bottom:879.013333pt;}
.y14c{bottom:880.453333pt;}
.y11d{bottom:883.173333pt;}
.y73{bottom:884.933333pt;}
.yf{bottom:888.613333pt;}
.y174{bottom:897.093333pt;}
.y40{bottom:897.413333pt;}
.yd6{bottom:897.893333pt;}
.y14b{bottom:898.853333pt;}
.y11c{bottom:899.653333pt;}
.ye{bottom:910.053333pt;}
.y71{bottom:911.653333pt;}
.y173{bottom:915.493333pt;}
.y3f{bottom:915.813333pt;}
.y11b{bottom:916.613333pt;}
.y14a{bottom:917.253333pt;}
.yd3{bottom:922.213333pt;}
.yd{bottom:931.493333pt;}
.y3e{bottom:934.213333pt;}
.y149{bottom:935.653333pt;}
.y6f{bottom:939.813333pt;}
.ya5{bottom:952.293333pt;}
.yc{bottom:952.453333pt;}
.y3d{bottom:952.613333pt;}
.y148{bottom:953.413333pt;}
.y9{bottom:967.173333pt;}
.y8{bottom:972.133333pt;}
.y7{bottom:992.133333pt;}
.y6{bottom:1007.360000pt;}
.y5{bottom:1022.560000pt;}
.y4{bottom:1037.600000pt;}
.y3{bottom:1053.280000pt;}
.y2{bottom:1073.440000pt;}
.y1{bottom:1100.960000pt;}
.h17{height:18.386667pt;}
.h1b{height:19.506667pt;}
.h1d{height:19.666667pt;}
.h11{height:19.826667pt;}
.h10{height:20.306667pt;}
.hf{height:20.786667pt;}
.h12{height:20.818667pt;}
.h15{height:22.066667pt;}
.h16{height:22.226667pt;}
.h13{height:22.240000pt;}
.h14{height:22.266667pt;}
.hd{height:22.706667pt;}
.hb{height:23.353333pt;}
.hc{height:23.506667pt;}
.h5{height:40.151250pt;}
.h1a{height:41.106667pt;}
.h18{height:41.113333pt;}
.h7{height:44.505000pt;}
.he{height:46.281250pt;}
.h4{height:48.375000pt;}
.h1c{height:55.186667pt;}
.h19{height:55.193333pt;}
.h6{height:56.598750pt;}
.h1f{height:57.787500pt;}
.h1e{height:59.340000pt;}
.ha{height:62.812500pt;}
.h9{height:64.500000pt;}
.h3{height:72.562500pt;}
.h8{height:75.465000pt;}
.h2{height:94.218750pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w18{width:25.906667pt;}
.w14{width:25.920000pt;}
.w15{width:51.520000pt;}
.w9{width:52.658667pt;}
.w16{width:53.920000pt;}
.w19{width:54.386667pt;}
.we{width:56.338667pt;}
.w13{width:58.898667pt;}
.w2{width:62.070667pt;}
.w17{width:78.272000pt;}
.w10{width:84.032000pt;}
.w5{width:89.590667pt;}
.w1a{width:99.858667pt;}
.w8{width:104.790667pt;}
.wb{width:109.312000pt;}
.wd{width:112.310667pt;}
.w12{width:118.710667pt;}
.w3{width:123.538667pt;}
.wa{width:143.520000pt;}
.wf{width:153.760000pt;}
.w6{width:186.573333pt;}
.wc{width:202.093333pt;}
.w11{width:224.173333pt;}
.w7{width:331.893333pt;}
.w4{width:437.986667pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x8{left:0.950667pt;}
.xb{left:93.001333pt;}
.x16{left:107.081333pt;}
.x7{left:111.081333pt;}
.x1{left:112.032000pt;}
.x5{left:142.906667pt;}
.x4{left:146.426667pt;}
.x1f{left:160.026667pt;}
.x9{left:175.240000pt;}
.xc{left:184.680000pt;}
.xe{left:217.960000pt;}
.x12{left:225.480000pt;}
.x17{left:227.880000pt;}
.xf{left:272.546667pt;}
.x13{left:283.906667pt;}
.x18{left:288.866667pt;}
.xa{left:300.866667pt;}
.x19{left:316.866667pt;}
.x6{left:369.026667pt;}
.x1a{left:370.466667pt;}
.xd{left:373.186667pt;}
.x2{left:390.946667pt;}
.x3{left:399.106667pt;}
.x10{left:418.146667pt;}
.x1b{left:426.466667pt;}
.x14{left:439.586667pt;}
.x1c{left:506.826667pt;}
.x15{left:525.706667pt;}
.x11{left:529.546667pt;}
.x1d{left:534.826667pt;}
.x1e{left:591.146667pt;}
}




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