
    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_9d076af4bea80b6920b279a1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_b5e16ed1eda7b3542385f263.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_c148f1c7d1f3f13fe5cc0f21.woff')format("woff");}.ff3{font-family:ff3;line-height:1.105957;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_6f57d88b0c3f291c82e21abf.woff')format("woff");}.ff4{font-family:ff4;line-height:1.193848;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_b53f0b5055bd766e7ad6bf40.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_f025bd886c6aafceaa044f27.woff')format("woff");}.ff6{font-family:ff6;line-height:1.016113;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;}
.ls1b{letter-spacing:-3.243000px;}
.ls20{letter-spacing:-3.240000px;}
.ls19{letter-spacing:-2.484000px;}
.ls1c{letter-spacing:-2.139000px;}
.ls26{letter-spacing:-1.764000px;}
.ls9{letter-spacing:-1.728000px;}
.lsc{letter-spacing:-1.596000px;}
.lsb{letter-spacing:-1.344000px;}
.ls12{letter-spacing:-1.134000px;}
.ls1a{letter-spacing:-1.104000px;}
.lsa{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.600000px;}
.ls18{letter-spacing:-0.345000px;}
.ls11{letter-spacing:-0.180000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:1.176000px;}
.ls8{letter-spacing:1.260000px;}
.ls13{letter-spacing:2.070000px;}
.ls17{letter-spacing:2.277000px;}
.ls14{letter-spacing:2.400000px;}
.ls24{letter-spacing:3.036600px;}
.ls1f{letter-spacing:3.084300px;}
.ls1e{letter-spacing:3.670800px;}
.ls1d{letter-spacing:3.726000px;}
.lsf{letter-spacing:4.200000px;}
.ls23{letter-spacing:4.347000px;}
.ls15{letter-spacing:5.175000px;}
.ls25{letter-spacing:5.475000px;}
.ls7{letter-spacing:5.820000px;}
.ls1{letter-spacing:5.850000px;}
.lse{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls5{letter-spacing:6.060000px;}
.ls0{letter-spacing:6.090000px;}
.ls3{letter-spacing:6.300000px;}
.ls21{letter-spacing:7.188300px;}
.ls22{letter-spacing:8.234100px;}
.ls6{letter-spacing:8.400000px;}
.ls16{letter-spacing:13.572300px;}
.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;}
}
.ws2{word-spacing:-29.700000px;}
.ws22{word-spacing:-29.475000px;}
.ws0{word-spacing:-26.925000px;}
.ws28{word-spacing:-26.550000px;}
.ws17{word-spacing:-26.250000px;}
.ws2a{word-spacing:-22.860000px;}
.ws3{word-spacing:-22.740000px;}
.ws23{word-spacing:-22.050000px;}
.ws10{word-spacing:-21.627000px;}
.ws14{word-spacing:-21.459000px;}
.ws21{word-spacing:-19.521000px;}
.ws16{word-spacing:-19.389000px;}
.ws1{word-spacing:-18.102000px;}
.ws24{word-spacing:-17.703000px;}
.ws13{word-spacing:-17.043000px;}
.ws18{word-spacing:-16.698000px;}
.ws1b{word-spacing:-15.939000px;}
.ws25{word-spacing:-15.561000px;}
.ws20{word-spacing:-14.904000px;}
.ws4{word-spacing:-14.820000px;}
.ws19{word-spacing:-14.559000px;}
.ws1a{word-spacing:-13.800000px;}
.ws8{word-spacing:-8.400000px;}
.ws26{word-spacing:-6.300000px;}
.ws7{word-spacing:-6.060000px;}
.ws5{word-spacing:-6.000000px;}
.ws9{word-spacing:-5.820000px;}
.wsf{word-spacing:-4.200000px;}
.ws15{word-spacing:-2.400000px;}
.wsa{word-spacing:-1.260000px;}
.wse{word-spacing:-1.176000px;}
.ws6{word-spacing:0.000000px;}
.ws12{word-spacing:0.180000px;}
.ws1c{word-spacing:0.345000px;}
.ws11{word-spacing:0.600000px;}
.ws1d{word-spacing:1.104000px;}
.wsc{word-spacing:1.344000px;}
.wsd{word-spacing:1.596000px;}
.wsb{word-spacing:1.728000px;}
.ws29{word-spacing:1.764000px;}
.ws1e{word-spacing:2.829000px;}
.ws27{word-spacing:4.473000px;}
.ws1f{word-spacing:23.115000px;}
._21{margin-left:-19.527000px;}
._13{margin-left:-10.460400px;}
._28{margin-left:-8.568300px;}
._1b{margin-left:-7.129800px;}
._8{margin-left:-6.125400px;}
._7{margin-left:-4.182000px;}
._6{margin-left:-2.496000px;}
._4{margin-left:-1.278600px;}
._0{width:1.650000px;}
._5{width:3.054000px;}
._9{width:4.455000px;}
._3{width:5.748000px;}
._2{width:6.780000px;}
._17{width:7.810800px;}
._18{width:9.120600px;}
._a{width:10.200000px;}
._14{width:11.353200px;}
._d{width:12.974400px;}
._c{width:14.070000px;}
._16{width:15.317100px;}
._1f{width:16.719600px;}
._b{width:18.246000px;}
._35{width:19.437300px;}
._15{width:21.224400px;}
._20{width:23.039700px;}
._1d{width:24.046500px;}
._1a{width:25.392000px;}
._26{width:26.622300px;}
._2d{width:27.694500px;}
._f{width:28.768200px;}
._10{width:29.923800px;}
._19{width:31.349700px;}
._2e{width:32.989500px;}
._2a{width:34.375800px;}
._22{width:35.438400px;}
._33{width:36.797700px;}
._1e{width:37.874100px;}
._31{width:39.309300px;}
._32{width:40.757100px;}
._36{width:43.686000px;}
._2f{width:45.885000px;}
._30{width:46.978500px;}
._1c{width:48.111000px;}
._27{width:49.404300px;}
._2c{width:58.098000px;}
._24{width:60.375000px;}
._e{width:260.610000px;}
._34{width:446.182200px;}
._1{width:450.510000px;}
._29{width:452.803200px;}
._11{width:578.400000px;}
._23{width:1015.753200px;}
._2b{width:1018.873200px;}
._12{width:1022.923200px;}
._25{width:1024.903200px;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs6{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.ye7{bottom:102.671100px;}
.yd0{bottom:106.165350px;}
.y164{bottom:106.181850px;}
.y6d{bottom:106.191750px;}
.y144{bottom:106.307850px;}
.y10b{bottom:106.332300px;}
.y48{bottom:106.603650px;}
.y88{bottom:112.930350px;}
.yef{bottom:112.945350px;}
.ye6{bottom:122.922600px;}
.y6c{bottom:126.564000px;}
.ycf{bottom:126.589350px;}
.y47{bottom:126.941400px;}
.ya9{bottom:127.167900px;}
.y10a{bottom:127.170300px;}
.y143{bottom:127.239600px;}
.y163{bottom:127.649100px;}
.y1e{bottom:132.143850px;}
.y87{bottom:133.181850px;}
.yee{bottom:133.196850px;}
.y78{bottom:133.201350px;}
.ye5{bottom:143.174100px;}
.y6b{bottom:146.936250px;}
.yce{bottom:147.013350px;}
.y46{bottom:147.279150px;}
.ya8{bottom:148.005900px;}
.y109{bottom:148.008300px;}
.y1d{bottom:153.143850px;}
.y124{bottom:153.395850px;}
.y86{bottom:153.433350px;}
.yed{bottom:153.448350px;}
.y142{bottom:156.676350px;}
.y162{bottom:157.621350px;}
.ye4{bottom:163.425600px;}
.y6a{bottom:167.308500px;}
.ycd{bottom:167.437350px;}
.y45{bottom:167.616900px;}
.ya7{bottom:168.843900px;}
.y108{bottom:168.846300px;}
.y180{bottom:171.904500px;}
.y123{bottom:173.647350px;}
.y85{bottom:173.684850px;}
.yec{bottom:173.699850px;}
.y1c{bottom:174.149700px;}
.y141{bottom:177.608100px;}
.y161{bottom:179.088600px;}
.ye3{bottom:183.677100px;}
.y69{bottom:187.680750px;}
.ycc{bottom:187.861350px;}
.y44{bottom:187.954650px;}
.ya6{bottom:189.681900px;}
.y107{bottom:189.684300px;}
.y17f{bottom:192.154500px;}
.y1b{bottom:193.649700px;}
.y122{bottom:193.898850px;}
.y84{bottom:193.936350px;}
.yeb{bottom:193.951350px;}
.y160{bottom:200.555850px;}
.ye2{bottom:203.928600px;}
.y140{bottom:207.044850px;}
.y68{bottom:208.053000px;}
.ycb{bottom:208.285350px;}
.y43{bottom:208.292400px;}
.ya5{bottom:210.519900px;}
.y106{bottom:210.522300px;}
.y17e{bottom:212.404500px;}
.y1a{bottom:213.149700px;}
.y121{bottom:214.150350px;}
.y83{bottom:214.187850px;}
.ye1{bottom:224.180100px;}
.y13f{bottom:227.976600px;}
.y67{bottom:228.425250px;}
.y42{bottom:228.630150px;}
.yca{bottom:228.709350px;}
.y15f{bottom:230.528100px;}
.ya4{bottom:231.357900px;}
.y105{bottom:231.360300px;}
.y19{bottom:232.649700px;}
.y17d{bottom:232.654500px;}
.y120{bottom:234.401850px;}
.y82{bottom:234.439350px;}
.yea{bottom:234.451350px;}
.ye0{bottom:244.431600px;}
.y66{bottom:248.797500px;}
.y41{bottom:248.967900px;}
.yc9{bottom:249.133350px;}
.y15e{bottom:251.995350px;}
.y18{bottom:252.149700px;}
.ya3{bottom:252.195900px;}
.y104{bottom:252.198300px;}
.y17c{bottom:252.904500px;}
.y11f{bottom:254.653350px;}
.y81{bottom:254.690850px;}
.y13e{bottom:257.413350px;}
.ydf{bottom:264.683100px;}
.y65{bottom:269.169750px;}
.y40{bottom:269.305650px;}
.yc8{bottom:269.557350px;}
.y17{bottom:271.649700px;}
.ya2{bottom:273.033900px;}
.y17b{bottom:273.154500px;}
.y15d{bottom:273.462600px;}
.y11e{bottom:274.904850px;}
.y80{bottom:274.942350px;}
.y13d{bottom:278.345100px;}
.yde{bottom:284.934600px;}
.y64{bottom:289.542000px;}
.y3f{bottom:289.643400px;}
.yc7{bottom:289.981350px;}
.y16{bottom:291.149700px;}
.y17a{bottom:293.404500px;}
.ya1{bottom:293.871900px;}
.y103{bottom:293.874300px;}
.y15c{bottom:294.929850px;}
.y11d{bottom:295.156350px;}
.y7f{bottom:295.193850px;}
.ydd{bottom:305.186100px;}
.y13c{bottom:307.781850px;}
.y63{bottom:309.914250px;}
.y3e{bottom:309.981150px;}
.yc6{bottom:310.405350px;}
.y15{bottom:310.649700px;}
.y179{bottom:313.654500px;}
.ya0{bottom:314.709900px;}
.y102{bottom:314.712300px;}
.y11c{bottom:315.407850px;}
.y7e{bottom:315.445350px;}
.y15b{bottom:324.902100px;}
.ydc{bottom:325.437600px;}
.y14{bottom:330.149700px;}
.y62{bottom:330.286500px;}
.y3d{bottom:330.318900px;}
.yc5{bottom:330.829350px;}
.y9f{bottom:335.547900px;}
.y101{bottom:335.550300px;}
.y11b{bottom:335.659350px;}
.y7d{bottom:335.696850px;}
.y13b{bottom:337.218600px;}
.ydb{bottom:345.689100px;}
.y15a{bottom:346.369350px;}
.y178{bottom:346.654500px;}
.y13{bottom:349.649700px;}
.y3c{bottom:350.656650px;}
.y61{bottom:350.658750px;}
.yc4{bottom:351.253350px;}
.y11a{bottom:355.910850px;}
.y7c{bottom:355.948350px;}
.y100{bottom:356.388300px;}
.y13a{bottom:358.150350px;}
.yda{bottom:365.940600px;}
.y159{bottom:367.836600px;}
.y3b{bottom:370.994400px;}
.y60{bottom:371.031000px;}
.yc3{bottom:371.677350px;}
.y119{bottom:376.162350px;}
.y7b{bottom:376.199850px;}
.y9e{bottom:377.223900px;}
.yff{bottom:377.226300px;}
.y12{bottom:381.899700px;}
.yd9{bottom:386.192100px;}
.y139{bottom:387.587100px;}
.y177{bottom:388.159500px;}
.y3a{bottom:391.332150px;}
.y5f{bottom:391.403250px;}
.yc2{bottom:392.101350px;}
.y118{bottom:396.413850px;}
.y7a{bottom:396.451350px;}
.y158{bottom:397.808850px;}
.y9d{bottom:398.061900px;}
.yfe{bottom:398.064300px;}
.yd8{bottom:406.443600px;}
.y176{bottom:407.659500px;}
.y138{bottom:408.518850px;}
.y39{bottom:411.669900px;}
.yc1{bottom:412.525350px;}
.y117{bottom:416.665350px;}
.y9c{bottom:418.899900px;}
.yfd{bottom:418.902300px;}
.y157{bottom:419.276100px;}
.yd7{bottom:426.695100px;}
.y175{bottom:427.159500px;}
.y38{bottom:432.007650px;}
.yc0{bottom:432.949350px;}
.y5e{bottom:433.027650px;}
.y116{bottom:436.916850px;}
.y79{bottom:436.951350px;}
.y137{bottom:437.955600px;}
.y11{bottom:439.655400px;}
.y9b{bottom:439.737900px;}
.yfc{bottom:439.740300px;}
.y156{bottom:440.743350px;}
.y174{bottom:446.659500px;}
.yd6{bottom:446.946600px;}
.y37{bottom:452.345400px;}
.ybf{bottom:453.373350px;}
.y115{bottom:457.168350px;}
.y136{bottom:458.887350px;}
.y9a{bottom:460.575900px;}
.yfb{bottom:460.578300px;}
.y173{bottom:466.159500px;}
.y10{bottom:466.661400px;}
.yd5{bottom:467.198100px;}
.y155{bottom:470.715600px;}
.y36{bottom:472.683150px;}
.ybe{bottom:473.797350px;}
.y114{bottom:477.419850px;}
.y135{bottom:479.819100px;}
.y99{bottom:481.413900px;}
.yfa{bottom:481.416300px;}
.y172{bottom:485.659500px;}
.yd4{bottom:487.449600px;}
.y154{bottom:492.182850px;}
.y35{bottom:493.020900px;}
.yf{bottom:493.667400px;}
.ybd{bottom:494.221350px;}
.y5d{bottom:495.256350px;}
.y113{bottom:497.671350px;}
.y98{bottom:502.251900px;}
.yf9{bottom:502.254300px;}
.y171{bottom:505.159500px;}
.yd3{bottom:507.701100px;}
.y134{bottom:509.255850px;}
.y34{bottom:513.358650px;}
.ybc{bottom:514.645350px;}
.y5c{bottom:515.628600px;}
.y112{bottom:517.922850px;}
.y153{bottom:522.155100px;}
.y97{bottom:523.089900px;}
.yf8{bottom:523.092300px;}
.y170{bottom:524.659500px;}
.yd2{bottom:527.952600px;}
.y33{bottom:533.696400px;}
.ybb{bottom:535.069350px;}
.y5b{bottom:536.000850px;}
.y111{bottom:538.174350px;}
.y133{bottom:538.692600px;}
.ye{bottom:541.882350px;}
.y96{bottom:543.927900px;}
.yf7{bottom:543.930300px;}
.y16f{bottom:544.159500px;}
.y152{bottom:552.127350px;}
.y32{bottom:554.034150px;}
.yba{bottom:555.493350px;}
.y5a{bottom:556.373100px;}
.y110{bottom:558.425850px;}
.y95{bottom:564.765900px;}
.yf6{bottom:564.768300px;}
.y132{bottom:568.129350px;}
.yd1{bottom:568.452600px;}
.yd{bottom:573.391350px;}
.y151{bottom:573.594600px;}
.y31{bottom:574.371900px;}
.yb9{bottom:575.917350px;}
.y16e{bottom:576.409500px;}
.y59{bottom:576.745350px;}
.y10f{bottom:578.677350px;}
.y94{bottom:585.603900px;}
.yf5{bottom:585.606300px;}
.y131{bottom:589.061100px;}
.y30{bottom:594.709650px;}
.yb8{bottom:596.341350px;}
.y58{bottom:597.117600px;}
.y10e{bottom:598.928850px;}
.y150{bottom:603.566850px;}
.yc{bottom:604.900350px;}
.y93{bottom:606.441900px;}
.yf4{bottom:606.444300px;}
.y2f{bottom:615.047400px;}
.yb7{bottom:616.765350px;}
.y57{bottom:617.489850px;}
.y130{bottom:618.497850px;}
.y10d{bottom:619.180350px;}
.y14f{bottom:625.034100px;}
.yf3{bottom:627.282300px;}
.y16d{bottom:634.165350px;}
.y2e{bottom:635.385150px;}
.yb{bottom:636.409350px;}
.yb6{bottom:637.189350px;}
.y56{bottom:637.862100px;}
.y12f{bottom:639.429600px;}
.y10c{bottom:639.431850px;}
.y14e{bottom:646.501350px;}
.yf2{bottom:648.120300px;}
.y92{bottom:648.546750px;}
.y2d{bottom:655.722900px;}
.yb5{bottom:657.613350px;}
.y55{bottom:658.234350px;}
.ye9{bottom:659.683350px;}
.y12e{bottom:660.361350px;}
.y16c{bottom:661.171350px;}
.ya{bottom:667.918350px;}
.y91{bottom:673.130250px;}
.y2c{bottom:676.060650px;}
.y14d{bottom:676.473600px;}
.yb4{bottom:678.037350px;}
.y54{bottom:678.606600px;}
.y77{bottom:679.934850px;}
.y12d{bottom:681.293100px;}
.y16b{bottom:688.177350px;}
.yf1{bottom:690.225300px;}
.y2b{bottom:696.398400px;}
.y14c{bottom:697.940850px;}
.yb3{bottom:698.461350px;}
.y53{bottom:698.978850px;}
.y9{bottom:699.427350px;}
.y76{bottom:700.186350px;}
.y12c{bottom:710.729850px;}
.yf0{bottom:714.808800px;}
.y2a{bottom:716.736150px;}
.yb2{bottom:718.885350px;}
.y52{bottom:719.351100px;}
.ye8{bottom:720.437850px;}
.y14b{bottom:727.913100px;}
.y12b{bottom:731.661600px;}
.y90{bottom:735.997350px;}
.y29{bottom:737.073900px;}
.yb1{bottom:739.309350px;}
.y51{bottom:739.723350px;}
.y75{bottom:740.689350px;}
.y14a{bottom:749.380350px;}
.y8f{bottom:756.835350px;}
.y28{bottom:757.411650px;}
.yb0{bottom:759.733350px;}
.y50{bottom:760.095600px;}
.y8{bottom:760.688850px;}
.y74{bottom:760.940850px;}
.y12a{bottom:761.098350px;}
.y16a{bottom:765.161850px;}
.y8e{bottom:777.673350px;}
.y27{bottom:777.749400px;}
.y149{bottom:779.352600px;}
.yaf{bottom:780.157350px;}
.y4f{bottom:780.467850px;}
.y73{bottom:781.192350px;}
.y129{bottom:782.030100px;}
.y169{bottom:785.416350px;}
.y7{bottom:790.193850px;}
.y26{bottom:798.087150px;}
.y8d{bottom:798.511350px;}
.yae{bottom:800.581350px;}
.y148{bottom:800.819850px;}
.y4e{bottom:800.840100px;}
.y72{bottom:801.443850px;}
.y128{bottom:802.961850px;}
.y6{bottom:811.193850px;}
.y168{bottom:814.175850px;}
.y25{bottom:818.424900px;}
.y8c{bottom:819.349350px;}
.yad{bottom:821.005350px;}
.y4d{bottom:821.212350px;}
.y71{bottom:821.695350px;}
.y127{bottom:823.893600px;}
.y147{bottom:830.792100px;}
.y167{bottom:834.430350px;}
.y24{bottom:838.762650px;}
.y8b{bottom:840.187350px;}
.y5{bottom:840.698850px;}
.yac{bottom:841.429350px;}
.y4c{bottom:841.584600px;}
.y70{bottom:841.946850px;}
.y146{bottom:852.259350px;}
.y126{bottom:853.330350px;}
.y23{bottom:859.100400px;}
.y8a{bottom:861.025350px;}
.y4{bottom:861.698850px;}
.yab{bottom:861.853350px;}
.y4b{bottom:861.956850px;}
.y6f{bottom:862.198350px;}
.y166{bottom:863.189850px;}
.y125{bottom:874.262100px;}
.y89{bottom:881.863350px;}
.y145{bottom:882.231600px;}
.yaa{bottom:882.277350px;}
.y4a{bottom:882.329100px;}
.y6e{bottom:882.449850px;}
.y3{bottom:882.698850px;}
.y165{bottom:883.444350px;}
.y22{bottom:900.706200px;}
.y49{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:948.189000px;}
.y20{bottom:966.189000px;}
.y1f{bottom:984.189000px;}
.hf{height:42.070312px;}
.hb{height:46.992188px;}
.h10{height:49.341797px;}
.ha{height:51.884766px;}
.h4{height:52.587891px;}
.h3{height:55.217285px;}
.h9{height:56.191406px;}
.h11{height:59.000977px;}
.hd{height:60.476074px;}
.he{height:64.620117px;}
.h2{height:65.734863px;}
.hc{height:70.993652px;}
.h8{height:73.623047px;}
.h7{height:78.667969px;}
.h6{height:94.658203px;}
.h5{height:101.144531px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:82.463850px;}
.x1{left:83.672550px;}
.x5{left:85.215600px;}
.x8{left:103.724700px;}
.x4{left:105.030600px;}
.x7{left:106.527300px;}
.x3{left:230.450250px;}
.x9{left:232.374450px;}
.x2{left:233.415450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-2.882667pt;}
.ls20{letter-spacing:-2.880000pt;}
.ls19{letter-spacing:-2.208000pt;}
.ls1c{letter-spacing:-1.901333pt;}
.ls26{letter-spacing:-1.568000pt;}
.ls9{letter-spacing:-1.536000pt;}
.lsc{letter-spacing:-1.418667pt;}
.lsb{letter-spacing:-1.194667pt;}
.ls12{letter-spacing:-1.008000pt;}
.ls1a{letter-spacing:-0.981333pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.533333pt;}
.ls18{letter-spacing:-0.306667pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:1.045333pt;}
.ls8{letter-spacing:1.120000pt;}
.ls13{letter-spacing:1.840000pt;}
.ls17{letter-spacing:2.024000pt;}
.ls14{letter-spacing:2.133333pt;}
.ls24{letter-spacing:2.699200pt;}
.ls1f{letter-spacing:2.741600pt;}
.ls1e{letter-spacing:3.262933pt;}
.ls1d{letter-spacing:3.312000pt;}
.lsf{letter-spacing:3.733333pt;}
.ls23{letter-spacing:3.864000pt;}
.ls15{letter-spacing:4.600000pt;}
.ls25{letter-spacing:4.866667pt;}
.ls7{letter-spacing:5.173333pt;}
.ls1{letter-spacing:5.200000pt;}
.lse{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls5{letter-spacing:5.386667pt;}
.ls0{letter-spacing:5.413333pt;}
.ls3{letter-spacing:5.600000pt;}
.ls21{letter-spacing:6.389600pt;}
.ls22{letter-spacing:7.319200pt;}
.ls6{letter-spacing:7.466667pt;}
.ls16{letter-spacing:12.064267pt;}
.ws2{word-spacing:-26.400000pt;}
.ws22{word-spacing:-26.200000pt;}
.ws0{word-spacing:-23.933333pt;}
.ws28{word-spacing:-23.600000pt;}
.ws17{word-spacing:-23.333333pt;}
.ws2a{word-spacing:-20.320000pt;}
.ws3{word-spacing:-20.213333pt;}
.ws23{word-spacing:-19.600000pt;}
.ws10{word-spacing:-19.224000pt;}
.ws14{word-spacing:-19.074667pt;}
.ws21{word-spacing:-17.352000pt;}
.ws16{word-spacing:-17.234667pt;}
.ws1{word-spacing:-16.090667pt;}
.ws24{word-spacing:-15.736000pt;}
.ws13{word-spacing:-15.149333pt;}
.ws18{word-spacing:-14.842667pt;}
.ws1b{word-spacing:-14.168000pt;}
.ws25{word-spacing:-13.832000pt;}
.ws20{word-spacing:-13.248000pt;}
.ws4{word-spacing:-13.173333pt;}
.ws19{word-spacing:-12.941333pt;}
.ws1a{word-spacing:-12.266667pt;}
.ws8{word-spacing:-7.466667pt;}
.ws26{word-spacing:-5.600000pt;}
.ws7{word-spacing:-5.386667pt;}
.ws5{word-spacing:-5.333333pt;}
.ws9{word-spacing:-5.173333pt;}
.wsf{word-spacing:-3.733333pt;}
.ws15{word-spacing:-2.133333pt;}
.wsa{word-spacing:-1.120000pt;}
.wse{word-spacing:-1.045333pt;}
.ws6{word-spacing:0.000000pt;}
.ws12{word-spacing:0.160000pt;}
.ws1c{word-spacing:0.306667pt;}
.ws11{word-spacing:0.533333pt;}
.ws1d{word-spacing:0.981333pt;}
.wsc{word-spacing:1.194667pt;}
.wsd{word-spacing:1.418667pt;}
.wsb{word-spacing:1.536000pt;}
.ws29{word-spacing:1.568000pt;}
.ws1e{word-spacing:2.514667pt;}
.ws27{word-spacing:3.976000pt;}
.ws1f{word-spacing:20.546667pt;}
._21{margin-left:-17.357333pt;}
._13{margin-left:-9.298133pt;}
._28{margin-left:-7.616267pt;}
._1b{margin-left:-6.337600pt;}
._8{margin-left:-5.444800pt;}
._7{margin-left:-3.717333pt;}
._6{margin-left:-2.218667pt;}
._4{margin-left:-1.136533pt;}
._0{width:1.466667pt;}
._5{width:2.714667pt;}
._9{width:3.960000pt;}
._3{width:5.109333pt;}
._2{width:6.026667pt;}
._17{width:6.942933pt;}
._18{width:8.107200pt;}
._a{width:9.066667pt;}
._14{width:10.091733pt;}
._d{width:11.532800pt;}
._c{width:12.506667pt;}
._16{width:13.615200pt;}
._1f{width:14.861867pt;}
._b{width:16.218667pt;}
._35{width:17.277600pt;}
._15{width:18.866133pt;}
._20{width:20.479733pt;}
._1d{width:21.374667pt;}
._1a{width:22.570667pt;}
._26{width:23.664267pt;}
._2d{width:24.617333pt;}
._f{width:25.571733pt;}
._10{width:26.598933pt;}
._19{width:27.866400pt;}
._2e{width:29.324000pt;}
._2a{width:30.556267pt;}
._22{width:31.500800pt;}
._33{width:32.709067pt;}
._1e{width:33.665867pt;}
._31{width:34.941600pt;}
._32{width:36.228533pt;}
._36{width:38.832000pt;}
._2f{width:40.786667pt;}
._30{width:41.758667pt;}
._1c{width:42.765333pt;}
._27{width:43.914933pt;}
._2c{width:51.642667pt;}
._24{width:53.666667pt;}
._e{width:231.653333pt;}
._34{width:396.606400pt;}
._1{width:400.453333pt;}
._29{width:402.491733pt;}
._11{width:514.133333pt;}
._23{width:902.891733pt;}
._2b{width:905.665067pt;}
._12{width:909.265067pt;}
._25{width:911.025067pt;}
.fs2{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs6{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.ye7{bottom:91.263200pt;}
.yd0{bottom:94.369200pt;}
.y164{bottom:94.383867pt;}
.y6d{bottom:94.392667pt;}
.y144{bottom:94.495867pt;}
.y10b{bottom:94.517600pt;}
.y48{bottom:94.758800pt;}
.y88{bottom:100.382533pt;}
.yef{bottom:100.395867pt;}
.ye6{bottom:109.264533pt;}
.y6c{bottom:112.501333pt;}
.ycf{bottom:112.523867pt;}
.y47{bottom:112.836800pt;}
.ya9{bottom:113.038133pt;}
.y10a{bottom:113.040267pt;}
.y143{bottom:113.101867pt;}
.y163{bottom:113.465867pt;}
.y1e{bottom:117.461200pt;}
.y87{bottom:118.383867pt;}
.yee{bottom:118.397200pt;}
.y78{bottom:118.401200pt;}
.ye5{bottom:127.265867pt;}
.y6b{bottom:130.610000pt;}
.yce{bottom:130.678533pt;}
.y46{bottom:130.914800pt;}
.ya8{bottom:131.560800pt;}
.y109{bottom:131.562933pt;}
.y1d{bottom:136.127867pt;}
.y124{bottom:136.351867pt;}
.y86{bottom:136.385200pt;}
.yed{bottom:136.398533pt;}
.y142{bottom:139.267867pt;}
.y162{bottom:140.107867pt;}
.ye4{bottom:145.267200pt;}
.y6a{bottom:148.718667pt;}
.ycd{bottom:148.833200pt;}
.y45{bottom:148.992800pt;}
.ya7{bottom:150.083467pt;}
.y108{bottom:150.085600pt;}
.y180{bottom:152.804000pt;}
.y123{bottom:154.353200pt;}
.y85{bottom:154.386533pt;}
.yec{bottom:154.399867pt;}
.y1c{bottom:154.799733pt;}
.y141{bottom:157.873867pt;}
.y161{bottom:159.189867pt;}
.ye3{bottom:163.268533pt;}
.y69{bottom:166.827333pt;}
.ycc{bottom:166.987867pt;}
.y44{bottom:167.070800pt;}
.ya6{bottom:168.606133pt;}
.y107{bottom:168.608267pt;}
.y17f{bottom:170.804000pt;}
.y1b{bottom:172.133067pt;}
.y122{bottom:172.354533pt;}
.y84{bottom:172.387867pt;}
.yeb{bottom:172.401200pt;}
.y160{bottom:178.271867pt;}
.ye2{bottom:181.269867pt;}
.y140{bottom:184.039867pt;}
.y68{bottom:184.936000pt;}
.ycb{bottom:185.142533pt;}
.y43{bottom:185.148800pt;}
.ya5{bottom:187.128800pt;}
.y106{bottom:187.130933pt;}
.y17e{bottom:188.804000pt;}
.y1a{bottom:189.466400pt;}
.y121{bottom:190.355867pt;}
.y83{bottom:190.389200pt;}
.ye1{bottom:199.271200pt;}
.y13f{bottom:202.645867pt;}
.y67{bottom:203.044667pt;}
.y42{bottom:203.226800pt;}
.yca{bottom:203.297200pt;}
.y15f{bottom:204.913867pt;}
.ya4{bottom:205.651467pt;}
.y105{bottom:205.653600pt;}
.y19{bottom:206.799733pt;}
.y17d{bottom:206.804000pt;}
.y120{bottom:208.357200pt;}
.y82{bottom:208.390533pt;}
.yea{bottom:208.401200pt;}
.ye0{bottom:217.272533pt;}
.y66{bottom:221.153333pt;}
.y41{bottom:221.304800pt;}
.yc9{bottom:221.451867pt;}
.y15e{bottom:223.995867pt;}
.y18{bottom:224.133067pt;}
.ya3{bottom:224.174133pt;}
.y104{bottom:224.176267pt;}
.y17c{bottom:224.804000pt;}
.y11f{bottom:226.358533pt;}
.y81{bottom:226.391867pt;}
.y13e{bottom:228.811867pt;}
.ydf{bottom:235.273867pt;}
.y65{bottom:239.262000pt;}
.y40{bottom:239.382800pt;}
.yc8{bottom:239.606533pt;}
.y17{bottom:241.466400pt;}
.ya2{bottom:242.696800pt;}
.y17b{bottom:242.804000pt;}
.y15d{bottom:243.077867pt;}
.y11e{bottom:244.359867pt;}
.y80{bottom:244.393200pt;}
.y13d{bottom:247.417867pt;}
.yde{bottom:253.275200pt;}
.y64{bottom:257.370667pt;}
.y3f{bottom:257.460800pt;}
.yc7{bottom:257.761200pt;}
.y16{bottom:258.799733pt;}
.y17a{bottom:260.804000pt;}
.ya1{bottom:261.219467pt;}
.y103{bottom:261.221600pt;}
.y15c{bottom:262.159867pt;}
.y11d{bottom:262.361200pt;}
.y7f{bottom:262.394533pt;}
.ydd{bottom:271.276533pt;}
.y13c{bottom:273.583867pt;}
.y63{bottom:275.479333pt;}
.y3e{bottom:275.538800pt;}
.yc6{bottom:275.915867pt;}
.y15{bottom:276.133067pt;}
.y179{bottom:278.804000pt;}
.ya0{bottom:279.742133pt;}
.y102{bottom:279.744267pt;}
.y11c{bottom:280.362533pt;}
.y7e{bottom:280.395867pt;}
.y15b{bottom:288.801867pt;}
.ydc{bottom:289.277867pt;}
.y14{bottom:293.466400pt;}
.y62{bottom:293.588000pt;}
.y3d{bottom:293.616800pt;}
.yc5{bottom:294.070533pt;}
.y9f{bottom:298.264800pt;}
.y101{bottom:298.266933pt;}
.y11b{bottom:298.363867pt;}
.y7d{bottom:298.397200pt;}
.y13b{bottom:299.749867pt;}
.ydb{bottom:307.279200pt;}
.y15a{bottom:307.883867pt;}
.y178{bottom:308.137333pt;}
.y13{bottom:310.799733pt;}
.y3c{bottom:311.694800pt;}
.y61{bottom:311.696667pt;}
.yc4{bottom:312.225200pt;}
.y11a{bottom:316.365200pt;}
.y7c{bottom:316.398533pt;}
.y100{bottom:316.789600pt;}
.y13a{bottom:318.355867pt;}
.yda{bottom:325.280533pt;}
.y159{bottom:326.965867pt;}
.y3b{bottom:329.772800pt;}
.y60{bottom:329.805333pt;}
.yc3{bottom:330.379867pt;}
.y119{bottom:334.366533pt;}
.y7b{bottom:334.399867pt;}
.y9e{bottom:335.310133pt;}
.yff{bottom:335.312267pt;}
.y12{bottom:339.466400pt;}
.yd9{bottom:343.281867pt;}
.y139{bottom:344.521867pt;}
.y177{bottom:345.030667pt;}
.y3a{bottom:347.850800pt;}
.y5f{bottom:347.914000pt;}
.yc2{bottom:348.534533pt;}
.y118{bottom:352.367867pt;}
.y7a{bottom:352.401200pt;}
.y158{bottom:353.607867pt;}
.y9d{bottom:353.832800pt;}
.yfe{bottom:353.834933pt;}
.yd8{bottom:361.283200pt;}
.y176{bottom:362.364000pt;}
.y138{bottom:363.127867pt;}
.y39{bottom:365.928800pt;}
.yc1{bottom:366.689200pt;}
.y117{bottom:370.369200pt;}
.y9c{bottom:372.355467pt;}
.yfd{bottom:372.357600pt;}
.y157{bottom:372.689867pt;}
.yd7{bottom:379.284533pt;}
.y175{bottom:379.697333pt;}
.y38{bottom:384.006800pt;}
.yc0{bottom:384.843867pt;}
.y5e{bottom:384.913467pt;}
.y116{bottom:388.370533pt;}
.y79{bottom:388.401200pt;}
.y137{bottom:389.293867pt;}
.y11{bottom:390.804800pt;}
.y9b{bottom:390.878133pt;}
.yfc{bottom:390.880267pt;}
.y156{bottom:391.771867pt;}
.y174{bottom:397.030667pt;}
.yd6{bottom:397.285867pt;}
.y37{bottom:402.084800pt;}
.ybf{bottom:402.998533pt;}
.y115{bottom:406.371867pt;}
.y136{bottom:407.899867pt;}
.y9a{bottom:409.400800pt;}
.yfb{bottom:409.402933pt;}
.y173{bottom:414.364000pt;}
.y10{bottom:414.810133pt;}
.yd5{bottom:415.287200pt;}
.y155{bottom:418.413867pt;}
.y36{bottom:420.162800pt;}
.ybe{bottom:421.153200pt;}
.y114{bottom:424.373200pt;}
.y135{bottom:426.505867pt;}
.y99{bottom:427.923467pt;}
.yfa{bottom:427.925600pt;}
.y172{bottom:431.697333pt;}
.yd4{bottom:433.288533pt;}
.y154{bottom:437.495867pt;}
.y35{bottom:438.240800pt;}
.yf{bottom:438.815467pt;}
.ybd{bottom:439.307867pt;}
.y5d{bottom:440.227867pt;}
.y113{bottom:442.374533pt;}
.y98{bottom:446.446133pt;}
.yf9{bottom:446.448267pt;}
.y171{bottom:449.030667pt;}
.yd3{bottom:451.289867pt;}
.y134{bottom:452.671867pt;}
.y34{bottom:456.318800pt;}
.ybc{bottom:457.462533pt;}
.y5c{bottom:458.336533pt;}
.y112{bottom:460.375867pt;}
.y153{bottom:464.137867pt;}
.y97{bottom:464.968800pt;}
.yf8{bottom:464.970933pt;}
.y170{bottom:466.364000pt;}
.yd2{bottom:469.291200pt;}
.y33{bottom:474.396800pt;}
.ybb{bottom:475.617200pt;}
.y5b{bottom:476.445200pt;}
.y111{bottom:478.377200pt;}
.y133{bottom:478.837867pt;}
.ye{bottom:481.673200pt;}
.y96{bottom:483.491467pt;}
.yf7{bottom:483.493600pt;}
.y16f{bottom:483.697333pt;}
.y152{bottom:490.779867pt;}
.y32{bottom:492.474800pt;}
.yba{bottom:493.771867pt;}
.y5a{bottom:494.553867pt;}
.y110{bottom:496.378533pt;}
.y95{bottom:502.014133pt;}
.yf6{bottom:502.016267pt;}
.y132{bottom:505.003867pt;}
.yd1{bottom:505.291200pt;}
.yd{bottom:509.681200pt;}
.y151{bottom:509.861867pt;}
.y31{bottom:510.552800pt;}
.yb9{bottom:511.926533pt;}
.y16e{bottom:512.364000pt;}
.y59{bottom:512.662533pt;}
.y10f{bottom:514.379867pt;}
.y94{bottom:520.536800pt;}
.yf5{bottom:520.538933pt;}
.y131{bottom:523.609867pt;}
.y30{bottom:528.630800pt;}
.yb8{bottom:530.081200pt;}
.y58{bottom:530.771200pt;}
.y10e{bottom:532.381200pt;}
.y150{bottom:536.503867pt;}
.yc{bottom:537.689200pt;}
.y93{bottom:539.059467pt;}
.yf4{bottom:539.061600pt;}
.y2f{bottom:546.708800pt;}
.yb7{bottom:548.235867pt;}
.y57{bottom:548.879867pt;}
.y130{bottom:549.775867pt;}
.y10d{bottom:550.382533pt;}
.y14f{bottom:555.585867pt;}
.yf3{bottom:557.584267pt;}
.y16d{bottom:563.702533pt;}
.y2e{bottom:564.786800pt;}
.yb{bottom:565.697200pt;}
.yb6{bottom:566.390533pt;}
.y56{bottom:566.988533pt;}
.y12f{bottom:568.381867pt;}
.y10c{bottom:568.383867pt;}
.y14e{bottom:574.667867pt;}
.yf2{bottom:576.106933pt;}
.y92{bottom:576.486000pt;}
.y2d{bottom:582.864800pt;}
.yb5{bottom:584.545200pt;}
.y55{bottom:585.097200pt;}
.ye9{bottom:586.385200pt;}
.y12e{bottom:586.987867pt;}
.y16c{bottom:587.707867pt;}
.ya{bottom:593.705200pt;}
.y91{bottom:598.338000pt;}
.y2c{bottom:600.942800pt;}
.y14d{bottom:601.309867pt;}
.yb4{bottom:602.699867pt;}
.y54{bottom:603.205867pt;}
.y77{bottom:604.386533pt;}
.y12d{bottom:605.593867pt;}
.y16b{bottom:611.713200pt;}
.yf1{bottom:613.533600pt;}
.y2b{bottom:619.020800pt;}
.y14c{bottom:620.391867pt;}
.yb3{bottom:620.854533pt;}
.y53{bottom:621.314533pt;}
.y9{bottom:621.713200pt;}
.y76{bottom:622.387867pt;}
.y12c{bottom:631.759867pt;}
.yf0{bottom:635.385600pt;}
.y2a{bottom:637.098800pt;}
.yb2{bottom:639.009200pt;}
.y52{bottom:639.423200pt;}
.ye8{bottom:640.389200pt;}
.y14b{bottom:647.033867pt;}
.y12b{bottom:650.365867pt;}
.y90{bottom:654.219867pt;}
.y29{bottom:655.176800pt;}
.yb1{bottom:657.163867pt;}
.y51{bottom:657.531867pt;}
.y75{bottom:658.390533pt;}
.y14a{bottom:666.115867pt;}
.y8f{bottom:672.742533pt;}
.y28{bottom:673.254800pt;}
.yb0{bottom:675.318533pt;}
.y50{bottom:675.640533pt;}
.y8{bottom:676.167867pt;}
.y74{bottom:676.391867pt;}
.y12a{bottom:676.531867pt;}
.y16a{bottom:680.143867pt;}
.y8e{bottom:691.265200pt;}
.y27{bottom:691.332800pt;}
.y149{bottom:692.757867pt;}
.yaf{bottom:693.473200pt;}
.y4f{bottom:693.749200pt;}
.y73{bottom:694.393200pt;}
.y129{bottom:695.137867pt;}
.y169{bottom:698.147867pt;}
.y7{bottom:702.394533pt;}
.y26{bottom:709.410800pt;}
.y8d{bottom:709.787867pt;}
.yae{bottom:711.627867pt;}
.y148{bottom:711.839867pt;}
.y4e{bottom:711.857867pt;}
.y72{bottom:712.394533pt;}
.y128{bottom:713.743867pt;}
.y6{bottom:721.061200pt;}
.y168{bottom:723.711867pt;}
.y25{bottom:727.488800pt;}
.y8c{bottom:728.310533pt;}
.yad{bottom:729.782533pt;}
.y4d{bottom:729.966533pt;}
.y71{bottom:730.395867pt;}
.y127{bottom:732.349867pt;}
.y147{bottom:738.481867pt;}
.y167{bottom:741.715867pt;}
.y24{bottom:745.566800pt;}
.y8b{bottom:746.833200pt;}
.y5{bottom:747.287867pt;}
.yac{bottom:747.937200pt;}
.y4c{bottom:748.075200pt;}
.y70{bottom:748.397200pt;}
.y146{bottom:757.563867pt;}
.y126{bottom:758.515867pt;}
.y23{bottom:763.644800pt;}
.y8a{bottom:765.355867pt;}
.y4{bottom:765.954533pt;}
.yab{bottom:766.091867pt;}
.y4b{bottom:766.183867pt;}
.y6f{bottom:766.398533pt;}
.y166{bottom:767.279867pt;}
.y125{bottom:777.121867pt;}
.y89{bottom:783.878533pt;}
.y145{bottom:784.205867pt;}
.yaa{bottom:784.246533pt;}
.y4a{bottom:784.292533pt;}
.y6e{bottom:784.399867pt;}
.y3{bottom:784.621200pt;}
.y165{bottom:785.283867pt;}
.y22{bottom:800.627733pt;}
.y49{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:842.834667pt;}
.y20{bottom:858.834667pt;}
.y1f{bottom:874.834667pt;}
.hf{height:37.395833pt;}
.hb{height:41.770833pt;}
.h10{height:43.859375pt;}
.ha{height:46.119792pt;}
.h4{height:46.744792pt;}
.h3{height:49.082031pt;}
.h9{height:49.947917pt;}
.h11{height:52.445312pt;}
.hd{height:53.756510pt;}
.he{height:57.440104pt;}
.h2{height:58.430990pt;}
.hc{height:63.105469pt;}
.h8{height:65.442708pt;}
.h7{height:69.927083pt;}
.h6{height:84.140625pt;}
.h5{height:89.906250pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:73.301200pt;}
.x1{left:74.375600pt;}
.x5{left:75.747200pt;}
.x8{left:92.199733pt;}
.x4{left:93.360533pt;}
.x7{left:94.690933pt;}
.x3{left:204.844667pt;}
.x9{left:206.555067pt;}
.x2{left:207.480400pt;}
}




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