
    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_233dd9b5cb80d251f7b4f547.woff')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_c3af6a1bb86aab774afa9f4a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_18bbe962dd7b1a1f15e3941e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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_6b636207dcd5781eb11c5041.woff')format("woff");}.ff4{font-family:ff4;line-height:1.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:ff5;src:url('chunks/assets/font_12917aa8850d296cb4d53d9a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_d7fdddbf820e4f19d063c1cd.woff')format("woff");}.ff6{font-family:ff6;line-height:0.918000;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_9f1d0e4c6484162d16545687.woff')format("woff");}.ff7{font-family:ff7;line-height:0.909000;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_2cbcabdc16a1bccbced2c671.woff')format("woff");}.ff8{font-family:ff8;line-height:0.580000;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_8e6cc68a2b2c1944ab666b5b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.923000;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;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:2.582323px;}
.ls3{letter-spacing:11.979110px;}
.ls9{letter-spacing:15.852595px;}
.ls2{letter-spacing:19.869542px;}
.ls1{letter-spacing:19.941274px;}
.ls4{letter-spacing:20.013005px;}
.lsc{letter-spacing:21.088973px;}
.ls8{letter-spacing:22.380134px;}
.ls6{letter-spacing:23.384371px;}
.lsb{letter-spacing:26.540544px;}
.ls5{letter-spacing:27.042662px;}
.lsa{letter-spacing:37.730611px;}
.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;}
}
.ws58{word-spacing:-22.416000px;}
.ws3d{word-spacing:-19.510886px;}
.ws91{word-spacing:-17.932800px;}
.ws6b{word-spacing:-4.985318px;}
.ws90{word-spacing:-3.873485px;}
.wsba{word-spacing:-3.658291px;}
.ws9c{word-spacing:-3.156173px;}
.ws83{word-spacing:-2.725786px;}
.ws31{word-spacing:-2.582323px;}
.ws6a{word-spacing:-2.080205px;}
.ws2{word-spacing:-1.950547px;}
.wsaa{word-spacing:-1.936742px;}
.ws97{word-spacing:-1.793280px;}
.ws1f{word-spacing:-1.219430px;}
.wsa9{word-spacing:-1.147699px;}
.ws2b{word-spacing:-1.075968px;}
.ws20{word-spacing:-0.932506px;}
.wsa{word-spacing:-0.903273px;}
.ws5d{word-spacing:-0.860774px;}
.ws1e{word-spacing:-0.358656px;}
.ws76{word-spacing:-0.322790px;}
.ws54{word-spacing:-0.286925px;}
.ws6{word-spacing:-0.248727px;}
.ws7b{word-spacing:-0.215194px;}
.wsa0{word-spacing:-0.071731px;}
.ws13{word-spacing:0.000000px;}
.ws4d{word-spacing:0.071731px;}
.ws6f{word-spacing:0.215194px;}
.ws5c{word-spacing:0.358656px;}
.ws3b{word-spacing:0.502118px;}
.ws7a{word-spacing:0.573850px;}
.ws4e{word-spacing:0.645581px;}
.ws3c{word-spacing:0.717312px;}
.ws75{word-spacing:0.753178px;}
.wsb{word-spacing:0.798546px;}
.ws5f{word-spacing:0.824909px;}
.wsf{word-spacing:0.864001px;}
.ws74{word-spacing:0.896640px;}
.ws3a{word-spacing:0.932506px;}
.ws80{word-spacing:1.004237px;}
.ws67{word-spacing:1.040102px;}
.ws42{word-spacing:1.291162px;}
.ws48{word-spacing:1.362893px;}
.ws2a{word-spacing:1.434624px;}
.wsd{word-spacing:1.453092px;}
.ws56{word-spacing:1.470490px;}
.wsbc{word-spacing:1.506355px;}
.ws18{word-spacing:1.578086px;}
.ws38{word-spacing:1.721549px;}
.ws9e{word-spacing:1.793280px;}
.ws34{word-spacing:1.865011px;}
.ws66{word-spacing:2.116070px;}
.ws15{word-spacing:2.151936px;}
.ws17{word-spacing:2.223667px;}
.ws32{word-spacing:2.367130px;}
.ws33{word-spacing:2.438861px;}
.ws77{word-spacing:2.510592px;}
.ws19{word-spacing:2.582323px;}
.wsab{word-spacing:2.654054px;}
.wsa1{word-spacing:2.725786px;}
.ws95{word-spacing:2.797517px;}
.ws6e{word-spacing:2.905114px;}
.ws70{word-spacing:2.940979px;}
.wsa4{word-spacing:3.012710px;}
.ws1c{word-spacing:3.299635px;}
.ws62{word-spacing:3.371366px;}
.ws26{word-spacing:3.514829px;}
.ws29{word-spacing:3.586560px;}
.ws12{word-spacing:3.613094px;}
.ws5e{word-spacing:3.658291px;}
.ws5{word-spacing:3.678549px;}
.ws60{word-spacing:3.730022px;}
.ws4b{word-spacing:3.765888px;}
.ws72{word-spacing:3.801754px;}
.ws3{word-spacing:3.809458px;}
.ws21{word-spacing:3.873485px;}
.ws55{word-spacing:3.945216px;}
.ws53{word-spacing:4.016947px;}
.ws99{word-spacing:4.088678px;}
.wsbf{word-spacing:4.160410px;}
.ws50{word-spacing:4.196275px;}
.ws52{word-spacing:4.232141px;}
.ws9a{word-spacing:4.303872px;}
.ws57{word-spacing:4.375603px;}
.ws71{word-spacing:4.411469px;}
.ws7c{word-spacing:4.447334px;}
.ws10{word-spacing:4.464004px;}
.ws8f{word-spacing:4.483200px;}
.ws1{word-spacing:4.648169px;}
.ws6d{word-spacing:4.662528px;}
.wsa5{word-spacing:4.734259px;}
.ws1d{word-spacing:4.805990px;}
.ws7d{word-spacing:4.877722px;}
.ws2c{word-spacing:5.021184px;}
.ws39{word-spacing:5.164646px;}
.ws3f{word-spacing:5.379840px;}
.wsa6{word-spacing:5.451571px;}
.ws73{word-spacing:5.487437px;}
.ws4a{word-spacing:5.523302px;}
.ws4c{word-spacing:5.595034px;}
.wsac{word-spacing:5.666765px;}
.ws98{word-spacing:5.738496px;}
.ws3e{word-spacing:5.881958px;}
.wsa8{word-spacing:6.025421px;}
.ws51{word-spacing:6.097152px;}
.wsc{word-spacing:6.100369px;}
.wsa3{word-spacing:6.168883px;}
.ws7{word-spacing:6.231278px;}
.wsb9{word-spacing:6.240614px;}
.wse{word-spacing:6.362187px;}
.ws25{word-spacing:6.384077px;}
.ws1b{word-spacing:6.455775px;}
.ws8{word-spacing:6.558551px;}
.ws4{word-spacing:6.754915px;}
.ws9f{word-spacing:6.886195px;}
.ws16{word-spacing:6.957926px;}
.ws27{word-spacing:7.029658px;}
.ws4f{word-spacing:7.101389px;}
.ws2f{word-spacing:7.173120px;}
.ws94{word-spacing:7.531776px;}
.ws24{word-spacing:7.675238px;}
.ws92{word-spacing:7.746970px;}
.ws43{word-spacing:7.818701px;}
.ws8a{word-spacing:7.890432px;}
.ws8c{word-spacing:7.962163px;}
.wsb7{word-spacing:8.033894px;}
.ws68{word-spacing:8.069760px;}
.ws2d{word-spacing:8.177357px;}
.ws9d{word-spacing:8.392550px;}
.ws9b{word-spacing:8.464282px;}
.ws23{word-spacing:8.679475px;}
.ws6c{word-spacing:8.822938px;}
.ws9{word-spacing:8.849462px;}
.ws96{word-spacing:8.894669px;}
.ws8b{word-spacing:9.073997px;}
.ws64{word-spacing:9.109862px;}
.ws30{word-spacing:9.181594px;}
.wsa2{word-spacing:9.325056px;}
.ws41{word-spacing:9.347962px;}
.ws93{word-spacing:9.468518px;}
.ws88{word-spacing:9.540250px;}
.ws63{word-spacing:9.755443px;}
.ws49{word-spacing:9.827174px;}
.ws7f{word-spacing:9.970637px;}
.ws22{word-spacing:10.042368px;}
.ws2e{word-spacing:10.114099px;}
.wsb6{word-spacing:10.185830px;}
.ws78{word-spacing:10.257562px;}
.ws11{word-spacing:10.420372px;}
.wsaf{word-spacing:10.616218px;}
.wsb0{word-spacing:10.687949px;}
.ws28{word-spacing:10.759680px;}
.ws8d{word-spacing:10.903142px;}
.ws61{word-spacing:10.974874px;}
.ws89{word-spacing:11.010739px;}
.ws45{word-spacing:11.261798px;}
.ws5a{word-spacing:11.512858px;}
.ws7e{word-spacing:11.620454px;}
.ws65{word-spacing:11.692186px;}
.ws37{word-spacing:11.763917px;}
.ws44{word-spacing:11.835648px;}
.ws35{word-spacing:12.050842px;}
.ws81{word-spacing:12.194304px;}
.ws8e{word-spacing:12.588826px;}
.ws5b{word-spacing:12.732288px;}
.ws1a{word-spacing:12.839885px;}
.ws85{word-spacing:12.875750px;}
.ws79{word-spacing:13.413734px;}
.ws47{word-spacing:13.485466px;}
.ws36{word-spacing:13.557197px;}
.wsad{word-spacing:13.844122px;}
.wsb8{word-spacing:13.915853px;}
.wsa7{word-spacing:14.346240px;}
.ws59{word-spacing:14.489702px;}
.wsbe{word-spacing:15.063552px;}
.ws46{word-spacing:15.135283px;}
.ws69{word-spacing:15.278746px;}
.ws82{word-spacing:15.350477px;}
.ws84{word-spacing:15.780864px;}
.ws86{word-spacing:15.852595px;}
.wsae{word-spacing:16.282982px;}
.ws40{word-spacing:17.000294px;}
.ws87{word-spacing:18.183859px;}
.wsbb{word-spacing:18.219725px;}
.wsb2{word-spacing:18.721843px;}
.wsb1{word-spacing:19.726080px;}
.wsb4{word-spacing:22.308403px;}
.wsb5{word-spacing:24.460339px;}
.wsbd{word-spacing:25.930829px;}
.ws0{word-spacing:37.316475px;}
.wsb3{word-spacing:60.684595px;}
.ws14{word-spacing:83.925075px;}
._25{margin-left:-35.004826px;}
._1{margin-left:-9.670050px;}
._4{margin-left:-7.058330px;}
._11{margin-left:-5.881958px;}
._b{margin-left:-4.661567px;}
._0{margin-left:-3.223350px;}
._3{margin-left:-1.424819px;}
._5{width:1.832729px;}
._2{width:3.223350px;}
._22{width:4.311979px;}
._13{width:17.277133px;}
._16{width:18.531142px;}
._17{width:19.931468px;}
._1d{width:21.393821px;}
._18{width:22.438333px;}
._12{width:24.406531px;}
._23{width:25.602742px;}
._7{width:27.163659px;}
._9{width:28.341842px;}
._6{width:29.456354px;}
._15{width:30.718877px;}
._d{width:32.089721px;}
._10{width:33.348767px;}
._14{width:34.502707px;}
._1a{width:35.539226px;}
._8{width:36.558757px;}
._c{width:38.118901px;}
._e{width:40.425066px;}
._29{width:41.531404px;}
._1f{width:42.559079px;}
._26{width:43.948748px;}
._a{width:45.606674px;}
._1c{width:47.715607px;}
._21{width:50.706792px;}
._1e{width:53.148637px;}
._19{width:54.904963px;}
._1b{width:60.666662px;}
._24{width:63.252559px;}
._20{width:64.943758px;}
._2b{width:73.156019px;}
._2a{width:74.631779px;}
._27{width:78.953574px;}
._28{width:80.243746px;}
._f{width:116.203950px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y19{bottom:63.168000px;}
.y18{bottom:108.000000px;}
.ybc{bottom:129.940500px;}
.y17{bottom:141.636000px;}
.yd3{bottom:143.862000px;}
.y90{bottom:152.563500px;}
.ybb{bottom:165.801000px;}
.y16{bottom:175.272000px;}
.y8f{bottom:188.425500px;}
.yd2{bottom:194.430000px;}
.y31{bottom:195.874500px;}
.y69{bottom:196.074000px;}
.yba{bottom:201.663000px;}
.y15{bottom:208.908000px;}
.y8e{bottom:224.287500px;}
.yd1{bottom:230.292000px;}
.y30{bottom:231.736500px;}
.y68{bottom:231.936000px;}
.y99{bottom:239.385000px;}
.y7e{bottom:242.143500px;}
.y14{bottom:242.544000px;}
.yb9{bottom:252.469500px;}
.yd0{bottom:266.154000px;}
.y2f{bottom:267.597000px;}
.y67{bottom:267.796500px;}
.y98{bottom:275.245500px;}
.ya6{bottom:275.989500px;}
.y13{bottom:276.178500px;}
.y8d{bottom:277.707000px;}
.y7d{bottom:278.005500px;}
.yb8{bottom:288.331500px;}
.y66{bottom:303.658500px;}
.y12{bottom:309.814500px;}
.y97{bottom:311.107500px;}
.ya5{bottom:311.851500px;}
.y8c{bottom:313.569000px;}
.y7c{bottom:313.867500px;}
.ycf{bottom:316.722000px;}
.y2e{bottom:321.018000px;}
.yb7{bottom:339.136500px;}
.y65{bottom:339.520500px;}
.y11{bottom:343.450500px;}
.y96{bottom:346.969500px;}
.ya4{bottom:347.713500px;}
.y8b{bottom:349.431000px;}
.y7b{bottom:349.729500px;}
.yce{bottom:352.584000px;}
.y2d{bottom:356.880000px;}
.ye4{bottom:366.609000px;}
.yb6{bottom:374.998500px;}
.y64{bottom:375.382500px;}
.y10{bottom:377.086500px;}
.y95{bottom:382.831500px;}
.ya3{bottom:383.575500px;}
.y8a{bottom:385.293000px;}
.ycd{bottom:388.444500px;}
.y2c{bottom:392.742000px;}
.ye3{bottom:402.471000px;}
.y7a{bottom:403.150500px;}
.y4c{bottom:410.254500px;}
.yf{bottom:410.722500px;}
.yb5{bottom:410.860500px;}
.y63{bottom:411.244500px;}
.y94{bottom:418.693500px;}
.y89{bottom:421.155000px;}
.y59{bottom:421.699500px;}
.y2b{bottom:428.604000px;}
.ya2{bottom:437.196000px;}
.ye2{bottom:438.333000px;}
.y79{bottom:439.011000px;}
.ycc{bottom:439.014000px;}
.ye{bottom:444.358500px;}
.y4b{bottom:446.115000px;}
.y58{bottom:457.561500px;}
.yb4{bottom:461.665500px;}
.y2a{bottom:464.466000px;}
.y62{bottom:464.665500px;}
.y93{bottom:472.312500px;}
.y88{bottom:474.576000px;}
.y78{bottom:474.873000px;}
.ycb{bottom:474.874500px;}
.yd{bottom:477.994500px;}
.y4a{bottom:481.977000px;}
.y42{bottom:492.135000px;}
.yb3{bottom:497.527500px;}
.y29{bottom:500.326500px;}
.y61{bottom:500.526000px;}
.ye1{bottom:509.311500px;}
.y87{bottom:510.436500px;}
.yca{bottom:510.736500px;}
.y57{bottom:510.981000px;}
.yc{bottom:511.630500px;}
.y49{bottom:517.839000px;}
.ya1{bottom:518.629500px;}
.y41{bottom:527.995500px;}
.y77{bottom:528.294000px;}
.yb2{bottom:533.389500px;}
.y60{bottom:536.388000px;}
.ye0{bottom:545.173500px;}
.yb{bottom:545.266500px;}
.y86{bottom:546.298500px;}
.yc9{bottom:546.598500px;}
.y56{bottom:546.843000px;}
.y48{bottom:553.701000px;}
.y28{bottom:553.747500px;}
.ya0{bottom:554.491500px;}
.y40{bottom:563.857500px;}
.y76{bottom:564.156000px;}
.y5f{bottom:572.250000px;}
.ya{bottom:578.901000px;}
.yb1{bottom:584.194500px;}
.y27{bottom:589.609500px;}
.y9f{bottom:590.353500px;}
.ydf{bottom:595.980000px;}
.yc8{bottom:597.166500px;}
.y3f{bottom:599.719500px;}
.y55{bottom:600.264000px;}
.y47{bottom:607.321500px;}
.y9{bottom:612.537000px;}
.y75{bottom:617.577000px;}
.yb0{bottom:620.056500px;}
.y26{bottom:625.471500px;}
.y5e{bottom:625.671000px;}
.y9e{bottom:626.215500px;}
.yde{bottom:631.840500px;}
.yc7{bottom:633.028500px;}
.y3e{bottom:635.581500px;}
.y54{bottom:636.126000px;}
.y8{bottom:646.173000px;}
.y74{bottom:653.437500px;}
.y25{bottom:661.333500px;}
.y5d{bottom:661.533000px;}
.y46{bottom:661.732500px;}
.y9d{bottom:662.077500px;}
.yaf{bottom:670.863000px;}
.y3d{bottom:671.443500px;}
.y7{bottom:679.809000px;}
.ydd{bottom:682.647000px;}
.yc6{bottom:683.596500px;}
.y85{bottom:689.002500px;}
.y73{bottom:689.299500px;}
.y53{bottom:689.547000px;}
.y24{bottom:697.195500px;}
.y5c{bottom:697.393500px;}
.y3c{bottom:707.305500px;}
.y9c{bottom:715.696500px;}
.y6{bottom:718.038000px;}
.ydc{bottom:718.509000px;}
.yc5{bottom:719.458500px;}
.yae{bottom:721.668000px;}
.y84{bottom:724.864500px;}
.y52{bottom:725.407500px;}
.y23{bottom:733.056000px;}
.y72{bottom:742.720500px;}
.y3b{bottom:743.166000px;}
.y5b{bottom:751.014000px;}
.y83{bottom:760.725000px;}
.y51{bottom:761.269500px;}
.y92{bottom:768.918000px;}
.ydb{bottom:769.314000px;}
.yc4{bottom:770.026500px;}
.yad{bottom:772.473000px;}
.y71{bottom:778.582500px;}
.y3a{bottom:779.028000px;}
.y22{bottom:786.676500px;}
.y5{bottom:792.015000px;}
.y82{bottom:796.587000px;}
.y50{bottom:797.131500px;}
.yda{bottom:805.176000px;}
.yc3{bottom:805.888500px;}
.yac{bottom:808.335000px;}
.y70{bottom:814.444500px;}
.y39{bottom:814.890000px;}
.y91{bottom:822.538500px;}
.y5a{bottom:832.449000px;}
.y9b{bottom:832.993500px;}
.yab{bottom:844.197000px;}
.y4{bottom:845.436000px;}
.y4f{bottom:850.552500px;}
.y45{bottom:850.752000px;}
.yd9{bottom:855.982500px;}
.yc2{bottom:856.456500px;}
.y6f{bottom:867.865500px;}
.y21{bottom:868.111500px;}
.y38{bottom:868.311000px;}
.y81{bottom:885.870000px;}
.y4e{bottom:886.414500px;}
.yd8{bottom:891.843000px;}
.yc1{bottom:892.318500px;}
.yaa{bottom:895.003500px;}
.y6e{bottom:903.726000px;}
.y20{bottom:903.973500px;}
.y37{bottom:904.173000px;}
.y3{bottom:916.291500px;}
.y80{bottom:921.732000px;}
.y4d{bottom:922.276500px;}
.yd7{bottom:927.705000px;}
.yc0{bottom:928.180500px;}
.y6d{bottom:939.588000px;}
.y1f{bottom:939.835500px;}
.y36{bottom:940.033500px;}
.ya9{bottom:945.808500px;}
.y7f{bottom:957.592500px;}
.y9a{bottom:958.137000px;}
.y1e{bottom:975.696000px;}
.y44{bottom:975.895500px;}
.y2{bottom:978.123000px;}
.yd6{bottom:978.511500px;}
.ybf{bottom:978.748500px;}
.ya8{bottom:981.670500px;}
.y6c{bottom:993.009000px;}
.y35{bottom:993.454500px;}
.y1d{bottom:1011.558000px;}
.y43{bottom:1011.757500px;}
.yd5{bottom:1014.372000px;}
.ybe{bottom:1014.610500px;}
.y6b{bottom:1028.871000px;}
.y34{bottom:1029.316500px;}
.ya7{bottom:1032.475500px;}
.y1{bottom:1039.953000px;}
.y1c{bottom:1047.420000px;}
.yd4{bottom:1050.234000px;}
.ybd{bottom:1050.472500px;}
.y33{bottom:1065.178500px;}
.y6a{bottom:1082.491500px;}
.y1b{bottom:1083.282000px;}
.y32{bottom:1101.040500px;}
.y1a{bottom:1136.902500px;}
.h4{height:45.687311px;}
.h5{height:49.090950px;}
.h8{height:51.216077px;}
.h6{height:53.798400px;}
.h3{height:64.557900px;}
.h7{height:72.304680px;}
.h2{height:87.650325px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:108.000000px;}
.x2{left:122.007000px;}
.xd{left:125.559000px;}
.xb{left:134.338500px;}
.x1{left:139.570500px;}
.x8{left:151.897500px;}
.x7{left:176.443500px;}
.x3{left:275.166000px;}
.x4{left:349.153500px;}
.x5{left:367.734000px;}
.x6{left:410.455500px;}
.xc{left:437.677500px;}
.x9{left:442.066500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:2.295398pt;}
.ls3{letter-spacing:10.648098pt;}
.ls9{letter-spacing:14.091196pt;}
.ls2{letter-spacing:17.661815pt;}
.ls1{letter-spacing:17.725577pt;}
.ls4{letter-spacing:17.789338pt;}
.lsc{letter-spacing:18.745754pt;}
.ls8{letter-spacing:19.893453pt;}
.ls6{letter-spacing:20.786108pt;}
.lsb{letter-spacing:23.591595pt;}
.ls5{letter-spacing:24.037922pt;}
.lsa{letter-spacing:33.538321pt;}
.ws58{word-spacing:-19.925333pt;}
.ws3d{word-spacing:-17.343010pt;}
.ws91{word-spacing:-15.940267pt;}
.ws6b{word-spacing:-4.431394pt;}
.ws90{word-spacing:-3.443098pt;}
.wsba{word-spacing:-3.251814pt;}
.ws9c{word-spacing:-2.805487pt;}
.ws83{word-spacing:-2.422921pt;}
.ws31{word-spacing:-2.295398pt;}
.ws6a{word-spacing:-1.849071pt;}
.ws2{word-spacing:-1.733820pt;}
.wsaa{word-spacing:-1.721549pt;}
.ws97{word-spacing:-1.594027pt;}
.ws1f{word-spacing:-1.083938pt;}
.wsa9{word-spacing:-1.020177pt;}
.ws2b{word-spacing:-0.956416pt;}
.ws20{word-spacing:-0.828894pt;}
.wsa{word-spacing:-0.802910pt;}
.ws5d{word-spacing:-0.765133pt;}
.ws1e{word-spacing:-0.318805pt;}
.ws76{word-spacing:-0.286925pt;}
.ws54{word-spacing:-0.255044pt;}
.ws6{word-spacing:-0.221091pt;}
.ws7b{word-spacing:-0.191283pt;}
.wsa0{word-spacing:-0.063761pt;}
.ws13{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.063761pt;}
.ws6f{word-spacing:0.191283pt;}
.ws5c{word-spacing:0.318805pt;}
.ws3b{word-spacing:0.446327pt;}
.ws7a{word-spacing:0.510089pt;}
.ws4e{word-spacing:0.573850pt;}
.ws3c{word-spacing:0.637611pt;}
.ws75{word-spacing:0.669491pt;}
.wsb{word-spacing:0.709819pt;}
.ws5f{word-spacing:0.733252pt;}
.wsf{word-spacing:0.768001pt;}
.ws74{word-spacing:0.797013pt;}
.ws3a{word-spacing:0.828894pt;}
.ws80{word-spacing:0.892655pt;}
.ws67{word-spacing:0.924535pt;}
.ws42{word-spacing:1.147699pt;}
.ws48{word-spacing:1.211460pt;}
.ws2a{word-spacing:1.275221pt;}
.wsd{word-spacing:1.291637pt;}
.ws56{word-spacing:1.307102pt;}
.wsbc{word-spacing:1.338982pt;}
.ws18{word-spacing:1.402743pt;}
.ws38{word-spacing:1.530266pt;}
.ws9e{word-spacing:1.594027pt;}
.ws34{word-spacing:1.657788pt;}
.ws66{word-spacing:1.880951pt;}
.ws15{word-spacing:1.912832pt;}
.ws17{word-spacing:1.976593pt;}
.ws32{word-spacing:2.104115pt;}
.ws33{word-spacing:2.167876pt;}
.ws77{word-spacing:2.231637pt;}
.ws19{word-spacing:2.295398pt;}
.wsab{word-spacing:2.359159pt;}
.wsa1{word-spacing:2.422921pt;}
.ws95{word-spacing:2.486682pt;}
.ws6e{word-spacing:2.582323pt;}
.ws70{word-spacing:2.614204pt;}
.wsa4{word-spacing:2.677965pt;}
.ws1c{word-spacing:2.933009pt;}
.ws62{word-spacing:2.996770pt;}
.ws26{word-spacing:3.124292pt;}
.ws29{word-spacing:3.188053pt;}
.ws12{word-spacing:3.211639pt;}
.ws5e{word-spacing:3.251814pt;}
.ws5{word-spacing:3.269821pt;}
.ws60{word-spacing:3.315575pt;}
.ws4b{word-spacing:3.347456pt;}
.ws72{word-spacing:3.379337pt;}
.ws3{word-spacing:3.386185pt;}
.ws21{word-spacing:3.443098pt;}
.ws55{word-spacing:3.506859pt;}
.ws53{word-spacing:3.570620pt;}
.ws99{word-spacing:3.634381pt;}
.wsbf{word-spacing:3.698142pt;}
.ws50{word-spacing:3.730022pt;}
.ws52{word-spacing:3.761903pt;}
.ws9a{word-spacing:3.825664pt;}
.ws57{word-spacing:3.889425pt;}
.ws71{word-spacing:3.921306pt;}
.ws7c{word-spacing:3.953186pt;}
.ws10{word-spacing:3.968003pt;}
.ws8f{word-spacing:3.985067pt;}
.ws1{word-spacing:4.131706pt;}
.ws6d{word-spacing:4.144469pt;}
.wsa5{word-spacing:4.208230pt;}
.ws1d{word-spacing:4.271991pt;}
.ws7d{word-spacing:4.335753pt;}
.ws2c{word-spacing:4.463275pt;}
.ws39{word-spacing:4.590797pt;}
.ws3f{word-spacing:4.782080pt;}
.wsa6{word-spacing:4.845841pt;}
.ws73{word-spacing:4.877722pt;}
.ws4a{word-spacing:4.909602pt;}
.ws4c{word-spacing:4.973363pt;}
.wsac{word-spacing:5.037124pt;}
.ws98{word-spacing:5.100885pt;}
.ws3e{word-spacing:5.228407pt;}
.wsa8{word-spacing:5.355930pt;}
.ws51{word-spacing:5.419691pt;}
.wsc{word-spacing:5.422550pt;}
.wsa3{word-spacing:5.483452pt;}
.ws7{word-spacing:5.538914pt;}
.wsb9{word-spacing:5.547213pt;}
.wse{word-spacing:5.655277pt;}
.ws25{word-spacing:5.674735pt;}
.ws1b{word-spacing:5.738467pt;}
.ws8{word-spacing:5.829823pt;}
.ws4{word-spacing:6.004369pt;}
.ws9f{word-spacing:6.121062pt;}
.ws16{word-spacing:6.184823pt;}
.ws27{word-spacing:6.248585pt;}
.ws4f{word-spacing:6.312346pt;}
.ws2f{word-spacing:6.376107pt;}
.ws94{word-spacing:6.694912pt;}
.ws24{word-spacing:6.822434pt;}
.ws92{word-spacing:6.886195pt;}
.ws43{word-spacing:6.949956pt;}
.ws8a{word-spacing:7.013717pt;}
.ws8c{word-spacing:7.077478pt;}
.wsb7{word-spacing:7.141239pt;}
.ws68{word-spacing:7.173120pt;}
.ws2d{word-spacing:7.268762pt;}
.ws9d{word-spacing:7.460045pt;}
.ws9b{word-spacing:7.523806pt;}
.ws23{word-spacing:7.715089pt;}
.ws6c{word-spacing:7.842611pt;}
.ws9{word-spacing:7.866188pt;}
.ws96{word-spacing:7.906372pt;}
.ws8b{word-spacing:8.065775pt;}
.ws64{word-spacing:8.097655pt;}
.ws30{word-spacing:8.161417pt;}
.wsa2{word-spacing:8.288939pt;}
.ws41{word-spacing:8.309300pt;}
.ws93{word-spacing:8.416461pt;}
.ws88{word-spacing:8.480222pt;}
.ws63{word-spacing:8.671505pt;}
.ws49{word-spacing:8.735266pt;}
.ws7f{word-spacing:8.862788pt;}
.ws22{word-spacing:8.926549pt;}
.ws2e{word-spacing:8.990310pt;}
.wsb6{word-spacing:9.054071pt;}
.ws78{word-spacing:9.117833pt;}
.ws11{word-spacing:9.262553pt;}
.wsaf{word-spacing:9.436638pt;}
.wsb0{word-spacing:9.500399pt;}
.ws28{word-spacing:9.564160pt;}
.ws8d{word-spacing:9.691682pt;}
.ws61{word-spacing:9.755443pt;}
.ws89{word-spacing:9.787324pt;}
.ws45{word-spacing:10.010487pt;}
.ws5a{word-spacing:10.233651pt;}
.ws7e{word-spacing:10.329293pt;}
.ws65{word-spacing:10.393054pt;}
.ws37{word-spacing:10.456815pt;}
.ws44{word-spacing:10.520576pt;}
.ws35{word-spacing:10.711859pt;}
.ws81{word-spacing:10.839381pt;}
.ws8e{word-spacing:11.190067pt;}
.ws5b{word-spacing:11.317589pt;}
.ws1a{word-spacing:11.413231pt;}
.ws85{word-spacing:11.445111pt;}
.ws79{word-spacing:11.923319pt;}
.ws47{word-spacing:11.987081pt;}
.ws36{word-spacing:12.050842pt;}
.wsad{word-spacing:12.305886pt;}
.wsb8{word-spacing:12.369647pt;}
.wsa7{word-spacing:12.752213pt;}
.ws59{word-spacing:12.879735pt;}
.wsbe{word-spacing:13.389824pt;}
.ws46{word-spacing:13.453585pt;}
.ws69{word-spacing:13.581107pt;}
.ws82{word-spacing:13.644868pt;}
.ws84{word-spacing:14.027435pt;}
.ws86{word-spacing:14.091196pt;}
.wsae{word-spacing:14.473762pt;}
.ws40{word-spacing:15.111373pt;}
.ws87{word-spacing:16.163430pt;}
.wsbb{word-spacing:16.195311pt;}
.wsb2{word-spacing:16.641638pt;}
.wsb1{word-spacing:17.534293pt;}
.wsb4{word-spacing:19.829692pt;}
.wsb5{word-spacing:21.742524pt;}
.wsbd{word-spacing:23.049626pt;}
.ws0{word-spacing:33.170200pt;}
.wsb3{word-spacing:53.941862pt;}
.ws14{word-spacing:74.600067pt;}
._25{margin-left:-31.115401pt;}
._1{margin-left:-8.595600pt;}
._4{margin-left:-6.274071pt;}
._11{margin-left:-5.228407pt;}
._b{margin-left:-4.143615pt;}
._0{margin-left:-2.865200pt;}
._3{margin-left:-1.266506pt;}
._5{width:1.629092pt;}
._2{width:2.865200pt;}
._22{width:3.832870pt;}
._13{width:15.357452pt;}
._16{width:16.472126pt;}
._17{width:17.716861pt;}
._1d{width:19.016730pt;}
._18{width:19.945185pt;}
._12{width:21.694694pt;}
._23{width:22.757993pt;}
._7{width:24.145475pt;}
._9{width:25.192748pt;}
._6{width:26.183426pt;}
._15{width:27.305668pt;}
._d{width:28.524196pt;}
._10{width:29.643348pt;}
._14{width:30.669073pt;}
._1a{width:31.590423pt;}
._8{width:32.496673pt;}
._c{width:33.883467pt;}
._e{width:35.933392pt;}
._29{width:36.916803pt;}
._1f{width:37.830292pt;}
._26{width:39.065554pt;}
._a{width:40.539266pt;}
._1c{width:42.413873pt;}
._21{width:45.072704pt;}
._1e{width:47.243233pt;}
._19{width:48.804412pt;}
._1b{width:53.925922pt;}
._24{width:56.224497pt;}
._20{width:57.727785pt;}
._2b{width:65.027572pt;}
._2a{width:66.339359pt;}
._27{width:70.180955pt;}
._28{width:71.327774pt;}
._f{width:103.292400pt;}
.fs2{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:56.149333pt;}
.y18{bottom:96.000000pt;}
.ybc{bottom:115.502667pt;}
.y17{bottom:125.898667pt;}
.yd3{bottom:127.877333pt;}
.y90{bottom:135.612000pt;}
.ybb{bottom:147.378667pt;}
.y16{bottom:155.797333pt;}
.y8f{bottom:167.489333pt;}
.yd2{bottom:172.826667pt;}
.y31{bottom:174.110667pt;}
.y69{bottom:174.288000pt;}
.yba{bottom:179.256000pt;}
.y15{bottom:185.696000pt;}
.y8e{bottom:199.366667pt;}
.yd1{bottom:204.704000pt;}
.y30{bottom:205.988000pt;}
.y68{bottom:206.165333pt;}
.y99{bottom:212.786667pt;}
.y7e{bottom:215.238667pt;}
.y14{bottom:215.594667pt;}
.yb9{bottom:224.417333pt;}
.yd0{bottom:236.581333pt;}
.y2f{bottom:237.864000pt;}
.y67{bottom:238.041333pt;}
.y98{bottom:244.662667pt;}
.ya6{bottom:245.324000pt;}
.y13{bottom:245.492000pt;}
.y8d{bottom:246.850667pt;}
.y7d{bottom:247.116000pt;}
.yb8{bottom:256.294667pt;}
.y66{bottom:269.918667pt;}
.y12{bottom:275.390667pt;}
.y97{bottom:276.540000pt;}
.ya5{bottom:277.201333pt;}
.y8c{bottom:278.728000pt;}
.y7c{bottom:278.993333pt;}
.ycf{bottom:281.530667pt;}
.y2e{bottom:285.349333pt;}
.yb7{bottom:301.454667pt;}
.y65{bottom:301.796000pt;}
.y11{bottom:305.289333pt;}
.y96{bottom:308.417333pt;}
.ya4{bottom:309.078667pt;}
.y8b{bottom:310.605333pt;}
.y7b{bottom:310.870667pt;}
.yce{bottom:313.408000pt;}
.y2d{bottom:317.226667pt;}
.ye4{bottom:325.874667pt;}
.yb6{bottom:333.332000pt;}
.y64{bottom:333.673333pt;}
.y10{bottom:335.188000pt;}
.y95{bottom:340.294667pt;}
.ya3{bottom:340.956000pt;}
.y8a{bottom:342.482667pt;}
.ycd{bottom:345.284000pt;}
.y2c{bottom:349.104000pt;}
.ye3{bottom:357.752000pt;}
.y7a{bottom:358.356000pt;}
.y4c{bottom:364.670667pt;}
.yf{bottom:365.086667pt;}
.yb5{bottom:365.209333pt;}
.y63{bottom:365.550667pt;}
.y94{bottom:372.172000pt;}
.y89{bottom:374.360000pt;}
.y59{bottom:374.844000pt;}
.y2b{bottom:380.981333pt;}
.ya2{bottom:388.618667pt;}
.ye2{bottom:389.629333pt;}
.y79{bottom:390.232000pt;}
.ycc{bottom:390.234667pt;}
.ye{bottom:394.985333pt;}
.y4b{bottom:396.546667pt;}
.y58{bottom:406.721333pt;}
.yb4{bottom:410.369333pt;}
.y2a{bottom:412.858667pt;}
.y62{bottom:413.036000pt;}
.y93{bottom:419.833333pt;}
.y88{bottom:421.845333pt;}
.y78{bottom:422.109333pt;}
.ycb{bottom:422.110667pt;}
.yd{bottom:424.884000pt;}
.y4a{bottom:428.424000pt;}
.y42{bottom:437.453333pt;}
.yb3{bottom:442.246667pt;}
.y29{bottom:444.734667pt;}
.y61{bottom:444.912000pt;}
.ye1{bottom:452.721333pt;}
.y87{bottom:453.721333pt;}
.yca{bottom:453.988000pt;}
.y57{bottom:454.205333pt;}
.yc{bottom:454.782667pt;}
.y49{bottom:460.301333pt;}
.ya1{bottom:461.004000pt;}
.y41{bottom:469.329333pt;}
.y77{bottom:469.594667pt;}
.yb2{bottom:474.124000pt;}
.y60{bottom:476.789333pt;}
.ye0{bottom:484.598667pt;}
.yb{bottom:484.681333pt;}
.y86{bottom:485.598667pt;}
.yc9{bottom:485.865333pt;}
.y56{bottom:486.082667pt;}
.y48{bottom:492.178667pt;}
.y28{bottom:492.220000pt;}
.ya0{bottom:492.881333pt;}
.y40{bottom:501.206667pt;}
.y76{bottom:501.472000pt;}
.y5f{bottom:508.666667pt;}
.ya{bottom:514.578667pt;}
.yb1{bottom:519.284000pt;}
.y27{bottom:524.097333pt;}
.y9f{bottom:524.758667pt;}
.ydf{bottom:529.760000pt;}
.yc8{bottom:530.814667pt;}
.y3f{bottom:533.084000pt;}
.y55{bottom:533.568000pt;}
.y47{bottom:539.841333pt;}
.y9{bottom:544.477333pt;}
.y75{bottom:548.957333pt;}
.yb0{bottom:551.161333pt;}
.y26{bottom:555.974667pt;}
.y5e{bottom:556.152000pt;}
.y9e{bottom:556.636000pt;}
.yde{bottom:561.636000pt;}
.yc7{bottom:562.692000pt;}
.y3e{bottom:564.961333pt;}
.y54{bottom:565.445333pt;}
.y8{bottom:574.376000pt;}
.y74{bottom:580.833333pt;}
.y25{bottom:587.852000pt;}
.y5d{bottom:588.029333pt;}
.y46{bottom:588.206667pt;}
.y9d{bottom:588.513333pt;}
.yaf{bottom:596.322667pt;}
.y3d{bottom:596.838667pt;}
.y7{bottom:604.274667pt;}
.ydd{bottom:606.797333pt;}
.yc6{bottom:607.641333pt;}
.y85{bottom:612.446667pt;}
.y73{bottom:612.710667pt;}
.y53{bottom:612.930667pt;}
.y24{bottom:619.729333pt;}
.y5c{bottom:619.905333pt;}
.y3c{bottom:628.716000pt;}
.y9c{bottom:636.174667pt;}
.y6{bottom:638.256000pt;}
.ydc{bottom:638.674667pt;}
.yc5{bottom:639.518667pt;}
.yae{bottom:641.482667pt;}
.y84{bottom:644.324000pt;}
.y52{bottom:644.806667pt;}
.y23{bottom:651.605333pt;}
.y72{bottom:660.196000pt;}
.y3b{bottom:660.592000pt;}
.y5b{bottom:667.568000pt;}
.y83{bottom:676.200000pt;}
.y51{bottom:676.684000pt;}
.y92{bottom:683.482667pt;}
.ydb{bottom:683.834667pt;}
.yc4{bottom:684.468000pt;}
.yad{bottom:686.642667pt;}
.y71{bottom:692.073333pt;}
.y3a{bottom:692.469333pt;}
.y22{bottom:699.268000pt;}
.y5{bottom:704.013333pt;}
.y82{bottom:708.077333pt;}
.y50{bottom:708.561333pt;}
.yda{bottom:715.712000pt;}
.yc3{bottom:716.345333pt;}
.yac{bottom:718.520000pt;}
.y70{bottom:723.950667pt;}
.y39{bottom:724.346667pt;}
.y91{bottom:731.145333pt;}
.y5a{bottom:739.954667pt;}
.y9b{bottom:740.438667pt;}
.yab{bottom:750.397333pt;}
.y4{bottom:751.498667pt;}
.y4f{bottom:756.046667pt;}
.y45{bottom:756.224000pt;}
.yd9{bottom:760.873333pt;}
.yc2{bottom:761.294667pt;}
.y6f{bottom:771.436000pt;}
.y21{bottom:771.654667pt;}
.y38{bottom:771.832000pt;}
.y81{bottom:787.440000pt;}
.y4e{bottom:787.924000pt;}
.yd8{bottom:792.749333pt;}
.yc1{bottom:793.172000pt;}
.yaa{bottom:795.558667pt;}
.y6e{bottom:803.312000pt;}
.y20{bottom:803.532000pt;}
.y37{bottom:803.709333pt;}
.y3{bottom:814.481333pt;}
.y80{bottom:819.317333pt;}
.y4d{bottom:819.801333pt;}
.yd7{bottom:824.626667pt;}
.yc0{bottom:825.049333pt;}
.y6d{bottom:835.189333pt;}
.y1f{bottom:835.409333pt;}
.y36{bottom:835.585333pt;}
.ya9{bottom:840.718667pt;}
.y7f{bottom:851.193333pt;}
.y9a{bottom:851.677333pt;}
.y1e{bottom:867.285333pt;}
.y44{bottom:867.462667pt;}
.y2{bottom:869.442667pt;}
.yd6{bottom:869.788000pt;}
.ybf{bottom:869.998667pt;}
.ya8{bottom:872.596000pt;}
.y6c{bottom:882.674667pt;}
.y35{bottom:883.070667pt;}
.y1d{bottom:899.162667pt;}
.y43{bottom:899.340000pt;}
.yd5{bottom:901.664000pt;}
.ybe{bottom:901.876000pt;}
.y6b{bottom:914.552000pt;}
.y34{bottom:914.948000pt;}
.ya7{bottom:917.756000pt;}
.y1{bottom:924.402667pt;}
.y1c{bottom:931.040000pt;}
.yd4{bottom:933.541333pt;}
.ybd{bottom:933.753333pt;}
.y33{bottom:946.825333pt;}
.y6a{bottom:962.214667pt;}
.y1b{bottom:962.917333pt;}
.y32{bottom:978.702667pt;}
.y1a{bottom:1010.580000pt;}
.h4{height:40.610943pt;}
.h5{height:43.636400pt;}
.h8{height:45.525402pt;}
.h6{height:47.820800pt;}
.h3{height:57.384800pt;}
.h7{height:64.270827pt;}
.h2{height:77.911400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:96.000000pt;}
.x2{left:108.450667pt;}
.xd{left:111.608000pt;}
.xb{left:119.412000pt;}
.x1{left:124.062667pt;}
.x8{left:135.020000pt;}
.x7{left:156.838667pt;}
.x3{left:244.592000pt;}
.x4{left:310.358667pt;}
.x5{left:326.874667pt;}
.x6{left:364.849333pt;}
.xc{left:389.046667pt;}
.x9{left:392.948000pt;}
}




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