
    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_dbc624b66f937850de833f34.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_497a04d0876b9bc7c5586749.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d5f0dc4408dc6a4b1f6c965f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_379b192f3e6695038180f0f8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_65b38c3f250f5e1e6073e280.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172363;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_4c7d9404ac21da3653ac2a35.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172363;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_102227eeb083fe08f80bc1b9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.981934;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740234;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.767578;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_69be3055a699d08c72ae600b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.767578;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.035156;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_d9de9c8b4e39ead11f6918b4.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.035156;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_6193fc93719873dbca485474.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;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;}
.m2{transform:matrix(0.249719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249719,0.000000,0.000000,0.250000,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);}
.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);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v5{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls2d{letter-spacing:-0.786000px;}
.ls32{letter-spacing:-0.579600px;}
.ls6{letter-spacing:-0.463800px;}
.lsd{letter-spacing:-0.414000px;}
.ls2a{letter-spacing:-0.326400px;}
.ls28{letter-spacing:-0.303000px;}
.ls27{letter-spacing:-0.268800px;}
.ls1c{letter-spacing:-0.240600px;}
.ls9{letter-spacing:-0.226200px;}
.ls1a{letter-spacing:-0.214800px;}
.ls33{letter-spacing:-0.208800px;}
.ls1d{letter-spacing:-0.175800px;}
.ls5{letter-spacing:-0.132600px;}
.lsf{letter-spacing:-0.115800px;}
.ls38{letter-spacing:-0.064800px;}
.ls2f{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.038880px;}
.ls25{letter-spacing:0.060600px;}
.lse{letter-spacing:0.066000px;}
.ls2e{letter-spacing:0.067200px;}
.ls22{letter-spacing:0.091440px;}
.ls29{letter-spacing:0.100800px;}
.ls7{letter-spacing:0.150000px;}
.ls10{letter-spacing:0.174000px;}
.ls19{letter-spacing:0.174240px;}
.lsc{letter-spacing:0.186600px;}
.lsb{letter-spacing:0.190200px;}
.ls8{letter-spacing:0.210000px;}
.ls36{letter-spacing:0.274800px;}
.ls1b{letter-spacing:0.314400px;}
.ls26{letter-spacing:0.357000px;}
.ls15{letter-spacing:0.393600px;}
.ls24{letter-spacing:0.447600px;}
.ls2c{letter-spacing:0.447840px;}
.ls11{letter-spacing:0.479520px;}
.lsa{letter-spacing:0.493800px;}
.ls34{letter-spacing:0.502616px;}
.ls2{letter-spacing:0.617760px;}
.ls35{letter-spacing:0.896558px;}
.ls13{letter-spacing:1.614240px;}
.ls23{letter-spacing:2.106720px;}
.ls14{letter-spacing:5.214240px;}
.ls16{letter-spacing:5.706720px;}
.ls0{letter-spacing:6.654240px;}
.ls39{letter-spacing:12.186720px;}
.ls17{letter-spacing:17.226720px;}
.ls18{letter-spacing:20.106720px;}
.ls12{letter-spacing:21.546720px;}
.ls1e{letter-spacing:27.534240px;}
.ls20{letter-spacing:31.134240px;}
.ls1{letter-spacing:38.106720px;}
.ls37{letter-spacing:42.426720px;}
.ls31{letter-spacing:45.306720px;}
.ls30{letter-spacing:80.730720px;}
.ls2b{letter-spacing:152.010720px;}
.ls1f{letter-spacing:161.430240px;}
.ls21{letter-spacing:175.110240px;}
.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;}
}
.ws4{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.wse{word-spacing:-13.862760px;}
.wsc{word-spacing:-13.820160px;}
.ws18{word-spacing:-13.780560px;}
.ws7{word-spacing:-13.692360px;}
.ws11{word-spacing:-13.606560px;}
.ws12{word-spacing:-13.572960px;}
.wsd{word-spacing:-13.566360px;}
.ws8{word-spacing:-13.505760px;}
.ws13{word-spacing:-13.447440px;}
.ws9{word-spacing:-13.389960px;}
.ws14{word-spacing:-13.296960px;}
.wsb{word-spacing:-13.290960px;}
.wsf{word-spacing:-13.236960px;}
.ws10{word-spacing:-13.202760px;}
.ws5{word-spacing:-9.437760px;}
.ws6{word-spacing:-8.786880px;}
.wsa{word-spacing:0.000000px;}
.ws15{word-spacing:205.023786px;}
.ws17{word-spacing:218.882788px;}
.ws16{word-spacing:220.081899px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-295.659120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-226.391040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._21{margin-left:-193.138560px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._25{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._24{margin-left:-145.392000px;}
._10{margin-left:-138.446400px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-116.242560px;}
._23{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._22{margin-left:-34.570560px;}
._19{margin-left:-32.468640px;}
._28{margin-left:-4.292160px;}
._26{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._27{width:1.317240px;}
._29{width:2.717040px;}
._2b{width:4.511400px;}
._2a{width:6.264360px;}
._2e{width:7.529760px;}
._2d{width:9.083520px;}
._32{width:10.216440px;}
._38{width:11.301120px;}
._2c{width:12.310560px;}
._39{width:14.519400px;}
._31{width:15.625200px;}
._37{width:16.656120px;}
._3a{width:17.813760px;}
._30{width:18.830880px;}
._2f{width:19.900080px;}
._4f{width:21.155880px;}
._33{width:22.589280px;}
._3e{width:23.934240px;}
._44{width:28.396800px;}
._4e{width:29.616840px;}
._34{width:30.867840px;}
._3c{width:41.934240px;}
._4c{width:43.978688px;}
._4a{width:57.968940px;}
._4d{width:61.611345px;}
._48{width:64.701477px;}
._49{width:71.812750px;}
._46{width:81.384131px;}
._4b{width:83.821478px;}
._47{width:90.865246px;}
._3d{width:188.964480px;}
._3f{width:202.470240px;}
._45{width:238.015061px;}
._40{width:305.576400px;}
._42{width:312.842640px;}
._43{width:316.854480px;}
._41{width:363.873120px;}
._3b{width:698.553720px;}
._36{width:1506.576000px;}
._35{width:1949.373360px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:30.240000px;}
.fs9{font-size:36.904666px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:43.803631px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y103{bottom:4.588707px;}
.yb1{bottom:6.480000px;}
.yad{bottom:6.660000px;}
.y10f{bottom:6.909737px;}
.yc1{bottom:7.380000px;}
.yc4{bottom:7.410000px;}
.ydb{bottom:8.100000px;}
.yfa{bottom:14.965349px;}
.y125{bottom:17.100000px;}
.y10e{bottom:19.552218px;}
.y126{bottom:27.720000px;}
.yfb{bottom:35.663151px;}
.y10d{bottom:44.865255px;}
.yfc{bottom:56.362085px;}
.y10c{bottom:57.508755px;}
.y6{bottom:61.380000px;}
.y10b{bottom:70.179423px;}
.yfd{bottom:77.059887px;}
.y10a{bottom:82.821791px;}
.y71{bottom:90.720000px;}
.y30{bottom:92.160000px;}
.y109{bottom:95.464159px;}
.y12f{bottom:97.740000px;}
.yfe{bottom:97.785990px;}
.y4e{bottom:98.820000px;}
.yc6{bottom:99.540000px;}
.y15e{bottom:100.800000px;}
.y93{bottom:106.740000px;}
.y108{bottom:108.134827px;}
.yf5{bottom:109.620000px;}
.y70{bottom:111.780000px;}
.y2f{bottom:113.220000px;}
.yff{bottom:118.488320px;}
.y12e{bottom:118.800000px;}
.y4d{bottom:119.880000px;}
.y107{bottom:120.774931px;}
.y15d{bottom:121.860000px;}
.yc5{bottom:122.760000px;}
.y92{bottom:129.600000px;}
.yf4{bottom:130.680000px;}
.y6f{bottom:132.840000px;}
.y2e{bottom:134.280000px;}
.y100{bottom:139.181594px;}
.y12d{bottom:139.860000px;}
.y4c{bottom:140.940000px;}
.y15c{bottom:142.920000px;}
.yc3{bottom:145.980000px;}
.y106{bottom:146.086835px;}
.y91{bottom:150.660000px;}
.yf3{bottom:151.770000px;}
.y6e{bottom:153.930000px;}
.y12c{bottom:155.010000px;}
.y2d{bottom:155.370000px;}
.y105{bottom:158.731467px;}
.y101{bottom:159.886189px;}
.y4b{bottom:162.030000px;}
.y15b{bottom:164.010000px;}
.y90{bottom:167.970000px;}
.yc2{bottom:169.230000px;}
.y104{bottom:171.398739px;}
.yf2{bottom:172.650000px;}
.y6d{bottom:174.990000px;}
.y2c{bottom:176.430000px;}
.y12b{bottom:177.510000px;}
.y102{bottom:180.602103px;}
.y4a{bottom:183.090000px;}
.y15a{bottom:185.070000px;}
.yc0{bottom:192.630000px;}
.yf1{bottom:193.710000px;}
.y6c{bottom:196.050000px;}
.y2b{bottom:197.490000px;}
.y12a{bottom:200.010000px;}
.y49{bottom:204.150000px;}
.y159{bottom:206.130000px;}
.yf0{bottom:214.770000px;}
.y8f{bottom:215.130000px;}
.y6b{bottom:217.110000px;}
.y2a{bottom:218.550000px;}
.ybf{bottom:222.510000px;}
.y48{bottom:225.210000px;}
.y158{bottom:227.190000px;}
.yef{bottom:235.830000px;}
.y8e{bottom:236.190000px;}
.y6a{bottom:238.170000px;}
.y29{bottom:239.610000px;}
.y129{bottom:245.010000px;}
.y47{bottom:246.270000px;}
.y157{bottom:248.250000px;}
.ybe{bottom:252.570000px;}
.yee{bottom:256.890000px;}
.y69{bottom:259.230000px;}
.y28{bottom:260.670000px;}
.y46{bottom:267.330000px;}
.y128{bottom:268.230000px;}
.y156{bottom:269.310000px;}
.yed{bottom:272.190000px;}
.ybd{bottom:273.630000px;}
.y68{bottom:280.290000px;}
.y27{bottom:281.730000px;}
.y45{bottom:288.390000px;}
.y155{bottom:290.370000px;}
.y127{bottom:291.450000px;}
.ybc{bottom:294.690000px;}
.yec{bottom:295.410000px;}
.y67{bottom:301.350000px;}
.y26{bottom:302.790000px;}
.y44{bottom:309.450000px;}
.y154{bottom:311.430000px;}
.y124{bottom:314.850000px;}
.ybb{bottom:315.750000px;}
.yeb{bottom:318.630000px;}
.y66{bottom:322.410000px;}
.y25{bottom:323.850000px;}
.y43{bottom:326.730000px;}
.y153{bottom:332.490000px;}
.yba{bottom:336.810000px;}
.yea{bottom:341.850000px;}
.y65{bottom:343.470000px;}
.y24{bottom:344.910000px;}
.y152{bottom:353.550000px;}
.yb9{bottom:357.870000px;}
.y8d{bottom:360.570000px;}
.y123{bottom:364.350000px;}
.y64{bottom:364.530000px;}
.ye9{bottom:365.070000px;}
.y23{bottom:365.970000px;}
.y151{bottom:374.610000px;}
.yb8{bottom:378.930000px;}
.y122{bottom:385.410000px;}
.y63{bottom:385.590000px;}
.y22{bottom:387.030000px;}
.ye8{bottom:388.290000px;}
.y150{bottom:395.670000px;}
.yb7{bottom:399.990000px;}
.y121{bottom:406.515000px;}
.y62{bottom:406.695000px;}
.y21{bottom:408.135000px;}
.ye7{bottom:411.735000px;}
.yb6{bottom:415.155000px;}
.y14f{bottom:416.775000px;}
.y120{bottom:427.575000px;}
.y61{bottom:427.755000px;}
.y20{bottom:429.195000px;}
.ye6{bottom:434.955000px;}
.yb5{bottom:436.935000px;}
.y14e{bottom:437.655000px;}
.y11f{bottom:448.635000px;}
.y60{bottom:448.815000px;}
.y1f{bottom:450.255000px;}
.ye5{bottom:458.175000px;}
.yb4{bottom:458.715000px;}
.y11e{bottom:469.695000px;}
.y5f{bottom:469.875000px;}
.y1e{bottom:471.315000px;}
.y14d{bottom:479.775000px;}
.yb3{bottom:480.495000px;}
.ye4{bottom:481.395000px;}
.y11d{bottom:490.755000px;}
.y5e{bottom:490.935000px;}
.y1d{bottom:492.375000px;}
.y14c{bottom:500.835000px;}
.yb2{bottom:502.275000px;}
.ye3{bottom:504.615000px;}
.y11c{bottom:505.875000px;}
.y5d{bottom:511.995000px;}
.y1c{bottom:513.435000px;}
.y14b{bottom:521.895000px;}
.yb0{bottom:524.235000px;}
.y11b{bottom:529.095000px;}
.y5c{bottom:533.055000px;}
.y1b{bottom:534.495000px;}
.y14a{bottom:542.955000px;}
.yac{bottom:546.015000px;}
.y11a{bottom:552.315000px;}
.y5b{bottom:554.115000px;}
.y1a{bottom:555.555000px;}
.y149{bottom:564.015000px;}
.yaf{bottom:567.795000px;}
.y5a{bottom:575.175000px;}
.y42{bottom:575.355000px;}
.y119{bottom:575.535000px;}
.y19{bottom:576.615000px;}
.y148{bottom:585.075000px;}
.ye2{bottom:585.615000px;}
.yae{bottom:589.575000px;}
.y59{bottom:596.235000px;}
.y41{bottom:596.415000px;}
.y8c{bottom:597.675000px;}
.y118{bottom:605.415000px;}
.y147{bottom:606.135000px;}
.ye1{bottom:606.675000px;}
.y58{bottom:617.295000px;}
.y40{bottom:617.475000px;}
.yab{bottom:618.015000px;}
.y8b{bottom:618.735000px;}
.y18{bottom:621.075000px;}
.y117{bottom:626.475000px;}
.y146{bottom:627.195000px;}
.ye0{bottom:627.735000px;}
.y57{bottom:638.355000px;}
.y3f{bottom:638.535000px;}
.yaa{bottom:639.075000px;}
.y8a{bottom:639.795000px;}
.y17{bottom:641.955000px;}
.y116{bottom:647.535000px;}
.y145{bottom:648.255000px;}
.ydf{bottom:648.795000px;}
.y56{bottom:659.445000px;}
.y3e{bottom:659.625000px;}
.ya9{bottom:660.165000px;}
.y89{bottom:660.885000px;}
.y115{bottom:668.625000px;}
.y144{bottom:669.345000px;}
.yde{bottom:669.885000px;}
.y16{bottom:672.045000px;}
.y55{bottom:680.505000px;}
.y3d{bottom:680.685000px;}
.ya8{bottom:681.225000px;}
.y88{bottom:681.945000px;}
.y114{bottom:689.685000px;}
.y143{bottom:690.405000px;}
.ydd{bottom:690.945000px;}
.y15{bottom:693.105000px;}
.y54{bottom:701.565000px;}
.y3c{bottom:701.745000px;}
.ya7{bottom:702.285000px;}
.y87{bottom:703.005000px;}
.ydc{bottom:706.065000px;}
.y113{bottom:710.745000px;}
.y142{bottom:711.465000px;}
.y14{bottom:714.165000px;}
.y53{bottom:722.625000px;}
.y3b{bottom:722.805000px;}
.ya6{bottom:723.345000px;}
.y86{bottom:724.065000px;}
.yda{bottom:728.025000px;}
.y112{bottom:731.805000px;}
.y141{bottom:732.525000px;}
.y13{bottom:735.225000px;}
.y52{bottom:743.685000px;}
.y3a{bottom:743.865000px;}
.ya5{bottom:744.405000px;}
.y85{bottom:745.125000px;}
.y111{bottom:752.865000px;}
.y140{bottom:753.585000px;}
.y12{bottom:756.285000px;}
.yd9{bottom:759.525000px;}
.y51{bottom:764.745000px;}
.y39{bottom:764.925000px;}
.ya4{bottom:765.465000px;}
.y84{bottom:766.005000px;}
.y110{bottom:773.925000px;}
.y13f{bottom:774.645000px;}
.y11{bottom:777.345000px;}
.yd8{bottom:780.585000px;}
.y38{bottom:785.805000px;}
.ya3{bottom:786.525000px;}
.y83{bottom:787.065000px;}
.yf8{bottom:791.025000px;}
.yf9{bottom:791.039919px;}
.y13e{bottom:795.705000px;}
.y10{bottom:798.405000px;}
.yd7{bottom:801.645000px;}
.y37{bottom:806.865000px;}
.ya2{bottom:807.585000px;}
.y82{bottom:808.125000px;}
.y13d{bottom:816.765000px;}
.yf{bottom:819.465000px;}
.yd6{bottom:822.705000px;}
.y36{bottom:827.925000px;}
.ya1{bottom:828.645000px;}
.y81{bottom:829.185000px;}
.y13c{bottom:837.825000px;}
.ye{bottom:840.525000px;}
.yd5{bottom:843.765000px;}
.y35{bottom:848.985000px;}
.ya0{bottom:849.705000px;}
.y80{bottom:850.245000px;}
.y13b{bottom:852.945000px;}
.yd{bottom:861.585000px;}
.yd4{bottom:864.825000px;}
.y34{bottom:870.045000px;}
.y9f{bottom:870.765000px;}
.y7f{bottom:871.305000px;}
.y13a{bottom:876.345000px;}
.yc{bottom:884.805000px;}
.yd3{bottom:885.885000px;}
.y33{bottom:887.145000px;}
.y50{bottom:891.105000px;}
.y7e{bottom:892.365000px;}
.y9e{bottom:893.805000px;}
.y139{bottom:906.270000px;}
.yd2{bottom:906.990000px;}
.y4f{bottom:908.070000px;}
.yb{bottom:911.130000px;}
.y7d{bottom:913.470000px;}
.y9d{bottom:916.890000px;}
.y138{bottom:927.330000px;}
.ya{bottom:927.870000px;}
.yd1{bottom:928.050000px;}
.y7c{bottom:934.530000px;}
.y9c{bottom:937.950000px;}
.y137{bottom:948.390000px;}
.yd0{bottom:949.110000px;}
.y9{bottom:950.190000px;}
.y7b{bottom:955.590000px;}
.y9b{bottom:960.990000px;}
.y136{bottom:969.450000px;}
.ycf{bottom:970.170000px;}
.y8{bottom:975.390000px;}
.y7a{bottom:976.650000px;}
.y9a{bottom:984.030000px;}
.yf7{bottom:988.710000px;}
.y135{bottom:990.510000px;}
.yce{bottom:991.230000px;}
.y79{bottom:997.710000px;}
.y99{bottom:1007.070000px;}
.y7{bottom:1009.050000px;}
.yf6{bottom:1009.770000px;}
.y134{bottom:1011.570000px;}
.ycd{bottom:1012.290000px;}
.y78{bottom:1018.770000px;}
.y98{bottom:1030.110000px;}
.y133{bottom:1032.630000px;}
.ycc{bottom:1033.350000px;}
.y77{bottom:1039.830000px;}
.y132{bottom:1047.750000px;}
.y5{bottom:1049.190000px;}
.y97{bottom:1052.970000px;}
.ycb{bottom:1054.410000px;}
.y76{bottom:1060.890000px;}
.y131{bottom:1070.970000px;}
.yca{bottom:1075.470000px;}
.y96{bottom:1076.010000px;}
.y4{bottom:1081.410000px;}
.y75{bottom:1081.950000px;}
.yc9{bottom:1090.590000px;}
.y130{bottom:1094.190000px;}
.y95{bottom:1099.050000px;}
.y74{bottom:1103.010000px;}
.y3{bottom:1113.630000px;}
.yc8{bottom:1113.810000px;}
.y94{bottom:1122.090000px;}
.y73{bottom:1124.070000px;}
.yc7{bottom:1137.030000px;}
.y72{bottom:1145.130000px;}
.y2{bottom:1145.670000px;}
.y32{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1193.220000px;}
.hd{height:20.880000px;}
.hc{height:21.060000px;}
.he{height:22.500000px;}
.hf{height:22.536000px;}
.h10{height:24.120000px;}
.h14{height:36.706447px;}
.h7{height:38.671172px;}
.h15{height:42.120000px;}
.h13{height:43.568358px;}
.h8{height:45.316055px;}
.ha{height:48.029766px;}
.h9{height:59.439023px;}
.h11{height:59.551172px;}
.h5{height:61.189805px;}
.hb{height:64.620000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h12{height:190.960060px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:72.720000px;}
.w9{width:147.960000px;}
.w8{width:148.176000px;}
.w7{width:160.050000px;}
.wf{width:169.410000px;}
.w12{width:169.590000px;}
.w11{width:169.740000px;}
.w10{width:169.770000px;}
.wa{width:212.070000px;}
.wc{width:222.870000px;}
.wb{width:244.110000px;}
.w6{width:296.850000px;}
.w5{width:308.955000px;}
.we{width:458.256527px;}
.wd{width:467.355000px;}
.w4{width:606.525000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.740000px;}
.x1e{left:36.780852px;}
.x6{left:53.999987px;}
.xd{left:70.199987px;}
.x7{left:75.599987px;}
.x14{left:88.775987px;}
.x10{left:94.175987px;}
.x13{left:96.875987px;}
.x11{left:98.675987px;}
.x12{left:103.175987px;}
.x15{left:107.316000px;}
.x5{left:160.229987px;}
.x17{left:180.750000px;}
.x1d{left:200.789980px;}
.x3{left:272.234987px;}
.x23{left:277.275000px;}
.x8{left:300.134987px;}
.xe{left:304.814987px;}
.x1b{left:319.935000px;}
.x22{left:333.974987px;}
.x21{left:338.114987px;}
.x19{left:341.535000px;}
.xc{left:346.394987px;}
.x2{left:350.534987px;}
.x1f{left:359.384278px;}
.x9{left:369.974987px;}
.xb{left:374.834987px;}
.x4{left:419.114987px;}
.x24{left:447.405000px;}
.x1{left:479.264987px;}
.x18{left:490.425000px;}
.x1c{left:564.405000px;}
.x25{left:617.505000px;}
.x1a{left:639.330000px;}
.x20{left:659.129987px;}
.xa{left:661.649987px;}
.x26{left:838.439987px;}
.xf{left:860.219987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v5{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls2d{letter-spacing:-0.698667pt;}
.ls32{letter-spacing:-0.515200pt;}
.ls6{letter-spacing:-0.412267pt;}
.lsd{letter-spacing:-0.368000pt;}
.ls2a{letter-spacing:-0.290133pt;}
.ls28{letter-spacing:-0.269333pt;}
.ls27{letter-spacing:-0.238933pt;}
.ls1c{letter-spacing:-0.213867pt;}
.ls9{letter-spacing:-0.201067pt;}
.ls1a{letter-spacing:-0.190933pt;}
.ls33{letter-spacing:-0.185600pt;}
.ls1d{letter-spacing:-0.156267pt;}
.ls5{letter-spacing:-0.117867pt;}
.lsf{letter-spacing:-0.102933pt;}
.ls38{letter-spacing:-0.057600pt;}
.ls2f{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.034560pt;}
.ls25{letter-spacing:0.053867pt;}
.lse{letter-spacing:0.058667pt;}
.ls2e{letter-spacing:0.059733pt;}
.ls22{letter-spacing:0.081280pt;}
.ls29{letter-spacing:0.089600pt;}
.ls7{letter-spacing:0.133333pt;}
.ls10{letter-spacing:0.154667pt;}
.ls19{letter-spacing:0.154880pt;}
.lsc{letter-spacing:0.165867pt;}
.lsb{letter-spacing:0.169067pt;}
.ls8{letter-spacing:0.186667pt;}
.ls36{letter-spacing:0.244267pt;}
.ls1b{letter-spacing:0.279467pt;}
.ls26{letter-spacing:0.317333pt;}
.ls15{letter-spacing:0.349867pt;}
.ls24{letter-spacing:0.397867pt;}
.ls2c{letter-spacing:0.398080pt;}
.ls11{letter-spacing:0.426240pt;}
.lsa{letter-spacing:0.438933pt;}
.ls34{letter-spacing:0.446769pt;}
.ls2{letter-spacing:0.549120pt;}
.ls35{letter-spacing:0.796940pt;}
.ls13{letter-spacing:1.434880pt;}
.ls23{letter-spacing:1.872640pt;}
.ls14{letter-spacing:4.634880pt;}
.ls16{letter-spacing:5.072640pt;}
.ls0{letter-spacing:5.914880pt;}
.ls39{letter-spacing:10.832640pt;}
.ls17{letter-spacing:15.312640pt;}
.ls18{letter-spacing:17.872640pt;}
.ls12{letter-spacing:19.152640pt;}
.ls1e{letter-spacing:24.474880pt;}
.ls20{letter-spacing:27.674880pt;}
.ls1{letter-spacing:33.872640pt;}
.ls37{letter-spacing:37.712640pt;}
.ls31{letter-spacing:40.272640pt;}
.ls30{letter-spacing:71.760640pt;}
.ls2b{letter-spacing:135.120640pt;}
.ls1f{letter-spacing:143.493547pt;}
.ls21{letter-spacing:155.653547pt;}
.ws4{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.wse{word-spacing:-12.322453pt;}
.wsc{word-spacing:-12.284587pt;}
.ws18{word-spacing:-12.249387pt;}
.ws7{word-spacing:-12.170987pt;}
.ws11{word-spacing:-12.094720pt;}
.ws12{word-spacing:-12.064853pt;}
.wsd{word-spacing:-12.058987pt;}
.ws8{word-spacing:-12.005120pt;}
.ws13{word-spacing:-11.953280pt;}
.ws9{word-spacing:-11.902187pt;}
.ws14{word-spacing:-11.819520pt;}
.wsb{word-spacing:-11.814187pt;}
.wsf{word-spacing:-11.766187pt;}
.ws10{word-spacing:-11.735787pt;}
.ws5{word-spacing:-8.389120pt;}
.ws6{word-spacing:-7.810560pt;}
.wsa{word-spacing:0.000000pt;}
.ws15{word-spacing:182.243366pt;}
.ws17{word-spacing:194.562479pt;}
.ws16{word-spacing:195.628355pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-262.808107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-201.236480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._21{margin-left:-171.678720pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._25{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._24{margin-left:-129.237333pt;}
._10{margin-left:-123.063467pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-103.326720pt;}
._23{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._22{margin-left:-30.729387pt;}
._19{margin-left:-28.861013pt;}
._28{margin-left:-3.815253pt;}
._26{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._27{width:1.170880pt;}
._29{width:2.415147pt;}
._2b{width:4.010133pt;}
._2a{width:5.568320pt;}
._2e{width:6.693120pt;}
._2d{width:8.074240pt;}
._32{width:9.081280pt;}
._38{width:10.045440pt;}
._2c{width:10.942720pt;}
._39{width:12.906133pt;}
._31{width:13.889067pt;}
._37{width:14.805440pt;}
._3a{width:15.834453pt;}
._30{width:16.738560pt;}
._2f{width:17.688960pt;}
._4f{width:18.805227pt;}
._33{width:20.079360pt;}
._3e{width:21.274880pt;}
._44{width:25.241600pt;}
._4e{width:26.326080pt;}
._34{width:27.438080pt;}
._3c{width:37.274880pt;}
._4c{width:39.092167pt;}
._4a{width:51.527947pt;}
._4d{width:54.765640pt;}
._48{width:57.512424pt;}
._49{width:63.833556pt;}
._46{width:72.341450pt;}
._4b{width:74.507981pt;}
._47{width:80.769108pt;}
._3d{width:167.968427pt;}
._3f{width:179.973547pt;}
._45{width:211.568943pt;}
._40{width:271.623467pt;}
._42{width:278.082347pt;}
._43{width:281.648427pt;}
._41{width:323.442773pt;}
._3b{width:620.936640pt;}
._36{width:1339.178667pt;}
._35{width:1732.776320pt;}
.fs2{font-size:26.880000pt;}
.fs9{font-size:32.804147pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:38.936561pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y103{bottom:4.078850pt;}
.yb1{bottom:5.760000pt;}
.yad{bottom:5.920000pt;}
.y10f{bottom:6.141989pt;}
.yc1{bottom:6.560000pt;}
.yc4{bottom:6.586667pt;}
.ydb{bottom:7.200000pt;}
.yfa{bottom:13.302532pt;}
.y125{bottom:15.200000pt;}
.y10e{bottom:17.379750pt;}
.y126{bottom:24.640000pt;}
.yfb{bottom:31.700579pt;}
.y10d{bottom:39.880226pt;}
.yfc{bottom:50.099631pt;}
.y10c{bottom:51.118893pt;}
.y6{bottom:54.560000pt;}
.y10b{bottom:62.381709pt;}
.yfd{bottom:68.497678pt;}
.y10a{bottom:73.619370pt;}
.y71{bottom:80.640000pt;}
.y30{bottom:81.920000pt;}
.y109{bottom:84.857030pt;}
.y12f{bottom:86.880000pt;}
.yfe{bottom:86.920880pt;}
.y4e{bottom:87.840000pt;}
.yc6{bottom:88.480000pt;}
.y15e{bottom:89.600000pt;}
.y93{bottom:94.880000pt;}
.y108{bottom:96.119846pt;}
.yf5{bottom:97.440000pt;}
.y70{bottom:99.360000pt;}
.y2f{bottom:100.640000pt;}
.yff{bottom:105.322951pt;}
.y12e{bottom:105.600000pt;}
.y4d{bottom:106.560000pt;}
.y107{bottom:107.355494pt;}
.y15d{bottom:108.320000pt;}
.yc5{bottom:109.120000pt;}
.y92{bottom:115.200000pt;}
.yf4{bottom:116.160000pt;}
.y6f{bottom:118.080000pt;}
.y2e{bottom:119.360000pt;}
.y100{bottom:123.716973pt;}
.y12d{bottom:124.320000pt;}
.y4c{bottom:125.280000pt;}
.y15c{bottom:127.040000pt;}
.yc3{bottom:129.760000pt;}
.y106{bottom:129.854965pt;}
.y91{bottom:133.920000pt;}
.yf3{bottom:134.906667pt;}
.y6e{bottom:136.826667pt;}
.y12c{bottom:137.786667pt;}
.y2d{bottom:138.106667pt;}
.y105{bottom:141.094637pt;}
.y101{bottom:142.121057pt;}
.y4b{bottom:144.026667pt;}
.y15b{bottom:145.786667pt;}
.y90{bottom:149.306667pt;}
.yc2{bottom:150.426667pt;}
.y104{bottom:152.354435pt;}
.yf2{bottom:153.466667pt;}
.y6d{bottom:155.546667pt;}
.y2c{bottom:156.826667pt;}
.y12b{bottom:157.786667pt;}
.y102{bottom:160.535203pt;}
.y4a{bottom:162.746667pt;}
.y15a{bottom:164.506667pt;}
.yc0{bottom:171.226667pt;}
.yf1{bottom:172.186667pt;}
.y6c{bottom:174.266667pt;}
.y2b{bottom:175.546667pt;}
.y12a{bottom:177.786667pt;}
.y49{bottom:181.466667pt;}
.y159{bottom:183.226667pt;}
.yf0{bottom:190.906667pt;}
.y8f{bottom:191.226667pt;}
.y6b{bottom:192.986667pt;}
.y2a{bottom:194.266667pt;}
.ybf{bottom:197.786667pt;}
.y48{bottom:200.186667pt;}
.y158{bottom:201.946667pt;}
.yef{bottom:209.626667pt;}
.y8e{bottom:209.946667pt;}
.y6a{bottom:211.706667pt;}
.y29{bottom:212.986667pt;}
.y129{bottom:217.786667pt;}
.y47{bottom:218.906667pt;}
.y157{bottom:220.666667pt;}
.ybe{bottom:224.506667pt;}
.yee{bottom:228.346667pt;}
.y69{bottom:230.426667pt;}
.y28{bottom:231.706667pt;}
.y46{bottom:237.626667pt;}
.y128{bottom:238.426667pt;}
.y156{bottom:239.386667pt;}
.yed{bottom:241.946667pt;}
.ybd{bottom:243.226667pt;}
.y68{bottom:249.146667pt;}
.y27{bottom:250.426667pt;}
.y45{bottom:256.346667pt;}
.y155{bottom:258.106667pt;}
.y127{bottom:259.066667pt;}
.ybc{bottom:261.946667pt;}
.yec{bottom:262.586667pt;}
.y67{bottom:267.866667pt;}
.y26{bottom:269.146667pt;}
.y44{bottom:275.066667pt;}
.y154{bottom:276.826667pt;}
.y124{bottom:279.866667pt;}
.ybb{bottom:280.666667pt;}
.yeb{bottom:283.226667pt;}
.y66{bottom:286.586667pt;}
.y25{bottom:287.866667pt;}
.y43{bottom:290.426667pt;}
.y153{bottom:295.546667pt;}
.yba{bottom:299.386667pt;}
.yea{bottom:303.866667pt;}
.y65{bottom:305.306667pt;}
.y24{bottom:306.586667pt;}
.y152{bottom:314.266667pt;}
.yb9{bottom:318.106667pt;}
.y8d{bottom:320.506667pt;}
.y123{bottom:323.866667pt;}
.y64{bottom:324.026667pt;}
.ye9{bottom:324.506667pt;}
.y23{bottom:325.306667pt;}
.y151{bottom:332.986667pt;}
.yb8{bottom:336.826667pt;}
.y122{bottom:342.586667pt;}
.y63{bottom:342.746667pt;}
.y22{bottom:344.026667pt;}
.ye8{bottom:345.146667pt;}
.y150{bottom:351.706667pt;}
.yb7{bottom:355.546667pt;}
.y121{bottom:361.346667pt;}
.y62{bottom:361.506667pt;}
.y21{bottom:362.786667pt;}
.ye7{bottom:365.986667pt;}
.yb6{bottom:369.026667pt;}
.y14f{bottom:370.466667pt;}
.y120{bottom:380.066667pt;}
.y61{bottom:380.226667pt;}
.y20{bottom:381.506667pt;}
.ye6{bottom:386.626667pt;}
.yb5{bottom:388.386667pt;}
.y14e{bottom:389.026667pt;}
.y11f{bottom:398.786667pt;}
.y60{bottom:398.946667pt;}
.y1f{bottom:400.226667pt;}
.ye5{bottom:407.266667pt;}
.yb4{bottom:407.746667pt;}
.y11e{bottom:417.506667pt;}
.y5f{bottom:417.666667pt;}
.y1e{bottom:418.946667pt;}
.y14d{bottom:426.466667pt;}
.yb3{bottom:427.106667pt;}
.ye4{bottom:427.906667pt;}
.y11d{bottom:436.226667pt;}
.y5e{bottom:436.386667pt;}
.y1d{bottom:437.666667pt;}
.y14c{bottom:445.186667pt;}
.yb2{bottom:446.466667pt;}
.ye3{bottom:448.546667pt;}
.y11c{bottom:449.666667pt;}
.y5d{bottom:455.106667pt;}
.y1c{bottom:456.386667pt;}
.y14b{bottom:463.906667pt;}
.yb0{bottom:465.986667pt;}
.y11b{bottom:470.306667pt;}
.y5c{bottom:473.826667pt;}
.y1b{bottom:475.106667pt;}
.y14a{bottom:482.626667pt;}
.yac{bottom:485.346667pt;}
.y11a{bottom:490.946667pt;}
.y5b{bottom:492.546667pt;}
.y1a{bottom:493.826667pt;}
.y149{bottom:501.346667pt;}
.yaf{bottom:504.706667pt;}
.y5a{bottom:511.266667pt;}
.y42{bottom:511.426667pt;}
.y119{bottom:511.586667pt;}
.y19{bottom:512.546667pt;}
.y148{bottom:520.066667pt;}
.ye2{bottom:520.546667pt;}
.yae{bottom:524.066667pt;}
.y59{bottom:529.986667pt;}
.y41{bottom:530.146667pt;}
.y8c{bottom:531.266667pt;}
.y118{bottom:538.146667pt;}
.y147{bottom:538.786667pt;}
.ye1{bottom:539.266667pt;}
.y58{bottom:548.706667pt;}
.y40{bottom:548.866667pt;}
.yab{bottom:549.346667pt;}
.y8b{bottom:549.986667pt;}
.y18{bottom:552.066667pt;}
.y117{bottom:556.866667pt;}
.y146{bottom:557.506667pt;}
.ye0{bottom:557.986667pt;}
.y57{bottom:567.426667pt;}
.y3f{bottom:567.586667pt;}
.yaa{bottom:568.066667pt;}
.y8a{bottom:568.706667pt;}
.y17{bottom:570.626667pt;}
.y116{bottom:575.586667pt;}
.y145{bottom:576.226667pt;}
.ydf{bottom:576.706667pt;}
.y56{bottom:586.173333pt;}
.y3e{bottom:586.333333pt;}
.ya9{bottom:586.813333pt;}
.y89{bottom:587.453333pt;}
.y115{bottom:594.333333pt;}
.y144{bottom:594.973333pt;}
.yde{bottom:595.453333pt;}
.y16{bottom:597.373333pt;}
.y55{bottom:604.893333pt;}
.y3d{bottom:605.053333pt;}
.ya8{bottom:605.533333pt;}
.y88{bottom:606.173333pt;}
.y114{bottom:613.053333pt;}
.y143{bottom:613.693333pt;}
.ydd{bottom:614.173333pt;}
.y15{bottom:616.093333pt;}
.y54{bottom:623.613333pt;}
.y3c{bottom:623.773333pt;}
.ya7{bottom:624.253333pt;}
.y87{bottom:624.893333pt;}
.ydc{bottom:627.613333pt;}
.y113{bottom:631.773333pt;}
.y142{bottom:632.413333pt;}
.y14{bottom:634.813333pt;}
.y53{bottom:642.333333pt;}
.y3b{bottom:642.493333pt;}
.ya6{bottom:642.973333pt;}
.y86{bottom:643.613333pt;}
.yda{bottom:647.133333pt;}
.y112{bottom:650.493333pt;}
.y141{bottom:651.133333pt;}
.y13{bottom:653.533333pt;}
.y52{bottom:661.053333pt;}
.y3a{bottom:661.213333pt;}
.ya5{bottom:661.693333pt;}
.y85{bottom:662.333333pt;}
.y111{bottom:669.213333pt;}
.y140{bottom:669.853333pt;}
.y12{bottom:672.253333pt;}
.yd9{bottom:675.133333pt;}
.y51{bottom:679.773333pt;}
.y39{bottom:679.933333pt;}
.ya4{bottom:680.413333pt;}
.y84{bottom:680.893333pt;}
.y110{bottom:687.933333pt;}
.y13f{bottom:688.573333pt;}
.y11{bottom:690.973333pt;}
.yd8{bottom:693.853333pt;}
.y38{bottom:698.493333pt;}
.ya3{bottom:699.133333pt;}
.y83{bottom:699.613333pt;}
.yf8{bottom:703.133333pt;}
.yf9{bottom:703.146594pt;}
.y13e{bottom:707.293333pt;}
.y10{bottom:709.693333pt;}
.yd7{bottom:712.573333pt;}
.y37{bottom:717.213333pt;}
.ya2{bottom:717.853333pt;}
.y82{bottom:718.333333pt;}
.y13d{bottom:726.013333pt;}
.yf{bottom:728.413333pt;}
.yd6{bottom:731.293333pt;}
.y36{bottom:735.933333pt;}
.ya1{bottom:736.573333pt;}
.y81{bottom:737.053333pt;}
.y13c{bottom:744.733333pt;}
.ye{bottom:747.133333pt;}
.yd5{bottom:750.013333pt;}
.y35{bottom:754.653333pt;}
.ya0{bottom:755.293333pt;}
.y80{bottom:755.773333pt;}
.y13b{bottom:758.173333pt;}
.yd{bottom:765.853333pt;}
.yd4{bottom:768.733333pt;}
.y34{bottom:773.373333pt;}
.y9f{bottom:774.013333pt;}
.y7f{bottom:774.493333pt;}
.y13a{bottom:778.973333pt;}
.yc{bottom:786.493333pt;}
.yd3{bottom:787.453333pt;}
.y33{bottom:788.573333pt;}
.y50{bottom:792.093333pt;}
.y7e{bottom:793.213333pt;}
.y9e{bottom:794.493333pt;}
.y139{bottom:805.573333pt;}
.yd2{bottom:806.213333pt;}
.y4f{bottom:807.173333pt;}
.yb{bottom:809.893333pt;}
.y7d{bottom:811.973333pt;}
.y9d{bottom:815.013333pt;}
.y138{bottom:824.293333pt;}
.ya{bottom:824.773333pt;}
.yd1{bottom:824.933333pt;}
.y7c{bottom:830.693333pt;}
.y9c{bottom:833.733333pt;}
.y137{bottom:843.013333pt;}
.yd0{bottom:843.653333pt;}
.y9{bottom:844.613333pt;}
.y7b{bottom:849.413333pt;}
.y9b{bottom:854.213333pt;}
.y136{bottom:861.733333pt;}
.ycf{bottom:862.373333pt;}
.y8{bottom:867.013333pt;}
.y7a{bottom:868.133333pt;}
.y9a{bottom:874.693333pt;}
.yf7{bottom:878.853333pt;}
.y135{bottom:880.453333pt;}
.yce{bottom:881.093333pt;}
.y79{bottom:886.853333pt;}
.y99{bottom:895.173333pt;}
.y7{bottom:896.933333pt;}
.yf6{bottom:897.573333pt;}
.y134{bottom:899.173333pt;}
.ycd{bottom:899.813333pt;}
.y78{bottom:905.573333pt;}
.y98{bottom:915.653333pt;}
.y133{bottom:917.893333pt;}
.ycc{bottom:918.533333pt;}
.y77{bottom:924.293333pt;}
.y132{bottom:931.333333pt;}
.y5{bottom:932.613333pt;}
.y97{bottom:935.973333pt;}
.ycb{bottom:937.253333pt;}
.y76{bottom:943.013333pt;}
.y131{bottom:951.973333pt;}
.yca{bottom:955.973333pt;}
.y96{bottom:956.453333pt;}
.y4{bottom:961.253333pt;}
.y75{bottom:961.733333pt;}
.yc9{bottom:969.413333pt;}
.y130{bottom:972.613333pt;}
.y95{bottom:976.933333pt;}
.y74{bottom:980.453333pt;}
.y3{bottom:989.893333pt;}
.yc8{bottom:990.053333pt;}
.y94{bottom:997.413333pt;}
.y73{bottom:999.173333pt;}
.yc7{bottom:1010.693333pt;}
.y72{bottom:1017.893333pt;}
.y2{bottom:1018.373333pt;}
.y32{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1060.640000pt;}
.hd{height:18.560000pt;}
.hc{height:18.720000pt;}
.he{height:20.000000pt;}
.hf{height:20.032000pt;}
.h10{height:21.440000pt;}
.h14{height:32.627953pt;}
.h7{height:34.374375pt;}
.h15{height:37.440000pt;}
.h13{height:38.727429pt;}
.h8{height:40.280938pt;}
.ha{height:42.693125pt;}
.h9{height:52.834688pt;}
.h11{height:52.934375pt;}
.h5{height:54.390938pt;}
.hb{height:57.440000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h12{height:169.742276pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.640000pt;}
.w9{width:131.520000pt;}
.w8{width:131.712000pt;}
.w7{width:142.266667pt;}
.wf{width:150.586667pt;}
.w12{width:150.746667pt;}
.w11{width:150.880000pt;}
.w10{width:150.906667pt;}
.wa{width:188.506667pt;}
.wc{width:198.106667pt;}
.wb{width:216.986667pt;}
.w6{width:263.866667pt;}
.w5{width:274.626667pt;}
.we{width:407.339135pt;}
.wd{width:415.426667pt;}
.w4{width:539.133333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.880000pt;}
.x1e{left:32.694090pt;}
.x6{left:47.999988pt;}
.xd{left:62.399988pt;}
.x7{left:67.199988pt;}
.x14{left:78.911988pt;}
.x10{left:83.711988pt;}
.x13{left:86.111988pt;}
.x11{left:87.711988pt;}
.x12{left:91.711988pt;}
.x15{left:95.392000pt;}
.x5{left:142.426655pt;}
.x17{left:160.666667pt;}
.x1d{left:178.479982pt;}
.x3{left:241.986655pt;}
.x23{left:246.466667pt;}
.x8{left:266.786655pt;}
.xe{left:270.946655pt;}
.x1b{left:284.386667pt;}
.x22{left:296.866655pt;}
.x21{left:300.546655pt;}
.x19{left:303.586667pt;}
.xc{left:307.906655pt;}
.x2{left:311.586655pt;}
.x1f{left:319.452692pt;}
.x9{left:328.866655pt;}
.xb{left:333.186655pt;}
.x4{left:372.546655pt;}
.x24{left:397.693333pt;}
.x1{left:426.013322pt;}
.x18{left:435.933333pt;}
.x1c{left:501.693333pt;}
.x25{left:548.893333pt;}
.x1a{left:568.293333pt;}
.x20{left:585.893322pt;}
.xa{left:588.133322pt;}
.x26{left:745.279988pt;}
.xf{left:764.639988pt;}
}




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