
    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_f92a5c3e795a1925721e44e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f76b89cc81a1f7a6239c0147.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.690918;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_ded79458d94dfb18fe7e3cbe.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_3d2da3869da5212c9f2394c4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_16ca6283950a908c34ece8da.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_598175d3dbe1c20a6db6e961.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m2{transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v5{vertical-align:-12.418528px;}
.v1{vertical-align:-11.139936px;}
.v2{vertical-align:-10.108331px;}
.v3{vertical-align:-8.045510px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:8.045510px;}
.v8{vertical-align:12.960000px;}
.v6{vertical-align:14.101281px;}
.v9{vertical-align:33.120000px;}
.v7{vertical-align:37.791432px;}
.va{vertical-align:66.240000px;}
.ls4c{letter-spacing:-0.720000px;}
.ls42{letter-spacing:-0.702000px;}
.ls41{letter-spacing:-0.654000px;}
.ls3c{letter-spacing:-0.538800px;}
.ls3e{letter-spacing:-0.504000px;}
.ls3b{letter-spacing:-0.360000px;}
.ls49{letter-spacing:-0.280200px;}
.ls3f{letter-spacing:-0.216000px;}
.ls40{letter-spacing:-0.181800px;}
.ls4e{letter-spacing:-0.178800px;}
.ls39{letter-spacing:-0.169215px;}
.ls4a{letter-spacing:-0.126000px;}
.ls47{letter-spacing:-0.108000px;}
.ls37{letter-spacing:-0.071516px;}
.ls29{letter-spacing:-0.068077px;}
.ls27{letter-spacing:-0.053637px;}
.ls36{letter-spacing:-0.050886px;}
.ls32{letter-spacing:-0.047448px;}
.ls2b{letter-spacing:-0.043665px;}
.ls30{letter-spacing:-0.042462px;}
.ls31{letter-spacing:-0.040228px;}
.ls26{letter-spacing:-0.032147px;}
.ls35{letter-spacing:-0.030257px;}
.ls34{letter-spacing:-0.028021px;}
.ls2a{letter-spacing:-0.020630px;}
.ls48{letter-spacing:-0.018000px;}
.ls2c{letter-spacing:-0.012378px;}
.ls25{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.001154px;}
.ls1{letter-spacing:0.001375px;}
.ls5{letter-spacing:0.014441px;}
.ls15{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.020630px;}
.ls2d{letter-spacing:0.032147px;}
.ls2e{letter-spacing:0.033007px;}
.ls43{letter-spacing:0.045360px;}
.ls44{letter-spacing:0.067800px;}
.ls28{letter-spacing:0.083550px;}
.ls3d{letter-spacing:0.108000px;}
.ls33{letter-spacing:0.123777px;}
.ls4b{letter-spacing:0.126000px;}
.ls18{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.180000px;}
.ls3a{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.229200px;}
.ls38{letter-spacing:0.282026px;}
.ls1d{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.360000px;}
.ls45{letter-spacing:0.504000px;}
.ls23{letter-spacing:0.590400px;}
.ls20{letter-spacing:0.720000px;}
.ls4d{letter-spacing:0.900000px;}
.ls46{letter-spacing:0.936000px;}
.ls17{letter-spacing:2.304000px;}
.ls24{letter-spacing:2.520000px;}
.ls1a{letter-spacing:3.060000px;}
.ls9{letter-spacing:8.265558px;}
.lsa{letter-spacing:8.282749px;}
.ls8{letter-spacing:8.317132px;}
.ls12{letter-spacing:8.820000px;}
.ls4{letter-spacing:11.053980px;}
.ls7{letter-spacing:11.129622px;}
.ls2{letter-spacing:11.277467px;}
.ls0{letter-spacing:11.294658px;}
.ls3{letter-spacing:11.329040px;}
.ls1b{letter-spacing:11.448000px;}
.ls11{letter-spacing:11.700000px;}
.ls13{letter-spacing:12.420000px;}
.lsb{letter-spacing:12.747558px;}
.lsd{letter-spacing:12.803963px;}
.lse{letter-spacing:12.869769px;}
.lsc{letter-spacing:12.879170px;}
.ls14{letter-spacing:13.140000px;}
.ls22{letter-spacing:16.020000px;}
.ls21{letter-spacing:16.740000px;}
.ls1e{letter-spacing:32.400000px;}
.ls1f{letter-spacing:34.020000px;}
.ls16{letter-spacing:62.409600px;}
.lsf{letter-spacing:62.460000px;}
.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;}
}
.ws3b{word-spacing:-41.904000px;}
.ws0{word-spacing:-27.216000px;}
.ws7{word-spacing:-16.560000px;}
.ws34{word-spacing:-14.436000px;}
.ws33{word-spacing:-14.004000px;}
.wsa{word-spacing:-13.860000px;}
.ws39{word-spacing:-13.626000px;}
.wsb{word-spacing:-13.608000px;}
.ws31{word-spacing:-13.536000px;}
.ws8{word-spacing:-13.518000px;}
.wse{word-spacing:-13.500000px;}
.ws36{word-spacing:-13.482000px;}
.ws35{word-spacing:-13.392000px;}
.ws38{word-spacing:-13.374000px;}
.ws10{word-spacing:-13.354200px;}
.wsf{word-spacing:-13.284000px;}
.ws37{word-spacing:-13.255800px;}
.wsd{word-spacing:-13.140000px;}
.wsc{word-spacing:-12.996000px;}
.ws11{word-spacing:-12.882000px;}
.ws12{word-spacing:-12.798000px;}
.ws14{word-spacing:-12.096000px;}
.ws6{word-spacing:-12.060000px;}
.ws4{word-spacing:-11.700000px;}
.ws3e{word-spacing:-11.340000px;}
.ws40{word-spacing:-11.160000px;}
.ws3a{word-spacing:-11.066400px;}
.ws3d{word-spacing:-10.440000px;}
.ws3f{word-spacing:-10.261200px;}
.ws3c{word-spacing:-9.720000px;}
.ws9{word-spacing:-9.000000px;}
.ws2{word-spacing:-7.920000px;}
.ws3{word-spacing:-3.604320px;}
.ws15{word-spacing:-2.324736px;}
.ws26{word-spacing:-2.047104px;}
.ws5{word-spacing:-1.710720px;}
.ws27{word-spacing:-1.584000px;}
.ws25{word-spacing:-1.578048px;}
.ws16{word-spacing:-1.466352px;}
.ws13{word-spacing:-1.152000px;}
.ws41{word-spacing:-1.080000px;}
.ws1{word-spacing:-0.568800px;}
.ws24{word-spacing:-0.297216px;}
.ws42{word-spacing:0.000000px;}
.ws30{word-spacing:2.736000px;}
.ws32{word-spacing:4.002048px;}
.ws2f{word-spacing:4.011456px;}
.ws2e{word-spacing:4.616568px;}
.ws2d{word-spacing:4.822272px;}
.ws1e{word-spacing:4.822560px;}
.ws22{word-spacing:4.860000px;}
.ws23{word-spacing:4.900080px;}
.ws21{word-spacing:4.991040px;}
.ws20{word-spacing:5.716080px;}
.ws1f{word-spacing:6.079680px;}
.ws2a{word-spacing:17.478000px;}
.ws29{word-spacing:18.720000px;}
.ws2b{word-spacing:18.984000px;}
.ws2c{word-spacing:19.512000px;}
.ws28{word-spacing:19.638000px;}
.ws17{word-spacing:87.105840px;}
.ws18{word-spacing:129.196080px;}
.ws1a{word-spacing:146.476080px;}
.ws1b{word-spacing:184.128240px;}
.ws1c{word-spacing:190.516080px;}
.ws19{word-spacing:251.346000px;}
.ws1d{word-spacing:288.616080px;}
._f{margin-left:-6.924000px;}
._0{margin-left:-4.621843px;}
._3{margin-left:-1.264658px;}
._d{width:1.008000px;}
._10{width:2.128658px;}
._11{width:3.143369px;}
._21{width:4.716000px;}
._22{width:6.408000px;}
._12{width:8.181727px;}
._8{width:9.962273px;}
._6{width:10.979257px;}
._4{width:12.418152px;}
._7{width:14.006332px;}
._15{width:15.799336px;}
._20{width:17.122664px;}
._1c{width:18.350640px;}
._1e{width:20.592000px;}
._18{width:21.798000px;}
._13{width:24.196658px;}
._14{width:25.848000px;}
._17{width:27.093316px;}
._16{width:28.116000px;}
._1d{width:33.948000px;}
._1f{width:35.608658px;}
._1{width:47.326026px;}
._a{width:48.910629px;}
._e{width:56.572658px;}
._9{width:59.327284px;}
._c{width:81.120000px;}
._1a{width:105.585600px;}
._2{width:149.935293px;}
._1b{width:153.423076px;}
._19{width:264.946658px;}
._5{width:958.136513px;}
._b{width:1236.672979px;}
.fc3{color:transparent;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(14,22,28);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:21.908542px;}
.fsa{font-size:27.643178px;}
.fsf{font-size:29.417684px;}
.fs6{font-size:29.706497px;}
.fs4{font-size:30.325383px;}
.fse{font-size:30.820080px;}
.fs1a{font-size:31.022817px;}
.fs20{font-size:31.680000px;}
.fs26{font-size:31.824000px;}
.fs12{font-size:33.048038px;}
.fs11{font-size:33.048478px;}
.fs15{font-size:34.407125px;}
.fs23{font-size:36.000000px;}
.fs1c{font-size:36.099278px;}
.fs1d{font-size:36.212088px;}
.fs19{font-size:41.175739px;}
.fs1b{font-size:41.288549px;}
.fs2{font-size:41.671059px;}
.fs0{font-size:41.671614px;}
.fs9{font-size:41.712317px;}
.fs1{font-size:41.712873px;}
.fs28{font-size:41.760000px;}
.fs27{font-size:41.904000px;}
.fs10{font-size:42.084204px;}
.fs7{font-size:43.569529px;}
.fs5{font-size:44.353451px;}
.fs3{font-size:45.384926px;}
.fs8{font-size:45.426185px;}
.fsb{font-size:46.416402px;}
.fsd{font-size:46.457042px;}
.fsc{font-size:46.457661px;}
.fs17{font-size:46.816251px;}
.fs18{font-size:46.929062px;}
.fs1f{font-size:48.240000px;}
.fs25{font-size:48.384000px;}
.fs14{font-size:51.892712px;}
.fs16{font-size:52.005523px;}
.fs22{font-size:54.000000px;}
.fs24{font-size:54.144000px;}
.fs21{font-size:66.240000px;}
.fs1e{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:1.749211px;}
.y42{bottom:3.213591px;}
.ya6{bottom:8.064000px;}
.y66{bottom:8.645472px;}
.y61{bottom:12.452831px;}
.y2c{bottom:15.230239px;}
.y35{bottom:15.333386px;}
.y3e{bottom:16.416436px;}
.y3f{bottom:18.737256px;}
.y53{bottom:20.095747px;}
.ya5{bottom:20.664000px;}
.y65{bottom:21.082804px;}
.y58{bottom:23.480073px;}
.y64{bottom:24.044141px;}
.y60{bottom:24.890163px;}
.ya4{bottom:33.300000px;}
.y63{bottom:34.902126px;}
.y52{bottom:35.607156px;}
.y5f{bottom:37.299288px;}
.y4b{bottom:44.297579px;}
.y62{bottom:46.606188px;}
.y34{bottom:50.146547px;}
.y25{bottom:51.384318px;}
.y2f{bottom:51.539039px;}
.y45{bottom:53.993450px;}
.y38{bottom:59.068811px;}
.ya3{bottom:62.100000px;}
.y46{bottom:63.027457px;}
.y4c{bottom:63.079030px;}
.y2b{bottom:63.091566px;}
.y26{bottom:64.380910px;}
.y54{bottom:67.476085px;}
.y30{bottom:67.578485px;}
.y39{bottom:68.094223px;}
.y47{bottom:72.156016px;}
.y3a{bottom:77.179803px;}
.y27{bottom:77.386099px;}
.ya2{bottom:78.300000px;}
.y48{bottom:81.181427px;}
.y5e{bottom:83.015642px;}
.y31{bottom:83.678100px;}
.y3b{bottom:86.205215px;}
.y49{bottom:90.206839px;}
.y28{bottom:90.331117px;}
.ya1{bottom:94.500000px;}
.y3c{bottom:95.230626px;}
.y5d{bottom:95.424766px;}
.y4a{bottom:99.232250px;}
.y32{bottom:99.717545px;}
.y29{bottom:103.327710px;}
.y3d{bottom:104.256038px;}
.y4d{bottom:109.392285px;}
.ya0{bottom:110.700000px;}
.y41{bottom:112.868859px;}
.y33{bottom:115.756991px;}
.y2a{bottom:116.324302px;}
.y89{bottom:116.355000px;}
.y51{bottom:118.412246px;}
.y2e{bottom:123.028894px;}
.y37{bottom:124.627681px;}
.y40{bottom:125.556009px;}
.y9f{bottom:126.900000px;}
.y57{bottom:130.139825px;}
.y2d{bottom:136.077060px;}
.y36{bottom:137.675847px;}
.y5c{bottom:139.869643px;}
.y56{bottom:144.100091px;}
.y9e{bottom:148.032000px;}
.y59{bottom:148.471473px;}
.y5b{bottom:148.753461px;}
.y22{bottom:150.105128px;}
.y1a{bottom:153.663719px;}
.y55{bottom:158.060362px;}
.y13{bottom:186.219667px;}
.y1c{bottom:186.322815px;}
.y21{bottom:189.107799px;}
.y9d{bottom:189.825000px;}
.ya7{bottom:191.730000px;}
.y5a{bottom:192.925749px;}
.y19{bottom:197.565899px;}
.y14{bottom:199.061538px;}
.y1d{bottom:202.207539px;}
.y9c{bottom:206.025000px;}
.y50{bottom:207.732124px;}
.y1{bottom:208.472549px;}
.y15{bottom:211.851836px;}
.y1e{bottom:218.040689px;}
.y9b{bottom:222.225000px;}
.y16{bottom:224.642133px;}
.y1f{bottom:233.925414px;}
.y17{bottom:237.432431px;}
.y9a{bottom:238.425000px;}
.y20{bottom:249.758564px;}
.y18{bottom:250.222728px;}
.y99{bottom:254.625000px;}
.y24{bottom:256.987489px;}
.y1b{bottom:263.331064px;}
.y23{bottom:270.035655px;}
.y98{bottom:270.825000px;}
.y97{bottom:287.025000px;}
.y9{bottom:295.925692px;}
.y96{bottom:303.225000px;}
.y95{bottom:319.425000px;}
.y2{bottom:332.078912px;}
.y94{bottom:335.625000px;}
.y8{bottom:342.084225px;}
.y11{bottom:342.806258px;}
.y3{bottom:342.909406px;}
.yc{bottom:343.218849px;}
.y93{bottom:351.825000px;}
.y4{bottom:353.748495px;}
.yd{bottom:354.315807px;}
.y5{bottom:364.578989px;}
.ye{bottom:365.404169px;}
.y92{bottom:368.025000px;}
.y6{bottom:375.409483px;}
.yf{bottom:376.544106px;}
.y88{bottom:378.360000px;}
.y91{bottom:384.225000px;}
.y7{bottom:386.239976px;}
.y10{bottom:387.632469px;}
.yb{bottom:399.288143px;}
.y90{bottom:400.425000px;}
.y12{bottom:400.577487px;}
.ya{bottom:412.336309px;}
.y43{bottom:414.502408px;}
.y8f{bottom:416.625000px;}
.y8e{bottom:432.870000px;}
.y8d{bottom:449.070000px;}
.y8a{bottom:478.155000px;}
.y44{bottom:490.890209px;}
.y87{bottom:510.150000px;}
.y86{bottom:510.330000px;}
.y85{bottom:526.890000px;}
.y84{bottom:542.130000px;}
.y83{bottom:558.690000px;}
.y82{bottom:579.030000px;}
.y8c{bottom:604.800000px;}
.y8b{bottom:619.200000px;}
.ya8{bottom:641.235000px;}
.y81{bottom:691.200000px;}
.y4f{bottom:695.431995px;}
.y80{bottom:707.400000px;}
.y7f{bottom:723.600000px;}
.y7e{bottom:739.800000px;}
.y7d{bottom:756.000000px;}
.y7c{bottom:772.200000px;}
.y7b{bottom:788.430000px;}
.y7a{bottom:804.630000px;}
.y79{bottom:820.830000px;}
.y78{bottom:837.030000px;}
.y77{bottom:853.230000px;}
.y76{bottom:869.430000px;}
.y75{bottom:885.630000px;}
.y74{bottom:901.830000px;}
.ya9{bottom:930.570000px;}
.y73{bottom:970.665000px;}
.y72{bottom:986.865000px;}
.y71{bottom:1003.065000px;}
.y70{bottom:1019.265000px;}
.y6f{bottom:1035.465000px;}
.y6e{bottom:1051.665000px;}
.y6d{bottom:1073.520000px;}
.y6c{bottom:1100.625000px;}
.y6b{bottom:1114.665000px;}
.y6a{bottom:1129.065000px;}
.y69{bottom:1157.250000px;}
.y68{bottom:1188.750000px;}
.y67{bottom:1221.150000px;}
.h10{height:9.644297px;}
.hb{height:13.667052px;}
.h12{height:29.352725px;}
.h11{height:29.353116px;}
.h1c{height:32.062787px;}
.h1a{height:36.571616px;}
.h1b{height:36.671812px;}
.h5{height:37.011551px;}
.h3{height:37.012044px;}
.ha{height:37.048196px;}
.h4{height:37.048690px;}
.hf{height:37.378500px;}
.h2a{height:37.437188px;}
.h29{height:37.566281px;}
.h18{height:37.992485px;}
.h8{height:38.697741px;}
.h7{height:39.394007px;}
.h6{height:40.310147px;}
.h9{height:40.346792px;}
.hc{height:41.226287px;}
.he{height:41.262382px;}
.hd{height:41.262932px;}
.h16{height:41.581426px;}
.h17{height:41.681623px;}
.h1f{height:42.845977px;}
.h20{height:43.246406px;}
.h28{height:43.375500px;}
.h14{height:46.090256px;}
.h15{height:46.190452px;}
.h22{height:48.410156px;}
.h23{height:48.539250px;}
.h19{height:50.672897px;}
.h21{height:58.833281px;}
.h1d{height:74.363048px;}
.h27{height:76.366406px;}
.h1e{height:95.923828px;}
.h25{height:108.766406px;}
.h24{height:109.486406px;}
.h13{height:224.210442px;}
.h26{height:225.540000px;}
.h2{height:427.701356px;}
.h0{height:1275.480000px;}
.h1{height:1275.750000px;}
.w6{width:111.960000px;}
.w2{width:229.242399px;}
.w3{width:390.191188px;}
.w1{width:395.348504px;}
.w4{width:427.291001px;}
.w5{width:809.999988px;}
.w0{width:810.000000px;}
.x22{left:-9.752907px;}
.x20{left:-7.390858px;}
.x21{left:-4.502764px;}
.x0{left:0.000000px;}
.x13{left:7.431277px;}
.xd{left:10.463767px;}
.x8{left:12.660767px;}
.xc{left:13.764443px;}
.x7{left:15.631378px;}
.x12{left:17.828418px;}
.xb{left:18.963013px;}
.xa{left:20.953714px;}
.x30{left:22.751988px;}
.x1e{left:25.881098px;}
.x2d{left:26.956693px;}
.x38{left:28.115988px;}
.x1a{left:29.439636px;}
.x1c{left:33.741685px;}
.x34{left:37.547988px;}
.x14{left:40.273020px;}
.x15{left:42.779474px;}
.x32{left:47.303988px;}
.x37{left:56.447988px;}
.x36{left:70.127988px;}
.x23{left:85.824063px;}
.x25{left:91.762710px;}
.x1d{left:98.650721px;}
.x9{left:99.963702px;}
.xe{left:103.410518px;}
.x27{left:110.722066px;}
.x1b{left:121.458931px;}
.x33{left:145.871988px;}
.x28{left:164.078177px;}
.x26{left:201.825297px;}
.x35{left:213.554988px;}
.x10{left:215.650755px;}
.x3{left:218.457176px;}
.xf{left:219.591799px;}
.x2{left:221.426928px;}
.x16{left:222.840917px;}
.x5{left:232.837467px;}
.x18{left:234.135416px;}
.x6{left:238.622250px;}
.x3c{left:245.954988px;}
.x11{left:264.408810px;}
.x2a{left:301.300806px;}
.x4{left:303.153092px;}
.x2b{left:304.321994px;}
.x17{left:305.327785px;}
.x29{left:315.019538px;}
.x2c{left:319.051709px;}
.x31{left:339.014988px;}
.x39{left:349.094988px;}
.x3d{left:362.774988px;}
.x24{left:365.349887px;}
.x2e{left:373.526955px;}
.x2f{left:388.197891px;}
.x1{left:396.201496px;}
.x1f{left:401.358812px;}
.x3b{left:404.024988px;}
.x19{left:483.516925px;}
.x3a{left:487.904988px;}
@media print{
.v5{vertical-align:-11.038691pt;}
.v1{vertical-align:-9.902166pt;}
.v2{vertical-align:-8.985183pt;}
.v3{vertical-align:-7.151564pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:7.151564pt;}
.v8{vertical-align:11.520000pt;}
.v6{vertical-align:12.534472pt;}
.v9{vertical-align:29.440000pt;}
.v7{vertical-align:33.592384pt;}
.va{vertical-align:58.880000pt;}
.ls4c{letter-spacing:-0.640000pt;}
.ls42{letter-spacing:-0.624000pt;}
.ls41{letter-spacing:-0.581333pt;}
.ls3c{letter-spacing:-0.478933pt;}
.ls3e{letter-spacing:-0.448000pt;}
.ls3b{letter-spacing:-0.320000pt;}
.ls49{letter-spacing:-0.249067pt;}
.ls3f{letter-spacing:-0.192000pt;}
.ls40{letter-spacing:-0.161600pt;}
.ls4e{letter-spacing:-0.158933pt;}
.ls39{letter-spacing:-0.150414pt;}
.ls4a{letter-spacing:-0.112000pt;}
.ls47{letter-spacing:-0.096000pt;}
.ls37{letter-spacing:-0.063569pt;}
.ls29{letter-spacing:-0.060513pt;}
.ls27{letter-spacing:-0.047677pt;}
.ls36{letter-spacing:-0.045232pt;}
.ls32{letter-spacing:-0.042176pt;}
.ls2b{letter-spacing:-0.038814pt;}
.ls30{letter-spacing:-0.037744pt;}
.ls31{letter-spacing:-0.035758pt;}
.ls26{letter-spacing:-0.028575pt;}
.ls35{letter-spacing:-0.026895pt;}
.ls34{letter-spacing:-0.024908pt;}
.ls2a{letter-spacing:-0.018337pt;}
.ls48{letter-spacing:-0.016000pt;}
.ls2c{letter-spacing:-0.011002pt;}
.ls25{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.001025pt;}
.ls1{letter-spacing:0.001222pt;}
.ls5{letter-spacing:0.012836pt;}
.ls15{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.018337pt;}
.ls2d{letter-spacing:0.028575pt;}
.ls2e{letter-spacing:0.029340pt;}
.ls43{letter-spacing:0.040320pt;}
.ls44{letter-spacing:0.060267pt;}
.ls28{letter-spacing:0.074266pt;}
.ls3d{letter-spacing:0.096000pt;}
.ls33{letter-spacing:0.110024pt;}
.ls4b{letter-spacing:0.112000pt;}
.ls18{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.160000pt;}
.ls3a{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.203733pt;}
.ls38{letter-spacing:0.250689pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.320000pt;}
.ls45{letter-spacing:0.448000pt;}
.ls23{letter-spacing:0.524800pt;}
.ls20{letter-spacing:0.640000pt;}
.ls4d{letter-spacing:0.800000pt;}
.ls46{letter-spacing:0.832000pt;}
.ls17{letter-spacing:2.048000pt;}
.ls24{letter-spacing:2.240000pt;}
.ls1a{letter-spacing:2.720000pt;}
.ls9{letter-spacing:7.347162pt;}
.lsa{letter-spacing:7.362444pt;}
.ls8{letter-spacing:7.393006pt;}
.ls12{letter-spacing:7.840000pt;}
.ls4{letter-spacing:9.825760pt;}
.ls7{letter-spacing:9.892997pt;}
.ls2{letter-spacing:10.024415pt;}
.ls0{letter-spacing:10.039696pt;}
.ls3{letter-spacing:10.070258pt;}
.ls1b{letter-spacing:10.176000pt;}
.ls11{letter-spacing:10.400000pt;}
.ls13{letter-spacing:11.040000pt;}
.lsb{letter-spacing:11.331162pt;}
.lsd{letter-spacing:11.381300pt;}
.lse{letter-spacing:11.439794pt;}
.lsc{letter-spacing:11.448151pt;}
.ls14{letter-spacing:11.680000pt;}
.ls22{letter-spacing:14.240000pt;}
.ls21{letter-spacing:14.880000pt;}
.ls1e{letter-spacing:28.800000pt;}
.ls1f{letter-spacing:30.240000pt;}
.ls16{letter-spacing:55.475200pt;}
.lsf{letter-spacing:55.520000pt;}
.ws3b{word-spacing:-37.248000pt;}
.ws0{word-spacing:-24.192000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws34{word-spacing:-12.832000pt;}
.ws33{word-spacing:-12.448000pt;}
.wsa{word-spacing:-12.320000pt;}
.ws39{word-spacing:-12.112000pt;}
.wsb{word-spacing:-12.096000pt;}
.ws31{word-spacing:-12.032000pt;}
.ws8{word-spacing:-12.016000pt;}
.wse{word-spacing:-12.000000pt;}
.ws36{word-spacing:-11.984000pt;}
.ws35{word-spacing:-11.904000pt;}
.ws38{word-spacing:-11.888000pt;}
.ws10{word-spacing:-11.870400pt;}
.wsf{word-spacing:-11.808000pt;}
.ws37{word-spacing:-11.782933pt;}
.wsd{word-spacing:-11.680000pt;}
.wsc{word-spacing:-11.552000pt;}
.ws11{word-spacing:-11.450667pt;}
.ws12{word-spacing:-11.376000pt;}
.ws14{word-spacing:-10.752000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws4{word-spacing:-10.400000pt;}
.ws3e{word-spacing:-10.080000pt;}
.ws40{word-spacing:-9.920000pt;}
.ws3a{word-spacing:-9.836800pt;}
.ws3d{word-spacing:-9.280000pt;}
.ws3f{word-spacing:-9.121067pt;}
.ws3c{word-spacing:-8.640000pt;}
.ws9{word-spacing:-8.000000pt;}
.ws2{word-spacing:-7.040000pt;}
.ws3{word-spacing:-3.203840pt;}
.ws15{word-spacing:-2.066432pt;}
.ws26{word-spacing:-1.819648pt;}
.ws5{word-spacing:-1.520640pt;}
.ws27{word-spacing:-1.408000pt;}
.ws25{word-spacing:-1.402709pt;}
.ws16{word-spacing:-1.303424pt;}
.ws13{word-spacing:-1.024000pt;}
.ws41{word-spacing:-0.960000pt;}
.ws1{word-spacing:-0.505600pt;}
.ws24{word-spacing:-0.264192pt;}
.ws42{word-spacing:0.000000pt;}
.ws30{word-spacing:2.432000pt;}
.ws32{word-spacing:3.557376pt;}
.ws2f{word-spacing:3.565739pt;}
.ws2e{word-spacing:4.103616pt;}
.ws2d{word-spacing:4.286464pt;}
.ws1e{word-spacing:4.286720pt;}
.ws22{word-spacing:4.320000pt;}
.ws23{word-spacing:4.355627pt;}
.ws21{word-spacing:4.436480pt;}
.ws20{word-spacing:5.080960pt;}
.ws1f{word-spacing:5.404160pt;}
.ws2a{word-spacing:15.536000pt;}
.ws29{word-spacing:16.640000pt;}
.ws2b{word-spacing:16.874667pt;}
.ws2c{word-spacing:17.344000pt;}
.ws28{word-spacing:17.456000pt;}
.ws17{word-spacing:77.427413pt;}
.ws18{word-spacing:114.840960pt;}
.ws1a{word-spacing:130.200960pt;}
.ws1b{word-spacing:163.669547pt;}
.ws1c{word-spacing:169.347627pt;}
.ws19{word-spacing:223.418667pt;}
.ws1d{word-spacing:256.547627pt;}
._f{margin-left:-6.154667pt;}
._0{margin-left:-4.108305pt;}
._3{margin-left:-1.124140pt;}
._d{width:0.896000pt;}
._10{width:1.892140pt;}
._11{width:2.794105pt;}
._21{width:4.192000pt;}
._22{width:5.696000pt;}
._12{width:7.272647pt;}
._8{width:8.855353pt;}
._6{width:9.759340pt;}
._4{width:11.038357pt;}
._7{width:12.450073pt;}
._15{width:14.043854pt;}
._20{width:15.220146pt;}
._1c{width:16.311680pt;}
._1e{width:18.304000pt;}
._18{width:19.376000pt;}
._13{width:21.508140pt;}
._14{width:22.976000pt;}
._17{width:24.082947pt;}
._16{width:24.992000pt;}
._1d{width:30.176000pt;}
._1f{width:31.652140pt;}
._1{width:42.067578pt;}
._a{width:43.476114pt;}
._e{width:50.286807pt;}
._9{width:52.735363pt;}
._c{width:72.106667pt;}
._1a{width:93.853867pt;}
._2{width:133.275816pt;}
._1b{width:136.376067pt;}
._19{width:235.508140pt;}
._5{width:851.676901pt;}
._b{width:1099.264870pt;}
.fs13{font-size:19.474259pt;}
.fsa{font-size:24.571714pt;}
.fsf{font-size:26.149052pt;}
.fs6{font-size:26.405775pt;}
.fs4{font-size:26.955896pt;}
.fse{font-size:27.395627pt;}
.fs1a{font-size:27.575838pt;}
.fs20{font-size:28.160000pt;}
.fs26{font-size:28.288000pt;}
.fs12{font-size:29.376034pt;}
.fs11{font-size:29.376425pt;}
.fs15{font-size:30.584111pt;}
.fs23{font-size:32.000000pt;}
.fs1c{font-size:32.088247pt;}
.fs1d{font-size:32.188523pt;}
.fs19{font-size:36.600657pt;}
.fs1b{font-size:36.700933pt;}
.fs2{font-size:37.040941pt;}
.fs0{font-size:37.041435pt;}
.fs9{font-size:37.077615pt;}
.fs1{font-size:37.078109pt;}
.fs28{font-size:37.120000pt;}
.fs27{font-size:37.248000pt;}
.fs10{font-size:37.408182pt;}
.fs7{font-size:38.728470pt;}
.fs5{font-size:39.425289pt;}
.fs3{font-size:40.342157pt;}
.fs8{font-size:40.378831pt;}
.fsb{font-size:41.259024pt;}
.fsd{font-size:41.295148pt;}
.fsc{font-size:41.295699pt;}
.fs17{font-size:41.614446pt;}
.fs18{font-size:41.714721pt;}
.fs1f{font-size:42.880000pt;}
.fs25{font-size:43.008000pt;}
.fs14{font-size:46.126855pt;}
.fs16{font-size:46.227131pt;}
.fs22{font-size:48.000000pt;}
.fs24{font-size:48.128000pt;}
.fs21{font-size:58.880000pt;}
.fs1e{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:1.554854pt;}
.y42{bottom:2.856525pt;}
.ya6{bottom:7.168000pt;}
.y66{bottom:7.684864pt;}
.y61{bottom:11.069183pt;}
.y2c{bottom:13.537990pt;}
.y35{bottom:13.629677pt;}
.y3e{bottom:14.592387pt;}
.y3f{bottom:16.655338pt;}
.y53{bottom:17.862887pt;}
.ya5{bottom:18.368000pt;}
.y65{bottom:18.740270pt;}
.y58{bottom:20.871176pt;}
.y64{bottom:21.372570pt;}
.y60{bottom:22.124589pt;}
.ya4{bottom:29.600000pt;}
.y63{bottom:31.024112pt;}
.y52{bottom:31.650805pt;}
.y5f{bottom:33.154923pt;}
.y4b{bottom:39.375626pt;}
.y62{bottom:41.427723pt;}
.y34{bottom:44.574709pt;}
.y25{bottom:45.674949pt;}
.y2f{bottom:45.812479pt;}
.y45{bottom:47.994177pt;}
.y38{bottom:52.505610pt;}
.ya3{bottom:55.200000pt;}
.y46{bottom:56.024406pt;}
.y4c{bottom:56.070249pt;}
.y2b{bottom:56.081392pt;}
.y26{bottom:57.227476pt;}
.y54{bottom:59.978743pt;}
.y30{bottom:60.069764pt;}
.y39{bottom:60.528198pt;}
.y47{bottom:64.138681pt;}
.y3a{bottom:68.604270pt;}
.y27{bottom:68.787643pt;}
.ya2{bottom:69.600000pt;}
.y48{bottom:72.161269pt;}
.y5e{bottom:73.791682pt;}
.y31{bottom:74.380533pt;}
.y3b{bottom:76.626858pt;}
.y49{bottom:80.183857pt;}
.y28{bottom:80.294326pt;}
.ya1{bottom:84.000000pt;}
.y3c{bottom:84.649446pt;}
.y5d{bottom:84.822015pt;}
.y4a{bottom:88.206445pt;}
.y32{bottom:88.637818pt;}
.y29{bottom:91.846853pt;}
.y3d{bottom:92.672034pt;}
.y4d{bottom:97.237586pt;}
.ya0{bottom:98.400000pt;}
.y41{bottom:100.327875pt;}
.y33{bottom:102.895103pt;}
.y2a{bottom:103.399380pt;}
.y89{bottom:103.426667pt;}
.y51{bottom:105.255330pt;}
.y2e{bottom:109.359017pt;}
.y37{bottom:110.780161pt;}
.y40{bottom:111.605341pt;}
.y9f{bottom:112.800000pt;}
.y57{bottom:115.679844pt;}
.y2d{bottom:120.957387pt;}
.y36{bottom:122.378531pt;}
.y5c{bottom:124.328571pt;}
.y56{bottom:128.088970pt;}
.y9e{bottom:131.584000pt;}
.y59{bottom:131.974642pt;}
.y5b{bottom:132.225299pt;}
.y22{bottom:133.426780pt;}
.y1a{bottom:136.589972pt;}
.y55{bottom:140.498099pt;}
.y13{bottom:165.528593pt;}
.y1c{bottom:165.620280pt;}
.y21{bottom:168.095821pt;}
.y9d{bottom:168.733333pt;}
.ya7{bottom:170.426667pt;}
.y5a{bottom:171.489555pt;}
.y19{bottom:175.614132pt;}
.y14{bottom:176.943590pt;}
.y1d{bottom:179.740035pt;}
.y9c{bottom:183.133333pt;}
.y50{bottom:184.650777pt;}
.y1{bottom:185.308933pt;}
.y15{bottom:188.312743pt;}
.y1e{bottom:193.813946pt;}
.y9b{bottom:197.533333pt;}
.y16{bottom:199.681896pt;}
.y1f{bottom:207.933701pt;}
.y17{bottom:211.051049pt;}
.y9a{bottom:211.933333pt;}
.y20{bottom:222.007612pt;}
.y18{bottom:222.420203pt;}
.y99{bottom:226.333333pt;}
.y24{bottom:228.433323pt;}
.y1b{bottom:234.072057pt;}
.y23{bottom:240.031693pt;}
.y98{bottom:240.733333pt;}
.y97{bottom:255.133333pt;}
.y9{bottom:263.045060pt;}
.y96{bottom:269.533333pt;}
.y95{bottom:283.933333pt;}
.y2{bottom:295.181255pt;}
.y94{bottom:298.333333pt;}
.y8{bottom:304.074867pt;}
.y11{bottom:304.716674pt;}
.y3{bottom:304.808361pt;}
.yc{bottom:305.083421pt;}
.y93{bottom:312.733333pt;}
.y4{bottom:314.443107pt;}
.yd{bottom:314.947384pt;}
.y5{bottom:324.070212pt;}
.ye{bottom:324.803706pt;}
.y92{bottom:327.133333pt;}
.y6{bottom:333.697318pt;}
.yf{bottom:334.705872pt;}
.y88{bottom:336.320000pt;}
.y91{bottom:341.533333pt;}
.y7{bottom:343.324424pt;}
.y10{bottom:344.562194pt;}
.yb{bottom:354.922794pt;}
.y90{bottom:355.933333pt;}
.y12{bottom:356.068878pt;}
.ya{bottom:366.521164pt;}
.y43{bottom:368.446585pt;}
.y8f{bottom:370.333333pt;}
.y8e{bottom:384.773333pt;}
.y8d{bottom:399.173333pt;}
.y8a{bottom:425.026667pt;}
.y44{bottom:436.346853pt;}
.y87{bottom:453.466667pt;}
.y86{bottom:453.626667pt;}
.y85{bottom:468.346667pt;}
.y84{bottom:481.893333pt;}
.y83{bottom:496.613333pt;}
.y82{bottom:514.693333pt;}
.y8c{bottom:537.600000pt;}
.y8b{bottom:550.400000pt;}
.ya8{bottom:569.986667pt;}
.y81{bottom:614.400000pt;}
.y4f{bottom:618.161773pt;}
.y80{bottom:628.800000pt;}
.y7f{bottom:643.200000pt;}
.y7e{bottom:657.600000pt;}
.y7d{bottom:672.000000pt;}
.y7c{bottom:686.400000pt;}
.y7b{bottom:700.826667pt;}
.y7a{bottom:715.226667pt;}
.y79{bottom:729.626667pt;}
.y78{bottom:744.026667pt;}
.y77{bottom:758.426667pt;}
.y76{bottom:772.826667pt;}
.y75{bottom:787.226667pt;}
.y74{bottom:801.626667pt;}
.ya9{bottom:827.173333pt;}
.y73{bottom:862.813333pt;}
.y72{bottom:877.213333pt;}
.y71{bottom:891.613333pt;}
.y70{bottom:906.013333pt;}
.y6f{bottom:920.413333pt;}
.y6e{bottom:934.813333pt;}
.y6d{bottom:954.240000pt;}
.y6c{bottom:978.333333pt;}
.y6b{bottom:990.813333pt;}
.y6a{bottom:1003.613333pt;}
.y69{bottom:1028.666667pt;}
.y68{bottom:1056.666667pt;}
.y67{bottom:1085.466667pt;}
.h10{height:8.572708pt;}
.hb{height:12.148490pt;}
.h12{height:26.091311pt;}
.h11{height:26.091659pt;}
.h1c{height:28.500255pt;}
.h1a{height:32.508103pt;}
.h1b{height:32.597166pt;}
.h5{height:32.899156pt;}
.h3{height:32.899595pt;}
.ha{height:32.931730pt;}
.h4{height:32.932168pt;}
.hf{height:33.225333pt;}
.h2a{height:33.277500pt;}
.h29{height:33.392250pt;}
.h18{height:33.771098pt;}
.h8{height:34.397992pt;}
.h7{height:35.016895pt;}
.h6{height:35.831242pt;}
.h9{height:35.863815pt;}
.hc{height:36.645588pt;}
.he{height:36.677673pt;}
.hd{height:36.678162pt;}
.h16{height:36.961268pt;}
.h17{height:37.050331pt;}
.h1f{height:38.085312pt;}
.h20{height:38.441250pt;}
.h28{height:38.556000pt;}
.h14{height:40.969116pt;}
.h15{height:41.058180pt;}
.h22{height:43.031250pt;}
.h23{height:43.146000pt;}
.h19{height:45.042575pt;}
.h21{height:52.296250pt;}
.h1d{height:66.100487pt;}
.h27{height:67.881250pt;}
.h1e{height:85.265625pt;}
.h25{height:96.681250pt;}
.h24{height:97.321250pt;}
.h13{height:199.298171pt;}
.h26{height:200.480000pt;}
.h2{height:380.178983pt;}
.h0{height:1133.760000pt;}
.h1{height:1134.000000pt;}
.w6{width:99.520000pt;}
.w2{width:203.771021pt;}
.w3{width:346.836611pt;}
.w1{width:351.420892pt;}
.w4{width:379.814224pt;}
.w5{width:719.999989pt;}
.w0{width:720.000000pt;}
.x22{left:-8.669250pt;}
.x20{left:-6.569652pt;}
.x21{left:-4.002457pt;}
.x0{left:0.000000pt;}
.x13{left:6.605579pt;}
.xd{left:9.301126pt;}
.x8{left:11.254015pt;}
.xc{left:12.235061pt;}
.x7{left:13.894558pt;}
.x12{left:15.847483pt;}
.xb{left:16.856012pt;}
.xa{left:18.625524pt;}
.x30{left:20.223989pt;}
.x1e{left:23.005420pt;}
.x2d{left:23.961504pt;}
.x38{left:24.991989pt;}
.x1a{left:26.168565pt;}
.x1c{left:29.992609pt;}
.x34{left:33.375989pt;}
.x14{left:35.798240pt;}
.x15{left:38.026199pt;}
.x32{left:42.047989pt;}
.x37{left:50.175989pt;}
.x36{left:62.335989pt;}
.x23{left:76.288056pt;}
.x25{left:81.566854pt;}
.x1d{left:87.689530pt;}
.x9{left:88.856624pt;}
.xe{left:91.920460pt;}
.x27{left:98.419614pt;}
.x1b{left:107.963494pt;}
.x33{left:129.663989pt;}
.x28{left:145.847268pt;}
.x26{left:179.400264pt;}
.x35{left:189.826656pt;}
.x10{left:191.689560pt;}
.x3{left:194.184157pt;}
.xf{left:195.192710pt;}
.x2{left:196.823936pt;}
.x16{left:198.080815pt;}
.x5{left:206.966637pt;}
.x18{left:208.120370pt;}
.x6{left:212.108667pt;}
.x3c{left:218.626656pt;}
.x11{left:235.030053pt;}
.x2a{left:267.822938pt;}
.x4{left:269.469415pt;}
.x2b{left:270.508439pt;}
.x17{left:271.402475pt;}
.x29{left:280.017367pt;}
.x2c{left:283.601519pt;}
.x31{left:301.346656pt;}
.x39{left:310.306656pt;}
.x3d{left:322.466656pt;}
.x24{left:324.755455pt;}
.x2e{left:332.023960pt;}
.x2f{left:345.064792pt;}
.x1{left:352.179108pt;}
.x1f{left:356.763389pt;}
.x3b{left:359.133323pt;}
.x19{left:429.792822pt;}
.x3a{left:433.693323pt;}
}




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