
    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_cb9344b28cd6232619444301.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.251953;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_5a8f314cc2a1897e310a8814.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.251953;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_18a2a7a5f2e45cb85eaba636.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.111133;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_dcdd5abfc8b5225cef265166.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969727;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_a1a23a477f5f3e711260f489.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969727;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_055a8a821a800e444d9e7306.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.964000;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_8413c676fb1f73ba07e18753.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.110533;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_ad65feb804476e54878e7bcb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.110533;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_b55047e4d1892d5cfbb1f2b4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.111133;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_23e576f18998e85c0cb76833.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964000;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_827819bcc316d65eda854b2c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064000;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_79364a1af19321a0eec6cb81.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.064000;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_987ce055c87e5717375b19b5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.709473;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_8d08406671015a4e9b2ac4a4.woff2')format("woff");}.fff{font-family:fff;line-height:0.709473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls26{letter-spacing:-0.172200px;}
.ls6{letter-spacing:-0.129600px;}
.ls4{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.015840px;}
.ls2f{letter-spacing:0.020880px;}
.ls23{letter-spacing:0.030240px;}
.ls21{letter-spacing:0.061200px;}
.ls25{letter-spacing:0.072600px;}
.ls1a{letter-spacing:0.089400px;}
.ls0{letter-spacing:0.115200px;}
.lsf{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.126600px;}
.ls11{letter-spacing:0.126720px;}
.ls28{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.146880px;}
.ls14{letter-spacing:0.147000px;}
.ls27{letter-spacing:0.148800px;}
.ls5{letter-spacing:0.154800px;}
.ls24{letter-spacing:0.322560px;}
.ls1{letter-spacing:0.327360px;}
.ls1c{letter-spacing:0.367800px;}
.ls2{letter-spacing:0.522000px;}
.ls22{letter-spacing:0.550200px;}
.lsb{letter-spacing:0.590400px;}
.ls7{letter-spacing:0.598320px;}
.lse{letter-spacing:0.720000px;}
.ls2b{letter-spacing:0.750240px;}
.lsc{letter-spacing:0.866880px;}
.ls1b{letter-spacing:0.918000px;}
.lsa{letter-spacing:1.318320px;}
.ls10{letter-spacing:3.478320px;}
.ls15{letter-spacing:3.658320px;}
.ls3{letter-spacing:6.358320px;}
.ls1f{letter-spacing:7.078320px;}
.ls1d{letter-spacing:10.678320px;}
.ls12{letter-spacing:12.118320px;}
.ls1e{letter-spacing:13.558320px;}
.ls2c{letter-spacing:14.998320px;}
.ls8{letter-spacing:22.198320px;}
.ls17{letter-spacing:35.158320px;}
.ls18{letter-spacing:35.338320px;}
.ls19{letter-spacing:40.198320px;}
.ls2e{letter-spacing:46.678320px;}
.ls29{letter-spacing:61.866720px;}
.ls16{letter-spacing:93.478320px;}
.ls2d{letter-spacing:202.198320px;}
.ls2a{letter-spacing:223.798320px;}
.lsd{letter-spacing:849.360000px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.ws4{word-spacing:-17.884800px;}
.ws7{word-spacing:-16.135200px;}
.wsa{word-spacing:-15.439680px;}
.ws10{word-spacing:-15.071880px;}
.ws11{word-spacing:-14.670480px;}
.wsc{word-spacing:-14.668680px;}
.ws12{word-spacing:-14.665680px;}
.ws8{word-spacing:-14.648280px;}
.wsb{word-spacing:-14.641200px;}
.ws13{word-spacing:-14.594280px;}
.wsd{word-spacing:-14.582880px;}
.ws15{word-spacing:-14.542560px;}
.wse{word-spacing:-14.537520px;}
.ws3{word-spacing:-14.521680px;}
.ws14{word-spacing:-14.349480px;}
.ws2{word-spacing:-13.528320px;}
.ws6{word-spacing:-12.900960px;}
.ws0{word-spacing:-12.465360px;}
.ws9{word-spacing:-12.399960px;}
.ws1{word-spacing:-12.180960px;}
.ws5{word-spacing:0.000000px;}
._a{margin-left:-3.682080px;}
._9{margin-left:-2.318400px;}
._6{margin-left:-1.059840px;}
._0{width:1.015920px;}
._5{width:2.250480px;}
._8{width:3.337920px;}
._7{width:4.694880px;}
._b{width:6.532560px;}
._1c{width:7.589520px;}
._f{width:8.784720px;}
._14{width:10.756800px;}
._2a{width:11.772720px;}
._16{width:12.788640px;}
._c{width:15.950640px;}
._3{width:17.919360px;}
._4{width:19.105200px;}
._12{width:20.916000px;}
._1b{width:22.350240px;}
._e{width:24.083280px;}
._d{width:25.099200px;}
._1a{width:26.712720px;}
._19{width:28.206720px;}
._23{width:29.760480px;}
._10{width:31.015440px;}
._1f{width:32.783040px;}
._26{width:34.601040px;}
._15{width:36.154800px;}
._31{width:37.170720px;}
._34{width:38.844000px;}
._35{width:39.919680px;}
._24{width:41.353920px;}
._28{width:43.684560px;}
._3f{width:46.612800px;}
._36{width:48.226320px;}
._2c{width:49.680000px;}
._27{width:50.915520px;}
._39{width:53.843760px;}
._3a{width:59.401440px;}
._20{width:61.552800px;}
._11{width:62.688240px;}
._3c{width:66.990960px;}
._1d{width:70.696080px;}
._1e{width:73.138320px;}
._30{width:74.879280px;}
._2e{width:79.779600px;}
._17{width:88.624080px;}
._3b{width:89.879040px;}
._22{width:94.719600px;}
._2b{width:96.990480px;}
._33{width:115.575840px;}
._32{width:116.591760px;}
._3e{width:203.196240px;}
._13{width:213.223680px;}
._3d{width:224.599680px;}
._21{width:239.816880px;}
._2d{width:282.485520px;}
._38{width:317.462400px;}
._1{width:439.162320px;}
._18{width:461.569440px;}
._25{width:463.729440px;}
._29{width:467.329440px;}
._2{width:468.769440px;}
._37{width:470.929440px;}
._2f{width:473.089440px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:77.760000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y77{bottom:4.140000px;}
.yf3{bottom:4.176000px;}
.yd4{bottom:4.320000px;}
.y9{bottom:10.260000px;}
.y81{bottom:13.860000px;}
.y7e{bottom:14.040000px;}
.yf0{bottom:14.076000px;}
.y83{bottom:23.580000px;}
.y7a{bottom:23.760000px;}
.yf1{bottom:23.790000px;}
.yea{bottom:23.805000px;}
.y80{bottom:33.300000px;}
.ydb{bottom:33.330000px;}
.y7d{bottom:33.480000px;}
.yef{bottom:33.510000px;}
.yd9{bottom:33.516000px;}
.yd2{bottom:33.525000px;}
.y82{bottom:43.020000px;}
.ydc{bottom:43.050000px;}
.y79{bottom:43.200000px;}
.yf2{bottom:43.230000px;}
.yda{bottom:43.236000px;}
.yd3{bottom:43.245000px;}
.y7c{bottom:52.920000px;}
.y7b{bottom:62.640000px;}
.yf5{bottom:87.840000px;}
.yf4{bottom:93.240000px;}
.y66{bottom:97.920000px;}
.y32{bottom:101.880000px;}
.yd8{bottom:103.680000px;}
.yac{bottom:107.820000px;}
.y65{bottom:118.800000px;}
.y31{bottom:122.760000px;}
.yab{bottom:127.440000px;}
.yee{bottom:132.840000px;}
.y64{bottom:139.716000px;}
.y30{bottom:143.676000px;}
.y125{bottom:144.756000px;}
.yaa{bottom:146.916000px;}
.y63{bottom:160.410000px;}
.y73{bottom:162.210000px;}
.yd7{bottom:162.930000px;}
.y2f{bottom:164.550000px;}
.y124{bottom:164.730000px;}
.ya9{bottom:166.350000px;}
.y62{bottom:181.290000px;}
.y72{bottom:183.090000px;}
.y123{bottom:184.530000px;}
.y2e{bottom:185.430000px;}
.ya8{bottom:185.790000px;}
.yed{bottom:192.090000px;}
.y61{bottom:202.170000px;}
.y71{bottom:203.970000px;}
.y122{bottom:204.330000px;}
.ya7{bottom:205.230000px;}
.y2d{bottom:206.310000px;}
.yd6{bottom:221.970000px;}
.y60{bottom:223.050000px;}
.y121{bottom:224.310000px;}
.ya6{bottom:224.670000px;}
.y70{bottom:224.850000px;}
.y2c{bottom:227.190000px;}
.y5f{bottom:243.930000px;}
.ya5{bottom:244.110000px;}
.y6f{bottom:245.730000px;}
.y2b{bottom:248.070000px;}
.yec{bottom:251.130000px;}
.ya4{bottom:263.550000px;}
.y120{bottom:264.090000px;}
.y5e{bottom:264.810000px;}
.y6e{bottom:266.610000px;}
.y2a{bottom:268.950000px;}
.ya3{bottom:282.990000px;}
.y11f{bottom:283.890000px;}
.y5d{bottom:285.690000px;}
.y6d{bottom:287.490000px;}
.y29{bottom:289.830000px;}
.yd5{bottom:300.630000px;}
.ya2{bottom:302.610000px;}
.y11e{bottom:303.690000px;}
.y5c{bottom:306.570000px;}
.y6c{bottom:308.370000px;}
.yeb{bottom:310.350000px;}
.y28{bottom:310.710000px;}
.ya1{bottom:322.050000px;}
.y11d{bottom:323.670000px;}
.y5b{bottom:327.450000px;}
.y6b{bottom:328.350000px;}
.y27{bottom:331.590000px;}
.ya0{bottom:341.490000px;}
.y11c{bottom:343.470000px;}
.y5a{bottom:348.330000px;}
.y26{bottom:352.290000px;}
.yd1{bottom:359.670000px;}
.y9f{bottom:360.930000px;}
.y11b{bottom:363.450000px;}
.y6a{bottom:363.810000px;}
.y59{bottom:369.210000px;}
.ye9{bottom:369.390000px;}
.y25{bottom:373.170000px;}
.y9e{bottom:380.370000px;}
.y11a{bottom:383.250000px;}
.y58{bottom:390.135000px;}
.y24{bottom:394.095000px;}
.y9d{bottom:399.855000px;}
.y119{bottom:403.275000px;}
.y57{bottom:411.015000px;}
.y23{bottom:414.975000px;}
.y9c{bottom:419.295000px;}
.yd0{bottom:423.075000px;}
.ye8{bottom:428.655000px;}
.y56{bottom:431.895000px;}
.y22{bottom:435.135000px;}
.y9b{bottom:438.735000px;}
.ycf{bottom:442.515000px;}
.y118{bottom:442.875000px;}
.y55{bottom:452.775000px;}
.y21{bottom:454.935000px;}
.y9a{bottom:458.355000px;}
.yce{bottom:461.955000px;}
.y117{bottom:462.855000px;}
.y54{bottom:473.655000px;}
.y20{bottom:474.915000px;}
.y99{bottom:477.795000px;}
.ycd{bottom:481.395000px;}
.y116{bottom:483.915000px;}
.ye7{bottom:487.695000px;}
.y53{bottom:494.355000px;}
.y1f{bottom:494.715000px;}
.y98{bottom:497.235000px;}
.ycc{bottom:501.015000px;}
.y115{bottom:509.655000px;}
.y1e{bottom:514.515000px;}
.y52{bottom:515.235000px;}
.y97{bottom:516.675000px;}
.ycb{bottom:520.455000px;}
.y1d{bottom:534.495000px;}
.y114{bottom:535.575000px;}
.y51{bottom:536.115000px;}
.yca{bottom:539.895000px;}
.ye6{bottom:546.915000px;}
.y1c{bottom:554.295000px;}
.y96{bottom:555.555000px;}
.y50{bottom:556.995000px;}
.yc9{bottom:559.335000px;}
.y113{bottom:560.595000px;}
.y1b{bottom:574.275000px;}
.y95{bottom:574.995000px;}
.y4f{bottom:577.875000px;}
.yc8{bottom:578.775000px;}
.y112{bottom:582.375000px;}
.y1a{bottom:594.075000px;}
.y94{bottom:594.435000px;}
.yc7{bottom:598.215000px;}
.y4e{bottom:598.755000px;}
.y111{bottom:604.335000px;}
.ye5{bottom:605.955000px;}
.y19{bottom:613.875000px;}
.yc6{bottom:617.655000px;}
.y4d{bottom:619.635000px;}
.y110{bottom:625.755000px;}
.y93{bottom:633.495000px;}
.y18{bottom:633.855000px;}
.yc5{bottom:637.095000px;}
.y4c{bottom:640.545000px;}
.ye4{bottom:645.765000px;}
.y92{bottom:652.965000px;}
.y17{bottom:653.685000px;}
.yc4{bottom:656.565000px;}
.y4b{bottom:661.425000px;}
.y10f{bottom:665.565000px;}
.y91{bottom:672.405000px;}
.y16{bottom:673.665000px;}
.yc3{bottom:676.185000px;}
.y4a{bottom:682.305000px;}
.y10e{bottom:685.545000px;}
.y90{bottom:691.845000px;}
.y15{bottom:693.465000px;}
.yc2{bottom:695.625000px;}
.y49{bottom:703.185000px;}
.ye3{bottom:704.805000px;}
.y10d{bottom:705.345000px;}
.y8f{bottom:711.285000px;}
.y14{bottom:713.445000px;}
.yc1{bottom:715.065000px;}
.y48{bottom:724.065000px;}
.y10c{bottom:725.145000px;}
.y8e{bottom:730.725000px;}
.y13{bottom:733.245000px;}
.yc0{bottom:734.505000px;}
.y69{bottom:735.045000px;}
.y47{bottom:744.945000px;}
.y10b{bottom:745.125000px;}
.y8d{bottom:750.165000px;}
.y12{bottom:753.045000px;}
.ybf{bottom:753.945000px;}
.y68{bottom:754.845000px;}
.ye2{bottom:764.025000px;}
.y10a{bottom:764.925000px;}
.y46{bottom:765.825000px;}
.y8c{bottom:769.605000px;}
.y67{bottom:770.325000px;}
.y11{bottom:773.025000px;}
.ybe{bottom:773.385000px;}
.y109{bottom:784.905000px;}
.y45{bottom:786.705000px;}
.y8b{bottom:789.045000px;}
.ybd{bottom:792.825000px;}
.y10{bottom:794.085000px;}
.y108{bottom:804.705000px;}
.y44{bottom:807.585000px;}
.y8a{bottom:808.665000px;}
.ybc{bottom:812.265000px;}
.yf{bottom:819.825000px;}
.ye1{bottom:823.065000px;}
.y107{bottom:824.505000px;}
.y89{bottom:828.105000px;}
.y43{bottom:828.285000px;}
.ybb{bottom:831.885000px;}
.y106{bottom:844.485000px;}
.ye{bottom:845.745000px;}
.y88{bottom:847.545000px;}
.y42{bottom:849.165000px;}
.yba{bottom:851.325000px;}
.y105{bottom:864.285000px;}
.y87{bottom:866.985000px;}
.y41{bottom:870.045000px;}
.yd{bottom:870.765000px;}
.y104{bottom:884.265000px;}
.y86{bottom:886.425000px;}
.yb9{bottom:890.205000px;}
.y40{bottom:890.925000px;}
.yc{bottom:892.590000px;}
.ye0{bottom:901.770000px;}
.y103{bottom:904.110000px;}
.y85{bottom:905.910000px;}
.yb8{bottom:909.690000px;}
.y3f{bottom:911.850000px;}
.yb{bottom:914.550000px;}
.y84{bottom:921.930000px;}
.y102{bottom:924.090000px;}
.yb7{bottom:929.130000px;}
.y3e{bottom:932.730000px;}
.ya{bottom:935.970000px;}
.y101{bottom:943.890000px;}
.yb6{bottom:948.570000px;}
.y3d{bottom:953.610000px;}
.y8{bottom:955.950000px;}
.ydf{bottom:960.990000px;}
.y100{bottom:963.690000px;}
.yb5{bottom:968.010000px;}
.y3c{bottom:974.490000px;}
.y7f{bottom:981.150000px;}
.yff{bottom:983.670000px;}
.yb4{bottom:987.450000px;}
.y7{bottom:991.950000px;}
.y3b{bottom:995.370000px;}
.yfe{bottom:1003.470000px;}
.yb3{bottom:1007.070000px;}
.y6{bottom:1011.930000px;}
.y3a{bottom:1016.250000px;}
.yde{bottom:1020.030000px;}
.yfd{bottom:1023.450000px;}
.yb2{bottom:1026.510000px;}
.y5{bottom:1027.410000px;}
.y39{bottom:1037.130000px;}
.y78{bottom:1040.190000px;}
.yfc{bottom:1043.250000px;}
.yb1{bottom:1045.950000px;}
.y38{bottom:1058.010000px;}
.yfb{bottom:1063.050000px;}
.yb0{bottom:1065.390000px;}
.y4{bottom:1065.930000px;}
.y37{bottom:1078.890000px;}
.ydd{bottom:1079.250000px;}
.yfa{bottom:1083.030000px;}
.yaf{bottom:1084.830000px;}
.y36{bottom:1099.770000px;}
.yf9{bottom:1102.830000px;}
.yae{bottom:1104.270000px;}
.y3{bottom:1110.930000px;}
.y76{bottom:1118.850000px;}
.y35{bottom:1120.650000px;}
.yf8{bottom:1122.810000px;}
.yad{bottom:1123.710000px;}
.y34{bottom:1141.530000px;}
.yf7{bottom:1142.610000px;}
.y75{bottom:1143.150000px;}
.y2{bottom:1157.760000px;}
.y33{bottom:1162.440000px;}
.yf6{bottom:1162.620000px;}
.y74{bottom:1162.800000px;}
.y1{bottom:1194.120000px;}
.h16{height:15.860400px;}
.hd{height:19.440000px;}
.h7{height:31.680000px;}
.h13{height:38.880000px;}
.h15{height:39.096000px;}
.h5{height:44.939520px;}
.hb{height:49.839840px;}
.h6{height:52.656528px;}
.hc{height:53.517072px;}
.hf{height:58.320000px;}
.h12{height:58.356000px;}
.h8{height:58.366272px;}
.h10{height:58.500000px;}
.h11{height:58.536000px;}
.h9{height:59.320128px;}
.h2{height:59.439023px;}
.h3{height:68.516928px;}
.ha{height:69.636672px;}
.he{height:77.940000px;}
.h14{height:77.976000px;}
.h4{height:100.106719px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:50.400000px;}
.w8{width:115.776000px;}
.wa{width:179.850000px;}
.w4{width:190.290000px;}
.w5{width:200.415000px;}
.wb{width:211.710000px;}
.w9{width:212.070000px;}
.w7{width:222.150000px;}
.w6{width:297.570000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x23{left:10.476000px;}
.x1f{left:11.880000px;}
.x1e{left:13.140000px;}
.x21{left:14.220000px;}
.x3e{left:15.300000px;}
.x34{left:16.380000px;}
.x1d{left:18.180000px;}
.x3a{left:19.260000px;}
.x2a{left:20.700000px;}
.x41{left:21.996000px;}
.x3b{left:23.400000px;}
.x28{left:24.516000px;}
.x32{left:25.956000px;}
.x17{left:27.036000px;}
.x24{left:29.556000px;}
.x44{left:30.780000px;}
.x4c{left:31.896000px;}
.x40{left:33.120000px;}
.x3d{left:34.920000px;}
.x22{left:36.360000px;}
.x48{left:38.340000px;}
.x1c{left:40.716000px;}
.x6{left:42.300000px;}
.x49{left:43.560000px;}
.x37{left:45.000000px;}
.x2f{left:46.296000px;}
.x30{left:48.060000px;}
.x39{left:50.040000px;}
.x36{left:51.870000px;}
.x46{left:53.850000px;}
.x19{left:54.900000px;}
.x1b{left:55.980000px;}
.x42{left:57.060000px;}
.x47{left:59.040000px;}
.x3f{left:60.330000px;}
.x31{left:62.325000px;}
.x38{left:63.585000px;}
.x3c{left:65.340000px;}
.x2e{left:68.625000px;}
.x45{left:70.785000px;}
.x4b{left:72.225000px;}
.x2b{left:74.880000px;}
.x4a{left:81.225000px;}
.x26{left:82.305000px;}
.x1{left:84.959987px;}
.x35{left:86.625000px;}
.x43{left:91.845000px;}
.x33{left:93.285000px;}
.xe{left:106.235987px;}
.x25{left:119.880000px;}
.xc{left:123.875987px;}
.x20{left:128.160000px;}
.x16{left:137.915987px;}
.x14{left:172.469987px;}
.x4f{left:190.469987px;}
.x12{left:193.529987px;}
.x29{left:202.350000px;}
.x27{left:209.729987px;}
.x3{left:213.689987px;}
.xa{left:243.929987px;}
.x4e{left:252.929987px;}
.xd{left:267.869987px;}
.xb{left:277.814987px;}
.x18{left:286.995000px;}
.x5{left:326.235000px;}
.x9{left:344.954987px;}
.x4d{left:351.614987px;}
.x7{left:376.635000px;}
.x2c{left:415.155000px;}
.x2{left:446.474987px;}
.xf{left:473.144987px;}
.x10{left:494.384987px;}
.x1a{left:585.285000px;}
.x2d{left:595.725000px;}
.x15{left:737.249987px;}
.x11{left:755.789987px;}
.x13{left:773.789987px;}
.x4{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls26{letter-spacing:-0.153067pt;}
.ls6{letter-spacing:-0.115200pt;}
.ls4{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.014080pt;}
.ls2f{letter-spacing:0.018560pt;}
.ls23{letter-spacing:0.026880pt;}
.ls21{letter-spacing:0.054400pt;}
.ls25{letter-spacing:0.064533pt;}
.ls1a{letter-spacing:0.079467pt;}
.ls0{letter-spacing:0.102400pt;}
.lsf{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.112533pt;}
.ls11{letter-spacing:0.112640pt;}
.ls28{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.130560pt;}
.ls14{letter-spacing:0.130667pt;}
.ls27{letter-spacing:0.132267pt;}
.ls5{letter-spacing:0.137600pt;}
.ls24{letter-spacing:0.286720pt;}
.ls1{letter-spacing:0.290987pt;}
.ls1c{letter-spacing:0.326933pt;}
.ls2{letter-spacing:0.464000pt;}
.ls22{letter-spacing:0.489067pt;}
.lsb{letter-spacing:0.524800pt;}
.ls7{letter-spacing:0.531840pt;}
.lse{letter-spacing:0.640000pt;}
.ls2b{letter-spacing:0.666880pt;}
.lsc{letter-spacing:0.770560pt;}
.ls1b{letter-spacing:0.816000pt;}
.lsa{letter-spacing:1.171840pt;}
.ls10{letter-spacing:3.091840pt;}
.ls15{letter-spacing:3.251840pt;}
.ls3{letter-spacing:5.651840pt;}
.ls1f{letter-spacing:6.291840pt;}
.ls1d{letter-spacing:9.491840pt;}
.ls12{letter-spacing:10.771840pt;}
.ls1e{letter-spacing:12.051840pt;}
.ls2c{letter-spacing:13.331840pt;}
.ls8{letter-spacing:19.731840pt;}
.ls17{letter-spacing:31.251840pt;}
.ls18{letter-spacing:31.411840pt;}
.ls19{letter-spacing:35.731840pt;}
.ls2e{letter-spacing:41.491840pt;}
.ls29{letter-spacing:54.992640pt;}
.ls16{letter-spacing:83.091840pt;}
.ls2d{letter-spacing:179.731840pt;}
.ls2a{letter-spacing:198.931840pt;}
.lsd{letter-spacing:754.986667pt;}
.wsf{word-spacing:-53.120000pt;}
.ws4{word-spacing:-15.897600pt;}
.ws7{word-spacing:-14.342400pt;}
.wsa{word-spacing:-13.724160pt;}
.ws10{word-spacing:-13.397227pt;}
.ws11{word-spacing:-13.040427pt;}
.wsc{word-spacing:-13.038827pt;}
.ws12{word-spacing:-13.036160pt;}
.ws8{word-spacing:-13.020693pt;}
.wsb{word-spacing:-13.014400pt;}
.ws13{word-spacing:-12.972693pt;}
.wsd{word-spacing:-12.962560pt;}
.ws15{word-spacing:-12.926720pt;}
.wse{word-spacing:-12.922240pt;}
.ws3{word-spacing:-12.908160pt;}
.ws14{word-spacing:-12.755093pt;}
.ws2{word-spacing:-12.025173pt;}
.ws6{word-spacing:-11.467520pt;}
.ws0{word-spacing:-11.080320pt;}
.ws9{word-spacing:-11.022187pt;}
.ws1{word-spacing:-10.827520pt;}
.ws5{word-spacing:0.000000pt;}
._a{margin-left:-3.272960pt;}
._9{margin-left:-2.060800pt;}
._6{margin-left:-0.942080pt;}
._0{width:0.903040pt;}
._5{width:2.000427pt;}
._8{width:2.967040pt;}
._7{width:4.173227pt;}
._b{width:5.806720pt;}
._1c{width:6.746240pt;}
._f{width:7.808640pt;}
._14{width:9.561600pt;}
._2a{width:10.464640pt;}
._16{width:11.367680pt;}
._c{width:14.178347pt;}
._3{width:15.928320pt;}
._4{width:16.982400pt;}
._12{width:18.592000pt;}
._1b{width:19.866880pt;}
._e{width:21.407360pt;}
._d{width:22.310400pt;}
._1a{width:23.744640pt;}
._19{width:25.072640pt;}
._23{width:26.453760pt;}
._10{width:27.569280pt;}
._1f{width:29.140480pt;}
._26{width:30.756480pt;}
._15{width:32.137600pt;}
._31{width:33.040640pt;}
._34{width:34.528000pt;}
._35{width:35.484160pt;}
._24{width:36.759040pt;}
._28{width:38.830720pt;}
._3f{width:41.433600pt;}
._36{width:42.867840pt;}
._2c{width:44.160000pt;}
._27{width:45.258240pt;}
._39{width:47.861120pt;}
._3a{width:52.801280pt;}
._20{width:54.713600pt;}
._11{width:55.722880pt;}
._3c{width:59.547520pt;}
._1d{width:62.840960pt;}
._1e{width:65.011840pt;}
._30{width:66.559360pt;}
._2e{width:70.915200pt;}
._17{width:78.776960pt;}
._3b{width:79.892480pt;}
._22{width:84.195200pt;}
._2b{width:86.213760pt;}
._33{width:102.734080pt;}
._32{width:103.637120pt;}
._3e{width:180.618880pt;}
._13{width:189.532160pt;}
._3d{width:199.644160pt;}
._21{width:213.170560pt;}
._2d{width:251.098240pt;}
._38{width:282.188800pt;}
._1{width:390.366507pt;}
._18{width:410.283947pt;}
._25{width:412.203947pt;}
._29{width:415.403947pt;}
._2{width:416.683947pt;}
._37{width:418.603947pt;}
._2f{width:420.523947pt;}
.fs4{font-size:16.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:69.120000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:3.680000pt;}
.yf3{bottom:3.712000pt;}
.yd4{bottom:3.840000pt;}
.y9{bottom:9.120000pt;}
.y81{bottom:12.320000pt;}
.y7e{bottom:12.480000pt;}
.yf0{bottom:12.512000pt;}
.y83{bottom:20.960000pt;}
.y7a{bottom:21.120000pt;}
.yf1{bottom:21.146667pt;}
.yea{bottom:21.160000pt;}
.y80{bottom:29.600000pt;}
.ydb{bottom:29.626667pt;}
.y7d{bottom:29.760000pt;}
.yef{bottom:29.786667pt;}
.yd9{bottom:29.792000pt;}
.yd2{bottom:29.800000pt;}
.y82{bottom:38.240000pt;}
.ydc{bottom:38.266667pt;}
.y79{bottom:38.400000pt;}
.yf2{bottom:38.426667pt;}
.yda{bottom:38.432000pt;}
.yd3{bottom:38.440000pt;}
.y7c{bottom:47.040000pt;}
.y7b{bottom:55.680000pt;}
.yf5{bottom:78.080000pt;}
.yf4{bottom:82.880000pt;}
.y66{bottom:87.040000pt;}
.y32{bottom:90.560000pt;}
.yd8{bottom:92.160000pt;}
.yac{bottom:95.840000pt;}
.y65{bottom:105.600000pt;}
.y31{bottom:109.120000pt;}
.yab{bottom:113.280000pt;}
.yee{bottom:118.080000pt;}
.y64{bottom:124.192000pt;}
.y30{bottom:127.712000pt;}
.y125{bottom:128.672000pt;}
.yaa{bottom:130.592000pt;}
.y63{bottom:142.586667pt;}
.y73{bottom:144.186667pt;}
.yd7{bottom:144.826667pt;}
.y2f{bottom:146.266667pt;}
.y124{bottom:146.426667pt;}
.ya9{bottom:147.866667pt;}
.y62{bottom:161.146667pt;}
.y72{bottom:162.746667pt;}
.y123{bottom:164.026667pt;}
.y2e{bottom:164.826667pt;}
.ya8{bottom:165.146667pt;}
.yed{bottom:170.746667pt;}
.y61{bottom:179.706667pt;}
.y71{bottom:181.306667pt;}
.y122{bottom:181.626667pt;}
.ya7{bottom:182.426667pt;}
.y2d{bottom:183.386667pt;}
.yd6{bottom:197.306667pt;}
.y60{bottom:198.266667pt;}
.y121{bottom:199.386667pt;}
.ya6{bottom:199.706667pt;}
.y70{bottom:199.866667pt;}
.y2c{bottom:201.946667pt;}
.y5f{bottom:216.826667pt;}
.ya5{bottom:216.986667pt;}
.y6f{bottom:218.426667pt;}
.y2b{bottom:220.506667pt;}
.yec{bottom:223.226667pt;}
.ya4{bottom:234.266667pt;}
.y120{bottom:234.746667pt;}
.y5e{bottom:235.386667pt;}
.y6e{bottom:236.986667pt;}
.y2a{bottom:239.066667pt;}
.ya3{bottom:251.546667pt;}
.y11f{bottom:252.346667pt;}
.y5d{bottom:253.946667pt;}
.y6d{bottom:255.546667pt;}
.y29{bottom:257.626667pt;}
.yd5{bottom:267.226667pt;}
.ya2{bottom:268.986667pt;}
.y11e{bottom:269.946667pt;}
.y5c{bottom:272.506667pt;}
.y6c{bottom:274.106667pt;}
.yeb{bottom:275.866667pt;}
.y28{bottom:276.186667pt;}
.ya1{bottom:286.266667pt;}
.y11d{bottom:287.706667pt;}
.y5b{bottom:291.066667pt;}
.y6b{bottom:291.866667pt;}
.y27{bottom:294.746667pt;}
.ya0{bottom:303.546667pt;}
.y11c{bottom:305.306667pt;}
.y5a{bottom:309.626667pt;}
.y26{bottom:313.146667pt;}
.yd1{bottom:319.706667pt;}
.y9f{bottom:320.826667pt;}
.y11b{bottom:323.066667pt;}
.y6a{bottom:323.386667pt;}
.y59{bottom:328.186667pt;}
.ye9{bottom:328.346667pt;}
.y25{bottom:331.706667pt;}
.y9e{bottom:338.106667pt;}
.y11a{bottom:340.666667pt;}
.y58{bottom:346.786667pt;}
.y24{bottom:350.306667pt;}
.y9d{bottom:355.426667pt;}
.y119{bottom:358.466667pt;}
.y57{bottom:365.346667pt;}
.y23{bottom:368.866667pt;}
.y9c{bottom:372.706667pt;}
.yd0{bottom:376.066667pt;}
.ye8{bottom:381.026667pt;}
.y56{bottom:383.906667pt;}
.y22{bottom:386.786667pt;}
.y9b{bottom:389.986667pt;}
.ycf{bottom:393.346667pt;}
.y118{bottom:393.666667pt;}
.y55{bottom:402.466667pt;}
.y21{bottom:404.386667pt;}
.y9a{bottom:407.426667pt;}
.yce{bottom:410.626667pt;}
.y117{bottom:411.426667pt;}
.y54{bottom:421.026667pt;}
.y20{bottom:422.146667pt;}
.y99{bottom:424.706667pt;}
.ycd{bottom:427.906667pt;}
.y116{bottom:430.146667pt;}
.ye7{bottom:433.506667pt;}
.y53{bottom:439.426667pt;}
.y1f{bottom:439.746667pt;}
.y98{bottom:441.986667pt;}
.ycc{bottom:445.346667pt;}
.y115{bottom:453.026667pt;}
.y1e{bottom:457.346667pt;}
.y52{bottom:457.986667pt;}
.y97{bottom:459.266667pt;}
.ycb{bottom:462.626667pt;}
.y1d{bottom:475.106667pt;}
.y114{bottom:476.066667pt;}
.y51{bottom:476.546667pt;}
.yca{bottom:479.906667pt;}
.ye6{bottom:486.146667pt;}
.y1c{bottom:492.706667pt;}
.y96{bottom:493.826667pt;}
.y50{bottom:495.106667pt;}
.yc9{bottom:497.186667pt;}
.y113{bottom:498.306667pt;}
.y1b{bottom:510.466667pt;}
.y95{bottom:511.106667pt;}
.y4f{bottom:513.666667pt;}
.yc8{bottom:514.466667pt;}
.y112{bottom:517.666667pt;}
.y1a{bottom:528.066667pt;}
.y94{bottom:528.386667pt;}
.yc7{bottom:531.746667pt;}
.y4e{bottom:532.226667pt;}
.y111{bottom:537.186667pt;}
.ye5{bottom:538.626667pt;}
.y19{bottom:545.666667pt;}
.yc6{bottom:549.026667pt;}
.y4d{bottom:550.786667pt;}
.y110{bottom:556.226667pt;}
.y93{bottom:563.106667pt;}
.y18{bottom:563.426667pt;}
.yc5{bottom:566.306667pt;}
.y4c{bottom:569.373333pt;}
.ye4{bottom:574.013333pt;}
.y92{bottom:580.413333pt;}
.y17{bottom:581.053333pt;}
.yc4{bottom:583.613333pt;}
.y4b{bottom:587.933333pt;}
.y10f{bottom:591.613333pt;}
.y91{bottom:597.693333pt;}
.y16{bottom:598.813333pt;}
.yc3{bottom:601.053333pt;}
.y4a{bottom:606.493333pt;}
.y10e{bottom:609.373333pt;}
.y90{bottom:614.973333pt;}
.y15{bottom:616.413333pt;}
.yc2{bottom:618.333333pt;}
.y49{bottom:625.053333pt;}
.ye3{bottom:626.493333pt;}
.y10d{bottom:626.973333pt;}
.y8f{bottom:632.253333pt;}
.y14{bottom:634.173333pt;}
.yc1{bottom:635.613333pt;}
.y48{bottom:643.613333pt;}
.y10c{bottom:644.573333pt;}
.y8e{bottom:649.533333pt;}
.y13{bottom:651.773333pt;}
.yc0{bottom:652.893333pt;}
.y69{bottom:653.373333pt;}
.y47{bottom:662.173333pt;}
.y10b{bottom:662.333333pt;}
.y8d{bottom:666.813333pt;}
.y12{bottom:669.373333pt;}
.ybf{bottom:670.173333pt;}
.y68{bottom:670.973333pt;}
.ye2{bottom:679.133333pt;}
.y10a{bottom:679.933333pt;}
.y46{bottom:680.733333pt;}
.y8c{bottom:684.093333pt;}
.y67{bottom:684.733333pt;}
.y11{bottom:687.133333pt;}
.ybe{bottom:687.453333pt;}
.y109{bottom:697.693333pt;}
.y45{bottom:699.293333pt;}
.y8b{bottom:701.373333pt;}
.ybd{bottom:704.733333pt;}
.y10{bottom:705.853333pt;}
.y108{bottom:715.293333pt;}
.y44{bottom:717.853333pt;}
.y8a{bottom:718.813333pt;}
.ybc{bottom:722.013333pt;}
.yf{bottom:728.733333pt;}
.ye1{bottom:731.613333pt;}
.y107{bottom:732.893333pt;}
.y89{bottom:736.093333pt;}
.y43{bottom:736.253333pt;}
.ybb{bottom:739.453333pt;}
.y106{bottom:750.653333pt;}
.ye{bottom:751.773333pt;}
.y88{bottom:753.373333pt;}
.y42{bottom:754.813333pt;}
.yba{bottom:756.733333pt;}
.y105{bottom:768.253333pt;}
.y87{bottom:770.653333pt;}
.y41{bottom:773.373333pt;}
.yd{bottom:774.013333pt;}
.y104{bottom:786.013333pt;}
.y86{bottom:787.933333pt;}
.yb9{bottom:791.293333pt;}
.y40{bottom:791.933333pt;}
.yc{bottom:793.413333pt;}
.ye0{bottom:801.573333pt;}
.y103{bottom:803.653333pt;}
.y85{bottom:805.253333pt;}
.yb8{bottom:808.613333pt;}
.y3f{bottom:810.533333pt;}
.yb{bottom:812.933333pt;}
.y84{bottom:819.493333pt;}
.y102{bottom:821.413333pt;}
.yb7{bottom:825.893333pt;}
.y3e{bottom:829.093333pt;}
.ya{bottom:831.973333pt;}
.y101{bottom:839.013333pt;}
.yb6{bottom:843.173333pt;}
.y3d{bottom:847.653333pt;}
.y8{bottom:849.733333pt;}
.ydf{bottom:854.213333pt;}
.y100{bottom:856.613333pt;}
.yb5{bottom:860.453333pt;}
.y3c{bottom:866.213333pt;}
.y7f{bottom:872.133333pt;}
.yff{bottom:874.373333pt;}
.yb4{bottom:877.733333pt;}
.y7{bottom:881.733333pt;}
.y3b{bottom:884.773333pt;}
.yfe{bottom:891.973333pt;}
.yb3{bottom:895.173333pt;}
.y6{bottom:899.493333pt;}
.y3a{bottom:903.333333pt;}
.yde{bottom:906.693333pt;}
.yfd{bottom:909.733333pt;}
.yb2{bottom:912.453333pt;}
.y5{bottom:913.253333pt;}
.y39{bottom:921.893333pt;}
.y78{bottom:924.613333pt;}
.yfc{bottom:927.333333pt;}
.yb1{bottom:929.733333pt;}
.y38{bottom:940.453333pt;}
.yfb{bottom:944.933333pt;}
.yb0{bottom:947.013333pt;}
.y4{bottom:947.493333pt;}
.y37{bottom:959.013333pt;}
.ydd{bottom:959.333333pt;}
.yfa{bottom:962.693333pt;}
.yaf{bottom:964.293333pt;}
.y36{bottom:977.573333pt;}
.yf9{bottom:980.293333pt;}
.yae{bottom:981.573333pt;}
.y3{bottom:987.493333pt;}
.y76{bottom:994.533333pt;}
.y35{bottom:996.133333pt;}
.yf8{bottom:998.053333pt;}
.yad{bottom:998.853333pt;}
.y34{bottom:1014.693333pt;}
.yf7{bottom:1015.653333pt;}
.y75{bottom:1016.133333pt;}
.y2{bottom:1029.120000pt;}
.y33{bottom:1033.280000pt;}
.yf6{bottom:1033.440000pt;}
.y74{bottom:1033.600000pt;}
.y1{bottom:1061.440000pt;}
.h16{height:14.098133pt;}
.hd{height:17.280000pt;}
.h7{height:28.160000pt;}
.h13{height:34.560000pt;}
.h15{height:34.752000pt;}
.h5{height:39.946240pt;}
.hb{height:44.302080pt;}
.h6{height:46.805803pt;}
.hc{height:47.570731pt;}
.hf{height:51.840000pt;}
.h12{height:51.872000pt;}
.h8{height:51.881131pt;}
.h10{height:52.000000pt;}
.h11{height:52.032000pt;}
.h9{height:52.729003pt;}
.h2{height:52.834688pt;}
.h3{height:60.903936pt;}
.ha{height:61.899264pt;}
.he{height:69.280000pt;}
.h14{height:69.312000pt;}
.h4{height:88.983750pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:44.800000pt;}
.w8{width:102.912000pt;}
.wa{width:159.866667pt;}
.w4{width:169.146667pt;}
.w5{width:178.146667pt;}
.wb{width:188.186667pt;}
.w9{width:188.506667pt;}
.w7{width:197.466667pt;}
.w6{width:264.506667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x23{left:9.312000pt;}
.x1f{left:10.560000pt;}
.x1e{left:11.680000pt;}
.x21{left:12.640000pt;}
.x3e{left:13.600000pt;}
.x34{left:14.560000pt;}
.x1d{left:16.160000pt;}
.x3a{left:17.120000pt;}
.x2a{left:18.400000pt;}
.x41{left:19.552000pt;}
.x3b{left:20.800000pt;}
.x28{left:21.792000pt;}
.x32{left:23.072000pt;}
.x17{left:24.032000pt;}
.x24{left:26.272000pt;}
.x44{left:27.360000pt;}
.x4c{left:28.352000pt;}
.x40{left:29.440000pt;}
.x3d{left:31.040000pt;}
.x22{left:32.320000pt;}
.x48{left:34.080000pt;}
.x1c{left:36.192000pt;}
.x6{left:37.600000pt;}
.x49{left:38.720000pt;}
.x37{left:40.000000pt;}
.x2f{left:41.152000pt;}
.x30{left:42.720000pt;}
.x39{left:44.480000pt;}
.x36{left:46.106667pt;}
.x46{left:47.866667pt;}
.x19{left:48.800000pt;}
.x1b{left:49.760000pt;}
.x42{left:50.720000pt;}
.x47{left:52.480000pt;}
.x3f{left:53.626667pt;}
.x31{left:55.400000pt;}
.x38{left:56.520000pt;}
.x3c{left:58.080000pt;}
.x2e{left:61.000000pt;}
.x45{left:62.920000pt;}
.x4b{left:64.200000pt;}
.x2b{left:66.560000pt;}
.x4a{left:72.200000pt;}
.x26{left:73.160000pt;}
.x1{left:75.519988pt;}
.x35{left:77.000000pt;}
.x43{left:81.640000pt;}
.x33{left:82.920000pt;}
.xe{left:94.431988pt;}
.x25{left:106.560000pt;}
.xc{left:110.111988pt;}
.x20{left:113.920000pt;}
.x16{left:122.591988pt;}
.x14{left:153.306655pt;}
.x4f{left:169.306655pt;}
.x12{left:172.026655pt;}
.x29{left:179.866667pt;}
.x27{left:186.426655pt;}
.x3{left:189.946655pt;}
.xa{left:216.826655pt;}
.x4e{left:224.826655pt;}
.xd{left:238.106655pt;}
.xb{left:246.946655pt;}
.x18{left:255.106667pt;}
.x5{left:289.986667pt;}
.x9{left:306.626655pt;}
.x4d{left:312.546655pt;}
.x7{left:334.786667pt;}
.x2c{left:369.026667pt;}
.x2{left:396.866655pt;}
.xf{left:420.573322pt;}
.x10{left:439.453322pt;}
.x1a{left:520.253333pt;}
.x2d{left:529.533333pt;}
.x15{left:655.333322pt;}
.x11{left:671.813322pt;}
.x13{left:687.813322pt;}
.x4{left:718.213322pt;}
}




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