
    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_97d61054befbb80c8b7782c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893066;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_3f8bf43d042de5df6466ab25.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_df4b743a5e7f3caf34ac30ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_124fd1ffc55fa3b7f9e49cc6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.701660;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_c44d8a7dfabae4441c276039.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.877930;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_a225fb3f41fb52cfa81778d1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_8998fe5a124a073fefae46a1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_eebed72766838b19671abfb9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_7fbdd5ad3f6db893b2125c0a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bffdfc0be899b976bbf1e51c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_076216784306466622315485.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.888184;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_ae42ed63a5b1554ee7a78d49.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ca09301f0e501a90ad601e79.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_99440f189ed3bb9ce1f5c1d8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.093262;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_fbe857cd1766ff32a3a12b93.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a29408aa6991c498f8f05a63.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.891602;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_8feac608353c7cf7e7fdc79b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9bcb1d52ec95b4a3b186ede9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.900391;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls26{letter-spacing:-0.776736px;}
.ls27{letter-spacing:-0.659808px;}
.lsd{letter-spacing:-0.576288px;}
.ls17{letter-spacing:-0.338688px;}
.ls2b{letter-spacing:-0.302400px;}
.ls1c{letter-spacing:-0.260064px;}
.ls19{letter-spacing:-0.241920px;}
.lsf{letter-spacing:-0.241200px;}
.ls1d{letter-spacing:-0.223776px;}
.ls22{letter-spacing:-0.198720px;}
.ls1b{letter-spacing:-0.175392px;}
.ls1e{letter-spacing:-0.158976px;}
.ls1a{letter-spacing:-0.157248px;}
.ls10{letter-spacing:-0.154368px;}
.ls21{letter-spacing:-0.125856px;}
.ls18{letter-spacing:-0.120960px;}
.ls20{letter-spacing:-0.119232px;}
.ls1f{letter-spacing:-0.079488px;}
.ls23{letter-spacing:-0.059616px;}
.ls29{letter-spacing:-0.014400px;}
.lse{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000576px;}
.ls25{letter-spacing:0.014400px;}
.ls5{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.018720px;}
.ls13{letter-spacing:0.107568px;}
.ls11{letter-spacing:0.116928px;}
.ls2{letter-spacing:0.119520px;}
.ls28{letter-spacing:0.123552px;}
.ls9{letter-spacing:0.159840px;}
.ls3{letter-spacing:0.161280px;}
.ls16{letter-spacing:0.200448px;}
.ls4{letter-spacing:0.203184px;}
.ls1{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.242208px;}
.ls8{letter-spacing:0.279360px;}
.ls12{letter-spacing:0.370512px;}
.ls14{letter-spacing:0.430272px;}
.ls15{letter-spacing:0.449280px;}
.ls6{letter-spacing:0.483840px;}
.ls2d{letter-spacing:1.075680px;}
.lsc{letter-spacing:1.598400px;}
.ls2c{letter-spacing:2.309760px;}
.lsb{letter-spacing:13.798944px;}
.lsa{letter-spacing:13.800384px;}
.ls24{letter-spacing:806.710464px;}
.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;}
}
.ws5{word-spacing:-29.987568px;}
.ws6{word-spacing:-27.000000px;}
.ws1{word-spacing:-24.120000px;}
.ws2{word-spacing:-23.878800px;}
.ws7{word-spacing:-22.049280px;}
.ws3{word-spacing:-21.122208px;}
.ws8{word-spacing:-21.080448px;}
.ws0{word-spacing:-20.303712px;}
.ws12{word-spacing:-20.220192px;}
.ws14{word-spacing:-18.014400px;}
.ws4{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.985600px;}
.wse{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.480512px;}
.wsd{word-spacing:-16.440768px;}
.ws9{word-spacing:-15.120000px;}
.wsa{word-spacing:-14.878080px;}
.wsb{word-spacing:-14.859936px;}
.ws16{word-spacing:-14.817600px;}
.ws13{word-spacing:-12.003552px;}
.ws11{word-spacing:0.000000px;}
.wsc{word-spacing:0.092736px;}
.ws10{word-spacing:0.132480px;}
._14{margin-left:-4.806144px;}
._5{margin-left:-3.775680px;}
._1{margin-left:-2.412000px;}
._2{margin-left:-1.085760px;}
._4{width:1.149120px;}
._a{width:2.669760px;}
._f{width:3.816000px;}
._8{width:5.100480px;}
._6{width:6.719616px;}
._0{width:7.726896px;}
._12{width:8.776800px;}
._7{width:10.290240px;}
._3{width:11.370240px;}
._11{width:12.708000px;}
._9{width:13.976640px;}
._d{width:15.544800px;}
._e{width:16.567200px;}
._10{width:19.929600px;}
._15{width:21.041280px;}
._c{width:22.124160px;}
._b{width:23.138064px;}
._19{width:24.539184px;}
._17{width:25.574400px;}
._1a{width:26.654400px;}
._16{width:28.591200px;}
._1b{width:30.138480px;}
._18{width:33.438384px;}
._13{width:45.979200px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.520000px;}
.fs7{font-size:60.480000px;}
.fs8{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.fs6{font-size:86.400000px;}
.fs3{font-size:96.480000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y29{bottom:2.154750px;}
.y3b{bottom:5.634750px;}
.y38{bottom:9.294750px;}
.y37{bottom:28.374750px;}
.y36{bottom:67.974750px;}
.y39{bottom:76.614750px;}
.y9{bottom:82.014750px;}
.y35{bottom:87.054750px;}
.y3a{bottom:91.500000px;}
.y8{bottom:97.134750px;}
.y34{bottom:106.134750px;}
.yab{bottom:120.534750px;}
.y12d{bottom:121.254750px;}
.y118{bottom:123.054750px;}
.y33{bottom:125.214750px;}
.y8a{bottom:126.294750px;}
.y104{bottom:129.174750px;}
.y7{bottom:129.534750px;}
.ye1{bottom:129.894750px;}
.y11c{bottom:141.054750px;}
.y32{bottom:144.294750px;}
.y12c{bottom:145.014750px;}
.y13c{bottom:149.694750px;}
.y89{bottom:150.054750px;}
.y103{bottom:152.934750px;}
.y62{bottom:153.294750px;}
.y6{bottom:153.654750px;}
.ye0{bottom:154.014750px;}
.y117{bottom:156.174750px;}
.y31{bottom:163.014750px;}
.y11b{bottom:165.174750px;}
.yaa{bottom:168.054750px;}
.yf6{bottom:169.134750px;}
.yc9{bottom:174.174750px;}
.y102{bottom:177.054750px;}
.y5{bottom:177.414750px;}
.y30{bottom:182.094750px;}
.y13b{bottom:182.454750px;}
.y88{bottom:183.174750px;}
.y61{bottom:186.054750px;}
.ydf{bottom:186.774750px;}
.y116{bottom:188.934750px;}
.ya9{bottom:192.174750px;}
.yf5{bottom:192.894750px;}
.yc8{bottom:197.934750px;}
.y101{bottom:200.814750px;}
.y2f{bottom:201.174750px;}
.y87{bottom:206.934750px;}
.y60{bottom:209.814750px;}
.yde{bottom:210.534750px;}
.y4{bottom:212.694750px;}
.y13a{bottom:215.214750px;}
.yf4{bottom:216.654750px;}
.y2e{bottom:219.894750px;}
.yc7{bottom:221.694750px;}
.y100{bottom:224.574750px;}
.ya8{bottom:224.934750px;}
.y86{bottom:230.694750px;}
.y5f{bottom:233.574750px;}
.ydd{bottom:234.294750px;}
.y115{bottom:236.454750px;}
.y2d{bottom:238.974750px;}
.y27{bottom:240.414750px;}
.yc6{bottom:245.454750px;}
.y139{bottom:247.974750px;}
.yff{bottom:248.334750px;}
.ya7{bottom:248.694750px;}
.y85{bottom:254.454750px;}
.y5e{bottom:257.334750px;}
.y2c{bottom:258.054750px;}
.y114{bottom:260.214750px;}
.yf3{bottom:264.174750px;}
.ye7{bottom:269.214750px;}
.yfe{bottom:272.094750px;}
.ya6{bottom:272.454750px;}
.y2b{bottom:277.134750px;}
.y84{bottom:278.214750px;}
.y138{bottom:280.734750px;}
.y5d{bottom:281.454750px;}
.ydc{bottom:281.814750px;}
.y113{bottom:283.974750px;}
.y26{bottom:284.334750px;}
.yf2{bottom:287.934750px;}
.ye6{bottom:292.974750px;}
.yfd{bottom:295.854750px;}
.ya5{bottom:296.214750px;}
.y12b{bottom:296.934750px;}
.y83{bottom:301.974750px;}
.y137{bottom:304.494750px;}
.y5c{bottom:305.214750px;}
.ydb{bottom:305.574750px;}
.y2a{bottom:306.000000px;}
.y112{bottom:307.734750px;}
.yf1{bottom:311.694750px;}
.ye5{bottom:316.734750px;}
.y25{bottom:317.094750px;}
.yfc{bottom:319.614750px;}
.ya4{bottom:319.974750px;}
.y12a{bottom:320.694750px;}
.y82{bottom:325.734750px;}
.y5b{bottom:328.974750px;}
.yda{bottom:329.334750px;}
.y111{bottom:331.494750px;}
.yf0{bottom:335.454750px;}
.y136{bottom:337.254750px;}
.ye4{bottom:340.494750px;}
.yfb{bottom:343.374750px;}
.ya3{bottom:343.734750px;}
.y129{bottom:344.454750px;}
.y81{bottom:349.494750px;}
.y24{bottom:349.854750px;}
.y5a{bottom:352.734750px;}
.y110{bottom:355.254750px;}
.y132{bottom:358.494750px;}
.yef{bottom:359.214750px;}
.y135{bottom:361.374750px;}
.yd9{bottom:362.454750px;}
.ya2{bottom:367.494750px;}
.y128{bottom:368.214750px;}
.yc5{bottom:373.254750px;}
.y59{bottom:376.494750px;}
.y10f{bottom:379.374750px;}
.y80{bottom:382.254750px;}
.y23{bottom:382.614750px;}
.yee{bottom:383.334750px;}
.yd8{bottom:386.214750px;}
.ya1{bottom:391.254750px;}
.y127{bottom:392.334750px;}
.y134{bottom:394.134750px;}
.yc4{bottom:397.374750px;}
.y58{bottom:400.254750px;}
.y10e{bottom:403.134750px;}
.y7f{bottom:406.374750px;}
.yed{bottom:407.094750px;}
.yd7{bottom:409.974750px;}
.y22{bottom:415.374750px;}
.y126{bottom:416.094750px;}
.yc3{bottom:421.134750px;}
.y57{bottom:424.014750px;}
.y133{bottom:426.894750px;}
.y7e{bottom:430.134750px;}
.yd6{bottom:433.734750px;}
.y10d{bottom:435.894750px;}
.ya0{bottom:439.134750px;}
.yec{bottom:439.854750px;}
.yc2{bottom:444.894750px;}
.y56{bottom:447.774750px;}
.y21{bottom:448.494750px;}
.y7d{bottom:453.894750px;}
.yd5{bottom:457.494750px;}
.y10c{bottom:459.654750px;}
.y9f{bottom:462.894750px;}
.y125{bottom:463.614750px;}
.yc1{bottom:468.654750px;}
.yeb{bottom:471.534750px;}
.y55{bottom:471.894750px;}
.y7c{bottom:477.654750px;}
.y20{bottom:481.254750px;}
.y10b{bottom:483.414750px;}
.y9e{bottom:486.654750px;}
.y124{bottom:487.374750px;}
.yc0{bottom:492.414750px;}
.yfa{bottom:495.294750px;}
.y54{bottom:495.654750px;}
.y7b{bottom:501.414750px;}
.yd4{bottom:505.014750px;}
.y10a{bottom:507.174750px;}
.y9d{bottom:510.414750px;}
.y123{bottom:511.134750px;}
.y1f{bottom:514.014750px;}
.ybf{bottom:516.174750px;}
.yf9{bottom:519.054750px;}
.y7a{bottom:525.174750px;}
.y53{bottom:528.414750px;}
.yd3{bottom:528.774750px;}
.y109{bottom:530.934750px;}
.y9c{bottom:534.174750px;}
.y122{bottom:534.894750px;}
.ybe{bottom:539.934750px;}
.y1e{bottom:546.774750px;}
.y79{bottom:548.934750px;}
.yf8{bottom:550.734750px;}
.y52{bottom:552.174750px;}
.y108{bottom:554.694750px;}
.y9b{bottom:557.934750px;}
.y121{bottom:558.654750px;}
.yd2{bottom:561.534750px;}
.ybd{bottom:563.694750px;}
.yf7{bottom:570.534750px;}
.y78{bottom:572.694750px;}
.y51{bottom:575.934750px;}
.y1d{bottom:581.694750px;}
.y120{bottom:582.774750px;}
.ybc{bottom:587.814750px;}
.y9a{bottom:590.694750px;}
.yd1{bottom:593.574750px;}
.y77{bottom:596.814750px;}
.y50{bottom:599.694750px;}
.y131{bottom:605.814750px;}
.y11f{bottom:606.534750px;}
.y14c{bottom:610.854750px;}
.ybb{bottom:611.574750px;}
.y99{bottom:614.814750px;}
.y1c{bottom:619.134750px;}
.y76{bottom:620.574750px;}
.y4f{bottom:623.454750px;}
.y130{bottom:629.574750px;}
.yba{bottom:635.334750px;}
.y98{bottom:638.574750px;}
.y11e{bottom:639.294750px;}
.y14b{bottom:643.614750px;}
.y75{bottom:644.334750px;}
.y4e{bottom:647.214750px;}
.y1b{bottom:647.934750px;}
.y12f{bottom:653.334750px;}
.yb9{bottom:659.094750px;}
.y97{bottom:662.334750px;}
.y14a{bottom:667.374750px;}
.y1a{bottom:667.734750px;}
.y74{bottom:668.094750px;}
.yd0{bottom:670.974750px;}
.y4d{bottom:671.334750px;}
.y12e{bottom:677.094750px;}
.yb8{bottom:682.854750px;}
.y96{bottom:686.094750px;}
.y19{bottom:690.414750px;}
.y149{bottom:691.134750px;}
.y73{bottom:691.854750px;}
.ycf{bottom:694.734750px;}
.y4c{bottom:695.094750px;}
.y11d{bottom:700.854750px;}
.yb7{bottom:706.614750px;}
.y28{bottom:709.500000px;}
.y95{bottom:709.854750px;}
.ye3{bottom:715.614750px;}
.yce{bottom:718.494750px;}
.y18{bottom:718.854750px;}
.y148{bottom:723.894750px;}
.y72{bottom:724.614750px;}
.yb6{bottom:730.374750px;}
.y94{bottom:733.614750px;}
.ye2{bottom:739.374750px;}
.ycd{bottom:742.254750px;}
.y4b{bottom:742.614750px;}
.y71{bottom:748.374750px;}
.y17{bottom:749.814750px;}
.yb5{bottom:754.134750px;}
.y147{bottom:757.014750px;}
.y93{bottom:757.374750px;}
.yea{bottom:763.134750px;}
.y70{bottom:772.134750px;}
.ycc{bottom:773.934750px;}
.y4a{bottom:775.374750px;}
.y16{bottom:777.534750px;}
.y107{bottom:777.894750px;}
.y146{bottom:780.774750px;}
.y92{bottom:781.134750px;}
.yb4{bottom:786.894750px;}
.ycb{bottom:794.094750px;}
.y6f{bottom:795.894750px;}
.y49{bottom:799.134750px;}
.y106{bottom:802.014750px;}
.y15{bottom:802.734750px;}
.y91{bottom:804.894750px;}
.yb3{bottom:811.014750px;}
.y145{bottom:813.534750px;}
.yca{bottom:813.894750px;}
.y6e{bottom:820.014750px;}
.y48{bottom:822.894750px;}
.y90{bottom:829.014750px;}
.y14{bottom:834.414750px;}
.yb2{bottom:834.774750px;}
.y144{bottom:837.294750px;}
.y6d{bottom:843.774750px;}
.y47{bottom:846.654750px;}
.y8f{bottom:852.774750px;}
.yb1{bottom:858.534750px;}
.y6c{bottom:867.534750px;}
.y13{bottom:868.974750px;}
.y143{bottom:870.054750px;}
.y46{bottom:870.414750px;}
.y8e{bottom:876.534750px;}
.yb0{bottom:882.294750px;}
.y6b{bottom:891.294750px;}
.y45{bottom:894.534750px;}
.y8d{bottom:900.294750px;}
.y142{bottom:902.814750px;}
.y12{bottom:903.534750px;}
.yaf{bottom:906.054750px;}
.y6a{bottom:915.054750px;}
.y44{bottom:918.294750px;}
.y8c{bottom:924.054750px;}
.y141{bottom:926.574750px;}
.yae{bottom:929.814750px;}
.y11{bottom:936.294750px;}
.y69{bottom:938.814750px;}
.y43{bottom:942.054750px;}
.y8b{bottom:947.814750px;}
.y140{bottom:950.334750px;}
.yad{bottom:953.574750px;}
.y10{bottom:960.414750px;}
.ye9{bottom:962.574750px;}
.y42{bottom:965.814750px;}
.y68{bottom:971.574750px;}
.y105{bottom:977.334750px;}
.yf{bottom:979.854750px;}
.y13f{bottom:983.454750px;}
.yac{bottom:986.334750px;}
.y41{bottom:989.574750px;}
.y67{bottom:995.334750px;}
.ye8{bottom:1010.454750px;}
.y40{bottom:1013.334750px;}
.y13e{bottom:1016.214750px;}
.ye{bottom:1018.374750px;}
.y66{bottom:1019.454750px;}
.yd{bottom:1034.214750px;}
.y3f{bottom:1037.094750px;}
.y65{bottom:1043.214750px;}
.y13d{bottom:1048.974750px;}
.y11a{bottom:1057.974750px;}
.yc{bottom:1058.334750px;}
.y3e{bottom:1060.854750px;}
.y64{bottom:1066.974750px;}
.y119{bottom:1081.734750px;}
.yb{bottom:1082.454750px;}
.y3d{bottom:1084.974750px;}
.y63{bottom:1090.734750px;}
.ya{bottom:1106.934750px;}
.y3c{bottom:1114.494750px;}
.y3{bottom:1143.654750px;}
.y2{bottom:1164.894750px;}
.y1{bottom:1189.734750px;}
.h11{height:22.500000px;}
.he{height:28.500000px;}
.h5{height:32.994844px;}
.h10{height:46.025156px;}
.h12{height:49.289063px;}
.h3{height:49.992188px;}
.hd{height:53.067656px;}
.h8{height:55.666406px;}
.h2{height:56.563594px;}
.h7{height:58.031719px;}
.h4{height:63.175781px;}
.hc{height:64.304297px;}
.h6{height:65.387813px;}
.ha{height:79.660547px;}
.h9{height:81.002813px;}
.hb{height:95.923828px;}
.hf{height:292.500000px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w4{width:10.500000px;}
.w5{width:19.500000px;}
.w2{width:51.000000px;}
.w3{width:640.500000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:1.136700px;}
.x13{left:11.756628px;}
.x12{left:35.876736px;}
.x1{left:96.536664px;}
.x10{left:139.061808px;}
.x16{left:149.636520px;}
.x9{left:171.241488px;}
.x2{left:201.273336px;}
.x11{left:247.500000px;}
.xf{left:292.586580px;}
.xc{left:317.786688px;}
.xd{left:347.600232px;}
.xa{left:348.729264px;}
.x4{left:356.916312px;}
.xe{left:364.780692px;}
.x17{left:432.000000px;}
.x15{left:436.500000px;}
.x14{left:442.061460px;}
.xb{left:463.324140px;}
.x3{left:478.153620px;}
.x5{left:672.857100px;}
.x6{left:674.040060px;}
.x7{left:677.125620px;}
.x8{left:787.586580px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls26{letter-spacing:-0.690432pt;}
.ls27{letter-spacing:-0.586496pt;}
.lsd{letter-spacing:-0.512256pt;}
.ls17{letter-spacing:-0.301056pt;}
.ls2b{letter-spacing:-0.268800pt;}
.ls1c{letter-spacing:-0.231168pt;}
.ls19{letter-spacing:-0.215040pt;}
.lsf{letter-spacing:-0.214400pt;}
.ls1d{letter-spacing:-0.198912pt;}
.ls22{letter-spacing:-0.176640pt;}
.ls1b{letter-spacing:-0.155904pt;}
.ls1e{letter-spacing:-0.141312pt;}
.ls1a{letter-spacing:-0.139776pt;}
.ls10{letter-spacing:-0.137216pt;}
.ls21{letter-spacing:-0.111872pt;}
.ls18{letter-spacing:-0.107520pt;}
.ls20{letter-spacing:-0.105984pt;}
.ls1f{letter-spacing:-0.070656pt;}
.ls23{letter-spacing:-0.052992pt;}
.ls29{letter-spacing:-0.012800pt;}
.lse{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000512pt;}
.ls25{letter-spacing:0.012800pt;}
.ls5{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.016640pt;}
.ls13{letter-spacing:0.095616pt;}
.ls11{letter-spacing:0.103936pt;}
.ls2{letter-spacing:0.106240pt;}
.ls28{letter-spacing:0.109824pt;}
.ls9{letter-spacing:0.142080pt;}
.ls3{letter-spacing:0.143360pt;}
.ls16{letter-spacing:0.178176pt;}
.ls4{letter-spacing:0.180608pt;}
.ls1{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.215296pt;}
.ls8{letter-spacing:0.248320pt;}
.ls12{letter-spacing:0.329344pt;}
.ls14{letter-spacing:0.382464pt;}
.ls15{letter-spacing:0.399360pt;}
.ls6{letter-spacing:0.430080pt;}
.ls2d{letter-spacing:0.956160pt;}
.lsc{letter-spacing:1.420800pt;}
.ls2c{letter-spacing:2.053120pt;}
.lsb{letter-spacing:12.265728pt;}
.lsa{letter-spacing:12.267008pt;}
.ls24{letter-spacing:717.075968pt;}
.ws5{word-spacing:-26.655616pt;}
.ws6{word-spacing:-24.000000pt;}
.ws1{word-spacing:-21.440000pt;}
.ws2{word-spacing:-21.225600pt;}
.ws7{word-spacing:-19.599360pt;}
.ws3{word-spacing:-18.775296pt;}
.ws8{word-spacing:-18.738176pt;}
.ws0{word-spacing:-18.047744pt;}
.ws12{word-spacing:-17.973504pt;}
.ws14{word-spacing:-16.012800pt;}
.ws4{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.987200pt;}
.wse{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.649344pt;}
.wsd{word-spacing:-14.614016pt;}
.ws9{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.224960pt;}
.wsb{word-spacing:-13.208832pt;}
.ws16{word-spacing:-13.171200pt;}
.ws13{word-spacing:-10.669824pt;}
.ws11{word-spacing:0.000000pt;}
.wsc{word-spacing:0.082432pt;}
.ws10{word-spacing:0.117760pt;}
._14{margin-left:-4.272128pt;}
._5{margin-left:-3.356160pt;}
._1{margin-left:-2.144000pt;}
._2{margin-left:-0.965120pt;}
._4{width:1.021440pt;}
._a{width:2.373120pt;}
._f{width:3.392000pt;}
._8{width:4.533760pt;}
._6{width:5.972992pt;}
._0{width:6.868352pt;}
._12{width:7.801600pt;}
._7{width:9.146880pt;}
._3{width:10.106880pt;}
._11{width:11.296000pt;}
._9{width:12.423680pt;}
._d{width:13.817600pt;}
._e{width:14.726400pt;}
._10{width:17.715200pt;}
._15{width:18.703360pt;}
._c{width:19.665920pt;}
._b{width:20.567168pt;}
._19{width:21.812608pt;}
._17{width:22.732800pt;}
._1a{width:23.692800pt;}
._16{width:25.414400pt;}
._1b{width:26.789760pt;}
._18{width:29.723008pt;}
._13{width:40.870400pt;}
.fs2{font-size:42.240000pt;}
.fs7{font-size:53.760000pt;}
.fs8{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.fs6{font-size:76.800000pt;}
.fs3{font-size:85.760000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:1.915333pt;}
.y3b{bottom:5.008667pt;}
.y38{bottom:8.262000pt;}
.y37{bottom:25.222000pt;}
.y36{bottom:60.422000pt;}
.y39{bottom:68.102000pt;}
.y9{bottom:72.902000pt;}
.y35{bottom:77.382000pt;}
.y3a{bottom:81.333333pt;}
.y8{bottom:86.342000pt;}
.y34{bottom:94.342000pt;}
.yab{bottom:107.142000pt;}
.y12d{bottom:107.782000pt;}
.y118{bottom:109.382000pt;}
.y33{bottom:111.302000pt;}
.y8a{bottom:112.262000pt;}
.y104{bottom:114.822000pt;}
.y7{bottom:115.142000pt;}
.ye1{bottom:115.462000pt;}
.y11c{bottom:125.382000pt;}
.y32{bottom:128.262000pt;}
.y12c{bottom:128.902000pt;}
.y13c{bottom:133.062000pt;}
.y89{bottom:133.382000pt;}
.y103{bottom:135.942000pt;}
.y62{bottom:136.262000pt;}
.y6{bottom:136.582000pt;}
.ye0{bottom:136.902000pt;}
.y117{bottom:138.822000pt;}
.y31{bottom:144.902000pt;}
.y11b{bottom:146.822000pt;}
.yaa{bottom:149.382000pt;}
.yf6{bottom:150.342000pt;}
.yc9{bottom:154.822000pt;}
.y102{bottom:157.382000pt;}
.y5{bottom:157.702000pt;}
.y30{bottom:161.862000pt;}
.y13b{bottom:162.182000pt;}
.y88{bottom:162.822000pt;}
.y61{bottom:165.382000pt;}
.ydf{bottom:166.022000pt;}
.y116{bottom:167.942000pt;}
.ya9{bottom:170.822000pt;}
.yf5{bottom:171.462000pt;}
.yc8{bottom:175.942000pt;}
.y101{bottom:178.502000pt;}
.y2f{bottom:178.822000pt;}
.y87{bottom:183.942000pt;}
.y60{bottom:186.502000pt;}
.yde{bottom:187.142000pt;}
.y4{bottom:189.062000pt;}
.y13a{bottom:191.302000pt;}
.yf4{bottom:192.582000pt;}
.y2e{bottom:195.462000pt;}
.yc7{bottom:197.062000pt;}
.y100{bottom:199.622000pt;}
.ya8{bottom:199.942000pt;}
.y86{bottom:205.062000pt;}
.y5f{bottom:207.622000pt;}
.ydd{bottom:208.262000pt;}
.y115{bottom:210.182000pt;}
.y2d{bottom:212.422000pt;}
.y27{bottom:213.702000pt;}
.yc6{bottom:218.182000pt;}
.y139{bottom:220.422000pt;}
.yff{bottom:220.742000pt;}
.ya7{bottom:221.062000pt;}
.y85{bottom:226.182000pt;}
.y5e{bottom:228.742000pt;}
.y2c{bottom:229.382000pt;}
.y114{bottom:231.302000pt;}
.yf3{bottom:234.822000pt;}
.ye7{bottom:239.302000pt;}
.yfe{bottom:241.862000pt;}
.ya6{bottom:242.182000pt;}
.y2b{bottom:246.342000pt;}
.y84{bottom:247.302000pt;}
.y138{bottom:249.542000pt;}
.y5d{bottom:250.182000pt;}
.ydc{bottom:250.502000pt;}
.y113{bottom:252.422000pt;}
.y26{bottom:252.742000pt;}
.yf2{bottom:255.942000pt;}
.ye6{bottom:260.422000pt;}
.yfd{bottom:262.982000pt;}
.ya5{bottom:263.302000pt;}
.y12b{bottom:263.942000pt;}
.y83{bottom:268.422000pt;}
.y137{bottom:270.662000pt;}
.y5c{bottom:271.302000pt;}
.ydb{bottom:271.622000pt;}
.y2a{bottom:272.000000pt;}
.y112{bottom:273.542000pt;}
.yf1{bottom:277.062000pt;}
.ye5{bottom:281.542000pt;}
.y25{bottom:281.862000pt;}
.yfc{bottom:284.102000pt;}
.ya4{bottom:284.422000pt;}
.y12a{bottom:285.062000pt;}
.y82{bottom:289.542000pt;}
.y5b{bottom:292.422000pt;}
.yda{bottom:292.742000pt;}
.y111{bottom:294.662000pt;}
.yf0{bottom:298.182000pt;}
.y136{bottom:299.782000pt;}
.ye4{bottom:302.662000pt;}
.yfb{bottom:305.222000pt;}
.ya3{bottom:305.542000pt;}
.y129{bottom:306.182000pt;}
.y81{bottom:310.662000pt;}
.y24{bottom:310.982000pt;}
.y5a{bottom:313.542000pt;}
.y110{bottom:315.782000pt;}
.y132{bottom:318.662000pt;}
.yef{bottom:319.302000pt;}
.y135{bottom:321.222000pt;}
.yd9{bottom:322.182000pt;}
.ya2{bottom:326.662000pt;}
.y128{bottom:327.302000pt;}
.yc5{bottom:331.782000pt;}
.y59{bottom:334.662000pt;}
.y10f{bottom:337.222000pt;}
.y80{bottom:339.782000pt;}
.y23{bottom:340.102000pt;}
.yee{bottom:340.742000pt;}
.yd8{bottom:343.302000pt;}
.ya1{bottom:347.782000pt;}
.y127{bottom:348.742000pt;}
.y134{bottom:350.342000pt;}
.yc4{bottom:353.222000pt;}
.y58{bottom:355.782000pt;}
.y10e{bottom:358.342000pt;}
.y7f{bottom:361.222000pt;}
.yed{bottom:361.862000pt;}
.yd7{bottom:364.422000pt;}
.y22{bottom:369.222000pt;}
.y126{bottom:369.862000pt;}
.yc3{bottom:374.342000pt;}
.y57{bottom:376.902000pt;}
.y133{bottom:379.462000pt;}
.y7e{bottom:382.342000pt;}
.yd6{bottom:385.542000pt;}
.y10d{bottom:387.462000pt;}
.ya0{bottom:390.342000pt;}
.yec{bottom:390.982000pt;}
.yc2{bottom:395.462000pt;}
.y56{bottom:398.022000pt;}
.y21{bottom:398.662000pt;}
.y7d{bottom:403.462000pt;}
.yd5{bottom:406.662000pt;}
.y10c{bottom:408.582000pt;}
.y9f{bottom:411.462000pt;}
.y125{bottom:412.102000pt;}
.yc1{bottom:416.582000pt;}
.yeb{bottom:419.142000pt;}
.y55{bottom:419.462000pt;}
.y7c{bottom:424.582000pt;}
.y20{bottom:427.782000pt;}
.y10b{bottom:429.702000pt;}
.y9e{bottom:432.582000pt;}
.y124{bottom:433.222000pt;}
.yc0{bottom:437.702000pt;}
.yfa{bottom:440.262000pt;}
.y54{bottom:440.582000pt;}
.y7b{bottom:445.702000pt;}
.yd4{bottom:448.902000pt;}
.y10a{bottom:450.822000pt;}
.y9d{bottom:453.702000pt;}
.y123{bottom:454.342000pt;}
.y1f{bottom:456.902000pt;}
.ybf{bottom:458.822000pt;}
.yf9{bottom:461.382000pt;}
.y7a{bottom:466.822000pt;}
.y53{bottom:469.702000pt;}
.yd3{bottom:470.022000pt;}
.y109{bottom:471.942000pt;}
.y9c{bottom:474.822000pt;}
.y122{bottom:475.462000pt;}
.ybe{bottom:479.942000pt;}
.y1e{bottom:486.022000pt;}
.y79{bottom:487.942000pt;}
.yf8{bottom:489.542000pt;}
.y52{bottom:490.822000pt;}
.y108{bottom:493.062000pt;}
.y9b{bottom:495.942000pt;}
.y121{bottom:496.582000pt;}
.yd2{bottom:499.142000pt;}
.ybd{bottom:501.062000pt;}
.yf7{bottom:507.142000pt;}
.y78{bottom:509.062000pt;}
.y51{bottom:511.942000pt;}
.y1d{bottom:517.062000pt;}
.y120{bottom:518.022000pt;}
.ybc{bottom:522.502000pt;}
.y9a{bottom:525.062000pt;}
.yd1{bottom:527.622000pt;}
.y77{bottom:530.502000pt;}
.y50{bottom:533.062000pt;}
.y131{bottom:538.502000pt;}
.y11f{bottom:539.142000pt;}
.y14c{bottom:542.982000pt;}
.ybb{bottom:543.622000pt;}
.y99{bottom:546.502000pt;}
.y1c{bottom:550.342000pt;}
.y76{bottom:551.622000pt;}
.y4f{bottom:554.182000pt;}
.y130{bottom:559.622000pt;}
.yba{bottom:564.742000pt;}
.y98{bottom:567.622000pt;}
.y11e{bottom:568.262000pt;}
.y14b{bottom:572.102000pt;}
.y75{bottom:572.742000pt;}
.y4e{bottom:575.302000pt;}
.y1b{bottom:575.942000pt;}
.y12f{bottom:580.742000pt;}
.yb9{bottom:585.862000pt;}
.y97{bottom:588.742000pt;}
.y14a{bottom:593.222000pt;}
.y1a{bottom:593.542000pt;}
.y74{bottom:593.862000pt;}
.yd0{bottom:596.422000pt;}
.y4d{bottom:596.742000pt;}
.y12e{bottom:601.862000pt;}
.yb8{bottom:606.982000pt;}
.y96{bottom:609.862000pt;}
.y19{bottom:613.702000pt;}
.y149{bottom:614.342000pt;}
.y73{bottom:614.982000pt;}
.ycf{bottom:617.542000pt;}
.y4c{bottom:617.862000pt;}
.y11d{bottom:622.982000pt;}
.yb7{bottom:628.102000pt;}
.y28{bottom:630.666667pt;}
.y95{bottom:630.982000pt;}
.ye3{bottom:636.102000pt;}
.yce{bottom:638.662000pt;}
.y18{bottom:638.982000pt;}
.y148{bottom:643.462000pt;}
.y72{bottom:644.102000pt;}
.yb6{bottom:649.222000pt;}
.y94{bottom:652.102000pt;}
.ye2{bottom:657.222000pt;}
.ycd{bottom:659.782000pt;}
.y4b{bottom:660.102000pt;}
.y71{bottom:665.222000pt;}
.y17{bottom:666.502000pt;}
.yb5{bottom:670.342000pt;}
.y147{bottom:672.902000pt;}
.y93{bottom:673.222000pt;}
.yea{bottom:678.342000pt;}
.y70{bottom:686.342000pt;}
.ycc{bottom:687.942000pt;}
.y4a{bottom:689.222000pt;}
.y16{bottom:691.142000pt;}
.y107{bottom:691.462000pt;}
.y146{bottom:694.022000pt;}
.y92{bottom:694.342000pt;}
.yb4{bottom:699.462000pt;}
.ycb{bottom:705.862000pt;}
.y6f{bottom:707.462000pt;}
.y49{bottom:710.342000pt;}
.y106{bottom:712.902000pt;}
.y15{bottom:713.542000pt;}
.y91{bottom:715.462000pt;}
.yb3{bottom:720.902000pt;}
.y145{bottom:723.142000pt;}
.yca{bottom:723.462000pt;}
.y6e{bottom:728.902000pt;}
.y48{bottom:731.462000pt;}
.y90{bottom:736.902000pt;}
.y14{bottom:741.702000pt;}
.yb2{bottom:742.022000pt;}
.y144{bottom:744.262000pt;}
.y6d{bottom:750.022000pt;}
.y47{bottom:752.582000pt;}
.y8f{bottom:758.022000pt;}
.yb1{bottom:763.142000pt;}
.y6c{bottom:771.142000pt;}
.y13{bottom:772.422000pt;}
.y143{bottom:773.382000pt;}
.y46{bottom:773.702000pt;}
.y8e{bottom:779.142000pt;}
.yb0{bottom:784.262000pt;}
.y6b{bottom:792.262000pt;}
.y45{bottom:795.142000pt;}
.y8d{bottom:800.262000pt;}
.y142{bottom:802.502000pt;}
.y12{bottom:803.142000pt;}
.yaf{bottom:805.382000pt;}
.y6a{bottom:813.382000pt;}
.y44{bottom:816.262000pt;}
.y8c{bottom:821.382000pt;}
.y141{bottom:823.622000pt;}
.yae{bottom:826.502000pt;}
.y11{bottom:832.262000pt;}
.y69{bottom:834.502000pt;}
.y43{bottom:837.382000pt;}
.y8b{bottom:842.502000pt;}
.y140{bottom:844.742000pt;}
.yad{bottom:847.622000pt;}
.y10{bottom:853.702000pt;}
.ye9{bottom:855.622000pt;}
.y42{bottom:858.502000pt;}
.y68{bottom:863.622000pt;}
.y105{bottom:868.742000pt;}
.yf{bottom:870.982000pt;}
.y13f{bottom:874.182000pt;}
.yac{bottom:876.742000pt;}
.y41{bottom:879.622000pt;}
.y67{bottom:884.742000pt;}
.ye8{bottom:898.182000pt;}
.y40{bottom:900.742000pt;}
.y13e{bottom:903.302000pt;}
.ye{bottom:905.222000pt;}
.y66{bottom:906.182000pt;}
.yd{bottom:919.302000pt;}
.y3f{bottom:921.862000pt;}
.y65{bottom:927.302000pt;}
.y13d{bottom:932.422000pt;}
.y11a{bottom:940.422000pt;}
.yc{bottom:940.742000pt;}
.y3e{bottom:942.982000pt;}
.y64{bottom:948.422000pt;}
.y119{bottom:961.542000pt;}
.yb{bottom:962.182000pt;}
.y3d{bottom:964.422000pt;}
.y63{bottom:969.542000pt;}
.ya{bottom:983.942000pt;}
.y3c{bottom:990.662000pt;}
.y3{bottom:1016.582000pt;}
.y2{bottom:1035.462000pt;}
.y1{bottom:1057.542000pt;}
.h11{height:20.000000pt;}
.he{height:25.333333pt;}
.h5{height:29.328750pt;}
.h10{height:40.911250pt;}
.h12{height:43.812500pt;}
.h3{height:44.437500pt;}
.hd{height:47.171250pt;}
.h8{height:49.481250pt;}
.h2{height:50.278750pt;}
.h7{height:51.583750pt;}
.h4{height:56.156250pt;}
.hc{height:57.159375pt;}
.h6{height:58.122500pt;}
.ha{height:70.809375pt;}
.h9{height:72.002500pt;}
.hb{height:85.265625pt;}
.hf{height:260.000000pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w4{width:9.333333pt;}
.w5{width:17.333333pt;}
.w2{width:45.333333pt;}
.w3{width:569.333333pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:1.010400pt;}
.x13{left:10.450336pt;}
.x12{left:31.890432pt;}
.x1{left:85.810368pt;}
.x10{left:123.610496pt;}
.x16{left:133.010240pt;}
.x9{left:152.214656pt;}
.x2{left:178.909632pt;}
.x11{left:220.000000pt;}
.xf{left:260.076960pt;}
.xc{left:282.477056pt;}
.xd{left:308.977984pt;}
.xa{left:309.981568pt;}
.x4{left:317.258944pt;}
.xe{left:324.249504pt;}
.x17{left:384.000000pt;}
.x15{left:388.000000pt;}
.x14{left:392.943520pt;}
.xb{left:411.843680pt;}
.x3{left:425.025440pt;}
.x5{left:598.095200pt;}
.x6{left:599.146720pt;}
.x7{left:601.889440pt;}
.x8{left:700.076960pt;}
}




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