
    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_59465fa01a1649bcbcdee726.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_e3f68590e5446b5e8fbee165.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.963000;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_74b287d9123d8fed36bfa5d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_5ca451f347787ae2b47c353a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_1b02f8ce2b60ead6ef90cd3e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_63a12e650255315a5744869a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_ecbd9f3bc338d10e4e8575af.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_ce188d0f7e4bc3e936c06030.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_b93d771b4a9672c6d7e65a77.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874023;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b4a5becdc8acded13c1b9a76.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_44a0710aa9f585cb0579e6a8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;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_d1d6edc70e4a35725e5a16fe.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.024902;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_f5ee7a469a15d5b0dfdb0731.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.971191;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_486dd9fec9deeb6a9b6a3b08.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.986816;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_b4a5becdc8acded13c1b9a76.woff2')format("woff");}.fff{font-family:fff;line-height:1.024902;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_b4a5becdc8acded13c1b9a76.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.024902;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:ff11;src:url('chunks/assets/font_0e802e9be20bfa38cc343632.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.861816;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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);}
.v2{vertical-align:-21.977400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:22.188000px;}
.lsa{letter-spacing:-2.700000px;}
.ls7{letter-spacing:-1.248000px;}
.ls4{letter-spacing:-0.780000px;}
.ls3{letter-spacing:-0.660000px;}
.ls6{letter-spacing:-0.330000px;}
.ls5{letter-spacing:-0.300000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:9.936000px;}
.ls8{letter-spacing:10.296000px;}
.ls2{letter-spacing:24.480000px;}
.ls1{letter-spacing:45.672000px;}
.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;}
}
.ws3{word-spacing:-45.672000px;}
.ws4{word-spacing:-24.480000px;}
.wse{word-spacing:-20.340000px;}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.678320px;}
.ws10{word-spacing:-13.560000px;}
.ws7{word-spacing:-12.204000px;}
.wsa{word-spacing:-8.696028px;}
.wsc{word-spacing:-7.905480px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:0.300000px;}
.wsb{word-spacing:0.330000px;}
.ws11{word-spacing:0.594000px;}
.ws5{word-spacing:0.660000px;}
.ws6{word-spacing:0.702000px;}
.wsd{word-spacing:1.170000px;}
.wsf{word-spacing:1.248000px;}
.ws8{word-spacing:1.386000px;}
._f{margin-left:-26.516400px;}
._10{margin-left:-13.965600px;}
._1c{margin-left:-11.319538px;}
._1d{margin-left:-7.913392px;}
._14{margin-left:-6.124800px;}
._c{margin-left:-4.435200px;}
._e{margin-left:-3.254400px;}
._d{margin-left:-1.465200px;}
._a{width:1.385992px;}
._3{width:2.870984px;}
._6{width:4.124977px;}
._12{width:5.410800px;}
._4{width:7.193961px;}
._13{width:8.883768px;}
._9{width:10.262944px;}
._15{width:11.391840px;}
._8{width:13.265928px;}
._2{width:15.377916px;}
._11{width:16.477968px;}
._1a{width:18.343632px;}
._5{width:20.492888px;}
._19{width:21.655200px;}
._17{width:22.869000px;}
._18{width:24.202200px;}
._1{width:28.313846px;}
._16{width:30.148800px;}
._7{width:33.164819px;}
._1b{width:37.224000px;}
._b{width:45.209753px;}
._0{width:820.875237px;}
.fc5{color:rgb(76,142,165);}
.fc2{color:rgb(65,160,17);}
.fc3{color:rgb(0,94,126);}
.fc1{color:rgb(255,101,0);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:32.999820px;}
.fs15{font-size:34.980000px;}
.fse{font-size:36.000000px;}
.fs3{font-size:37.714080px;}
.fs14{font-size:38.478000px;}
.fs6{font-size:41.485488px;}
.fs7{font-size:42.428340px;}
.fs2{font-size:47.142600px;}
.fs1{font-size:51.856860px;}
.fs5{font-size:52.799712px;}
.fs10{font-size:54.000000px;}
.fs13{font-size:60.000000px;}
.fs0{font-size:65.999640px;}
.fsb{font-size:66.000000px;}
.fs11{font-size:72.000000px;}
.fsd{font-size:78.000000px;}
.fs12{font-size:90.000000px;}
.fsc{font-size:114.000000px;}
.fsf{font-size:126.000000px;}
.fs8{font-size:252.000000px;}
.fsa{font-size:288.000000px;}
.fs9{font-size:519.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.298365px;}
.y34{bottom:46.346400px;}
.y20{bottom:50.265797px;}
.y1f{bottom:63.630724px;}
.y1e{bottom:76.995651px;}
.y1d{bottom:90.360579px;}
.y1c{bottom:101.780873px;}
.y33{bottom:102.047250px;}
.y8e{bottom:102.059550px;}
.y159{bottom:102.157350px;}
.y183{bottom:102.570450px;}
.y112{bottom:103.160400px;}
.y43{bottom:109.758750px;}
.y69{bottom:111.763350px;}
.yef{bottom:112.654950px;}
.y134{bottom:113.217450px;}
.yc3{bottom:114.688050px;}
.y8d{bottom:118.556550px;}
.y182{bottom:118.770450px;}
.yde{bottom:118.947450px;}
.y158{bottom:122.864850px;}
.y1b{bottom:123.419327px;}
.y111{bottom:123.785400px;}
.y147{bottom:125.277450px;}
.y42{bottom:125.958750px;}
.y133{bottom:132.267450px;}
.y68{bottom:132.470850px;}
.yee{bottom:133.362450px;}
.y181{bottom:134.970450px;}
.y8c{bottom:135.053550px;}
.yc2{bottom:135.395550px;}
.y21{bottom:136.778700px;}
.ydd{bottom:139.654950px;}
.y28{bottom:142.439400px;}
.y157{bottom:143.572350px;}
.y110{bottom:144.410400px;}
.y146{bottom:145.984950px;}
.y41{bottom:146.411250px;}
.y180{bottom:151.170450px;}
.y132{bottom:151.317450px;}
.y8b{bottom:151.550550px;}
.y67{bottom:153.178350px;}
.yed{bottom:154.069950px;}
.yc1{bottom:156.103050px;}
.ydc{bottom:160.362450px;}
.y40{bottom:162.611250px;}
.y156{bottom:164.279850px;}
.y10f{bottom:165.035400px;}
.y145{bottom:166.692450px;}
.y17f{bottom:167.370450px;}
.y8a{bottom:168.047550px;}
.y131{bottom:170.367450px;}
.y66{bottom:173.885850px;}
.yec{bottom:174.777450px;}
.yc0{bottom:176.810550px;}
.y3f{bottom:178.811250px;}
.y1a{bottom:179.601520px;}
.ydb{bottom:181.069950px;}
.y17e{bottom:183.570450px;}
.y27{bottom:184.431900px;}
.y155{bottom:184.987350px;}
.y10e{bottom:185.660400px;}
.y144{bottom:187.399950px;}
.y130{bottom:189.417450px;}
.y19{bottom:189.619323px;}
.y65{bottom:194.593350px;}
.y3e{bottom:195.011250px;}
.yeb{bottom:195.484950px;}
.ybf{bottom:197.518050px;}
.y18{bottom:198.812130px;}
.y17d{bottom:199.918950px;}
.yda{bottom:201.777450px;}
.y26{bottom:205.436400px;}
.y154{bottom:205.694850px;}
.y10d{bottom:206.285400px;}
.y17{bottom:207.156370px;}
.y89{bottom:208.055100px;}
.y143{bottom:208.107450px;}
.y12f{bottom:208.467450px;}
.y3d{bottom:211.211250px;}
.y64{bottom:215.300850px;}
.y16{bottom:215.512396px;}
.yea{bottom:216.192450px;}
.y17c{bottom:216.267450px;}
.ya4{bottom:216.638700px;}
.ybe{bottom:218.225550px;}
.yd9{bottom:222.484950px;}
.y15{bottom:223.868422px;}
.y153{bottom:226.402350px;}
.y25{bottom:226.440900px;}
.y10c{bottom:226.910400px;}
.y3c{bottom:227.411250px;}
.y12e{bottom:227.517450px;}
.y88{bottom:228.762600px;}
.y142{bottom:228.814950px;}
.y14{bottom:232.212662px;}
.y17b{bottom:232.467450px;}
.y63{bottom:236.008350px;}
.ye9{bottom:236.899950px;}
.ya3{bottom:237.346200px;}
.ybd{bottom:238.933050px;}
.y13{bottom:240.568688px;}
.yd8{bottom:243.192450px;}
.y3b{bottom:243.611250px;}
.y12d{bottom:246.567450px;}
.y152{bottom:247.109850px;}
.y10b{bottom:247.535400px;}
.y17a{bottom:248.667450px;}
.y12{bottom:248.924714px;}
.y87{bottom:249.470100px;}
.y141{bottom:249.522450px;}
.y62{bottom:256.715850px;}
.y11{bottom:257.268954px;}
.ye8{bottom:257.607450px;}
.ya2{bottom:258.053700px;}
.ybc{bottom:259.640550px;}
.yd7{bottom:263.899950px;}
.y179{bottom:264.867450px;}
.y12c{bottom:265.617450px;}
.y10{bottom:265.624980px;}
.y151{bottom:267.817350px;}
.y86{bottom:270.177600px;}
.y140{bottom:270.229950px;}
.yf{bottom:273.981006px;}
.y10a{bottom:276.664350px;}
.y61{bottom:277.423350px;}
.ye7{bottom:278.314950px;}
.ybb{bottom:280.348050px;}
.y178{bottom:281.067450px;}
.ya1{bottom:283.001700px;}
.y32{bottom:284.429700px;}
.yd6{bottom:284.607450px;}
.y12b{bottom:284.667450px;}
.y150{bottom:288.524850px;}
.y85{bottom:290.885100px;}
.y13f{bottom:290.937450px;}
.ye{bottom:291.164483px;}
.y177{bottom:297.267450px;}
.y60{bottom:298.130850px;}
.ye6{bottom:299.022450px;}
.yba{bottom:301.055550px;}
.ya0{bottom:303.709200px;}
.y12a{bottom:303.717450px;}
.yd5{bottom:305.314950px;}
.y31{bottom:305.434200px;}
.y14f{bottom:309.232350px;}
.y84{bottom:311.592600px;}
.y13e{bottom:311.644950px;}
.y176{bottom:313.467450px;}
.y109{bottom:316.172250px;}
.y5f{bottom:318.838350px;}
.ye5{bottom:319.729950px;}
.yb9{bottom:321.763050px;}
.y129{bottom:322.767450px;}
.yd4{bottom:326.022450px;}
.y30{bottom:326.438700px;}
.y175{bottom:329.667450px;}
.y14e{bottom:329.939850px;}
.y83{bottom:332.300100px;}
.y13d{bottom:332.352450px;}
.y9f{bottom:333.338400px;}
.y108{bottom:336.797250px;}
.y5e{bottom:339.545850px;}
.ye4{bottom:340.437450px;}
.yb8{bottom:342.470550px;}
.y174{bottom:345.867450px;}
.yd3{bottom:346.729950px;}
.y2f{bottom:347.443200px;}
.y14d{bottom:350.647350px;}
.y128{bottom:350.671650px;}
.y9e{bottom:352.388400px;}
.y82{bottom:353.007600px;}
.y13c{bottom:353.059950px;}
.y107{bottom:357.422250px;}
.y5d{bottom:360.253350px;}
.ye3{bottom:361.144950px;}
.y173{bottom:362.067450px;}
.yb7{bottom:363.178050px;}
.yd2{bottom:367.437450px;}
.y2e{bottom:368.447700px;}
.y14c{bottom:371.354850px;}
.y127{bottom:371.379150px;}
.y9d{bottom:371.438400px;}
.y81{bottom:373.715100px;}
.y13b{bottom:373.767450px;}
.y106{bottom:378.047250px;}
.y172{bottom:378.267450px;}
.y5c{bottom:380.960850px;}
.ye2{bottom:381.852450px;}
.yb6{bottom:383.885550px;}
.yd1{bottom:388.144950px;}
.y2d{bottom:389.452200px;}
.y9c{bottom:390.488400px;}
.y14b{bottom:392.062350px;}
.y126{bottom:392.086650px;}
.y80{bottom:394.422600px;}
.y171{bottom:394.467450px;}
.y105{bottom:398.672250px;}
.y5b{bottom:401.668350px;}
.ye1{bottom:402.559950px;}
.yb5{bottom:404.593050px;}
.yd0{bottom:408.852450px;}
.y9b{bottom:409.538400px;}
.y2c{bottom:410.456700px;}
.y170{bottom:410.667450px;}
.yd{bottom:412.250251px;}
.y13a{bottom:412.325850px;}
.y14a{bottom:412.769850px;}
.y125{bottom:412.794150px;}
.y7f{bottom:415.130100px;}
.y104{bottom:419.297250px;}
.y5a{bottom:422.375850px;}
.ye0{bottom:423.267450px;}
.yb4{bottom:425.300550px;}
.y16f{bottom:426.867450px;}
.y9a{bottom:428.588400px;}
.ycf{bottom:429.559950px;}
.y149{bottom:433.477350px;}
.y124{bottom:433.501650px;}
.y7e{bottom:435.837600px;}
.y103{bottom:439.922250px;}
.y16e{bottom:443.067450px;}
.yb3{bottom:446.008050px;}
.yce{bottom:450.267450px;}
.y59{bottom:452.005050px;}
.y148{bottom:454.184850px;}
.y123{bottom:454.209150px;}
.y99{bottom:456.500100px;}
.y7d{bottom:456.545100px;}
.y16d{bottom:459.267450px;}
.ydf{bottom:461.825850px;}
.yb2{bottom:466.715550px;}
.y102{bottom:469.476450px;}
.y58{bottom:471.055050px;}
.y139{bottom:474.892350px;}
.y122{bottom:474.916650px;}
.y16c{bottom:475.467450px;}
.y98{bottom:477.207600px;}
.y7c{bottom:477.252600px;}
.y101{bottom:488.376450px;}
.ycd{bottom:488.825850px;}
.y57{bottom:490.105050px;}
.y16b{bottom:491.667450px;}
.y138{bottom:495.599850px;}
.y121{bottom:495.624150px;}
.y97{bottom:497.915100px;}
.y7b{bottom:497.960100px;}
.y2b{bottom:498.056700px;}
.yb1{bottom:505.273800px;}
.y100{bottom:507.276450px;}
.y16a{bottom:507.867450px;}
.y56{bottom:509.155050px;}
.ycc{bottom:515.825850px;}
.y137{bottom:516.307350px;}
.y120{bottom:516.331650px;}
.y96{bottom:518.622600px;}
.y7a{bottom:518.667600px;}
.y169{bottom:524.067450px;}
.yff{bottom:526.176450px;}
.y55{bottom:528.205050px;}
.y2a{bottom:532.256700px;}
.yb0{bottom:532.273800px;}
.y136{bottom:537.014850px;}
.y11f{bottom:537.039150px;}
.y95{bottom:539.330100px;}
.y168{bottom:540.267450px;}
.yfe{bottom:545.076450px;}
.y54{bottom:556.079100px;}
.y167{bottom:556.467450px;}
.y79{bottom:557.225850px;}
.y135{bottom:557.722350px;}
.y11e{bottom:557.746650px;}
.y94{bottom:560.037600px;}
.y29{bottom:566.456700px;}
.y166{bottom:572.667450px;}
.yfd{bottom:572.905500px;}
.yc{bottom:574.420795px;}
.y53{bottom:576.786600px;}
.ycb{bottom:578.429850px;}
.y93{bottom:580.745100px;}
.y11d{bottom:587.375850px;}
.y165{bottom:588.867450px;}
.y193{bottom:592.901850px;}
.yfc{bottom:593.530500px;}
.yaf{bottom:594.896850px;}
.y52{bottom:597.494100px;}
.yca{bottom:599.137350px;}
.yb{bottom:600.184226px;}
.y92{bottom:601.452600px;}
.y164{bottom:605.067450px;}
.y192{bottom:611.383350px;}
.ya{bottom:613.549153px;}
.yfb{bottom:614.155500px;}
.yae{bottom:615.604350px;}
.y51{bottom:618.201600px;}
.yc9{bottom:619.844850px;}
.y78{bottom:619.897350px;}
.y163{bottom:621.267450px;}
.y91{bottom:622.160100px;}
.y11c{bottom:627.689100px;}
.y191{bottom:627.731850px;}
.yfa{bottom:634.780500px;}
.yad{bottom:636.311850px;}
.y162{bottom:637.467450px;}
.y50{bottom:638.909100px;}
.y9{bottom:639.571869px;}
.yc8{bottom:640.552350px;}
.y77{bottom:640.604850px;}
.y90{bottom:642.867600px;}
.y190{bottom:644.080350px;}
.y11b{bottom:648.396600px;}
.y3a{bottom:650.992350px;}
.y8{bottom:652.936796px;}
.y161{bottom:653.667450px;}
.yf9{bottom:655.405500px;}
.yac{bottom:657.019350px;}
.y24{bottom:657.176850px;}
.y4f{bottom:659.616600px;}
.y18f{bottom:660.428850px;}
.yc7{bottom:661.259850px;}
.y76{bottom:661.312350px;}
.y7{bottom:666.301723px;}
.y11a{bottom:669.104100px;}
.y160{bottom:669.867450px;}
.y18e{bottom:676.777350px;}
.yab{bottom:677.726850px;}
.y6{bottom:679.666650px;}
.y4e{bottom:680.324100px;}
.y8f{bottom:681.425850px;}
.yc6{bottom:681.967350px;}
.y75{bottom:682.019850px;}
.yf8{bottom:684.534450px;}
.y15f{bottom:686.067450px;}
.y39{bottom:688.792350px;}
.y119{bottom:689.811600px;}
.y18d{bottom:693.125850px;}
.yaa{bottom:698.434350px;}
.y4d{bottom:701.031600px;}
.y15e{bottom:702.267450px;}
.yc5{bottom:702.674850px;}
.y74{bottom:702.727350px;}
.y18c{bottom:709.474350px;}
.y118{bottom:710.519100px;}
.y15d{bottom:718.467450px;}
.ya9{bottom:719.141850px;}
.y4c{bottom:721.739100px;}
.y23{bottom:723.200850px;}
.yc4{bottom:723.382350px;}
.y73{bottom:723.434850px;}
.yf7{bottom:724.042350px;}
.y38{bottom:726.592350px;}
.y117{bottom:731.226600px;}
.y15c{bottom:734.667450px;}
.ya8{bottom:739.849350px;}
.y5{bottom:741.942024px;}
.y4b{bottom:742.446600px;}
.y72{bottom:744.089850px;}
.yf6{bottom:744.667350px;}
.y15b{bottom:750.867450px;}
.y116{bottom:751.934100px;}
.ya7{bottom:760.556850px;}
.y4{bottom:761.765488px;}
.y4a{bottom:763.154100px;}
.y37{bottom:764.392350px;}
.y71{bottom:764.797350px;}
.yf5{bottom:765.292350px;}
.y18b{bottom:776.852850px;}
.ya6{bottom:781.264350px;}
.y115{bottom:781.563150px;}
.y49{bottom:783.861600px;}
.y15a{bottom:784.925850px;}
.y3{bottom:785.148217px;}
.y70{bottom:785.504850px;}
.yf4{bottom:785.917350px;}
.y18a{bottom:793.201350px;}
.y114{bottom:800.613150px;}
.ya5{bottom:801.971850px;}
.y48{bottom:804.569100px;}
.y6f{bottom:806.212350px;}
.yf3{bottom:806.542350px;}
.y2{bottom:808.542733px;}
.y189{bottom:809.549850px;}
.y22{bottom:811.700850px;}
.y113{bottom:819.663150px;}
.y47{bottom:825.276600px;}
.y188{bottom:825.898350px;}
.y6e{bottom:826.919850px;}
.yf2{bottom:827.167350px;}
.y36{bottom:839.992350px;}
.y187{bottom:842.246850px;}
.y46{bottom:845.984100px;}
.y6d{bottom:847.627350px;}
.yf1{bottom:847.792350px;}
.y6a{bottom:852.620250px;}
.y186{bottom:858.595350px;}
.y6c{bottom:868.334850px;}
.yf0{bottom:868.417350px;}
.y185{bottom:874.943850px;}
.y35{bottom:877.792350px;}
.y45{bottom:884.542350px;}
.y6b{bottom:889.042350px;}
.y184{bottom:891.292350px;}
.y44{bottom:952.015800px;}
.h9{height:24.452867px;}
.h7{height:27.946133px;}
.h8{height:28.059276px;}
.h16{height:30.480469px;}
.hc{height:31.439400px;}
.h6{height:34.932667px;}
.ha{height:35.074094px;}
.h5{height:38.425933px;}
.hb{height:39.124587px;}
.h1e{height:42.820312px;}
.h21{height:43.664062px;}
.h1a{height:45.720703px;}
.h20{height:47.578125px;}
.h3{height:48.905733px;}
.h4{height:49.103732px;}
.h1d{height:50.800781px;}
.h12{height:52.335938px;}
.h15{height:54.272461px;}
.h13{height:55.880859px;}
.h1f{height:58.218750px;}
.h1b{height:60.960938px;}
.h1c{height:72.773438px;}
.h17{height:87.670898px;}
.h14{height:96.521484px;}
.h18{height:99.914062px;}
.h19{height:106.681641px;}
.hf{height:172.265625px;}
.h11{height:228.375000px;}
.h10{height:354.785156px;}
.h2{height:992.222088px;}
.h0{height:992.820000px;}
.h1{height:993.000000px;}
.he{height:999.000000px;}
.hd{height:999.213000px;}
.w1{width:701.250000px;}
.w3{width:701.575500px;}
.w2{width:701.576173px;}
.w0{width:701.580000px;}
.x0{left:0.000000px;}
.x3{left:36.747657px;}
.x1{left:43.430120px;}
.x14{left:46.771650px;}
.x1b{left:60.271650px;}
.x12{left:69.318900px;}
.x19{left:76.535400px;}
.x8{left:80.205750px;}
.x1a{left:97.795200px;}
.xd{left:106.916700px;}
.x13{left:114.165900px;}
.xb{left:115.780200px;}
.x2{left:116.925434px;}
.xc{left:124.159200px;}
.x9{left:135.959250px;}
.x10{left:159.062400px;}
.x16{left:161.574750px;}
.x1c{left:182.826750px;}
.x7{left:190.392750px;}
.xf{left:244.713900px;}
.x11{left:257.897400px;}
.xa{left:281.522250px;}
.xe{left:307.133400px;}
.x4{left:344.105623px;}
.x15{left:407.083800px;}
.x5{left:449.502150px;}
.x6{left:481.152750px;}
.x17{left:625.172700px;}
.x18{left:642.001350px;}
@media print{
.v2{vertical-align:-19.535467pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:19.722667pt;}
.lsa{letter-spacing:-2.400000pt;}
.ls7{letter-spacing:-1.109333pt;}
.ls4{letter-spacing:-0.693333pt;}
.ls3{letter-spacing:-0.586667pt;}
.ls6{letter-spacing:-0.293333pt;}
.ls5{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:8.832000pt;}
.ls8{letter-spacing:9.152000pt;}
.ls2{letter-spacing:21.760000pt;}
.ls1{letter-spacing:40.597333pt;}
.ws3{word-spacing:-40.597333pt;}
.ws4{word-spacing:-21.760000pt;}
.wse{word-spacing:-18.080000pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-13.047395pt;}
.ws10{word-spacing:-12.053333pt;}
.ws7{word-spacing:-10.848000pt;}
.wsa{word-spacing:-7.729803pt;}
.wsc{word-spacing:-7.027093pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:0.266667pt;}
.wsb{word-spacing:0.293333pt;}
.ws11{word-spacing:0.528000pt;}
.ws5{word-spacing:0.586667pt;}
.ws6{word-spacing:0.624000pt;}
.wsd{word-spacing:1.040000pt;}
.wsf{word-spacing:1.109333pt;}
.ws8{word-spacing:1.232000pt;}
._f{margin-left:-23.570133pt;}
._10{margin-left:-12.413867pt;}
._1c{margin-left:-10.061812pt;}
._1d{margin-left:-7.034127pt;}
._14{margin-left:-5.444267pt;}
._c{margin-left:-3.942400pt;}
._e{margin-left:-2.892800pt;}
._d{margin-left:-1.302400pt;}
._a{width:1.231993pt;}
._3{width:2.551986pt;}
._6{width:3.666647pt;}
._12{width:4.809600pt;}
._4{width:6.394632pt;}
._13{width:7.896683pt;}
._9{width:9.122617pt;}
._15{width:10.126080pt;}
._8{width:11.791936pt;}
._2{width:13.669259pt;}
._11{width:14.647082pt;}
._1a{width:16.305451pt;}
._5{width:18.215901pt;}
._19{width:19.249067pt;}
._17{width:20.328000pt;}
._18{width:21.513067pt;}
._1{width:25.167863pt;}
._16{width:26.798933pt;}
._7{width:29.479839pt;}
._1b{width:33.088000pt;}
._b{width:40.186447pt;}
._0{width:729.666877pt;}
.fs4{font-size:29.333173pt;}
.fs15{font-size:31.093333pt;}
.fse{font-size:32.000000pt;}
.fs3{font-size:33.523627pt;}
.fs14{font-size:34.202667pt;}
.fs6{font-size:36.875989pt;}
.fs7{font-size:37.714080pt;}
.fs2{font-size:41.904533pt;}
.fs1{font-size:46.094987pt;}
.fs5{font-size:46.933077pt;}
.fs10{font-size:48.000000pt;}
.fs13{font-size:53.333333pt;}
.fs0{font-size:58.666347pt;}
.fsb{font-size:58.666667pt;}
.fs11{font-size:64.000000pt;}
.fsd{font-size:69.333333pt;}
.fs12{font-size:80.000000pt;}
.fsc{font-size:101.333333pt;}
.fsf{font-size:112.000000pt;}
.fs8{font-size:224.000000pt;}
.fsa{font-size:256.000000pt;}
.fs9{font-size:461.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.265213pt;}
.y34{bottom:41.196800pt;}
.y20{bottom:44.680709pt;}
.y1f{bottom:56.560644pt;}
.y1e{bottom:68.440579pt;}
.y1d{bottom:80.320514pt;}
.y1c{bottom:90.471887pt;}
.y33{bottom:90.708667pt;}
.y8e{bottom:90.719600pt;}
.y159{bottom:90.806533pt;}
.y183{bottom:91.173733pt;}
.y112{bottom:91.698133pt;}
.y43{bottom:97.563333pt;}
.y69{bottom:99.345200pt;}
.yef{bottom:100.137733pt;}
.y134{bottom:100.637733pt;}
.yc3{bottom:101.944933pt;}
.y8d{bottom:105.383600pt;}
.y182{bottom:105.573733pt;}
.yde{bottom:105.731067pt;}
.y158{bottom:109.213200pt;}
.y1b{bottom:109.706068pt;}
.y111{bottom:110.031467pt;}
.y147{bottom:111.357733pt;}
.y42{bottom:111.963333pt;}
.y133{bottom:117.571067pt;}
.y68{bottom:117.751867pt;}
.yee{bottom:118.544400pt;}
.y181{bottom:119.973733pt;}
.y8c{bottom:120.047600pt;}
.yc2{bottom:120.351600pt;}
.y21{bottom:121.581067pt;}
.ydd{bottom:124.137733pt;}
.y28{bottom:126.612800pt;}
.y157{bottom:127.619867pt;}
.y110{bottom:128.364800pt;}
.y146{bottom:129.764400pt;}
.y41{bottom:130.143333pt;}
.y180{bottom:134.373733pt;}
.y132{bottom:134.504400pt;}
.y8b{bottom:134.711600pt;}
.y67{bottom:136.158533pt;}
.yed{bottom:136.951067pt;}
.yc1{bottom:138.758267pt;}
.ydc{bottom:142.544400pt;}
.y40{bottom:144.543333pt;}
.y156{bottom:146.026533pt;}
.y10f{bottom:146.698133pt;}
.y145{bottom:148.171067pt;}
.y17f{bottom:148.773733pt;}
.y8a{bottom:149.375600pt;}
.y131{bottom:151.437733pt;}
.y66{bottom:154.565200pt;}
.yec{bottom:155.357733pt;}
.yc0{bottom:157.164933pt;}
.y3f{bottom:158.943333pt;}
.y1a{bottom:159.645796pt;}
.ydb{bottom:160.951067pt;}
.y17e{bottom:163.173733pt;}
.y27{bottom:163.939467pt;}
.y155{bottom:164.433200pt;}
.y10e{bottom:165.031467pt;}
.y144{bottom:166.577733pt;}
.y130{bottom:168.371067pt;}
.y19{bottom:168.550509pt;}
.y65{bottom:172.971867pt;}
.y3e{bottom:173.343333pt;}
.yeb{bottom:173.764400pt;}
.ybf{bottom:175.571600pt;}
.y18{bottom:176.721893pt;}
.y17d{bottom:177.705733pt;}
.yda{bottom:179.357733pt;}
.y26{bottom:182.610133pt;}
.y154{bottom:182.839867pt;}
.y10d{bottom:183.364800pt;}
.y17{bottom:184.138996pt;}
.y89{bottom:184.937867pt;}
.y143{bottom:184.984400pt;}
.y12f{bottom:185.304400pt;}
.y3d{bottom:187.743333pt;}
.y64{bottom:191.378533pt;}
.y16{bottom:191.566574pt;}
.yea{bottom:192.171067pt;}
.y17c{bottom:192.237733pt;}
.ya4{bottom:192.567733pt;}
.ybe{bottom:193.978267pt;}
.yd9{bottom:197.764400pt;}
.y15{bottom:198.994153pt;}
.y153{bottom:201.246533pt;}
.y25{bottom:201.280800pt;}
.y10c{bottom:201.698133pt;}
.y3c{bottom:202.143333pt;}
.y12e{bottom:202.237733pt;}
.y88{bottom:203.344533pt;}
.y142{bottom:203.391067pt;}
.y14{bottom:206.411255pt;}
.y17b{bottom:206.637733pt;}
.y63{bottom:209.785200pt;}
.ye9{bottom:210.577733pt;}
.ya3{bottom:210.974400pt;}
.ybd{bottom:212.384933pt;}
.y13{bottom:213.838834pt;}
.yd8{bottom:216.171067pt;}
.y3b{bottom:216.543333pt;}
.y12d{bottom:219.171067pt;}
.y152{bottom:219.653200pt;}
.y10b{bottom:220.031467pt;}
.y17a{bottom:221.037733pt;}
.y12{bottom:221.266412pt;}
.y87{bottom:221.751200pt;}
.y141{bottom:221.797733pt;}
.y62{bottom:228.191867pt;}
.y11{bottom:228.683515pt;}
.ye8{bottom:228.984400pt;}
.ya2{bottom:229.381067pt;}
.ybc{bottom:230.791600pt;}
.yd7{bottom:234.577733pt;}
.y179{bottom:235.437733pt;}
.y12c{bottom:236.104400pt;}
.y10{bottom:236.111093pt;}
.y151{bottom:238.059867pt;}
.y86{bottom:240.157867pt;}
.y140{bottom:240.204400pt;}
.yf{bottom:243.538672pt;}
.y10a{bottom:245.923867pt;}
.y61{bottom:246.598533pt;}
.ye7{bottom:247.391067pt;}
.ybb{bottom:249.198267pt;}
.y178{bottom:249.837733pt;}
.ya1{bottom:251.557067pt;}
.y32{bottom:252.826400pt;}
.yd6{bottom:252.984400pt;}
.y12b{bottom:253.037733pt;}
.y150{bottom:256.466533pt;}
.y85{bottom:258.564533pt;}
.y13f{bottom:258.611067pt;}
.ye{bottom:258.812874pt;}
.y177{bottom:264.237733pt;}
.y60{bottom:265.005200pt;}
.ye6{bottom:265.797733pt;}
.yba{bottom:267.604933pt;}
.ya0{bottom:269.963733pt;}
.y12a{bottom:269.971067pt;}
.yd5{bottom:271.391067pt;}
.y31{bottom:271.497067pt;}
.y14f{bottom:274.873200pt;}
.y84{bottom:276.971200pt;}
.y13e{bottom:277.017733pt;}
.y176{bottom:278.637733pt;}
.y109{bottom:281.042000pt;}
.y5f{bottom:283.411867pt;}
.ye5{bottom:284.204400pt;}
.yb9{bottom:286.011600pt;}
.y129{bottom:286.904400pt;}
.yd4{bottom:289.797733pt;}
.y30{bottom:290.167733pt;}
.y175{bottom:293.037733pt;}
.y14e{bottom:293.279867pt;}
.y83{bottom:295.377867pt;}
.y13d{bottom:295.424400pt;}
.y9f{bottom:296.300800pt;}
.y108{bottom:299.375333pt;}
.y5e{bottom:301.818533pt;}
.ye4{bottom:302.611067pt;}
.yb8{bottom:304.418267pt;}
.y174{bottom:307.437733pt;}
.yd3{bottom:308.204400pt;}
.y2f{bottom:308.838400pt;}
.y14d{bottom:311.686533pt;}
.y128{bottom:311.708133pt;}
.y9e{bottom:313.234133pt;}
.y82{bottom:313.784533pt;}
.y13c{bottom:313.831067pt;}
.y107{bottom:317.708667pt;}
.y5d{bottom:320.225200pt;}
.ye3{bottom:321.017733pt;}
.y173{bottom:321.837733pt;}
.yb7{bottom:322.824933pt;}
.yd2{bottom:326.611067pt;}
.y2e{bottom:327.509067pt;}
.y14c{bottom:330.093200pt;}
.y127{bottom:330.114800pt;}
.y9d{bottom:330.167467pt;}
.y81{bottom:332.191200pt;}
.y13b{bottom:332.237733pt;}
.y106{bottom:336.042000pt;}
.y172{bottom:336.237733pt;}
.y5c{bottom:338.631867pt;}
.ye2{bottom:339.424400pt;}
.yb6{bottom:341.231600pt;}
.yd1{bottom:345.017733pt;}
.y2d{bottom:346.179733pt;}
.y9c{bottom:347.100800pt;}
.y14b{bottom:348.499867pt;}
.y126{bottom:348.521467pt;}
.y80{bottom:350.597867pt;}
.y171{bottom:350.637733pt;}
.y105{bottom:354.375333pt;}
.y5b{bottom:357.038533pt;}
.ye1{bottom:357.831067pt;}
.yb5{bottom:359.638267pt;}
.yd0{bottom:363.424400pt;}
.y9b{bottom:364.034133pt;}
.y2c{bottom:364.850400pt;}
.y170{bottom:365.037733pt;}
.yd{bottom:366.444668pt;}
.y13a{bottom:366.511867pt;}
.y14a{bottom:366.906533pt;}
.y125{bottom:366.928133pt;}
.y7f{bottom:369.004533pt;}
.y104{bottom:372.708667pt;}
.y5a{bottom:375.445200pt;}
.ye0{bottom:376.237733pt;}
.yb4{bottom:378.044933pt;}
.y16f{bottom:379.437733pt;}
.y9a{bottom:380.967467pt;}
.ycf{bottom:381.831067pt;}
.y149{bottom:385.313200pt;}
.y124{bottom:385.334800pt;}
.y7e{bottom:387.411200pt;}
.y103{bottom:391.042000pt;}
.y16e{bottom:393.837733pt;}
.yb3{bottom:396.451600pt;}
.yce{bottom:400.237733pt;}
.y59{bottom:401.782267pt;}
.y148{bottom:403.719867pt;}
.y123{bottom:403.741467pt;}
.y99{bottom:405.777867pt;}
.y7d{bottom:405.817867pt;}
.y16d{bottom:408.237733pt;}
.ydf{bottom:410.511867pt;}
.yb2{bottom:414.858267pt;}
.y102{bottom:417.312400pt;}
.y58{bottom:418.715600pt;}
.y139{bottom:422.126533pt;}
.y122{bottom:422.148133pt;}
.y16c{bottom:422.637733pt;}
.y98{bottom:424.184533pt;}
.y7c{bottom:424.224533pt;}
.y101{bottom:434.112400pt;}
.ycd{bottom:434.511867pt;}
.y57{bottom:435.648933pt;}
.y16b{bottom:437.037733pt;}
.y138{bottom:440.533200pt;}
.y121{bottom:440.554800pt;}
.y97{bottom:442.591200pt;}
.y7b{bottom:442.631200pt;}
.y2b{bottom:442.717067pt;}
.yb1{bottom:449.132267pt;}
.y100{bottom:450.912400pt;}
.y16a{bottom:451.437733pt;}
.y56{bottom:452.582267pt;}
.ycc{bottom:458.511867pt;}
.y137{bottom:458.939867pt;}
.y120{bottom:458.961467pt;}
.y96{bottom:460.997867pt;}
.y7a{bottom:461.037867pt;}
.y169{bottom:465.837733pt;}
.yff{bottom:467.712400pt;}
.y55{bottom:469.515600pt;}
.y2a{bottom:473.117067pt;}
.yb0{bottom:473.132267pt;}
.y136{bottom:477.346533pt;}
.y11f{bottom:477.368133pt;}
.y95{bottom:479.404533pt;}
.y168{bottom:480.237733pt;}
.yfe{bottom:484.512400pt;}
.y54{bottom:494.292533pt;}
.y167{bottom:494.637733pt;}
.y79{bottom:495.311867pt;}
.y135{bottom:495.753200pt;}
.y11e{bottom:495.774800pt;}
.y94{bottom:497.811200pt;}
.y29{bottom:503.517067pt;}
.y166{bottom:509.037733pt;}
.yfd{bottom:509.249333pt;}
.yc{bottom:510.596263pt;}
.y53{bottom:512.699200pt;}
.ycb{bottom:514.159867pt;}
.y93{bottom:516.217867pt;}
.y11d{bottom:522.111867pt;}
.y165{bottom:523.437733pt;}
.y193{bottom:527.023867pt;}
.yfc{bottom:527.582667pt;}
.yaf{bottom:528.797200pt;}
.y52{bottom:531.105867pt;}
.yca{bottom:532.566533pt;}
.yb{bottom:533.497090pt;}
.y92{bottom:534.624533pt;}
.y164{bottom:537.837733pt;}
.y192{bottom:543.451867pt;}
.ya{bottom:545.377025pt;}
.yfb{bottom:545.916000pt;}
.yae{bottom:547.203867pt;}
.y51{bottom:549.512533pt;}
.yc9{bottom:550.973200pt;}
.y78{bottom:551.019867pt;}
.y163{bottom:552.237733pt;}
.y91{bottom:553.031200pt;}
.y11c{bottom:557.945867pt;}
.y191{bottom:557.983867pt;}
.yfa{bottom:564.249333pt;}
.yad{bottom:565.610533pt;}
.y162{bottom:566.637733pt;}
.y50{bottom:567.919200pt;}
.y9{bottom:568.508328pt;}
.yc8{bottom:569.379867pt;}
.y77{bottom:569.426533pt;}
.y90{bottom:571.437867pt;}
.y190{bottom:572.515867pt;}
.y11b{bottom:576.352533pt;}
.y3a{bottom:578.659867pt;}
.y8{bottom:580.388263pt;}
.y161{bottom:581.037733pt;}
.yf9{bottom:582.582667pt;}
.yac{bottom:584.017200pt;}
.y24{bottom:584.157200pt;}
.y4f{bottom:586.325867pt;}
.y18f{bottom:587.047867pt;}
.yc7{bottom:587.786533pt;}
.y76{bottom:587.833200pt;}
.y7{bottom:592.268198pt;}
.y11a{bottom:594.759200pt;}
.y160{bottom:595.437733pt;}
.y18e{bottom:601.579867pt;}
.yab{bottom:602.423867pt;}
.y6{bottom:604.148133pt;}
.y4e{bottom:604.732533pt;}
.y8f{bottom:605.711867pt;}
.yc6{bottom:606.193200pt;}
.y75{bottom:606.239867pt;}
.yf8{bottom:608.475067pt;}
.y15f{bottom:609.837733pt;}
.y39{bottom:612.259867pt;}
.y119{bottom:613.165867pt;}
.y18d{bottom:616.111867pt;}
.yaa{bottom:620.830533pt;}
.y4d{bottom:623.139200pt;}
.y15e{bottom:624.237733pt;}
.yc5{bottom:624.599867pt;}
.y74{bottom:624.646533pt;}
.y18c{bottom:630.643867pt;}
.y118{bottom:631.572533pt;}
.y15d{bottom:638.637733pt;}
.ya9{bottom:639.237200pt;}
.y4c{bottom:641.545867pt;}
.y23{bottom:642.845200pt;}
.yc4{bottom:643.006533pt;}
.y73{bottom:643.053200pt;}
.yf7{bottom:643.593200pt;}
.y38{bottom:645.859867pt;}
.y117{bottom:649.979200pt;}
.y15c{bottom:653.037733pt;}
.ya8{bottom:657.643867pt;}
.y5{bottom:659.504022pt;}
.y4b{bottom:659.952533pt;}
.y72{bottom:661.413200pt;}
.yf6{bottom:661.926533pt;}
.y15b{bottom:667.437733pt;}
.y116{bottom:668.385867pt;}
.ya7{bottom:676.050533pt;}
.y4{bottom:677.124878pt;}
.y4a{bottom:678.359200pt;}
.y37{bottom:679.459867pt;}
.y71{bottom:679.819867pt;}
.yf5{bottom:680.259867pt;}
.y18b{bottom:690.535867pt;}
.ya6{bottom:694.457200pt;}
.y115{bottom:694.722800pt;}
.y49{bottom:696.765867pt;}
.y15a{bottom:697.711867pt;}
.y3{bottom:697.909527pt;}
.y70{bottom:698.226533pt;}
.yf4{bottom:698.593200pt;}
.y18a{bottom:705.067867pt;}
.y114{bottom:711.656133pt;}
.ya5{bottom:712.863867pt;}
.y48{bottom:715.172533pt;}
.y6f{bottom:716.633200pt;}
.yf3{bottom:716.926533pt;}
.y2{bottom:718.704651pt;}
.y189{bottom:719.599867pt;}
.y22{bottom:721.511867pt;}
.y113{bottom:728.589467pt;}
.y47{bottom:733.579200pt;}
.y188{bottom:734.131867pt;}
.y6e{bottom:735.039867pt;}
.yf2{bottom:735.259867pt;}
.y36{bottom:746.659867pt;}
.y187{bottom:748.663867pt;}
.y46{bottom:751.985867pt;}
.y6d{bottom:753.446533pt;}
.yf1{bottom:753.593200pt;}
.y6a{bottom:757.884667pt;}
.y186{bottom:763.195867pt;}
.y6c{bottom:771.853200pt;}
.yf0{bottom:771.926533pt;}
.y185{bottom:777.727867pt;}
.y35{bottom:780.259867pt;}
.y45{bottom:786.259867pt;}
.y6b{bottom:790.259867pt;}
.y184{bottom:792.259867pt;}
.y44{bottom:846.236267pt;}
.h9{height:21.735881pt;}
.h7{height:24.841007pt;}
.h8{height:24.941578pt;}
.h16{height:27.093750pt;}
.hc{height:27.946133pt;}
.h6{height:31.051259pt;}
.ha{height:31.176973pt;}
.h5{height:34.156385pt;}
.hb{height:34.777410pt;}
.h1e{height:38.062500pt;}
.h21{height:38.812500pt;}
.h1a{height:40.640625pt;}
.h20{height:42.291667pt;}
.h3{height:43.471763pt;}
.h4{height:43.647762pt;}
.h1d{height:45.156250pt;}
.h12{height:46.520833pt;}
.h15{height:48.242188pt;}
.h13{height:49.671875pt;}
.h1f{height:51.750000pt;}
.h1b{height:54.187500pt;}
.h1c{height:64.687500pt;}
.h17{height:77.929688pt;}
.h14{height:85.796875pt;}
.h18{height:88.812500pt;}
.h19{height:94.828125pt;}
.hf{height:153.125000pt;}
.h11{height:203.000000pt;}
.h10{height:315.364583pt;}
.h2{height:881.975189pt;}
.h0{height:882.506667pt;}
.h1{height:882.666667pt;}
.he{height:888.000000pt;}
.hd{height:888.189333pt;}
.w1{width:623.333333pt;}
.w3{width:623.622667pt;}
.w2{width:623.623265pt;}
.w0{width:623.626667pt;}
.x0{left:0.000000pt;}
.x3{left:32.664584pt;}
.x1{left:38.604551pt;}
.x14{left:41.574800pt;}
.x1b{left:53.574800pt;}
.x12{left:61.616800pt;}
.x19{left:68.031467pt;}
.x8{left:71.294000pt;}
.x1a{left:86.929067pt;}
.xd{left:95.037067pt;}
.x13{left:101.480800pt;}
.xb{left:102.915733pt;}
.x2{left:103.933719pt;}
.xc{left:110.363733pt;}
.x9{left:120.852667pt;}
.x10{left:141.388800pt;}
.x16{left:143.622000pt;}
.x1c{left:162.512667pt;}
.x7{left:169.238000pt;}
.xf{left:217.523467pt;}
.x11{left:229.242133pt;}
.xa{left:250.242000pt;}
.xe{left:273.007467pt;}
.x4{left:305.871665pt;}
.x15{left:361.852267pt;}
.x5{left:399.557467pt;}
.x6{left:427.691333pt;}
.x17{left:555.709067pt;}
.x18{left:570.667867pt;}
}




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