
    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_dde50ba706162f517576a62e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_fa0b6ed8535565d5534c4427.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1c916f43cfc6dbfb9befca51.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.957031;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_4cd813714799a4bbb449b097.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_f3e177133d52a6262c639f58.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_28fbd4b001823555a8ce0014.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.046387;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_95f94a061d318115bc15e02d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_15619a58a409a6a2132e8a82.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_1a9cd1a368356fbcf4b1ada4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.055664;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;}
.m8{transform:matrix(0.000000,-0.258366,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.258366,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.258366,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.249671,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249671,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249671,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.258197,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.258197,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.258197,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.249626,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249626,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249626,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.249485,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249485,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249485,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m7{transform:matrix(0.241905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241905,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242063,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);}
.mb{transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250374,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250517,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);}
.v1{vertical-align:-110.880000px;}
.v11{vertical-align:-39.503807px;}
.v5{vertical-align:-26.640000px;}
.v10{vertical-align:-23.011229px;}
.v4{vertical-align:-20.880000px;}
.vf{vertical-align:-18.007936px;}
.v8{vertical-align:-16.511574px;}
.vc{vertical-align:-12.240000px;}
.vb{vertical-align:-7.200000px;}
.v2{vertical-align:-5.760000px;}
.ve{vertical-align:-1.495763px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.760000px;}
.vd{vertical-align:12.240000px;}
.v3{vertical-align:20.880000px;}
.v7{vertical-align:23.010394px;}
.va{vertical-align:25.200000px;}
.v9{vertical-align:28.800000px;}
.ls20{letter-spacing:-1.134000px;}
.ls12{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.513600px;}
.ls21{letter-spacing:-0.413400px;}
.ls2e{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.130630px;}
.ls22{letter-spacing:-0.068583px;}
.ls17{letter-spacing:-0.068581px;}
.ls23{letter-spacing:-0.066520px;}
.ls2f{letter-spacing:-0.053280px;}
.ls18{letter-spacing:-0.016851px;}
.ls25{letter-spacing:-0.016464px;}
.ls24{letter-spacing:-0.016345px;}
.lsc{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.056880px;}
.ls27{letter-spacing:0.106560px;}
.ls10{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.138240px;}
.ls16{letter-spacing:0.155880px;}
.ls2{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.206640px;}
.ls1a{letter-spacing:0.233280px;}
.ls29{letter-spacing:0.235920px;}
.ls11{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.282240px;}
.ls15{letter-spacing:0.298800px;}
.ls13{letter-spacing:0.311760px;}
.ls2c{letter-spacing:0.318240px;}
.ls5{letter-spacing:0.360000px;}
.lse{letter-spacing:0.466800px;}
.ls6{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.858240px;}
.lsd{letter-spacing:0.900000px;}
.ls2d{letter-spacing:0.924000px;}
.ls28{letter-spacing:0.979920px;}
.ls14{letter-spacing:2.340000px;}
.ls7{letter-spacing:3.060000px;}
.ls8{letter-spacing:3.780000px;}
.ls1e{letter-spacing:3.900960px;}
.lsa{letter-spacing:4.500000px;}
.ls2a{letter-spacing:5.940000px;}
.ls2b{letter-spacing:7.380000px;}
.lsb{letter-spacing:9.540000px;}
.ls1d{letter-spacing:15.888000px;}
.ls0{letter-spacing:43.740000px;}
.ls1f{letter-spacing:593.521879px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.000000px;}
.ws22{word-spacing:-15.864000px;}
.ws2{word-spacing:-15.406800px;}
.ws8{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.120000px;}
.ws5{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws24{word-spacing:-14.886720px;}
.ws23{word-spacing:-14.580000px;}
.ws12{word-spacing:-14.526600px;}
.ws4{word-spacing:-14.426400px;}
.ws11{word-spacing:-13.806000px;}
.ws16{word-spacing:-12.780262px;}
.ws1e{word-spacing:-12.486185px;}
.ws18{word-spacing:-11.669345px;}
.wsf{word-spacing:-11.668921px;}
.ws20{word-spacing:-11.400831px;}
.wsb{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws19{word-spacing:-9.494990px;}
.ws21{word-spacing:-9.276508px;}
.wsd{word-spacing:-8.631718px;}
.ws17{word-spacing:-6.808949px;}
.ws10{word-spacing:-6.678072px;}
.ws1f{word-spacing:-6.652274px;}
.ws1c{word-spacing:-6.604085px;}
.wsa{word-spacing:0.000000px;}
.ws13{word-spacing:0.532080px;}
.ws1d{word-spacing:41.107463px;}
.wsc{word-spacing:51.724485px;}
.ws1b{word-spacing:60.676843px;}
.wse{word-spacing:75.702878px;}
.ws1a{word-spacing:117.199303px;}
.ws15{word-spacing:128.663424px;}
.ws14{word-spacing:141.536092px;}
._f{margin-left:-3.938880px;}
._e{margin-left:-2.216400px;}
._0{margin-left:-1.080000px;}
._1{width:1.284000px;}
._2{width:2.334000px;}
._8{width:3.342720px;}
._3{width:5.258880px;}
._16{width:6.260640px;}
._4{width:7.324320px;}
._a{width:8.605440px;}
._9{width:9.621360px;}
._b{width:10.668000px;}
._7{width:12.673680px;}
._5{width:13.924080px;}
._6{width:16.340160px;}
._15{width:19.215840px;}
._14{width:20.218560px;}
._c{width:22.109520px;}
._1e{width:24.117360px;}
._17{width:30.579840px;}
._19{width:37.330800px;}
._18{width:38.545200px;}
._1a{width:40.098960px;}
._1b{width:41.449680px;}
._1c{width:60.822480px;}
._1d{width:62.210160px;}
._13{width:128.941022px;}
._12{width:166.818055px;}
._10{width:169.450800px;}
._d{width:197.436000px;}
._11{width:199.152000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1d{font-size:23.755701px;}
.fs20{font-size:23.929042px;}
.fsb{font-size:24.491733px;}
.fs10{font-size:24.492622px;}
.fsa{font-size:31.049346px;}
.fse{font-size:36.000000px;}
.fs22{font-size:37.106032px;}
.fs12{font-size:37.979958px;}
.fs3{font-size:38.880000px;}
.fs13{font-size:40.643441px;}
.fs1a{font-size:40.713108px;}
.fs19{font-size:40.774086px;}
.fs21{font-size:41.010184px;}
.fs23{font-size:41.064289px;}
.fsd{font-size:41.760000px;}
.fs7{font-size:41.974538px;}
.fs11{font-size:41.976061px;}
.fs6{font-size:42.061261px;}
.fs18{font-size:44.588978px;}
.fs1f{font-size:44.914335px;}
.fs4{font-size:45.970495px;}
.fsf{font-size:45.972164px;}
.fs17{font-size:47.866710px;}
.fs14{font-size:47.898104px;}
.fs1c{font-size:47.980206px;}
.fs1b{font-size:48.052069px;}
.fs25{font-size:48.330308px;}
.fs24{font-size:48.394072px;}
.fs9{font-size:49.466795px;}
.fs15{font-size:49.468591px;}
.fs8{font-size:49.568998px;}
.fs1e{font-size:52.340718px;}
.fs26{font-size:52.722639px;}
.fs5{font-size:53.962411px;}
.fs16{font-size:53.964369px;}
.fs2{font-size:59.760000px;}
.fsc{font-size:62.991941px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y75{bottom:3.060000px;}
.ycd{bottom:3.240000px;}
.y9f{bottom:3.276000px;}
.yd0{bottom:8.460000px;}
.yae{bottom:12.731643px;}
.ybf{bottom:12.824560px;}
.y60{bottom:13.126146px;}
.y92{bottom:13.126623px;}
.ya2{bottom:16.305000px;}
.y74{bottom:20.340000px;}
.yce{bottom:20.565000px;}
.y9e{bottom:21.636000px;}
.ycc{bottom:21.645000px;}
.ya4{bottom:32.255615px;}
.yb3{bottom:32.490984px;}
.y68{bottom:33.255016px;}
.y8b{bottom:33.256223px;}
.ya1{bottom:33.585000px;}
.y5b{bottom:34.882986px;}
.y73{bottom:37.620000px;}
.ya5{bottom:44.868981px;}
.yb4{bottom:47.273541px;}
.y98{bottom:68.765887px;}
.y91{bottom:70.015077px;}
.y64{bottom:74.016332px;}
.y6c{bottom:76.766083px;}
.y8c{bottom:85.771205px;}
.ya6{bottom:86.340730px;}
.yb5{bottom:88.192789px;}
.y6b{bottom:89.641258px;}
.yba{bottom:97.843062px;}
.yc0{bottom:100.776942px;}
.yad{bottom:104.289913px;}
.y6d{bottom:104.895523px;}
.y9d{bottom:106.380000px;}
.ybe{bottom:113.846092px;}
.y65{bottom:114.648651px;}
.y5f{bottom:116.523185px;}
.y62{bottom:121.400565px;}
.y63{bottom:121.526296px;}
.y61{bottom:121.776125px;}
.y59{bottom:122.796000px;}
.y6a{bottom:123.900488px;}
.y70{bottom:124.649975px;}
.ya7{bottom:127.817228px;}
.yb6{bottom:129.116824px;}
.y69{bottom:136.775662px;}
.y8a{bottom:137.304000px;}
.y6f{bottom:137.526782px;}
.y58{bottom:140.076000px;}
.yab{bottom:143.457169px;}
.yb0{bottom:144.306114px;}
.ybc{bottom:144.503986px;}
.y5d{bottom:147.902034px;}
.y8f{bottom:147.907402px;}
.y33{bottom:152.490000px;}
.yf5{bottom:153.930000px;}
.y57{bottom:157.350000px;}
.yaf{bottom:160.193190px;}
.y8d{bottom:161.539089px;}
.ya8{bottom:169.167022px;}
.y32{bottom:169.770000px;}
.yb7{bottom:170.036072px;}
.yf4{bottom:171.210000px;}
.y56{bottom:174.450000px;}
.y31{bottom:188.130000px;}
.yf3{bottom:188.490000px;}
.y55{bottom:191.730000px;}
.y9c{bottom:193.294651px;}
.y95{bottom:195.045150px;}
.y30{bottom:205.230000px;}
.yf2{bottom:205.590000px;}
.y9b{bottom:206.171925px;}
.y94{bottom:207.925690px;}
.y54{bottom:209.010000px;}
.ya9{bottom:210.643521px;}
.yb8{bottom:210.955320px;}
.y9a{bottom:219.052466px;}
.y93{bottom:220.801332px;}
.y2f{bottom:222.510000px;}
.yf1{bottom:222.870000px;}
.y53{bottom:226.290000px;}
.y8e{bottom:237.181238px;}
.y2e{bottom:239.790000px;}
.yf0{bottom:240.150000px;}
.y66{bottom:242.672134px;}
.y52{bottom:243.570000px;}
.ybb{bottom:245.036868px;}
.y99{bottom:247.308661px;}
.y6e{bottom:247.675245px;}
.yb9{bottom:251.879355px;}
.yaa{bottom:252.115269px;}
.y2d{bottom:257.070000px;}
.yef{bottom:257.430000px;}
.y51{bottom:260.850000px;}
.yc1{bottom:264.825659px;}
.y5c{bottom:265.303702px;}
.yac{bottom:266.184113px;}
.yb1{bottom:266.304517px;}
.y71{bottom:267.428065px;}
.ybd{bottom:268.126430px;}
.y96{bottom:269.687947px;}
.y97{bottom:272.437798px;}
.y2c{bottom:274.350000px;}
.y5e{bottom:274.431441px;}
.y90{bottom:274.441402px;}
.yee{bottom:274.710000px;}
.y50{bottom:277.950000px;}
.y2b{bottom:291.630000px;}
.yed{bottom:291.990000px;}
.y72{bottom:292.170000px;}
.y2a{bottom:308.730000px;}
.yec{bottom:309.090000px;}
.y29{bottom:326.010000px;}
.yeb{bottom:326.370000px;}
.y67{bottom:337.455000px;}
.y5a{bottom:339.930000px;}
.y28{bottom:343.335000px;}
.yea{bottom:343.695000px;}
.y27{bottom:360.615000px;}
.ye9{bottom:360.975000px;}
.y26{bottom:377.895000px;}
.ye8{bottom:378.255000px;}
.y25{bottom:394.995000px;}
.ye7{bottom:395.535000px;}
.y24{bottom:412.275000px;}
.ye6{bottom:412.635000px;}
.y23{bottom:429.555000px;}
.ye5{bottom:429.915000px;}
.y22{bottom:446.835000px;}
.ye4{bottom:447.195000px;}
.y88{bottom:450.435000px;}
.y89{bottom:452.235000px;}
.y21{bottom:464.115000px;}
.ye3{bottom:464.475000px;}
.y87{bottom:474.735000px;}
.y20{bottom:481.395000px;}
.ye2{bottom:481.755000px;}
.y86{bottom:492.015000px;}
.y1f{bottom:498.495000px;}
.ye1{bottom:498.855000px;}
.y85{bottom:510.375000px;}
.ye0{bottom:516.135000px;}
.y1e{bottom:520.275000px;}
.y84{bottom:528.735000px;}
.ydf{bottom:537.915000px;}
.y83{bottom:546.015000px;}
.y1d{bottom:555.555000px;}
.y82{bottom:563.295000px;}
.y1c{bottom:572.835000px;}
.yde{bottom:573.195000px;}
.y81{bottom:581.655000px;}
.y1b{bottom:590.115000px;}
.ydd{bottom:590.475000px;}
.y80{bottom:598.755000px;}
.y1a{bottom:607.425000px;}
.ydc{bottom:607.785000px;}
.y7f{bottom:617.325000px;}
.y19{bottom:624.525000px;}
.ydb{bottom:624.885000px;}
.ya0{bottom:633.240000px;}
.yda{bottom:642.165000px;}
.y18{bottom:643.065000px;}
.y4f{bottom:648.645000px;}
.yd9{bottom:659.445000px;}
.y17{bottom:661.425000px;}
.y4e{bottom:665.925000px;}
.yd8{bottom:676.725000px;}
.y16{bottom:678.525000px;}
.yb2{bottom:681.465000px;}
.y4d{bottom:683.025000px;}
.ya3{bottom:683.565000px;}
.yd7{bottom:695.085000px;}
.y15{bottom:695.805000px;}
.y4c{bottom:700.305000px;}
.yd6{bottom:713.445000px;}
.y14{bottom:714.165000px;}
.y4b{bottom:717.585000px;}
.yd5{bottom:730.725000px;}
.y13{bottom:731.445000px;}
.y4a{bottom:734.865000px;}
.y12{bottom:748.725000px;}
.yd4{bottom:749.085000px;}
.y49{bottom:752.145000px;}
.y11{bottom:766.005000px;}
.yd3{bottom:766.365000px;}
.y48{bottom:769.425000px;}
.y10{bottom:783.285000px;}
.yd2{bottom:787.965000px;}
.y47{bottom:791.025000px;}
.yf{bottom:809.565000px;}
.yd1{bottom:820.905000px;}
.y46{bottom:826.305000px;}
.ye{bottom:829.725000px;}
.ycf{bottom:838.905000px;}
.y45{bottom:843.585000px;}
.yd{bottom:850.065000px;}
.ycb{bottom:856.905000px;}
.y44{bottom:860.865000px;}
.yc{bottom:870.225000px;}
.y43{bottom:878.190000px;}
.yb{bottom:889.530000px;}
.y42{bottom:895.470000px;}
.yca{bottom:896.550000px;}
.y41{bottom:912.570000px;}
.yc9{bottom:914.910000px;}
.y40{bottom:929.850000px;}
.yc8{bottom:932.190000px;}
.y101{bottom:935.430000px;}
.ya{bottom:946.590000px;}
.y3f{bottom:947.130000px;}
.yc7{bottom:949.290000px;}
.y100{bottom:952.710000px;}
.y3e{bottom:964.410000px;}
.yc6{bottom:966.570000px;}
.yff{bottom:969.990000px;}
.y9{bottom:972.870000px;}
.y3d{bottom:981.690000px;}
.y7e{bottom:982.770000px;}
.yc5{bottom:983.850000px;}
.yfe{bottom:987.270000px;}
.y8{bottom:993.570000px;}
.y3c{bottom:998.970000px;}
.y7d{bottom:1001.130000px;}
.yfd{bottom:1004.550000px;}
.y7{bottom:1014.270000px;}
.y3b{bottom:1017.330000px;}
.y7c{bottom:1018.410000px;}
.yfc{bottom:1021.830000px;}
.y3a{bottom:1034.430000px;}
.y7b{bottom:1035.690000px;}
.y6{bottom:1036.230000px;}
.yfb{bottom:1038.930000px;}
.y39{bottom:1051.710000px;}
.y7a{bottom:1052.790000px;}
.yc4{bottom:1054.050000px;}
.yfa{bottom:1056.210000px;}
.y5{bottom:1056.930000px;}
.y38{bottom:1068.990000px;}
.y79{bottom:1070.070000px;}
.yc3{bottom:1071.330000px;}
.yf9{bottom:1073.490000px;}
.y4{bottom:1077.630000px;}
.y37{bottom:1086.270000px;}
.y78{bottom:1088.430000px;}
.yf8{bottom:1090.770000px;}
.y3{bottom:1098.330000px;}
.y36{bottom:1103.550000px;}
.yc2{bottom:1105.710000px;}
.y77{bottom:1106.790000px;}
.yf7{bottom:1108.050000px;}
.y2{bottom:1119.030000px;}
.y35{bottom:1120.830000px;}
.y76{bottom:1124.070000px;}
.yf6{bottom:1125.330000px;}
.y1{bottom:1139.760000px;}
.y34{bottom:1142.460000px;}
.h33{height:17.100000px;}
.h2c{height:17.491101px;}
.h20{height:17.903054px;}
.h10{height:22.695738px;}
.h1a{height:29.708609px;}
.h26{height:29.759532px;}
.h25{height:29.804105px;}
.h2e{height:29.976682px;}
.h2d{height:30.016231px;}
.hd{height:30.681583px;}
.h1b{height:30.682697px;}
.hc{height:30.744974px;}
.h24{height:32.592627px;}
.h2b{height:32.830449px;}
.ha{height:33.602457px;}
.h18{height:33.603676px;}
.h1f{height:34.988508px;}
.h1c{height:35.011456px;}
.h28{height:35.071469px;}
.h27{height:35.123997px;}
.h30{height:35.327379px;}
.h2f{height:35.373987px;}
.h32{height:35.676000px;}
.hf{height:36.158102px;}
.h1d{height:36.159414px;}
.he{height:36.232807px;}
.h21{height:36.900000px;}
.h34{height:38.158594px;}
.h29{height:38.258816px;}
.h31{height:38.537983px;}
.h19{height:39.398926px;}
.hb{height:39.444204px;}
.h1e{height:39.445635px;}
.h11{height:40.912798px;}
.h14{height:43.737568px;}
.h22{height:47.700000px;}
.h16{height:51.451172px;}
.h12{height:51.696000px;}
.h5{height:58.621992px;}
.h6{height:58.651172px;}
.h7{height:59.038594px;}
.h13{height:59.158594px;}
.h4{height:60.226875px;}
.h8{height:62.211094px;}
.h2{height:72.562500px;}
.h15{height:84.339844px;}
.h3{height:96.508125px;}
.h23{height:288.615000px;}
.h2a{height:290.715000px;}
.h9{height:297.555000px;}
.h17{height:297.570000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:104.256000px;}
.wd{width:110.700000px;}
.wf{width:110.916000px;}
.we{width:111.456000px;}
.w10{width:115.380000px;}
.wb{width:122.220000px;}
.w5{width:409.904900px;}
.w9{width:411.222505px;}
.w6{width:411.930000px;}
.wa{width:414.149318px;}
.w3{width:424.200000px;}
.w4{width:679.605000px;}
.w8{width:689.400000px;}
.w7{width:704.340000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:1.116000px;}
.x38{left:6.336000px;}
.x48{left:15.840000px;}
.x35{left:21.456000px;}
.x2c{left:29.148929px;}
.x46{left:30.240000px;}
.x2f{left:32.634345px;}
.x3f{left:34.583260px;}
.x49{left:36.900000px;}
.x2a{left:38.705026px;}
.x30{left:40.371884px;}
.x4d{left:41.970000px;}
.x25{left:44.751106px;}
.x3c{left:48.053016px;}
.x9{left:49.319630px;}
.x26{left:50.920509px;}
.x4c{left:52.590000px;}
.x3b{left:54.239082px;}
.xc{left:57.577750px;}
.x27{left:60.236276px;}
.x7{left:62.850000px;}
.x2e{left:65.995583px;}
.x8{left:69.469965px;}
.x3a{left:78.975000px;}
.x24{left:80.400000px;}
.x15{left:86.866496px;}
.x37{left:90.900000px;}
.x34{left:94.500000px;}
.x1f{left:102.636000px;}
.x1{left:106.415987px;}
.x50{left:135.215987px;}
.x1c{left:139.689297px;}
.x13{left:151.457186px;}
.xd{left:158.592845px;}
.x1e{left:166.726592px;}
.x44{left:168.765186px;}
.x41{left:170.231621px;}
.x1b{left:172.862518px;}
.x1d{left:176.115352px;}
.x12{left:184.879086px;}
.x33{left:192.429721px;}
.x11{left:203.779329px;}
.x3{left:208.829987px;}
.x29{left:211.664953px;}
.x43{left:213.856635px;}
.x31{left:215.876072px;}
.x1a{left:217.672654px;}
.xb{left:219.048744px;}
.x6{left:220.889987px;}
.x3e{left:223.145566px;}
.x4{left:227.549987px;}
.x47{left:230.070000px;}
.x2b{left:232.350325px;}
.x32{left:239.205536px;}
.x36{left:244.515000px;}
.x17{left:245.835665px;}
.x16{left:255.224425px;}
.x10{left:267.367000px;}
.x5{left:300.134987px;}
.x19{left:310.675070px;}
.x18{left:314.929300px;}
.xf{left:319.438795px;}
.x40{left:320.907200px;}
.x4a{left:335.235000px;}
.xe{left:339.965463px;}
.x28{left:368.782387px;}
.x3d{left:369.967807px;}
.x42{left:372.600978px;}
.xa{left:381.647115px;}
.x2{left:387.614987px;}
.x22{left:396.974987px;}
.x2d{left:410.355000px;}
.x4b{left:446.835000px;}
.x14{left:461.400000px;}
.x23{left:464.654987px;}
.x20{left:480.884987px;}
.x21{left:487.184987px;}
.x4e{left:559.005000px;}
.x4f{left:670.650000px;}
.x45{left:786.749987px;}
@media print{
.v1{vertical-align:-98.560000pt;}
.v11{vertical-align:-35.114495pt;}
.v5{vertical-align:-23.680000pt;}
.v10{vertical-align:-20.454426pt;}
.v4{vertical-align:-18.560000pt;}
.vf{vertical-align:-16.007054pt;}
.v8{vertical-align:-14.676955pt;}
.vc{vertical-align:-10.880000pt;}
.vb{vertical-align:-6.400000pt;}
.v2{vertical-align:-5.120000pt;}
.ve{vertical-align:-1.329567pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.120000pt;}
.vd{vertical-align:10.880000pt;}
.v3{vertical-align:18.560000pt;}
.v7{vertical-align:20.453683pt;}
.va{vertical-align:22.400000pt;}
.v9{vertical-align:25.600000pt;}
.ls20{letter-spacing:-1.008000pt;}
.ls12{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.456533pt;}
.ls21{letter-spacing:-0.367467pt;}
.ls2e{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.116115pt;}
.ls22{letter-spacing:-0.060963pt;}
.ls17{letter-spacing:-0.060960pt;}
.ls23{letter-spacing:-0.059128pt;}
.ls2f{letter-spacing:-0.047360pt;}
.ls18{letter-spacing:-0.014979pt;}
.ls25{letter-spacing:-0.014635pt;}
.ls24{letter-spacing:-0.014529pt;}
.lsc{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.050560pt;}
.ls27{letter-spacing:0.094720pt;}
.ls10{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.122880pt;}
.ls16{letter-spacing:0.138560pt;}
.ls2{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.183680pt;}
.ls1a{letter-spacing:0.207360pt;}
.ls29{letter-spacing:0.209707pt;}
.ls11{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.250880pt;}
.ls15{letter-spacing:0.265600pt;}
.ls13{letter-spacing:0.277120pt;}
.ls2c{letter-spacing:0.282880pt;}
.ls5{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.414933pt;}
.ls6{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.762880pt;}
.lsd{letter-spacing:0.800000pt;}
.ls2d{letter-spacing:0.821333pt;}
.ls28{letter-spacing:0.871040pt;}
.ls14{letter-spacing:2.080000pt;}
.ls7{letter-spacing:2.720000pt;}
.ls8{letter-spacing:3.360000pt;}
.ls1e{letter-spacing:3.467520pt;}
.lsa{letter-spacing:4.000000pt;}
.ls2a{letter-spacing:5.280000pt;}
.ls2b{letter-spacing:6.560000pt;}
.lsb{letter-spacing:8.480000pt;}
.ls1d{letter-spacing:14.122667pt;}
.ls0{letter-spacing:38.880000pt;}
.ls1f{letter-spacing:527.575003pt;}
.ws0{word-spacing:-16.000000pt;}
.ws22{word-spacing:-14.101333pt;}
.ws2{word-spacing:-13.694933pt;}
.ws8{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws24{word-spacing:-13.232640pt;}
.ws23{word-spacing:-12.960000pt;}
.ws12{word-spacing:-12.912533pt;}
.ws4{word-spacing:-12.823467pt;}
.ws11{word-spacing:-12.272000pt;}
.ws16{word-spacing:-11.360233pt;}
.ws1e{word-spacing:-11.098831pt;}
.ws18{word-spacing:-10.372751pt;}
.wsf{word-spacing:-10.372375pt;}
.ws20{word-spacing:-10.134072pt;}
.wsb{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws19{word-spacing:-8.439991pt;}
.ws21{word-spacing:-8.245785pt;}
.wsd{word-spacing:-7.672638pt;}
.ws17{word-spacing:-6.052399pt;}
.ws10{word-spacing:-5.936064pt;}
.ws1f{word-spacing:-5.913132pt;}
.ws1c{word-spacing:-5.870298pt;}
.wsa{word-spacing:0.000000pt;}
.ws13{word-spacing:0.472960pt;}
.ws1d{word-spacing:36.539967pt;}
.wsc{word-spacing:45.977320pt;}
.ws1b{word-spacing:53.934972pt;}
.wse{word-spacing:67.291447pt;}
.ws1a{word-spacing:104.177158pt;}
.ws15{word-spacing:114.367488pt;}
.ws14{word-spacing:125.809860pt;}
._f{margin-left:-3.501227pt;}
._e{margin-left:-1.970133pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.141333pt;}
._2{width:2.074667pt;}
._8{width:2.971307pt;}
._3{width:4.674560pt;}
._16{width:5.565013pt;}
._4{width:6.510507pt;}
._a{width:7.649280pt;}
._9{width:8.552320pt;}
._b{width:9.482667pt;}
._7{width:11.265493pt;}
._5{width:12.376960pt;}
._6{width:14.524587pt;}
._15{width:17.080747pt;}
._14{width:17.972053pt;}
._c{width:19.652907pt;}
._1e{width:21.437653pt;}
._17{width:27.182080pt;}
._19{width:33.182933pt;}
._18{width:34.262400pt;}
._1a{width:35.643520pt;}
._1b{width:36.844160pt;}
._1c{width:54.064427pt;}
._1d{width:55.297920pt;}
._13{width:114.614241pt;}
._12{width:148.282715pt;}
._10{width:150.622933pt;}
._d{width:175.498667pt;}
._11{width:177.024000pt;}
.fs1d{font-size:21.116179pt;}
.fs20{font-size:21.270259pt;}
.fsb{font-size:21.770429pt;}
.fs10{font-size:21.771219pt;}
.fsa{font-size:27.599418pt;}
.fse{font-size:32.000000pt;}
.fs22{font-size:32.983140pt;}
.fs12{font-size:33.759963pt;}
.fs3{font-size:34.560000pt;}
.fs13{font-size:36.127503pt;}
.fs1a{font-size:36.189429pt;}
.fs19{font-size:36.243632pt;}
.fs21{font-size:36.453497pt;}
.fs23{font-size:36.501591pt;}
.fsd{font-size:37.120000pt;}
.fs7{font-size:37.310700pt;}
.fs11{font-size:37.312054pt;}
.fs6{font-size:37.387787pt;}
.fs18{font-size:39.634647pt;}
.fs1f{font-size:39.923854pt;}
.fs4{font-size:40.862663pt;}
.fsf{font-size:40.864146pt;}
.fs17{font-size:42.548186pt;}
.fs14{font-size:42.576093pt;}
.fs1c{font-size:42.649072pt;}
.fs1b{font-size:42.712950pt;}
.fs25{font-size:42.960274pt;}
.fs24{font-size:43.016953pt;}
.fs9{font-size:43.970485pt;}
.fs15{font-size:43.972080pt;}
.fs8{font-size:44.061331pt;}
.fs1e{font-size:46.525083pt;}
.fs26{font-size:46.864568pt;}
.fs5{font-size:47.966587pt;}
.fs16{font-size:47.968328pt;}
.fs2{font-size:53.120000pt;}
.fsc{font-size:55.992837pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:2.720000pt;}
.ycd{bottom:2.880000pt;}
.y9f{bottom:2.912000pt;}
.yd0{bottom:7.520000pt;}
.yae{bottom:11.317016pt;}
.ybf{bottom:11.399609pt;}
.y60{bottom:11.667686pt;}
.y92{bottom:11.668109pt;}
.ya2{bottom:14.493333pt;}
.y74{bottom:18.080000pt;}
.yce{bottom:18.280000pt;}
.y9e{bottom:19.232000pt;}
.ycc{bottom:19.240000pt;}
.ya4{bottom:28.671658pt;}
.yb3{bottom:28.880875pt;}
.y68{bottom:29.560014pt;}
.y8b{bottom:29.561087pt;}
.ya1{bottom:29.853333pt;}
.y5b{bottom:31.007099pt;}
.y73{bottom:33.440000pt;}
.ya5{bottom:39.883539pt;}
.yb4{bottom:42.020925pt;}
.y98{bottom:61.125233pt;}
.y91{bottom:62.235624pt;}
.y64{bottom:65.792295pt;}
.y6c{bottom:68.236519pt;}
.y8c{bottom:76.241071pt;}
.ya6{bottom:76.747315pt;}
.yb5{bottom:78.393590pt;}
.y6b{bottom:79.681118pt;}
.yba{bottom:86.971611pt;}
.yc0{bottom:89.579504pt;}
.yad{bottom:92.702145pt;}
.y6d{bottom:93.240464pt;}
.y9d{bottom:94.560000pt;}
.ybe{bottom:101.196526pt;}
.y65{bottom:101.909912pt;}
.y5f{bottom:103.576164pt;}
.y62{bottom:107.911614pt;}
.y63{bottom:108.023374pt;}
.y61{bottom:108.245445pt;}
.y59{bottom:109.152000pt;}
.y6a{bottom:110.133767pt;}
.y70{bottom:110.799978pt;}
.ya7{bottom:113.615314pt;}
.yb6{bottom:114.770510pt;}
.y69{bottom:121.578367pt;}
.y8a{bottom:122.048000pt;}
.y6f{bottom:122.246029pt;}
.y58{bottom:124.512000pt;}
.yab{bottom:127.517484pt;}
.yb0{bottom:128.272101pt;}
.ybc{bottom:128.447988pt;}
.y5d{bottom:131.468474pt;}
.y8f{bottom:131.473246pt;}
.y33{bottom:135.546667pt;}
.yf5{bottom:136.826667pt;}
.y57{bottom:139.866667pt;}
.yaf{bottom:142.393947pt;}
.y8d{bottom:143.590302pt;}
.ya8{bottom:150.370687pt;}
.y32{bottom:150.906667pt;}
.yb7{bottom:151.143175pt;}
.yf4{bottom:152.186667pt;}
.y56{bottom:155.066667pt;}
.y31{bottom:167.226667pt;}
.yf3{bottom:167.546667pt;}
.y55{bottom:170.426667pt;}
.y9c{bottom:171.817467pt;}
.y95{bottom:173.373467pt;}
.y30{bottom:182.426667pt;}
.yf2{bottom:182.746667pt;}
.y9b{bottom:183.263933pt;}
.y94{bottom:184.822836pt;}
.y54{bottom:185.786667pt;}
.ya9{bottom:187.238685pt;}
.yb8{bottom:187.515840pt;}
.y9a{bottom:194.713303pt;}
.y93{bottom:196.267851pt;}
.y2f{bottom:197.786667pt;}
.yf1{bottom:198.106667pt;}
.y53{bottom:201.146667pt;}
.y8e{bottom:210.827767pt;}
.y2e{bottom:213.146667pt;}
.yf0{bottom:213.466667pt;}
.y66{bottom:215.708563pt;}
.y52{bottom:216.506667pt;}
.ybb{bottom:217.810549pt;}
.y99{bottom:219.829921pt;}
.y6e{bottom:220.155774pt;}
.yb9{bottom:223.892760pt;}
.yaa{bottom:224.102461pt;}
.y2d{bottom:228.506667pt;}
.yef{bottom:228.826667pt;}
.y51{bottom:231.866667pt;}
.yc1{bottom:235.400586pt;}
.y5c{bottom:235.825513pt;}
.yac{bottom:236.608100pt;}
.yb1{bottom:236.715126pt;}
.y71{bottom:237.713836pt;}
.ybd{bottom:238.334604pt;}
.y96{bottom:239.722619pt;}
.y97{bottom:242.166932pt;}
.y2c{bottom:243.866667pt;}
.y5e{bottom:243.939059pt;}
.y90{bottom:243.947913pt;}
.yee{bottom:244.186667pt;}
.y50{bottom:247.066667pt;}
.y2b{bottom:259.226667pt;}
.yed{bottom:259.546667pt;}
.y72{bottom:259.706667pt;}
.y2a{bottom:274.426667pt;}
.yec{bottom:274.746667pt;}
.y29{bottom:289.786667pt;}
.yeb{bottom:290.106667pt;}
.y67{bottom:299.960000pt;}
.y5a{bottom:302.160000pt;}
.y28{bottom:305.186667pt;}
.yea{bottom:305.506667pt;}
.y27{bottom:320.546667pt;}
.ye9{bottom:320.866667pt;}
.y26{bottom:335.906667pt;}
.ye8{bottom:336.226667pt;}
.y25{bottom:351.106667pt;}
.ye7{bottom:351.586667pt;}
.y24{bottom:366.466667pt;}
.ye6{bottom:366.786667pt;}
.y23{bottom:381.826667pt;}
.ye5{bottom:382.146667pt;}
.y22{bottom:397.186667pt;}
.ye4{bottom:397.506667pt;}
.y88{bottom:400.386667pt;}
.y89{bottom:401.986667pt;}
.y21{bottom:412.546667pt;}
.ye3{bottom:412.866667pt;}
.y87{bottom:421.986667pt;}
.y20{bottom:427.906667pt;}
.ye2{bottom:428.226667pt;}
.y86{bottom:437.346667pt;}
.y1f{bottom:443.106667pt;}
.ye1{bottom:443.426667pt;}
.y85{bottom:453.666667pt;}
.ye0{bottom:458.786667pt;}
.y1e{bottom:462.466667pt;}
.y84{bottom:469.986667pt;}
.ydf{bottom:478.146667pt;}
.y83{bottom:485.346667pt;}
.y1d{bottom:493.826667pt;}
.y82{bottom:500.706667pt;}
.y1c{bottom:509.186667pt;}
.yde{bottom:509.506667pt;}
.y81{bottom:517.026667pt;}
.y1b{bottom:524.546667pt;}
.ydd{bottom:524.866667pt;}
.y80{bottom:532.226667pt;}
.y1a{bottom:539.933333pt;}
.ydc{bottom:540.253333pt;}
.y7f{bottom:548.733333pt;}
.y19{bottom:555.133333pt;}
.ydb{bottom:555.453333pt;}
.ya0{bottom:562.880000pt;}
.yda{bottom:570.813333pt;}
.y18{bottom:571.613333pt;}
.y4f{bottom:576.573333pt;}
.yd9{bottom:586.173333pt;}
.y17{bottom:587.933333pt;}
.y4e{bottom:591.933333pt;}
.yd8{bottom:601.533333pt;}
.y16{bottom:603.133333pt;}
.yb2{bottom:605.746667pt;}
.y4d{bottom:607.133333pt;}
.ya3{bottom:607.613333pt;}
.yd7{bottom:617.853333pt;}
.y15{bottom:618.493333pt;}
.y4c{bottom:622.493333pt;}
.yd6{bottom:634.173333pt;}
.y14{bottom:634.813333pt;}
.y4b{bottom:637.853333pt;}
.yd5{bottom:649.533333pt;}
.y13{bottom:650.173333pt;}
.y4a{bottom:653.213333pt;}
.y12{bottom:665.533333pt;}
.yd4{bottom:665.853333pt;}
.y49{bottom:668.573333pt;}
.y11{bottom:680.893333pt;}
.yd3{bottom:681.213333pt;}
.y48{bottom:683.933333pt;}
.y10{bottom:696.253333pt;}
.yd2{bottom:700.413333pt;}
.y47{bottom:703.133333pt;}
.yf{bottom:719.613333pt;}
.yd1{bottom:729.693333pt;}
.y46{bottom:734.493333pt;}
.ye{bottom:737.533333pt;}
.ycf{bottom:745.693333pt;}
.y45{bottom:749.853333pt;}
.yd{bottom:755.613333pt;}
.ycb{bottom:761.693333pt;}
.y44{bottom:765.213333pt;}
.yc{bottom:773.533333pt;}
.y43{bottom:780.613333pt;}
.yb{bottom:790.693333pt;}
.y42{bottom:795.973333pt;}
.yca{bottom:796.933333pt;}
.y41{bottom:811.173333pt;}
.yc9{bottom:813.253333pt;}
.y40{bottom:826.533333pt;}
.yc8{bottom:828.613333pt;}
.y101{bottom:831.493333pt;}
.ya{bottom:841.413333pt;}
.y3f{bottom:841.893333pt;}
.yc7{bottom:843.813333pt;}
.y100{bottom:846.853333pt;}
.y3e{bottom:857.253333pt;}
.yc6{bottom:859.173333pt;}
.yff{bottom:862.213333pt;}
.y9{bottom:864.773333pt;}
.y3d{bottom:872.613333pt;}
.y7e{bottom:873.573333pt;}
.yc5{bottom:874.533333pt;}
.yfe{bottom:877.573333pt;}
.y8{bottom:883.173333pt;}
.y3c{bottom:887.973333pt;}
.y7d{bottom:889.893333pt;}
.yfd{bottom:892.933333pt;}
.y7{bottom:901.573333pt;}
.y3b{bottom:904.293333pt;}
.y7c{bottom:905.253333pt;}
.yfc{bottom:908.293333pt;}
.y3a{bottom:919.493333pt;}
.y7b{bottom:920.613333pt;}
.y6{bottom:921.093333pt;}
.yfb{bottom:923.493333pt;}
.y39{bottom:934.853333pt;}
.y7a{bottom:935.813333pt;}
.yc4{bottom:936.933333pt;}
.yfa{bottom:938.853333pt;}
.y5{bottom:939.493333pt;}
.y38{bottom:950.213333pt;}
.y79{bottom:951.173333pt;}
.yc3{bottom:952.293333pt;}
.yf9{bottom:954.213333pt;}
.y4{bottom:957.893333pt;}
.y37{bottom:965.573333pt;}
.y78{bottom:967.493333pt;}
.yf8{bottom:969.573333pt;}
.y3{bottom:976.293333pt;}
.y36{bottom:980.933333pt;}
.yc2{bottom:982.853333pt;}
.y77{bottom:983.813333pt;}
.yf7{bottom:984.933333pt;}
.y2{bottom:994.693333pt;}
.y35{bottom:996.293333pt;}
.y76{bottom:999.173333pt;}
.yf6{bottom:1000.293333pt;}
.y1{bottom:1013.120000pt;}
.y34{bottom:1015.520000pt;}
.h33{height:15.200000pt;}
.h2c{height:15.547646pt;}
.h20{height:15.913826pt;}
.h10{height:20.173989pt;}
.h1a{height:26.407653pt;}
.h26{height:26.452918pt;}
.h25{height:26.492538pt;}
.h2e{height:26.645940pt;}
.h2d{height:26.681094pt;}
.hd{height:27.272519pt;}
.h1b{height:27.273508pt;}
.hc{height:27.328866pt;}
.h24{height:28.971224pt;}
.h2b{height:29.182622pt;}
.ha{height:29.868851pt;}
.h18{height:29.869935pt;}
.h1f{height:31.100896pt;}
.h1c{height:31.121294pt;}
.h28{height:31.174639pt;}
.h27{height:31.221331pt;}
.h30{height:31.402114pt;}
.h2f{height:31.443544pt;}
.h32{height:31.712000pt;}
.hf{height:32.140535pt;}
.h1d{height:32.141701pt;}
.he{height:32.206940pt;}
.h21{height:32.800000pt;}
.h34{height:33.918750pt;}
.h29{height:34.007836pt;}
.h31{height:34.255985pt;}
.h19{height:35.021267pt;}
.hb{height:35.061514pt;}
.h1e{height:35.062787pt;}
.h11{height:36.366932pt;}
.h14{height:38.877839pt;}
.h22{height:42.400000pt;}
.h16{height:45.734375pt;}
.h12{height:45.952000pt;}
.h5{height:52.108438pt;}
.h6{height:52.134375pt;}
.h7{height:52.478750pt;}
.h13{height:52.585417pt;}
.h4{height:53.535000pt;}
.h8{height:55.298750pt;}
.h2{height:64.500000pt;}
.h15{height:74.968750pt;}
.h3{height:85.785000pt;}
.h23{height:256.546667pt;}
.h2a{height:258.413333pt;}
.h9{height:264.493333pt;}
.h17{height:264.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:92.672000pt;}
.wd{width:98.400000pt;}
.wf{width:98.592000pt;}
.we{width:99.072000pt;}
.w10{width:102.560000pt;}
.wb{width:108.640000pt;}
.w5{width:364.359911pt;}
.w9{width:365.531116pt;}
.w6{width:366.160000pt;}
.wa{width:368.132727pt;}
.w3{width:377.066667pt;}
.w4{width:604.093333pt;}
.w8{width:612.800000pt;}
.w7{width:626.080000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:0.992000pt;}
.x38{left:5.632000pt;}
.x48{left:14.080000pt;}
.x35{left:19.072000pt;}
.x2c{left:25.910159pt;}
.x46{left:26.880000pt;}
.x2f{left:29.008306pt;}
.x3f{left:30.740676pt;}
.x49{left:32.800000pt;}
.x2a{left:34.404468pt;}
.x30{left:35.886120pt;}
.x4d{left:37.306667pt;}
.x25{left:39.778761pt;}
.x3c{left:42.713792pt;}
.x9{left:43.839671pt;}
.x26{left:45.262674pt;}
.x4c{left:46.746667pt;}
.x3b{left:48.212517pt;}
.xc{left:51.180222pt;}
.x27{left:53.543357pt;}
.x7{left:55.866667pt;}
.x2e{left:58.662741pt;}
.x8{left:61.751080pt;}
.x3a{left:70.200000pt;}
.x24{left:71.466667pt;}
.x15{left:77.214663pt;}
.x37{left:80.800000pt;}
.x34{left:84.000000pt;}
.x1f{left:91.232000pt;}
.x1{left:94.591988pt;}
.x50{left:120.191988pt;}
.x1c{left:124.168264pt;}
.x13{left:134.628610pt;}
.xd{left:140.971418pt;}
.x1e{left:148.201415pt;}
.x44{left:150.013499pt;}
.x41{left:151.316997pt;}
.x1b{left:153.655572pt;}
.x1d{left:156.546980pt;}
.x12{left:164.336965pt;}
.x33{left:171.048641pt;}
.x11{left:181.137181pt;}
.x3{left:185.626655pt;}
.x29{left:188.146625pt;}
.x43{left:190.094786pt;}
.x31{left:191.889841pt;}
.x1a{left:193.486804pt;}
.xb{left:194.709995pt;}
.x6{left:196.346655pt;}
.x3e{left:198.351614pt;}
.x4{left:202.266655pt;}
.x47{left:204.506667pt;}
.x2b{left:206.533622pt;}
.x32{left:212.627144pt;}
.x36{left:217.346667pt;}
.x17{left:218.520591pt;}
.x16{left:226.866156pt;}
.x10{left:237.659556pt;}
.x5{left:266.786655pt;}
.x19{left:276.155618pt;}
.x18{left:279.937155pt;}
.xf{left:283.945596pt;}
.x40{left:285.250845pt;}
.x4a{left:297.986667pt;}
.xe{left:302.191522pt;}
.x28{left:327.806566pt;}
.x3d{left:328.860273pt;}
.x42{left:331.200869pt;}
.xa{left:339.241880pt;}
.x2{left:344.546655pt;}
.x22{left:352.866655pt;}
.x2d{left:364.760000pt;}
.x4b{left:397.186667pt;}
.x14{left:410.133333pt;}
.x23{left:413.026655pt;}
.x20{left:427.453322pt;}
.x21{left:433.053322pt;}
.x4e{left:496.893333pt;}
.x4f{left:596.133333pt;}
.x45{left:699.333322pt;}
}




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