
    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_67aefa53f41068bb5845e46d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_99202f572d8d3653d98db1a6.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_ff35c5c77549044261aa18df.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e9bdb83004207438dc00b41b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_f897ff380666626979a6072b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_41ba1747294586dee03223a7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4708bf2cf40002102e27e336.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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;}
.m2{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,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:-97.920000px;}
.v2{vertical-align:-72.000000px;}
.v5{vertical-align:-27.360000px;}
.v3{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.360000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.057565px;}
.ls6{letter-spacing:0.499454px;}
.ls3{letter-spacing:0.544320px;}
.ls5{letter-spacing:0.557020px;}
.ls2{letter-spacing:9.406601px;}
.ls8{letter-spacing:12.292083px;}
.ls4{letter-spacing:154.872764px;}
.ls1{letter-spacing:782.721371px;}
.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;}
}
.ws2{word-spacing:-15.664320px;}
.ws1{word-spacing:-15.120000px;}
.ws3{word-spacing:-9.720000px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-3.265920px;}
._0{margin-left:-1.451520px;}
._1{width:1.451520px;}
._e{width:3.107553px;}
._8{width:4.516744px;}
._6{width:6.229440px;}
._7{width:7.380887px;}
._10{width:8.467200px;}
._f{width:10.039680px;}
._12{width:11.563018px;}
._5{width:13.317608px;}
._14{width:16.521797px;}
._a{width:17.599680px;}
._9{width:18.809280px;}
._3{width:20.139840px;}
._4{width:21.591360px;}
._15{width:23.190246px;}
._b{width:24.917760px;}
._c{width:26.429760px;}
._d{width:27.699840px;}
._11{width:29.008089px;}
._13{width:30.542400px;}
._2d{width:31.691520px;}
._30{width:33.434788px;}
._16{width:36.771840px;}
._17{width:38.283840px;}
._1e{width:39.312000px;}
._19{width:41.244474px;}
._18{width:42.382081px;}
._31{width:49.593600px;}
._1a{width:51.932022px;}
._2c{width:63.564480px;}
._2b{width:65.560320px;}
._20{width:102.722453px;}
._1f{width:109.936159px;}
._29{width:111.378900px;}
._25{width:122.863264px;}
._22{width:126.768093px;}
._1b{width:129.661522px;}
._2a{width:132.962453px;}
._21{width:133.981799px;}
._26{width:135.424540px;}
._2f{width:143.616927px;}
._2e{width:144.668160px;}
._23{width:189.806817px;}
._24{width:196.520097px;}
._27{width:198.463264px;}
._28{width:205.176544px;}
._1c{width:418.559874px;}
._1d{width:643.100810px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:24.480000px;}
.fs7{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:60.480000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.720000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yf6{bottom:2.160000px;}
.ye4{bottom:2.520000px;}
.yf2{bottom:3.240000px;}
.y4e{bottom:3.600000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y21{bottom:139.264499px;}
.y4d{bottom:150.480000px;}
.y4c{bottom:151.200000px;}
.y7c{bottom:171.360000px;}
.y7b{bottom:172.080000px;}
.y18{bottom:196.933500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.ya3{bottom:231.480000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y161{bottom:235.800000px;}
.y13f{bottom:236.160000px;}
.y7a{bottom:237.600000px;}
.ya2{bottom:249.480000px;}
.y19f{bottom:249.840000px;}
.y4a{bottom:252.000000px;}
.y13e{bottom:253.800000px;}
.y79{bottom:255.600000px;}
.y104{bottom:256.680000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y176{bottom:261.720000px;}
.y189{bottom:266.040000px;}
.ycd{bottom:267.480000px;}
.y49{bottom:269.640000px;}
.y13d{bottom:271.800000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y78{bottom:273.600000px;}
.ya1{bottom:273.960000px;}
.y160{bottom:278.280000px;}
.y11d{bottom:279.360000px;}
.y175{bottom:279.720000px;}
.ybd{bottom:280.080000px;}
.y103{bottom:282.600000px;}
.y188{bottom:283.680000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y48{bottom:287.640000px;}
.y13c{bottom:289.800000px;}
.ya0{bottom:291.600000px;}
.y195{bottom:291.960000px;}
.ycc{bottom:293.400000px;}
.y15f{bottom:295.920000px;}
.ybc{bottom:297.720000px;}
.y77{bottom:298.080000px;}
.y187{bottom:301.680000px;}
.y11c{bottom:303.480000px;}
.y47{bottom:305.640000px;}
.y102{bottom:308.520000px;}
.y9f{bottom:309.600000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y15e{bottom:313.920000px;}
.y13b{bottom:314.280000px;}
.ybb{bottom:315.720000px;}
.y76{bottom:321.840000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y46{bottom:323.640000px;}
.y9e{bottom:327.600000px;}
.y186{bottom:328.320000px;}
.ycb{bottom:328.680000px;}
.y15d{bottom:331.920000px;}
.y101{bottom:332.280000px;}
.yba{bottom:333.720000px;}
.y194{bottom:334.080000px;}
.yca{bottom:338.040000px;}
.y75{bottom:339.480000px;}
.y13a{bottom:341.280000px;}
.y45{bottom:341.640000px;}
.y9d{bottom:345.600000px;}
.yf{bottom:348.133500px;}
.y100{bottom:349.920000px;}
.y11b{bottom:351.360000px;}
.yb9{bottom:351.720000px;}
.y185{bottom:352.080000px;}
.y15c{bottom:356.040000px;}
.y74{bottom:357.480000px;}
.y9c{bottom:363.600000px;}
.y44{bottom:366.120000px;}
.yff{bottom:367.920000px;}
.yb8{bottom:369.720000px;}
.y139{bottom:371.160000px;}
.yc9{bottom:372.960000px;}
.y15b{bottom:373.680000px;}
.y73{bottom:375.480000px;}
.y9b{bottom:381.600000px;}
.y43{bottom:383.760000px;}
.ye{bottom:386.785499px;}
.yb7{bottom:387.720000px;}
.y15a{bottom:391.680000px;}
.ye1{bottom:393.840000px;}
.yfe{bottom:394.920000px;}
.y11a{bottom:399.600000px;}
.y72{bottom:399.960000px;}
.y42{bottom:401.760000px;}
.yb6{bottom:405.720000px;}
.y9a{bottom:406.080000px;}
.yd{bottom:408.044999px;}
.y159{bottom:409.680000px;}
.y174{bottom:411.480000px;}
.y19e{bottom:411.840000px;}
.y71{bottom:417.600000px;}
.ye0{bottom:417.960000px;}
.y41{bottom:419.760000px;}
.yfd{bottom:421.200000px;}
.y119{bottom:423.360000px;}
.y99{bottom:423.720000px;}
.y158{bottom:427.680000px;}
.y173{bottom:429.480000px;}
.y70{bottom:435.600000px;}
.y40{bottom:437.760000px;}
.y118{bottom:441.000000px;}
.y98{bottom:441.720000px;}
.y135{bottom:443.160000px;}
.y157{bottom:445.680000px;}
.y172{bottom:447.480000px;}
.yb5{bottom:447.840000px;}
.yfc{bottom:450.000000px;}
.y138{bottom:452.520000px;}
.y6f{bottom:453.600000px;}
.y193{bottom:453.960000px;}
.y117{bottom:459.000000px;}
.y97{bottom:459.720000px;}
.y3f{bottom:462.240000px;}
.y156{bottom:463.680000px;}
.yb4{bottom:465.480000px;}
.yc8{bottom:465.840000px;}
.y6e{bottom:471.600000px;}
.y116{bottom:477.000000px;}
.y96{bottom:477.720000px;}
.yfb{bottom:479.880000px;}
.y137{bottom:481.320000px;}
.yb3{bottom:483.480000px;}
.y3e{bottom:486.000000px;}
.y155{bottom:488.160000px;}
.ydf{bottom:489.600000px;}
.y171{bottom:489.960000px;}
.y115{bottom:495.000000px;}
.y95{bottom:495.720000px;}
.y6d{bottom:496.080000px;}
.yb2{bottom:501.480000px;}
.yc{bottom:502.864502px;}
.y3d{bottom:503.640000px;}
.yde{bottom:507.600000px;}
.yfa{bottom:508.680000px;}
.yf8{bottom:510.120000px;}
.y136{bottom:511.200000px;}
.y154{bottom:512.280000px;}
.y6c{bottom:513.720000px;}
.y19d{bottom:514.080000px;}
.yb1{bottom:519.480000px;}
.y192{bottom:519.840000px;}
.yb{bottom:520.864502px;}
.y170{bottom:525.600000px;}
.y3c{bottom:528.120000px;}
.y153{bottom:529.920000px;}
.y6b{bottom:531.720000px;}
.ydd{bottom:532.080000px;}
.yb0{bottom:537.480000px;}
.y184{bottom:537.840000px;}
.ya{bottom:538.864499px;}
.y134{bottom:541.080000px;}
.y16f{bottom:543.600000px;}
.y3b{bottom:545.760000px;}
.y152{bottom:547.920000px;}
.y6a{bottom:549.720000px;}
.yaf{bottom:555.480000px;}
.y19c{bottom:555.840000px;}
.y114{bottom:556.200000px;}
.y9{bottom:556.864499px;}
.y16e{bottom:561.600000px;}
.yc7{bottom:561.960000px;}
.y3a{bottom:563.760000px;}
.y151{bottom:565.920000px;}
.yf9{bottom:566.280000px;}
.y69{bottom:567.720000px;}
.y132{bottom:570.960000px;}
.y183{bottom:573.480000px;}
.y113{bottom:578.520000px;}
.yc6{bottom:579.600000px;}
.yae{bottom:579.960000px;}
.y39{bottom:581.760000px;}
.y150{bottom:583.920000px;}
.y68{bottom:585.720000px;}
.y182{bottom:591.480000px;}
.y94{bottom:591.840000px;}
.y130{bottom:593.640000px;}
.yf7{bottom:595.080000px;}
.y131{bottom:596.880000px;}
.yad{bottom:597.600000px;}
.y38{bottom:599.760000px;}
.y133{bottom:601.560000px;}
.y67{bottom:603.720000px;}
.y191{bottom:604.080000px;}
.y181{bottom:609.480000px;}
.y112{bottom:610.560000px;}
.y14f{bottom:610.920000px;}
.yac{bottom:615.600000px;}
.y93{bottom:615.960000px;}
.y37{bottom:617.760000px;}
.y12f{bottom:621.360000px;}
.y66{bottom:621.720000px;}
.y19b{bottom:622.080000px;}
.yf4{bottom:624.960000px;}
.y180{bottom:627.480000px;}
.y92{bottom:633.600000px;}
.y36{bottom:635.760000px;}
.y12e{bottom:639.000000px;}
.ydc{bottom:639.720000px;}
.y111{bottom:641.160000px;}
.y17f{bottom:645.480000px;}
.y8{bottom:645.510000px;}
.y65{bottom:645.840000px;}
.yf1{bottom:647.640000px;}
.yf3{bottom:650.880000px;}
.y91{bottom:651.600000px;}
.yf5{bottom:655.560000px;}
.y12d{bottom:657.000000px;}
.ydb{bottom:657.720000px;}
.yc5{bottom:658.080000px;}
.y14e{bottom:658.440000px;}
.y35{bottom:660.240000px;}
.y64{bottom:663.480000px;}
.y190{bottom:663.840000px;}
.y7{bottom:666.771000px;}
.y16d{bottom:669.600000px;}
.y19a{bottom:669.960000px;}
.y110{bottom:672.840000px;}
.yf0{bottom:675.000000px;}
.yc4{bottom:675.720000px;}
.y90{bottom:676.080000px;}
.y34{bottom:677.880000px;}
.y12c{bottom:681.120000px;}
.y63{bottom:681.480000px;}
.yda{bottom:681.840000px;}
.y16c{bottom:687.600000px;}
.y14d{bottom:688.320000px;}
.yef{bottom:692.640000px;}
.y8f{bottom:693.720000px;}
.y33{bottom:695.880000px;}
.y62{bottom:699.480000px;}
.y1aa{bottom:701.280000px;}
.y10f{bottom:704.880000px;}
.y12b{bottom:705.240000px;}
.y16b{bottom:705.600000px;}
.yd9{bottom:705.960000px;}
.yee{bottom:710.640000px;}
.y14c{bottom:711.000000px;}
.y8e{bottom:711.720000px;}
.y199{bottom:712.080000px;}
.y32{bottom:713.880000px;}
.y61{bottom:717.480000px;}
.y12a{bottom:722.880000px;}
.yd8{bottom:723.600000px;}
.y1a9{bottom:725.400000px;}
.y6{bottom:726.298500px;}
.yed{bottom:728.640000px;}
.y8d{bottom:729.720000px;}
.y31{bottom:731.880000px;}
.y10e{bottom:732.240000px;}
.y17e{bottom:735.480000px;}
.y129{bottom:740.880000px;}
.yd7{bottom:741.600000px;}
.y60{bottom:741.960000px;}
.yec{bottom:746.640000px;}
.y8c{bottom:747.720000px;}
.y18f{bottom:748.080000px;}
.y1a8{bottom:749.160000px;}
.y30{bottom:749.880000px;}
.y3{bottom:752.599495px;}
.y17d{bottom:753.480000px;}
.yab{bottom:753.840000px;}
.yd6{bottom:759.600000px;}
.y14b{bottom:760.320000px;}
.yeb{bottom:764.640000px;}
.y18e{bottom:765.720000px;}
.y5f{bottom:766.080000px;}
.y2f{bottom:767.880000px;}
.yaa{bottom:771.480000px;}
.y8b{bottom:771.840000px;}
.y1a7{bottom:773.280000px;}
.y16a{bottom:777.600000px;}
.y5e{bottom:783.720000px;}
.yd5{bottom:784.080000px;}
.y2e{bottom:785.880000px;}
.y8a{bottom:789.480000px;}
.y18d{bottom:789.840000px;}
.y1a6{bottom:790.920000px;}
.yea{bottom:791.640000px;}
.y128{bottom:795.240000px;}
.y169{bottom:795.600000px;}
.y198{bottom:795.960000px;}
.y147{bottom:801.360000px;}
.y5d{bottom:801.720000px;}
.y2d{bottom:803.880000px;}
.y89{bottom:807.480000px;}
.yd4{bottom:807.840000px;}
.y14a{bottom:811.800000px;}
.y168{bottom:813.600000px;}
.y17c{bottom:813.960000px;}
.y1a5{bottom:815.400000px;}
.ye9{bottom:819.000000px;}
.y5c{bottom:819.720000px;}
.y10d{bottom:821.880000px;}
.y88{bottom:825.480000px;}
.y2c{bottom:828.000000px;}
.y167{bottom:831.600000px;}
.y1a4{bottom:833.040000px;}
.y127{bottom:833.400000px;}
.y5b{bottom:837.720000px;}
.y18c{bottom:838.080000px;}
.y87{bottom:843.480000px;}
.ye8{bottom:848.520000px;}
.y10c{bottom:848.880000px;}
.y166{bottom:849.600000px;}
.y2b{bottom:852.120000px;}
.y126{bottom:852.840000px;}
.y5a{bottom:855.720000px;}
.y1a3{bottom:858.240000px;}
.y149{bottom:861.120000px;}
.ya9{bottom:861.480000px;}
.y165{bottom:867.600000px;}
.y86{bottom:867.960000px;}
.y2a{bottom:870.120000px;}
.y125{bottom:870.480000px;}
.y59{bottom:873.720000px;}
.y1a2{bottom:875.520000px;}
.y10b{bottom:878.040000px;}
.y2{bottom:879.369000px;}
.ya8{bottom:879.480000px;}
.y197{bottom:879.840000px;}
.y85{bottom:885.600000px;}
.yd3{bottom:885.960000px;}
.y29{bottom:887.400000px;}
.y124{bottom:888.480000px;}
.y18b{bottom:891.720000px;}
.y164{bottom:892.080000px;}
.y1a1{bottom:892.800000px;}
.ye6{bottom:896.760000px;}
.ya7{bottom:897.480000px;}
.y58{bottom:897.840000px;}
.y10a{bottom:900.360000px;}
.y84{bottom:903.600000px;}
.y28{bottom:904.680000px;}
.yc3{bottom:910.080000px;}
.y148{bottom:910.440000px;}
.y123{bottom:912.960000px;}
.y57{bottom:915.480000px;}
.y163{bottom:915.840000px;}
.y83{bottom:921.600000px;}
.y27{bottom:921.960000px;}
.y109{bottom:927.000000px;}
.yd2{bottom:927.720000px;}
.y17b{bottom:928.080000px;}
.y56{bottom:933.480000px;}
.yc2{bottom:933.840000px;}
.y122{bottom:937.080000px;}
.y82{bottom:939.600000px;}
.y18a{bottom:939.960000px;}
.ye7{bottom:940.680000px;}
.yd1{bottom:945.720000px;}
.y196{bottom:946.080000px;}
.y55{bottom:951.480000px;}
.y17a{bottom:951.840000px;}
.y108{bottom:955.080000px;}
.y26{bottom:956.880000px;}
.ya6{bottom:957.600000px;}
.yc1{bottom:957.960000px;}
.y121{bottom:960.840000px;}
.y146{bottom:961.920000px;}
.yd0{bottom:963.720000px;}
.y81{bottom:964.080000px;}
.y1{bottom:966.726000px;}
.y54{bottom:969.480000px;}
.ye5{bottom:971.640000px;}
.ya5{bottom:975.600000px;}
.y162{bottom:975.960000px;}
.y25{bottom:978.480000px;}
.y80{bottom:981.720000px;}
.yc0{bottom:982.080000px;}
.y107{bottom:982.800000px;}
.y179{bottom:987.480000px;}
.ycf{bottom:987.840000px;}
.y120{bottom:990.360000px;}
.y144{bottom:991.800000px;}
.ya4{bottom:993.600000px;}
.y53{bottom:993.960000px;}
.y7f{bottom:999.720000px;}
.y1a0{bottom:1000.080000px;}
.ye2{bottom:1002.240000px;}
.y178{bottom:1005.480000px;}
.ybf{bottom:1005.840000px;}
.ye3{bottom:1010.160000px;}
.y106{bottom:1010.520000px;}
.y52{bottom:1011.600000px;}
.yce{bottom:1011.960000px;}
.y142{bottom:1014.480000px;}
.y143{bottom:1017.720000px;}
.y11e{bottom:1020.240000px;}
.y145{bottom:1022.400000px;}
.y177{bottom:1023.480000px;}
.y7e{bottom:1023.840000px;}
.y11f{bottom:1028.160000px;}
.y24{bottom:1028.880000px;}
.y51{bottom:1029.600000px;}
.ybe{bottom:1029.960000px;}
.y105{bottom:1040.400000px;}
.y141{bottom:1041.840000px;}
.y50{bottom:1047.600000px;}
.y7d{bottom:1047.960000px;}
.y23{bottom:1049.400000px;}
.y4f{bottom:1065.600000px;}
.y140{bottom:1065.960000px;}
.y22{bottom:1066.320000px;}
.y4b{bottom:1120.680000px;}
.h12{height:9.000000px;}
.he{height:16.920000px;}
.h17{height:24.025781px;}
.h7{height:32.130000px;}
.h15{height:38.139609px;}
.h13{height:38.158594px;}
.h14{height:39.183750px;}
.h11{height:40.310156px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hf{height:59.328281px;}
.ha{height:59.357813px;}
.h9{height:60.952500px;}
.h10{height:63.078750px;}
.h16{height:65.518594px;}
.hd{height:70.664062px;}
.hb{height:72.562500px;}
.h5{height:78.030000px;}
.hc{height:91.428750px;}
.h4{height:119.055004px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w22{width:3.960000px;}
.w2c{width:4.680000px;}
.wd{width:5.040000px;}
.w6{width:7.560000px;}
.w9{width:7.920000px;}
.w8{width:8.279850px;}
.wb{width:9.000000px;}
.w2a{width:9.360000px;}
.w2b{width:9.720000px;}
.w7{width:10.080000px;}
.wc{width:10.440000px;}
.w19{width:11.160000px;}
.w28{width:11.520000px;}
.w29{width:14.760000px;}
.wf{width:20.160000px;}
.w4{width:22.320000px;}
.w10{width:24.840000px;}
.w11{width:26.280000px;}
.w15{width:32.040000px;}
.wa{width:32.400000px;}
.we{width:32.760000px;}
.w13{width:33.840000px;}
.w1c{width:35.280000px;}
.w20{width:37.080000px;}
.w32{width:38.160000px;}
.w2d{width:41.400000px;}
.w1d{width:41.760000px;}
.w2f{width:44.280000px;}
.w12{width:44.640000px;}
.w17{width:45.000000px;}
.w1f{width:46.800000px;}
.w23{width:47.880000px;}
.w1a{width:48.600000px;}
.w24{width:55.800000px;}
.w5{width:60.840000px;}
.w25{width:65.880000px;}
.w18{width:66.600000px;}
.w16{width:67.320000px;}
.w21{width:68.760000px;}
.w1e{width:71.640000px;}
.w26{width:75.960000px;}
.w14{width:79.560000px;}
.w27{width:83.880000px;}
.w1b{width:84.240000px;}
.w33{width:87.120000px;}
.w30{width:97.200000px;}
.w31{width:101.160000px;}
.w34{width:103.680000px;}
.w2e{width:108.360000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x1e{left:1.440000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x8d{left:208.440000px;}
.x5{left:216.000000px;}
.x15{left:217.440000px;}
.x7a{left:218.520000px;}
.x4d{left:220.320000px;}
.x6{left:223.200000px;}
.x78{left:225.000000px;}
.xb{left:226.800000px;}
.x14{left:237.240000px;}
.x2a{left:240.840000px;}
.x9c{left:246.600000px;}
.x32{left:247.680000px;}
.x74{left:249.840000px;}
.x47{left:250.920000px;}
.x98{left:252.720000px;}
.x8b{left:256.680000px;}
.x4a{left:257.760000px;}
.x2f{left:260.280000px;}
.x4c{left:262.800000px;}
.x43{left:264.240000px;}
.xf{left:270.000000px;}
.x59{left:271.800000px;}
.x63{left:273.600000px;}
.x8e{left:275.040000px;}
.x17{left:276.840000px;}
.x5d{left:281.880000px;}
.x33{left:283.320000px;}
.x7b{left:285.120000px;}
.x4b{left:287.640000px;}
.x5e{left:291.960000px;}
.x67{left:293.760000px;}
.x31{left:295.200000px;}
.x45{left:300.240000px;}
.x9b{left:305.640000px;}
.x69{left:308.880000px;}
.xa0{left:312.120000px;}
.x86{left:315.720000px;}
.x94{left:316.800000px;}
.x6a{left:318.240000px;}
.x8a{left:319.680000px;}
.x8c{left:322.200000px;}
.x7{left:323.640000px;}
.x80{left:326.880000px;}
.x4e{left:334.440000px;}
.x60{left:335.520000px;}
.x18{left:336.960000px;}
.x3c{left:338.400000px;}
.x8f{left:340.560000px;}
.x34{left:342.000000px;}
.x42{left:343.440000px;}
.x7c{left:345.960000px;}
.x19{left:347.040000px;}
.x3d{left:348.480000px;}
.x3a{left:349.560000px;}
.x81{left:351.000000px;}
.x5a{left:356.760000px;}
.x64{left:357.840000px;}
.x2b{left:363.240000px;}
.x44{left:364.680000px;}
.x8{left:366.480000px;}
.x35{left:368.280000px;}
.x46{left:369.720000px;}
.x30{left:370.800000px;}
.x48{left:372.240000px;}
.x3b{left:375.840000px;}
.x9{left:377.280000px;}
.x79{left:387.360000px;}
.x10{left:389.880000px;}
.x68{left:393.840000px;}
.x1a{left:399.960000px;}
.x6b{left:401.040000px;}
.x36{left:405.000000px;}
.x99{left:406.440000px;}
.x1b{left:407.880000px;}
.x82{left:409.680000px;}
.x6c{left:411.120000px;}
.x1c{left:415.440000px;}
.x11{left:417.240000px;}
.x4f{left:421.920000px;}
.x2c{left:426.240000px;}
.x37{left:431.280000px;}
.x9a{left:432.720000px;}
.x49{left:434.160000px;}
.x83{left:435.960000px;}
.x85{left:438.480000px;}
.x9f{left:440.280000px;}
.x75{left:442.440000px;}
.x87{left:443.520000px;}
.x1d{left:447.840000px;}
.x65{left:448.920000px;}
.x3{left:454.959000px;}
.x16{left:464.040000px;}
.x3e{left:465.120000px;}
.x90{left:466.920000px;}
.xe{left:468.000000px;}
.xc{left:472.320000px;}
.xd{left:474.840000px;}
.xa{left:486.000000px;}
.x2d{left:491.040000px;}
.x95{left:493.200000px;}
.x6d{left:494.640000px;}
.x6e{left:504.000000px;}
.x50{left:507.960000px;}
.x5b{left:509.400000px;}
.x51{left:516.960000px;}
.x52{left:520.560000px;}
.x1f{left:523.800000px;}
.x84{left:526.680000px;}
.x96{left:527.760000px;}
.x38{left:528.840000px;}
.x88{left:531.720000px;}
.x9d{left:532.800000px;}
.x20{left:533.880000px;}
.x3f{left:535.320000px;}
.x6f{left:541.800000px;}
.x2e{left:550.080000px;}
.x53{left:552.960000px;}
.x97{left:554.040000px;}
.x39{left:555.120000px;}
.x89{left:558.000000px;}
.x9e{left:559.080000px;}
.x21{left:582.840000px;}
.x7d{left:585.360000px;}
.x70{left:587.520000px;}
.x91{left:588.600000px;}
.x22{left:592.200000px;}
.x23{left:597.240000px;}
.x12{left:603.000000px;}
.x54{left:606.960000px;}
.x55{left:612.000000px;}
.x76{left:614.520000px;}
.x5c{left:623.520000px;}
.x24{left:630.000000px;}
.x25{left:648.360000px;}
.x56{left:653.760000px;}
.x13{left:664.560000px;}
.x26{left:668.520000px;}
.x92{left:674.280000px;}
.x71{left:679.320000px;}
.x61{left:683.280000px;}
.x57{left:684.720000px;}
.x72{left:689.400000px;}
.x73{left:694.080000px;}
.x5f{left:696.240000px;}
.x77{left:706.320000px;}
.x66{left:709.560000px;}
.x27{left:711.720000px;}
.x93{left:717.480000px;}
.x7e{left:720.360000px;}
.x28{left:721.440000px;}
.x40{left:722.880000px;}
.x7f{left:725.400000px;}
.x29{left:726.480000px;}
.x41{left:727.920000px;}
.x62{left:731.160000px;}
.x58{left:732.600000px;}
@media print{
.v1{vertical-align:-87.040000pt;}
.v2{vertical-align:-64.000000pt;}
.v5{vertical-align:-24.320000pt;}
.v3{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.051169pt;}
.ls6{letter-spacing:0.443960pt;}
.ls3{letter-spacing:0.483840pt;}
.ls5{letter-spacing:0.495129pt;}
.ls2{letter-spacing:8.361423pt;}
.ls8{letter-spacing:10.926296pt;}
.ls4{letter-spacing:137.664679pt;}
.ls1{letter-spacing:695.752329pt;}
.ws2{word-spacing:-13.923840pt;}
.ws1{word-spacing:-13.440000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-2.903040pt;}
._0{margin-left:-1.290240pt;}
._1{width:1.290240pt;}
._e{width:2.762269pt;}
._8{width:4.014883pt;}
._6{width:5.537280pt;}
._7{width:6.560789pt;}
._10{width:7.526400pt;}
._f{width:8.924160pt;}
._12{width:10.278238pt;}
._5{width:11.837873pt;}
._14{width:14.686042pt;}
._a{width:15.644160pt;}
._9{width:16.719360pt;}
._3{width:17.902080pt;}
._4{width:19.192320pt;}
._15{width:20.613552pt;}
._b{width:22.149120pt;}
._c{width:23.493120pt;}
._d{width:24.622080pt;}
._11{width:25.784968pt;}
._13{width:27.148800pt;}
._2d{width:28.170240pt;}
._30{width:29.719812pt;}
._16{width:32.686080pt;}
._17{width:34.030080pt;}
._1e{width:34.944000pt;}
._19{width:36.661755pt;}
._18{width:37.672961pt;}
._31{width:44.083200pt;}
._1a{width:46.161798pt;}
._2c{width:56.501760pt;}
._2b{width:58.275840pt;}
._20{width:91.308847pt;}
._1f{width:97.721030pt;}
._29{width:99.003467pt;}
._25{width:109.211790pt;}
._22{width:112.682749pt;}
._1b{width:115.254686pt;}
._2a{width:118.188847pt;}
._21{width:119.094932pt;}
._26{width:120.377369pt;}
._2f{width:127.659491pt;}
._2e{width:128.593920pt;}
._23{width:168.717171pt;}
._24{width:174.684531pt;}
._27{width:176.411790pt;}
._28{width:182.379150pt;}
._1c{width:372.053222pt;}
._1d{width:571.645165pt;}
.fs8{font-size:21.760000pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:53.760000pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.640000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yf6{bottom:1.920000pt;}
.ye4{bottom:2.240000pt;}
.yf2{bottom:2.880000pt;}
.y4e{bottom:3.200000pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y21{bottom:123.790666pt;}
.y4d{bottom:133.760000pt;}
.y4c{bottom:134.400000pt;}
.y7c{bottom:152.320000pt;}
.y7b{bottom:152.960000pt;}
.y18{bottom:175.052000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.ya3{bottom:205.760000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y161{bottom:209.600000pt;}
.y13f{bottom:209.920000pt;}
.y7a{bottom:211.200000pt;}
.ya2{bottom:221.760000pt;}
.y19f{bottom:222.080000pt;}
.y4a{bottom:224.000000pt;}
.y13e{bottom:225.600000pt;}
.y79{bottom:227.200000pt;}
.y104{bottom:228.160000pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y176{bottom:232.640000pt;}
.y189{bottom:236.480000pt;}
.ycd{bottom:237.760000pt;}
.y49{bottom:239.680000pt;}
.y13d{bottom:241.600000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y78{bottom:243.200000pt;}
.ya1{bottom:243.520000pt;}
.y160{bottom:247.360000pt;}
.y11d{bottom:248.320000pt;}
.y175{bottom:248.640000pt;}
.ybd{bottom:248.960000pt;}
.y103{bottom:251.200000pt;}
.y188{bottom:252.160000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y48{bottom:255.680000pt;}
.y13c{bottom:257.600000pt;}
.ya0{bottom:259.200000pt;}
.y195{bottom:259.520000pt;}
.ycc{bottom:260.800000pt;}
.y15f{bottom:263.040000pt;}
.ybc{bottom:264.640000pt;}
.y77{bottom:264.960000pt;}
.y187{bottom:268.160000pt;}
.y11c{bottom:269.760000pt;}
.y47{bottom:271.680000pt;}
.y102{bottom:274.240000pt;}
.y9f{bottom:275.200000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y15e{bottom:279.040000pt;}
.y13b{bottom:279.360000pt;}
.ybb{bottom:280.640000pt;}
.y76{bottom:286.080000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y46{bottom:287.680000pt;}
.y9e{bottom:291.200000pt;}
.y186{bottom:291.840000pt;}
.ycb{bottom:292.160000pt;}
.y15d{bottom:295.040000pt;}
.y101{bottom:295.360000pt;}
.yba{bottom:296.640000pt;}
.y194{bottom:296.960000pt;}
.yca{bottom:300.480000pt;}
.y75{bottom:301.760000pt;}
.y13a{bottom:303.360000pt;}
.y45{bottom:303.680000pt;}
.y9d{bottom:307.200000pt;}
.yf{bottom:309.452000pt;}
.y100{bottom:311.040000pt;}
.y11b{bottom:312.320000pt;}
.yb9{bottom:312.640000pt;}
.y185{bottom:312.960000pt;}
.y15c{bottom:316.480000pt;}
.y74{bottom:317.760000pt;}
.y9c{bottom:323.200000pt;}
.y44{bottom:325.440000pt;}
.yff{bottom:327.040000pt;}
.yb8{bottom:328.640000pt;}
.y139{bottom:329.920000pt;}
.yc9{bottom:331.520000pt;}
.y15b{bottom:332.160000pt;}
.y73{bottom:333.760000pt;}
.y9b{bottom:339.200000pt;}
.y43{bottom:341.120000pt;}
.ye{bottom:343.809333pt;}
.yb7{bottom:344.640000pt;}
.y15a{bottom:348.160000pt;}
.ye1{bottom:350.080000pt;}
.yfe{bottom:351.040000pt;}
.y11a{bottom:355.200000pt;}
.y72{bottom:355.520000pt;}
.y42{bottom:357.120000pt;}
.yb6{bottom:360.640000pt;}
.y9a{bottom:360.960000pt;}
.yd{bottom:362.706666pt;}
.y159{bottom:364.160000pt;}
.y174{bottom:365.760000pt;}
.y19e{bottom:366.080000pt;}
.y71{bottom:371.200000pt;}
.ye0{bottom:371.520000pt;}
.y41{bottom:373.120000pt;}
.yfd{bottom:374.400000pt;}
.y119{bottom:376.320000pt;}
.y99{bottom:376.640000pt;}
.y158{bottom:380.160000pt;}
.y173{bottom:381.760000pt;}
.y70{bottom:387.200000pt;}
.y40{bottom:389.120000pt;}
.y118{bottom:392.000000pt;}
.y98{bottom:392.640000pt;}
.y135{bottom:393.920000pt;}
.y157{bottom:396.160000pt;}
.y172{bottom:397.760000pt;}
.yb5{bottom:398.080000pt;}
.yfc{bottom:400.000000pt;}
.y138{bottom:402.240000pt;}
.y6f{bottom:403.200000pt;}
.y193{bottom:403.520000pt;}
.y117{bottom:408.000000pt;}
.y97{bottom:408.640000pt;}
.y3f{bottom:410.880000pt;}
.y156{bottom:412.160000pt;}
.yb4{bottom:413.760000pt;}
.yc8{bottom:414.080000pt;}
.y6e{bottom:419.200000pt;}
.y116{bottom:424.000000pt;}
.y96{bottom:424.640000pt;}
.yfb{bottom:426.560000pt;}
.y137{bottom:427.840000pt;}
.yb3{bottom:429.760000pt;}
.y3e{bottom:432.000000pt;}
.y155{bottom:433.920000pt;}
.ydf{bottom:435.200000pt;}
.y171{bottom:435.520000pt;}
.y115{bottom:440.000000pt;}
.y95{bottom:440.640000pt;}
.y6d{bottom:440.960000pt;}
.yb2{bottom:445.760000pt;}
.yc{bottom:446.990669pt;}
.y3d{bottom:447.680000pt;}
.yde{bottom:451.200000pt;}
.yfa{bottom:452.160000pt;}
.yf8{bottom:453.440000pt;}
.y136{bottom:454.400000pt;}
.y154{bottom:455.360000pt;}
.y6c{bottom:456.640000pt;}
.y19d{bottom:456.960000pt;}
.yb1{bottom:461.760000pt;}
.y192{bottom:462.080000pt;}
.yb{bottom:462.990669pt;}
.y170{bottom:467.200000pt;}
.y3c{bottom:469.440000pt;}
.y153{bottom:471.040000pt;}
.y6b{bottom:472.640000pt;}
.ydd{bottom:472.960000pt;}
.yb0{bottom:477.760000pt;}
.y184{bottom:478.080000pt;}
.ya{bottom:478.990666pt;}
.y134{bottom:480.960000pt;}
.y16f{bottom:483.200000pt;}
.y3b{bottom:485.120000pt;}
.y152{bottom:487.040000pt;}
.y6a{bottom:488.640000pt;}
.yaf{bottom:493.760000pt;}
.y19c{bottom:494.080000pt;}
.y114{bottom:494.400000pt;}
.y9{bottom:494.990666pt;}
.y16e{bottom:499.200000pt;}
.yc7{bottom:499.520000pt;}
.y3a{bottom:501.120000pt;}
.y151{bottom:503.040000pt;}
.yf9{bottom:503.360000pt;}
.y69{bottom:504.640000pt;}
.y132{bottom:507.520000pt;}
.y183{bottom:509.760000pt;}
.y113{bottom:514.240000pt;}
.yc6{bottom:515.200000pt;}
.yae{bottom:515.520000pt;}
.y39{bottom:517.120000pt;}
.y150{bottom:519.040000pt;}
.y68{bottom:520.640000pt;}
.y182{bottom:525.760000pt;}
.y94{bottom:526.080000pt;}
.y130{bottom:527.680000pt;}
.yf7{bottom:528.960000pt;}
.y131{bottom:530.560000pt;}
.yad{bottom:531.200000pt;}
.y38{bottom:533.120000pt;}
.y133{bottom:534.720000pt;}
.y67{bottom:536.640000pt;}
.y191{bottom:536.960000pt;}
.y181{bottom:541.760000pt;}
.y112{bottom:542.720000pt;}
.y14f{bottom:543.040000pt;}
.yac{bottom:547.200000pt;}
.y93{bottom:547.520000pt;}
.y37{bottom:549.120000pt;}
.y12f{bottom:552.320000pt;}
.y66{bottom:552.640000pt;}
.y19b{bottom:552.960000pt;}
.yf4{bottom:555.520000pt;}
.y180{bottom:557.760000pt;}
.y92{bottom:563.200000pt;}
.y36{bottom:565.120000pt;}
.y12e{bottom:568.000000pt;}
.ydc{bottom:568.640000pt;}
.y111{bottom:569.920000pt;}
.y17f{bottom:573.760000pt;}
.y8{bottom:573.786667pt;}
.y65{bottom:574.080000pt;}
.yf1{bottom:575.680000pt;}
.yf3{bottom:578.560000pt;}
.y91{bottom:579.200000pt;}
.yf5{bottom:582.720000pt;}
.y12d{bottom:584.000000pt;}
.ydb{bottom:584.640000pt;}
.yc5{bottom:584.960000pt;}
.y14e{bottom:585.280000pt;}
.y35{bottom:586.880000pt;}
.y64{bottom:589.760000pt;}
.y190{bottom:590.080000pt;}
.y7{bottom:592.685334pt;}
.y16d{bottom:595.200000pt;}
.y19a{bottom:595.520000pt;}
.y110{bottom:598.080000pt;}
.yf0{bottom:600.000000pt;}
.yc4{bottom:600.640000pt;}
.y90{bottom:600.960000pt;}
.y34{bottom:602.560000pt;}
.y12c{bottom:605.440000pt;}
.y63{bottom:605.760000pt;}
.yda{bottom:606.080000pt;}
.y16c{bottom:611.200000pt;}
.y14d{bottom:611.840000pt;}
.yef{bottom:615.680000pt;}
.y8f{bottom:616.640000pt;}
.y33{bottom:618.560000pt;}
.y62{bottom:621.760000pt;}
.y1aa{bottom:623.360000pt;}
.y10f{bottom:626.560000pt;}
.y12b{bottom:626.880000pt;}
.y16b{bottom:627.200000pt;}
.yd9{bottom:627.520000pt;}
.yee{bottom:631.680000pt;}
.y14c{bottom:632.000000pt;}
.y8e{bottom:632.640000pt;}
.y199{bottom:632.960000pt;}
.y32{bottom:634.560000pt;}
.y61{bottom:637.760000pt;}
.y12a{bottom:642.560000pt;}
.yd8{bottom:643.200000pt;}
.y1a9{bottom:644.800000pt;}
.y6{bottom:645.598667pt;}
.yed{bottom:647.680000pt;}
.y8d{bottom:648.640000pt;}
.y31{bottom:650.560000pt;}
.y10e{bottom:650.880000pt;}
.y17e{bottom:653.760000pt;}
.y129{bottom:658.560000pt;}
.yd7{bottom:659.200000pt;}
.y60{bottom:659.520000pt;}
.yec{bottom:663.680000pt;}
.y8c{bottom:664.640000pt;}
.y18f{bottom:664.960000pt;}
.y1a8{bottom:665.920000pt;}
.y30{bottom:666.560000pt;}
.y3{bottom:668.977329pt;}
.y17d{bottom:669.760000pt;}
.yab{bottom:670.080000pt;}
.yd6{bottom:675.200000pt;}
.y14b{bottom:675.840000pt;}
.yeb{bottom:679.680000pt;}
.y18e{bottom:680.640000pt;}
.y5f{bottom:680.960000pt;}
.y2f{bottom:682.560000pt;}
.yaa{bottom:685.760000pt;}
.y8b{bottom:686.080000pt;}
.y1a7{bottom:687.360000pt;}
.y16a{bottom:691.200000pt;}
.y5e{bottom:696.640000pt;}
.yd5{bottom:696.960000pt;}
.y2e{bottom:698.560000pt;}
.y8a{bottom:701.760000pt;}
.y18d{bottom:702.080000pt;}
.y1a6{bottom:703.040000pt;}
.yea{bottom:703.680000pt;}
.y128{bottom:706.880000pt;}
.y169{bottom:707.200000pt;}
.y198{bottom:707.520000pt;}
.y147{bottom:712.320000pt;}
.y5d{bottom:712.640000pt;}
.y2d{bottom:714.560000pt;}
.y89{bottom:717.760000pt;}
.yd4{bottom:718.080000pt;}
.y14a{bottom:721.600000pt;}
.y168{bottom:723.200000pt;}
.y17c{bottom:723.520000pt;}
.y1a5{bottom:724.800000pt;}
.ye9{bottom:728.000000pt;}
.y5c{bottom:728.640000pt;}
.y10d{bottom:730.560000pt;}
.y88{bottom:733.760000pt;}
.y2c{bottom:736.000000pt;}
.y167{bottom:739.200000pt;}
.y1a4{bottom:740.480000pt;}
.y127{bottom:740.800000pt;}
.y5b{bottom:744.640000pt;}
.y18c{bottom:744.960000pt;}
.y87{bottom:749.760000pt;}
.ye8{bottom:754.240000pt;}
.y10c{bottom:754.560000pt;}
.y166{bottom:755.200000pt;}
.y2b{bottom:757.440000pt;}
.y126{bottom:758.080000pt;}
.y5a{bottom:760.640000pt;}
.y1a3{bottom:762.880000pt;}
.y149{bottom:765.440000pt;}
.ya9{bottom:765.760000pt;}
.y165{bottom:771.200000pt;}
.y86{bottom:771.520000pt;}
.y2a{bottom:773.440000pt;}
.y125{bottom:773.760000pt;}
.y59{bottom:776.640000pt;}
.y1a2{bottom:778.240000pt;}
.y10b{bottom:780.480000pt;}
.y2{bottom:781.661334pt;}
.ya8{bottom:781.760000pt;}
.y197{bottom:782.080000pt;}
.y85{bottom:787.200000pt;}
.yd3{bottom:787.520000pt;}
.y29{bottom:788.800000pt;}
.y124{bottom:789.760000pt;}
.y18b{bottom:792.640000pt;}
.y164{bottom:792.960000pt;}
.y1a1{bottom:793.600000pt;}
.ye6{bottom:797.120000pt;}
.ya7{bottom:797.760000pt;}
.y58{bottom:798.080000pt;}
.y10a{bottom:800.320000pt;}
.y84{bottom:803.200000pt;}
.y28{bottom:804.160000pt;}
.yc3{bottom:808.960000pt;}
.y148{bottom:809.280000pt;}
.y123{bottom:811.520000pt;}
.y57{bottom:813.760000pt;}
.y163{bottom:814.080000pt;}
.y83{bottom:819.200000pt;}
.y27{bottom:819.520000pt;}
.y109{bottom:824.000000pt;}
.yd2{bottom:824.640000pt;}
.y17b{bottom:824.960000pt;}
.y56{bottom:829.760000pt;}
.yc2{bottom:830.080000pt;}
.y122{bottom:832.960000pt;}
.y82{bottom:835.200000pt;}
.y18a{bottom:835.520000pt;}
.ye7{bottom:836.160000pt;}
.yd1{bottom:840.640000pt;}
.y196{bottom:840.960000pt;}
.y55{bottom:845.760000pt;}
.y17a{bottom:846.080000pt;}
.y108{bottom:848.960000pt;}
.y26{bottom:850.560000pt;}
.ya6{bottom:851.200000pt;}
.yc1{bottom:851.520000pt;}
.y121{bottom:854.080000pt;}
.y146{bottom:855.040000pt;}
.yd0{bottom:856.640000pt;}
.y81{bottom:856.960000pt;}
.y1{bottom:859.312000pt;}
.y54{bottom:861.760000pt;}
.ye5{bottom:863.680000pt;}
.ya5{bottom:867.200000pt;}
.y162{bottom:867.520000pt;}
.y25{bottom:869.760000pt;}
.y80{bottom:872.640000pt;}
.yc0{bottom:872.960000pt;}
.y107{bottom:873.600000pt;}
.y179{bottom:877.760000pt;}
.ycf{bottom:878.080000pt;}
.y120{bottom:880.320000pt;}
.y144{bottom:881.600000pt;}
.ya4{bottom:883.200000pt;}
.y53{bottom:883.520000pt;}
.y7f{bottom:888.640000pt;}
.y1a0{bottom:888.960000pt;}
.ye2{bottom:890.880000pt;}
.y178{bottom:893.760000pt;}
.ybf{bottom:894.080000pt;}
.ye3{bottom:897.920000pt;}
.y106{bottom:898.240000pt;}
.y52{bottom:899.200000pt;}
.yce{bottom:899.520000pt;}
.y142{bottom:901.760000pt;}
.y143{bottom:904.640000pt;}
.y11e{bottom:906.880000pt;}
.y145{bottom:908.800000pt;}
.y177{bottom:909.760000pt;}
.y7e{bottom:910.080000pt;}
.y11f{bottom:913.920000pt;}
.y24{bottom:914.560000pt;}
.y51{bottom:915.200000pt;}
.ybe{bottom:915.520000pt;}
.y105{bottom:924.800000pt;}
.y141{bottom:926.080000pt;}
.y50{bottom:931.200000pt;}
.y7d{bottom:931.520000pt;}
.y23{bottom:932.800000pt;}
.y4f{bottom:947.200000pt;}
.y140{bottom:947.520000pt;}
.y22{bottom:947.840000pt;}
.y4b{bottom:996.160000pt;}
.h12{height:8.000000pt;}
.he{height:15.040000pt;}
.h17{height:21.356250pt;}
.h7{height:28.560000pt;}
.h15{height:33.901875pt;}
.h13{height:33.918750pt;}
.h14{height:34.830000pt;}
.h11{height:35.831250pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hf{height:52.736250pt;}
.ha{height:52.762500pt;}
.h9{height:54.180000pt;}
.h10{height:56.070000pt;}
.h16{height:58.238750pt;}
.hd{height:62.812500pt;}
.hb{height:64.500000pt;}
.h5{height:69.360000pt;}
.hc{height:81.270000pt;}
.h4{height:105.826671pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w22{width:3.520000pt;}
.w2c{width:4.160000pt;}
.wd{width:4.480000pt;}
.w6{width:6.720000pt;}
.w9{width:7.040000pt;}
.w8{width:7.359867pt;}
.wb{width:8.000000pt;}
.w2a{width:8.320000pt;}
.w2b{width:8.640000pt;}
.w7{width:8.960000pt;}
.wc{width:9.280000pt;}
.w19{width:9.920000pt;}
.w28{width:10.240000pt;}
.w29{width:13.120000pt;}
.wf{width:17.920000pt;}
.w4{width:19.840000pt;}
.w10{width:22.080000pt;}
.w11{width:23.360000pt;}
.w15{width:28.480000pt;}
.wa{width:28.800000pt;}
.we{width:29.120000pt;}
.w13{width:30.080000pt;}
.w1c{width:31.360000pt;}
.w20{width:32.960000pt;}
.w32{width:33.920000pt;}
.w2d{width:36.800000pt;}
.w1d{width:37.120000pt;}
.w2f{width:39.360000pt;}
.w12{width:39.680000pt;}
.w17{width:40.000000pt;}
.w1f{width:41.600000pt;}
.w23{width:42.560000pt;}
.w1a{width:43.200000pt;}
.w24{width:49.600000pt;}
.w5{width:54.080000pt;}
.w25{width:58.560000pt;}
.w18{width:59.200000pt;}
.w16{width:59.840000pt;}
.w21{width:61.120000pt;}
.w1e{width:63.680000pt;}
.w26{width:67.520000pt;}
.w14{width:70.720000pt;}
.w27{width:74.560000pt;}
.w1b{width:74.880000pt;}
.w33{width:77.440000pt;}
.w30{width:86.400000pt;}
.w31{width:89.920000pt;}
.w34{width:92.160000pt;}
.w2e{width:96.320000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:1.280000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x8d{left:185.280000pt;}
.x5{left:192.000000pt;}
.x15{left:193.280000pt;}
.x7a{left:194.240000pt;}
.x4d{left:195.840000pt;}
.x6{left:198.400000pt;}
.x78{left:200.000000pt;}
.xb{left:201.600000pt;}
.x14{left:210.880000pt;}
.x2a{left:214.080000pt;}
.x9c{left:219.200000pt;}
.x32{left:220.160000pt;}
.x74{left:222.080000pt;}
.x47{left:223.040000pt;}
.x98{left:224.640000pt;}
.x8b{left:228.160000pt;}
.x4a{left:229.120000pt;}
.x2f{left:231.360000pt;}
.x4c{left:233.600000pt;}
.x43{left:234.880000pt;}
.xf{left:240.000000pt;}
.x59{left:241.600000pt;}
.x63{left:243.200000pt;}
.x8e{left:244.480000pt;}
.x17{left:246.080000pt;}
.x5d{left:250.560000pt;}
.x33{left:251.840000pt;}
.x7b{left:253.440000pt;}
.x4b{left:255.680000pt;}
.x5e{left:259.520000pt;}
.x67{left:261.120000pt;}
.x31{left:262.400000pt;}
.x45{left:266.880000pt;}
.x9b{left:271.680000pt;}
.x69{left:274.560000pt;}
.xa0{left:277.440000pt;}
.x86{left:280.640000pt;}
.x94{left:281.600000pt;}
.x6a{left:282.880000pt;}
.x8a{left:284.160000pt;}
.x8c{left:286.400000pt;}
.x7{left:287.680000pt;}
.x80{left:290.560000pt;}
.x4e{left:297.280000pt;}
.x60{left:298.240000pt;}
.x18{left:299.520000pt;}
.x3c{left:300.800000pt;}
.x8f{left:302.720000pt;}
.x34{left:304.000000pt;}
.x42{left:305.280000pt;}
.x7c{left:307.520000pt;}
.x19{left:308.480000pt;}
.x3d{left:309.760000pt;}
.x3a{left:310.720000pt;}
.x81{left:312.000000pt;}
.x5a{left:317.120000pt;}
.x64{left:318.080000pt;}
.x2b{left:322.880000pt;}
.x44{left:324.160000pt;}
.x8{left:325.760000pt;}
.x35{left:327.360000pt;}
.x46{left:328.640000pt;}
.x30{left:329.600000pt;}
.x48{left:330.880000pt;}
.x3b{left:334.080000pt;}
.x9{left:335.360000pt;}
.x79{left:344.320000pt;}
.x10{left:346.560000pt;}
.x68{left:350.080000pt;}
.x1a{left:355.520000pt;}
.x6b{left:356.480000pt;}
.x36{left:360.000000pt;}
.x99{left:361.280000pt;}
.x1b{left:362.560000pt;}
.x82{left:364.160000pt;}
.x6c{left:365.440000pt;}
.x1c{left:369.280000pt;}
.x11{left:370.880000pt;}
.x4f{left:375.040000pt;}
.x2c{left:378.880000pt;}
.x37{left:383.360000pt;}
.x9a{left:384.640000pt;}
.x49{left:385.920000pt;}
.x83{left:387.520000pt;}
.x85{left:389.760000pt;}
.x9f{left:391.360000pt;}
.x75{left:393.280000pt;}
.x87{left:394.240000pt;}
.x1d{left:398.080000pt;}
.x65{left:399.040000pt;}
.x3{left:404.408000pt;}
.x16{left:412.480000pt;}
.x3e{left:413.440000pt;}
.x90{left:415.040000pt;}
.xe{left:416.000000pt;}
.xc{left:419.840000pt;}
.xd{left:422.080000pt;}
.xa{left:432.000000pt;}
.x2d{left:436.480000pt;}
.x95{left:438.400000pt;}
.x6d{left:439.680000pt;}
.x6e{left:448.000000pt;}
.x50{left:451.520000pt;}
.x5b{left:452.800000pt;}
.x51{left:459.520000pt;}
.x52{left:462.720000pt;}
.x1f{left:465.600000pt;}
.x84{left:468.160000pt;}
.x96{left:469.120000pt;}
.x38{left:470.080000pt;}
.x88{left:472.640000pt;}
.x9d{left:473.600000pt;}
.x20{left:474.560000pt;}
.x3f{left:475.840000pt;}
.x6f{left:481.600000pt;}
.x2e{left:488.960000pt;}
.x53{left:491.520000pt;}
.x97{left:492.480000pt;}
.x39{left:493.440000pt;}
.x89{left:496.000000pt;}
.x9e{left:496.960000pt;}
.x21{left:518.080000pt;}
.x7d{left:520.320000pt;}
.x70{left:522.240000pt;}
.x91{left:523.200000pt;}
.x22{left:526.400000pt;}
.x23{left:530.880000pt;}
.x12{left:536.000000pt;}
.x54{left:539.520000pt;}
.x55{left:544.000000pt;}
.x76{left:546.240000pt;}
.x5c{left:554.240000pt;}
.x24{left:560.000000pt;}
.x25{left:576.320000pt;}
.x56{left:581.120000pt;}
.x13{left:590.720000pt;}
.x26{left:594.240000pt;}
.x92{left:599.360000pt;}
.x71{left:603.840000pt;}
.x61{left:607.360000pt;}
.x57{left:608.640000pt;}
.x72{left:612.800000pt;}
.x73{left:616.960000pt;}
.x5f{left:618.880000pt;}
.x77{left:627.840000pt;}
.x66{left:630.720000pt;}
.x27{left:632.640000pt;}
.x93{left:637.760000pt;}
.x7e{left:640.320000pt;}
.x28{left:641.280000pt;}
.x40{left:642.560000pt;}
.x7f{left:644.800000pt;}
.x29{left:645.760000pt;}
.x41{left:647.040000pt;}
.x62{left:649.920000pt;}
.x58{left:651.200000pt;}
}




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