
    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_95c65822e99aef6109d98c43.woff')format("woff");}.ff1{font-family:ff1;line-height:0.675293;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_c85818d62e2e4ff80d60efe5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.984863;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_3485a88297d7b050899e1033.woff')format("woff");}.ff3{font-family:ff3;line-height:0.984000;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_c5d3632d4f78f8e550b5f682.woff')format("woff");}.ff4{font-family:ff4;line-height:1.056000;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_ec8a93afcd67d1d0bd3babde.woff')format("woff");}.ff5{font-family:ff5;line-height:1.056000;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_9677655b2a025439025cf4be.woff')format("woff");}.ff6{font-family:ff6;line-height:0.979004;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_a4b3e247818f1b5898f14759.woff')format("woff");}.ff7{font-family:ff7;line-height:0.996000;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_6c34ecfef44d67cfd0ca6ad8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.008000;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;}
.ls2{letter-spacing:-6.132000px;}
.ls3{letter-spacing:-0.840000px;}
.ls4{letter-spacing:-0.660000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:20.064000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,242,0),0 0.015em rgb(255,242,0),0.015em 0 rgb(255,242,0),0 -0.015em  rgb(255,242,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,242,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-24.948000px;}
.ws0{word-spacing:-18.348000px;}
.ws2e{word-spacing:-6.006000px;}
.ws60{word-spacing:-4.872000px;}
.ws22{word-spacing:-4.554000px;}
.ws4b{word-spacing:-3.828000px;}
.ws3c{word-spacing:-3.564000px;}
.ws2{word-spacing:-3.498000px;}
.ws7a{word-spacing:-3.300000px;}
.ws58{word-spacing:-3.234000px;}
.ws6a{word-spacing:-3.168000px;}
.ws5f{word-spacing:-3.102000px;}
.ws5d{word-spacing:-3.036000px;}
.ws64{word-spacing:-2.904000px;}
.ws19{word-spacing:-2.838000px;}
.ws6e{word-spacing:-2.640000px;}
.ws41{word-spacing:-2.574000px;}
.ws56{word-spacing:-2.508000px;}
.ws5e{word-spacing:-2.376000px;}
.ws3a{word-spacing:-2.244000px;}
.ws54{word-spacing:-2.046000px;}
.ws7e{word-spacing:-1.914000px;}
.ws49{word-spacing:-1.848000px;}
.ws47{word-spacing:-1.716000px;}
.ws45{word-spacing:-1.650000px;}
.ws68{word-spacing:-1.584000px;}
.ws4f{word-spacing:-1.518000px;}
.ws26{word-spacing:-1.452000px;}
.ws32{word-spacing:-1.254000px;}
.ws5b{word-spacing:-1.188000px;}
.ws62{word-spacing:-1.056000px;}
.ws76{word-spacing:-0.990000px;}
.ws5a{word-spacing:-0.924000px;}
.ws5c{word-spacing:-0.858000px;}
.ws1b{word-spacing:-0.792000px;}
.ws12{word-spacing:-0.660000px;}
.ws70{word-spacing:-0.594000px;}
.ws51{word-spacing:-0.528000px;}
.ws77{word-spacing:-0.462000px;}
.ws10{word-spacing:-0.330000px;}
.wsc{word-spacing:-0.264000px;}
.ws24{word-spacing:-0.198000px;}
.ws23{word-spacing:-0.132000px;}
.ws6f{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.ws2b{word-spacing:0.066000px;}
.ws36{word-spacing:0.198000px;}
.ws53{word-spacing:0.264000px;}
.ws31{word-spacing:0.330000px;}
.ws67{word-spacing:0.528000px;}
.ws37{word-spacing:0.660000px;}
.ws65{word-spacing:0.924000px;}
.ws40{word-spacing:1.056000px;}
.ws35{word-spacing:1.122000px;}
.ws4e{word-spacing:1.188000px;}
.ws33{word-spacing:1.254000px;}
.ws4c{word-spacing:1.320000px;}
.ws3b{word-spacing:1.386000px;}
.ws52{word-spacing:1.518000px;}
.ws2f{word-spacing:1.584000px;}
.ws4d{word-spacing:1.716000px;}
.ws57{word-spacing:1.782000px;}
.ws3d{word-spacing:1.848000px;}
.ws16{word-spacing:1.914000px;}
.ws55{word-spacing:1.980000px;}
.ws2d{word-spacing:2.046000px;}
.ws50{word-spacing:2.112000px;}
.ws1f{word-spacing:2.178000px;}
.ws6d{word-spacing:2.310000px;}
.ws59{word-spacing:2.442000px;}
.ws79{word-spacing:2.508000px;}
.ws3e{word-spacing:2.574000px;}
.ws7f{word-spacing:2.772000px;}
.ws6c{word-spacing:2.838000px;}
.ws25{word-spacing:2.904000px;}
.ws61{word-spacing:3.036000px;}
.wsd{word-spacing:3.102000px;}
.ws48{word-spacing:3.300000px;}
.ws11{word-spacing:3.366000px;}
.ws1c{word-spacing:3.432000px;}
.ws8{word-spacing:3.498000px;}
.ws9{word-spacing:3.564000px;}
.ws1e{word-spacing:3.630000px;}
.ws44{word-spacing:3.696000px;}
.ws3f{word-spacing:3.762000px;}
.ws7b{word-spacing:4.026000px;}
.wse{word-spacing:4.158000px;}
.ws72{word-spacing:4.422000px;}
.ws21{word-spacing:4.554000px;}
.ws80{word-spacing:4.686000px;}
.ws15{word-spacing:4.818000px;}
.ws2a{word-spacing:5.148000px;}
.ws30{word-spacing:5.478000px;}
.ws20{word-spacing:5.610000px;}
.ws34{word-spacing:5.742000px;}
.ws38{word-spacing:5.808000px;}
.ws14{word-spacing:5.874000px;}
.ws69{word-spacing:5.940000px;}
.ws66{word-spacing:6.006000px;}
.ws39{word-spacing:6.132000px;}
.ws28{word-spacing:6.204000px;}
.ws74{word-spacing:6.270000px;}
.ws7{word-spacing:6.402000px;}
.ws18{word-spacing:6.534000px;}
.ws7c{word-spacing:6.600000px;}
.ws2c{word-spacing:6.666000px;}
.ws63{word-spacing:7.590000px;}
.ws13{word-spacing:7.656000px;}
.ws78{word-spacing:7.788000px;}
.ws75{word-spacing:7.986000px;}
.ws46{word-spacing:8.118000px;}
.ws29{word-spacing:8.382000px;}
.ws4a{word-spacing:8.448000px;}
.ws1d{word-spacing:8.514000px;}
.ws43{word-spacing:8.580000px;}
.ws71{word-spacing:8.844000px;}
.ws27{word-spacing:9.042000px;}
.ws42{word-spacing:10.098000px;}
.ws17{word-spacing:10.560000px;}
.ws3{word-spacing:11.814000px;}
.wsf{word-spacing:11.880000px;}
.ws73{word-spacing:13.530000px;}
.ws1a{word-spacing:16.896000px;}
.ws7d{word-spacing:17.028000px;}
.ws6{word-spacing:18.084000px;}
.ws4{word-spacing:20.064000px;}
.wsa{word-spacing:20.658000px;}
.wsb{word-spacing:21.780000px;}
.ws6b{word-spacing:1240.542000px;}
._4{margin-left:-18.796200px;}
._f{margin-left:-9.385200px;}
._6{margin-left:-8.191800px;}
._0{margin-left:-6.192000px;}
._5{margin-left:-4.849200px;}
._3{margin-left:-3.630000px;}
._2{margin-left:-1.886400px;}
._1{width:2.059200px;}
._10{width:3.168000px;}
._a{width:32.934000px;}
._7{width:36.696000px;}
._8{width:38.676000px;}
._b{width:39.864000px;}
._9{width:41.184000px;}
._e{width:413.208000px;}
._d{width:707.238000px;}
._c{width:943.434000px;}
.fc7{color:rgb(22,93,167);}
.fc8{color:rgb(35,36,37);}
.fc4{color:rgb(111,144,202);}
.fc3{color:transparent;}
.fc6{color:rgb(255,255,255);}
.fc2{color:rgb(46,42,43);}
.fc5{color:rgb(124,153,207);}
.fc1{color:rgb(31,97,171);}
.fc0{color:rgb(41,102,175);}
.fs3{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y17{bottom:71.467650px;}
.y11b{bottom:121.037100px;}
.y3b{bottom:132.858750px;}
.y14{bottom:133.352550px;}
.y1{bottom:136.896000px;}
.y11a{bottom:142.041600px;}
.yb1{bottom:143.411700px;}
.y66{bottom:147.305100px;}
.yf6{bottom:149.118300px;}
.y3a{bottom:153.863250px;}
.y8e{bottom:157.397550px;}
.y119{bottom:163.046100px;}
.yb0{bottom:164.416200px;}
.y65{bottom:168.309600px;}
.yf5{bottom:170.122800px;}
.y39{bottom:174.867750px;}
.y8d{bottom:178.402050px;}
.yaf{bottom:185.420700px;}
.y64{bottom:189.314100px;}
.yf4{bottom:191.127300px;}
.yd2{bottom:193.489950px;}
.y38{bottom:195.872250px;}
.y118{bottom:196.805100px;}
.y8c{bottom:199.406550px;}
.y63{bottom:210.318600px;}
.yf3{bottom:212.131800px;}
.yd1{bottom:214.494450px;}
.y37{bottom:216.876750px;}
.y117{bottom:217.809600px;}
.yae{bottom:219.179700px;}
.y8b{bottom:220.411050px;}
.y62{bottom:231.323100px;}
.y13{bottom:235.808400px;}
.y116{bottom:238.814100px;}
.yad{bottom:240.184200px;}
.yd0{bottom:248.253450px;}
.yf2{bottom:250.139700px;}
.y61{bottom:252.327600px;}
.y8a{bottom:254.170050px;}
.y12{bottom:256.775250px;}
.y36{bottom:259.136550px;}
.y115{bottom:272.573100px;}
.y60{bottom:273.332100px;}
.yac{bottom:273.943200px;}
.y89{bottom:275.174550px;}
.y11{bottom:277.779750px;}
.ycf{bottom:282.012450px;}
.y114{bottom:293.577600px;}
.y5f{bottom:294.336600px;}
.yab{bottom:294.947700px;}
.y88{bottom:296.179050px;}
.y10{bottom:298.784250px;}
.yf1{bottom:299.642400px;}
.yce{bottom:303.016950px;}
.y35{bottom:308.585100px;}
.yaa{bottom:315.952200px;}
.y87{bottom:317.183550px;}
.yf0{bottom:320.646900px;}
.y113{bottom:327.336600px;}
.y5e{bottom:328.095600px;}
.ycd{bottom:328.261950px;}
.y34{bottom:329.589600px;}
.ya9{bottom:336.956700px;}
.y86{bottom:338.188050px;}
.yef{bottom:341.651400px;}
.y112{bottom:348.341100px;}
.y5d{bottom:349.100100px;}
.ycc{bottom:353.506950px;}
.y33{bottom:363.348600px;}
.y111{bottom:369.345600px;}
.y5c{bottom:370.104600px;}
.y85{bottom:371.947050px;}
.ycb{bottom:378.751950px;}
.ya8{bottom:379.216500px;}
.yee{bottom:379.659450px;}
.y32{bottom:384.353100px;}
.y5b{bottom:391.109100px;}
.y84{bottom:392.951550px;}
.y110{bottom:403.104600px;}
.yca{bottom:403.996950px;}
.y31{bottom:405.357600px;}
.y5a{bottom:412.113600px;}
.y83{bottom:413.956050px;}
.y10f{bottom:424.109100px;}
.yed{bottom:429.116850px;}
.ya7{bottom:432.986100px;}
.y59{bottom:433.118100px;}
.yc9{bottom:433.498950px;}
.y82{bottom:434.960550px;}
.y30{bottom:439.116600px;}
.y10e{bottom:445.113600px;}
.yec{bottom:450.121350px;}
.ya6{bottom:453.990600px;}
.y58{bottom:454.122600px;}
.y81{bottom:455.965050px;}
.y2f{bottom:460.121100px;}
.yc8{bottom:467.257950px;}
.ya5{bottom:474.995100px;}
.y57{bottom:475.127100px;}
.y80{bottom:476.969550px;}
.y10d{bottom:478.872600px;}
.y2e{bottom:481.125600px;}
.yf{bottom:481.521750px;}
.yeb{bottom:483.880350px;}
.yc7{bottom:492.502950px;}
.y7f{bottom:497.974050px;}
.y10c{bottom:499.877100px;}
.y2d{bottom:502.130100px;}
.ye{bottom:502.526250px;}
.yea{bottom:504.884850px;}
.ya4{bottom:508.754100px;}
.y56{bottom:508.886100px;}
.yc6{bottom:513.507450px;}
.y10b{bottom:520.881600px;}
.y2c{bottom:523.134600px;}
.yd{bottom:523.530750px;}
.ye9{bottom:525.889350px;}
.y55{bottom:529.890600px;}
.y7e{bottom:531.733050px;}
.ya3{bottom:533.999100px;}
.yc5{bottom:538.752450px;}
.y2b{bottom:544.139100px;}
.ye8{bottom:546.893850px;}
.y7d{bottom:552.737550px;}
.yc{bottom:553.032750px;}
.y10a{bottom:554.640600px;}
.ya2{bottom:555.003600px;}
.y54{bottom:563.649600px;}
.yc4{bottom:563.997450px;}
.y7c{bottom:573.742050px;}
.yb{bottom:574.037250px;}
.y109{bottom:575.645100px;}
.y2a{bottom:577.898100px;}
.ya1{bottom:580.248600px;}
.ye7{bottom:580.652850px;}
.y53{bottom:584.654100px;}
.yc3{bottom:589.242450px;}
.y7b{bottom:594.746550px;}
.ya{bottom:595.041750px;}
.y29{bottom:598.902600px;}
.ya0{bottom:601.253100px;}
.ye6{bottom:601.657350px;}
.y52{bottom:605.658600px;}
.y108{bottom:609.404100px;}
.yc2{bottom:614.487450px;}
.y28{bottom:619.907100px;}
.ye5{bottom:622.661850px;}
.y9{bottom:624.543750px;}
.y9f{bottom:626.498100px;}
.y51{bottom:626.663100px;}
.y7a{bottom:628.505550px;}
.y107{bottom:630.408600px;}
.y27{bottom:640.911600px;}
.ye4{bottom:643.666350px;}
.yc1{bottom:643.989450px;}
.y8{bottom:645.548250px;}
.y9e{bottom:647.502600px;}
.y50{bottom:647.667600px;}
.y79{bottom:649.510050px;}
.y26{bottom:661.916100px;}
.y106{bottom:664.167600px;}
.ye3{bottom:664.670850px;}
.y7{bottom:666.552750px;}
.y4f{bottom:668.672100px;}
.y78{bottom:670.514550px;}
.y9d{bottom:672.747600px;}
.yc0{bottom:677.748450px;}
.y105{bottom:685.172100px;}
.ye2{bottom:685.675350px;}
.y77{bottom:691.519050px;}
.y6{bottom:691.797750px;}
.y9c{bottom:697.992600px;}
.y4e{bottom:702.431100px;}
.ybf{bottom:702.993450px;}
.y25{bottom:704.175900px;}
.y104{bottom:706.176600px;}
.y76{bottom:712.523550px;}
.y5{bottom:712.802250px;}
.ye1{bottom:719.434350px;}
.y9b{bottom:723.237600px;}
.y4d{bottom:723.435600px;}
.ybe{bottom:728.238450px;}
.y4{bottom:733.806750px;}
.y103{bottom:739.935600px;}
.ye0{bottom:740.438850px;}
.y4c{bottom:744.440100px;}
.y75{bottom:746.282550px;}
.y9a{bottom:752.739600px;}
.ybd{bottom:753.483450px;}
.y102{bottom:760.940100px;}
.y4b{bottom:765.444600px;}
.y74{bottom:767.287050px;}
.y99{bottom:773.744100px;}
.ybc{bottom:774.487950px;}
.ydf{bottom:778.446750px;}
.y101{bottom:781.944600px;}
.y4a{bottom:786.449100px;}
.y73{bottom:788.291550px;}
.y98{bottom:794.748600px;}
.ybb{bottom:799.732950px;}
.y49{bottom:807.453600px;}
.y24{bottom:814.840650px;}
.y100{bottom:815.703600px;}
.y3{bottom:818.598300px;}
.y72{bottom:822.050550px;}
.yba{bottom:824.977950px;}
.yde{bottom:827.928600px;}
.y97{bottom:828.507600px;}
.y23{bottom:835.845150px;}
.yff{bottom:836.708100px;}
.y48{bottom:841.212600px;}
.y71{bottom:843.055050px;}
.ydd{bottom:848.933100px;}
.y96{bottom:849.512100px;}
.yb9{bottom:854.479950px;}
.y2{bottom:857.586300px;}
.yfe{bottom:857.712600px;}
.y47{bottom:862.217100px;}
.y70{bottom:864.059550px;}
.y22{bottom:869.601000px;}
.ydc{bottom:869.937600px;}
.y46{bottom:883.221600px;}
.y95{bottom:883.271100px;}
.yb8{bottom:888.238950px;}
.yfd{bottom:891.471600px;}
.y6f{bottom:897.818550px;}
.ydb{bottom:903.696600px;}
.y94{bottom:908.516100px;}
.yb7{bottom:909.243450px;}
.yfc{bottom:912.476100px;}
.y45{bottom:916.980600px;}
.y6e{bottom:918.823050px;}
.y21{bottom:919.076850px;}
.yda{bottom:924.701100px;}
.y93{bottom:929.520600px;}
.yb6{bottom:930.247950px;}
.yfb{bottom:933.480600px;}
.y44{bottom:937.985100px;}
.y6d{bottom:939.827550px;}
.y20{bottom:940.081350px;}
.yd9{bottom:945.705600px;}
.yfa{bottom:954.485100px;}
.y92{bottom:954.765600px;}
.y43{bottom:958.989600px;}
.y6c{bottom:960.832050px;}
.y1f{bottom:961.085850px;}
.yd8{bottom:966.710100px;}
.yb5{bottom:972.507750px;}
.y42{bottom:979.994100px;}
.y91{bottom:980.010600px;}
.y6b{bottom:981.836550px;}
.y1e{bottom:982.090350px;}
.yd7{bottom:987.714600px;}
.yf9{bottom:988.244100px;}
.y41{bottom:1000.998600px;}
.y6a{bottom:1002.841050px;}
.y1d{bottom:1003.094850px;}
.y90{bottom:1005.255600px;}
.yf8{bottom:1009.248600px;}
.yb4{bottom:1022.003100px;}
.y1c{bottom:1024.099350px;}
.y8f{bottom:1026.260100px;}
.y40{bottom:1034.757600px;}
.y69{bottom:1036.600050px;}
.yd6{bottom:1040.820750px;}
.yb3{bottom:1043.007600px;}
.y1b{bottom:1045.103850px;}
.y3f{bottom:1055.762100px;}
.y68{bottom:1057.604550px;}
.yb2{bottom:1064.012100px;}
.y1a{bottom:1066.108350px;}
.yd5{bottom:1066.335750px;}
.y3e{bottom:1076.766600px;}
.y67{bottom:1078.609050px;}
.yf7{bottom:1085.016600px;}
.y19{bottom:1087.112850px;}
.yd4{bottom:1091.850750px;}
.y3d{bottom:1097.771100px;}
.yd3{bottom:1117.365750px;}
.y3c{bottom:1118.775600px;}
.y18{bottom:1120.868850px;}
.y16{bottom:1180.236150px;}
.y15{bottom:1198.231650px;}
.h7{height:40.500000px;}
.h9{height:40.824000px;}
.ha{height:41.472000px;}
.h4{height:49.896000px;}
.h5{height:50.688000px;}
.h6{height:50.838600px;}
.h2{height:55.986328px;}
.h8{height:63.000000px;}
.h3{height:108.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:106.299150px;}
.xb{left:112.674150px;}
.x5{left:126.858150px;}
.x9{left:128.805150px;}
.xa{left:151.311150px;}
.x2{left:157.071150px;}
.x7{left:370.480650px;}
.x3{left:376.311150px;}
.x6{left:475.389150px;}
.x8{left:816.378000px;}
.x1{left:826.065600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-5.450667pt;}
.ls3{letter-spacing:-0.746667pt;}
.ls4{letter-spacing:-0.586667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:17.834667pt;}
.ws5{word-spacing:-22.176000pt;}
.ws0{word-spacing:-16.309333pt;}
.ws2e{word-spacing:-5.338667pt;}
.ws60{word-spacing:-4.330667pt;}
.ws22{word-spacing:-4.048000pt;}
.ws4b{word-spacing:-3.402667pt;}
.ws3c{word-spacing:-3.168000pt;}
.ws2{word-spacing:-3.109333pt;}
.ws7a{word-spacing:-2.933333pt;}
.ws58{word-spacing:-2.874667pt;}
.ws6a{word-spacing:-2.816000pt;}
.ws5f{word-spacing:-2.757333pt;}
.ws5d{word-spacing:-2.698667pt;}
.ws64{word-spacing:-2.581333pt;}
.ws19{word-spacing:-2.522667pt;}
.ws6e{word-spacing:-2.346667pt;}
.ws41{word-spacing:-2.288000pt;}
.ws56{word-spacing:-2.229333pt;}
.ws5e{word-spacing:-2.112000pt;}
.ws3a{word-spacing:-1.994667pt;}
.ws54{word-spacing:-1.818667pt;}
.ws7e{word-spacing:-1.701333pt;}
.ws49{word-spacing:-1.642667pt;}
.ws47{word-spacing:-1.525333pt;}
.ws45{word-spacing:-1.466667pt;}
.ws68{word-spacing:-1.408000pt;}
.ws4f{word-spacing:-1.349333pt;}
.ws26{word-spacing:-1.290667pt;}
.ws32{word-spacing:-1.114667pt;}
.ws5b{word-spacing:-1.056000pt;}
.ws62{word-spacing:-0.938667pt;}
.ws76{word-spacing:-0.880000pt;}
.ws5a{word-spacing:-0.821333pt;}
.ws5c{word-spacing:-0.762667pt;}
.ws1b{word-spacing:-0.704000pt;}
.ws12{word-spacing:-0.586667pt;}
.ws70{word-spacing:-0.528000pt;}
.ws51{word-spacing:-0.469333pt;}
.ws77{word-spacing:-0.410667pt;}
.ws10{word-spacing:-0.293333pt;}
.wsc{word-spacing:-0.234667pt;}
.ws24{word-spacing:-0.176000pt;}
.ws23{word-spacing:-0.117333pt;}
.ws6f{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.058667pt;}
.ws36{word-spacing:0.176000pt;}
.ws53{word-spacing:0.234667pt;}
.ws31{word-spacing:0.293333pt;}
.ws67{word-spacing:0.469333pt;}
.ws37{word-spacing:0.586667pt;}
.ws65{word-spacing:0.821333pt;}
.ws40{word-spacing:0.938667pt;}
.ws35{word-spacing:0.997333pt;}
.ws4e{word-spacing:1.056000pt;}
.ws33{word-spacing:1.114667pt;}
.ws4c{word-spacing:1.173333pt;}
.ws3b{word-spacing:1.232000pt;}
.ws52{word-spacing:1.349333pt;}
.ws2f{word-spacing:1.408000pt;}
.ws4d{word-spacing:1.525333pt;}
.ws57{word-spacing:1.584000pt;}
.ws3d{word-spacing:1.642667pt;}
.ws16{word-spacing:1.701333pt;}
.ws55{word-spacing:1.760000pt;}
.ws2d{word-spacing:1.818667pt;}
.ws50{word-spacing:1.877333pt;}
.ws1f{word-spacing:1.936000pt;}
.ws6d{word-spacing:2.053333pt;}
.ws59{word-spacing:2.170667pt;}
.ws79{word-spacing:2.229333pt;}
.ws3e{word-spacing:2.288000pt;}
.ws7f{word-spacing:2.464000pt;}
.ws6c{word-spacing:2.522667pt;}
.ws25{word-spacing:2.581333pt;}
.ws61{word-spacing:2.698667pt;}
.wsd{word-spacing:2.757333pt;}
.ws48{word-spacing:2.933333pt;}
.ws11{word-spacing:2.992000pt;}
.ws1c{word-spacing:3.050667pt;}
.ws8{word-spacing:3.109333pt;}
.ws9{word-spacing:3.168000pt;}
.ws1e{word-spacing:3.226667pt;}
.ws44{word-spacing:3.285333pt;}
.ws3f{word-spacing:3.344000pt;}
.ws7b{word-spacing:3.578667pt;}
.wse{word-spacing:3.696000pt;}
.ws72{word-spacing:3.930667pt;}
.ws21{word-spacing:4.048000pt;}
.ws80{word-spacing:4.165333pt;}
.ws15{word-spacing:4.282667pt;}
.ws2a{word-spacing:4.576000pt;}
.ws30{word-spacing:4.869333pt;}
.ws20{word-spacing:4.986667pt;}
.ws34{word-spacing:5.104000pt;}
.ws38{word-spacing:5.162667pt;}
.ws14{word-spacing:5.221333pt;}
.ws69{word-spacing:5.280000pt;}
.ws66{word-spacing:5.338667pt;}
.ws39{word-spacing:5.450667pt;}
.ws28{word-spacing:5.514667pt;}
.ws74{word-spacing:5.573333pt;}
.ws7{word-spacing:5.690667pt;}
.ws18{word-spacing:5.808000pt;}
.ws7c{word-spacing:5.866667pt;}
.ws2c{word-spacing:5.925333pt;}
.ws63{word-spacing:6.746667pt;}
.ws13{word-spacing:6.805333pt;}
.ws78{word-spacing:6.922667pt;}
.ws75{word-spacing:7.098667pt;}
.ws46{word-spacing:7.216000pt;}
.ws29{word-spacing:7.450667pt;}
.ws4a{word-spacing:7.509333pt;}
.ws1d{word-spacing:7.568000pt;}
.ws43{word-spacing:7.626667pt;}
.ws71{word-spacing:7.861333pt;}
.ws27{word-spacing:8.037333pt;}
.ws42{word-spacing:8.976000pt;}
.ws17{word-spacing:9.386667pt;}
.ws3{word-spacing:10.501333pt;}
.wsf{word-spacing:10.560000pt;}
.ws73{word-spacing:12.026667pt;}
.ws1a{word-spacing:15.018667pt;}
.ws7d{word-spacing:15.136000pt;}
.ws6{word-spacing:16.074667pt;}
.ws4{word-spacing:17.834667pt;}
.wsa{word-spacing:18.362667pt;}
.wsb{word-spacing:19.360000pt;}
.ws6b{word-spacing:1102.704000pt;}
._4{margin-left:-16.707733pt;}
._f{margin-left:-8.342400pt;}
._6{margin-left:-7.281600pt;}
._0{margin-left:-5.504000pt;}
._5{margin-left:-4.310400pt;}
._3{margin-left:-3.226667pt;}
._2{margin-left:-1.676800pt;}
._1{width:1.830400pt;}
._10{width:2.816000pt;}
._a{width:29.274667pt;}
._7{width:32.618667pt;}
._8{width:34.378667pt;}
._b{width:35.434667pt;}
._9{width:36.608000pt;}
._e{width:367.296000pt;}
._d{width:628.656000pt;}
._c{width:838.608000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:63.526800pt;}
.y11b{bottom:107.588533pt;}
.y3b{bottom:118.096667pt;}
.y14{bottom:118.535600pt;}
.y1{bottom:121.685333pt;}
.y11a{bottom:126.259200pt;}
.yb1{bottom:127.477067pt;}
.y66{bottom:130.937867pt;}
.yf6{bottom:132.549600pt;}
.y3a{bottom:136.767333pt;}
.y8e{bottom:139.908933pt;}
.y119{bottom:144.929867pt;}
.yb0{bottom:146.147733pt;}
.y65{bottom:149.608533pt;}
.yf5{bottom:151.220267pt;}
.y39{bottom:155.438000pt;}
.y8d{bottom:158.579600pt;}
.yaf{bottom:164.818400pt;}
.y64{bottom:168.279200pt;}
.yf4{bottom:169.890933pt;}
.yd2{bottom:171.991067pt;}
.y38{bottom:174.108667pt;}
.y118{bottom:174.937867pt;}
.y8c{bottom:177.250267pt;}
.y63{bottom:186.949867pt;}
.yf3{bottom:188.561600pt;}
.yd1{bottom:190.661733pt;}
.y37{bottom:192.779333pt;}
.y117{bottom:193.608533pt;}
.yae{bottom:194.826400pt;}
.y8b{bottom:195.920933pt;}
.y62{bottom:205.620533pt;}
.y13{bottom:209.607467pt;}
.y116{bottom:212.279200pt;}
.yad{bottom:213.497067pt;}
.yd0{bottom:220.669733pt;}
.yf2{bottom:222.346400pt;}
.y61{bottom:224.291200pt;}
.y8a{bottom:225.928933pt;}
.y12{bottom:228.244667pt;}
.y36{bottom:230.343600pt;}
.y115{bottom:242.287200pt;}
.y60{bottom:242.961867pt;}
.yac{bottom:243.505067pt;}
.y89{bottom:244.599600pt;}
.y11{bottom:246.915333pt;}
.ycf{bottom:250.677733pt;}
.y114{bottom:260.957867pt;}
.y5f{bottom:261.632533pt;}
.yab{bottom:262.175733pt;}
.y88{bottom:263.270267pt;}
.y10{bottom:265.586000pt;}
.yf1{bottom:266.348800pt;}
.yce{bottom:269.348400pt;}
.y35{bottom:274.297867pt;}
.yaa{bottom:280.846400pt;}
.y87{bottom:281.940933pt;}
.yf0{bottom:285.019467pt;}
.y113{bottom:290.965867pt;}
.y5e{bottom:291.640533pt;}
.ycd{bottom:291.788400pt;}
.y34{bottom:292.968533pt;}
.ya9{bottom:299.517067pt;}
.y86{bottom:300.611600pt;}
.yef{bottom:303.690133pt;}
.y112{bottom:309.636533pt;}
.y5d{bottom:310.311200pt;}
.ycc{bottom:314.228400pt;}
.y33{bottom:322.976533pt;}
.y111{bottom:328.307200pt;}
.y5c{bottom:328.981867pt;}
.y85{bottom:330.619600pt;}
.ycb{bottom:336.668400pt;}
.ya8{bottom:337.081333pt;}
.yee{bottom:337.475067pt;}
.y32{bottom:341.647200pt;}
.y5b{bottom:347.652533pt;}
.y84{bottom:349.290267pt;}
.y110{bottom:358.315200pt;}
.yca{bottom:359.108400pt;}
.y31{bottom:360.317867pt;}
.y5a{bottom:366.323200pt;}
.y83{bottom:367.960933pt;}
.y10f{bottom:376.985867pt;}
.yed{bottom:381.437200pt;}
.ya7{bottom:384.876533pt;}
.y59{bottom:384.993867pt;}
.yc9{bottom:385.332400pt;}
.y82{bottom:386.631600pt;}
.y30{bottom:390.325867pt;}
.y10e{bottom:395.656533pt;}
.yec{bottom:400.107867pt;}
.ya6{bottom:403.547200pt;}
.y58{bottom:403.664533pt;}
.y81{bottom:405.302267pt;}
.y2f{bottom:408.996533pt;}
.yc8{bottom:415.340400pt;}
.ya5{bottom:422.217867pt;}
.y57{bottom:422.335200pt;}
.y80{bottom:423.972933pt;}
.y10d{bottom:425.664533pt;}
.y2e{bottom:427.667200pt;}
.yf{bottom:428.019333pt;}
.yeb{bottom:430.115867pt;}
.yc7{bottom:437.780400pt;}
.y7f{bottom:442.643600pt;}
.y10c{bottom:444.335200pt;}
.y2d{bottom:446.337867pt;}
.ye{bottom:446.690000pt;}
.yea{bottom:448.786533pt;}
.ya4{bottom:452.225867pt;}
.y56{bottom:452.343200pt;}
.yc6{bottom:456.451067pt;}
.y10b{bottom:463.005867pt;}
.y2c{bottom:465.008533pt;}
.yd{bottom:465.360667pt;}
.ye9{bottom:467.457200pt;}
.y55{bottom:471.013867pt;}
.y7e{bottom:472.651600pt;}
.ya3{bottom:474.665867pt;}
.yc5{bottom:478.891067pt;}
.y2b{bottom:483.679200pt;}
.ye8{bottom:486.127867pt;}
.y7d{bottom:491.322267pt;}
.yc{bottom:491.584667pt;}
.y10a{bottom:493.013867pt;}
.ya2{bottom:493.336533pt;}
.y54{bottom:501.021867pt;}
.yc4{bottom:501.331067pt;}
.y7c{bottom:509.992933pt;}
.yb{bottom:510.255333pt;}
.y109{bottom:511.684533pt;}
.y2a{bottom:513.687200pt;}
.ya1{bottom:515.776533pt;}
.ye7{bottom:516.135867pt;}
.y53{bottom:519.692533pt;}
.yc3{bottom:523.771067pt;}
.y7b{bottom:528.663600pt;}
.ya{bottom:528.926000pt;}
.y29{bottom:532.357867pt;}
.ya0{bottom:534.447200pt;}
.ye6{bottom:534.806533pt;}
.y52{bottom:538.363200pt;}
.y108{bottom:541.692533pt;}
.yc2{bottom:546.211067pt;}
.y28{bottom:551.028533pt;}
.ye5{bottom:553.477200pt;}
.y9{bottom:555.150000pt;}
.y9f{bottom:556.887200pt;}
.y51{bottom:557.033867pt;}
.y7a{bottom:558.671600pt;}
.y107{bottom:560.363200pt;}
.y27{bottom:569.699200pt;}
.ye4{bottom:572.147867pt;}
.yc1{bottom:572.435067pt;}
.y8{bottom:573.820667pt;}
.y9e{bottom:575.557867pt;}
.y50{bottom:575.704533pt;}
.y79{bottom:577.342267pt;}
.y26{bottom:588.369867pt;}
.y106{bottom:590.371200pt;}
.ye3{bottom:590.818533pt;}
.y7{bottom:592.491333pt;}
.y4f{bottom:594.375200pt;}
.y78{bottom:596.012933pt;}
.y9d{bottom:597.997867pt;}
.yc0{bottom:602.443067pt;}
.y105{bottom:609.041867pt;}
.ye2{bottom:609.489200pt;}
.y77{bottom:614.683600pt;}
.y6{bottom:614.931333pt;}
.y9c{bottom:620.437867pt;}
.y4e{bottom:624.383200pt;}
.ybf{bottom:624.883067pt;}
.y25{bottom:625.934133pt;}
.y104{bottom:627.712533pt;}
.y76{bottom:633.354267pt;}
.y5{bottom:633.602000pt;}
.ye1{bottom:639.497200pt;}
.y9b{bottom:642.877867pt;}
.y4d{bottom:643.053867pt;}
.ybe{bottom:647.323067pt;}
.y4{bottom:652.272667pt;}
.y103{bottom:657.720533pt;}
.ye0{bottom:658.167867pt;}
.y4c{bottom:661.724533pt;}
.y75{bottom:663.362267pt;}
.y9a{bottom:669.101867pt;}
.ybd{bottom:669.763067pt;}
.y102{bottom:676.391200pt;}
.y4b{bottom:680.395200pt;}
.y74{bottom:682.032933pt;}
.y99{bottom:687.772533pt;}
.ybc{bottom:688.433733pt;}
.ydf{bottom:691.952667pt;}
.y101{bottom:695.061867pt;}
.y4a{bottom:699.065867pt;}
.y73{bottom:700.703600pt;}
.y98{bottom:706.443200pt;}
.ybb{bottom:710.873733pt;}
.y49{bottom:717.736533pt;}
.y24{bottom:724.302800pt;}
.y100{bottom:725.069867pt;}
.y3{bottom:727.642933pt;}
.y72{bottom:730.711600pt;}
.yba{bottom:733.313733pt;}
.yde{bottom:735.936533pt;}
.y97{bottom:736.451200pt;}
.y23{bottom:742.973467pt;}
.yff{bottom:743.740533pt;}
.y48{bottom:747.744533pt;}
.y71{bottom:749.382267pt;}
.ydd{bottom:754.607200pt;}
.y96{bottom:755.121867pt;}
.yb9{bottom:759.537733pt;}
.y2{bottom:762.298933pt;}
.yfe{bottom:762.411200pt;}
.y47{bottom:766.415200pt;}
.y70{bottom:768.052933pt;}
.y22{bottom:772.978667pt;}
.ydc{bottom:773.277867pt;}
.y46{bottom:785.085867pt;}
.y95{bottom:785.129867pt;}
.yb8{bottom:789.545733pt;}
.yfd{bottom:792.419200pt;}
.y6f{bottom:798.060933pt;}
.ydb{bottom:803.285867pt;}
.y94{bottom:807.569867pt;}
.yb7{bottom:808.216400pt;}
.yfc{bottom:811.089867pt;}
.y45{bottom:815.093867pt;}
.y6e{bottom:816.731600pt;}
.y21{bottom:816.957200pt;}
.yda{bottom:821.956533pt;}
.y93{bottom:826.240533pt;}
.yb6{bottom:826.887067pt;}
.yfb{bottom:829.760533pt;}
.y44{bottom:833.764533pt;}
.y6d{bottom:835.402267pt;}
.y20{bottom:835.627867pt;}
.yd9{bottom:840.627200pt;}
.yfa{bottom:848.431200pt;}
.y92{bottom:848.680533pt;}
.y43{bottom:852.435200pt;}
.y6c{bottom:854.072933pt;}
.y1f{bottom:854.298533pt;}
.yd8{bottom:859.297867pt;}
.yb5{bottom:864.451333pt;}
.y42{bottom:871.105867pt;}
.y91{bottom:871.120533pt;}
.y6b{bottom:872.743600pt;}
.y1e{bottom:872.969200pt;}
.yd7{bottom:877.968533pt;}
.yf9{bottom:878.439200pt;}
.y41{bottom:889.776533pt;}
.y6a{bottom:891.414267pt;}
.y1d{bottom:891.639867pt;}
.y90{bottom:893.560533pt;}
.yf8{bottom:897.109867pt;}
.yb4{bottom:908.447200pt;}
.y1c{bottom:910.310533pt;}
.y8f{bottom:912.231200pt;}
.y40{bottom:919.784533pt;}
.y69{bottom:921.422267pt;}
.yd6{bottom:925.174000pt;}
.yb3{bottom:927.117867pt;}
.y1b{bottom:928.981200pt;}
.y3f{bottom:938.455200pt;}
.y68{bottom:940.092933pt;}
.yb2{bottom:945.788533pt;}
.y1a{bottom:947.651867pt;}
.yd5{bottom:947.854000pt;}
.y3e{bottom:957.125867pt;}
.y67{bottom:958.763600pt;}
.yf7{bottom:964.459200pt;}
.y19{bottom:966.322533pt;}
.yd4{bottom:970.534000pt;}
.y3d{bottom:975.796533pt;}
.yd3{bottom:993.214000pt;}
.y3c{bottom:994.467200pt;}
.y18{bottom:996.327867pt;}
.y16{bottom:1049.098800pt;}
.y15{bottom:1065.094800pt;}
.h7{height:36.000000pt;}
.h9{height:36.288000pt;}
.ha{height:36.864000pt;}
.h4{height:44.352000pt;}
.h5{height:45.056000pt;}
.h6{height:45.189867pt;}
.h2{height:49.765625pt;}
.h8{height:56.000000pt;}
.h3{height:96.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:94.488133pt;}
.xb{left:100.154800pt;}
.x5{left:112.762800pt;}
.x9{left:114.493467pt;}
.xa{left:134.498800pt;}
.x2{left:139.618800pt;}
.x7{left:329.316133pt;}
.x3{left:334.498800pt;}
.x6{left:422.568133pt;}
.x8{left:725.669333pt;}
.x1{left:734.280533pt;}
}




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