
    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_c887ec4418eff0c45de20a29.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.769531;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_45900fd0f5bf93e76ad619aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973145;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_8b21fda1c47f5bca57ab016c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126953;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_fff8b2bd1bbadc288e028585.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973145;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_249635f3ea7f3b22e9273af7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126953;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_f9ba51ea005e032d79c83416.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973145;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_f861d8da7798f6e6a8115291.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973145;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_e6a0e0175e4e4f0d006eb07e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.000000;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_a676371f7f93b627e213588f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.128906;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_53ace6795c235113eb2a7d87.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.128906;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_0b9cb6f5da2f045f129c42c3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.972656;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_8fd981d32b0c4ce96a37de4f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.972656;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_b2d6c604e98d1bb004feced5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.128906;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);}
.v2{vertical-align:-12.241380px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.121860px;}
.ls54{letter-spacing:-0.345600px;}
.ls70{letter-spacing:-0.337200px;}
.lsa{letter-spacing:-0.304800px;}
.ls1a{letter-spacing:-0.295200px;}
.ls10{letter-spacing:-0.288000px;}
.ls3a{letter-spacing:-0.229800px;}
.ls3c{letter-spacing:-0.202800px;}
.ls18{letter-spacing:-0.198000px;}
.ls55{letter-spacing:-0.189600px;}
.ls3b{letter-spacing:-0.180600px;}
.lsf{letter-spacing:-0.180000px;}
.ls39{letter-spacing:-0.161400px;}
.lse{letter-spacing:-0.126600px;}
.ls19{letter-spacing:-0.108000px;}
.ls12{letter-spacing:-0.099600px;}
.ls27{letter-spacing:-0.090000px;}
.ls45{letter-spacing:-0.038160px;}
.ls52{letter-spacing:-0.027360px;}
.ls11{letter-spacing:-0.002160px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.013980px;}
.ls4f{letter-spacing:0.015120px;}
.ls63{letter-spacing:0.015840px;}
.ls14{letter-spacing:0.017040px;}
.ls29{letter-spacing:0.021600px;}
.lsc{letter-spacing:0.025920px;}
.ls68{letter-spacing:0.041520px;}
.ls6e{letter-spacing:0.075600px;}
.ls2c{letter-spacing:0.089040px;}
.ls56{letter-spacing:0.093900px;}
.ls30{letter-spacing:0.103200px;}
.ls6d{letter-spacing:0.103800px;}
.ls5b{letter-spacing:0.114600px;}
.ls67{letter-spacing:0.114960px;}
.lsb{letter-spacing:0.123600px;}
.ls65{letter-spacing:0.126600px;}
.ls21{letter-spacing:0.143760px;}
.ls6a{letter-spacing:0.177600px;}
.ls6c{letter-spacing:0.188400px;}
.ls40{letter-spacing:0.189360px;}
.ls32{letter-spacing:0.196620px;}
.ls2b{letter-spacing:0.198000px;}
.ls61{letter-spacing:0.220560px;}
.ls2f{letter-spacing:0.237120px;}
.ls62{letter-spacing:0.240600px;}
.lsd{letter-spacing:0.244800px;}
.ls53{letter-spacing:0.248400px;}
.ls3e{letter-spacing:0.258000px;}
.ls3{letter-spacing:0.270600px;}
.ls28{letter-spacing:0.286800px;}
.ls2e{letter-spacing:0.306000px;}
.ls4d{letter-spacing:0.308880px;}
.ls6b{letter-spacing:0.313680px;}
.ls4e{letter-spacing:0.316140px;}
.ls50{letter-spacing:0.317400px;}
.ls4c{letter-spacing:0.318480px;}
.ls2a{letter-spacing:0.424800px;}
.ls66{letter-spacing:0.454800px;}
.ls51{letter-spacing:0.539400px;}
.ls64{letter-spacing:0.630000px;}
.ls46{letter-spacing:0.654000px;}
.ls2d{letter-spacing:0.660000px;}
.ls4{letter-spacing:0.666480px;}
.ls44{letter-spacing:0.684000px;}
.ls43{letter-spacing:0.690000px;}
.ls25{letter-spacing:0.717360px;}
.ls5d{letter-spacing:0.822000px;}
.ls4a{letter-spacing:1.436880px;}
.ls59{letter-spacing:1.439220px;}
.ls22{letter-spacing:2.156460px;}
.ls42{letter-spacing:2.158800px;}
.ls37{letter-spacing:2.875980px;}
.ls1f{letter-spacing:2.878320px;}
.ls1e{letter-spacing:3.597840px;}
.ls6f{letter-spacing:4.194000px;}
.ls1d{letter-spacing:4.317360px;}
.ls17{letter-spacing:4.752000px;}
.ls16{letter-spacing:4.914000px;}
.ls7{letter-spacing:4.986000px;}
.ls3d{letter-spacing:5.036880px;}
.ls41{letter-spacing:5.039220px;}
.ls26{letter-spacing:5.756460px;}
.ls60{letter-spacing:5.758800px;}
.ls49{letter-spacing:6.475980px;}
.ls36{letter-spacing:6.478320px;}
.ls47{letter-spacing:7.197840px;}
.ls20{letter-spacing:7.917360px;}
.ls13{letter-spacing:8.639220px;}
.ls69{letter-spacing:9.358800px;}
.ls34{letter-spacing:10.075980px;}
.ls33{letter-spacing:10.078320px;}
.ls35{letter-spacing:10.256460px;}
.ls5f{letter-spacing:10.672380px;}
.ls1{letter-spacing:10.675320px;}
.ls1c{letter-spacing:10.676040px;}
.ls9{letter-spacing:10.680000px;}
.ls5e{letter-spacing:10.744620px;}
.ls1b{letter-spacing:10.746960px;}
.ls23{letter-spacing:10.797840px;}
.ls57{letter-spacing:10.978320px;}
.ls0{letter-spacing:11.466480px;}
.ls31{letter-spacing:11.517360px;}
.ls24{letter-spacing:12.236880px;}
.ls15{letter-spacing:13.678320px;}
.ls6{letter-spacing:14.346960px;}
.ls5a{letter-spacing:16.556460px;}
.ls38{letter-spacing:17.997840px;}
.ls48{letter-spacing:19.439220px;}
.ls5{letter-spacing:19.566480px;}
.ls5c{letter-spacing:23.758800px;}
.ls3f{letter-spacing:25.197840px;}
.ls58{letter-spacing:26.636880px;}
.ls4b{letter-spacing:27.358800px;}
.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;}
}
.ws1{word-spacing:-23.694000px;}
.wsf{word-spacing:-17.766000px;}
.ws6{word-spacing:-16.824960px;}
.ws16{word-spacing:-15.485040px;}
.ws25{word-spacing:-15.224160px;}
.ws9{word-spacing:-15.179040px;}
.ws1c{word-spacing:-15.092160px;}
.ws29{word-spacing:-15.032160px;}
.ws20{word-spacing:-14.941560px;}
.ws1a{word-spacing:-14.826960px;}
.ws1f{word-spacing:-14.719560px;}
.ws13{word-spacing:-14.688960px;}
.ws1b{word-spacing:-14.660160px;}
.ws22{word-spacing:-14.650560px;}
.ws28{word-spacing:-14.642760px;}
.ws15{word-spacing:-14.600160px;}
.ws2d{word-spacing:-14.590560px;}
.ws2a{word-spacing:-14.528760px;}
.ws26{word-spacing:-14.516760px;}
.ws2e{word-spacing:-14.505960px;}
.ws2f{word-spacing:-14.477760px;}
.ws14{word-spacing:-14.423760px;}
.ws27{word-spacing:-14.418000px;}
.ws12{word-spacing:-14.402160px;}
.ws21{word-spacing:-14.374800px;}
.ws1d{word-spacing:-14.364000px;}
.ws1e{word-spacing:-14.312160px;}
.ws17{word-spacing:-14.221560px;}
.ws24{word-spacing:-14.212560px;}
.ws18{word-spacing:-14.199360px;}
.ws2b{word-spacing:-14.172360px;}
.ws19{word-spacing:-14.106960px;}
.ws2c{word-spacing:-14.064960px;}
.ws23{word-spacing:-14.056560px;}
.ws11{word-spacing:-13.608000px;}
.ws10{word-spacing:-13.518000px;}
.wsa{word-spacing:-13.014000px;}
.ws8{word-spacing:-12.726000px;}
.wsc{word-spacing:-11.625840px;}
.wsd{word-spacing:-11.526240px;}
.ws4{word-spacing:-10.632960px;}
.ws3{word-spacing:-10.334760px;}
.ws2{word-spacing:-10.187760px;}
.ws5{word-spacing:-10.064160px;}
.ws7{word-spacing:-9.875520px;}
.wsb{word-spacing:-7.287840px;}
.ws0{word-spacing:-2.538378px;}
.wse{word-spacing:0.000000px;}
._9{margin-left:-3.295533px;}
._3{margin-left:-1.349121px;}
._4{width:1.075634px;}
._5{width:2.578854px;}
._6{width:4.209080px;}
._7{width:5.775828px;}
._d{width:6.915551px;}
._8{width:8.423631px;}
._1{width:10.394916px;}
._0{width:11.502054px;}
._12{width:13.352044px;}
._2{width:14.655486px;}
._13{width:15.877232px;}
._17{width:17.570223px;}
._b{width:18.575003px;}
._c{width:20.136066px;}
._14{width:21.272327px;}
._15{width:23.257227px;}
._a{width:24.353756px;}
._19{width:25.814905px;}
._1b{width:27.311468px;}
._18{width:28.334946px;}
._10{width:29.518600px;}
._11{width:30.603491px;}
._1c{width:34.143000px;}
._16{width:37.110184px;}
._1a{width:38.344988px;}
._f{width:129.763980px;}
._e{width:133.664940px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fs6{font-size:30.240000px;}
.fs5{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.340300px;}
.y7{bottom:2.340330px;}
.y9{bottom:14.436390px;}
.y6{bottom:14.436420px;}
.y8{bottom:26.316270px;}
.y5{bottom:26.316300px;}
.y4{bottom:38.196150px;}
.yb{bottom:45.720150px;}
.y3{bottom:63.359700px;}
.y34{bottom:140.975865px;}
.yd0{bottom:153.032100px;}
.ye9{bottom:156.092400px;}
.y33{bottom:157.709655px;}
.y105{bottom:158.250750px;}
.y87{bottom:158.972100px;}
.y32{bottom:168.149895px;}
.ya6{bottom:174.092250px;}
.ycf{bottom:174.092400px;}
.ye8{bottom:176.972250px;}
.y86{bottom:180.031800px;}
.y5e{bottom:180.031950px;}
.y31{bottom:181.829775px;}
.y104{bottom:184.350750px;}
.ya5{bottom:194.972100px;}
.yce{bottom:194.972250px;}
.ye7{bottom:198.031950px;}
.y30{bottom:198.570000px;}
.y85{bottom:201.092100px;}
.y5d{bottom:201.092250px;}
.y103{bottom:201.270900px;}
.y2f{bottom:209.730300px;}
.ya4{bottom:216.031800px;}
.ycd{bottom:216.031950px;}
.y84{bottom:221.971950px;}
.y5c{bottom:221.972100px;}
.y102{bottom:227.370900px;}
.ya3{bottom:237.092100px;}
.ycc{bottom:237.092250px;}
.y12b{bottom:237.450000px;}
.y2e{bottom:241.770600px;}
.y83{bottom:243.031650px;}
.y5b{bottom:243.031800px;}
.y101{bottom:244.470900px;}
.ya2{bottom:257.971950px;}
.ycb{bottom:257.972100px;}
.y2d{bottom:262.830300px;}
.y12a{bottom:263.190300px;}
.y82{bottom:264.091950px;}
.y5a{bottom:264.092100px;}
.y100{bottom:270.570900px;}
.ya1{bottom:279.031650px;}
.ye6{bottom:279.031800px;}
.y2c{bottom:283.890600px;}
.y81{bottom:284.971800px;}
.y59{bottom:284.971950px;}
.y129{bottom:289.470150px;}
.yff{bottom:296.491050px;}
.yca{bottom:297.031800px;}
.ya0{bottom:300.091950px;}
.ye5{bottom:300.092100px;}
.y2b{bottom:304.770450px;}
.ya9{bottom:306.031500px;}
.y58{bottom:306.031650px;}
.y128{bottom:315.390300px;}
.yc9{bottom:318.092100px;}
.y9f{bottom:320.971800px;}
.ye4{bottom:320.971950px;}
.yfe{bottom:322.591050px;}
.y80{bottom:324.031500px;}
.y2a{bottom:325.830150px;}
.y57{bottom:327.091950px;}
.yc8{bottom:339.017100px;}
.y127{bottom:341.355000px;}
.y9e{bottom:342.076650px;}
.ye3{bottom:342.076800px;}
.y7f{bottom:345.136350px;}
.y29{bottom:346.935000px;}
.y56{bottom:348.016950px;}
.yfd{bottom:348.735600px;}
.yc7{bottom:360.076800px;}
.y9d{bottom:363.136350px;}
.ye2{bottom:363.136500px;}
.y7e{bottom:366.016800px;}
.y126{bottom:367.455000px;}
.y28{bottom:367.815450px;}
.yfc{bottom:374.655750px;}
.yc6{bottom:381.136500px;}
.y9c{bottom:384.016800px;}
.y7d{bottom:387.076500px;}
.y55{bottom:387.076650px;}
.y27{bottom:388.875750px;}
.y125{bottom:393.555000px;}
.yfb{bottom:400.755750px;}
.yd8{bottom:402.016800px;}
.yc5{bottom:402.016950px;}
.y9b{bottom:405.076500px;}
.y7c{bottom:408.136200px;}
.y54{bottom:408.136350px;}
.yfa{bottom:417.855750px;}
.y124{bottom:419.655000px;}
.yd7{bottom:423.076500px;}
.yc4{bottom:423.076650px;}
.y9a{bottom:426.136200px;}
.y26{bottom:428.295900px;}
.y7b{bottom:429.016650px;}
.y53{bottom:429.016800px;}
.yf9{bottom:443.775900px;}
.yd6{bottom:444.136200px;}
.yc3{bottom:444.136350px;}
.y123{bottom:445.575150px;}
.y99{bottom:447.016650px;}
.ya8{bottom:450.076350px;}
.y52{bottom:450.076500px;}
.yf8{bottom:460.875900px;}
.yd5{bottom:465.016650px;}
.yc2{bottom:465.016800px;}
.y25{bottom:467.535600px;}
.y7a{bottom:468.076350px;}
.y51{bottom:471.136200px;}
.y122{bottom:471.675150px;}
.y98{bottom:486.076350px;}
.ye1{bottom:486.076500px;}
.yf7{bottom:486.975900px;}
.y79{bottom:489.136050px;}
.y50{bottom:492.016650px;}
.y121{bottom:497.775150px;}
.yf6{bottom:503.896050px;}
.yc1{bottom:504.076500px;}
.y24{bottom:505.875900px;}
.y97{bottom:507.136050px;}
.ye0{bottom:507.136200px;}
.y78{bottom:510.016500px;}
.y120{bottom:523.695300px;}
.yc0{bottom:525.136200px;}
.y96{bottom:528.016500px;}
.ydf{bottom:528.016650px;}
.yf5{bottom:529.816200px;}
.y77{bottom:531.076200px;}
.y4f{bottom:531.076350px;}
.y23{bottom:544.935600px;}
.ybf{bottom:546.016650px;}
.y95{bottom:549.076200px;}
.yde{bottom:549.076350px;}
.y11f{bottom:549.975150px;}
.y76{bottom:552.135900px;}
.y4e{bottom:552.136050px;}
.yf4{bottom:555.916200px;}
.y22{bottom:565.816050px;}
.y11e{bottom:567.075150px;}
.ybe{bottom:567.076350px;}
.y94{bottom:570.135900px;}
.y75{bottom:573.016350px;}
.y4d{bottom:573.016500px;}
.y21{bottom:586.875750px;}
.ybd{bottom:588.136050px;}
.yf3{bottom:590.835750px;}
.y93{bottom:591.016350px;}
.y11d{bottom:592.995300px;}
.y74{bottom:594.076050px;}
.y4c{bottom:594.076200px;}
.y20{bottom:607.966050px;}
.ybc{bottom:609.046350px;}
.yf2{bottom:611.926050px;}
.y92{bottom:612.106050px;}
.y73{bottom:615.166350px;}
.y4b{bottom:615.166500px;}
.y11c{bottom:619.125150px;}
.y1f{bottom:628.845900px;}
.ybb{bottom:630.106050px;}
.yf1{bottom:632.985750px;}
.y91{bottom:633.166350px;}
.y72{bottom:636.046200px;}
.y4a{bottom:636.046350px;}
.y11b{bottom:636.225150px;}
.y1e{bottom:649.905600px;}
.yba{bottom:651.166350px;}
.yf0{bottom:653.866200px;}
.y90{bottom:654.046200px;}
.y71{bottom:657.105900px;}
.y49{bottom:657.106050px;}
.y11a{bottom:662.145300px;}
.y1d{bottom:670.965900px;}
.yb9{bottom:672.046200px;}
.yef{bottom:674.925900px;}
.y8f{bottom:675.105900px;}
.y119{bottom:688.245300px;}
.y1c{bottom:691.845750px;}
.yb8{bottom:693.105900px;}
.yee{bottom:695.985600px;}
.y70{bottom:696.166200px;}
.y48{bottom:696.166350px;}
.y118{bottom:705.345300px;}
.y1b{bottom:712.905450px;}
.yb7{bottom:714.166200px;}
.yed{bottom:716.866050px;}
.y6f{bottom:717.046050px;}
.y47{bottom:717.046200px;}
.y117{bottom:731.265450px;}
.y1a{bottom:733.965750px;}
.yd4{bottom:735.046050px;}
.yec{bottom:737.925750px;}
.y6e{bottom:738.105750px;}
.y46{bottom:738.105900px;}
.y116{bottom:748.365450px;}
.yb6{bottom:753.046050px;}
.y19{bottom:754.845600px;}
.yd3{bottom:756.105750px;}
.yeb{bottom:758.985450px;}
.y6d{bottom:759.166050px;}
.y45{bottom:759.166200px;}
.yb5{bottom:774.105750px;}
.y115{bottom:774.465450px;}
.y18{bottom:775.905300px;}
.yd2{bottom:777.166050px;}
.yea{bottom:779.865900px;}
.y6c{bottom:780.045900px;}
.y44{bottom:780.046050px;}
.y114{bottom:791.385600px;}
.yb4{bottom:795.166050px;}
.y17{bottom:796.965600px;}
.yd1{bottom:798.045900px;}
.y6b{bottom:801.105600px;}
.y43{bottom:801.105750px;}
.yb3{bottom:816.045900px;}
.y113{bottom:817.485000px;}
.y16{bottom:817.845450px;}
.y8e{bottom:819.105600px;}
.y6a{bottom:822.165900px;}
.y42{bottom:822.166050px;}
.yb2{bottom:837.105600px;}
.y15{bottom:838.905150px;}
.y8d{bottom:840.165900px;}
.y41{bottom:843.045900px;}
.y112{bottom:843.585600px;}
.yb1{bottom:858.165900px;}
.y14{bottom:859.965450px;}
.y69{bottom:861.045750px;}
.y111{bottom:869.685000px;}
.yb0{bottom:879.090900px;}
.y13{bottom:880.890450px;}
.y68{bottom:882.150600px;}
.y40{bottom:882.150750px;}
.y110{bottom:895.650300px;}
.yaf{bottom:900.150600px;}
.y12{bottom:901.950150px;}
.y67{bottom:903.210900px;}
.y10f{bottom:912.750300px;}
.ydd{bottom:918.150600px;}
.y3f{bottom:920.670900px;}
.yae{bottom:921.210900px;}
.y66{bottom:924.090750px;}
.y10e{bottom:938.850300px;}
.ydc{bottom:939.210900px;}
.y11{bottom:941.370300px;}
.yad{bottom:942.090750px;}
.y65{bottom:945.150450px;}
.y10d{bottom:955.770450px;}
.y3e{bottom:959.550750px;}
.ydb{bottom:960.090750px;}
.yac{bottom:963.150450px;}
.y8c{bottom:966.210750px;}
.y10{bottom:979.890450px;}
.y3d{bottom:980.610450px;}
.yda{bottom:981.150450px;}
.y10c{bottom:981.870450px;}
.y64{bottom:984.210750px;}
.y8b{bottom:987.090600px;}
.yf{bottom:995.190450px;}
.y10b{bottom:998.970450px;}
.y3c{bottom:1001.670750px;}
.yd9{bottom:1002.210750px;}
.ya7{bottom:1005.090600px;}
.y8a{bottom:1008.150300px;}
.y3b{bottom:1022.550600px;}
.y63{bottom:1023.090600px;}
.y10a{bottom:1024.890600px;}
.yab{bottom:1026.150300px;}
.ye{bottom:1029.030150px;}
.y89{bottom:1029.210600px;}
.y3a{bottom:1043.610300px;}
.y62{bottom:1044.150300px;}
.yaa{bottom:1047.210600px;}
.y109{bottom:1050.990600px;}
.y39{bottom:1064.670600px;}
.y61{bottom:1065.210600px;}
.yd{bottom:1067.910000px;}
.y88{bottom:1068.090450px;}
.y108{bottom:1068.090600px;}
.y38{bottom:1085.550450px;}
.y60{bottom:1086.090450px;}
.y107{bottom:1094.010750px;}
.y37{bottom:1106.610150px;}
.y5f{bottom:1107.150150px;}
.yc{bottom:1107.330150px;}
.y106{bottom:1111.110150px;}
.y2{bottom:1168.200000px;}
.y36{bottom:1173.960000px;}
.y1{bottom:1191.780000px;}
.y35{bottom:1197.360000px;}
.h5{height:31.585078px;}
.hd{height:31.664557px;}
.he{height:31.666897px;}
.h6{height:38.008125px;}
.ha{height:40.842773px;}
.h3{height:43.905938px;}
.hc{height:45.170156px;}
.h7{height:45.199336px;}
.h4{height:47.736300px;}
.h2{height:49.148438px;}
.hb{height:50.100469px;}
.hf{height:54.390938px;}
.h9{height:54.507656px;}
.h8{height:60.418125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:339.330000px;}
.w3{width:339.555000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x5{left:102.773850px;}
.x3{left:106.416150px;}
.xd{left:148.895820px;}
.x1{left:178.770000px;}
.x11{left:179.850000px;}
.x6{left:183.818400px;}
.xf{left:212.970075px;}
.xa{left:221.070000px;}
.x7{left:229.538550px;}
.x4{left:299.738850px;}
.x2{left:388.335000px;}
.x12{left:408.854070px;}
.x10{left:413.895075px;}
.xe{left:436.395330px;}
.x8{left:446.475000px;}
.xc{left:625.064580px;}
.xb{left:650.624550px;}
@media print{
.v2{vertical-align:-10.881227pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.441653pt;}
.ls54{letter-spacing:-0.307200pt;}
.ls70{letter-spacing:-0.299733pt;}
.lsa{letter-spacing:-0.270933pt;}
.ls1a{letter-spacing:-0.262400pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls3a{letter-spacing:-0.204267pt;}
.ls3c{letter-spacing:-0.180267pt;}
.ls18{letter-spacing:-0.176000pt;}
.ls55{letter-spacing:-0.168533pt;}
.ls3b{letter-spacing:-0.160533pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls39{letter-spacing:-0.143467pt;}
.lse{letter-spacing:-0.112533pt;}
.ls19{letter-spacing:-0.096000pt;}
.ls12{letter-spacing:-0.088533pt;}
.ls27{letter-spacing:-0.080000pt;}
.ls45{letter-spacing:-0.033920pt;}
.ls52{letter-spacing:-0.024320pt;}
.ls11{letter-spacing:-0.001920pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.012427pt;}
.ls4f{letter-spacing:0.013440pt;}
.ls63{letter-spacing:0.014080pt;}
.ls14{letter-spacing:0.015147pt;}
.ls29{letter-spacing:0.019200pt;}
.lsc{letter-spacing:0.023040pt;}
.ls68{letter-spacing:0.036907pt;}
.ls6e{letter-spacing:0.067200pt;}
.ls2c{letter-spacing:0.079147pt;}
.ls56{letter-spacing:0.083467pt;}
.ls30{letter-spacing:0.091733pt;}
.ls6d{letter-spacing:0.092267pt;}
.ls5b{letter-spacing:0.101867pt;}
.ls67{letter-spacing:0.102187pt;}
.lsb{letter-spacing:0.109867pt;}
.ls65{letter-spacing:0.112533pt;}
.ls21{letter-spacing:0.127787pt;}
.ls6a{letter-spacing:0.157867pt;}
.ls6c{letter-spacing:0.167467pt;}
.ls40{letter-spacing:0.168320pt;}
.ls32{letter-spacing:0.174773pt;}
.ls2b{letter-spacing:0.176000pt;}
.ls61{letter-spacing:0.196053pt;}
.ls2f{letter-spacing:0.210773pt;}
.ls62{letter-spacing:0.213867pt;}
.lsd{letter-spacing:0.217600pt;}
.ls53{letter-spacing:0.220800pt;}
.ls3e{letter-spacing:0.229333pt;}
.ls3{letter-spacing:0.240533pt;}
.ls28{letter-spacing:0.254933pt;}
.ls2e{letter-spacing:0.272000pt;}
.ls4d{letter-spacing:0.274560pt;}
.ls6b{letter-spacing:0.278827pt;}
.ls4e{letter-spacing:0.281013pt;}
.ls50{letter-spacing:0.282133pt;}
.ls4c{letter-spacing:0.283093pt;}
.ls2a{letter-spacing:0.377600pt;}
.ls66{letter-spacing:0.404267pt;}
.ls51{letter-spacing:0.479467pt;}
.ls64{letter-spacing:0.560000pt;}
.ls46{letter-spacing:0.581333pt;}
.ls2d{letter-spacing:0.586667pt;}
.ls4{letter-spacing:0.592427pt;}
.ls44{letter-spacing:0.608000pt;}
.ls43{letter-spacing:0.613333pt;}
.ls25{letter-spacing:0.637653pt;}
.ls5d{letter-spacing:0.730667pt;}
.ls4a{letter-spacing:1.277227pt;}
.ls59{letter-spacing:1.279307pt;}
.ls22{letter-spacing:1.916853pt;}
.ls42{letter-spacing:1.918933pt;}
.ls37{letter-spacing:2.556427pt;}
.ls1f{letter-spacing:2.558507pt;}
.ls1e{letter-spacing:3.198080pt;}
.ls6f{letter-spacing:3.728000pt;}
.ls1d{letter-spacing:3.837653pt;}
.ls17{letter-spacing:4.224000pt;}
.ls16{letter-spacing:4.368000pt;}
.ls7{letter-spacing:4.432000pt;}
.ls3d{letter-spacing:4.477227pt;}
.ls41{letter-spacing:4.479307pt;}
.ls26{letter-spacing:5.116853pt;}
.ls60{letter-spacing:5.118933pt;}
.ls49{letter-spacing:5.756427pt;}
.ls36{letter-spacing:5.758507pt;}
.ls47{letter-spacing:6.398080pt;}
.ls20{letter-spacing:7.037653pt;}
.ls13{letter-spacing:7.679307pt;}
.ls69{letter-spacing:8.318933pt;}
.ls34{letter-spacing:8.956427pt;}
.ls33{letter-spacing:8.958507pt;}
.ls35{letter-spacing:9.116853pt;}
.ls5f{letter-spacing:9.486560pt;}
.ls1{letter-spacing:9.489173pt;}
.ls1c{letter-spacing:9.489813pt;}
.ls9{letter-spacing:9.493333pt;}
.ls5e{letter-spacing:9.550773pt;}
.ls1b{letter-spacing:9.552853pt;}
.ls23{letter-spacing:9.598080pt;}
.ls57{letter-spacing:9.758507pt;}
.ls0{letter-spacing:10.192427pt;}
.ls31{letter-spacing:10.237653pt;}
.ls24{letter-spacing:10.877227pt;}
.ls15{letter-spacing:12.158507pt;}
.ls6{letter-spacing:12.752853pt;}
.ls5a{letter-spacing:14.716853pt;}
.ls38{letter-spacing:15.998080pt;}
.ls48{letter-spacing:17.279307pt;}
.ls5{letter-spacing:17.392427pt;}
.ls5c{letter-spacing:21.118933pt;}
.ls3f{letter-spacing:22.398080pt;}
.ls58{letter-spacing:23.677227pt;}
.ls4b{letter-spacing:24.318933pt;}
.ws1{word-spacing:-21.061333pt;}
.wsf{word-spacing:-15.792000pt;}
.ws6{word-spacing:-14.955520pt;}
.ws16{word-spacing:-13.764480pt;}
.ws25{word-spacing:-13.532587pt;}
.ws9{word-spacing:-13.492480pt;}
.ws1c{word-spacing:-13.415253pt;}
.ws29{word-spacing:-13.361920pt;}
.ws20{word-spacing:-13.281387pt;}
.ws1a{word-spacing:-13.179520pt;}
.ws1f{word-spacing:-13.084053pt;}
.ws13{word-spacing:-13.056853pt;}
.ws1b{word-spacing:-13.031253pt;}
.ws22{word-spacing:-13.022720pt;}
.ws28{word-spacing:-13.015787pt;}
.ws15{word-spacing:-12.977920pt;}
.ws2d{word-spacing:-12.969387pt;}
.ws2a{word-spacing:-12.914453pt;}
.ws26{word-spacing:-12.903787pt;}
.ws2e{word-spacing:-12.894187pt;}
.ws2f{word-spacing:-12.869120pt;}
.ws14{word-spacing:-12.821120pt;}
.ws27{word-spacing:-12.816000pt;}
.ws12{word-spacing:-12.801920pt;}
.ws21{word-spacing:-12.777600pt;}
.ws1d{word-spacing:-12.768000pt;}
.ws1e{word-spacing:-12.721920pt;}
.ws17{word-spacing:-12.641387pt;}
.ws24{word-spacing:-12.633387pt;}
.ws18{word-spacing:-12.621653pt;}
.ws2b{word-spacing:-12.597653pt;}
.ws19{word-spacing:-12.539520pt;}
.ws2c{word-spacing:-12.502187pt;}
.ws23{word-spacing:-12.494720pt;}
.ws11{word-spacing:-12.096000pt;}
.ws10{word-spacing:-12.016000pt;}
.wsa{word-spacing:-11.568000pt;}
.ws8{word-spacing:-11.312000pt;}
.wsc{word-spacing:-10.334080pt;}
.wsd{word-spacing:-10.245547pt;}
.ws4{word-spacing:-9.451520pt;}
.ws3{word-spacing:-9.186453pt;}
.ws2{word-spacing:-9.055787pt;}
.ws5{word-spacing:-8.945920pt;}
.ws7{word-spacing:-8.778240pt;}
.wsb{word-spacing:-6.478080pt;}
.ws0{word-spacing:-2.256336pt;}
.wse{word-spacing:0.000000pt;}
._9{margin-left:-2.929363pt;}
._3{margin-left:-1.199219pt;}
._4{width:0.956119pt;}
._5{width:2.292315pt;}
._6{width:3.741405pt;}
._7{width:5.134069pt;}
._d{width:6.147156pt;}
._8{width:7.487672pt;}
._1{width:9.239925pt;}
._0{width:10.224048pt;}
._12{width:11.868483pt;}
._2{width:13.027099pt;}
._13{width:14.113095pt;}
._17{width:15.617976pt;}
._b{width:16.511114pt;}
._c{width:17.898725pt;}
._14{width:18.908735pt;}
._15{width:20.673091pt;}
._a{width:21.647783pt;}
._19{width:22.946583pt;}
._1b{width:24.276860pt;}
._18{width:25.186619pt;}
._10{width:26.238756pt;}
._11{width:27.203103pt;}
._1c{width:30.349333pt;}
._16{width:32.986831pt;}
._1a{width:34.084434pt;}
._f{width:115.345760pt;}
._e{width:118.813280pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.080267pt;}
.y7{bottom:2.080293pt;}
.y9{bottom:12.832347pt;}
.y6{bottom:12.832373pt;}
.y8{bottom:23.392240pt;}
.y5{bottom:23.392267pt;}
.y4{bottom:33.952133pt;}
.yb{bottom:40.640133pt;}
.y3{bottom:56.319733pt;}
.y34{bottom:125.311880pt;}
.yd0{bottom:136.028533pt;}
.ye9{bottom:138.748800pt;}
.y33{bottom:140.186360pt;}
.y105{bottom:140.667333pt;}
.y87{bottom:141.308533pt;}
.y32{bottom:149.466573pt;}
.ya6{bottom:154.748667pt;}
.ycf{bottom:154.748800pt;}
.ye8{bottom:157.308667pt;}
.y86{bottom:160.028267pt;}
.y5e{bottom:160.028400pt;}
.y31{bottom:161.626467pt;}
.y104{bottom:163.867333pt;}
.ya5{bottom:173.308533pt;}
.yce{bottom:173.308667pt;}
.ye7{bottom:176.028400pt;}
.y30{bottom:176.506667pt;}
.y85{bottom:178.748533pt;}
.y5d{bottom:178.748667pt;}
.y103{bottom:178.907467pt;}
.y2f{bottom:186.426933pt;}
.ya4{bottom:192.028267pt;}
.ycd{bottom:192.028400pt;}
.y84{bottom:197.308400pt;}
.y5c{bottom:197.308533pt;}
.y102{bottom:202.107467pt;}
.ya3{bottom:210.748533pt;}
.ycc{bottom:210.748667pt;}
.y12b{bottom:211.066667pt;}
.y2e{bottom:214.907200pt;}
.y83{bottom:216.028133pt;}
.y5b{bottom:216.028267pt;}
.y101{bottom:217.307467pt;}
.ya2{bottom:229.308400pt;}
.ycb{bottom:229.308533pt;}
.y2d{bottom:233.626933pt;}
.y12a{bottom:233.946933pt;}
.y82{bottom:234.748400pt;}
.y5a{bottom:234.748533pt;}
.y100{bottom:240.507467pt;}
.ya1{bottom:248.028133pt;}
.ye6{bottom:248.028267pt;}
.y2c{bottom:252.347200pt;}
.y81{bottom:253.308267pt;}
.y59{bottom:253.308400pt;}
.y129{bottom:257.306800pt;}
.yff{bottom:263.547600pt;}
.yca{bottom:264.028267pt;}
.ya0{bottom:266.748400pt;}
.ye5{bottom:266.748533pt;}
.y2b{bottom:270.907067pt;}
.ya9{bottom:272.028000pt;}
.y58{bottom:272.028133pt;}
.y128{bottom:280.346933pt;}
.yc9{bottom:282.748533pt;}
.y9f{bottom:285.308267pt;}
.ye4{bottom:285.308400pt;}
.yfe{bottom:286.747600pt;}
.y80{bottom:288.028000pt;}
.y2a{bottom:289.626800pt;}
.y57{bottom:290.748400pt;}
.yc8{bottom:301.348533pt;}
.y127{bottom:303.426667pt;}
.y9e{bottom:304.068133pt;}
.ye3{bottom:304.068267pt;}
.y7f{bottom:306.787867pt;}
.y29{bottom:308.386667pt;}
.y56{bottom:309.348400pt;}
.yfd{bottom:309.987200pt;}
.yc7{bottom:320.068267pt;}
.y9d{bottom:322.787867pt;}
.ye2{bottom:322.788000pt;}
.y7e{bottom:325.348267pt;}
.y126{bottom:326.626667pt;}
.y28{bottom:326.947067pt;}
.yfc{bottom:333.027333pt;}
.yc6{bottom:338.788000pt;}
.y9c{bottom:341.348267pt;}
.y7d{bottom:344.068000pt;}
.y55{bottom:344.068133pt;}
.y27{bottom:345.667333pt;}
.y125{bottom:349.826667pt;}
.yfb{bottom:356.227333pt;}
.yd8{bottom:357.348267pt;}
.yc5{bottom:357.348400pt;}
.y9b{bottom:360.068000pt;}
.y7c{bottom:362.787733pt;}
.y54{bottom:362.787867pt;}
.yfa{bottom:371.427333pt;}
.y124{bottom:373.026667pt;}
.yd7{bottom:376.068000pt;}
.yc4{bottom:376.068133pt;}
.y9a{bottom:378.787733pt;}
.y26{bottom:380.707467pt;}
.y7b{bottom:381.348133pt;}
.y53{bottom:381.348267pt;}
.yf9{bottom:394.467467pt;}
.yd6{bottom:394.787733pt;}
.yc3{bottom:394.787867pt;}
.y123{bottom:396.066800pt;}
.y99{bottom:397.348133pt;}
.ya8{bottom:400.067867pt;}
.y52{bottom:400.068000pt;}
.yf8{bottom:409.667467pt;}
.yd5{bottom:413.348133pt;}
.yc2{bottom:413.348267pt;}
.y25{bottom:415.587200pt;}
.y7a{bottom:416.067867pt;}
.y51{bottom:418.787733pt;}
.y122{bottom:419.266800pt;}
.y98{bottom:432.067867pt;}
.ye1{bottom:432.068000pt;}
.yf7{bottom:432.867467pt;}
.y79{bottom:434.787600pt;}
.y50{bottom:437.348133pt;}
.y121{bottom:442.466800pt;}
.yf6{bottom:447.907600pt;}
.yc1{bottom:448.068000pt;}
.y24{bottom:449.667467pt;}
.y97{bottom:450.787600pt;}
.ye0{bottom:450.787733pt;}
.y78{bottom:453.348000pt;}
.y120{bottom:465.506933pt;}
.yc0{bottom:466.787733pt;}
.y96{bottom:469.348000pt;}
.ydf{bottom:469.348133pt;}
.yf5{bottom:470.947733pt;}
.y77{bottom:472.067733pt;}
.y4f{bottom:472.067867pt;}
.y23{bottom:484.387200pt;}
.ybf{bottom:485.348133pt;}
.y95{bottom:488.067733pt;}
.yde{bottom:488.067867pt;}
.y11f{bottom:488.866800pt;}
.y76{bottom:490.787467pt;}
.y4e{bottom:490.787600pt;}
.yf4{bottom:494.147733pt;}
.y22{bottom:502.947600pt;}
.y11e{bottom:504.066800pt;}
.ybe{bottom:504.067867pt;}
.y94{bottom:506.787467pt;}
.y75{bottom:509.347867pt;}
.y4d{bottom:509.348000pt;}
.y21{bottom:521.667333pt;}
.ybd{bottom:522.787600pt;}
.yf3{bottom:525.187333pt;}
.y93{bottom:525.347867pt;}
.y11d{bottom:527.106933pt;}
.y74{bottom:528.067600pt;}
.y4c{bottom:528.067733pt;}
.y20{bottom:540.414267pt;}
.ybc{bottom:541.374533pt;}
.yf2{bottom:543.934267pt;}
.y92{bottom:544.094267pt;}
.y73{bottom:546.814533pt;}
.y4b{bottom:546.814667pt;}
.y11c{bottom:550.333467pt;}
.y1f{bottom:558.974133pt;}
.ybb{bottom:560.094267pt;}
.yf1{bottom:562.654000pt;}
.y91{bottom:562.814533pt;}
.y72{bottom:565.374400pt;}
.y4a{bottom:565.374533pt;}
.y11b{bottom:565.533467pt;}
.y1e{bottom:577.693867pt;}
.yba{bottom:578.814533pt;}
.yf0{bottom:581.214400pt;}
.y90{bottom:581.374400pt;}
.y71{bottom:584.094133pt;}
.y49{bottom:584.094267pt;}
.y11a{bottom:588.573600pt;}
.y1d{bottom:596.414133pt;}
.yb9{bottom:597.374400pt;}
.yef{bottom:599.934133pt;}
.y8f{bottom:600.094133pt;}
.y119{bottom:611.773600pt;}
.y1c{bottom:614.974000pt;}
.yb8{bottom:616.094133pt;}
.yee{bottom:618.653867pt;}
.y70{bottom:618.814400pt;}
.y48{bottom:618.814533pt;}
.y118{bottom:626.973600pt;}
.y1b{bottom:633.693733pt;}
.yb7{bottom:634.814400pt;}
.yed{bottom:637.214267pt;}
.y6f{bottom:637.374267pt;}
.y47{bottom:637.374400pt;}
.y117{bottom:650.013733pt;}
.y1a{bottom:652.414000pt;}
.yd4{bottom:653.374267pt;}
.yec{bottom:655.934000pt;}
.y6e{bottom:656.094000pt;}
.y46{bottom:656.094133pt;}
.y116{bottom:665.213733pt;}
.yb6{bottom:669.374267pt;}
.y19{bottom:670.973867pt;}
.yd3{bottom:672.094000pt;}
.yeb{bottom:674.653733pt;}
.y6d{bottom:674.814267pt;}
.y45{bottom:674.814400pt;}
.yb5{bottom:688.094000pt;}
.y115{bottom:688.413733pt;}
.y18{bottom:689.693600pt;}
.yd2{bottom:690.814267pt;}
.yea{bottom:693.214133pt;}
.y6c{bottom:693.374133pt;}
.y44{bottom:693.374267pt;}
.y114{bottom:703.453867pt;}
.yb4{bottom:706.814267pt;}
.y17{bottom:708.413867pt;}
.yd1{bottom:709.374133pt;}
.y6b{bottom:712.093867pt;}
.y43{bottom:712.094000pt;}
.yb3{bottom:725.374133pt;}
.y113{bottom:726.653333pt;}
.y16{bottom:726.973733pt;}
.y8e{bottom:728.093867pt;}
.y6a{bottom:730.814133pt;}
.y42{bottom:730.814267pt;}
.yb2{bottom:744.093867pt;}
.y15{bottom:745.693467pt;}
.y8d{bottom:746.814133pt;}
.y41{bottom:749.374133pt;}
.y112{bottom:749.853867pt;}
.yb1{bottom:762.814133pt;}
.y14{bottom:764.413733pt;}
.y69{bottom:765.374000pt;}
.y111{bottom:773.053333pt;}
.yb0{bottom:781.414133pt;}
.y13{bottom:783.013733pt;}
.y68{bottom:784.133867pt;}
.y40{bottom:784.134000pt;}
.y110{bottom:796.133600pt;}
.yaf{bottom:800.133867pt;}
.y12{bottom:801.733467pt;}
.y67{bottom:802.854133pt;}
.y10f{bottom:811.333600pt;}
.ydd{bottom:816.133867pt;}
.y3f{bottom:818.374133pt;}
.yae{bottom:818.854133pt;}
.y66{bottom:821.414000pt;}
.y10e{bottom:834.533600pt;}
.ydc{bottom:834.854133pt;}
.y11{bottom:836.773600pt;}
.yad{bottom:837.414000pt;}
.y65{bottom:840.133733pt;}
.y10d{bottom:849.573733pt;}
.y3e{bottom:852.934000pt;}
.ydb{bottom:853.414000pt;}
.yac{bottom:856.133733pt;}
.y8c{bottom:858.854000pt;}
.y10{bottom:871.013733pt;}
.y3d{bottom:871.653733pt;}
.yda{bottom:872.133733pt;}
.y10c{bottom:872.773733pt;}
.y64{bottom:874.854000pt;}
.y8b{bottom:877.413867pt;}
.yf{bottom:884.613733pt;}
.y10b{bottom:887.973733pt;}
.y3c{bottom:890.374000pt;}
.yd9{bottom:890.854000pt;}
.ya7{bottom:893.413867pt;}
.y8a{bottom:896.133600pt;}
.y3b{bottom:908.933867pt;}
.y63{bottom:909.413867pt;}
.y10a{bottom:911.013867pt;}
.yab{bottom:912.133600pt;}
.ye{bottom:914.693467pt;}
.y89{bottom:914.853867pt;}
.y3a{bottom:927.653600pt;}
.y62{bottom:928.133600pt;}
.yaa{bottom:930.853867pt;}
.y109{bottom:934.213867pt;}
.y39{bottom:946.373867pt;}
.y61{bottom:946.853867pt;}
.yd{bottom:949.253333pt;}
.y88{bottom:949.413733pt;}
.y108{bottom:949.413867pt;}
.y38{bottom:964.933733pt;}
.y60{bottom:965.413733pt;}
.y107{bottom:972.454000pt;}
.y37{bottom:983.653467pt;}
.y5f{bottom:984.133467pt;}
.yc{bottom:984.293467pt;}
.y106{bottom:987.653467pt;}
.y2{bottom:1038.400000pt;}
.y36{bottom:1043.520000pt;}
.y1{bottom:1059.360000pt;}
.y35{bottom:1064.320000pt;}
.h5{height:28.075625pt;}
.hd{height:28.146273pt;}
.he{height:28.148353pt;}
.h6{height:33.785000pt;}
.ha{height:36.304688pt;}
.h3{height:39.027500pt;}
.hc{height:40.151250pt;}
.h7{height:40.177188pt;}
.h4{height:42.432267pt;}
.h2{height:43.687500pt;}
.hb{height:44.533750pt;}
.hf{height:48.347500pt;}
.h9{height:48.451250pt;}
.h8{height:53.705000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:301.626667pt;}
.w3{width:301.826667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x5{left:91.354533pt;}
.x3{left:94.592133pt;}
.xd{left:132.351840pt;}
.x1{left:158.906667pt;}
.x11{left:159.866667pt;}
.x6{left:163.394133pt;}
.xf{left:189.306733pt;}
.xa{left:196.506667pt;}
.x7{left:204.034267pt;}
.x4{left:266.434533pt;}
.x2{left:345.186667pt;}
.x12{left:363.425840pt;}
.x10{left:367.906733pt;}
.xe{left:387.906960pt;}
.x8{left:396.866667pt;}
.xc{left:555.612960pt;}
.xb{left:578.332933pt;}
}




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