
    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_fed2b1135340bd7b005ae031.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_0d77fce32244f534f89451a2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_ad76412cb656c08f3533c0f5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_90de07b073c75013b3ed8b83.woff')format("woff");}.ff4{font-family:ff4;line-height:0.977539;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_266deec664cce63748579580.woff')format("woff");}.ff5{font-family:ff5;line-height:0.977539;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_40f96d8ff38193d207de8e9c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_37547276d8db087e501febd5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_35d283022818c3f07dec4afa.woff')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-1.440000px;}
.ls16{letter-spacing:-1.296000px;}
.lsf{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.648000px;}
.ls5{letter-spacing:-0.498000px;}
.lsb{letter-spacing:-0.486600px;}
.ls4{letter-spacing:-0.457800px;}
.ls11{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.020160px;}
.lsc{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.498240px;}
.ls6{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.840000px;}
.ls12{letter-spacing:1.584000px;}
.ls10{letter-spacing:3.600000px;}
.lsa{letter-spacing:7.920000px;}
.lsd{letter-spacing:12.240000px;}
.ls14{letter-spacing:16.560000px;}
.ls13{letter-spacing:97.200000px;}
.ls1{letter-spacing:154.980000px;}
.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;}
}
.ws3{word-spacing:-119.520000px;}
.ws4{word-spacing:-23.425920px;}
.wsd{word-spacing:-19.584000px;}
.wsa{word-spacing:-18.504000px;}
.ws8{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.352000px;}
.wsb{word-spacing:-17.064000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.ws5{word-spacing:-15.120000px;}
.ws7{word-spacing:-14.633400px;}
.ws2{word-spacing:-13.182000px;}
.ws6{word-spacing:0.000000px;}
._14{margin-left:-5.182080px;}
._13{margin-left:-4.179840px;}
._f{margin-left:-3.060960px;}
._3{margin-left:-2.039040px;}
._0{margin-left:-1.028160px;}
._1{width:1.816800px;}
._6{width:3.336960px;}
._7{width:4.560480px;}
._a{width:5.789280px;}
._8{width:7.344000px;}
._9{width:8.418240px;}
._15{width:9.420000px;}
._10{width:10.440000px;}
._4{width:11.712960px;}
._5{width:13.218720px;}
._d{width:14.268000px;}
._c{width:15.592320px;}
._b{width:16.632000px;}
._1b{width:19.656000px;}
._11{width:21.384000px;}
._12{width:22.752000px;}
._1a{width:24.264000px;}
._19{width:26.135040px;}
._18{width:27.156000px;}
._26{width:29.094240px;}
._24{width:30.096000px;}
._25{width:31.542240px;}
._1c{width:33.912000px;}
._16{width:37.800000px;}
._17{width:38.916960px;}
._1f{width:40.445760px;}
._20{width:44.874240px;}
._21{width:46.100160px;}
._1d{width:96.840000px;}
._1e{width:98.010240px;}
._22{width:136.800000px;}
._23{width:137.903040px;}
._2{width:393.960000px;}
._e{width:1069.656000px;}
.fc7{color:rgb(112,173,71);}
.fc6{color:transparent;}
.fc5{color:rgb(118,113,113);}
.fc4{color:rgb(83,129,53);}
.fc2{color:rgb(0,0,255);}
.fc9{color:rgb(0,112,192);}
.fc1{color:rgb(192,0,0);}
.fc8{color:rgb(51,51,51);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs5{font-size:96.480000px;}
.fs4{font-size:119.520000px;}
.ya{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y13{bottom:6.120000px;}
.ye{bottom:11.556000px;}
.y9e{bottom:14.040000px;}
.ya6{bottom:14.400000px;}
.ya3{bottom:16.920000px;}
.yc{bottom:19.836000px;}
.y12{bottom:41.760000px;}
.yf{bottom:43.560000px;}
.ycf{bottom:45.000000px;}
.yef{bottom:45.030000px;}
.ya1{bottom:45.360000px;}
.ya5{bottom:45.390000px;}
.yb{bottom:68.400000px;}
.ya0{bottom:76.365000px;}
.y11{bottom:77.040000px;}
.y38{bottom:94.716000px;}
.y9d{bottom:101.205000px;}
.y9f{bottom:107.325000px;}
.y9{bottom:111.636000px;}
.y34{bottom:132.516000px;}
.y136{bottom:136.836000px;}
.ybe{bottom:138.996000px;}
.y7c{bottom:140.796000px;}
.yf4{bottom:143.676000px;}
.y108{bottom:145.836000px;}
.y5c{bottom:148.716000px;}
.y84{bottom:151.230000px;}
.ycb{bottom:153.750000px;}
.ye2{bottom:156.990000px;}
.y11b{bottom:160.590000px;}
.y33{bottom:163.470000px;}
.y5b{bottom:165.990000px;}
.y9b{bottom:166.710000px;}
.y135{bottom:167.790000px;}
.ybd{bottom:169.950000px;}
.y7b{bottom:171.750000px;}
.yf3{bottom:174.630000px;}
.y107{bottom:176.790000px;}
.y83{bottom:182.190000px;}
.y5a{bottom:183.270000px;}
.yca{bottom:184.710000px;}
.ye1{bottom:187.950000px;}
.y11a{bottom:191.550000px;}
.y32{bottom:194.430000px;}
.y9a{bottom:197.715000px;}
.y134{bottom:199.155000px;}
.y59{bottom:200.595000px;}
.ybc{bottom:200.955000px;}
.y7a{bottom:202.755000px;}
.yf2{bottom:205.635000px;}
.y106{bottom:208.155000px;}
.yc9{bottom:215.715000px;}
.y58{bottom:217.875000px;}
.ye0{bottom:218.955000px;}
.y82{bottom:222.195000px;}
.y119{bottom:222.915000px;}
.y31{bottom:225.795000px;}
.y99{bottom:228.675000px;}
.y133{bottom:230.115000px;}
.ybb{bottom:231.915000px;}
.y79{bottom:233.715000px;}
.y57{bottom:235.155000px;}
.yf1{bottom:236.955000px;}
.y105{bottom:239.115000px;}
.yc8{bottom:247.035000px;}
.y81{bottom:248.475000px;}
.ydf{bottom:249.915000px;}
.y56{bottom:252.435000px;}
.y118{bottom:253.875000px;}
.y30{bottom:256.755000px;}
.y98{bottom:259.635000px;}
.y132{bottom:261.075000px;}
.yba{bottom:263.235000px;}
.y78{bottom:265.035000px;}
.y104{bottom:270.075000px;}
.yf0{bottom:276.915000px;}
.yc7{bottom:277.995000px;}
.y55{bottom:280.515000px;}
.yde{bottom:281.235000px;}
.y117{bottom:284.835000px;}
.y2f{bottom:287.715000px;}
.y97{bottom:290.595000px;}
.y131{bottom:292.035000px;}
.yb9{bottom:294.195000px;}
.yee{bottom:294.555000px;}
.y77{bottom:295.995000px;}
.y103{bottom:301.035000px;}
.yc6{bottom:308.955000px;}
.y54{bottom:311.475000px;}
.ydd{bottom:312.195000px;}
.y116{bottom:315.795000px;}
.y2e{bottom:318.675000px;}
.y96{bottom:321.915000px;}
.y130{bottom:322.995000px;}
.yb8{bottom:325.185000px;}
.y76{bottom:326.985000px;}
.y102{bottom:332.025000px;}
.yc5{bottom:339.945000px;}
.y53{bottom:342.465000px;}
.ydc{bottom:343.185000px;}
.y115{bottom:347.145000px;}
.y2d{bottom:350.025000px;}
.y95{bottom:352.905000px;}
.y12f{bottom:354.345000px;}
.yb7{bottom:356.145000px;}
.yed{bottom:357.585000px;}
.y75{bottom:357.945000px;}
.y101{bottom:363.345000px;}
.yc4{bottom:371.265000px;}
.y52{bottom:373.425000px;}
.ydb{bottom:374.145000px;}
.y114{bottom:378.105000px;}
.y2c{bottom:380.985000px;}
.y94{bottom:383.865000px;}
.y12e{bottom:385.305000px;}
.yb6{bottom:387.465000px;}
.y74{bottom:389.265000px;}
.y100{bottom:394.305000px;}
.yc3{bottom:399.705000px;}
.y51{bottom:404.745000px;}
.yda{bottom:405.465000px;}
.y113{bottom:409.065000px;}
.y2b{bottom:411.945000px;}
.y93{bottom:414.825000px;}
.y12d{bottom:416.265000px;}
.yb5{bottom:418.425000px;}
.y73{bottom:420.225000px;}
.y138{bottom:422.745000px;}
.yff{bottom:425.265000px;}
.yc2{bottom:428.145000px;}
.yec{bottom:434.265000px;}
.y50{bottom:435.705000px;}
.yd9{bottom:436.425000px;}
.y112{bottom:440.025000px;}
.y2a{bottom:442.905000px;}
.y92{bottom:446.145000px;}
.y12c{bottom:447.225000px;}
.yb4{bottom:449.430000px;}
.y72{bottom:451.230000px;}
.yfe{bottom:456.270000px;}
.y4f{bottom:466.710000px;}
.yd8{bottom:467.430000px;}
.y111{bottom:471.390000px;}
.y29{bottom:474.270000px;}
.yeb{bottom:474.630000px;}
.y91{bottom:477.150000px;}
.y12b{bottom:478.590000px;}
.yb3{bottom:480.390000px;}
.y71{bottom:482.190000px;}
.yfd{bottom:487.590000px;}
.y4e{bottom:497.670000px;}
.yd7{bottom:498.390000px;}
.y28{bottom:498.750000px;}
.y110{bottom:502.350000px;}
.yea{bottom:505.590000px;}
.y90{bottom:508.110000px;}
.y12a{bottom:509.550000px;}
.yb2{bottom:511.710000px;}
.y70{bottom:513.510000px;}
.y137{bottom:516.030000px;}
.yfc{bottom:518.550000px;}
.y27{bottom:526.470000px;}
.y4d{bottom:528.990000px;}
.yd6{bottom:529.710000px;}
.y10f{bottom:533.310000px;}
.ye9{bottom:536.550000px;}
.y8f{bottom:539.070000px;}
.y129{bottom:540.510000px;}
.yb1{bottom:542.670000px;}
.y6f{bottom:544.470000px;}
.yfb{bottom:549.510000px;}
.y26{bottom:552.030000px;}
.y4c{bottom:559.950000px;}
.y10e{bottom:564.270000px;}
.ye8{bottom:567.510000px;}
.y25{bottom:569.310000px;}
.yd5{bottom:569.670000px;}
.y8e{bottom:570.390000px;}
.y128{bottom:571.470000px;}
.yb0{bottom:573.630000px;}
.y6e{bottom:575.460000px;}
.yfa{bottom:580.500000px;}
.y4b{bottom:590.940000px;}
.y24{bottom:595.260000px;}
.y10d{bottom:595.620000px;}
.ye7{bottom:598.860000px;}
.y8d{bottom:601.380000px;}
.y127{bottom:602.820000px;}
.yaf{bottom:604.620000px;}
.y6d{bottom:606.420000px;}
.yd4{bottom:609.660000px;}
.yf9{bottom:611.820000px;}
.y4a{bottom:621.900000px;}
.y23{bottom:623.340000px;}
.y10c{bottom:626.580000px;}
.ye6{bottom:629.820000px;}
.y8c{bottom:632.340000px;}
.y126{bottom:633.780000px;}
.y6c{bottom:637.740000px;}
.yae{bottom:638.460000px;}
.yd3{bottom:640.620000px;}
.yf8{bottom:642.780000px;}
.y22{bottom:652.140000px;}
.y49{bottom:653.220000px;}
.y10b{bottom:657.540000px;}
.ye5{bottom:660.780000px;}
.y8b{bottom:663.300000px;}
.y125{bottom:664.740000px;}
.y6b{bottom:668.700000px;}
.yad{bottom:671.580000px;}
.yd2{bottom:671.940000px;}
.yf7{bottom:673.740000px;}
.y21{bottom:678.060000px;}
.y48{bottom:684.180000px;}
.y8a{bottom:694.620000px;}
.y124{bottom:695.700000px;}
.y10a{bottom:697.500000px;}
.y6a{bottom:699.660000px;}
.ye4{bottom:700.770000px;}
.yac{bottom:704.730000px;}
.y20{bottom:706.170000px;}
.yd1{bottom:709.410000px;}
.y47{bottom:715.170000px;}
.y109{bottom:724.890000px;}
.y89{bottom:725.610000px;}
.y1f{bottom:726.330000px;}
.y123{bottom:727.050000px;}
.ye3{bottom:728.130000px;}
.y69{bottom:730.650000px;}
.yf6{bottom:736.050000px;}
.yc1{bottom:741.450000px;}
.y1e{bottom:745.410000px;}
.y46{bottom:746.130000px;}
.yd0{bottom:746.850000px;}
.yab{bottom:747.210000px;}
.y88{bottom:756.570000px;}
.y80{bottom:758.010000px;}
.y68{bottom:761.970000px;}
.yf5{bottom:767.010000px;}
.yc0{bottom:769.890000px;}
.y1d{bottom:773.130000px;}
.yce{bottom:773.490000px;}
.y45{bottom:777.450000px;}
.yaa{bottom:778.530000px;}
.y87{bottom:787.530000px;}
.y7f{bottom:788.970000px;}
.y67{bottom:792.930000px;}
.ybf{bottom:797.970000px;}
.y1c{bottom:800.490000px;}
.y44{bottom:808.410000px;}
.ya9{bottom:809.490000px;}
.y122{bottom:819.930000px;}
.y86{bottom:821.370000px;}
.y66{bottom:823.890000px;}
.y1b{bottom:828.255000px;}
.y7e{bottom:828.975000px;}
.ycd{bottom:836.175000px;}
.y43{bottom:839.415000px;}
.ya8{bottom:849.495000px;}
.y121{bottom:851.295000px;}
.y65{bottom:854.895000px;}
.y1a{bottom:855.975000px;}
.y85{bottom:857.775000px;}
.y7d{bottom:860.295000px;}
.y42{bottom:860.655000px;}
.y120{bottom:882.255000px;}
.y19{bottom:883.335000px;}
.y64{bottom:885.855000px;}
.ya7{bottom:889.455000px;}
.y41{bottom:891.255000px;}
.ya4{bottom:907.095000px;}
.y18{bottom:911.055000px;}
.ycc{bottom:913.215000px;}
.y63{bottom:917.175000px;}
.y40{bottom:922.215000px;}
.y17{bottom:938.775000px;}
.y11f{bottom:944.175000px;}
.y62{bottom:948.135000px;}
.y3f{bottom:953.205000px;}
.y16{bottom:966.165000px;}
.ya2{bottom:970.125000px;}
.y11e{bottom:975.525000px;}
.y61{bottom:979.125000px;}
.y3e{bottom:984.525000px;}
.y15{bottom:993.885000px;}
.y9c{bottom:1001.805000px;}
.y11d{bottom:1006.485000px;}
.y60{bottom:1010.085000px;}
.y3d{bottom:1015.485000px;}
.y14{bottom:1021.605000px;}
.y11c{bottom:1037.445000px;}
.y5f{bottom:1041.405000px;}
.y3c{bottom:1046.445000px;}
.y8{bottom:1047.165000px;}
.y7{bottom:1064.445000px;}
.y5e{bottom:1072.365000px;}
.y3b{bottom:1077.405000px;}
.y6{bottom:1082.130000px;}
.y10{bottom:1103.370000px;}
.y5{bottom:1104.450000px;}
.y3a{bottom:1108.770000px;}
.y4{bottom:1128.210000px;}
.y5d{bottom:1137.210000px;}
.y39{bottom:1139.730000px;}
.y3{bottom:1151.610000px;}
.y37{bottom:1167.090000px;}
.y2{bottom:1175.370000px;}
.y36{bottom:1181.130000px;}
.y1{bottom:1199.130000px;}
.y35{bottom:1202.010000px;}
.h5{height:8.640000px;}
.he{height:15.516000px;}
.h13{height:30.960000px;}
.h7{height:32.436000px;}
.h6{height:48.013594px;}
.h8{height:48.147188px;}
.h4{height:53.067656px;}
.h12{height:53.215313px;}
.hc{height:53.717344px;}
.h3{height:58.121719px;}
.h17{height:61.920000px;}
.h16{height:61.956000px;}
.h15{height:62.280000px;}
.h14{height:62.316000px;}
.hd{height:63.175781px;}
.h10{height:63.351562px;}
.h2{height:63.949219px;}
.hf{height:74.181094px;}
.hb{height:85.691953px;}
.ha{height:95.300859px;}
.h9{height:106.596000px;}
.h11{height:124.236000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:41.040000px;}
.w1a{width:42.480000px;}
.w11{width:42.516000px;}
.w15{width:44.640000px;}
.w14{width:46.476000px;}
.w18{width:47.520000px;}
.w19{width:47.916000px;}
.w12{width:48.240000px;}
.w16{width:48.996000px;}
.w1b{width:49.356000px;}
.w13{width:52.236000px;}
.wf{width:52.956000px;}
.wa{width:53.316000px;}
.wb{width:90.756000px;}
.wd{width:96.156000px;}
.wc{width:97.956000px;}
.w10{width:105.516000px;}
.w1c{width:121.752000px;}
.w1d{width:126.396000px;}
.w1e{width:135.432000px;}
.w1f{width:138.636000px;}
.w20{width:154.515000px;}
.w4{width:181.875000px;}
.we{width:212.475000px;}
.w9{width:333.510000px;}
.w7{width:339.270000px;}
.w6{width:341.430000px;}
.w8{width:347.190000px;}
.w3{width:498.810000px;}
.w5{width:566.130000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x33{left:7.590000px;}
.x3{left:8.640000px;}
.x4a{left:9.720000px;}
.x9{left:10.800000px;}
.x45{left:12.240000px;}
.x31{left:13.680000px;}
.x26{left:14.760000px;}
.x24{left:16.200000px;}
.x20{left:17.640000px;}
.x4c{left:19.080000px;}
.x29{left:22.680000px;}
.x42{left:24.156000px;}
.x3f{left:25.596000px;}
.x1d{left:26.640000px;}
.x4b{left:28.440000px;}
.x47{left:30.600000px;}
.x2e{left:32.400000px;}
.x2b{left:34.200000px;}
.x2a{left:35.640000px;}
.x25{left:38.880000px;}
.x21{left:39.960000px;}
.x2d{left:42.120000px;}
.x28{left:44.280000px;}
.x22{left:45.720000px;}
.x49{left:53.310000px;}
.x2c{left:90.765000px;}
.x1{left:106.235987px;}
.xb{left:113.795987px;}
.x16{left:119.915987px;}
.x5{left:127.869000px;}
.xa{left:134.351987px;}
.x7{left:146.595000px;}
.xe{left:149.471987px;}
.xf{left:154.154987px;}
.x2f{left:156.674987px;}
.x41{left:167.834987px;}
.x1c{left:169.635000px;}
.x12{left:176.474987px;}
.x4e{left:189.434987px;}
.x32{left:213.195000px;}
.x1e{left:223.305000px;}
.x43{left:229.425000px;}
.x8{left:248.865000px;}
.x34{left:256.425000px;}
.x14{left:277.304987px;}
.x11{left:278.744987px;}
.x19{left:298.230000px;}
.xc{left:302.864987px;}
.x35{left:305.385000px;}
.x6{left:308.664000px;}
.x1f{left:314.790000px;}
.x13{left:331.709987px;}
.x44{left:356.550000px;}
.x10{left:357.629987px;}
.x36{left:358.710000px;}
.x15{left:373.469987px;}
.x1a{left:397.979987px;}
.x37{left:405.900000px;}
.x23{left:413.460000px;}
.x2{left:446.579987px;}
.x17{left:447.660000px;}
.x38{left:451.260000px;}
.x18{left:453.420000px;}
.x30{left:458.099987px;}
.xd{left:478.259987px;}
.x4d{left:484.379987px;}
.x46{left:492.690000px;}
.x39{left:500.970000px;}
.x27{left:510.330000px;}
.x3a{left:542.730000px;}
.x3b{left:596.775000px;}
.x4{left:605.055000px;}
.x48{left:632.055000px;}
.x3c{left:645.015000px;}
.x3d{left:693.645000px;}
.x3e{left:736.845000px;}
.x40{left:766.769987px;}
.x4f{left:768.209987px;}
.x1b{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.280000pt;}
.ls16{letter-spacing:-1.152000pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.442667pt;}
.lsb{letter-spacing:-0.432533pt;}
.ls4{letter-spacing:-0.406933pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.017920pt;}
.lsc{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.442880pt;}
.ls6{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.746667pt;}
.ls12{letter-spacing:1.408000pt;}
.ls10{letter-spacing:3.200000pt;}
.lsa{letter-spacing:7.040000pt;}
.lsd{letter-spacing:10.880000pt;}
.ls14{letter-spacing:14.720000pt;}
.ls13{letter-spacing:86.400000pt;}
.ls1{letter-spacing:137.760000pt;}
.ws3{word-spacing:-106.240000pt;}
.ws4{word-spacing:-20.823040pt;}
.wsd{word-spacing:-17.408000pt;}
.wsa{word-spacing:-16.448000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.424000pt;}
.wsb{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.ws5{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.007467pt;}
.ws2{word-spacing:-11.717333pt;}
.ws6{word-spacing:0.000000pt;}
._14{margin-left:-4.606293pt;}
._13{margin-left:-3.715413pt;}
._f{margin-left:-2.720853pt;}
._3{margin-left:-1.812480pt;}
._0{margin-left:-0.913920pt;}
._1{width:1.614933pt;}
._6{width:2.966187pt;}
._7{width:4.053760pt;}
._a{width:5.146027pt;}
._8{width:6.528000pt;}
._9{width:7.482880pt;}
._15{width:8.373333pt;}
._10{width:9.280000pt;}
._4{width:10.411520pt;}
._5{width:11.749973pt;}
._d{width:12.682667pt;}
._c{width:13.859840pt;}
._b{width:14.784000pt;}
._1b{width:17.472000pt;}
._11{width:19.008000pt;}
._12{width:20.224000pt;}
._1a{width:21.568000pt;}
._19{width:23.231147pt;}
._18{width:24.138667pt;}
._26{width:25.861547pt;}
._24{width:26.752000pt;}
._25{width:28.037547pt;}
._1c{width:30.144000pt;}
._16{width:33.600000pt;}
._17{width:34.592853pt;}
._1f{width:35.951787pt;}
._20{width:39.888213pt;}
._21{width:40.977920pt;}
._1d{width:86.080000pt;}
._1e{width:87.120213pt;}
._22{width:121.600000pt;}
._23{width:122.580480pt;}
._2{width:350.186667pt;}
._e{width:950.805333pt;}
.fs3{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs5{font-size:85.760000pt;}
.fs4{font-size:106.240000pt;}
.ya{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y13{bottom:5.440000pt;}
.ye{bottom:10.272000pt;}
.y9e{bottom:12.480000pt;}
.ya6{bottom:12.800000pt;}
.ya3{bottom:15.040000pt;}
.yc{bottom:17.632000pt;}
.y12{bottom:37.120000pt;}
.yf{bottom:38.720000pt;}
.ycf{bottom:40.000000pt;}
.yef{bottom:40.026667pt;}
.ya1{bottom:40.320000pt;}
.ya5{bottom:40.346667pt;}
.yb{bottom:60.800000pt;}
.ya0{bottom:67.880000pt;}
.y11{bottom:68.480000pt;}
.y38{bottom:84.192000pt;}
.y9d{bottom:89.960000pt;}
.y9f{bottom:95.400000pt;}
.y9{bottom:99.232000pt;}
.y34{bottom:117.792000pt;}
.y136{bottom:121.632000pt;}
.ybe{bottom:123.552000pt;}
.y7c{bottom:125.152000pt;}
.yf4{bottom:127.712000pt;}
.y108{bottom:129.632000pt;}
.y5c{bottom:132.192000pt;}
.y84{bottom:134.426667pt;}
.ycb{bottom:136.666667pt;}
.ye2{bottom:139.546667pt;}
.y11b{bottom:142.746667pt;}
.y33{bottom:145.306667pt;}
.y5b{bottom:147.546667pt;}
.y9b{bottom:148.186667pt;}
.y135{bottom:149.146667pt;}
.ybd{bottom:151.066667pt;}
.y7b{bottom:152.666667pt;}
.yf3{bottom:155.226667pt;}
.y107{bottom:157.146667pt;}
.y83{bottom:161.946667pt;}
.y5a{bottom:162.906667pt;}
.yca{bottom:164.186667pt;}
.ye1{bottom:167.066667pt;}
.y11a{bottom:170.266667pt;}
.y32{bottom:172.826667pt;}
.y9a{bottom:175.746667pt;}
.y134{bottom:177.026667pt;}
.y59{bottom:178.306667pt;}
.ybc{bottom:178.626667pt;}
.y7a{bottom:180.226667pt;}
.yf2{bottom:182.786667pt;}
.y106{bottom:185.026667pt;}
.yc9{bottom:191.746667pt;}
.y58{bottom:193.666667pt;}
.ye0{bottom:194.626667pt;}
.y82{bottom:197.506667pt;}
.y119{bottom:198.146667pt;}
.y31{bottom:200.706667pt;}
.y99{bottom:203.266667pt;}
.y133{bottom:204.546667pt;}
.ybb{bottom:206.146667pt;}
.y79{bottom:207.746667pt;}
.y57{bottom:209.026667pt;}
.yf1{bottom:210.626667pt;}
.y105{bottom:212.546667pt;}
.yc8{bottom:219.586667pt;}
.y81{bottom:220.866667pt;}
.ydf{bottom:222.146667pt;}
.y56{bottom:224.386667pt;}
.y118{bottom:225.666667pt;}
.y30{bottom:228.226667pt;}
.y98{bottom:230.786667pt;}
.y132{bottom:232.066667pt;}
.yba{bottom:233.986667pt;}
.y78{bottom:235.586667pt;}
.y104{bottom:240.066667pt;}
.yf0{bottom:246.146667pt;}
.yc7{bottom:247.106667pt;}
.y55{bottom:249.346667pt;}
.yde{bottom:249.986667pt;}
.y117{bottom:253.186667pt;}
.y2f{bottom:255.746667pt;}
.y97{bottom:258.306667pt;}
.y131{bottom:259.586667pt;}
.yb9{bottom:261.506667pt;}
.yee{bottom:261.826667pt;}
.y77{bottom:263.106667pt;}
.y103{bottom:267.586667pt;}
.yc6{bottom:274.626667pt;}
.y54{bottom:276.866667pt;}
.ydd{bottom:277.506667pt;}
.y116{bottom:280.706667pt;}
.y2e{bottom:283.266667pt;}
.y96{bottom:286.146667pt;}
.y130{bottom:287.106667pt;}
.yb8{bottom:289.053333pt;}
.y76{bottom:290.653333pt;}
.y102{bottom:295.133333pt;}
.yc5{bottom:302.173333pt;}
.y53{bottom:304.413333pt;}
.ydc{bottom:305.053333pt;}
.y115{bottom:308.573333pt;}
.y2d{bottom:311.133333pt;}
.y95{bottom:313.693333pt;}
.y12f{bottom:314.973333pt;}
.yb7{bottom:316.573333pt;}
.yed{bottom:317.853333pt;}
.y75{bottom:318.173333pt;}
.y101{bottom:322.973333pt;}
.yc4{bottom:330.013333pt;}
.y52{bottom:331.933333pt;}
.ydb{bottom:332.573333pt;}
.y114{bottom:336.093333pt;}
.y2c{bottom:338.653333pt;}
.y94{bottom:341.213333pt;}
.y12e{bottom:342.493333pt;}
.yb6{bottom:344.413333pt;}
.y74{bottom:346.013333pt;}
.y100{bottom:350.493333pt;}
.yc3{bottom:355.293333pt;}
.y51{bottom:359.773333pt;}
.yda{bottom:360.413333pt;}
.y113{bottom:363.613333pt;}
.y2b{bottom:366.173333pt;}
.y93{bottom:368.733333pt;}
.y12d{bottom:370.013333pt;}
.yb5{bottom:371.933333pt;}
.y73{bottom:373.533333pt;}
.y138{bottom:375.773333pt;}
.yff{bottom:378.013333pt;}
.yc2{bottom:380.573333pt;}
.yec{bottom:386.013333pt;}
.y50{bottom:387.293333pt;}
.yd9{bottom:387.933333pt;}
.y112{bottom:391.133333pt;}
.y2a{bottom:393.693333pt;}
.y92{bottom:396.573333pt;}
.y12c{bottom:397.533333pt;}
.yb4{bottom:399.493333pt;}
.y72{bottom:401.093333pt;}
.yfe{bottom:405.573333pt;}
.y4f{bottom:414.853333pt;}
.yd8{bottom:415.493333pt;}
.y111{bottom:419.013333pt;}
.y29{bottom:421.573333pt;}
.yeb{bottom:421.893333pt;}
.y91{bottom:424.133333pt;}
.y12b{bottom:425.413333pt;}
.yb3{bottom:427.013333pt;}
.y71{bottom:428.613333pt;}
.yfd{bottom:433.413333pt;}
.y4e{bottom:442.373333pt;}
.yd7{bottom:443.013333pt;}
.y28{bottom:443.333333pt;}
.y110{bottom:446.533333pt;}
.yea{bottom:449.413333pt;}
.y90{bottom:451.653333pt;}
.y12a{bottom:452.933333pt;}
.yb2{bottom:454.853333pt;}
.y70{bottom:456.453333pt;}
.y137{bottom:458.693333pt;}
.yfc{bottom:460.933333pt;}
.y27{bottom:467.973333pt;}
.y4d{bottom:470.213333pt;}
.yd6{bottom:470.853333pt;}
.y10f{bottom:474.053333pt;}
.ye9{bottom:476.933333pt;}
.y8f{bottom:479.173333pt;}
.y129{bottom:480.453333pt;}
.yb1{bottom:482.373333pt;}
.y6f{bottom:483.973333pt;}
.yfb{bottom:488.453333pt;}
.y26{bottom:490.693333pt;}
.y4c{bottom:497.733333pt;}
.y10e{bottom:501.573333pt;}
.ye8{bottom:504.453333pt;}
.y25{bottom:506.053333pt;}
.yd5{bottom:506.373333pt;}
.y8e{bottom:507.013333pt;}
.y128{bottom:507.973333pt;}
.yb0{bottom:509.893333pt;}
.y6e{bottom:511.520000pt;}
.yfa{bottom:516.000000pt;}
.y4b{bottom:525.280000pt;}
.y24{bottom:529.120000pt;}
.y10d{bottom:529.440000pt;}
.ye7{bottom:532.320000pt;}
.y8d{bottom:534.560000pt;}
.y127{bottom:535.840000pt;}
.yaf{bottom:537.440000pt;}
.y6d{bottom:539.040000pt;}
.yd4{bottom:541.920000pt;}
.yf9{bottom:543.840000pt;}
.y4a{bottom:552.800000pt;}
.y23{bottom:554.080000pt;}
.y10c{bottom:556.960000pt;}
.ye6{bottom:559.840000pt;}
.y8c{bottom:562.080000pt;}
.y126{bottom:563.360000pt;}
.y6c{bottom:566.880000pt;}
.yae{bottom:567.520000pt;}
.yd3{bottom:569.440000pt;}
.yf8{bottom:571.360000pt;}
.y22{bottom:579.680000pt;}
.y49{bottom:580.640000pt;}
.y10b{bottom:584.480000pt;}
.ye5{bottom:587.360000pt;}
.y8b{bottom:589.600000pt;}
.y125{bottom:590.880000pt;}
.y6b{bottom:594.400000pt;}
.yad{bottom:596.960000pt;}
.yd2{bottom:597.280000pt;}
.yf7{bottom:598.880000pt;}
.y21{bottom:602.720000pt;}
.y48{bottom:608.160000pt;}
.y8a{bottom:617.440000pt;}
.y124{bottom:618.400000pt;}
.y10a{bottom:620.000000pt;}
.y6a{bottom:621.920000pt;}
.ye4{bottom:622.906667pt;}
.yac{bottom:626.426667pt;}
.y20{bottom:627.706667pt;}
.yd1{bottom:630.586667pt;}
.y47{bottom:635.706667pt;}
.y109{bottom:644.346667pt;}
.y89{bottom:644.986667pt;}
.y1f{bottom:645.626667pt;}
.y123{bottom:646.266667pt;}
.ye3{bottom:647.226667pt;}
.y69{bottom:649.466667pt;}
.yf6{bottom:654.266667pt;}
.yc1{bottom:659.066667pt;}
.y1e{bottom:662.586667pt;}
.y46{bottom:663.226667pt;}
.yd0{bottom:663.866667pt;}
.yab{bottom:664.186667pt;}
.y88{bottom:672.506667pt;}
.y80{bottom:673.786667pt;}
.y68{bottom:677.306667pt;}
.yf5{bottom:681.786667pt;}
.yc0{bottom:684.346667pt;}
.y1d{bottom:687.226667pt;}
.yce{bottom:687.546667pt;}
.y45{bottom:691.066667pt;}
.yaa{bottom:692.026667pt;}
.y87{bottom:700.026667pt;}
.y7f{bottom:701.306667pt;}
.y67{bottom:704.826667pt;}
.ybf{bottom:709.306667pt;}
.y1c{bottom:711.546667pt;}
.y44{bottom:718.586667pt;}
.ya9{bottom:719.546667pt;}
.y122{bottom:728.826667pt;}
.y86{bottom:730.106667pt;}
.y66{bottom:732.346667pt;}
.y1b{bottom:736.226667pt;}
.y7e{bottom:736.866667pt;}
.ycd{bottom:743.266667pt;}
.y43{bottom:746.146667pt;}
.ya8{bottom:755.106667pt;}
.y121{bottom:756.706667pt;}
.y65{bottom:759.906667pt;}
.y1a{bottom:760.866667pt;}
.y85{bottom:762.466667pt;}
.y7d{bottom:764.706667pt;}
.y42{bottom:765.026667pt;}
.y120{bottom:784.226667pt;}
.y19{bottom:785.186667pt;}
.y64{bottom:787.426667pt;}
.ya7{bottom:790.626667pt;}
.y41{bottom:792.226667pt;}
.ya4{bottom:806.306667pt;}
.y18{bottom:809.826667pt;}
.ycc{bottom:811.746667pt;}
.y63{bottom:815.266667pt;}
.y40{bottom:819.746667pt;}
.y17{bottom:834.466667pt;}
.y11f{bottom:839.266667pt;}
.y62{bottom:842.786667pt;}
.y3f{bottom:847.293333pt;}
.y16{bottom:858.813333pt;}
.ya2{bottom:862.333333pt;}
.y11e{bottom:867.133333pt;}
.y61{bottom:870.333333pt;}
.y3e{bottom:875.133333pt;}
.y15{bottom:883.453333pt;}
.y9c{bottom:890.493333pt;}
.y11d{bottom:894.653333pt;}
.y60{bottom:897.853333pt;}
.y3d{bottom:902.653333pt;}
.y14{bottom:908.093333pt;}
.y11c{bottom:922.173333pt;}
.y5f{bottom:925.693333pt;}
.y3c{bottom:930.173333pt;}
.y8{bottom:930.813333pt;}
.y7{bottom:946.173333pt;}
.y5e{bottom:953.213333pt;}
.y3b{bottom:957.693333pt;}
.y6{bottom:961.893333pt;}
.y10{bottom:980.773333pt;}
.y5{bottom:981.733333pt;}
.y3a{bottom:985.573333pt;}
.y4{bottom:1002.853333pt;}
.y5d{bottom:1010.853333pt;}
.y39{bottom:1013.093333pt;}
.y3{bottom:1023.653333pt;}
.y37{bottom:1037.413333pt;}
.y2{bottom:1044.773333pt;}
.y36{bottom:1049.893333pt;}
.y1{bottom:1065.893333pt;}
.y35{bottom:1068.453333pt;}
.h5{height:7.680000pt;}
.he{height:13.792000pt;}
.h13{height:27.520000pt;}
.h7{height:28.832000pt;}
.h6{height:42.678750pt;}
.h8{height:42.797500pt;}
.h4{height:47.171250pt;}
.h12{height:47.302500pt;}
.hc{height:47.748750pt;}
.h3{height:51.663750pt;}
.h17{height:55.040000pt;}
.h16{height:55.072000pt;}
.h15{height:55.360000pt;}
.h14{height:55.392000pt;}
.hd{height:56.156250pt;}
.h10{height:56.312500pt;}
.h2{height:56.843750pt;}
.hf{height:65.938750pt;}
.hb{height:76.170625pt;}
.ha{height:84.711875pt;}
.h9{height:94.752000pt;}
.h11{height:110.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:36.480000pt;}
.w1a{width:37.760000pt;}
.w11{width:37.792000pt;}
.w15{width:39.680000pt;}
.w14{width:41.312000pt;}
.w18{width:42.240000pt;}
.w19{width:42.592000pt;}
.w12{width:42.880000pt;}
.w16{width:43.552000pt;}
.w1b{width:43.872000pt;}
.w13{width:46.432000pt;}
.wf{width:47.072000pt;}
.wa{width:47.392000pt;}
.wb{width:80.672000pt;}
.wd{width:85.472000pt;}
.wc{width:87.072000pt;}
.w10{width:93.792000pt;}
.w1c{width:108.224000pt;}
.w1d{width:112.352000pt;}
.w1e{width:120.384000pt;}
.w1f{width:123.232000pt;}
.w20{width:137.346667pt;}
.w4{width:161.666667pt;}
.we{width:188.866667pt;}
.w9{width:296.453333pt;}
.w7{width:301.573333pt;}
.w6{width:303.493333pt;}
.w8{width:308.613333pt;}
.w3{width:443.386667pt;}
.w5{width:503.226667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x33{left:6.746667pt;}
.x3{left:7.680000pt;}
.x4a{left:8.640000pt;}
.x9{left:9.600000pt;}
.x45{left:10.880000pt;}
.x31{left:12.160000pt;}
.x26{left:13.120000pt;}
.x24{left:14.400000pt;}
.x20{left:15.680000pt;}
.x4c{left:16.960000pt;}
.x29{left:20.160000pt;}
.x42{left:21.472000pt;}
.x3f{left:22.752000pt;}
.x1d{left:23.680000pt;}
.x4b{left:25.280000pt;}
.x47{left:27.200000pt;}
.x2e{left:28.800000pt;}
.x2b{left:30.400000pt;}
.x2a{left:31.680000pt;}
.x25{left:34.560000pt;}
.x21{left:35.520000pt;}
.x2d{left:37.440000pt;}
.x28{left:39.360000pt;}
.x22{left:40.640000pt;}
.x49{left:47.386667pt;}
.x2c{left:80.680000pt;}
.x1{left:94.431988pt;}
.xb{left:101.151988pt;}
.x16{left:106.591988pt;}
.x5{left:113.661333pt;}
.xa{left:119.423988pt;}
.x7{left:130.306667pt;}
.xe{left:132.863988pt;}
.xf{left:137.026655pt;}
.x2f{left:139.266655pt;}
.x41{left:149.186655pt;}
.x1c{left:150.786667pt;}
.x12{left:156.866655pt;}
.x4e{left:168.386655pt;}
.x32{left:189.506667pt;}
.x1e{left:198.493333pt;}
.x43{left:203.933333pt;}
.x8{left:221.213333pt;}
.x34{left:227.933333pt;}
.x14{left:246.493322pt;}
.x11{left:247.773322pt;}
.x19{left:265.093333pt;}
.xc{left:269.213322pt;}
.x35{left:271.453333pt;}
.x6{left:274.368000pt;}
.x1f{left:279.813333pt;}
.x13{left:294.853322pt;}
.x44{left:316.933333pt;}
.x10{left:317.893322pt;}
.x36{left:318.853333pt;}
.x15{left:331.973322pt;}
.x1a{left:353.759988pt;}
.x37{left:360.800000pt;}
.x23{left:367.520000pt;}
.x2{left:396.959988pt;}
.x17{left:397.920000pt;}
.x38{left:401.120000pt;}
.x18{left:403.040000pt;}
.x30{left:407.199988pt;}
.xd{left:425.119988pt;}
.x4d{left:430.559988pt;}
.x46{left:437.946667pt;}
.x39{left:445.306667pt;}
.x27{left:453.626667pt;}
.x3a{left:482.426667pt;}
.x3b{left:530.466667pt;}
.x4{left:537.826667pt;}
.x48{left:561.826667pt;}
.x3c{left:573.346667pt;}
.x3d{left:616.573333pt;}
.x3e{left:654.973333pt;}
.x40{left:681.573322pt;}
.x4f{left:682.853322pt;}
.x1b{left:699.493322pt;}
}




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