
    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_589868c13aa37d846a601550.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_b1f00729d72ab4da0b887450.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_262847411ca8b6bfec4b27bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_130e29ac4002769895bfbe6a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_c73ca445593f8e98f67a7ec8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_162058957cd40f6a9ffaf2d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_fa9d7c3a6fbf9743019488d5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.711000;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_ecdc28ac4c8cc2d9e61e2230.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942000;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_0afc1cf83298481981cf3cff.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973000;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_a87247c72f7e320b19fa7c96.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.068000;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:ffb;src:url('chunks/assets/font_9696828ee48c741fa81ae053.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.948000;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:ffc;src:url('chunks/assets/font_68448dd0e6c32dba4ad90532.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_36b2a87bcadfcbc0efe191a7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.906000;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;}
.m6{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m4{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,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:-4.764000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.275995px;}
.ls4{letter-spacing:0.689988px;}
.ls2{letter-spacing:0.899988px;}
.ls3{letter-spacing:28.383362px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-15.662728px;}
.ws4{word-spacing:-14.972740px;}
.ws0{word-spacing:-13.986000px;}
.ws6{word-spacing:-13.053000px;}
.ws7{word-spacing:-12.939000px;}
.ws5{word-spacing:-9.407882px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:145.708051px;}
._0{margin-left:-3.726000px;}
._1{margin-left:-2.160000px;}
._2{margin-left:-1.080000px;}
._a{width:1.096200px;}
._5{width:2.203200px;}
._19{width:3.209571px;}
._4{width:4.214700px;}
._3{width:6.031200px;}
._11{width:7.446600px;}
._8{width:8.904600px;}
._9{width:10.130400px;}
._16{width:11.196879px;}
._15{width:12.313354px;}
._b{width:13.354200px;}
._7{width:14.401800px;}
._f{width:16.297200px;}
._c{width:17.501400px;}
._17{width:18.778169px;}
._1b{width:20.544247px;}
._1d{width:21.727722px;}
._d{width:23.068800px;}
._e{width:24.327000px;}
._6{width:25.968600px;}
._12{width:27.864000px;}
._1f{width:29.032410px;}
._10{width:36.882000px;}
._1a{width:37.954574px;}
._18{width:43.165649px;}
._20{width:45.685500px;}
._1e{width:47.298677px;}
._14{width:77.662081px;}
._13{width:88.505429px;}
._1c{width:159.658092px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,20,126);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.314600px;}
.fs11{font-size:31.995000px;}
.fs8{font-size:36.115800px;}
.fse{font-size:41.998800px;}
.fsa{font-size:44.999400px;}
.fs10{font-size:45.994200px;}
.fsb{font-size:47.999400px;}
.fs2{font-size:48.000000px;}
.fsf{font-size:50.999400px;}
.fs0{font-size:54.000000px;}
.fs12{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fsc{font-size:66.000600px;}
.fsd{font-size:68.998800px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:67.597501px;}
.y44{bottom:72.113250px;}
.y1{bottom:84.097501px;}
.y40{bottom:88.526869px;}
.y3f{bottom:102.047100px;}
.ycc{bottom:107.574750px;}
.y12e{bottom:107.575425px;}
.ycb{bottom:107.575819px;}
.y125{bottom:107.575846px;}
.y105{bottom:107.576602px;}
.y6d{bottom:107.578921px;}
.yb5{bottom:108.086306px;}
.y98{bottom:119.062409px;}
.yca{bottom:121.096050px;}
.y12d{bottom:125.603100px;}
.yc9{bottom:126.368400px;}
.y124{bottom:128.580806px;}
.y104{bottom:128.581561px;}
.y6c{bottom:128.583881px;}
.yb4{bottom:129.091265px;}
.yf1{bottom:134.532150px;}
.yf0{bottom:139.889700px;}
.y97{bottom:140.065644px;}
.y3e{bottom:146.183313px;}
.yef{bottom:147.968400px;}
.y123{bottom:149.585765px;}
.y103{bottom:149.586521px;}
.y6b{bottom:149.588841px;}
.yb3{bottom:151.285500px;}
.yee{bottom:153.325500px;}
.y12c{bottom:157.068000px;}
.y96{bottom:161.070604px;}
.yc8{bottom:162.088964px;}
.y3d{bottom:167.188272px;}
.y122{bottom:170.589000px;}
.y102{bottom:170.589756px;}
.y6a{bottom:170.593800px;}
.yb2{bottom:171.099806px;}
.y95{bottom:182.075563px;}
.yed{bottom:183.091265px;}
.yc7{bottom:183.092199px;}
.y3c{bottom:188.193232px;}
.y101{bottom:191.594715px;}
.y69{bottom:191.598760px;}
.yb1{bottom:192.104765px;}
.y121{bottom:202.053000px;}
.y94{bottom:203.080523px;}
.yec{bottom:204.094500px;}
.yea{bottom:204.096692px;}
.yc6{bottom:204.097159px;}
.y3b{bottom:209.198192px;}
.y12b{bottom:209.536500px;}
.yeb{bottom:211.747500px;}
.y100{bottom:212.599675px;}
.y68{bottom:212.601995px;}
.yb0{bottom:214.213500px;}
.y93{bottom:224.085483px;}
.ye9{bottom:225.101651px;}
.yc5{bottom:225.102118px;}
.y3a{bottom:230.203151px;}
.yff{bottom:233.604635px;}
.y67{bottom:233.606955px;}
.yaf{bottom:234.114806px;}
.y12a{bottom:241.086000px;}
.y92{bottom:245.088717px;}
.ye8{bottom:246.104886px;}
.yc4{bottom:246.107078px;}
.y39{bottom:251.206386px;}
.yfe{bottom:254.607869px;}
.y66{bottom:254.611914px;}
.yae{bottom:255.119765px;}
.y120{bottom:255.120528px;}
.y91{bottom:266.093677px;}
.ye7{bottom:267.109846px;}
.yc3{bottom:267.110313px;}
.y38{bottom:272.211346px;}
.yfd{bottom:275.612829px;}
.y65{bottom:275.616874px;}
.y11f{bottom:276.125488px;}
.yad{bottom:277.228500px;}
.y90{bottom:287.014113px;}
.ye6{bottom:288.114806px;}
.yc2{bottom:288.115272px;}
.y37{bottom:293.216306px;}
.yfc{bottom:296.617789px;}
.y64{bottom:296.620109px;}
.y129{bottom:296.872725px;}
.yac{bottom:297.128886px;}
.y11e{bottom:297.130447px;}
.y8f{bottom:308.017348px;}
.ye5{bottom:309.119765px;}
.yc1{bottom:309.120232px;}
.y36{bottom:314.221265px;}
.y128{bottom:314.816325px;}
.yfb{bottom:317.536500px;}
.y63{bottom:317.540545px;}
.y11d{bottom:318.133682px;}
.yab{bottom:318.133846px;}
.y8e{bottom:329.022308px;}
.ye4{bottom:330.123000px;}
.yc0{bottom:330.125192px;}
.ye2{bottom:330.125609px;}
.y127{bottom:332.844000px;}
.y35{bottom:335.224500px;}
.ye3{bottom:337.776000px;}
.y62{bottom:338.545505px;}
.y11c{bottom:339.138642px;}
.yaa{bottom:339.138806px;}
.yfa{bottom:349.086000px;}
.y8d{bottom:350.027267px;}
.ybf{bottom:351.130151px;}
.ye1{bottom:351.130568px;}
.y61{bottom:359.550464px;}
.y11b{bottom:360.143602px;}
.ya9{bottom:360.143765px;}
.y126{bottom:364.308000px;}
.y34{bottom:366.690000px;}
.y8c{bottom:371.032227px;}
.ybe{bottom:372.133386px;}
.ye0{bottom:372.135528px;}
.y60{bottom:380.553699px;}
.y11a{bottom:381.148561px;}
.ya8{bottom:382.252500px;}
.y8b{bottom:392.037187px;}
.ybd{bottom:393.138346px;}
.ydf{bottom:393.140488px;}
.y5f{bottom:401.558659px;}
.ya7{bottom:402.152765px;}
.y119{bottom:402.153521px;}
.yf9{bottom:402.156251px;}
.y8a{bottom:413.040421px;}
.ybc{bottom:414.143306px;}
.yde{bottom:414.145447px;}
.y5e{bottom:422.563618px;}
.y118{bottom:423.156756px;}
.yf8{bottom:423.161210px;}
.ya6{bottom:424.261500px;}
.y89{bottom:434.045381px;}
.y2d{bottom:434.126400px;}
.ybb{bottom:435.148265px;}
.ydd{bottom:435.148682px;}
.y5d{bottom:443.568578px;}
.y117{bottom:444.161715px;}
.ya5{bottom:444.162635px;}
.yf7{bottom:444.166170px;}
.y2c{bottom:449.093850px;}
.y88{bottom:455.050341px;}
.yba{bottom:456.151500px;}
.yb8{bottom:456.152765px;}
.ydc{bottom:456.153642px;}
.yb9{bottom:463.804500px;}
.y2b{bottom:464.061300px;}
.y5c{bottom:464.571813px;}
.ya4{bottom:465.081346px;}
.y116{bottom:465.082151px;}
.yf6{bottom:465.084881px;}
.y87{bottom:476.055300px;}
.yb7{bottom:477.156000px;}
.ydb{bottom:477.158602px;}
.y2a{bottom:479.112450px;}
.y5b{bottom:485.576772px;}
.ya3{bottom:486.086306px;}
.yf5{bottom:486.089841px;}
.y14a{bottom:486.513150px;}
.y29{bottom:494.079900px;}
.y86{bottom:497.060260px;}
.yda{bottom:498.163561px;}
.y149{bottom:504.540825px;}
.y5a{bottom:506.581732px;}
.y115{bottom:507.090346px;}
.ya2{bottom:507.091265px;}
.yf4{bottom:507.094800px;}
.yb6{bottom:508.620000px;}
.ye{bottom:508.972501px;}
.y28{bottom:509.046000px;}
.y85{bottom:518.063495px;}
.yd9{bottom:519.082272px;}
.y148{bottom:522.568500px;}
.y27{bottom:524.098500px;}
.y59{bottom:527.586692px;}
.y114{bottom:528.095306px;}
.yf3{bottom:528.099760px;}
.ya1{bottom:529.285500px;}
.y26{bottom:539.065950px;}
.y84{bottom:539.068455px;}
.yd8{bottom:540.087232px;}
.y147{bottom:540.512100px;}
.y58{bottom:548.591651px;}
.y113{bottom:549.100265px;}
.yf2{bottom:549.102995px;}
.y25{bottom:554.117100px;}
.y146{bottom:558.541200px;}
.y83{bottom:560.073414px;}
.yd7{bottom:561.092192px;}
.y24{bottom:569.084550px;}
.y57{bottom:569.594886px;}
.ya0{bottom:570.107955px;}
.y112{bottom:571.209000px;}
.yd{bottom:573.322501px;}
.y145{bottom:576.568875px;}
.y82{bottom:581.078374px;}
.yd6{bottom:582.097151px;}
.y23{bottom:584.052000px;}
.y56{bottom:590.599846px;}
.y111{bottom:591.109846px;}
.y9f{bottom:591.112914px;}
.y144{bottom:594.512475px;}
.y22{bottom:599.103150px;}
.y81{bottom:602.081609px;}
.yd5{bottom:603.100386px;}
.y55{bottom:611.604806px;}
.y110{bottom:612.114806px;}
.y9e{bottom:612.117874px;}
.y143{bottom:612.540150px;}
.y21{bottom:614.070600px;}
.y80{bottom:623.086568px;}
.yd4{bottom:624.105346px;}
.y20{bottom:629.121750px;}
.y142{bottom:630.483750px;}
.y54{bottom:632.609765px;}
.y10f{bottom:633.119765px;}
.y9d{bottom:633.121109px;}
.yc{bottom:637.672501px;}
.y1f{bottom:644.089200px;}
.y7f{bottom:644.091528px;}
.yd3{bottom:645.110306px;}
.y141{bottom:648.511425px;}
.y53{bottom:653.613000px;}
.y9c{bottom:654.126068px;}
.y10e{bottom:655.228500px;}
.y1e{bottom:659.056650px;}
.y7e{bottom:665.011964px;}
.yd2{bottom:666.115265px;}
.y140{bottom:666.540525px;}
.y1d{bottom:674.107800px;}
.y10d{bottom:675.127846px;}
.y9b{bottom:675.131028px;}
.y13f{bottom:684.484125px;}
.y52{bottom:685.077000px;}
.y7d{bottom:686.015199px;}
.yd1{bottom:687.118500px;}
.ycf{bottom:687.119765px;}
.y1c{bottom:689.075250px;}
.yd0{bottom:694.771500px;}
.y10c{bottom:696.132806px;}
.y9a{bottom:696.135988px;}
.y13e{bottom:702.511800px;}
.y1b{bottom:704.126400px;}
.yb{bottom:704.953500px;}
.y7c{bottom:707.020159px;}
.yce{bottom:708.123000px;}
.y33{bottom:713.055244px;}
.y10b{bottom:717.137765px;}
.y99{bottom:717.140947px;}
.y1a{bottom:719.093850px;}
.y13d{bottom:720.539475px;}
.y32{bottom:726.576675px;}
.y7b{bottom:728.025118px;}
.y19{bottom:734.061300px;}
.y51{bottom:738.144182px;}
.y13c{bottom:738.483075px;}
.y10a{bottom:739.246500px;}
.ycd{bottom:739.587000px;}
.y31{bottom:740.098106px;}
.y7a{bottom:749.030078px;}
.y18{bottom:749.112450px;}
.y30{bottom:753.619537px;}
.y13b{bottom:756.512175px;}
.y109{bottom:759.147346px;}
.y50{bottom:759.149142px;}
.y17{bottom:764.079900px;}
.y2f{bottom:767.055769px;}
.y79{bottom:770.033313px;}
.y13a{bottom:774.539850px;}
.y16{bottom:779.046000px;}
.y108{bottom:780.152306px;}
.y4f{bottom:780.154102px;}
.y2e{bottom:780.576000px;}
.ya{bottom:786.741002px;}
.y78{bottom:791.038272px;}
.y139{bottom:792.483450px;}
.y15{bottom:794.097000px;}
.y107{bottom:801.157265px;}
.y4e{bottom:801.159061px;}
.y138{bottom:810.511125px;}
.y77{bottom:812.043232px;}
.y9{bottom:817.130994px;}
.y4d{bottom:822.164021px;}
.y106{bottom:823.266000px;}
.y137{bottom:828.540225px;}
.y76{bottom:833.048192px;}
.y8{bottom:835.190995px;}
.y14{bottom:837.638850px;}
.y4c{bottom:843.082732px;}
.y136{bottom:846.482400px;}
.y13{bottom:852.690000px;}
.y7{bottom:853.716004px;}
.y75{bottom:854.053151px;}
.y12{bottom:857.197500px;}
.y4b{bottom:864.087692px;}
.y135{bottom:864.511500px;}
.y74{bottom:875.056386px;}
.y10{bottom:880.413000px;}
.y134{bottom:882.539175px;}
.y4a{bottom:885.092651px;}
.y11{bottom:885.940500px;}
.y73{bottom:896.061346px;}
.y133{bottom:900.482775px;}
.y49{bottom:906.095886px;}
.y6{bottom:906.615002px;}
.yf{bottom:908.901000px;}
.y72{bottom:917.066306px;}
.y132{bottom:918.510450px;}
.y48{bottom:927.100846px;}
.y131{bottom:936.539550px;}
.y71{bottom:938.071265px;}
.y47{bottom:948.105806px;}
.y130{bottom:954.483150px;}
.y70{bottom:959.074500px;}
.y46{bottom:969.110765px;}
.y5{bottom:970.279498px;}
.y12f{bottom:972.510825px;}
.y43{bottom:981.100109px;}
.y45{bottom:990.114000px;}
.y6f{bottom:990.538500px;}
.y42{bottom:994.535805px;}
.y41{bottom:1008.057000px;}
.y6e{bottom:1030.336500px;}
.y4{bottom:1035.546001px;}
.y3{bottom:1165.122003px;}
.hd{height:22.389939px;}
.h1c{height:22.876425px;}
.hc{height:26.039492px;}
.h16{height:30.029142px;}
.hf{height:31.499580px;}
.h15{height:32.174571px;}
.h17{height:32.444567px;}
.h1b{height:32.931847px;}
.h11{height:34.319571px;}
.h14{height:34.607567px;}
.h4{height:36.773438px;}
.he{height:38.610000px;}
.h10{height:38.934000px;}
.h1d{height:40.755000px;}
.h1e{height:40.812000px;}
.h2{height:41.317383px;}
.h19{height:44.639141px;}
.h1a{height:44.981141px;}
.h8{height:45.000000px;}
.hb{height:45.423000px;}
.h7{height:45.966797px;}
.h1f{height:46.227000px;}
.h12{height:47.586433px;}
.h13{height:49.403141px;}
.h6{height:55.160156px;}
.h18{height:55.958027px;}
.ha{height:59.640000px;}
.h3{height:68.950195px;}
.h5{height:82.740234px;}
.h9{height:1080.000000px;}
.h1{height:1249.500000px;}
.h0{height:1249.560000px;}
.w2{width:756.000000px;}
.w0{width:951.480000px;}
.w1{width:951.750000px;}
.x0{left:0.000000px;}
.x6{left:108.000000px;}
.xe{left:111.911700px;}
.x17{left:117.013440px;}
.x1f{left:122.966775px;}
.x14{left:124.667700px;}
.x11{left:126.028200px;}
.x15{left:139.464450px;}
.x4{left:145.650000px;}
.x3{left:191.880000px;}
.x5{left:197.700000px;}
.x1b{left:233.008500px;}
.x2{left:234.252008px;}
.x7{left:243.807000px;}
.x8{left:248.740500px;}
.x1{left:293.590494px;}
.x19{left:305.461500px;}
.x1a{left:320.598000px;}
.x9{left:350.703000px;}
.xa{left:356.485500px;}
.x13{left:365.839500px;}
.xb{left:426.303000px;}
.xc{left:432.085500px;}
.x1c{left:447.391500px;}
.x1d{left:460.573500px;}
.x18{left:494.079000px;}
.x1e{left:496.204500px;}
.x12{left:513.042000px;}
.x16{left:523.758000px;}
.xd{left:569.424000px;}
.xf{left:577.503000px;}
.x10{left:582.094500px;}
@media print{
.v1{vertical-align:-4.234667pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.245329pt;}
.ls4{letter-spacing:0.613323pt;}
.ls2{letter-spacing:0.799989pt;}
.ls3{letter-spacing:25.229655pt;}
.ws3{word-spacing:-13.922425pt;}
.ws4{word-spacing:-13.309102pt;}
.ws0{word-spacing:-12.432000pt;}
.ws6{word-spacing:-11.602667pt;}
.ws7{word-spacing:-11.501333pt;}
.ws5{word-spacing:-8.362562pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:129.518267pt;}
._0{margin-left:-3.312000pt;}
._1{margin-left:-1.920000pt;}
._2{margin-left:-0.960000pt;}
._a{width:0.974400pt;}
._5{width:1.958400pt;}
._19{width:2.852952pt;}
._4{width:3.746400pt;}
._3{width:5.361067pt;}
._11{width:6.619200pt;}
._8{width:7.915200pt;}
._9{width:9.004800pt;}
._16{width:9.952781pt;}
._15{width:10.945203pt;}
._b{width:11.870400pt;}
._7{width:12.801600pt;}
._f{width:14.486400pt;}
._c{width:15.556800pt;}
._17{width:16.691706pt;}
._1b{width:18.261553pt;}
._1d{width:19.313531pt;}
._d{width:20.505600pt;}
._e{width:21.624000pt;}
._6{width:23.083200pt;}
._12{width:24.768000pt;}
._1f{width:25.806587pt;}
._10{width:32.784000pt;}
._1a{width:33.737399pt;}
._18{width:38.369466pt;}
._20{width:40.609333pt;}
._1e{width:42.043269pt;}
._14{width:69.032961pt;}
._13{width:78.671492pt;}
._1c{width:141.918304pt;}
.fs9{font-size:27.835200pt;}
.fs11{font-size:28.440000pt;}
.fs8{font-size:32.102933pt;}
.fse{font-size:37.332267pt;}
.fsa{font-size:39.999467pt;}
.fs10{font-size:40.883733pt;}
.fsb{font-size:42.666133pt;}
.fs2{font-size:42.666667pt;}
.fsf{font-size:45.332800pt;}
.fs0{font-size:48.000000pt;}
.fs12{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fsc{font-size:58.667200pt;}
.fsd{font-size:61.332267pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.086668pt;}
.y44{bottom:64.100667pt;}
.y1{bottom:74.753335pt;}
.y40{bottom:78.690550pt;}
.y3f{bottom:90.708533pt;}
.ycc{bottom:95.622000pt;}
.y12e{bottom:95.622600pt;}
.ycb{bottom:95.622950pt;}
.y125{bottom:95.622974pt;}
.y105{bottom:95.623646pt;}
.y6d{bottom:95.625708pt;}
.yb5{bottom:96.076716pt;}
.y98{bottom:105.833253pt;}
.yca{bottom:107.640933pt;}
.y12d{bottom:111.647200pt;}
.yc9{bottom:112.327467pt;}
.y124{bottom:114.294049pt;}
.y104{bottom:114.294721pt;}
.y6c{bottom:114.296783pt;}
.yb4{bottom:114.747791pt;}
.yf1{bottom:119.584133pt;}
.yf0{bottom:124.346400pt;}
.y97{bottom:124.502795pt;}
.y3e{bottom:129.940722pt;}
.yef{bottom:131.527467pt;}
.y123{bottom:132.965125pt;}
.y103{bottom:132.965796pt;}
.y6b{bottom:132.967858pt;}
.yb3{bottom:134.476000pt;}
.yee{bottom:136.289333pt;}
.y12c{bottom:139.616000pt;}
.y96{bottom:143.173870pt;}
.yc8{bottom:144.079079pt;}
.y3d{bottom:148.611798pt;}
.y122{bottom:151.634667pt;}
.y102{bottom:151.635338pt;}
.y6a{bottom:151.638934pt;}
.yb2{bottom:152.088716pt;}
.y95{bottom:161.844945pt;}
.yed{bottom:162.747791pt;}
.yc7{bottom:162.748621pt;}
.y3c{bottom:167.282873pt;}
.y101{bottom:170.306414pt;}
.y69{bottom:170.310009pt;}
.yb1{bottom:170.759791pt;}
.y121{bottom:179.602667pt;}
.y94{bottom:180.516020pt;}
.yec{bottom:181.417333pt;}
.yea{bottom:181.419282pt;}
.yc6{bottom:181.419697pt;}
.y3b{bottom:185.953948pt;}
.y12b{bottom:186.254667pt;}
.yeb{bottom:188.220000pt;}
.y100{bottom:188.977489pt;}
.y68{bottom:188.979551pt;}
.yb0{bottom:190.412000pt;}
.y93{bottom:199.187096pt;}
.ye9{bottom:200.090357pt;}
.yc5{bottom:200.090772pt;}
.y3a{bottom:204.625024pt;}
.yff{bottom:207.648564pt;}
.y67{bottom:207.650626pt;}
.yaf{bottom:208.102049pt;}
.y12a{bottom:214.298667pt;}
.y92{bottom:217.856638pt;}
.ye8{bottom:218.759899pt;}
.yc4{bottom:218.761847pt;}
.y39{bottom:223.294566pt;}
.yfe{bottom:226.318106pt;}
.y66{bottom:226.321702pt;}
.yae{bottom:226.773125pt;}
.y120{bottom:226.773803pt;}
.y91{bottom:236.527713pt;}
.ye7{bottom:237.430974pt;}
.yc3{bottom:237.431389pt;}
.y38{bottom:241.965641pt;}
.yfd{bottom:244.989181pt;}
.y65{bottom:244.992777pt;}
.y11f{bottom:245.444878pt;}
.yad{bottom:246.425333pt;}
.y90{bottom:255.123656pt;}
.ye6{bottom:256.102049pt;}
.yc2{bottom:256.102464pt;}
.y37{bottom:260.636716pt;}
.yfc{bottom:263.660257pt;}
.y64{bottom:263.662319pt;}
.y129{bottom:263.886867pt;}
.yac{bottom:264.114566pt;}
.y11e{bottom:264.115953pt;}
.y8f{bottom:273.793198pt;}
.ye5{bottom:274.773125pt;}
.yc1{bottom:274.773540pt;}
.y36{bottom:279.307791pt;}
.y128{bottom:279.836733pt;}
.yfb{bottom:282.254667pt;}
.y63{bottom:282.258262pt;}
.y11d{bottom:282.785495pt;}
.yab{bottom:282.785641pt;}
.y8e{bottom:292.464273pt;}
.ye4{bottom:293.442667pt;}
.yc0{bottom:293.444615pt;}
.ye2{bottom:293.444985pt;}
.y127{bottom:295.861333pt;}
.y35{bottom:297.977333pt;}
.ye3{bottom:300.245333pt;}
.y62{bottom:300.929337pt;}
.y11c{bottom:301.456571pt;}
.yaa{bottom:301.456716pt;}
.yfa{bottom:310.298667pt;}
.y8d{bottom:311.135349pt;}
.ybf{bottom:312.115690pt;}
.ye1{bottom:312.116061pt;}
.y61{bottom:319.600413pt;}
.y11b{bottom:320.127646pt;}
.ya9{bottom:320.127791pt;}
.y126{bottom:323.829333pt;}
.y34{bottom:325.946667pt;}
.y8c{bottom:329.806424pt;}
.ybe{bottom:330.785232pt;}
.ye0{bottom:330.787136pt;}
.y60{bottom:338.269955pt;}
.y11a{bottom:338.798721pt;}
.ya8{bottom:339.780000pt;}
.y8b{bottom:348.477499pt;}
.ybd{bottom:349.456307pt;}
.ydf{bottom:349.458211pt;}
.y5f{bottom:356.941030pt;}
.ya7{bottom:357.469125pt;}
.y119{bottom:357.469796pt;}
.yf9{bottom:357.472223pt;}
.y8a{bottom:367.147041pt;}
.ybc{bottom:368.127383pt;}
.yde{bottom:368.129287pt;}
.y5e{bottom:375.612105pt;}
.y118{bottom:376.139338pt;}
.yf8{bottom:376.143298pt;}
.ya6{bottom:377.121333pt;}
.y89{bottom:385.818117pt;}
.y2d{bottom:385.890133pt;}
.ybb{bottom:386.798458pt;}
.ydd{bottom:386.798829pt;}
.y5d{bottom:394.283180pt;}
.y117{bottom:394.810414pt;}
.ya5{bottom:394.811231pt;}
.yf7{bottom:394.814373pt;}
.y2c{bottom:399.194533pt;}
.y88{bottom:404.489192pt;}
.yba{bottom:405.468000pt;}
.yb8{bottom:405.469125pt;}
.ydc{bottom:405.469904pt;}
.yb9{bottom:412.270667pt;}
.y2b{bottom:412.498933pt;}
.y5c{bottom:412.952722pt;}
.ya4{bottom:413.405641pt;}
.y116{bottom:413.406357pt;}
.yf6{bottom:413.408783pt;}
.y87{bottom:423.160267pt;}
.yb7{bottom:424.138667pt;}
.ydb{bottom:424.140979pt;}
.y2a{bottom:425.877733pt;}
.y5b{bottom:431.623798pt;}
.ya3{bottom:432.076716pt;}
.yf5{bottom:432.079858pt;}
.y14a{bottom:432.456133pt;}
.y29{bottom:439.182133pt;}
.y86{bottom:441.831342pt;}
.yda{bottom:442.812054pt;}
.y149{bottom:448.480733pt;}
.y5a{bottom:450.294873pt;}
.y115{bottom:450.746974pt;}
.ya2{bottom:450.747791pt;}
.yf4{bottom:450.750934pt;}
.yb6{bottom:452.106667pt;}
.ye{bottom:452.420001pt;}
.y28{bottom:452.485333pt;}
.y85{bottom:460.500884pt;}
.yd9{bottom:461.406464pt;}
.y148{bottom:464.505333pt;}
.y27{bottom:465.865333pt;}
.y59{bottom:468.965948pt;}
.y114{bottom:469.418049pt;}
.yf3{bottom:469.422009pt;}
.ya1{bottom:470.476000pt;}
.y26{bottom:479.169733pt;}
.y84{bottom:479.171960pt;}
.yd8{bottom:480.077540pt;}
.y147{bottom:480.455200pt;}
.y58{bottom:487.637024pt;}
.y113{bottom:488.089125pt;}
.yf2{bottom:488.091551pt;}
.y25{bottom:492.548533pt;}
.y146{bottom:496.481067pt;}
.y83{bottom:497.843035pt;}
.yd7{bottom:498.748615pt;}
.y24{bottom:505.852933pt;}
.y57{bottom:506.306566pt;}
.ya0{bottom:506.762626pt;}
.y112{bottom:507.741333pt;}
.yd{bottom:509.620001pt;}
.y145{bottom:512.505667pt;}
.y82{bottom:516.514110pt;}
.yd6{bottom:517.419690pt;}
.y23{bottom:519.157333pt;}
.y56{bottom:524.977641pt;}
.y111{bottom:525.430974pt;}
.y9f{bottom:525.433702pt;}
.y144{bottom:528.455533pt;}
.y22{bottom:532.536133pt;}
.y81{bottom:535.183652pt;}
.yd5{bottom:536.089232pt;}
.y55{bottom:543.648716pt;}
.y110{bottom:544.102049pt;}
.y9e{bottom:544.104777pt;}
.y143{bottom:544.480133pt;}
.y21{bottom:545.840533pt;}
.y80{bottom:553.854727pt;}
.yd4{bottom:554.760307pt;}
.y20{bottom:559.219333pt;}
.y142{bottom:560.430000pt;}
.y54{bottom:562.319791pt;}
.y10f{bottom:562.773125pt;}
.y9d{bottom:562.774319pt;}
.yc{bottom:566.820001pt;}
.y1f{bottom:572.523733pt;}
.y7f{bottom:572.525803pt;}
.yd3{bottom:573.431383pt;}
.y141{bottom:576.454600pt;}
.y53{bottom:580.989333pt;}
.y9c{bottom:581.445394pt;}
.y10e{bottom:582.425333pt;}
.y1e{bottom:585.828133pt;}
.y7e{bottom:591.121746pt;}
.yd2{bottom:592.102458pt;}
.y140{bottom:592.480467pt;}
.y1d{bottom:599.206933pt;}
.y10d{bottom:600.113641pt;}
.y9b{bottom:600.116469pt;}
.y13f{bottom:608.430333pt;}
.y52{bottom:608.957333pt;}
.y7d{bottom:609.791288pt;}
.yd1{bottom:610.772000pt;}
.ycf{bottom:610.773125pt;}
.y1c{bottom:612.511333pt;}
.yd0{bottom:617.574667pt;}
.y10c{bottom:618.784716pt;}
.y9a{bottom:618.787545pt;}
.y13e{bottom:624.454933pt;}
.y1b{bottom:625.890133pt;}
.yb{bottom:626.625333pt;}
.y7c{bottom:628.462363pt;}
.yce{bottom:629.442667pt;}
.y33{bottom:633.826884pt;}
.y10b{bottom:637.455791pt;}
.y99{bottom:637.458620pt;}
.y1a{bottom:639.194533pt;}
.y13d{bottom:640.479533pt;}
.y32{bottom:645.845933pt;}
.y7b{bottom:647.133439pt;}
.y19{bottom:652.498933pt;}
.y51{bottom:656.128162pt;}
.y13c{bottom:656.429400pt;}
.y10a{bottom:657.108000pt;}
.ycd{bottom:657.410667pt;}
.y31{bottom:657.864983pt;}
.y7a{bottom:665.804514pt;}
.y18{bottom:665.877733pt;}
.y30{bottom:669.884033pt;}
.y13b{bottom:672.455267pt;}
.y109{bottom:674.797641pt;}
.y50{bottom:674.799237pt;}
.y17{bottom:679.182133pt;}
.y2f{bottom:681.827350pt;}
.y79{bottom:684.474056pt;}
.y13a{bottom:688.479867pt;}
.y16{bottom:692.485333pt;}
.y108{bottom:693.468716pt;}
.y4f{bottom:693.470312pt;}
.y2e{bottom:693.845333pt;}
.ya{bottom:699.325335pt;}
.y78{bottom:703.145131pt;}
.y139{bottom:704.429733pt;}
.y15{bottom:705.864000pt;}
.y107{bottom:712.139791pt;}
.y4e{bottom:712.141388pt;}
.y138{bottom:720.454333pt;}
.y77{bottom:721.816206pt;}
.y9{bottom:726.338661pt;}
.y4d{bottom:730.812463pt;}
.y106{bottom:731.792000pt;}
.y137{bottom:736.480200pt;}
.y76{bottom:740.487282pt;}
.y8{bottom:742.391996pt;}
.y14{bottom:744.567867pt;}
.y4c{bottom:749.406873pt;}
.y136{bottom:752.428800pt;}
.y13{bottom:757.946667pt;}
.y7{bottom:758.858670pt;}
.y75{bottom:759.158357pt;}
.y12{bottom:761.953333pt;}
.y4b{bottom:768.077948pt;}
.y135{bottom:768.454667pt;}
.y74{bottom:777.827899pt;}
.y10{bottom:782.589333pt;}
.y134{bottom:784.479267pt;}
.y4a{bottom:786.749024pt;}
.y11{bottom:787.502667pt;}
.y73{bottom:796.498974pt;}
.y133{bottom:800.429133pt;}
.y49{bottom:805.418566pt;}
.y6{bottom:805.880002pt;}
.yf{bottom:807.912000pt;}
.y72{bottom:815.170049pt;}
.y132{bottom:816.453733pt;}
.y48{bottom:824.089641pt;}
.y131{bottom:832.479600pt;}
.y71{bottom:833.841125pt;}
.y47{bottom:842.760716pt;}
.y130{bottom:848.429467pt;}
.y70{bottom:852.510667pt;}
.y46{bottom:861.431791pt;}
.y5{bottom:862.470665pt;}
.y12f{bottom:864.454067pt;}
.y43{bottom:872.088986pt;}
.y45{bottom:880.101333pt;}
.y6f{bottom:880.478667pt;}
.y42{bottom:884.031827pt;}
.y41{bottom:896.050667pt;}
.y6e{bottom:915.854667pt;}
.y4{bottom:920.485335pt;}
.y3{bottom:1035.664002pt;}
.hd{height:19.902168pt;}
.h1c{height:20.334600pt;}
.hc{height:23.146215pt;}
.h16{height:26.692571pt;}
.hf{height:27.999627pt;}
.h15{height:28.599619pt;}
.h17{height:28.839615pt;}
.h1b{height:29.272753pt;}
.h11{height:30.506285pt;}
.h14{height:30.762282pt;}
.h4{height:32.687500pt;}
.he{height:34.320000pt;}
.h10{height:34.608000pt;}
.h1d{height:36.226667pt;}
.h1e{height:36.277333pt;}
.h2{height:36.726562pt;}
.h19{height:39.679236pt;}
.h1a{height:39.983236pt;}
.h8{height:40.000000pt;}
.hb{height:40.376000pt;}
.h7{height:40.859375pt;}
.h1f{height:41.090667pt;}
.h12{height:42.299051pt;}
.h13{height:43.913903pt;}
.h6{height:49.031250pt;}
.h18{height:49.740468pt;}
.ha{height:53.013333pt;}
.h3{height:61.289062pt;}
.h5{height:73.546875pt;}
.h9{height:960.000000pt;}
.h1{height:1110.666667pt;}
.h0{height:1110.720000pt;}
.w2{width:672.000000pt;}
.w0{width:845.760000pt;}
.w1{width:846.000000pt;}
.x0{left:0.000000pt;}
.x6{left:96.000000pt;}
.xe{left:99.477067pt;}
.x17{left:104.011947pt;}
.x1f{left:109.303800pt;}
.x14{left:110.815733pt;}
.x11{left:112.025067pt;}
.x15{left:123.968400pt;}
.x4{left:129.466667pt;}
.x3{left:170.560000pt;}
.x5{left:175.733333pt;}
.x1b{left:207.118667pt;}
.x2{left:208.224007pt;}
.x7{left:216.717333pt;}
.x8{left:221.102667pt;}
.x1{left:260.969328pt;}
.x19{left:271.521333pt;}
.x1a{left:284.976000pt;}
.x9{left:311.736000pt;}
.xa{left:316.876000pt;}
.x13{left:325.190667pt;}
.xb{left:378.936000pt;}
.xc{left:384.076000pt;}
.x1c{left:397.681333pt;}
.x1d{left:409.398667pt;}
.x18{left:439.181333pt;}
.x1e{left:441.070667pt;}
.x12{left:456.037333pt;}
.x16{left:465.562667pt;}
.xd{left:506.154667pt;}
.xf{left:513.336000pt;}
.x10{left:517.417333pt;}
}




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