
    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_75560c47e2972d26724bb46d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.402354;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_32edea2dcae6dab5b0fc4491.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_3fcd4602ecac852703b9a685.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_19dc2422588660d164048b10.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.283203;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_41f8bcf14ce8555631652e8a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_d293294c7595221bea4813b7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_7af474c313d721bb6e23f325.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.945312;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_de5ee53a9759336f466474de.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_5f1ce3493c64c5930b245704.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.962402;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_59d6298fcb4f8a11542a8abf.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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;}
.ls15{letter-spacing:-1.296000px;}
.ls17{letter-spacing:-0.828000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.109200px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000026px;}
.lsd{letter-spacing:0.018720px;}
.lsf{letter-spacing:0.037440px;}
.ls8{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.181436px;}
.ls6{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.287962px;}
.ls4{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.288007px;}
.ls11{letter-spacing:0.359989px;}
.ls16{letter-spacing:0.431997px;}
.ls7{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.612000px;}
.ls13{letter-spacing:1.476000px;}
.ls0{letter-spacing:4.212000px;}
.ls14{letter-spacing:7.938733px;}
.lsc{letter-spacing:60.065288px;}
.ls19{letter-spacing:64.026735px;}
.lse{letter-spacing:97.481291px;}
.lsa{letter-spacing:837.678738px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.ws13{word-spacing:-59.760000px;}
.ws12{word-spacing:-33.426720px;}
.wse{word-spacing:-28.097280px;}
.wsb{word-spacing:-26.658720px;}
.ws8{word-spacing:-26.640000px;}
.ws10{word-spacing:-26.621280px;}
.ws0{word-spacing:-22.626720px;}
.ws5{word-spacing:-20.448000px;}
.ws2{word-spacing:-20.304000px;}
.ws4{word-spacing:-20.232000px;}
.wsa{word-spacing:-20.160000px;}
.ws9{word-spacing:-20.016000px;}
.wsd{word-spacing:-19.800000px;}
.ws3{word-spacing:-19.584000px;}
.ws11{word-spacing:-18.305520px;}
.wsf{word-spacing:-17.586720px;}
.ws7{word-spacing:-17.225280px;}
.ws6{word-spacing:-16.613280px;}
.ws1{word-spacing:0.000000px;}
._17{margin-left:-23.441284px;}
._19{margin-left:-21.094007px;}
._16{margin-left:-19.929822px;}
._1a{margin-left:-18.672167px;}
._1f{margin-left:-15.811480px;}
._1d{margin-left:-13.344027px;}
._3{margin-left:-12.010708px;}
._18{margin-left:-10.275397px;}
._1c{margin-left:-9.273316px;}
._1e{margin-left:-8.104553px;}
._1b{margin-left:-7.091984px;}
._15{margin-left:-4.735450px;}
._8{margin-left:-3.528000px;}
._9{margin-left:-1.728000px;}
._0{width:1.135440px;}
._2{width:2.403796px;}
._1{width:3.526276px;}
._4{width:5.058267px;}
._14{width:6.497869px;}
._5{width:7.725011px;}
._28{width:8.847163px;}
._a{width:10.295982px;}
._b{width:11.320637px;}
._23{width:12.676600px;}
._7{width:13.763993px;}
._6{width:14.904000px;}
._c{width:16.632000px;}
._13{width:18.107280px;}
._25{width:21.024019px;}
._27{width:22.464011px;}
._2b{width:23.592691px;}
._24{width:24.624000px;}
._26{width:26.615978px;}
._f{width:27.936000px;}
._e{width:29.088000px;}
._10{width:30.168000px;}
._29{width:31.264560px;}
._d{width:33.264000px;}
._2a{width:34.300593px;}
._22{width:53.423982px;}
._21{width:54.864000px;}
._2e{width:149.832000px;}
._11{width:169.277782px;}
._2d{width:193.844306px;}
._12{width:199.038262px;}
._2c{width:200.835487px;}
._20{width:844.284018px;}
.fc5{color:transparent;}
.fc3{color:rgb(243,149,120);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fsa{font-size:18.000000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:43.200000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y39{bottom:3.239983px;}
.y3d{bottom:3.239994px;}
.y41{bottom:3.240005px;}
.y2b{bottom:3.779984px;}
.y17{bottom:3.780029px;}
.y48{bottom:3.960022px;}
.y31{bottom:6.119980px;}
.y2d{bottom:6.299973px;}
.y1b{bottom:6.300018px;}
.ye6{bottom:7.919998px;}
.yda{bottom:8.099945px;}
.ye3{bottom:8.099991px;}
.yd8{bottom:8.100037px;}
.y10d{bottom:8.669998px;}
.ye2{bottom:10.259995px;}
.yd2{bottom:10.800018px;}
.y22{bottom:11.519989px;}
.y53{bottom:11.925018px;}
.y56{bottom:12.059967px;}
.y45{bottom:12.060059px;}
.y51{bottom:12.239960px;}
.yad{bottom:12.419998px;}
.y125{bottom:12.600014px;}
.ye7{bottom:17.459976px;}
.ydb{bottom:17.504974px;}
.y54{bottom:19.484985px;}
.y4a{bottom:19.620026px;}
.y4c{bottom:19.800018px;}
.y40{bottom:20.334000px;}
.y3c{bottom:20.519989px;}
.y47{bottom:21.240051px;}
.yde{bottom:21.960022px;}
.y2a{bottom:24.479965px;}
.y1e{bottom:24.480011px;}
.ye5{bottom:26.819962px;}
.yd9{bottom:27.044952px;}
.ye1{bottom:29.339996px;}
.yd7{bottom:31.500000px;}
.y21{bottom:32.219971px;}
.y50{bottom:35.280029px;}
.yd4{bottom:37.079956px;}
.ydd{bottom:41.040070px;}
.y1d{bottom:45.179993px;}
.y20{bottom:52.919952px;}
.ydf{bottom:54.900055px;}
.yd5{bottom:63.539978px;}
.y29{bottom:65.879974px;}
.y9{bottom:96.695995px;}
.y8{bottom:113.976002px;}
.y123{bottom:131.436000px;}
.y3f{bottom:134.315998px;}
.y10b{bottom:136.655994px;}
.y122{bottom:155.189999px;}
.y12{bottom:155.549995px;}
.ycd{bottom:157.529995px;}
.y10a{bottom:160.410004px;}
.y13e{bottom:163.649998px;}
.y3e{bottom:169.410004px;}
.ycc{bottom:181.470005px;}
.y109{bottom:184.169998px;}
.y11{bottom:186.509995px;}
.y3b{bottom:187.410004px;}
.y121{bottom:191.009995px;}
.y108{bottom:204.870003px;}
.ycb{bottom:205.230011px;}
.y10f{bottom:209.730011px;}
.y13d{bottom:211.169998px;}
.y120{bottom:214.769989px;}
.y10{bottom:217.469994px;}
.y3a{bottom:222.690010px;}
.y107{bottom:225.570007px;}
.y11f{bottom:238.530006px;}
.y38{bottom:240.690010px;}
.yca{bottom:241.049995px;}
.y13c{bottom:243.929993px;}
.yf{bottom:248.429993px;}
.y106{bottom:255.269989px;}
.y10e{bottom:262.259995px;}
.y37{bottom:262.290000px;}
.y10c{bottom:263.160004px;}
.yc9{bottom:264.809990px;}
.y13b{bottom:267.870003px;}
.y11e{bottom:274.349991px;}
.ye{bottom:279.389992px;}
.y65{bottom:281.910004px;}
.y36{bottom:282.269989px;}
.y105{bottom:284.969994px;}
.y13a{bottom:291.629997px;}
.y11d{bottom:298.110008px;}
.yc8{bottom:300.629997px;}
.y35{bottom:302.429993px;}
.y64{bottom:309.809990px;}
.yd{bottom:310.349991px;}
.y104{bottom:314.669998px;}
.y139{bottom:324.389992px;}
.yc{bottom:329.610008px;}
.y11c{bottom:333.929993px;}
.y63{bottom:336.089996px;}
.yc7{bottom:336.450005px;}
.y103{bottom:344.415000px;}
.y138{bottom:348.195007px;}
.y124{bottom:350.894989px;}
.y62{bottom:356.834999px;}
.y34{bottom:357.014992px;}
.yc6{bottom:360.254997px;}
.y137{bottom:371.955002px;}
.y102{bottom:374.115005px;}
.y61{bottom:377.535004px;}
.yb{bottom:378.615005px;}
.yc5{bottom:384.015015px;}
.y33{bottom:384.375000px;}
.yac{bottom:388.154984px;}
.y136{bottom:395.894989px;}
.y60{bottom:398.234985px;}
.y101{bottom:403.814987px;}
.y32{bottom:411.554993px;}
.ya{bottom:412.994980px;}
.yc4{bottom:419.835022px;}
.y135{bottom:428.654984px;}
.y5f{bottom:430.634995px;}
.ya0{bottom:430.994980px;}
.y100{bottom:439.634995px;}
.y30{bottom:441.435013px;}
.yc3{bottom:443.595016px;}
.y7e{bottom:449.894989px;}
.y134{bottom:452.414978px;}
.y9f{bottom:454.755020px;}
.y7{bottom:462.855011px;}
.yff{bottom:463.394989px;}
.y7d{bottom:470.595016px;}
.y2f{bottom:477.974991px;}
.y9e{bottom:478.515015px;}
.y6{bottom:479.955002px;}
.y5{bottom:480.855011px;}
.y4{bottom:481.755020px;}
.y3{bottom:482.654984px;}
.y2{bottom:483.195007px;}
.y133{bottom:485.175018px;}
.yc2{bottom:486.615005px;}
.yfe{bottom:487.335022px;}
.y7c{bottom:491.294998px;}
.yee{bottom:496.335022px;}
.y9d{bottom:502.275009px;}
.y132{bottom:509.115005px;}
.yfd{bottom:511.095016px;}
.y7b{bottom:511.994980px;}
.y2e{bottom:514.695007px;}
.yed{bottom:529.275009px;}
.y7a{bottom:532.695007px;}
.y131{bottom:532.875000px;}
.y9c{bottom:538.455002px;}
.yc1{bottom:543.134995px;}
.y5e{bottom:546.734985px;}
.yfc{bottom:546.914978px;}
.y79{bottom:553.394989px;}
.y9b{bottom:562.214996px;}
.yec{bottom:562.394989px;}
.yc0{bottom:566.894989px;}
.y130{bottom:568.695007px;}
.y2c{bottom:569.595016px;}
.y78{bottom:574.095016px;}
.y5d{bottom:577.695007px;}
.yfb{bottom:582.734985px;}
.y9a{bottom:585.974991px;}
.ybf{bottom:590.654984px;}
.y12f{bottom:592.455002px;}
.y77{bottom:594.794998px;}
.yeb{bottom:595.515015px;}
.y5c{bottom:599.294998px;}
.y28{bottom:606.345016px;}
.yfa{bottom:606.525009px;}
.ybe{bottom:614.445007px;}
.y76{bottom:615.525009px;}
.y99{bottom:619.125000px;}
.yea{bottom:619.304993px;}
.y5b{bottom:620.025009px;}
.y12e{bottom:628.304993px;}
.yf9{bottom:642.345016px;}
.y98{bottom:642.884995px;}
.ye9{bottom:643.064987px;}
.y5a{bottom:644.144989px;}
.y75{bottom:650.984985px;}
.y12d{bottom:652.064987px;}
.ybd{bottom:657.464996px;}
.ye8{bottom:663.765015px;}
.yf8{bottom:666.105011px;}
.y97{bottom:666.824982px;}
.y12c{bottom:675.824982px;}
.y145{bottom:679.244980px;}
.ye4{bottom:681.585022px;}
.y74{bottom:682.845016px;}
.yab{bottom:684.644989px;}
.y144{bottom:699.945007px;}
.yf7{bottom:701.925018px;}
.y96{bottom:702.464996px;}
.y27{bottom:702.644989px;}
.y12b{bottom:711.644989px;}
.yaa{bottom:711.824982px;}
.y73{bottom:712.544998px;}
.ybc{bottom:713.984985px;}
.y11b{bottom:715.605011px;}
.yf6{bottom:725.685013px;}
.y95{bottom:726.404984px;}
.ye0{bottom:728.384995px;}
.y12a{bottom:735.585022px;}
.ya9{bottom:735.765015px;}
.ybb{bottom:737.744980px;}
.y11a{bottom:739.365005px;}
.y72{bottom:743.505020px;}
.y59{bottom:747.644989px;}
.yf5{bottom:749.445007px;}
.y94{bottom:750.164978px;}
.y26{bottom:757.544998px;}
.ya8{bottom:759.525009px;}
.yba{bottom:761.505020px;}
.y119{bottom:763.304993px;}
.y129{bottom:771.225037px;}
.y93{bottom:773.925018px;}
.y58{bottom:775.184967px;}
.ydc{bottom:779.864960px;}
.y71{bottom:780.045044px;}
.ya7{bottom:783.285004px;}
.y118{bottom:787.065033px;}
.yf4{bottom:792.464996px;}
.y25{bottom:794.085022px;}
.y128{bottom:795.164978px;}
.yb9{bottom:797.324982px;}
.y57{bottom:801.644989px;}
.ya6{bottom:807.045044px;}
.y92{bottom:809.745026px;}
.y117{bottom:810.824982px;}
.y70{bottom:815.324982px;}
.y127{bottom:818.925018px;}
.y143{bottom:819.105011px;}
.yb8{bottom:821.085022px;}
.y55{bottom:825.765015px;}
.y24{bottom:827.565033px;}
.y88{bottom:830.984985px;}
.y91{bottom:833.504974px;}
.y6f{bottom:836.024963px;}
.yf3{bottom:842.864960px;}
.yb7{bottom:844.844971px;}
.y1{bottom:845.925018px;}
.y116{bottom:846.644989px;}
.y23{bottom:850.785004px;}
.y87{bottom:854.745026px;}
.y90{bottom:857.445007px;}
.y52{bottom:860.144989px;}
.yf2{bottom:866.804993px;}
.y6e{bottom:867.164978px;}
.yb6{bottom:868.785004px;}
.y115{bottom:870.405029px;}
.ya5{bottom:878.550018px;}
.y86{bottom:883.050018px;}
.y1f{bottom:887.550018px;}
.yf1{bottom:890.609985px;}
.y8f{bottom:893.129974px;}
.y4f{bottom:894.390015px;}
.yd6{bottom:901.769989px;}
.y6d{bottom:902.489960px;}
.yb5{bottom:904.649963px;}
.y85{bottom:911.309967px;}
.ya4{bottom:914.370026px;}
.y8e{bottom:918.149963px;}
.y6c{bottom:923.190033px;}
.yf0{bottom:926.429993px;}
.yb4{bottom:928.410004px;}
.ya3{bottom:938.129974px;}
.y84{bottom:939.750000px;}
.y4e{bottom:942.629974px;}
.y8d{bottom:943.170044px;}
.y6b{bottom:943.890015px;}
.yef{bottom:950.190033px;}
.yb3{bottom:952.170044px;}
.yd3{bottom:953.250000px;}
.y114{bottom:953.969971px;}
.y126{bottom:961.890015px;}
.y83{bottom:968.010040px;}
.y8c{bottom:968.190033px;}
.y4d{bottom:969.449982px;}
.y1c{bottom:970.890015px;}
.ya2{bottom:973.949982px;}
.y6a{bottom:974.850037px;}
.y113{bottom:977.730011px;}
.y4b{bottom:987.089996px;}
.yb2{bottom:987.989960px;}
.y82{bottom:996.269989px;}
.y8b{bottom:997.710022px;}
.y142{bottom:999.690033px;}
.y49{bottom:1007.609985px;}
.y69{bottom:1011.390015px;}
.yb1{bottom:1011.750000px;}
.y112{bottom:1020.750000px;}
.ya1{bottom:1021.649963px;}
.y81{bottom:1024.530029px;}
.y46{bottom:1028.129974px;}
.y141{bottom:1032.449982px;}
.y8a{bottom:1033.530029px;}
.yb0{bottom:1035.510040px;}
.yd1{bottom:1037.489960px;}
.y1a{bottom:1046.489960px;}
.y68{bottom:1047.929993px;}
.y111{bottom:1048.289978px;}
.y80{bottom:1052.969971px;}
.y140{bottom:1056.210022px;}
.y89{bottom:1057.469971px;}
.y44{bottom:1064.129974px;}
.yaf{bottom:1078.530029px;}
.y7f{bottom:1081.230011px;}
.yd0{bottom:1081.589996px;}
.y67{bottom:1084.649963px;}
.y13f{bottom:1089.149963px;}
.y110{bottom:1092.750000px;}
.y19{bottom:1094.550018px;}
.y43{bottom:1112.190033px;}
.ycf{bottom:1112.910004px;}
.yae{bottom:1125.329956px;}
.y66{bottom:1125.510040px;}
.yce{bottom:1136.670044px;}
.y18{bottom:1138.140015px;}
.y42{bottom:1139.219971px;}
.y15{bottom:1157.399963px;}
.y16{bottom:1174.320007px;}
.y14{bottom:1178.100037px;}
.y13{bottom:1200.471870px;}
.h3{height:2.960186px;}
.h14{height:17.280000px;}
.h28{height:18.773438px;}
.h18{height:19.620000px;}
.h19{height:19.800000px;}
.ha{height:20.700000px;}
.hf{height:23.039999px;}
.hb{height:23.219999px;}
.he{height:23.256000px;}
.h27{height:25.740000px;}
.h21{height:30.780000px;}
.h1b{height:33.516000px;}
.h1c{height:33.660000px;}
.h16{height:34.380000px;}
.h15{height:34.560000px;}
.h17{height:35.099999px;}
.h1a{height:35.280000px;}
.h20{height:36.900000px;}
.h1f{height:37.546875px;}
.h10{height:41.400000px;}
.h9{height:42.335156px;}
.h26{height:46.800000px;}
.h24{height:47.016000px;}
.h23{height:51.480000px;}
.h1e{height:53.121094px;}
.h29{height:55.980000px;}
.h12{height:59.439023px;}
.hc{height:62.100002px;}
.h5{height:62.327813px;}
.h8{height:69.086250px;}
.hd{height:69.840002px;}
.h13{height:72.090000px;}
.h25{height:74.879997px;}
.h4{height:75.093750px;}
.h11{height:82.800000px;}
.h22{height:83.520000px;}
.h1d{height:99.874688px;}
.h6{height:107.793281px;}
.h7{height:125.406562px;}
.h1{height:1263.000000px;}
.h2{height:1263.059967px;}
.h0{height:1263.060000px;}
.w3{width:10.080000px;}
.w14{width:20.159999px;}
.w15{width:28.800000px;}
.w8{width:52.055998px;}
.wc{width:91.656000px;}
.wb{width:94.535997px;}
.w9{width:116.100002px;}
.w10{width:116.279995px;}
.w12{width:180.029995px;}
.w6{width:251.535004px;}
.w4{width:254.415000px;}
.we{width:263.415000px;}
.w13{width:265.934990px;}
.wf{width:296.894989px;}
.w16{width:324.929993px;}
.w17{width:448.664978px;}
.wa{width:467.025009px;}
.w5{width:479.955002px;}
.w7{width:483.375000px;}
.wd{width:530.894989px;}
.w11{width:664.304993px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:6.516003px;}
.x9{left:7.775997px;}
.x20{left:9.000000px;}
.x1d{left:10.260017px;}
.x1a{left:15.945007px;}
.x21{left:43.919998px;}
.x14{left:65.154006px;}
.x2{left:84.959986px;}
.x10{left:102.995989px;}
.x12{left:111.995989px;}
.x13{left:114.155994px;}
.x11{left:120.995989px;}
.x1e{left:127.475988px;}
.xa{left:138.636005px;}
.x15{left:159.149984px;}
.x3{left:161.489992px;}
.xc{left:181.109997px;}
.x1f{left:221.969994px;}
.x16{left:223.049995px;}
.xb{left:255.629997px;}
.xd{left:273.495003px;}
.x1c{left:283.934990px;}
.x1b{left:292.320007px;}
.x8{left:337.214996px;}
.x7{left:340.094994px;}
.xe{left:349.995003px;}
.x17{left:403.814987px;}
.x19{left:573.119980px;}
.xf{left:647.609985px;}
.x4{left:674.838045px;}
.x18{left:787.469971px;}
.x5{left:797.550018px;}
.x1{left:807.449968px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.152000pt;}
.ls17{letter-spacing:-0.736000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000023pt;}
.lsd{letter-spacing:0.016640pt;}
.lsf{letter-spacing:0.033280pt;}
.ls8{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.161276pt;}
.ls6{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.255966pt;}
.ls4{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.256007pt;}
.ls11{letter-spacing:0.319990pt;}
.ls16{letter-spacing:0.383997pt;}
.ls7{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.544000pt;}
.ls13{letter-spacing:1.312000pt;}
.ls0{letter-spacing:3.744000pt;}
.ls14{letter-spacing:7.056651pt;}
.lsc{letter-spacing:53.391367pt;}
.ls19{letter-spacing:56.912653pt;}
.lse{letter-spacing:86.650037pt;}
.lsa{letter-spacing:744.603323pt;}
.wsc{word-spacing:-64.000000pt;}
.ws13{word-spacing:-53.120000pt;}
.ws12{word-spacing:-29.712640pt;}
.wse{word-spacing:-24.975360pt;}
.wsb{word-spacing:-23.696640pt;}
.ws8{word-spacing:-23.680000pt;}
.ws10{word-spacing:-23.663360pt;}
.ws0{word-spacing:-20.112640pt;}
.ws5{word-spacing:-18.176000pt;}
.ws2{word-spacing:-18.048000pt;}
.ws4{word-spacing:-17.984000pt;}
.wsa{word-spacing:-17.920000pt;}
.ws9{word-spacing:-17.792000pt;}
.wsd{word-spacing:-17.600000pt;}
.ws3{word-spacing:-17.408000pt;}
.ws11{word-spacing:-16.271573pt;}
.wsf{word-spacing:-15.632640pt;}
.ws7{word-spacing:-15.311360pt;}
.ws6{word-spacing:-14.767360pt;}
.ws1{word-spacing:0.000000pt;}
._17{margin-left:-20.836697pt;}
._19{margin-left:-18.750228pt;}
._16{margin-left:-17.715397pt;}
._1a{margin-left:-16.597481pt;}
._1f{margin-left:-14.054649pt;}
._1d{margin-left:-11.861358pt;}
._3{margin-left:-10.676185pt;}
._18{margin-left:-9.133686pt;}
._1c{margin-left:-8.242948pt;}
._1e{margin-left:-7.204047pt;}
._1b{margin-left:-6.303985pt;}
._15{margin-left:-4.209288pt;}
._8{margin-left:-3.136000pt;}
._9{margin-left:-1.536000pt;}
._0{width:1.009280pt;}
._2{width:2.136708pt;}
._1{width:3.134468pt;}
._4{width:4.496238pt;}
._14{width:5.775884pt;}
._5{width:6.866676pt;}
._28{width:7.864145pt;}
._a{width:9.151984pt;}
._b{width:10.062788pt;}
._23{width:11.268089pt;}
._7{width:12.234660pt;}
._6{width:13.248000pt;}
._c{width:14.784000pt;}
._13{width:16.095360pt;}
._25{width:18.688017pt;}
._27{width:19.968010pt;}
._2b{width:20.971281pt;}
._24{width:21.888000pt;}
._26{width:23.658647pt;}
._f{width:24.832000pt;}
._e{width:25.856000pt;}
._10{width:26.816000pt;}
._29{width:27.790720pt;}
._d{width:29.568000pt;}
._2a{width:30.489416pt;}
._22{width:47.487984pt;}
._21{width:48.768000pt;}
._2e{width:133.184000pt;}
._11{width:150.469139pt;}
._2d{width:172.306050pt;}
._12{width:176.922899pt;}
._2c{width:178.520433pt;}
._20{width:750.474683pt;}
.fs0{font-size:2.560000pt;}
.fsa{font-size:16.000000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:38.400000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:2.879985pt;}
.y3d{bottom:2.879995pt;}
.y41{bottom:2.880005pt;}
.y2b{bottom:3.359985pt;}
.y17{bottom:3.360026pt;}
.y48{bottom:3.520020pt;}
.y31{bottom:5.439982pt;}
.y2d{bottom:5.599976pt;}
.y1b{bottom:5.600016pt;}
.ye6{bottom:7.039998pt;}
.yda{bottom:7.199951pt;}
.ye3{bottom:7.199992pt;}
.yd8{bottom:7.200033pt;}
.y10d{bottom:7.706665pt;}
.ye2{bottom:9.119995pt;}
.yd2{bottom:9.600016pt;}
.y22{bottom:10.239990pt;}
.y53{bottom:10.600016pt;}
.y56{bottom:10.719971pt;}
.y45{bottom:10.720052pt;}
.y51{bottom:10.879964pt;}
.yad{bottom:11.039998pt;}
.y125{bottom:11.200012pt;}
.ye7{bottom:15.519979pt;}
.ydb{bottom:15.559977pt;}
.y54{bottom:17.319987pt;}
.y4a{bottom:17.440023pt;}
.y4c{bottom:17.600016pt;}
.y40{bottom:18.074666pt;}
.y3c{bottom:18.239990pt;}
.y47{bottom:18.880046pt;}
.yde{bottom:19.520020pt;}
.y2a{bottom:21.759969pt;}
.y1e{bottom:21.760010pt;}
.ye5{bottom:23.839966pt;}
.yd9{bottom:24.039958pt;}
.ye1{bottom:26.079997pt;}
.yd7{bottom:28.000000pt;}
.y21{bottom:28.639974pt;}
.y50{bottom:31.360026pt;}
.yd4{bottom:32.959961pt;}
.ydd{bottom:36.480062pt;}
.y1d{bottom:40.159993pt;}
.y20{bottom:47.039958pt;}
.ydf{bottom:48.800049pt;}
.yd5{bottom:56.479980pt;}
.y29{bottom:58.559977pt;}
.y9{bottom:85.951996pt;}
.y8{bottom:101.312002pt;}
.y123{bottom:116.832000pt;}
.y3f{bottom:119.391998pt;}
.y10b{bottom:121.471995pt;}
.y122{bottom:137.946665pt;}
.y12{bottom:138.266663pt;}
.ycd{bottom:140.026662pt;}
.y10a{bottom:142.586670pt;}
.y13e{bottom:145.466665pt;}
.y3e{bottom:150.586670pt;}
.ycc{bottom:161.306671pt;}
.y109{bottom:163.706665pt;}
.y11{bottom:165.786662pt;}
.y3b{bottom:166.586670pt;}
.y121{bottom:169.786662pt;}
.y108{bottom:182.106669pt;}
.ycb{bottom:182.426676pt;}
.y10f{bottom:186.426676pt;}
.y13d{bottom:187.706665pt;}
.y120{bottom:190.906657pt;}
.y10{bottom:193.306661pt;}
.y3a{bottom:197.946676pt;}
.y107{bottom:200.506673pt;}
.y11f{bottom:212.026672pt;}
.y38{bottom:213.946676pt;}
.yca{bottom:214.266663pt;}
.y13c{bottom:216.826660pt;}
.yf{bottom:220.826660pt;}
.y106{bottom:226.906657pt;}
.y10e{bottom:233.119995pt;}
.y37{bottom:233.146667pt;}
.y10c{bottom:233.920003pt;}
.yc9{bottom:235.386658pt;}
.y13b{bottom:238.106669pt;}
.y11e{bottom:243.866659pt;}
.ye{bottom:248.346659pt;}
.y65{bottom:250.586670pt;}
.y36{bottom:250.906657pt;}
.y105{bottom:253.306661pt;}
.y13a{bottom:259.226664pt;}
.y11d{bottom:264.986674pt;}
.yc8{bottom:267.226664pt;}
.y35{bottom:268.826660pt;}
.y64{bottom:275.386658pt;}
.yd{bottom:275.866659pt;}
.y104{bottom:279.706665pt;}
.y139{bottom:288.346659pt;}
.yc{bottom:292.986674pt;}
.y11c{bottom:296.826660pt;}
.y63{bottom:298.746663pt;}
.yc7{bottom:299.066671pt;}
.y103{bottom:306.146667pt;}
.y138{bottom:309.506673pt;}
.y124{bottom:311.906657pt;}
.y62{bottom:317.186666pt;}
.y34{bottom:317.346659pt;}
.yc6{bottom:320.226664pt;}
.y137{bottom:330.626668pt;}
.y102{bottom:332.546672pt;}
.y61{bottom:335.586670pt;}
.yb{bottom:336.546672pt;}
.yc5{bottom:341.346680pt;}
.y33{bottom:341.666667pt;}
.yac{bottom:345.026652pt;}
.y136{bottom:351.906657pt;}
.y60{bottom:353.986654pt;}
.y101{bottom:358.946655pt;}
.y32{bottom:365.826660pt;}
.ya{bottom:367.106649pt;}
.yc4{bottom:373.186686pt;}
.y135{bottom:381.026652pt;}
.y5f{bottom:382.786662pt;}
.ya0{bottom:383.106649pt;}
.y100{bottom:390.786662pt;}
.y30{bottom:392.386678pt;}
.yc3{bottom:394.306681pt;}
.y7e{bottom:399.906657pt;}
.y134{bottom:402.146647pt;}
.y9f{bottom:404.226685pt;}
.y7{bottom:411.426676pt;}
.yff{bottom:411.906657pt;}
.y7d{bottom:418.306681pt;}
.y2f{bottom:424.866659pt;}
.y9e{bottom:425.346680pt;}
.y6{bottom:426.626668pt;}
.y5{bottom:427.426676pt;}
.y4{bottom:428.226685pt;}
.y3{bottom:429.026652pt;}
.y2{bottom:429.506673pt;}
.y133{bottom:431.266683pt;}
.yc2{bottom:432.546672pt;}
.yfe{bottom:433.186686pt;}
.y7c{bottom:436.706665pt;}
.yee{bottom:441.186686pt;}
.y9d{bottom:446.466675pt;}
.y132{bottom:452.546672pt;}
.yfd{bottom:454.306681pt;}
.y7b{bottom:455.106649pt;}
.y2e{bottom:457.506673pt;}
.yed{bottom:470.466675pt;}
.y7a{bottom:473.506673pt;}
.y131{bottom:473.666667pt;}
.y9c{bottom:478.626668pt;}
.yc1{bottom:482.786662pt;}
.y5e{bottom:485.986654pt;}
.yfc{bottom:486.146647pt;}
.y79{bottom:491.906657pt;}
.y9b{bottom:499.746663pt;}
.yec{bottom:499.906657pt;}
.yc0{bottom:503.906657pt;}
.y130{bottom:505.506673pt;}
.y2c{bottom:506.306681pt;}
.y78{bottom:510.306681pt;}
.y5d{bottom:513.506673pt;}
.yfb{bottom:517.986654pt;}
.y9a{bottom:520.866659pt;}
.ybf{bottom:525.026652pt;}
.y12f{bottom:526.626668pt;}
.y77{bottom:528.706665pt;}
.yeb{bottom:529.346680pt;}
.y5c{bottom:532.706665pt;}
.y28{bottom:538.973348pt;}
.yfa{bottom:539.133341pt;}
.ybe{bottom:546.173340pt;}
.y76{bottom:547.133341pt;}
.y99{bottom:550.333333pt;}
.yea{bottom:550.493327pt;}
.y5b{bottom:551.133341pt;}
.y12e{bottom:558.493327pt;}
.yf9{bottom:570.973348pt;}
.y98{bottom:571.453328pt;}
.ye9{bottom:571.613322pt;}
.y5a{bottom:572.573324pt;}
.y75{bottom:578.653320pt;}
.y12d{bottom:579.613322pt;}
.ybd{bottom:584.413330pt;}
.ye8{bottom:590.013346pt;}
.yf8{bottom:592.093343pt;}
.y97{bottom:592.733317pt;}
.y12c{bottom:600.733317pt;}
.y145{bottom:603.773315pt;}
.ye4{bottom:605.853353pt;}
.y74{bottom:606.973348pt;}
.yab{bottom:608.573324pt;}
.y144{bottom:622.173340pt;}
.yf7{bottom:623.933350pt;}
.y96{bottom:624.413330pt;}
.y27{bottom:624.573324pt;}
.y12b{bottom:632.573324pt;}
.yaa{bottom:632.733317pt;}
.y73{bottom:633.373332pt;}
.ybc{bottom:634.653320pt;}
.y11b{bottom:636.093343pt;}
.yf6{bottom:645.053345pt;}
.y95{bottom:645.693319pt;}
.ye0{bottom:647.453328pt;}
.y12a{bottom:653.853353pt;}
.ya9{bottom:654.013346pt;}
.ybb{bottom:655.773315pt;}
.y11a{bottom:657.213338pt;}
.y72{bottom:660.893351pt;}
.y59{bottom:664.573324pt;}
.yf5{bottom:666.173340pt;}
.y94{bottom:666.813314pt;}
.y26{bottom:673.373332pt;}
.ya8{bottom:675.133341pt;}
.yba{bottom:676.893351pt;}
.y119{bottom:678.493327pt;}
.y129{bottom:685.533366pt;}
.y93{bottom:687.933350pt;}
.y58{bottom:689.053304pt;}
.ydc{bottom:693.213298pt;}
.y71{bottom:693.373372pt;}
.ya7{bottom:696.253337pt;}
.y118{bottom:699.613363pt;}
.yf4{bottom:704.413330pt;}
.y25{bottom:705.853353pt;}
.y128{bottom:706.813314pt;}
.yb9{bottom:708.733317pt;}
.y57{bottom:712.573324pt;}
.ya6{bottom:717.373372pt;}
.y92{bottom:719.773356pt;}
.y117{bottom:720.733317pt;}
.y70{bottom:724.733317pt;}
.y127{bottom:727.933350pt;}
.y143{bottom:728.093343pt;}
.yb8{bottom:729.853353pt;}
.y55{bottom:734.013346pt;}
.y24{bottom:735.613363pt;}
.y88{bottom:738.653320pt;}
.y91{bottom:740.893311pt;}
.y6f{bottom:743.133301pt;}
.yf3{bottom:749.213298pt;}
.yb7{bottom:750.973307pt;}
.y1{bottom:751.933350pt;}
.y116{bottom:752.573324pt;}
.y23{bottom:756.253337pt;}
.y87{bottom:759.773356pt;}
.y90{bottom:762.173340pt;}
.y52{bottom:764.573324pt;}
.yf2{bottom:770.493327pt;}
.y6e{bottom:770.813314pt;}
.yb6{bottom:772.253337pt;}
.y115{bottom:773.693359pt;}
.ya5{bottom:780.933350pt;}
.y86{bottom:784.933350pt;}
.y1f{bottom:788.933350pt;}
.yf1{bottom:791.653320pt;}
.y8f{bottom:793.893311pt;}
.y4f{bottom:795.013346pt;}
.yd6{bottom:801.573324pt;}
.y6d{bottom:802.213298pt;}
.yb5{bottom:804.133301pt;}
.y85{bottom:810.053304pt;}
.ya4{bottom:812.773356pt;}
.y8e{bottom:816.133301pt;}
.y6c{bottom:820.613363pt;}
.yf0{bottom:823.493327pt;}
.yb4{bottom:825.253337pt;}
.ya3{bottom:833.893311pt;}
.y84{bottom:835.333333pt;}
.y4e{bottom:837.893311pt;}
.y8d{bottom:838.373372pt;}
.y6b{bottom:839.013346pt;}
.yef{bottom:844.613363pt;}
.yb3{bottom:846.373372pt;}
.yd3{bottom:847.333333pt;}
.y114{bottom:847.973307pt;}
.y126{bottom:855.013346pt;}
.y83{bottom:860.453369pt;}
.y8c{bottom:860.613363pt;}
.y4d{bottom:861.733317pt;}
.y1c{bottom:863.013346pt;}
.ya2{bottom:865.733317pt;}
.y6a{bottom:866.533366pt;}
.y113{bottom:869.093343pt;}
.y4b{bottom:877.413330pt;}
.yb2{bottom:878.213298pt;}
.y82{bottom:885.573324pt;}
.y8b{bottom:886.853353pt;}
.y142{bottom:888.613363pt;}
.y49{bottom:895.653320pt;}
.y69{bottom:899.013346pt;}
.yb1{bottom:899.333333pt;}
.y112{bottom:907.333333pt;}
.ya1{bottom:908.133301pt;}
.y81{bottom:910.693359pt;}
.y46{bottom:913.893311pt;}
.y141{bottom:917.733317pt;}
.y8a{bottom:918.693359pt;}
.yb0{bottom:920.453369pt;}
.yd1{bottom:922.213298pt;}
.y1a{bottom:930.213298pt;}
.y68{bottom:931.493327pt;}
.y111{bottom:931.813314pt;}
.y80{bottom:935.973307pt;}
.y140{bottom:938.853353pt;}
.y89{bottom:939.973307pt;}
.y44{bottom:945.893311pt;}
.yaf{bottom:958.693359pt;}
.y7f{bottom:961.093343pt;}
.yd0{bottom:961.413330pt;}
.y67{bottom:964.133301pt;}
.y13f{bottom:968.133301pt;}
.y110{bottom:971.333333pt;}
.y19{bottom:972.933350pt;}
.y43{bottom:988.613363pt;}
.ycf{bottom:989.253337pt;}
.yae{bottom:1000.293294pt;}
.y66{bottom:1000.453369pt;}
.yce{bottom:1010.373372pt;}
.y18{bottom:1011.680013pt;}
.y42{bottom:1012.639974pt;}
.y15{bottom:1028.799967pt;}
.y16{bottom:1043.840007pt;}
.y14{bottom:1047.200033pt;}
.y13{bottom:1067.086107pt;}
.h3{height:2.631277pt;}
.h14{height:15.360000pt;}
.h28{height:16.687500pt;}
.h18{height:17.440000pt;}
.h19{height:17.600000pt;}
.ha{height:18.400000pt;}
.hf{height:20.480000pt;}
.hb{height:20.639999pt;}
.he{height:20.672000pt;}
.h27{height:22.880000pt;}
.h21{height:27.360000pt;}
.h1b{height:29.792000pt;}
.h1c{height:29.920000pt;}
.h16{height:30.560000pt;}
.h15{height:30.720000pt;}
.h17{height:31.199999pt;}
.h1a{height:31.360000pt;}
.h20{height:32.800000pt;}
.h1f{height:33.375000pt;}
.h10{height:36.800000pt;}
.h9{height:37.631250pt;}
.h26{height:41.600000pt;}
.h24{height:41.792000pt;}
.h23{height:45.760000pt;}
.h1e{height:47.218750pt;}
.h29{height:49.760000pt;}
.h12{height:52.834688pt;}
.hc{height:55.200002pt;}
.h5{height:55.402500pt;}
.h8{height:61.410000pt;}
.hd{height:62.080002pt;}
.h13{height:64.080000pt;}
.h25{height:66.559998pt;}
.h4{height:66.750000pt;}
.h11{height:73.600000pt;}
.h22{height:74.240000pt;}
.h1d{height:88.777500pt;}
.h6{height:95.816250pt;}
.h7{height:111.472500pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.719971pt;}
.h0{height:1122.720000pt;}
.w3{width:8.960000pt;}
.w14{width:17.919999pt;}
.w15{width:25.600000pt;}
.w8{width:46.271998pt;}
.wc{width:81.472000pt;}
.wb{width:84.031998pt;}
.w9{width:103.200002pt;}
.w10{width:103.359996pt;}
.w12{width:160.026662pt;}
.w6{width:223.586670pt;}
.w4{width:226.146667pt;}
.we{width:234.146667pt;}
.w13{width:236.386658pt;}
.wf{width:263.906657pt;}
.w16{width:288.826660pt;}
.w17{width:398.813314pt;}
.wa{width:415.133341pt;}
.w5{width:426.626668pt;}
.w7{width:429.666667pt;}
.wd{width:471.906657pt;}
.w11{width:590.493327pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:5.792002pt;}
.x9{left:6.911997pt;}
.x20{left:8.000000pt;}
.x1d{left:9.120015pt;}
.x1a{left:14.173340pt;}
.x21{left:39.039998pt;}
.x14{left:57.914672pt;}
.x2{left:75.519987pt;}
.x10{left:91.551990pt;}
.x12{left:99.551990pt;}
.x13{left:101.471995pt;}
.x11{left:107.551990pt;}
.x1e{left:113.311990pt;}
.xa{left:123.232005pt;}
.x15{left:141.466653pt;}
.x3{left:143.546660pt;}
.xc{left:160.986664pt;}
.x1f{left:197.306661pt;}
.x16{left:198.266663pt;}
.xb{left:227.226664pt;}
.xd{left:243.106669pt;}
.x1c{left:252.386658pt;}
.x1b{left:259.840007pt;}
.x8{left:299.746663pt;}
.x7{left:302.306661pt;}
.xe{left:311.106669pt;}
.x17{left:358.946655pt;}
.x19{left:509.439982pt;}
.xf{left:575.653320pt;}
.x4{left:599.856040pt;}
.x18{left:699.973307pt;}
.x5{left:708.933350pt;}
.x1{left:717.733305pt;}
}




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