
    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_d7267697ab0611a38e9813a9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d19b348a55481d13a41022ef.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8ac446c840f06e7d14dbce90.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_4733d462dee93853fdaf6f4f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_a53f33338c3ec991014267cf.woff')format("woff");}.ff5{font-family:ff5;line-height:0.968262;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_af5d9c7e88e270f30bfb153b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_f20e1f4cf50699e78212c13d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.968262;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.ls10{letter-spacing:-0.774000px;}
.lsc{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.269400px;}
.ls7{letter-spacing:-0.259800px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.008640px;}
.lsf{letter-spacing:0.015120px;}
.ls15{letter-spacing:0.036000px;}
.ls1b{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.173280px;}
.ls0{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.181200px;}
.ls9{letter-spacing:0.206640px;}
.ls1c{letter-spacing:0.223800px;}
.ls6{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.ls16{letter-spacing:3.060000px;}
.ls17{letter-spacing:4.500000px;}
.ls13{letter-spacing:8.586720px;}
.ls1e{letter-spacing:9.540000px;}
.lsa{letter-spacing:10.746720px;}
.ls18{letter-spacing:14.580000px;}
.ls8{letter-spacing:20.826720px;}
.ls2{letter-spacing:30.186720px;}
.lsd{letter-spacing:103.949280px;}
.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;}
}
.ws4{word-spacing:-54.000000px;}
.ws6{word-spacing:-15.199800px;}
.wse{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.680200px;}
.wsd{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.166000px;}
.ws5{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.500000px;}
.ws13{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.283800px;}
.ws12{word-spacing:-12.241200px;}
.ws10{word-spacing:-12.105360px;}
.ws0{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.790600px;}
.ws1{word-spacing:-11.700000px;}
.wsc{word-spacing:-11.484000px;}
.wsb{word-spacing:-11.355120px;}
.ws9{word-spacing:-9.720000px;}
.ws14{word-spacing:-7.560000px;}
.ws8{word-spacing:0.000000px;}
._18{margin-left:-4.705920px;}
._15{margin-left:-3.572640px;}
._3{margin-left:-2.304000px;}
._0{margin-left:-1.203120px;}
._1{width:1.015920px;}
._2{width:2.551440px;}
._6{width:3.918480px;}
._9{width:5.832000px;}
._7{width:6.912000px;}
._8{width:8.046000px;}
._14{width:9.400800px;}
._b{width:10.764000px;}
._a{width:11.826000px;}
._19{width:13.512240px;}
._26{width:14.557920px;}
._5{width:15.723120px;}
._4{width:17.310000px;}
._1e{width:18.366720px;}
._10{width:19.440000px;}
._13{width:20.520720px;}
._16{width:21.931920px;}
._17{width:23.182320px;}
._1f{width:24.210240px;}
._11{width:25.550640px;}
._12{width:26.806800px;}
._1c{width:28.027440px;}
._1d{width:29.315520px;}
._f{width:31.914000px;}
._e{width:32.994000px;}
._1b{width:34.076160px;}
._1a{width:35.465760px;}
._24{width:39.023280px;}
._22{width:40.174560px;}
._23{width:41.207760px;}
._d{width:43.863120px;}
._c{width:45.414000px;}
._25{width:47.012160px;}
._21{width:52.263360px;}
._20{width:114.660000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(149,79,114);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs4{font-size:38.880000px;}
.fs6{font-size:45.360000px;}
.fs0{font-size:48.240000px;}
.fs5{font-size:48.384000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:144.000000px;}
.y11a{bottom:-4.395000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:1.110000px;}
.ybc{bottom:1.185000px;}
.yf6{bottom:2.520000px;}
.ybf{bottom:3.315000px;}
.yf2{bottom:4.680000px;}
.yf8{bottom:7.560000px;}
.yfa{bottom:7.740000px;}
.yf4{bottom:9.000000px;}
.yc4{bottom:10.296000px;}
.yf5{bottom:15.480000px;}
.ybe{bottom:17.205000px;}
.y11f{bottom:17.385000px;}
.y185{bottom:17.565000px;}
.yc3{bottom:24.156000px;}
.y11e{bottom:31.245000px;}
.y184{bottom:31.425000px;}
.y182{bottom:34.305000px;}
.y11d{bottom:45.105000px;}
.y1{bottom:56.376000px;}
.y11c{bottom:58.785000px;}
.y44{bottom:112.176000px;}
.yba{bottom:112.356000px;}
.y64{bottom:112.536000px;}
.y144{bottom:119.556000px;}
.ya1{bottom:120.456000px;}
.y118{bottom:122.976000px;}
.yc2{bottom:125.640000px;}
.yef{bottom:127.116000px;}
.y43{bottom:128.556000px;}
.y63{bottom:128.916000px;}
.y180{bottom:135.756000px;}
.y143{bottom:135.936000px;}
.ya0{bottom:136.836000px;}
.y117{bottom:139.356000px;}
.yee{bottom:143.496000px;}
.y42{bottom:144.936000px;}
.y62{bottom:145.296000px;}
.y17f{bottom:149.616000px;}
.y142{bottom:152.310000px;}
.y9f{bottom:153.210000px;}
.y116{bottom:155.730000px;}
.yed{bottom:159.870000px;}
.y41{bottom:161.310000px;}
.y61{bottom:161.670000px;}
.y17e{bottom:163.290000px;}
.y141{bottom:168.690000px;}
.y9e{bottom:169.590000px;}
.yc0{bottom:171.180000px;}
.y115{bottom:172.110000px;}
.yec{bottom:176.250000px;}
.y17d{bottom:177.150000px;}
.y40{bottom:177.690000px;}
.y60{bottom:178.050000px;}
.y140{bottom:185.070000px;}
.y9d{bottom:186.150000px;}
.y114{bottom:188.490000px;}
.y17c{bottom:191.010000px;}
.yeb{bottom:192.630000px;}
.y3f{bottom:194.250000px;}
.y5f{bottom:194.430000px;}
.y13f{bottom:201.450000px;}
.y9c{bottom:202.530000px;}
.y17b{bottom:204.690000px;}
.y113{bottom:204.870000px;}
.yea{bottom:209.010000px;}
.y3e{bottom:210.630000px;}
.y5e{bottom:210.810000px;}
.y13e{bottom:217.830000px;}
.y17a{bottom:218.550000px;}
.y9b{bottom:218.910000px;}
.y112{bottom:221.250000px;}
.ye9{bottom:225.390000px;}
.y3d{bottom:227.010000px;}
.y5d{bottom:227.190000px;}
.y179{bottom:232.410000px;}
.y13d{bottom:234.210000px;}
.y9a{bottom:235.290000px;}
.y111{bottom:237.630000px;}
.ye8{bottom:241.770000px;}
.y3c{bottom:243.390000px;}
.y5c{bottom:243.570000px;}
.y178{bottom:246.090000px;}
.y13c{bottom:250.770000px;}
.y99{bottom:251.670000px;}
.y110{bottom:254.010000px;}
.ye7{bottom:258.150000px;}
.y3b{bottom:259.770000px;}
.y5b{bottom:259.950000px;}
.y13b{bottom:267.150000px;}
.y98{bottom:268.050000px;}
.y10f{bottom:270.390000px;}
.y177{bottom:273.810000px;}
.ye6{bottom:274.530000px;}
.y5a{bottom:276.330000px;}
.y3a{bottom:282.135000px;}
.y13a{bottom:283.575000px;}
.y97{bottom:284.475000px;}
.y10e{bottom:286.815000px;}
.y176{bottom:287.535000px;}
.ye5{bottom:290.955000px;}
.y59{bottom:292.755000px;}
.y96{bottom:300.855000px;}
.y175{bottom:301.395000px;}
.y10d{bottom:303.195000px;}
.y139{bottom:305.895000px;}
.ye4{bottom:307.335000px;}
.y58{bottom:309.135000px;}
.y39{bottom:311.295000px;}
.y174{bottom:315.255000px;}
.y10c{bottom:319.575000px;}
.y95{bottom:323.355000px;}
.ye3{bottom:323.715000px;}
.y57{bottom:325.515000px;}
.y173{bottom:328.935000px;}
.y138{bottom:335.055000px;}
.y10b{bottom:335.955000px;}
.ye2{bottom:340.095000px;}
.y38{bottom:341.535000px;}
.y56{bottom:341.895000px;}
.y172{bottom:342.795000px;}
.y137{bottom:351.435000px;}
.y10a{bottom:352.335000px;}
.y94{bottom:352.515000px;}
.ye1{bottom:356.475000px;}
.y171{bottom:356.655000px;}
.y37{bottom:357.375000px;}
.y55{bottom:358.275000px;}
.y136{bottom:367.995000px;}
.y93{bottom:368.895000px;}
.y170{bottom:370.335000px;}
.y36{bottom:372.855000px;}
.y54{bottom:374.655000px;}
.y109{bottom:377.715000px;}
.y16f{bottom:384.195000px;}
.y135{bottom:384.375000px;}
.y92{bottom:385.275000px;}
.y35{bottom:388.335000px;}
.ye0{bottom:389.235000px;}
.y53{bottom:391.035000px;}
.y108{bottom:394.095000px;}
.y16e{bottom:398.055000px;}
.y134{bottom:400.755000px;}
.y91{bottom:401.655000px;}
.y34{bottom:403.815000px;}
.ydf{bottom:405.615000px;}
.y52{bottom:407.415000px;}
.y107{bottom:410.475000px;}
.y16d{bottom:411.735000px;}
.y133{bottom:417.135000px;}
.y90{bottom:418.035000px;}
.y33{bottom:419.295000px;}
.yde{bottom:421.995000px;}
.y51{bottom:423.795000px;}
.y16c{bottom:425.595000px;}
.y106{bottom:427.035000px;}
.y132{bottom:433.515000px;}
.y8f{bottom:434.415000px;}
.y32{bottom:434.955000px;}
.ydd{bottom:438.555000px;}
.y16b{bottom:439.455000px;}
.y50{bottom:440.175000px;}
.y105{bottom:443.415000px;}
.yb9{bottom:448.455000px;}
.y131{bottom:449.895000px;}
.y31{bottom:450.435000px;}
.y8e{bottom:450.795000px;}
.y16a{bottom:453.135000px;}
.ydc{bottom:454.935000px;}
.y4f{bottom:456.555000px;}
.y104{bottom:459.795000px;}
.yb8{bottom:465.015000px;}
.y30{bottom:465.915000px;}
.y130{bottom:466.275000px;}
.y169{bottom:466.995000px;}
.y8d{bottom:467.175000px;}
.ydb{bottom:471.315000px;}
.y4e{bottom:472.935000px;}
.y103{bottom:476.175000px;}
.y168{bottom:480.855000px;}
.y2f{bottom:481.395000px;}
.y12f{bottom:482.655000px;}
.y8c{bottom:483.555000px;}
.yda{bottom:487.695000px;}
.y4d{bottom:489.315000px;}
.y102{bottom:492.555000px;}
.y167{bottom:494.535000px;}
.y2e{bottom:497.055000px;}
.yb7{bottom:497.775000px;}
.y12e{bottom:499.035000px;}
.y8b{bottom:499.935000px;}
.y4c{bottom:505.695000px;}
.y166{bottom:508.395000px;}
.y101{bottom:508.935000px;}
.y2d{bottom:512.535000px;}
.yd9{bottom:513.075000px;}
.yb6{bottom:514.155000px;}
.y12d{bottom:515.415000px;}
.y8a{bottom:516.315000px;}
.y4b{bottom:522.075000px;}
.y165{bottom:522.255000px;}
.y100{bottom:525.315000px;}
.y2c{bottom:528.015000px;}
.yd8{bottom:529.455000px;}
.yb5{bottom:530.535000px;}
.y12c{bottom:531.795000px;}
.y89{bottom:532.695000px;}
.y164{bottom:535.935000px;}
.y4a{bottom:538.455000px;}
.yff{bottom:541.695000px;}
.y2b{bottom:543.495000px;}
.yd7{bottom:545.835000px;}
.yb4{bottom:546.915000px;}
.y12b{bottom:548.175000px;}
.y88{bottom:549.075000px;}
.y163{bottom:549.795000px;}
.y49{bottom:555.015000px;}
.yfe{bottom:558.075000px;}
.y2a{bottom:559.155000px;}
.ybd{bottom:560.160000px;}
.yd6{bottom:562.215000px;}
.y162{bottom:563.655000px;}
.y12a{bottom:564.585000px;}
.y87{bottom:565.485000px;}
.y48{bottom:571.425000px;}
.yfd{bottom:574.485000px;}
.y29{bottom:574.665000px;}
.y161{bottom:577.365000px;}
.yd5{bottom:578.625000px;}
.y129{bottom:580.965000px;}
.y47{bottom:587.805000px;}
.y28{bottom:590.145000px;}
.y86{bottom:590.865000px;}
.y160{bottom:591.225000px;}
.yd4{bottom:595.005000px;}
.y128{bottom:597.345000px;}
.yfc{bottom:599.865000px;}
.y46{bottom:604.185000px;}
.y15f{bottom:605.085000px;}
.ybb{bottom:605.520000px;}
.y27{bottom:605.625000px;}
.y85{bottom:607.245000px;}
.yd3{bottom:611.385000px;}
.yfb{bottom:613.545000px;}
.y127{bottom:613.725000px;}
.y15e{bottom:618.765000px;}
.y45{bottom:620.565000px;}
.y26{bottom:621.285000px;}
.y84{bottom:623.625000px;}
.yd2{bottom:627.765000px;}
.y126{bottom:630.105000px;}
.y15d{bottom:632.625000px;}
.y25{bottom:637.125000px;}
.yf9{bottom:637.845000px;}
.y83{bottom:640.005000px;}
.yd1{bottom:644.145000px;}
.y15c{bottom:646.305000px;}
.y125{bottom:646.485000px;}
.y24{bottom:654.225000px;}
.y82{bottom:656.385000px;}
.y15b{bottom:660.165000px;}
.yd0{bottom:660.525000px;}
.yf7{bottom:662.325000px;}
.y124{bottom:662.865000px;}
.y23{bottom:671.325000px;}
.y1c{bottom:671.685000px;}
.y81{bottom:672.765000px;}
.y15a{bottom:674.025000px;}
.ycf{bottom:676.905000px;}
.y123{bottom:679.245000px;}
.yf3{bottom:686.625000px;}
.y22{bottom:686.805000px;}
.y1b{bottom:687.345000px;}
.y159{bottom:687.705000px;}
.y80{bottom:689.145000px;}
.yce{bottom:693.285000px;}
.y122{bottom:695.625000px;}
.y158{bottom:701.565000px;}
.y21{bottom:702.285000px;}
.y1a{bottom:702.825000px;}
.y7f{bottom:705.525000px;}
.ycd{bottom:709.665000px;}
.y121{bottom:712.005000px;}
.yf1{bottom:712.905000px;}
.y157{bottom:715.425000px;}
.y20{bottom:717.765000px;}
.y19{bottom:718.305000px;}
.y7e{bottom:721.905000px;}
.ycc{bottom:726.045000px;}
.y120{bottom:728.385000px;}
.y156{bottom:729.105000px;}
.y11b{bottom:731.340000px;}
.y1f{bottom:733.425000px;}
.y18{bottom:733.785000px;}
.y183{bottom:741.600000px;}
.ycb{bottom:742.425000px;}
.y155{bottom:742.965000px;}
.y7d{bottom:747.285000px;}
.y1e{bottom:748.905000px;}
.y17{bottom:749.445000px;}
.y154{bottom:756.825000px;}
.yca{bottom:758.805000px;}
.y181{bottom:763.200000px;}
.y7c{bottom:763.665000px;}
.y1d{bottom:767.445000px;}
.y153{bottom:770.505000px;}
.yc9{bottom:775.185000px;}
.y7b{bottom:780.045000px;}
.y152{bottom:784.365000px;}
.y16{bottom:785.985000px;}
.yc8{bottom:791.565000px;}
.y7a{bottom:796.425000px;}
.y151{bottom:798.225000px;}
.y15{bottom:801.465000px;}
.yc7{bottom:807.945000px;}
.y150{bottom:811.905000px;}
.y79{bottom:812.985000px;}
.y14{bottom:816.945000px;}
.y119{bottom:818.820000px;}
.yc6{bottom:824.325000px;}
.y14f{bottom:825.765000px;}
.y78{bottom:829.365000px;}
.y13{bottom:832.425000px;}
.y14e{bottom:839.625000px;}
.yc5{bottom:840.705000px;}
.y77{bottom:845.745000px;}
.y12{bottom:848.130000px;}
.y14d{bottom:853.350000px;}
.yb3{bottom:857.130000px;}
.y76{bottom:862.170000px;}
.y11{bottom:863.610000px;}
.y14c{bottom:867.930000px;}
.yb2{bottom:873.510000px;}
.y75{bottom:878.550000px;}
.yb1{bottom:889.890000px;}
.y14b{bottom:891.150000px;}
.y74{bottom:894.930000px;}
.y10{bottom:900.150000px;}
.yb0{bottom:906.270000px;}
.y73{bottom:911.310000px;}
.yf{bottom:915.630000px;}
.y14a{bottom:920.310000px;}
.yaf{bottom:922.650000px;}
.y72{bottom:927.690000px;}
.ye{bottom:931.110000px;}
.y149{bottom:936.690000px;}
.yae{bottom:939.210000px;}
.y71{bottom:944.070000px;}
.yd{bottom:946.590000px;}
.y148{bottom:953.070000px;}
.yad{bottom:955.590000px;}
.yc{bottom:962.250000px;}
.y70{bottom:966.570000px;}
.y147{bottom:969.450000px;}
.yac{bottom:971.970000px;}
.yb{bottom:977.730000px;}
.y146{bottom:985.830000px;}
.yab{bottom:988.350000px;}
.y193{bottom:988.530000px;}
.y6f{bottom:995.730000px;}
.yaa{bottom:1004.730000px;}
.y192{bottom:1004.910000px;}
.y145{bottom:1008.330000px;}
.y6e{bottom:1012.110000px;}
.ya{bottom:1012.650000px;}
.y191{bottom:1018.770000px;}
.ya9{bottom:1021.110000px;}
.y6d{bottom:1028.490000px;}
.y190{bottom:1032.630000px;}
.ya8{bottom:1037.490000px;}
.y6c{bottom:1044.870000px;}
.y18f{bottom:1046.310000px;}
.y9{bottom:1046.850000px;}
.ya7{bottom:1053.870000px;}
.y18e{bottom:1060.170000px;}
.y6b{bottom:1061.250000px;}
.ya6{bottom:1070.250000px;}
.y18d{bottom:1074.030000px;}
.y6a{bottom:1077.630000px;}
.ya5{bottom:1086.630000px;}
.y18c{bottom:1087.710000px;}
.y69{bottom:1094.010000px;}
.y18b{bottom:1101.570000px;}
.ya4{bottom:1103.010000px;}
.y8{bottom:1104.810000px;}
.y68{bottom:1110.390000px;}
.y18a{bottom:1115.430000px;}
.ya3{bottom:1119.390000px;}
.y7{bottom:1122.090000px;}
.y67{bottom:1126.770000px;}
.y189{bottom:1129.110000px;}
.ya2{bottom:1135.800000px;}
.y6{bottom:1139.400000px;}
.y188{bottom:1143.000000px;}
.y66{bottom:1152.180000px;}
.y5{bottom:1156.680000px;}
.y187{bottom:1156.860000px;}
.y65{bottom:1168.560000px;}
.y186{bottom:1170.540000px;}
.yf0{bottom:1171.800000px;}
.y4{bottom:1173.960000px;}
.y3{bottom:1191.060000px;}
.y2{bottom:1208.340000px;}
.he{height:18.000000px;}
.h12{height:23.940000px;}
.h13{height:24.120000px;}
.h10{height:25.920000px;}
.h11{height:32.757539px;}
.hf{height:34.036523px;}
.ha{height:34.560000px;}
.h16{height:36.768867px;}
.h7{height:38.100586px;}
.h6{height:38.997070px;}
.hd{height:41.400000px;}
.h2{height:43.246406px;}
.hb{height:43.375500px;}
.h5{height:48.410156px;}
.h18{height:48.780000px;}
.h3{height:53.573906px;}
.h8{height:55.735313px;}
.h15{height:76.140000px;}
.h4{height:129.093750px;}
.h14{height:233.280000px;}
.h9{height:237.240000px;}
.hc{height:254.700000px;}
.h17{height:270.540000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:68.580000px;}
.w7{width:175.350000px;}
.w6{width:244.110000px;}
.w5{width:360.000000px;}
.w3{width:360.180000px;}
.wa{width:360.900000px;}
.w4{width:361.080000px;}
.w9{width:379.620000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x38{left:22.500000px;}
.x34{left:23.760000px;}
.x36{left:25.380000px;}
.x32{left:38.520000px;}
.x37{left:51.480000px;}
.x35{left:56.340000px;}
.x1{left:66.959987px;}
.x26{left:68.039987px;}
.x49{left:70.199987px;}
.x47{left:72.180000px;}
.x5{left:74.159987px;}
.x31{left:77.940000px;}
.x6{left:81.179987px;}
.x4{left:85.319987px;}
.x25{left:88.379987px;}
.x28{left:89.675987px;}
.x48{left:96.875987px;}
.x4a{left:101.735987px;}
.x4b{left:103.715987px;}
.x7{left:110.375987px;}
.x9{left:126.395987px;}
.x8{left:133.055987px;}
.xa{left:139.535987px;}
.x3{left:144.035987px;}
.x2b{left:154.649987px;}
.x2a{left:188.669987px;}
.x3c{left:189.749987px;}
.x27{left:192.269987px;}
.x46{left:245.909987px;}
.x2d{left:339.810000px;}
.xd{left:345.314987px;}
.x3b{left:350.970000px;}
.xe{left:352.334987px;}
.xc{left:356.474987px;}
.x2e{left:358.170000px;}
.x45{left:371.595000px;}
.xf{left:381.494987px;}
.x10{left:394.094987px;}
.x14{left:398.954987px;}
.x13{left:400.574987px;}
.xb{left:402.374987px;}
.x12{left:409.754987px;}
.x11{left:417.134987px;}
.x2{left:446.474987px;}
.x29{left:459.974987px;}
.x2c{left:462.960000px;}
.x2f{left:464.040000px;}
.x3a{left:467.640000px;}
.x39{left:481.604987px;}
.x40{left:488.804987px;}
.x41{left:492.224987px;}
.x44{left:494.204987px;}
.x43{left:497.624987px;}
.x30{left:508.605000px;}
.x3d{left:581.324987px;}
.x42{left:598.424987px;}
.x3e{left:603.824987px;}
.x1d{left:616.244987px;}
.x16{left:619.124987px;}
.x1e{left:623.264987px;}
.x1c{left:627.404987px;}
.x17{left:632.624987px;}
.x18{left:634.064987px;}
.x22{left:638.564987px;}
.x3f{left:642.524987px;}
.x19{left:650.624987px;}
.x1f{left:652.424987px;}
.x1a{left:658.364987px;}
.x24{left:669.029987px;}
.x23{left:671.729987px;}
.x20{left:677.669987px;}
.x15{left:680.549987px;}
.x33{left:684.150000px;}
.x1b{left:688.469987px;}
.x21{left:717.449987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls10{letter-spacing:-0.688000pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.239467pt;}
.ls7{letter-spacing:-0.230933pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.007680pt;}
.lsf{letter-spacing:0.013440pt;}
.ls15{letter-spacing:0.032000pt;}
.ls1b{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.154027pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.161067pt;}
.ls9{letter-spacing:0.183680pt;}
.ls1c{letter-spacing:0.198933pt;}
.ls6{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls16{letter-spacing:2.720000pt;}
.ls17{letter-spacing:4.000000pt;}
.ls13{letter-spacing:7.632640pt;}
.ls1e{letter-spacing:8.480000pt;}
.lsa{letter-spacing:9.552640pt;}
.ls18{letter-spacing:12.960000pt;}
.ls8{letter-spacing:18.512640pt;}
.ls2{letter-spacing:26.832640pt;}
.lsd{letter-spacing:92.399360pt;}
.ws4{word-spacing:-48.000000pt;}
.ws6{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.049067pt;}
.wsd{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.592000pt;}
.ws5{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws13{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.918933pt;}
.ws12{word-spacing:-10.881067pt;}
.ws10{word-spacing:-10.760320pt;}
.ws0{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.480533pt;}
.ws1{word-spacing:-10.400000pt;}
.wsc{word-spacing:-10.208000pt;}
.wsb{word-spacing:-10.093440pt;}
.ws9{word-spacing:-8.640000pt;}
.ws14{word-spacing:-6.720000pt;}
.ws8{word-spacing:0.000000pt;}
._18{margin-left:-4.183040pt;}
._15{margin-left:-3.175680pt;}
._3{margin-left:-2.048000pt;}
._0{margin-left:-1.069440pt;}
._1{width:0.903040pt;}
._2{width:2.267947pt;}
._6{width:3.483093pt;}
._9{width:5.184000pt;}
._7{width:6.144000pt;}
._8{width:7.152000pt;}
._14{width:8.356267pt;}
._b{width:9.568000pt;}
._a{width:10.512000pt;}
._19{width:12.010880pt;}
._26{width:12.940373pt;}
._5{width:13.976107pt;}
._4{width:15.386667pt;}
._1e{width:16.325973pt;}
._10{width:17.280000pt;}
._13{width:18.240640pt;}
._16{width:19.495040pt;}
._17{width:20.606507pt;}
._1f{width:21.520213pt;}
._11{width:22.711680pt;}
._12{width:23.828267pt;}
._1c{width:24.913280pt;}
._1d{width:26.058240pt;}
._f{width:28.368000pt;}
._e{width:29.328000pt;}
._1b{width:30.289920pt;}
._1a{width:31.525120pt;}
._24{width:34.687360pt;}
._22{width:35.710720pt;}
._23{width:36.629120pt;}
._d{width:38.989440pt;}
._c{width:40.368000pt;}
._25{width:41.788587pt;}
._21{width:46.456320pt;}
._20{width:101.920000pt;}
.fs7{font-size:26.880000pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:40.320000pt;}
.fs0{font-size:42.880000pt;}
.fs5{font-size:43.008000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:128.000000pt;}
.y11a{bottom:-3.906667pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:0.986667pt;}
.ybc{bottom:1.053333pt;}
.yf6{bottom:2.240000pt;}
.ybf{bottom:2.946667pt;}
.yf2{bottom:4.160000pt;}
.yf8{bottom:6.720000pt;}
.yfa{bottom:6.880000pt;}
.yf4{bottom:8.000000pt;}
.yc4{bottom:9.152000pt;}
.yf5{bottom:13.760000pt;}
.ybe{bottom:15.293333pt;}
.y11f{bottom:15.453333pt;}
.y185{bottom:15.613333pt;}
.yc3{bottom:21.472000pt;}
.y11e{bottom:27.773333pt;}
.y184{bottom:27.933333pt;}
.y182{bottom:30.493333pt;}
.y11d{bottom:40.093333pt;}
.y1{bottom:50.112000pt;}
.y11c{bottom:52.253333pt;}
.y44{bottom:99.712000pt;}
.yba{bottom:99.872000pt;}
.y64{bottom:100.032000pt;}
.y144{bottom:106.272000pt;}
.ya1{bottom:107.072000pt;}
.y118{bottom:109.312000pt;}
.yc2{bottom:111.680000pt;}
.yef{bottom:112.992000pt;}
.y43{bottom:114.272000pt;}
.y63{bottom:114.592000pt;}
.y180{bottom:120.672000pt;}
.y143{bottom:120.832000pt;}
.ya0{bottom:121.632000pt;}
.y117{bottom:123.872000pt;}
.yee{bottom:127.552000pt;}
.y42{bottom:128.832000pt;}
.y62{bottom:129.152000pt;}
.y17f{bottom:132.992000pt;}
.y142{bottom:135.386667pt;}
.y9f{bottom:136.186667pt;}
.y116{bottom:138.426667pt;}
.yed{bottom:142.106667pt;}
.y41{bottom:143.386667pt;}
.y61{bottom:143.706667pt;}
.y17e{bottom:145.146667pt;}
.y141{bottom:149.946667pt;}
.y9e{bottom:150.746667pt;}
.yc0{bottom:152.160000pt;}
.y115{bottom:152.986667pt;}
.yec{bottom:156.666667pt;}
.y17d{bottom:157.466667pt;}
.y40{bottom:157.946667pt;}
.y60{bottom:158.266667pt;}
.y140{bottom:164.506667pt;}
.y9d{bottom:165.466667pt;}
.y114{bottom:167.546667pt;}
.y17c{bottom:169.786667pt;}
.yeb{bottom:171.226667pt;}
.y3f{bottom:172.666667pt;}
.y5f{bottom:172.826667pt;}
.y13f{bottom:179.066667pt;}
.y9c{bottom:180.026667pt;}
.y17b{bottom:181.946667pt;}
.y113{bottom:182.106667pt;}
.yea{bottom:185.786667pt;}
.y3e{bottom:187.226667pt;}
.y5e{bottom:187.386667pt;}
.y13e{bottom:193.626667pt;}
.y17a{bottom:194.266667pt;}
.y9b{bottom:194.586667pt;}
.y112{bottom:196.666667pt;}
.ye9{bottom:200.346667pt;}
.y3d{bottom:201.786667pt;}
.y5d{bottom:201.946667pt;}
.y179{bottom:206.586667pt;}
.y13d{bottom:208.186667pt;}
.y9a{bottom:209.146667pt;}
.y111{bottom:211.226667pt;}
.ye8{bottom:214.906667pt;}
.y3c{bottom:216.346667pt;}
.y5c{bottom:216.506667pt;}
.y178{bottom:218.746667pt;}
.y13c{bottom:222.906667pt;}
.y99{bottom:223.706667pt;}
.y110{bottom:225.786667pt;}
.ye7{bottom:229.466667pt;}
.y3b{bottom:230.906667pt;}
.y5b{bottom:231.066667pt;}
.y13b{bottom:237.466667pt;}
.y98{bottom:238.266667pt;}
.y10f{bottom:240.346667pt;}
.y177{bottom:243.386667pt;}
.ye6{bottom:244.026667pt;}
.y5a{bottom:245.626667pt;}
.y3a{bottom:250.786667pt;}
.y13a{bottom:252.066667pt;}
.y97{bottom:252.866667pt;}
.y10e{bottom:254.946667pt;}
.y176{bottom:255.586667pt;}
.ye5{bottom:258.626667pt;}
.y59{bottom:260.226667pt;}
.y96{bottom:267.426667pt;}
.y175{bottom:267.906667pt;}
.y10d{bottom:269.506667pt;}
.y139{bottom:271.906667pt;}
.ye4{bottom:273.186667pt;}
.y58{bottom:274.786667pt;}
.y39{bottom:276.706667pt;}
.y174{bottom:280.226667pt;}
.y10c{bottom:284.066667pt;}
.y95{bottom:287.426667pt;}
.ye3{bottom:287.746667pt;}
.y57{bottom:289.346667pt;}
.y173{bottom:292.386667pt;}
.y138{bottom:297.826667pt;}
.y10b{bottom:298.626667pt;}
.ye2{bottom:302.306667pt;}
.y38{bottom:303.586667pt;}
.y56{bottom:303.906667pt;}
.y172{bottom:304.706667pt;}
.y137{bottom:312.386667pt;}
.y10a{bottom:313.186667pt;}
.y94{bottom:313.346667pt;}
.ye1{bottom:316.866667pt;}
.y171{bottom:317.026667pt;}
.y37{bottom:317.666667pt;}
.y55{bottom:318.466667pt;}
.y136{bottom:327.106667pt;}
.y93{bottom:327.906667pt;}
.y170{bottom:329.186667pt;}
.y36{bottom:331.426667pt;}
.y54{bottom:333.026667pt;}
.y109{bottom:335.746667pt;}
.y16f{bottom:341.506667pt;}
.y135{bottom:341.666667pt;}
.y92{bottom:342.466667pt;}
.y35{bottom:345.186667pt;}
.ye0{bottom:345.986667pt;}
.y53{bottom:347.586667pt;}
.y108{bottom:350.306667pt;}
.y16e{bottom:353.826667pt;}
.y134{bottom:356.226667pt;}
.y91{bottom:357.026667pt;}
.y34{bottom:358.946667pt;}
.ydf{bottom:360.546667pt;}
.y52{bottom:362.146667pt;}
.y107{bottom:364.866667pt;}
.y16d{bottom:365.986667pt;}
.y133{bottom:370.786667pt;}
.y90{bottom:371.586667pt;}
.y33{bottom:372.706667pt;}
.yde{bottom:375.106667pt;}
.y51{bottom:376.706667pt;}
.y16c{bottom:378.306667pt;}
.y106{bottom:379.586667pt;}
.y132{bottom:385.346667pt;}
.y8f{bottom:386.146667pt;}
.y32{bottom:386.626667pt;}
.ydd{bottom:389.826667pt;}
.y16b{bottom:390.626667pt;}
.y50{bottom:391.266667pt;}
.y105{bottom:394.146667pt;}
.yb9{bottom:398.626667pt;}
.y131{bottom:399.906667pt;}
.y31{bottom:400.386667pt;}
.y8e{bottom:400.706667pt;}
.y16a{bottom:402.786667pt;}
.ydc{bottom:404.386667pt;}
.y4f{bottom:405.826667pt;}
.y104{bottom:408.706667pt;}
.yb8{bottom:413.346667pt;}
.y30{bottom:414.146667pt;}
.y130{bottom:414.466667pt;}
.y169{bottom:415.106667pt;}
.y8d{bottom:415.266667pt;}
.ydb{bottom:418.946667pt;}
.y4e{bottom:420.386667pt;}
.y103{bottom:423.266667pt;}
.y168{bottom:427.426667pt;}
.y2f{bottom:427.906667pt;}
.y12f{bottom:429.026667pt;}
.y8c{bottom:429.826667pt;}
.yda{bottom:433.506667pt;}
.y4d{bottom:434.946667pt;}
.y102{bottom:437.826667pt;}
.y167{bottom:439.586667pt;}
.y2e{bottom:441.826667pt;}
.yb7{bottom:442.466667pt;}
.y12e{bottom:443.586667pt;}
.y8b{bottom:444.386667pt;}
.y4c{bottom:449.506667pt;}
.y166{bottom:451.906667pt;}
.y101{bottom:452.386667pt;}
.y2d{bottom:455.586667pt;}
.yd9{bottom:456.066667pt;}
.yb6{bottom:457.026667pt;}
.y12d{bottom:458.146667pt;}
.y8a{bottom:458.946667pt;}
.y4b{bottom:464.066667pt;}
.y165{bottom:464.226667pt;}
.y100{bottom:466.946667pt;}
.y2c{bottom:469.346667pt;}
.yd8{bottom:470.626667pt;}
.yb5{bottom:471.586667pt;}
.y12c{bottom:472.706667pt;}
.y89{bottom:473.506667pt;}
.y164{bottom:476.386667pt;}
.y4a{bottom:478.626667pt;}
.yff{bottom:481.506667pt;}
.y2b{bottom:483.106667pt;}
.yd7{bottom:485.186667pt;}
.yb4{bottom:486.146667pt;}
.y12b{bottom:487.266667pt;}
.y88{bottom:488.066667pt;}
.y163{bottom:488.706667pt;}
.y49{bottom:493.346667pt;}
.yfe{bottom:496.066667pt;}
.y2a{bottom:497.026667pt;}
.ybd{bottom:497.920000pt;}
.yd6{bottom:499.746667pt;}
.y162{bottom:501.026667pt;}
.y12a{bottom:501.853333pt;}
.y87{bottom:502.653333pt;}
.y48{bottom:507.933333pt;}
.yfd{bottom:510.653333pt;}
.y29{bottom:510.813333pt;}
.y161{bottom:513.213333pt;}
.yd5{bottom:514.333333pt;}
.y129{bottom:516.413333pt;}
.y47{bottom:522.493333pt;}
.y28{bottom:524.573333pt;}
.y86{bottom:525.213333pt;}
.y160{bottom:525.533333pt;}
.yd4{bottom:528.893333pt;}
.y128{bottom:530.973333pt;}
.yfc{bottom:533.213333pt;}
.y46{bottom:537.053333pt;}
.y15f{bottom:537.853333pt;}
.ybb{bottom:538.240000pt;}
.y27{bottom:538.333333pt;}
.y85{bottom:539.773333pt;}
.yd3{bottom:543.453333pt;}
.yfb{bottom:545.373333pt;}
.y127{bottom:545.533333pt;}
.y15e{bottom:550.013333pt;}
.y45{bottom:551.613333pt;}
.y26{bottom:552.253333pt;}
.y84{bottom:554.333333pt;}
.yd2{bottom:558.013333pt;}
.y126{bottom:560.093333pt;}
.y15d{bottom:562.333333pt;}
.y25{bottom:566.333333pt;}
.yf9{bottom:566.973333pt;}
.y83{bottom:568.893333pt;}
.yd1{bottom:572.573333pt;}
.y15c{bottom:574.493333pt;}
.y125{bottom:574.653333pt;}
.y24{bottom:581.533333pt;}
.y82{bottom:583.453333pt;}
.y15b{bottom:586.813333pt;}
.yd0{bottom:587.133333pt;}
.yf7{bottom:588.733333pt;}
.y124{bottom:589.213333pt;}
.y23{bottom:596.733333pt;}
.y1c{bottom:597.053333pt;}
.y81{bottom:598.013333pt;}
.y15a{bottom:599.133333pt;}
.ycf{bottom:601.693333pt;}
.y123{bottom:603.773333pt;}
.yf3{bottom:610.333333pt;}
.y22{bottom:610.493333pt;}
.y1b{bottom:610.973333pt;}
.y159{bottom:611.293333pt;}
.y80{bottom:612.573333pt;}
.yce{bottom:616.253333pt;}
.y122{bottom:618.333333pt;}
.y158{bottom:623.613333pt;}
.y21{bottom:624.253333pt;}
.y1a{bottom:624.733333pt;}
.y7f{bottom:627.133333pt;}
.ycd{bottom:630.813333pt;}
.y121{bottom:632.893333pt;}
.yf1{bottom:633.693333pt;}
.y157{bottom:635.933333pt;}
.y20{bottom:638.013333pt;}
.y19{bottom:638.493333pt;}
.y7e{bottom:641.693333pt;}
.ycc{bottom:645.373333pt;}
.y120{bottom:647.453333pt;}
.y156{bottom:648.093333pt;}
.y11b{bottom:650.080000pt;}
.y1f{bottom:651.933333pt;}
.y18{bottom:652.253333pt;}
.y183{bottom:659.200000pt;}
.ycb{bottom:659.933333pt;}
.y155{bottom:660.413333pt;}
.y7d{bottom:664.253333pt;}
.y1e{bottom:665.693333pt;}
.y17{bottom:666.173333pt;}
.y154{bottom:672.733333pt;}
.yca{bottom:674.493333pt;}
.y181{bottom:678.400000pt;}
.y7c{bottom:678.813333pt;}
.y1d{bottom:682.173333pt;}
.y153{bottom:684.893333pt;}
.yc9{bottom:689.053333pt;}
.y7b{bottom:693.373333pt;}
.y152{bottom:697.213333pt;}
.y16{bottom:698.653333pt;}
.yc8{bottom:703.613333pt;}
.y7a{bottom:707.933333pt;}
.y151{bottom:709.533333pt;}
.y15{bottom:712.413333pt;}
.yc7{bottom:718.173333pt;}
.y150{bottom:721.693333pt;}
.y79{bottom:722.653333pt;}
.y14{bottom:726.173333pt;}
.y119{bottom:727.840000pt;}
.yc6{bottom:732.733333pt;}
.y14f{bottom:734.013333pt;}
.y78{bottom:737.213333pt;}
.y13{bottom:739.933333pt;}
.y14e{bottom:746.333333pt;}
.yc5{bottom:747.293333pt;}
.y77{bottom:751.773333pt;}
.y12{bottom:753.893333pt;}
.y14d{bottom:758.533333pt;}
.yb3{bottom:761.893333pt;}
.y76{bottom:766.373333pt;}
.y11{bottom:767.653333pt;}
.y14c{bottom:771.493333pt;}
.yb2{bottom:776.453333pt;}
.y75{bottom:780.933333pt;}
.yb1{bottom:791.013333pt;}
.y14b{bottom:792.133333pt;}
.y74{bottom:795.493333pt;}
.y10{bottom:800.133333pt;}
.yb0{bottom:805.573333pt;}
.y73{bottom:810.053333pt;}
.yf{bottom:813.893333pt;}
.y14a{bottom:818.053333pt;}
.yaf{bottom:820.133333pt;}
.y72{bottom:824.613333pt;}
.ye{bottom:827.653333pt;}
.y149{bottom:832.613333pt;}
.yae{bottom:834.853333pt;}
.y71{bottom:839.173333pt;}
.yd{bottom:841.413333pt;}
.y148{bottom:847.173333pt;}
.yad{bottom:849.413333pt;}
.yc{bottom:855.333333pt;}
.y70{bottom:859.173333pt;}
.y147{bottom:861.733333pt;}
.yac{bottom:863.973333pt;}
.yb{bottom:869.093333pt;}
.y146{bottom:876.293333pt;}
.yab{bottom:878.533333pt;}
.y193{bottom:878.693333pt;}
.y6f{bottom:885.093333pt;}
.yaa{bottom:893.093333pt;}
.y192{bottom:893.253333pt;}
.y145{bottom:896.293333pt;}
.y6e{bottom:899.653333pt;}
.ya{bottom:900.133333pt;}
.y191{bottom:905.573333pt;}
.ya9{bottom:907.653333pt;}
.y6d{bottom:914.213333pt;}
.y190{bottom:917.893333pt;}
.ya8{bottom:922.213333pt;}
.y6c{bottom:928.773333pt;}
.y18f{bottom:930.053333pt;}
.y9{bottom:930.533333pt;}
.ya7{bottom:936.773333pt;}
.y18e{bottom:942.373333pt;}
.y6b{bottom:943.333333pt;}
.ya6{bottom:951.333333pt;}
.y18d{bottom:954.693333pt;}
.y6a{bottom:957.893333pt;}
.ya5{bottom:965.893333pt;}
.y18c{bottom:966.853333pt;}
.y69{bottom:972.453333pt;}
.y18b{bottom:979.173333pt;}
.ya4{bottom:980.453333pt;}
.y8{bottom:982.053333pt;}
.y68{bottom:987.013333pt;}
.y18a{bottom:991.493333pt;}
.ya3{bottom:995.013333pt;}
.y7{bottom:997.413333pt;}
.y67{bottom:1001.573333pt;}
.y189{bottom:1003.653333pt;}
.ya2{bottom:1009.600000pt;}
.y6{bottom:1012.800000pt;}
.y188{bottom:1016.000000pt;}
.y66{bottom:1024.160000pt;}
.y5{bottom:1028.160000pt;}
.y187{bottom:1028.320000pt;}
.y65{bottom:1038.720000pt;}
.y186{bottom:1040.480000pt;}
.yf0{bottom:1041.600000pt;}
.y4{bottom:1043.520000pt;}
.y3{bottom:1058.720000pt;}
.y2{bottom:1074.080000pt;}
.he{height:16.000000pt;}
.h12{height:21.280000pt;}
.h13{height:21.440000pt;}
.h10{height:23.040000pt;}
.h11{height:29.117812pt;}
.hf{height:30.254687pt;}
.ha{height:30.720000pt;}
.h16{height:32.683437pt;}
.h7{height:33.867188pt;}
.h6{height:34.664062pt;}
.hd{height:36.800000pt;}
.h2{height:38.441250pt;}
.hb{height:38.556000pt;}
.h5{height:43.031250pt;}
.h18{height:43.360000pt;}
.h3{height:47.621250pt;}
.h8{height:49.542500pt;}
.h15{height:67.680000pt;}
.h4{height:114.750000pt;}
.h14{height:207.360000pt;}
.h9{height:210.880000pt;}
.hc{height:226.400000pt;}
.h17{height:240.480000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:60.960000pt;}
.w7{width:155.866667pt;}
.w6{width:216.986667pt;}
.w5{width:320.000000pt;}
.w3{width:320.160000pt;}
.wa{width:320.800000pt;}
.w4{width:320.960000pt;}
.w9{width:337.440000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x38{left:20.000000pt;}
.x34{left:21.120000pt;}
.x36{left:22.560000pt;}
.x32{left:34.240000pt;}
.x37{left:45.760000pt;}
.x35{left:50.080000pt;}
.x1{left:59.519988pt;}
.x26{left:60.479988pt;}
.x49{left:62.399988pt;}
.x47{left:64.160000pt;}
.x5{left:65.919988pt;}
.x31{left:69.280000pt;}
.x6{left:72.159988pt;}
.x4{left:75.839988pt;}
.x25{left:78.559988pt;}
.x28{left:79.711988pt;}
.x48{left:86.111988pt;}
.x4a{left:90.431988pt;}
.x4b{left:92.191988pt;}
.x7{left:98.111988pt;}
.x9{left:112.351988pt;}
.x8{left:118.271988pt;}
.xa{left:124.031988pt;}
.x3{left:128.031988pt;}
.x2b{left:137.466655pt;}
.x2a{left:167.706655pt;}
.x3c{left:168.666655pt;}
.x27{left:170.906655pt;}
.x46{left:218.586655pt;}
.x2d{left:302.053333pt;}
.xd{left:306.946655pt;}
.x3b{left:311.973333pt;}
.xe{left:313.186655pt;}
.xc{left:316.866655pt;}
.x2e{left:318.373333pt;}
.x45{left:330.306667pt;}
.xf{left:339.106655pt;}
.x10{left:350.306655pt;}
.x14{left:354.626655pt;}
.x13{left:356.066655pt;}
.xb{left:357.666655pt;}
.x12{left:364.226655pt;}
.x11{left:370.786655pt;}
.x2{left:396.866655pt;}
.x29{left:408.866655pt;}
.x2c{left:411.520000pt;}
.x2f{left:412.480000pt;}
.x3a{left:415.680000pt;}
.x39{left:428.093322pt;}
.x40{left:434.493322pt;}
.x41{left:437.533322pt;}
.x44{left:439.293322pt;}
.x43{left:442.333322pt;}
.x30{left:452.093333pt;}
.x3d{left:516.733322pt;}
.x42{left:531.933322pt;}
.x3e{left:536.733322pt;}
.x1d{left:547.773322pt;}
.x16{left:550.333322pt;}
.x1e{left:554.013322pt;}
.x1c{left:557.693322pt;}
.x17{left:562.333322pt;}
.x18{left:563.613322pt;}
.x22{left:567.613322pt;}
.x3f{left:571.133322pt;}
.x19{left:578.333322pt;}
.x1f{left:579.933322pt;}
.x1a{left:585.213322pt;}
.x24{left:594.693322pt;}
.x23{left:597.093322pt;}
.x20{left:602.373322pt;}
.x15{left:604.933322pt;}
.x33{left:608.133333pt;}
.x1b{left:611.973322pt;}
.x21{left:637.733322pt;}
}




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