
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7f99416011143157b78c140e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.757812;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_e31e5e02175e33117258dd10.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.905762;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;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4b05d6b846f20f030555ce7f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;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_4a4aba33a599676f7af5f877.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_21516abb7d4d433d2d476281.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893555;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:ffe;src:url('chunks/assets/font_274be1be1a3f08870499f10d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3b18c0f2dd5db69efe64cf90.woff2')format("woff");}.fff{font-family:fff;line-height:1.002930;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:ff10;src:url('chunks/assets/font_6e863213a68944535488881b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.871094;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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321120px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000540px;}
.ls3{letter-spacing:27.025800px;}
.ls2{letter-spacing:52.309200px;}
.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;}
}
.ws3c{word-spacing:-36.000000px;}
.ws83{word-spacing:-30.240000px;}
.ws43{word-spacing:-30.000000px;}
.ws9a{word-spacing:-25.200000px;}
.ws34{word-spacing:-21.600000px;}
.ws48{word-spacing:-18.117432px;}
.ws19{word-spacing:-18.105768px;}
.ws1a{word-spacing:-18.105624px;}
.ws68{word-spacing:-18.093024px;}
.ws65{word-spacing:-18.082008px;}
.ws29{word-spacing:-18.081288px;}
.ws1e{word-spacing:-18.070776px;}
.ws22{word-spacing:-18.070632px;}
.ws52{word-spacing:-18.069552px;}
.ws14{word-spacing:-18.058608px;}
.ws6a{word-spacing:-18.047160px;}
.wsb{word-spacing:-18.046872px;}
.ws66{word-spacing:-18.046440px;}
.ws5{word-spacing:-18.046152px;}
.ws4{word-spacing:-18.035496px;}
.wsa{word-spacing:-18.035136px;}
.ws33{word-spacing:-18.023904px;}
.ws67{word-spacing:-18.023760px;}
.ws5a{word-spacing:-18.023472px;}
.ws2a{word-spacing:-18.023400px;}
.ws7{word-spacing:-18.022824px;}
.ws1c{word-spacing:-18.022680px;}
.ws35{word-spacing:-18.022536px;}
.ws6{word-spacing:-18.012653px;}
.ws15{word-spacing:-18.011736px;}
.ws71{word-spacing:-18.011016px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.988264px;}
.ws6c{word-spacing:-15.032400px;}
.ws6e{word-spacing:-15.026640px;}
.ws3a{word-spacing:-15.024300px;}
.ws6d{word-spacing:-15.022980px;}
.ws2d{word-spacing:-15.022860px;}
.ws40{word-spacing:-15.020640px;}
.ws6b{word-spacing:-15.018720px;}
.ws2e{word-spacing:-15.016380px;}
.ws3b{word-spacing:-15.011700px;}
.ws2c{word-spacing:-15.005580px;}
.ws5e{word-spacing:-14.003640px;}
.ws86{word-spacing:-14.000184px;}
.ws7c{word-spacing:-13.997808px;}
.ws64{word-spacing:-13.994424px;}
.ws78{word-spacing:-13.994280px;}
.ws5f{word-spacing:-13.988736px;}
.ws7f{word-spacing:-13.985784px;}
.ws88{word-spacing:-13.973904px;}
.ws89{word-spacing:-13.954464px;}
.ws7b{word-spacing:-13.924296px;}
.ws32{word-spacing:-13.594104px;}
.ws69{word-spacing:-13.582008px;}
.ws4e{word-spacing:-13.581144px;}
.ws20{word-spacing:-13.570704px;}
.ws50{word-spacing:-13.570632px;}
.ws2f{word-spacing:-13.569408px;}
.ws25{word-spacing:-13.557744px;}
.ws21{word-spacing:-13.554816px;}
.ws26{word-spacing:-13.547160px;}
.ws3e{word-spacing:-13.535136px;}
.ws4f{word-spacing:-13.534416px;}
.ws59{word-spacing:-13.523904px;}
.ws24{word-spacing:-13.523472px;}
.ws1b{word-spacing:-13.522680px;}
.ws44{word-spacing:-13.512024px;}
.ws11{word-spacing:-13.511736px;}
.ws13{word-spacing:-13.500144px;}
.ws8{word-spacing:-13.500000px;}
.ws5d{word-spacing:-13.497120px;}
.ws1{word-spacing:-11.992500px;}
.ws94{word-spacing:-11.680800px;}
.ws8b{word-spacing:-11.678460px;}
.ws8e{word-spacing:-11.676540px;}
.ws8c{word-spacing:-11.674200px;}
.ws9b{word-spacing:-11.649900px;}
.ws9c{word-spacing:-11.642280px;}
.ws9f{word-spacing:-11.634966px;}
.ws90{word-spacing:-11.629680px;}
.ws8a{word-spacing:-11.620740px;}
.ws93{word-spacing:-11.618687px;}
.ws8d{word-spacing:-11.205274px;}
.ws72{word-spacing:-10.526640px;}
.ws41{word-spacing:-10.518720px;}
.ws76{word-spacing:-9.500184px;}
.ws62{word-spacing:-9.487296px;}
.ws49{word-spacing:-9.468648px;}
.ws75{word-spacing:-9.462384px;}
.ws61{word-spacing:-9.454464px;}
.ws63{word-spacing:-9.340488px;}
.ws17{word-spacing:-9.107158px;}
.wsd{word-spacing:-9.105768px;}
.wsf{word-spacing:-9.058896px;}
.ws4d{word-spacing:-9.047304px;}
.ws28{word-spacing:-9.046872px;}
.ws31{word-spacing:-9.035424px;}
.ws53{word-spacing:-9.034416px;}
.ws58{word-spacing:-9.033288px;}
.ws57{word-spacing:-9.023904px;}
.ws37{word-spacing:-9.023472px;}
.ws4c{word-spacing:-9.022882px;}
.ws12{word-spacing:-9.022680px;}
.ws18{word-spacing:-9.022536px;}
.wsc{word-spacing:-9.011736px;}
.ws56{word-spacing:-9.000216px;}
.ws16{word-spacing:-8.999424px;}
.ws3d{word-spacing:-8.988600px;}
.ws92{word-spacing:-7.144620px;}
.ws8f{word-spacing:-7.129680px;}
.ws42{word-spacing:-6.024300px;}
.ws74{word-spacing:-6.018720px;}
.ws77{word-spacing:-5.000184px;}
.ws4a{word-spacing:-4.999043px;}
.ws87{word-spacing:-4.994280px;}
.ws85{word-spacing:-4.968648px;}
.ws80{word-spacing:-4.968504px;}
.ws7e{word-spacing:-4.924296px;}
.ws60{word-spacing:-4.899384px;}
.ws9{word-spacing:-4.535424px;}
.ws39{word-spacing:-4.523472px;}
.ws27{word-spacing:-4.522680px;}
.ws10{word-spacing:-4.511736px;}
.ws51{word-spacing:-4.500144px;}
.ws3f{word-spacing:-4.500000px;}
.ws36{word-spacing:-4.499424px;}
.ws4b{word-spacing:-3.117000px;}
.ws98{word-spacing:-2.680800px;}
.ws99{word-spacing:-2.678460px;}
.ws91{word-spacing:-2.676540px;}
.ws9e{word-spacing:-2.642280px;}
.ws2b{word-spacing:-1.516380px;}
.ws81{word-spacing:-0.494424px;}
.ws79{word-spacing:-0.494280px;}
.ws7d{word-spacing:-0.406440px;}
.ws30{word-spacing:-0.046872px;}
.ws70{word-spacing:-0.034560px;}
.ws5c{word-spacing:-0.023472px;}
.ws1f{word-spacing:-0.022680px;}
.wse{word-spacing:-0.011880px;}
.ws1d{word-spacing:-0.011736px;}
.ws0{word-spacing:0.000000px;}
.ws9d{word-spacing:1.821540px;}
.ws96{word-spacing:1.857720px;}
.ws97{word-spacing:1.860000px;}
.ws73{word-spacing:2.973360px;}
.ws23{word-spacing:4.441392px;}
.ws6f{word-spacing:4.442112px;}
.ws5b{word-spacing:4.477320px;}
.ws47{word-spacing:4.488264px;}
.ws95{word-spacing:6.321540px;}
.ws84{word-spacing:8.531496px;}
.ws7a{word-spacing:8.575992px;}
.ws45{word-spacing:8.918712px;}
.ws54{word-spacing:8.988264px;}
.ws46{word-spacing:9.001200px;}
.ws82{word-spacing:13.034592px;}
.ws55{word-spacing:13.446000px;}
.ws38{word-spacing:13.488264px;}
._2{margin-left:-16.854647px;}
._4{margin-left:-11.394581px;}
._1{margin-left:-9.984681px;}
._7{margin-left:-7.552881px;}
._a{margin-left:-6.525787px;}
._6{margin-left:-4.571195px;}
._3{margin-left:-3.528806px;}
._5{margin-left:-2.347119px;}
._0{margin-left:-1.252368px;}
._22{width:1.350645px;}
._8{width:2.699118px;}
._24{width:14.005721px;}
._19{width:16.271352px;}
._f{width:17.663832px;}
._9{width:18.966177px;}
._15{width:20.273526px;}
._1e{width:21.406264px;}
._d{width:22.477176px;}
._16{width:23.927300px;}
._1d{width:25.729818px;}
._b{width:26.988264px;}
._13{width:27.996327px;}
._17{width:29.216597px;}
._21{width:30.359202px;}
._e{width:31.476528px;}
._14{width:32.939092px;}
._1f{width:34.271352px;}
._c{width:35.964864px;}
._18{width:37.888061px;}
._11{width:40.487904px;}
._1c{width:41.748627px;}
._20{width:43.609507px;}
._12{width:44.988984px;}
._1a{width:49.511736px;}
._1b{width:54.139824px;}
._10{width:71.941392px;}
._23{width:87.374934px;}
.fc1{color:transparent;}
.fc2{color:rgb(24,24,24);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.850000px;}
.fs7{font-size:9.000000px;}
.fs2{font-size:10.800000px;}
.fs0{font-size:13.500000px;}
.fsa{font-size:43.200000px;}
.fs6{font-size:47.970000px;}
.fs5{font-size:54.000000px;}
.fsb{font-size:57.600000px;}
.fs9{font-size:60.000000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:90.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:3.375000px;}
.y1f{bottom:22.004850px;}
.y1c{bottom:22.236450px;}
.y1b{bottom:23.361450px;}
.y1a{bottom:48.111450px;}
.y19{bottom:51.486450px;}
.y18{bottom:80.736450px;}
.y17{bottom:109.986450px;}
.yd2{bottom:111.857550px;}
.y5b{bottom:124.882200px;}
.yaf{bottom:127.280100px;}
.y1{bottom:128.018550px;}
.yd1{bottom:129.106350px;}
.y40{bottom:131.781600px;}
.y16{bottom:139.236450px;}
.y77{bottom:141.528300px;}
.yed{bottom:145.967700px;}
.yd0{bottom:146.354550px;}
.y5a{bottom:155.929800px;}
.yae{bottom:160.239150px;}
.y3f{bottom:162.828600px;}
.ycf{bottom:163.603350px;}
.y92{bottom:164.990700px;}
.y15{bottom:168.486450px;}
.y76{bottom:172.575300px;}
.yce{bottom:180.851550px;}
.yad{bottom:191.954700px;}
.y3e{bottom:193.875600px;}
.yec{bottom:194.506800px;}
.y91{bottom:196.038300px;}
.y14{bottom:197.736450px;}
.y75{bottom:203.622300px;}
.y59{bottom:207.026550px;}
.ycd{bottom:209.098500px;}
.yac{bottom:223.002300px;}
.y58{bottom:224.274750px;}
.y3d{bottom:224.923200px;}
.y13{bottom:226.986450px;}
.y90{bottom:227.085900px;}
.yeb{bottom:230.196300px;}
.y74{bottom:234.669300px;}
.ycc{bottom:240.145500px;}
.y57{bottom:241.523550px;}
.yab{bottom:254.049900px;}
.y3c{bottom:255.970200px;}
.y12{bottom:256.236450px;}
.y8f{bottom:258.133500px;}
.y56{bottom:258.771750px;}
.y73{bottom:265.716900px;}
.yea{bottom:269.506800px;}
.ycb{bottom:271.193100px;}
.yaa{bottom:285.097500px;}
.y11{bottom:285.486450px;}
.y3b{bottom:287.017800px;}
.y8e{bottom:289.181100px;}
.y72{bottom:296.763900px;}
.yca{bottom:302.240100px;}
.y10{bottom:314.736450px;}
.ya9{bottom:316.145100px;}
.y3a{bottom:318.064800px;}
.y55{bottom:318.065700px;}
.y8d{bottom:320.228700px;}
.ye9{bottom:320.553750px;}
.y71{bottom:327.810900px;}
.yc9{bottom:333.287100px;}
.yf{bottom:343.986450px;}
.ya8{bottom:347.192700px;}
.y39{bottom:349.111800px;}
.y54{bottom:349.112700px;}
.y8c{bottom:351.276300px;}
.y70{bottom:358.857900px;}
.yc8{bottom:364.334100px;}
.ye{bottom:373.236450px;}
.ya7{bottom:378.240300px;}
.y38{bottom:380.158800px;}
.y53{bottom:380.159700px;}
.y8b{bottom:382.323900px;}
.ye8{bottom:386.471700px;}
.y6f{bottom:389.904900px;}
.yc7{bottom:395.381100px;}
.yd{bottom:402.486450px;}
.ya6{bottom:409.287900px;}
.y37{bottom:411.205800px;}
.y52{bottom:411.206700px;}
.y8a{bottom:413.371500px;}
.ye7{bottom:419.430750px;}
.y6e{bottom:420.951900px;}
.yc6{bottom:426.428100px;}
.yc{bottom:431.736450px;}
.ya5{bottom:440.335500px;}
.y36{bottom:442.252800px;}
.y51{bottom:442.253700px;}
.y89{bottom:444.419400px;}
.ye6{bottom:452.389800px;}
.yb{bottom:460.986450px;}
.y6d{bottom:462.001500px;}
.yc5{bottom:468.450300px;}
.ya4{bottom:471.383100px;}
.y35{bottom:473.299800px;}
.y50{bottom:473.300700px;}
.y88{bottom:475.467000px;}
.y6c{bottom:479.249700px;}
.ye5{bottom:485.348850px;}
.yc4{bottom:485.698500px;}
.ya{bottom:490.236450px;}
.y6b{bottom:496.498500px;}
.ya3{bottom:502.430700px;}
.yc3{bottom:502.946700px;}
.y34{bottom:504.346800px;}
.y4f{bottom:504.347700px;}
.y87{bottom:506.514450px;}
.y6a{bottom:513.746700px;}
.ye4{bottom:518.307900px;}
.y9{bottom:519.486450px;}
.yc2{bottom:520.194900px;}
.y69{bottom:530.995500px;}
.ya2{bottom:533.477700px;}
.y33{bottom:535.393800px;}
.y4e{bottom:535.395300px;}
.yc1{bottom:537.443700px;}
.y86{bottom:537.562050px;}
.y68{bottom:548.243700px;}
.y8{bottom:548.736450px;}
.ye3{bottom:551.266950px;}
.ya1{bottom:564.525300px;}
.y32{bottom:566.440800px;}
.y4d{bottom:566.442300px;}
.y85{bottom:569.851950px;}
.yc0{bottom:572.589450px;}
.y7{bottom:577.986450px;}
.ye2{bottom:584.226000px;}
.ybf{bottom:592.639050px;}
.ya0{bottom:595.572900px;}
.y31{bottom:597.487800px;}
.y4c{bottom:597.489300px;}
.y67{bottom:597.490500px;}
.y84{bottom:602.811000px;}
.y6{bottom:607.236450px;}
.yfb{bottom:609.849900px;}
.ye1{bottom:617.185050px;}
.ybe{bottom:620.885400px;}
.y9f{bottom:626.620500px;}
.yfa{bottom:628.160400px;}
.y30{bottom:628.534800px;}
.y4b{bottom:628.536300px;}
.y66{bottom:628.537500px;}
.ye0{bottom:650.144100px;}
.ybd{bottom:651.933000px;}
.y83{bottom:655.528950px;}
.y9e{bottom:657.667500px;}
.y2f{bottom:659.581800px;}
.y4a{bottom:659.583300px;}
.y65{bottom:659.584500px;}
.yf9{bottom:667.470900px;}
.ybc{bottom:682.980000px;}
.ydf{bottom:683.103150px;}
.y5{bottom:683.736450px;}
.y82{bottom:686.576550px;}
.y9d{bottom:688.715850px;}
.y2e{bottom:690.628800px;}
.y49{bottom:690.630300px;}
.y64{bottom:690.631500px;}
.ybb{bottom:714.027900px;}
.yde{bottom:716.062200px;}
.y81{bottom:717.623550px;}
.y9c{bottom:719.762850px;}
.y4{bottom:720.861450px;}
.y2d{bottom:721.675800px;}
.y48{bottom:721.677300px;}
.y63{bottom:721.678500px;}
.yf8{bottom:725.092050px;}
.yba{bottom:745.074900px;}
.y80{bottom:748.670550px;}
.ydd{bottom:749.021250px;}
.y9b{bottom:752.053800px;}
.y2c{bottom:752.722800px;}
.y47{bottom:752.724300px;}
.y62{bottom:752.725500px;}
.y3{bottom:759.111450px;}
.yf7{bottom:764.402550px;}
.yb9{bottom:776.121600px;}
.y7f{bottom:779.717550px;}
.ydc{bottom:781.980300px;}
.yf6{bottom:782.713050px;}
.y9a{bottom:783.768900px;}
.y2b{bottom:783.770400px;}
.y46{bottom:783.771300px;}
.y61{bottom:783.772500px;}
.y2{bottom:797.361450px;}
.yf5{bottom:801.023550px;}
.yb8{bottom:807.169200px;}
.y7e{bottom:810.764550px;}
.y99{bottom:814.815900px;}
.y45{bottom:814.818300px;}
.y60{bottom:814.819500px;}
.ydb{bottom:814.939350px;}
.y23{bottom:837.861450px;}
.yb7{bottom:838.216800px;}
.yf4{bottom:840.334050px;}
.y7d{bottom:841.811550px;}
.y98{bottom:845.862600px;}
.y44{bottom:845.865900px;}
.y5f{bottom:845.866500px;}
.yda{bottom:847.898400px;}
.y2a{bottom:866.563350px;}
.yb6{bottom:869.264400px;}
.y97{bottom:876.910200px;}
.y43{bottom:876.912900px;}
.y5e{bottom:876.913500px;}
.yf3{bottom:879.644550px;}
.yd9{bottom:880.857450px;}
.y7c{bottom:882.861150px;}
.y29{bottom:887.261550px;}
.yf2{bottom:897.955050px;}
.y7b{bottom:900.109350px;}
.yb5{bottom:900.312000px;}
.y96{bottom:907.957800px;}
.y28{bottom:907.959750px;}
.y42{bottom:907.959900px;}
.y5d{bottom:907.960500px;}
.yd8{bottom:913.816200px;}
.y7a{bottom:917.358150px;}
.y22{bottom:926.736450px;}
.yb4{bottom:931.359450px;}
.y79{bottom:934.606350px;}
.y95{bottom:939.005400px;}
.y41{bottom:939.006900px;}
.y5c{bottom:939.007500px;}
.yd7{bottom:946.775250px;}
.y78{bottom:951.855150px;}
.yf1{bottom:955.576200px;}
.y21{bottom:955.986450px;}
.yb3{bottom:963.650400px;}
.y94{bottom:970.053000px;}
.y27{bottom:970.054500px;}
.yd6{bottom:979.734300px;}
.y20{bottom:985.236450px;}
.yb2{bottom:996.609450px;}
.y93{bottom:1001.100900px;}
.y26{bottom:1001.101500px;}
.yf0{bottom:1010.507850px;}
.yb1{bottom:1029.568950px;}
.yd5{bottom:1031.499000px;}
.y25{bottom:1032.148500px;}
.yef{bottom:1047.129000px;}
.yd4{bottom:1048.747800px;}
.yb0{bottom:1062.528000px;}
.y24{bottom:1063.195500px;}
.yee{bottom:1065.439500px;}
.yd3{bottom:1065.996000px;}
.y1d{bottom:1225.755000px;}
.h7{height:5.557500px;}
.hb{height:8.550000px;}
.h5{height:10.260000px;}
.h3{height:12.825000px;}
.h9{height:14.625000px;}
.ha{height:32.955952px;}
.h8{height:39.788086px;}
.h10{height:41.689453px;}
.h18{height:47.503125px;}
.hf{height:48.796875px;}
.h17{height:49.482422px;}
.he{height:49.992188px;}
.hd{height:50.027344px;}
.h15{height:50.029744px;}
.h14{height:50.030944px;}
.h11{height:57.337526px;}
.h12{height:59.378906px;}
.h16{height:59.380106px;}
.h13{height:59.383106px;}
.h6{height:85.500000px;}
.h4{height:102.600000px;}
.h2{height:1007.736000px;}
.hc{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:59.625000px;}
.w3{width:129.375000px;}
.w4{width:762.750000px;}
.w2{width:807.907500px;}
.w5{width:832.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w7{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:9.052500px;}
.x2{left:14.625000px;}
.x4{left:26.982420px;}
.x7{left:36.000000px;}
.x1{left:42.750000px;}
.x9{left:48.849000px;}
.xc{left:108.000000px;}
.x11{left:113.625000px;}
.x8{left:129.375000px;}
.x10{left:135.000000px;}
.xd{left:152.578200px;}
.x16{left:172.125000px;}
.x3{left:211.921500px;}
.xf{left:235.126200px;}
.x12{left:239.199000px;}
.x14{left:246.696150px;}
.x5{left:264.391920px;}
.x13{left:270.000000px;}
.xe{left:413.744700px;}
.x15{left:425.623350px;}
.x6{left:509.677500px;}
.xa{left:832.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285440pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000480pt;}
.ls3{letter-spacing:24.022933pt;}
.ls2{letter-spacing:46.497067pt;}
.ws3c{word-spacing:-32.000000pt;}
.ws83{word-spacing:-26.880000pt;}
.ws43{word-spacing:-26.666667pt;}
.ws9a{word-spacing:-22.400000pt;}
.ws34{word-spacing:-19.200000pt;}
.ws48{word-spacing:-16.104384pt;}
.ws19{word-spacing:-16.094016pt;}
.ws1a{word-spacing:-16.093888pt;}
.ws68{word-spacing:-16.082688pt;}
.ws65{word-spacing:-16.072896pt;}
.ws29{word-spacing:-16.072256pt;}
.ws1e{word-spacing:-16.062912pt;}
.ws22{word-spacing:-16.062784pt;}
.ws52{word-spacing:-16.061824pt;}
.ws14{word-spacing:-16.052096pt;}
.ws6a{word-spacing:-16.041920pt;}
.wsb{word-spacing:-16.041664pt;}
.ws66{word-spacing:-16.041280pt;}
.ws5{word-spacing:-16.041024pt;}
.ws4{word-spacing:-16.031552pt;}
.wsa{word-spacing:-16.031232pt;}
.ws33{word-spacing:-16.021248pt;}
.ws67{word-spacing:-16.021120pt;}
.ws5a{word-spacing:-16.020864pt;}
.ws2a{word-spacing:-16.020800pt;}
.ws7{word-spacing:-16.020288pt;}
.ws1c{word-spacing:-16.020160pt;}
.ws35{word-spacing:-16.020032pt;}
.ws6{word-spacing:-16.011247pt;}
.ws15{word-spacing:-16.010432pt;}
.ws71{word-spacing:-16.009792pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.989568pt;}
.ws6c{word-spacing:-13.362133pt;}
.ws6e{word-spacing:-13.357013pt;}
.ws3a{word-spacing:-13.354933pt;}
.ws6d{word-spacing:-13.353760pt;}
.ws2d{word-spacing:-13.353653pt;}
.ws40{word-spacing:-13.351680pt;}
.ws6b{word-spacing:-13.349973pt;}
.ws2e{word-spacing:-13.347893pt;}
.ws3b{word-spacing:-13.343733pt;}
.ws2c{word-spacing:-13.338293pt;}
.ws5e{word-spacing:-12.447680pt;}
.ws86{word-spacing:-12.444608pt;}
.ws7c{word-spacing:-12.442496pt;}
.ws64{word-spacing:-12.439488pt;}
.ws78{word-spacing:-12.439360pt;}
.ws5f{word-spacing:-12.434432pt;}
.ws7f{word-spacing:-12.431808pt;}
.ws88{word-spacing:-12.421248pt;}
.ws89{word-spacing:-12.403968pt;}
.ws7b{word-spacing:-12.377152pt;}
.ws32{word-spacing:-12.083648pt;}
.ws69{word-spacing:-12.072896pt;}
.ws4e{word-spacing:-12.072128pt;}
.ws20{word-spacing:-12.062848pt;}
.ws50{word-spacing:-12.062784pt;}
.ws2f{word-spacing:-12.061696pt;}
.ws25{word-spacing:-12.051328pt;}
.ws21{word-spacing:-12.048725pt;}
.ws26{word-spacing:-12.041920pt;}
.ws3e{word-spacing:-12.031232pt;}
.ws4f{word-spacing:-12.030592pt;}
.ws59{word-spacing:-12.021248pt;}
.ws24{word-spacing:-12.020864pt;}
.ws1b{word-spacing:-12.020160pt;}
.ws44{word-spacing:-12.010688pt;}
.ws11{word-spacing:-12.010432pt;}
.ws13{word-spacing:-12.000128pt;}
.ws8{word-spacing:-12.000000pt;}
.ws5d{word-spacing:-11.997440pt;}
.ws1{word-spacing:-10.660000pt;}
.ws94{word-spacing:-10.382933pt;}
.ws8b{word-spacing:-10.380853pt;}
.ws8e{word-spacing:-10.379147pt;}
.ws8c{word-spacing:-10.377067pt;}
.ws9b{word-spacing:-10.355467pt;}
.ws9c{word-spacing:-10.348693pt;}
.ws9f{word-spacing:-10.342192pt;}
.ws90{word-spacing:-10.337493pt;}
.ws8a{word-spacing:-10.329547pt;}
.ws93{word-spacing:-10.327722pt;}
.ws8d{word-spacing:-9.960243pt;}
.ws72{word-spacing:-9.357013pt;}
.ws41{word-spacing:-9.349973pt;}
.ws76{word-spacing:-8.444608pt;}
.ws62{word-spacing:-8.433152pt;}
.ws49{word-spacing:-8.416576pt;}
.ws75{word-spacing:-8.411008pt;}
.ws61{word-spacing:-8.403968pt;}
.ws63{word-spacing:-8.302656pt;}
.ws17{word-spacing:-8.095251pt;}
.wsd{word-spacing:-8.094016pt;}
.wsf{word-spacing:-8.052352pt;}
.ws4d{word-spacing:-8.042048pt;}
.ws28{word-spacing:-8.041664pt;}
.ws31{word-spacing:-8.031488pt;}
.ws53{word-spacing:-8.030592pt;}
.ws58{word-spacing:-8.029589pt;}
.ws57{word-spacing:-8.021248pt;}
.ws37{word-spacing:-8.020864pt;}
.ws4c{word-spacing:-8.020339pt;}
.ws12{word-spacing:-8.020160pt;}
.ws18{word-spacing:-8.020032pt;}
.wsc{word-spacing:-8.010432pt;}
.ws56{word-spacing:-8.000192pt;}
.ws16{word-spacing:-7.999488pt;}
.ws3d{word-spacing:-7.989867pt;}
.ws92{word-spacing:-6.350773pt;}
.ws8f{word-spacing:-6.337493pt;}
.ws42{word-spacing:-5.354933pt;}
.ws74{word-spacing:-5.349973pt;}
.ws77{word-spacing:-4.444608pt;}
.ws4a{word-spacing:-4.443594pt;}
.ws87{word-spacing:-4.439360pt;}
.ws85{word-spacing:-4.416576pt;}
.ws80{word-spacing:-4.416448pt;}
.ws7e{word-spacing:-4.377152pt;}
.ws60{word-spacing:-4.355008pt;}
.ws9{word-spacing:-4.031488pt;}
.ws39{word-spacing:-4.020864pt;}
.ws27{word-spacing:-4.020160pt;}
.ws10{word-spacing:-4.010432pt;}
.ws51{word-spacing:-4.000128pt;}
.ws3f{word-spacing:-4.000000pt;}
.ws36{word-spacing:-3.999488pt;}
.ws4b{word-spacing:-2.770667pt;}
.ws98{word-spacing:-2.382933pt;}
.ws99{word-spacing:-2.380853pt;}
.ws91{word-spacing:-2.379147pt;}
.ws9e{word-spacing:-2.348693pt;}
.ws2b{word-spacing:-1.347893pt;}
.ws81{word-spacing:-0.439488pt;}
.ws79{word-spacing:-0.439360pt;}
.ws7d{word-spacing:-0.361280pt;}
.ws30{word-spacing:-0.041664pt;}
.ws70{word-spacing:-0.030720pt;}
.ws5c{word-spacing:-0.020864pt;}
.ws1f{word-spacing:-0.020160pt;}
.wse{word-spacing:-0.010560pt;}
.ws1d{word-spacing:-0.010432pt;}
.ws0{word-spacing:0.000000pt;}
.ws9d{word-spacing:1.619147pt;}
.ws96{word-spacing:1.651307pt;}
.ws97{word-spacing:1.653333pt;}
.ws73{word-spacing:2.642987pt;}
.ws23{word-spacing:3.947904pt;}
.ws6f{word-spacing:3.948544pt;}
.ws5b{word-spacing:3.979840pt;}
.ws47{word-spacing:3.989568pt;}
.ws95{word-spacing:5.619147pt;}
.ws84{word-spacing:7.583552pt;}
.ws7a{word-spacing:7.623104pt;}
.ws45{word-spacing:7.927744pt;}
.ws54{word-spacing:7.989568pt;}
.ws46{word-spacing:8.001067pt;}
.ws82{word-spacing:11.586304pt;}
.ws55{word-spacing:11.952000pt;}
.ws38{word-spacing:11.989568pt;}
._2{margin-left:-14.981909pt;}
._4{margin-left:-10.128516pt;}
._1{margin-left:-8.875272pt;}
._7{margin-left:-6.713672pt;}
._a{margin-left:-5.800700pt;}
._6{margin-left:-4.063284pt;}
._3{margin-left:-3.136716pt;}
._5{margin-left:-2.086328pt;}
._0{margin-left:-1.113216pt;}
._22{width:1.200573pt;}
._8{width:2.399216pt;}
._24{width:12.449530pt;}
._19{width:14.463424pt;}
._f{width:15.701184pt;}
._9{width:16.858824pt;}
._15{width:18.020912pt;}
._1e{width:19.027790pt;}
._d{width:19.979712pt;}
._16{width:21.268711pt;}
._1d{width:22.870950pt;}
._b{width:23.989568pt;}
._13{width:24.885624pt;}
._17{width:25.970308pt;}
._21{width:26.985957pt;}
._e{width:27.979136pt;}
._14{width:29.279193pt;}
._1f{width:30.463424pt;}
._c{width:31.968768pt;}
._18{width:33.678277pt;}
._11{width:35.989248pt;}
._1c{width:37.109891pt;}
._20{width:38.764006pt;}
._12{width:39.990208pt;}
._1a{width:44.010432pt;}
._1b{width:48.124288pt;}
._10{width:63.947904pt;}
._23{width:77.666608pt;}
.fs4{font-size:5.200000pt;}
.fs7{font-size:8.000000pt;}
.fs2{font-size:9.600000pt;}
.fs0{font-size:12.000000pt;}
.fsa{font-size:38.400000pt;}
.fs6{font-size:42.640000pt;}
.fs5{font-size:48.000000pt;}
.fsb{font-size:51.200000pt;}
.fs9{font-size:53.333333pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:80.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:3.000000pt;}
.y1f{bottom:19.559867pt;}
.y1c{bottom:19.765733pt;}
.y1b{bottom:20.765733pt;}
.y1a{bottom:42.765733pt;}
.y19{bottom:45.765733pt;}
.y18{bottom:71.765733pt;}
.y17{bottom:97.765733pt;}
.yd2{bottom:99.428933pt;}
.y5b{bottom:111.006400pt;}
.yaf{bottom:113.137867pt;}
.y1{bottom:113.794267pt;}
.yd1{bottom:114.761200pt;}
.y40{bottom:117.139200pt;}
.y16{bottom:123.765733pt;}
.y77{bottom:125.802933pt;}
.yed{bottom:129.749067pt;}
.yd0{bottom:130.092933pt;}
.y5a{bottom:138.604267pt;}
.yae{bottom:142.434800pt;}
.y3f{bottom:144.736533pt;}
.ycf{bottom:145.425200pt;}
.y92{bottom:146.658400pt;}
.y15{bottom:149.765733pt;}
.y76{bottom:153.400267pt;}
.yce{bottom:160.756933pt;}
.yad{bottom:170.626400pt;}
.y3e{bottom:172.333867pt;}
.yec{bottom:172.894933pt;}
.y91{bottom:174.256267pt;}
.y14{bottom:175.765733pt;}
.y75{bottom:180.997600pt;}
.y59{bottom:184.023600pt;}
.ycd{bottom:185.865333pt;}
.yac{bottom:198.224267pt;}
.y58{bottom:199.355333pt;}
.y3d{bottom:199.931733pt;}
.y13{bottom:201.765733pt;}
.y90{bottom:201.854133pt;}
.yeb{bottom:204.618933pt;}
.y74{bottom:208.594933pt;}
.ycc{bottom:213.462667pt;}
.y57{bottom:214.687600pt;}
.yab{bottom:225.822133pt;}
.y3c{bottom:227.529067pt;}
.y12{bottom:227.765733pt;}
.y8f{bottom:229.452000pt;}
.y56{bottom:230.019333pt;}
.y73{bottom:236.192800pt;}
.yea{bottom:239.561600pt;}
.ycb{bottom:241.060533pt;}
.yaa{bottom:253.420000pt;}
.y11{bottom:253.765733pt;}
.y3b{bottom:255.126933pt;}
.y8e{bottom:257.049867pt;}
.y72{bottom:263.790133pt;}
.yca{bottom:268.657867pt;}
.y10{bottom:279.765733pt;}
.ya9{bottom:281.017867pt;}
.y3a{bottom:282.724267pt;}
.y55{bottom:282.725067pt;}
.y8d{bottom:284.647733pt;}
.ye9{bottom:284.936667pt;}
.y71{bottom:291.387467pt;}
.yc9{bottom:296.255200pt;}
.yf{bottom:305.765733pt;}
.ya8{bottom:308.615733pt;}
.y39{bottom:310.321600pt;}
.y54{bottom:310.322400pt;}
.y8c{bottom:312.245600pt;}
.y70{bottom:318.984800pt;}
.yc8{bottom:323.852533pt;}
.ye{bottom:331.765733pt;}
.ya7{bottom:336.213600pt;}
.y38{bottom:337.918933pt;}
.y53{bottom:337.919733pt;}
.y8b{bottom:339.843467pt;}
.ye8{bottom:343.530400pt;}
.y6f{bottom:346.582133pt;}
.yc7{bottom:351.449867pt;}
.yd{bottom:357.765733pt;}
.ya6{bottom:363.811467pt;}
.y37{bottom:365.516267pt;}
.y52{bottom:365.517067pt;}
.y8a{bottom:367.441333pt;}
.ye7{bottom:372.827333pt;}
.y6e{bottom:374.179467pt;}
.yc6{bottom:379.047200pt;}
.yc{bottom:383.765733pt;}
.ya5{bottom:391.409333pt;}
.y36{bottom:393.113600pt;}
.y51{bottom:393.114400pt;}
.y89{bottom:395.039467pt;}
.ye6{bottom:402.124267pt;}
.yb{bottom:409.765733pt;}
.y6d{bottom:410.668000pt;}
.yc5{bottom:416.400267pt;}
.ya4{bottom:419.007200pt;}
.y35{bottom:420.710933pt;}
.y50{bottom:420.711733pt;}
.y88{bottom:422.637333pt;}
.y6c{bottom:425.999733pt;}
.ye5{bottom:431.421200pt;}
.yc4{bottom:431.732000pt;}
.ya{bottom:435.765733pt;}
.y6b{bottom:441.332000pt;}
.ya3{bottom:446.605067pt;}
.yc3{bottom:447.063733pt;}
.y34{bottom:448.308267pt;}
.y4f{bottom:448.309067pt;}
.y87{bottom:450.235067pt;}
.y6a{bottom:456.663733pt;}
.ye4{bottom:460.718133pt;}
.y9{bottom:461.765733pt;}
.yc2{bottom:462.395467pt;}
.y69{bottom:471.996000pt;}
.ya2{bottom:474.202400pt;}
.y33{bottom:475.905600pt;}
.y4e{bottom:475.906933pt;}
.yc1{bottom:477.727733pt;}
.y86{bottom:477.832933pt;}
.y68{bottom:487.327733pt;}
.y8{bottom:487.765733pt;}
.ye3{bottom:490.015067pt;}
.ya1{bottom:501.800267pt;}
.y32{bottom:503.502933pt;}
.y4d{bottom:503.504267pt;}
.y85{bottom:506.535067pt;}
.yc0{bottom:508.968400pt;}
.y7{bottom:513.765733pt;}
.ye2{bottom:519.312000pt;}
.ybf{bottom:526.790267pt;}
.ya0{bottom:529.398133pt;}
.y31{bottom:531.100267pt;}
.y4c{bottom:531.101600pt;}
.y67{bottom:531.102667pt;}
.y84{bottom:535.832000pt;}
.y6{bottom:539.765733pt;}
.yfb{bottom:542.088800pt;}
.ye1{bottom:548.608933pt;}
.ybe{bottom:551.898133pt;}
.y9f{bottom:556.996000pt;}
.yfa{bottom:558.364800pt;}
.y30{bottom:558.697600pt;}
.y4b{bottom:558.698933pt;}
.y66{bottom:558.700000pt;}
.ye0{bottom:577.905867pt;}
.ybd{bottom:579.496000pt;}
.y83{bottom:582.692400pt;}
.y9e{bottom:584.593333pt;}
.y2f{bottom:586.294933pt;}
.y4a{bottom:586.296267pt;}
.y65{bottom:586.297333pt;}
.yf9{bottom:593.307467pt;}
.ybc{bottom:607.093333pt;}
.ydf{bottom:607.202800pt;}
.y5{bottom:607.765733pt;}
.y82{bottom:610.290267pt;}
.y9d{bottom:612.191867pt;}
.y2e{bottom:613.892267pt;}
.y49{bottom:613.893600pt;}
.y64{bottom:613.894667pt;}
.ybb{bottom:634.691467pt;}
.yde{bottom:636.499733pt;}
.y81{bottom:637.887600pt;}
.y9c{bottom:639.789200pt;}
.y4{bottom:640.765733pt;}
.y2d{bottom:641.489600pt;}
.y48{bottom:641.490933pt;}
.y63{bottom:641.492000pt;}
.yf8{bottom:644.526267pt;}
.yba{bottom:662.288800pt;}
.y80{bottom:665.484933pt;}
.ydd{bottom:665.796667pt;}
.y9b{bottom:668.492267pt;}
.y2c{bottom:669.086933pt;}
.y47{bottom:669.088267pt;}
.y62{bottom:669.089333pt;}
.y3{bottom:674.765733pt;}
.yf7{bottom:679.468933pt;}
.yb9{bottom:689.885867pt;}
.y7f{bottom:693.082267pt;}
.ydc{bottom:695.093600pt;}
.yf6{bottom:695.744933pt;}
.y9a{bottom:696.683467pt;}
.y2b{bottom:696.684800pt;}
.y46{bottom:696.685600pt;}
.y61{bottom:696.686667pt;}
.y2{bottom:708.765733pt;}
.yf5{bottom:712.020933pt;}
.yb8{bottom:717.483733pt;}
.y7e{bottom:720.679600pt;}
.y99{bottom:724.280800pt;}
.y45{bottom:724.282933pt;}
.y60{bottom:724.284000pt;}
.ydb{bottom:724.390533pt;}
.y23{bottom:744.765733pt;}
.yb7{bottom:745.081600pt;}
.yf4{bottom:746.963600pt;}
.y7d{bottom:748.276933pt;}
.y98{bottom:751.877867pt;}
.y44{bottom:751.880800pt;}
.y5f{bottom:751.881333pt;}
.yda{bottom:753.687467pt;}
.y2a{bottom:770.278533pt;}
.yb6{bottom:772.679467pt;}
.y97{bottom:779.475733pt;}
.y43{bottom:779.478133pt;}
.y5e{bottom:779.478667pt;}
.yf3{bottom:781.906267pt;}
.yd9{bottom:782.984400pt;}
.y7c{bottom:784.765467pt;}
.y29{bottom:788.676933pt;}
.yf2{bottom:798.182267pt;}
.y7b{bottom:800.097200pt;}
.yb5{bottom:800.277333pt;}
.y96{bottom:807.073600pt;}
.y28{bottom:807.075333pt;}
.y42{bottom:807.075467pt;}
.y5d{bottom:807.076000pt;}
.yd8{bottom:812.281067pt;}
.y7a{bottom:815.429467pt;}
.y22{bottom:823.765733pt;}
.yb4{bottom:827.875067pt;}
.y79{bottom:830.761200pt;}
.y95{bottom:834.671467pt;}
.y41{bottom:834.672800pt;}
.y5c{bottom:834.673333pt;}
.yd7{bottom:841.578000pt;}
.y78{bottom:846.093467pt;}
.yf1{bottom:849.401067pt;}
.y21{bottom:849.765733pt;}
.yb3{bottom:856.578133pt;}
.y94{bottom:862.269333pt;}
.y27{bottom:862.270667pt;}
.yd6{bottom:870.874933pt;}
.y20{bottom:875.765733pt;}
.yb2{bottom:885.875067pt;}
.y93{bottom:889.867467pt;}
.y26{bottom:889.868000pt;}
.yf0{bottom:898.229200pt;}
.yb1{bottom:915.172400pt;}
.yd5{bottom:916.888000pt;}
.y25{bottom:917.465333pt;}
.yef{bottom:930.781333pt;}
.yd4{bottom:932.220267pt;}
.yb0{bottom:944.469333pt;}
.y24{bottom:945.062667pt;}
.yee{bottom:947.057333pt;}
.yd3{bottom:947.552000pt;}
.y1d{bottom:1089.560000pt;}
.h7{height:4.940000pt;}
.hb{height:7.600000pt;}
.h5{height:9.120000pt;}
.h3{height:11.400000pt;}
.h9{height:13.000000pt;}
.ha{height:29.294180pt;}
.h8{height:35.367188pt;}
.h10{height:37.057292pt;}
.h18{height:42.225000pt;}
.hf{height:43.375000pt;}
.h17{height:43.984375pt;}
.he{height:44.437500pt;}
.hd{height:44.468750pt;}
.h15{height:44.470883pt;}
.h14{height:44.471950pt;}
.h11{height:50.966690pt;}
.h12{height:52.781250pt;}
.h16{height:52.782317pt;}
.h13{height:52.784983pt;}
.h6{height:76.000000pt;}
.h4{height:91.200000pt;}
.h2{height:895.765333pt;}
.hc{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:53.000000pt;}
.w3{width:115.000000pt;}
.w4{width:678.000000pt;}
.w2{width:718.140000pt;}
.w5{width:740.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w7{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:8.046667pt;}
.x2{left:13.000000pt;}
.x4{left:23.984373pt;}
.x7{left:32.000000pt;}
.x1{left:38.000000pt;}
.x9{left:43.421333pt;}
.xc{left:96.000000pt;}
.x11{left:101.000000pt;}
.x8{left:115.000000pt;}
.x10{left:120.000000pt;}
.xd{left:135.625067pt;}
.x16{left:153.000000pt;}
.x3{left:188.374667pt;}
.xf{left:209.001067pt;}
.x12{left:212.621333pt;}
.x14{left:219.285467pt;}
.x5{left:235.015040pt;}
.x13{left:240.000000pt;}
.xe{left:367.773067pt;}
.x15{left:378.331867pt;}
.x6{left:453.046667pt;}
.xa{left:740.000000pt;}
}




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