
    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_f871a86c9bab1625f116db09.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_259d8f56dcff41bd8cb4f56f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e32e620b9c240b50402784fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b3c6ca20cdcf27009ab9e3d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5c0f427bffc817b6f6c60adc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_83d0d37c0a996c66dfb4d865.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_9653e95e7fd1697f7c760c06.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v3{vertical-align:-33.120000px;}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls2d{letter-spacing:-0.722304px;}
.ls2e{letter-spacing:-0.172800px;}
.ls10{letter-spacing:-0.014400px;}
.lsa{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.000600px;}
.ls30{letter-spacing:0.010800px;}
.ls14{letter-spacing:0.014400px;}
.ls17{letter-spacing:0.114048px;}
.ls1f{letter-spacing:0.123552px;}
.ls1e{letter-spacing:0.125040px;}
.ls12{letter-spacing:0.125400px;}
.ls24{letter-spacing:0.125640px;}
.ls23{letter-spacing:0.159840px;}
.ls13{letter-spacing:0.160440px;}
.ls2c{letter-spacing:0.161568px;}
.ls18{letter-spacing:0.242352px;}
.lse{letter-spacing:0.252720px;}
.ls3{letter-spacing:0.253872px;}
.ls21{letter-spacing:0.256608px;}
.ls2b{letter-spacing:0.256680px;}
.ls1a{letter-spacing:0.261360px;}
.ls1b{letter-spacing:0.266112px;}
.ls1c{letter-spacing:0.270864px;}
.ls16{letter-spacing:0.275616px;}
.ls1d{letter-spacing:0.285120px;}
.ls8{letter-spacing:0.300000px;}
.ls15{letter-spacing:0.318384px;}
.ls7{letter-spacing:0.319680px;}
.ls25{letter-spacing:0.328560px;}
.ls27{letter-spacing:0.356400px;}
.ls2a{letter-spacing:0.365904px;}
.ls5{letter-spacing:0.382440px;}
.ls1{letter-spacing:0.383040px;}
.ls22{letter-spacing:0.399168px;}
.lsd{letter-spacing:0.401760px;}
.ls11{letter-spacing:0.542880px;}
.ls0{letter-spacing:0.542940px;}
.lsb{letter-spacing:0.543168px;}
.ls4{letter-spacing:0.543360px;}
.ls6{letter-spacing:0.578592px;}
.lsc{letter-spacing:0.702576px;}
.lsf{letter-spacing:0.725760px;}
.ls9{letter-spacing:0.802944px;}
.ls28{letter-spacing:1.670640px;}
.ls26{letter-spacing:2.019240px;}
.ls19{letter-spacing:2.336400px;}
.ls20{letter-spacing:4.386600px;}
.ls29{letter-spacing:5.777400px;}
.ls2{letter-spacing:195.986280px;}
.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;}
}
.wsf{word-spacing:-18.014400px;}
.ws5{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.985600px;}
.ws0{word-spacing:-16.991712px;}
.ws1{word-spacing:-16.956288px;}
.ws4{word-spacing:-16.925760px;}
.ws2{word-spacing:-16.666992px;}
.ws3{word-spacing:-16.601760px;}
.ws13{word-spacing:-13.528944px;}
.wsa{word-spacing:-13.495680px;}
.ws9{word-spacing:-13.486176px;}
.wsd{word-spacing:-13.467168px;}
.wse{word-spacing:-13.452912px;}
.ws10{word-spacing:-13.334112px;}
.ws7{word-spacing:-11.880000px;}
.ws11{word-spacing:-11.157696px;}
.wsc{word-spacing:-10.008000px;}
.ws8{word-spacing:-8.006400px;}
.ws12{word-spacing:-7.833600px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-130.022784px;}
._17{margin-left:-51.263940px;}
._18{margin-left:-24.811200px;}
._1e{margin-left:-5.319240px;}
._5{margin-left:-4.269600px;}
._a{margin-left:-2.756040px;}
._2{margin-left:-1.059960px;}
._1{width:1.180320px;}
._14{width:2.786400px;}
._9{width:4.744800px;}
._7{width:5.925600px;}
._8{width:6.978720px;}
._3{width:8.546400px;}
._15{width:10.432800px;}
._e{width:11.520000px;}
._6{width:12.542400px;}
._b{width:13.788000px;}
._12{width:14.860800px;}
._16{width:16.365600px;}
._f{width:19.022400px;}
._c{width:20.167200px;}
._1b{width:21.463200px;}
._11{width:22.615200px;}
._1c{width:23.623200px;}
._1d{width:24.733920px;}
._10{width:25.776000px;}
._19{width:27.011880px;}
._d{width:28.185660px;}
._20{width:29.227500px;}
._13{width:30.506400px;}
._21{width:32.191200px;}
._1a{width:34.444800px;}
._1f{width:37.404000px;}
._27{width:39.376800px;}
._4{width:43.023780px;}
._26{width:44.117460px;}
._23{width:79.437600px;}
._25{width:168.465600px;}
._24{width:354.454920px;}
._22{width:1009.440000px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(102,102,255);}
.fc4{color:rgb(128,0,128);}
.fc1{color:rgb(255,80,80);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:28.800000px;}
.fs5{font-size:36.000000px;}
.fs3{font-size:47.520000px;}
.fs0{font-size:59.040000px;}
.fs2{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.600000px;}
.yc{bottom:3.960000px;}
.y1{bottom:12.600036px;}
.y7{bottom:43.874979px;}
.y6{bottom:64.034979px;}
.y5{bottom:80.954979px;}
.y8{bottom:89.955015px;}
.y88{bottom:97.514964px;}
.yb4{bottom:98.234979px;}
.y7d{bottom:99.674979px;}
.y12b{bottom:101.114979px;}
.y31{bottom:106.154979px;}
.y84{bottom:106.874979px;}
.yd1{bottom:108.674979px;}
.y97{bottom:111.194979px;}
.yb3{bottom:114.794979px;}
.yf8{bottom:115.514964px;}
.y117{bottom:115.874979px;}
.y87{bottom:117.314979px;}
.yf4{bottom:118.754979px;}
.y7c{bottom:120.554964px;}
.y12a{bottom:121.634979px;}
.y8c{bottom:124.514964px;}
.y96{bottom:124.874979px;}
.y86{bottom:126.674979px;}
.y30{bottom:127.034964px;}
.y83{bottom:127.754979px;}
.yb2{bottom:128.474964px;}
.yf7{bottom:129.194979px;}
.yd0{bottom:129.554964px;}
.yad{bottom:130.994979px;}
.ye8{bottom:131.714979px;}
.y116{bottom:136.394979px;}
.y95{bottom:138.914964px;}
.yf3{bottom:139.634964px;}
.yac{bottom:140.354964px;}
.y7b{bottom:141.074964px;}
.yb1{bottom:142.154964px;}
.y129{bottom:142.514964px;}
.yf6{bottom:143.234964px;}
.y8b{bottom:143.954964px;}
.y2f{bottom:147.554964px;}
.y82{bottom:148.274964px;}
.ycf{bottom:150.074964px;}
.ye7{bottom:152.234964px;}
.yf5{bottom:154.394964px;}
.yb0{bottom:156.194964px;}
.y115{bottom:157.274964px;}
.y8a{bottom:157.634964px;}
.y94{bottom:158.714964px;}
.yf2{bottom:160.154964px;}
.y7a{bottom:161.954964px;}
.y128{bottom:163.034964px;}
.y93{bottom:166.274964px;}
.ya1{bottom:168.074964px;}
.y2e{bottom:168.434964px;}
.y89{bottom:168.794964px;}
.y81{bottom:169.154964px;}
.yce{bottom:170.954964px;}
.ye6{bottom:173.114964px;}
.yaf{bottom:175.994964px;}
.y114{bottom:177.794964px;}
.y92{bottom:180.314964px;}
.yf1{bottom:181.034964px;}
.y79{bottom:182.474964px;}
.y127{bottom:183.914964px;}
.yae{bottom:185.354964px;}
.y2d{bottom:188.954964px;}
.yab{bottom:189.314964px;}
.y80{bottom:189.674964px;}
.ycd{bottom:191.474964px;}
.ye5{bottom:193.634964px;}
.y91{bottom:193.994964px;}
.ya0{bottom:196.514964px;}
.y113{bottom:198.674964px;}
.yf0{bottom:201.554964px;}
.y78{bottom:203.354964px;}
.y126{bottom:204.434964px;}
.y90{bottom:207.674964px;}
.y2c{bottom:209.834964px;}
.y7f{bottom:210.554964px;}
.ycc{bottom:212.354964px;}
.ya3{bottom:213.794964px;}
.ye4{bottom:214.514964px;}
.y9f{bottom:217.394964px;}
.y112{bottom:219.194964px;}
.y8f{bottom:221.714964px;}
.yef{bottom:222.434964px;}
.ya2{bottom:223.154964px;}
.y77{bottom:223.874964px;}
.y125{bottom:225.314964px;}
.y2b{bottom:230.354964px;}
.yaa{bottom:230.714964px;}
.y7e{bottom:231.074964px;}
.ycb{bottom:232.874964px;}
.ye3{bottom:235.034964px;}
.y9e{bottom:237.914964px;}
.y111{bottom:240.074964px;}
.y8e{bottom:241.514964px;}
.yee{bottom:242.954964px;}
.y76{bottom:244.754964px;}
.y124{bottom:245.834964px;}
.y8d{bottom:250.874964px;}
.y2a{bottom:251.234964px;}
.y55{bottom:251.954964px;}
.yca{bottom:253.754964px;}
.ye2{bottom:255.914964px;}
.y9d{bottom:258.794964px;}
.y110{bottom:260.594964px;}
.yed{bottom:263.834964px;}
.y75{bottom:265.274964px;}
.y123{bottom:266.714964px;}
.y29{bottom:271.754964px;}
.ya9{bottom:272.114964px;}
.y54{bottom:272.474964px;}
.yc9{bottom:274.274964px;}
.ye1{bottom:276.434964px;}
.y9c{bottom:277.874964px;}
.y10f{bottom:281.474964px;}
.yec{bottom:284.354964px;}
.y74{bottom:286.154964px;}
.y122{bottom:287.234964px;}
.y9b{bottom:291.914964px;}
.y28{bottom:292.634964px;}
.y53{bottom:293.354964px;}
.yc8{bottom:295.154964px;}
.ye0{bottom:296.954964px;}
.y10e{bottom:301.994964px;}
.yeb{bottom:303.794964px;}
.y9a{bottom:305.594964px;}
.y73{bottom:306.674964px;}
.y121{bottom:308.114964px;}
.y27{bottom:313.154964px;}
.ya8{bottom:313.514964px;}
.y52{bottom:313.874964px;}
.yc7{bottom:315.674964px;}
.yea{bottom:317.474964px;}
.ydf{bottom:317.834964px;}
.y99{bottom:319.274964px;}
.y10d{bottom:322.874964px;}
.y72{bottom:327.554964px;}
.y120{bottom:328.634964px;}
.ye9{bottom:328.994964px;}
.y98{bottom:330.434964px;}
.ya7{bottom:332.594964px;}
.y26{bottom:334.034964px;}
.y51{bottom:334.754964px;}
.yc6{bottom:336.554964px;}
.yde{bottom:338.354964px;}
.y10c{bottom:343.394964px;}
.ya6{bottom:346.274964px;}
.y71{bottom:348.074964px;}
.y11f{bottom:349.514964px;}
.y25{bottom:354.554964px;}
.y50{bottom:355.274964px;}
.yc5{bottom:357.074964px;}
.ydd{bottom:359.234964px;}
.ya5{bottom:360.314964px;}
.y10b{bottom:364.274964px;}
.y70{bottom:368.954964px;}
.y11e{bottom:370.034964px;}
.ya4{bottom:371.834964px;}
.y24{bottom:375.434964px;}
.y4f{bottom:376.154964px;}
.yc4{bottom:377.954964px;}
.ydc{bottom:379.754964px;}
.y10a{bottom:384.794964px;}
.y6f{bottom:389.474964px;}
.y11d{bottom:390.914964px;}
.y23{bottom:395.954964px;}
.y4e{bottom:396.674964px;}
.yc3{bottom:398.474964px;}
.ydb{bottom:400.634964px;}
.y109{bottom:405.674964px;}
.y6e{bottom:410.354964px;}
.y11c{bottom:411.434964px;}
.y22{bottom:416.834964px;}
.y4d{bottom:417.554964px;}
.yc2{bottom:419.354964px;}
.yda{bottom:421.154964px;}
.y108{bottom:426.194964px;}
.y6d{bottom:430.874964px;}
.y11b{bottom:432.314964px;}
.y21{bottom:437.354964px;}
.y4c{bottom:438.074964px;}
.yc1{bottom:439.874964px;}
.yd9{bottom:440.594964px;}
.y107{bottom:447.074964px;}
.y6c{bottom:451.394964px;}
.yd8{bottom:451.754964px;}
.y11a{bottom:452.834964px;}
.y20{bottom:458.234964px;}
.y4b{bottom:458.954964px;}
.yc0{bottom:460.754964px;}
.y106{bottom:467.594964px;}
.y6b{bottom:472.274964px;}
.y119{bottom:473.714964px;}
.y1f{bottom:478.754964px;}
.y4a{bottom:479.474964px;}
.ybf{bottom:481.274964px;}
.y105{bottom:488.474964px;}
.y6a{bottom:492.794964px;}
.y1e{bottom:499.634964px;}
.y49{bottom:500.354964px;}
.ybe{bottom:502.154964px;}
.y118{bottom:504.314964px;}
.y104{bottom:508.994964px;}
.y69{bottom:513.674964px;}
.y1d{bottom:520.154964px;}
.y48{bottom:520.874964px;}
.ybd{bottom:522.674964px;}
.y103{bottom:529.874964px;}
.y68{bottom:534.194964px;}
.y1c{bottom:541.034964px;}
.y47{bottom:541.754964px;}
.ybc{bottom:543.554964px;}
.y102{bottom:550.394964px;}
.y67{bottom:555.074964px;}
.y1b{bottom:561.554964px;}
.y46{bottom:562.274964px;}
.ybb{bottom:564.074964px;}
.y101{bottom:571.274964px;}
.y66{bottom:575.594964px;}
.y1a{bottom:582.434964px;}
.y45{bottom:583.154964px;}
.yba{bottom:584.954964px;}
.y100{bottom:591.794964px;}
.y65{bottom:596.474964px;}
.y19{bottom:602.954964px;}
.y44{bottom:603.674964px;}
.yb9{bottom:605.474964px;}
.yff{bottom:612.674964px;}
.y64{bottom:616.994964px;}
.y18{bottom:619.874964px;}
.y43{bottom:624.554964px;}
.yb8{bottom:626.354964px;}
.yfe{bottom:633.194964px;}
.y63{bottom:637.874964px;}
.y42{bottom:645.074964px;}
.yb7{bottom:646.874964px;}
.yfd{bottom:654.074964px;}
.y62{bottom:658.394964px;}
.y41{bottom:665.954964px;}
.yfc{bottom:674.594964px;}
.y61{bottom:679.274964px;}
.yb6{bottom:679.994964px;}
.y40{bottom:686.474964px;}
.yb5{bottom:691.154964px;}
.yfb{bottom:693.674964px;}
.y60{bottom:699.794964px;}
.y3f{bottom:707.354964px;}
.yfa{bottom:707.714964px;}
.yf9{bottom:719.234964px;}
.y5f{bottom:720.674964px;}
.y3e{bottom:727.874964px;}
.yd7{bottom:734.714964px;}
.y5e{bottom:741.194964px;}
.y3d{bottom:748.754964px;}
.yd6{bottom:755.594964px;}
.y5d{bottom:762.074964px;}
.y3c{bottom:769.274964px;}
.yd5{bottom:776.114964px;}
.y5c{bottom:782.594964px;}
.y3b{bottom:790.154964px;}
.yd4{bottom:795.554964px;}
.y5b{bottom:803.474964px;}
.yd3{bottom:809.234964px;}
.y3a{bottom:810.674964px;}
.yd2{bottom:820.754964px;}
.y5a{bottom:823.994964px;}
.y39{bottom:831.554964px;}
.y59{bottom:844.874964px;}
.y38{bottom:852.074964px;}
.y58{bottom:865.034964px;}
.y17{bottom:872.954964px;}
.y57{bottom:882.674964px;}
.y37{bottom:893.474964px;}
.y16{bottom:893.834964px;}
.y56{bottom:899.594964px;}
.y15{bottom:914.354964px;}
.y36{bottom:934.874964px;}
.y14{bottom:935.234964px;}
.y85{bottom:955.754814px;}
.y13{bottom:955.754964px;}
.y35{bottom:976.274964px;}
.y12{bottom:976.634964px;}
.y11{bottom:997.154964px;}
.y34{bottom:1017.674964px;}
.y10{bottom:1018.034964px;}
.yf{bottom:1038.554964px;}
.y33{bottom:1059.074964px;}
.ye{bottom:1059.434964px;}
.yd{bottom:1079.954964px;}
.y32{bottom:1100.474964px;}
.yb{bottom:1109.835000px;}
.ya{bottom:1121.354964px;}
.y4{bottom:1141.874964px;}
.y3{bottom:1162.754964px;}
.y2{bottom:1182.914964px;}
.h6{height:17.280000px;}
.h9{height:19.079865px;}
.he{height:20.981250px;}
.h11{height:20.981730px;}
.h10{height:20.981850px;}
.hf{height:34.619063px;}
.h5{height:42.982734px;}
.h7{height:43.011563px;}
.hc{height:49.992188px;}
.h3{height:52.438359px;}
.h4{height:52.453125px;}
.ha{height:56.858203px;}
.h8{height:63.175781px;}
.hb{height:63.949219px;}
.hd{height:74.816016px;}
.h2{height:1237.635000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:16.920000px;}
.w4{width:636.480000px;}
.w2{width:867.600000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x6{left:7.920000px;}
.x1{left:12.600000px;}
.x2{left:115.559985px;}
.x17{left:119.667390px;}
.xb{left:121.650795px;}
.x1c{left:125.005275px;}
.x1f{left:126.703785px;}
.x5{left:128.159985px;}
.x13{left:133.656645px;}
.x22{left:136.015050px;}
.xe{left:141.347100px;}
.xf{left:151.504350px;}
.x1a{left:158.005350px;}
.x9{left:168.659850px;}
.x18{left:247.062000px;}
.x25{left:259.404750px;}
.x1d{left:268.064850px;}
.x15{left:282.405600px;}
.x8{left:289.439850px;}
.xc{left:296.767050px;}
.x21{left:306.067350px;}
.x10{left:335.876100px;}
.x23{left:382.797300px;}
.x20{left:393.807000px;}
.x11{left:434.497500px;}
.x7{left:448.560000px;}
.x4{left:454.189350px;}
.x3{left:530.383200px;}
.x16{left:537.997500px;}
.x19{left:539.437350px;}
.x24{left:586.597200px;}
.xa{left:654.997500px;}
.x1e{left:677.497500px;}
.xd{left:717.097200px;}
.x14{left:723.937350px;}
.x12{left:725.377350px;}
.x1b{left:752.760150px;}
@media print{
.v3{vertical-align:-29.440000pt;}
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls2d{letter-spacing:-0.642048pt;}
.ls2e{letter-spacing:-0.153600pt;}
.ls10{letter-spacing:-0.012800pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.000533pt;}
.ls30{letter-spacing:0.009600pt;}
.ls14{letter-spacing:0.012800pt;}
.ls17{letter-spacing:0.101376pt;}
.ls1f{letter-spacing:0.109824pt;}
.ls1e{letter-spacing:0.111147pt;}
.ls12{letter-spacing:0.111467pt;}
.ls24{letter-spacing:0.111680pt;}
.ls23{letter-spacing:0.142080pt;}
.ls13{letter-spacing:0.142613pt;}
.ls2c{letter-spacing:0.143616pt;}
.ls18{letter-spacing:0.215424pt;}
.lse{letter-spacing:0.224640pt;}
.ls3{letter-spacing:0.225664pt;}
.ls21{letter-spacing:0.228096pt;}
.ls2b{letter-spacing:0.228160pt;}
.ls1a{letter-spacing:0.232320pt;}
.ls1b{letter-spacing:0.236544pt;}
.ls1c{letter-spacing:0.240768pt;}
.ls16{letter-spacing:0.244992pt;}
.ls1d{letter-spacing:0.253440pt;}
.ls8{letter-spacing:0.266667pt;}
.ls15{letter-spacing:0.283008pt;}
.ls7{letter-spacing:0.284160pt;}
.ls25{letter-spacing:0.292053pt;}
.ls27{letter-spacing:0.316800pt;}
.ls2a{letter-spacing:0.325248pt;}
.ls5{letter-spacing:0.339947pt;}
.ls1{letter-spacing:0.340480pt;}
.ls22{letter-spacing:0.354816pt;}
.lsd{letter-spacing:0.357120pt;}
.ls11{letter-spacing:0.482560pt;}
.ls0{letter-spacing:0.482613pt;}
.lsb{letter-spacing:0.482816pt;}
.ls4{letter-spacing:0.482987pt;}
.ls6{letter-spacing:0.514304pt;}
.lsc{letter-spacing:0.624512pt;}
.lsf{letter-spacing:0.645120pt;}
.ls9{letter-spacing:0.713728pt;}
.ls28{letter-spacing:1.485013pt;}
.ls26{letter-spacing:1.794880pt;}
.ls19{letter-spacing:2.076800pt;}
.ls20{letter-spacing:3.899200pt;}
.ls29{letter-spacing:5.135467pt;}
.ls2{letter-spacing:174.210027pt;}
.wsf{word-spacing:-16.012800pt;}
.ws5{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.987200pt;}
.ws0{word-spacing:-15.103744pt;}
.ws1{word-spacing:-15.072256pt;}
.ws4{word-spacing:-15.045120pt;}
.ws2{word-spacing:-14.815104pt;}
.ws3{word-spacing:-14.757120pt;}
.ws13{word-spacing:-12.025728pt;}
.wsa{word-spacing:-11.996160pt;}
.ws9{word-spacing:-11.987712pt;}
.wsd{word-spacing:-11.970816pt;}
.wse{word-spacing:-11.958144pt;}
.ws10{word-spacing:-11.852544pt;}
.ws7{word-spacing:-10.560000pt;}
.ws11{word-spacing:-9.917952pt;}
.wsc{word-spacing:-8.896000pt;}
.ws8{word-spacing:-7.116800pt;}
.ws12{word-spacing:-6.963200pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-115.575808pt;}
._17{margin-left:-45.567947pt;}
._18{margin-left:-22.054400pt;}
._1e{margin-left:-4.728213pt;}
._5{margin-left:-3.795200pt;}
._a{margin-left:-2.449813pt;}
._2{margin-left:-0.942187pt;}
._1{width:1.049173pt;}
._14{width:2.476800pt;}
._9{width:4.217600pt;}
._7{width:5.267200pt;}
._8{width:6.203307pt;}
._3{width:7.596800pt;}
._15{width:9.273600pt;}
._e{width:10.240000pt;}
._6{width:11.148800pt;}
._b{width:12.256000pt;}
._12{width:13.209600pt;}
._16{width:14.547200pt;}
._f{width:16.908800pt;}
._c{width:17.926400pt;}
._1b{width:19.078400pt;}
._11{width:20.102400pt;}
._1c{width:20.998400pt;}
._1d{width:21.985707pt;}
._10{width:22.912000pt;}
._19{width:24.010560pt;}
._d{width:25.053920pt;}
._20{width:25.980000pt;}
._13{width:27.116800pt;}
._21{width:28.614400pt;}
._1a{width:30.617600pt;}
._1f{width:33.248000pt;}
._27{width:35.001600pt;}
._4{width:38.243360pt;}
._26{width:39.215520pt;}
._23{width:70.611200pt;}
._25{width:149.747200pt;}
._24{width:315.071040pt;}
._22{width:897.280000pt;}
.fs4{font-size:25.600000pt;}
.fs5{font-size:32.000000pt;}
.fs3{font-size:42.240000pt;}
.fs0{font-size:52.480000pt;}
.fs2{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.200000pt;}
.yc{bottom:3.520000pt;}
.y1{bottom:11.200032pt;}
.y7{bottom:38.999981pt;}
.y6{bottom:56.919981pt;}
.y5{bottom:71.959981pt;}
.y8{bottom:79.960013pt;}
.y88{bottom:86.679968pt;}
.yb4{bottom:87.319981pt;}
.y7d{bottom:88.599981pt;}
.y12b{bottom:89.879981pt;}
.y31{bottom:94.359981pt;}
.y84{bottom:94.999981pt;}
.yd1{bottom:96.599981pt;}
.y97{bottom:98.839981pt;}
.yb3{bottom:102.039981pt;}
.yf8{bottom:102.679968pt;}
.y117{bottom:102.999981pt;}
.y87{bottom:104.279981pt;}
.yf4{bottom:105.559981pt;}
.y7c{bottom:107.159968pt;}
.y12a{bottom:108.119981pt;}
.y8c{bottom:110.679968pt;}
.y96{bottom:110.999981pt;}
.y86{bottom:112.599981pt;}
.y30{bottom:112.919968pt;}
.y83{bottom:113.559981pt;}
.yb2{bottom:114.199968pt;}
.yf7{bottom:114.839981pt;}
.yd0{bottom:115.159968pt;}
.yad{bottom:116.439981pt;}
.ye8{bottom:117.079981pt;}
.y116{bottom:121.239981pt;}
.y95{bottom:123.479968pt;}
.yf3{bottom:124.119968pt;}
.yac{bottom:124.759968pt;}
.y7b{bottom:125.399968pt;}
.yb1{bottom:126.359968pt;}
.y129{bottom:126.679968pt;}
.yf6{bottom:127.319968pt;}
.y8b{bottom:127.959968pt;}
.y2f{bottom:131.159968pt;}
.y82{bottom:131.799968pt;}
.ycf{bottom:133.399968pt;}
.ye7{bottom:135.319968pt;}
.yf5{bottom:137.239968pt;}
.yb0{bottom:138.839968pt;}
.y115{bottom:139.799968pt;}
.y8a{bottom:140.119968pt;}
.y94{bottom:141.079968pt;}
.yf2{bottom:142.359968pt;}
.y7a{bottom:143.959968pt;}
.y128{bottom:144.919968pt;}
.y93{bottom:147.799968pt;}
.ya1{bottom:149.399968pt;}
.y2e{bottom:149.719968pt;}
.y89{bottom:150.039968pt;}
.y81{bottom:150.359968pt;}
.yce{bottom:151.959968pt;}
.ye6{bottom:153.879968pt;}
.yaf{bottom:156.439968pt;}
.y114{bottom:158.039968pt;}
.y92{bottom:160.279968pt;}
.yf1{bottom:160.919968pt;}
.y79{bottom:162.199968pt;}
.y127{bottom:163.479968pt;}
.yae{bottom:164.759968pt;}
.y2d{bottom:167.959968pt;}
.yab{bottom:168.279968pt;}
.y80{bottom:168.599968pt;}
.ycd{bottom:170.199968pt;}
.ye5{bottom:172.119968pt;}
.y91{bottom:172.439968pt;}
.ya0{bottom:174.679968pt;}
.y113{bottom:176.599968pt;}
.yf0{bottom:179.159968pt;}
.y78{bottom:180.759968pt;}
.y126{bottom:181.719968pt;}
.y90{bottom:184.599968pt;}
.y2c{bottom:186.519968pt;}
.y7f{bottom:187.159968pt;}
.ycc{bottom:188.759968pt;}
.ya3{bottom:190.039968pt;}
.ye4{bottom:190.679968pt;}
.y9f{bottom:193.239968pt;}
.y112{bottom:194.839968pt;}
.y8f{bottom:197.079968pt;}
.yef{bottom:197.719968pt;}
.ya2{bottom:198.359968pt;}
.y77{bottom:198.999968pt;}
.y125{bottom:200.279968pt;}
.y2b{bottom:204.759968pt;}
.yaa{bottom:205.079968pt;}
.y7e{bottom:205.399968pt;}
.ycb{bottom:206.999968pt;}
.ye3{bottom:208.919968pt;}
.y9e{bottom:211.479968pt;}
.y111{bottom:213.399968pt;}
.y8e{bottom:214.679968pt;}
.yee{bottom:215.959968pt;}
.y76{bottom:217.559968pt;}
.y124{bottom:218.519968pt;}
.y8d{bottom:222.999968pt;}
.y2a{bottom:223.319968pt;}
.y55{bottom:223.959968pt;}
.yca{bottom:225.559968pt;}
.ye2{bottom:227.479968pt;}
.y9d{bottom:230.039968pt;}
.y110{bottom:231.639968pt;}
.yed{bottom:234.519968pt;}
.y75{bottom:235.799968pt;}
.y123{bottom:237.079968pt;}
.y29{bottom:241.559968pt;}
.ya9{bottom:241.879968pt;}
.y54{bottom:242.199968pt;}
.yc9{bottom:243.799968pt;}
.ye1{bottom:245.719968pt;}
.y9c{bottom:246.999968pt;}
.y10f{bottom:250.199968pt;}
.yec{bottom:252.759968pt;}
.y74{bottom:254.359968pt;}
.y122{bottom:255.319968pt;}
.y9b{bottom:259.479968pt;}
.y28{bottom:260.119968pt;}
.y53{bottom:260.759968pt;}
.yc8{bottom:262.359968pt;}
.ye0{bottom:263.959968pt;}
.y10e{bottom:268.439968pt;}
.yeb{bottom:270.039968pt;}
.y9a{bottom:271.639968pt;}
.y73{bottom:272.599968pt;}
.y121{bottom:273.879968pt;}
.y27{bottom:278.359968pt;}
.ya8{bottom:278.679968pt;}
.y52{bottom:278.999968pt;}
.yc7{bottom:280.599968pt;}
.yea{bottom:282.199968pt;}
.ydf{bottom:282.519968pt;}
.y99{bottom:283.799968pt;}
.y10d{bottom:286.999968pt;}
.y72{bottom:291.159968pt;}
.y120{bottom:292.119968pt;}
.ye9{bottom:292.439968pt;}
.y98{bottom:293.719968pt;}
.ya7{bottom:295.639968pt;}
.y26{bottom:296.919968pt;}
.y51{bottom:297.559968pt;}
.yc6{bottom:299.159968pt;}
.yde{bottom:300.759968pt;}
.y10c{bottom:305.239968pt;}
.ya6{bottom:307.799968pt;}
.y71{bottom:309.399968pt;}
.y11f{bottom:310.679968pt;}
.y25{bottom:315.159968pt;}
.y50{bottom:315.799968pt;}
.yc5{bottom:317.399968pt;}
.ydd{bottom:319.319968pt;}
.ya5{bottom:320.279968pt;}
.y10b{bottom:323.799968pt;}
.y70{bottom:327.959968pt;}
.y11e{bottom:328.919968pt;}
.ya4{bottom:330.519968pt;}
.y24{bottom:333.719968pt;}
.y4f{bottom:334.359968pt;}
.yc4{bottom:335.959968pt;}
.ydc{bottom:337.559968pt;}
.y10a{bottom:342.039968pt;}
.y6f{bottom:346.199968pt;}
.y11d{bottom:347.479968pt;}
.y23{bottom:351.959968pt;}
.y4e{bottom:352.599968pt;}
.yc3{bottom:354.199968pt;}
.ydb{bottom:356.119968pt;}
.y109{bottom:360.599968pt;}
.y6e{bottom:364.759968pt;}
.y11c{bottom:365.719968pt;}
.y22{bottom:370.519968pt;}
.y4d{bottom:371.159968pt;}
.yc2{bottom:372.759968pt;}
.yda{bottom:374.359968pt;}
.y108{bottom:378.839968pt;}
.y6d{bottom:382.999968pt;}
.y11b{bottom:384.279968pt;}
.y21{bottom:388.759968pt;}
.y4c{bottom:389.399968pt;}
.yc1{bottom:390.999968pt;}
.yd9{bottom:391.639968pt;}
.y107{bottom:397.399968pt;}
.y6c{bottom:401.239968pt;}
.yd8{bottom:401.559968pt;}
.y11a{bottom:402.519968pt;}
.y20{bottom:407.319968pt;}
.y4b{bottom:407.959968pt;}
.yc0{bottom:409.559968pt;}
.y106{bottom:415.639968pt;}
.y6b{bottom:419.799968pt;}
.y119{bottom:421.079968pt;}
.y1f{bottom:425.559968pt;}
.y4a{bottom:426.199968pt;}
.ybf{bottom:427.799968pt;}
.y105{bottom:434.199968pt;}
.y6a{bottom:438.039968pt;}
.y1e{bottom:444.119968pt;}
.y49{bottom:444.759968pt;}
.ybe{bottom:446.359968pt;}
.y118{bottom:448.279968pt;}
.y104{bottom:452.439968pt;}
.y69{bottom:456.599968pt;}
.y1d{bottom:462.359968pt;}
.y48{bottom:462.999968pt;}
.ybd{bottom:464.599968pt;}
.y103{bottom:470.999968pt;}
.y68{bottom:474.839968pt;}
.y1c{bottom:480.919968pt;}
.y47{bottom:481.559968pt;}
.ybc{bottom:483.159968pt;}
.y102{bottom:489.239968pt;}
.y67{bottom:493.399968pt;}
.y1b{bottom:499.159968pt;}
.y46{bottom:499.799968pt;}
.ybb{bottom:501.399968pt;}
.y101{bottom:507.799968pt;}
.y66{bottom:511.639968pt;}
.y1a{bottom:517.719968pt;}
.y45{bottom:518.359968pt;}
.yba{bottom:519.959968pt;}
.y100{bottom:526.039968pt;}
.y65{bottom:530.199968pt;}
.y19{bottom:535.959968pt;}
.y44{bottom:536.599968pt;}
.yb9{bottom:538.199968pt;}
.yff{bottom:544.599968pt;}
.y64{bottom:548.439968pt;}
.y18{bottom:550.999968pt;}
.y43{bottom:555.159968pt;}
.yb8{bottom:556.759968pt;}
.yfe{bottom:562.839968pt;}
.y63{bottom:566.999968pt;}
.y42{bottom:573.399968pt;}
.yb7{bottom:574.999968pt;}
.yfd{bottom:581.399968pt;}
.y62{bottom:585.239968pt;}
.y41{bottom:591.959968pt;}
.yfc{bottom:599.639968pt;}
.y61{bottom:603.799968pt;}
.yb6{bottom:604.439968pt;}
.y40{bottom:610.199968pt;}
.yb5{bottom:614.359968pt;}
.yfb{bottom:616.599968pt;}
.y60{bottom:622.039968pt;}
.y3f{bottom:628.759968pt;}
.yfa{bottom:629.079968pt;}
.yf9{bottom:639.319968pt;}
.y5f{bottom:640.599968pt;}
.y3e{bottom:646.999968pt;}
.yd7{bottom:653.079968pt;}
.y5e{bottom:658.839968pt;}
.y3d{bottom:665.559968pt;}
.yd6{bottom:671.639968pt;}
.y5d{bottom:677.399968pt;}
.y3c{bottom:683.799968pt;}
.yd5{bottom:689.879968pt;}
.y5c{bottom:695.639968pt;}
.y3b{bottom:702.359968pt;}
.yd4{bottom:707.159968pt;}
.y5b{bottom:714.199968pt;}
.yd3{bottom:719.319968pt;}
.y3a{bottom:720.599968pt;}
.yd2{bottom:729.559968pt;}
.y5a{bottom:732.439968pt;}
.y39{bottom:739.159968pt;}
.y59{bottom:750.999968pt;}
.y38{bottom:757.399968pt;}
.y58{bottom:768.919968pt;}
.y17{bottom:775.959968pt;}
.y57{bottom:784.599968pt;}
.y37{bottom:794.199968pt;}
.y16{bottom:794.519968pt;}
.y56{bottom:799.639968pt;}
.y15{bottom:812.759968pt;}
.y36{bottom:830.999968pt;}
.y14{bottom:831.319968pt;}
.y85{bottom:849.559835pt;}
.y13{bottom:849.559968pt;}
.y35{bottom:867.799968pt;}
.y12{bottom:868.119968pt;}
.y11{bottom:886.359968pt;}
.y34{bottom:904.599968pt;}
.y10{bottom:904.919968pt;}
.yf{bottom:923.159968pt;}
.y33{bottom:941.399968pt;}
.ye{bottom:941.719968pt;}
.yd{bottom:959.959968pt;}
.y32{bottom:978.199968pt;}
.yb{bottom:986.520000pt;}
.ya{bottom:996.759968pt;}
.y4{bottom:1014.999968pt;}
.y3{bottom:1033.559968pt;}
.y2{bottom:1051.479968pt;}
.h6{height:15.360000pt;}
.h9{height:16.959880pt;}
.he{height:18.650000pt;}
.h11{height:18.650427pt;}
.h10{height:18.650533pt;}
.hf{height:30.772500pt;}
.h5{height:38.206875pt;}
.h7{height:38.232500pt;}
.hc{height:44.437500pt;}
.h3{height:46.611875pt;}
.h4{height:46.625000pt;}
.ha{height:50.540625pt;}
.h8{height:56.156250pt;}
.hb{height:56.843750pt;}
.hd{height:66.503125pt;}
.h2{height:1100.120000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:15.040000pt;}
.w4{width:565.760000pt;}
.w2{width:771.200000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x6{left:7.040000pt;}
.x1{left:11.200000pt;}
.x2{left:102.719987pt;}
.x17{left:106.371013pt;}
.xb{left:108.134040pt;}
.x1c{left:111.115800pt;}
.x1f{left:112.625587pt;}
.x5{left:113.919987pt;}
.x13{left:118.805907pt;}
.x22{left:120.902267pt;}
.xe{left:125.641867pt;}
.xf{left:134.670533pt;}
.x1a{left:140.449200pt;}
.x9{left:149.919867pt;}
.x18{left:219.610667pt;}
.x25{left:230.582000pt;}
.x1d{left:238.279867pt;}
.x15{left:251.027200pt;}
.x8{left:257.279867pt;}
.xc{left:263.792933pt;}
.x21{left:272.059867pt;}
.x10{left:298.556533pt;}
.x23{left:340.264267pt;}
.x20{left:350.050667pt;}
.x11{left:386.220000pt;}
.x7{left:398.720000pt;}
.x4{left:403.723867pt;}
.x3{left:471.451733pt;}
.x16{left:478.220000pt;}
.x19{left:479.499867pt;}
.x24{left:521.419733pt;}
.xa{left:582.220000pt;}
.x1e{left:602.220000pt;}
.xd{left:637.419733pt;}
.x14{left:643.499867pt;}
.x12{left:644.779867pt;}
.x1b{left:669.120133pt;}
}




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