
    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_75a9925e93576a0d2318e812.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893066;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_32b47d8d68b81f2cc6b47a48.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_6b8958c5c2f574b822351bab.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_6bc798b806b6e02d443278d6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_f37b3d051833249d41c14e05.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls1c{letter-spacing:-2.158200px;}
.lsc{letter-spacing:-1.427534px;}
.lsd{letter-spacing:-1.167982px;}
.ls4{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.066000px;}
.ls1b{letter-spacing:-0.052800px;}
.ls7{letter-spacing:-0.046200px;}
.ls1a{letter-spacing:-0.039600px;}
.ls14{letter-spacing:-0.033000px;}
.lse{letter-spacing:-0.027000px;}
.ls13{letter-spacing:-0.026400px;}
.ls18{letter-spacing:-0.019800px;}
.lsf{letter-spacing:-0.005400px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003000px;}
.ls1f{letter-spacing:0.006000px;}
.ls5{letter-spacing:0.006600px;}
.ls6{letter-spacing:0.013200px;}
.ls1e{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.019800px;}
.ls11{letter-spacing:0.026400px;}
.ls3{letter-spacing:0.033000px;}
.ls10{letter-spacing:0.039600px;}
.ls16{letter-spacing:0.046200px;}
.ls8{letter-spacing:0.059400px;}
.ls17{letter-spacing:0.066000px;}
.ls12{letter-spacing:0.165000px;}
.lsb{letter-spacing:1.324200px;}
.ls1d{letter-spacing:1.854600px;}
.ls15{letter-spacing:5.233800px;}
.ls9{letter-spacing:7.543800px;}
.lsa{letter-spacing:13.500000px;}
.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;}
}
.ws9{word-spacing:-16.500000px;}
.ws2{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.500000px;}
.ws8{word-spacing:-9.619500px;}
.ws1{word-spacing:-8.745000px;}
.ws11{word-spacing:-8.191966px;}
.ws3{word-spacing:-7.870500px;}
.ws12{word-spacing:-6.702518px;}
.ws1d{word-spacing:-2.283600px;}
.ws27{word-spacing:-2.112000px;}
.ws28{word-spacing:-1.788000px;}
.ws2f{word-spacing:-1.752000px;}
.ws1f{word-spacing:-1.518000px;}
.ws10{word-spacing:-1.465200px;}
.ws2d{word-spacing:-1.380000px;}
.ws31{word-spacing:-1.062000px;}
.ws2a{word-spacing:-0.858000px;}
.ws2e{word-spacing:-0.438000px;}
.wsb{word-spacing:-0.066000px;}
.ws20{word-spacing:-0.060000px;}
.wsa{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.wsd{word-spacing:0.118800px;}
.ws2c{word-spacing:0.252000px;}
.ws5{word-spacing:0.456000px;}
.ws2b{word-spacing:1.374000px;}
.ws19{word-spacing:1.590600px;}
.ws1a{word-spacing:2.521200px;}
.ws17{word-spacing:2.910600px;}
.ws1e{word-spacing:2.923800px;}
.ws32{word-spacing:2.934000px;}
.ws16{word-spacing:3.007800px;}
.ws6{word-spacing:3.385800px;}
.wsf{word-spacing:3.399000px;}
.ws23{word-spacing:3.750000px;}
.ws1c{word-spacing:4.111800px;}
.ws18{word-spacing:4.138200px;}
.ws7{word-spacing:4.590000px;}
.ws29{word-spacing:4.698000px;}
.ws21{word-spacing:5.160000px;}
.ws30{word-spacing:5.526000px;}
.ws13{word-spacing:6.223800px;}
.wse{word-spacing:6.270000px;}
.ws1b{word-spacing:6.336000px;}
.ws22{word-spacing:7.542000px;}
.wsc{word-spacing:7.543800px;}
.ws34{word-spacing:7.914000px;}
.ws15{word-spacing:7.981200px;}
.ws26{word-spacing:9.660000px;}
.ws14{word-spacing:10.012200px;}
.ws24{word-spacing:10.170000px;}
.ws33{word-spacing:11.286000px;}
.ws25{word-spacing:18.588000px;}
._13{margin-left:-19.411200px;}
._d{margin-left:-17.905800px;}
._6{margin-left:-16.680000px;}
._a{margin-left:-15.082200px;}
._10{margin-left:-13.303200px;}
._15{margin-left:-10.394400px;}
._14{margin-left:-8.269200px;}
._1{margin-left:-7.123200px;}
._3{margin-left:-5.681400px;}
._11{margin-left:-4.606800px;}
._0{margin-left:-2.997000px;}
._2{margin-left:-1.737600px;}
._4{width:1.380000px;}
._5{width:2.652000px;}
._7{width:3.876000px;}
._b{width:5.313000px;}
._e{width:7.048800px;}
._f{width:8.131200px;}
._c{width:9.220200px;}
._12{width:10.494000px;}
._17{width:12.756000px;}
._16{width:18.588000px;}
._8{width:23.025600px;}
._9{width:26.006400px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs5{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs7{font-size:42.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yc6{bottom:77.949150px;}
.ydd{bottom:80.074800px;}
.y181{bottom:80.755800px;}
.y139{bottom:82.200150px;}
.yd7{bottom:82.444650px;}
.y126{bottom:83.070300px;}
.y15c{bottom:83.700300px;}
.y8a{bottom:84.570150px;}
.y3e{bottom:84.952800px;}
.y1{bottom:86.191800px;}
.y103{bottom:89.370150px;}
.y136{bottom:90.886800px;}
.yc5{bottom:94.149150px;}
.ydc{bottom:96.274800px;}
.yd6{bottom:98.400150px;}
.y125{bottom:99.027300px;}
.y15b{bottom:99.900300px;}
.y89{bottom:100.527150px;}
.y3d{bottom:101.152800px;}
.y180{bottom:102.355800px;}
.y64{bottom:105.648150px;}
.y102{bottom:109.170150px;}
.yc4{bottom:110.349150px;}
.y18{bottom:110.589300px;}
.ya1{bottom:110.686800px;}
.y138{bottom:114.600150px;}
.y124{bottom:115.227300px;}
.y15a{bottom:116.100300px;}
.y88{bottom:116.727150px;}
.ydb{bottom:116.970300px;}
.y3c{bottom:117.352800px;}
.yd5{bottom:119.095800px;}
.y17f{bottom:120.355800px;}
.y63{bottom:121.605300px;}
.y17{bottom:126.546300px;}
.yc3{bottom:126.549150px;}
.y101{bottom:128.970150px;}
.ya0{bottom:130.486800px;}
.y159{bottom:132.300300px;}
.y87{bottom:132.927150px;}
.y3b{bottom:133.552800px;}
.y137{bottom:135.295800px;}
.y123{bottom:135.922800px;}
.yd4{bottom:139.548300px;}
.y62{bottom:142.300650px;}
.yc2{bottom:142.749150px;}
.y17e{bottom:146.859300px;}
.y16{bottom:147.241800px;}
.y158{bottom:148.500300px;}
.y100{bottom:148.770150px;}
.y86{bottom:149.127150px;}
.y135{bottom:150.286350px;}
.y9f{bottom:150.286800px;}
.y122{bottom:151.878300px;}
.y3a{bottom:154.248300px;}
.yd3{bottom:155.505300px;}
.y61{bottom:158.256150px;}
.yc1{bottom:163.444800px;}
.y17d{bottom:164.859300px;}
.y85{bottom:165.327150px;}
.y121{bottom:168.078300px;}
.yff{bottom:168.570150px;}
.y157{bottom:169.195800px;}
.y134{bottom:170.086350px;}
.y9e{bottom:170.086800px;}
.yd2{bottom:171.705300px;}
.y60{bottom:178.951650px;}
.y84{bottom:186.022650px;}
.yfe{bottom:188.370150px;}
.y120{bottom:188.773800px;}
.y133{bottom:189.886350px;}
.y9d{bottom:189.886800px;}
.y17c{bottom:191.362800px;}
.y39{bottom:191.551800px;}
.yd1{bottom:192.400800px;}
.y156{bottom:194.547300px;}
.yfd{bottom:208.170150px;}
.y15{bottom:208.267800px;}
.yd0{bottom:208.356150px;}
.y11f{bottom:209.226300px;}
.y17b{bottom:209.362800px;}
.y132{bottom:209.686350px;}
.y9c{bottom:209.686800px;}
.y5f{bottom:210.312300px;}
.y38{bottom:211.351800px;}
.y155{bottom:212.547300px;}
.ycf{bottom:224.556150px;}
.y14{bottom:226.267800px;}
.yc0{bottom:227.359800px;}
.yfc{bottom:227.970150px;}
.y131{bottom:229.486350px;}
.y83{bottom:229.486800px;}
.y11e{bottom:229.678800px;}
.y5e{bottom:230.112300px;}
.y37{bottom:231.151800px;}
.y17a{bottom:235.867800px;}
.y154{bottom:239.050800px;}
.y13{bottom:244.267800px;}
.yce{bottom:245.251800px;}
.ybf{bottom:247.159800px;}
.yfb{bottom:247.770150px;}
.y130{bottom:249.286350px;}
.y82{bottom:249.286800px;}
.y5d{bottom:249.912300px;}
.y11d{bottom:250.129800px;}
.y36{bottom:250.951800px;}
.y179{bottom:253.867800px;}
.ycd{bottom:261.208800px;}
.y12{bottom:262.267800px;}
.y153{bottom:265.554300px;}
.yfa{bottom:267.570150px;}
.y12f{bottom:269.086350px;}
.y81{bottom:269.086800px;}
.y5c{bottom:269.712300px;}
.y11c{bottom:270.582300px;}
.y35{bottom:270.751800px;}
.ycc{bottom:277.408800px;}
.y11{bottom:280.267800px;}
.y178{bottom:280.371300px;}
.ybe{bottom:286.759800px;}
.yf9{bottom:287.370150px;}
.y12e{bottom:288.886350px;}
.y80{bottom:288.886800px;}
.y5b{bottom:289.512300px;}
.y34{bottom:290.551800px;}
.y152{bottom:292.059300px;}
.ycb{bottom:298.104300px;}
.y10{bottom:298.267800px;}
.y177{bottom:298.371300px;}
.yf8{bottom:307.170150px;}
.y11b{bottom:307.170300px;}
.y12d{bottom:308.686350px;}
.y7f{bottom:308.686800px;}
.y5a{bottom:309.312300px;}
.y151{bottom:310.059300px;}
.y33{bottom:310.351800px;}
.yf{bottom:316.267800px;}
.y176{bottom:324.874800px;}
.yca{bottom:326.359800px;}
.yf7{bottom:326.970150px;}
.y11a{bottom:326.970300px;}
.y12c{bottom:328.486350px;}
.y7e{bottom:328.486800px;}
.y59{bottom:329.112300px;}
.y32{bottom:330.151800px;}
.ye{bottom:334.267800px;}
.y150{bottom:336.562800px;}
.y175{bottom:342.874800px;}
.ybd{bottom:346.159800px;}
.yf6{bottom:346.770150px;}
.y119{bottom:346.770300px;}
.y12b{bottom:348.286350px;}
.y7d{bottom:348.286800px;}
.y58{bottom:348.912300px;}
.y31{bottom:349.951800px;}
.yd{bottom:352.267800px;}
.y174{bottom:360.874800px;}
.y14f{bottom:363.066300px;}
.ybc{bottom:365.959800px;}
.yf5{bottom:366.570150px;}
.y118{bottom:366.570300px;}
.y12a{bottom:368.086350px;}
.y7c{bottom:368.086800px;}
.y57{bottom:368.712300px;}
.y30{bottom:369.751800px;}
.y14e{bottom:381.066300px;}
.ybb{bottom:385.759800px;}
.yf4{bottom:386.370150px;}
.y117{bottom:386.370300px;}
.y173{bottom:387.379800px;}
.y129{bottom:387.886350px;}
.y7b{bottom:387.886800px;}
.y56{bottom:388.512300px;}
.y2f{bottom:389.551800px;}
.yba{bottom:405.559800px;}
.yf3{bottom:406.170150px;}
.y116{bottom:406.170300px;}
.y14d{bottom:407.569800px;}
.y128{bottom:407.686350px;}
.y7a{bottom:407.686800px;}
.y55{bottom:408.312300px;}
.y2e{bottom:409.351800px;}
.yc{bottom:413.469600px;}
.y172{bottom:413.883300px;}
.yb9{bottom:425.359800px;}
.y14c{bottom:425.569800px;}
.yf2{bottom:425.970150px;}
.y115{bottom:425.970300px;}
.y127{bottom:427.486350px;}
.y79{bottom:427.486800px;}
.y54{bottom:428.112300px;}
.y2d{bottom:429.151800px;}
.y171{bottom:431.883300px;}
.yb{bottom:432.969300px;}
.yb8{bottom:445.159800px;}
.yf1{bottom:445.770150px;}
.y114{bottom:445.770300px;}
.y78{bottom:447.286350px;}
.y9b{bottom:447.286800px;}
.y53{bottom:447.912300px;}
.y2c{bottom:448.951800px;}
.y14b{bottom:452.074800px;}
.ya{bottom:452.469000px;}
.y170{bottom:458.386800px;}
.yb7{bottom:464.959800px;}
.yf0{bottom:465.570150px;}
.y113{bottom:465.570300px;}
.y77{bottom:467.086350px;}
.y9a{bottom:467.086800px;}
.y52{bottom:467.712300px;}
.y2b{bottom:468.751800px;}
.y14a{bottom:470.074800px;}
.y9{bottom:471.968700px;}
.y16f{bottom:476.386800px;}
.yb6{bottom:484.759800px;}
.yef{bottom:485.370150px;}
.y112{bottom:485.370300px;}
.y76{bottom:486.886350px;}
.y99{bottom:486.886800px;}
.y51{bottom:487.512300px;}
.y2a{bottom:488.551800px;}
.y8{bottom:491.468400px;}
.y149{bottom:496.578300px;}
.y16e{bottom:502.890300px;}
.yb5{bottom:504.559800px;}
.yee{bottom:505.170150px;}
.y111{bottom:505.170300px;}
.y75{bottom:506.686350px;}
.y98{bottom:506.686800px;}
.y50{bottom:507.312300px;}
.y29{bottom:508.351800px;}
.y7{bottom:510.968100px;}
.y148{bottom:514.578300px;}
.y16d{bottom:520.890300px;}
.yb4{bottom:524.359800px;}
.yed{bottom:524.970150px;}
.y110{bottom:524.970300px;}
.y74{bottom:526.486350px;}
.y97{bottom:526.486800px;}
.y4f{bottom:527.112300px;}
.y28{bottom:528.151800px;}
.y6{bottom:530.467800px;}
.y147{bottom:541.081800px;}
.yb3{bottom:544.159800px;}
.yec{bottom:544.770150px;}
.y10f{bottom:544.770300px;}
.y73{bottom:546.286350px;}
.y96{bottom:546.286800px;}
.y4e{bottom:546.912300px;}
.y16c{bottom:547.395300px;}
.y27{bottom:547.951800px;}
.y146{bottom:559.081800px;}
.yb2{bottom:563.959800px;}
.yeb{bottom:564.570150px;}
.y10e{bottom:564.570300px;}
.y16b{bottom:565.395300px;}
.y72{bottom:566.086350px;}
.y95{bottom:566.086800px;}
.y4d{bottom:566.712300px;}
.y26{bottom:567.752400px;}
.yb1{bottom:583.759800px;}
.yea{bottom:584.370150px;}
.y10d{bottom:584.370300px;}
.y71{bottom:585.886350px;}
.y94{bottom:585.886800px;}
.y4c{bottom:586.512300px;}
.y25{bottom:587.552400px;}
.y16a{bottom:591.898800px;}
.yb0{bottom:603.559800px;}
.y145{bottom:603.586800px;}
.ye9{bottom:604.170150px;}
.y10c{bottom:604.170300px;}
.y70{bottom:605.686350px;}
.y93{bottom:605.686800px;}
.y4b{bottom:606.312300px;}
.y24{bottom:607.352400px;}
.y169{bottom:609.898800px;}
.yaf{bottom:623.359800px;}
.ye8{bottom:623.970150px;}
.y10b{bottom:623.970300px;}
.y6f{bottom:625.486350px;}
.y92{bottom:625.486800px;}
.y4a{bottom:626.112300px;}
.y23{bottom:627.152400px;}
.y168{bottom:636.402300px;}
.yae{bottom:643.159800px;}
.ye7{bottom:643.770150px;}
.y10a{bottom:643.770300px;}
.y6e{bottom:645.286350px;}
.y91{bottom:645.286800px;}
.y49{bottom:645.912300px;}
.y22{bottom:646.952400px;}
.y5{bottom:654.067800px;}
.y167{bottom:662.907300px;}
.yad{bottom:662.959800px;}
.ye6{bottom:663.570150px;}
.y109{bottom:663.570300px;}
.yda{bottom:665.086350px;}
.y90{bottom:665.086800px;}
.y48{bottom:665.712300px;}
.y21{bottom:666.752400px;}
.y4{bottom:672.067800px;}
.y166{bottom:680.907300px;}
.yac{bottom:682.759800px;}
.ye5{bottom:683.370150px;}
.y108{bottom:683.370300px;}
.y6d{bottom:684.886350px;}
.y8f{bottom:684.886800px;}
.y47{bottom:685.512300px;}
.y144{bottom:686.386350px;}
.y20{bottom:686.552400px;}
.yab{bottom:702.559800px;}
.y107{bottom:703.170300px;}
.yd9{bottom:704.686350px;}
.y8e{bottom:704.686800px;}
.y46{bottom:705.312300px;}
.y143{bottom:706.186350px;}
.y165{bottom:707.410800px;}
.yaa{bottom:722.359800px;}
.ye4{bottom:722.970150px;}
.y106{bottom:722.970300px;}
.yd8{bottom:724.486350px;}
.y8d{bottom:724.486800px;}
.y164{bottom:725.410800px;}
.y142{bottom:725.986350px;}
.y1f{bottom:726.152400px;}
.yc9{bottom:742.159800px;}
.ya9{bottom:742.160400px;}
.y105{bottom:742.770300px;}
.y6c{bottom:744.286350px;}
.y8c{bottom:744.286800px;}
.y45{bottom:744.912300px;}
.y141{bottom:745.786350px;}
.y163{bottom:751.914300px;}
.yc8{bottom:761.959800px;}
.ya8{bottom:761.960400px;}
.y104{bottom:762.570150px;}
.y6b{bottom:764.086350px;}
.y8b{bottom:764.086800px;}
.y140{bottom:765.586350px;}
.y162{bottom:769.914300px;}
.y3{bottom:772.867800px;}
.yc7{bottom:781.759800px;}
.ya7{bottom:781.760400px;}
.ye3{bottom:782.370150px;}
.y6a{bottom:783.886350px;}
.y13f{bottom:785.386350px;}
.y1e{bottom:785.552400px;}
.y2{bottom:795.667800px;}
.y161{bottom:796.417800px;}
.ya6{bottom:801.560400px;}
.ye2{bottom:802.170150px;}
.y69{bottom:803.686350px;}
.y44{bottom:804.312300px;}
.y13e{bottom:805.186350px;}
.y1d{bottom:805.352400px;}
.y160{bottom:814.417800px;}
.ya5{bottom:821.360400px;}
.ye1{bottom:821.970150px;}
.y68{bottom:823.486350px;}
.y43{bottom:824.112300px;}
.y13d{bottom:824.986350px;}
.y1c{bottom:825.152400px;}
.y15f{bottom:840.922800px;}
.ya4{bottom:841.160400px;}
.ye0{bottom:841.770150px;}
.y67{bottom:843.286350px;}
.y42{bottom:843.912300px;}
.y13c{bottom:844.786350px;}
.y1b{bottom:844.952400px;}
.ya3{bottom:860.960400px;}
.ydf{bottom:861.570150px;}
.y66{bottom:863.086350px;}
.y41{bottom:863.712300px;}
.y13b{bottom:864.586350px;}
.y1a{bottom:864.752400px;}
.y15e{bottom:867.426300px;}
.ya2{bottom:880.760400px;}
.yde{bottom:881.370150px;}
.y65{bottom:882.886350px;}
.y40{bottom:883.512300px;}
.y13a{bottom:884.386350px;}
.y15d{bottom:885.426300px;}
.y19{bottom:927.999150px;}
.y3f{bottom:928.258500px;}
.y182{bottom:928.258800px;}
.h11{height:29.399236px;}
.h8{height:29.399836px;}
.he{height:29.400436px;}
.h13{height:29.531072px;}
.h16{height:29.531672px;}
.h14{height:29.532272px;}
.h12{height:34.664484px;}
.ha{height:37.303711px;}
.h9{height:47.381836px;}
.hc{height:47.513672px;}
.h2{height:47.961914px;}
.h5{height:52.646484px;}
.h7{height:52.792969px;}
.hd{height:53.291016px;}
.h4{height:56.153528px;}
.h6{height:57.911133px;}
.h15{height:57.911733px;}
.hf{height:57.912933px;}
.h10{height:58.072266px;}
.hb{height:58.620117px;}
.h3{height:85.265625px;}
.h0{height:979.179300px;}
.h1{height:979.500000px;}
.w1{width:681.000000px;}
.w0{width:681.026550px;}
.x0{left:0.000000px;}
.x8{left:94.974150px;}
.x1{left:99.474150px;}
.xa{left:108.474150px;}
.x7{left:112.726050px;}
.x2{left:127.444050px;}
.x9{left:128.990550px;}
.xd{left:133.240800px;}
.x10{left:148.974150px;}
.x11{left:153.226050px;}
.x6{left:154.501050px;}
.x3{left:156.407250px;}
.xe{left:183.412050px;}
.xb{left:292.169550px;}
.x5{left:435.755550px;}
.x4{left:480.251550px;}
.xf{left:503.758200px;}
.xc{left:570.823050px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls1c{letter-spacing:-1.918400pt;}
.lsc{letter-spacing:-1.268919pt;}
.lsd{letter-spacing:-1.038206pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.058667pt;}
.ls1b{letter-spacing:-0.046933pt;}
.ls7{letter-spacing:-0.041067pt;}
.ls1a{letter-spacing:-0.035200pt;}
.ls14{letter-spacing:-0.029333pt;}
.lse{letter-spacing:-0.024000pt;}
.ls13{letter-spacing:-0.023467pt;}
.ls18{letter-spacing:-0.017600pt;}
.lsf{letter-spacing:-0.004800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.002667pt;}
.ls1f{letter-spacing:0.005333pt;}
.ls5{letter-spacing:0.005867pt;}
.ls6{letter-spacing:0.011733pt;}
.ls1e{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.017600pt;}
.ls11{letter-spacing:0.023467pt;}
.ls3{letter-spacing:0.029333pt;}
.ls10{letter-spacing:0.035200pt;}
.ls16{letter-spacing:0.041067pt;}
.ls8{letter-spacing:0.052800pt;}
.ls17{letter-spacing:0.058667pt;}
.ls12{letter-spacing:0.146667pt;}
.lsb{letter-spacing:1.177067pt;}
.ls1d{letter-spacing:1.648533pt;}
.ls15{letter-spacing:4.652267pt;}
.ls9{letter-spacing:6.705600pt;}
.lsa{letter-spacing:12.000000pt;}
.ws9{word-spacing:-14.666667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws8{word-spacing:-8.550667pt;}
.ws1{word-spacing:-7.773333pt;}
.ws11{word-spacing:-7.281748pt;}
.ws3{word-spacing:-6.996000pt;}
.ws12{word-spacing:-5.957794pt;}
.ws1d{word-spacing:-2.029867pt;}
.ws27{word-spacing:-1.877333pt;}
.ws28{word-spacing:-1.589333pt;}
.ws2f{word-spacing:-1.557333pt;}
.ws1f{word-spacing:-1.349333pt;}
.ws10{word-spacing:-1.302400pt;}
.ws2d{word-spacing:-1.226667pt;}
.ws31{word-spacing:-0.944000pt;}
.ws2a{word-spacing:-0.762667pt;}
.ws2e{word-spacing:-0.389333pt;}
.wsb{word-spacing:-0.058667pt;}
.ws20{word-spacing:-0.053333pt;}
.wsa{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.wsd{word-spacing:0.105600pt;}
.ws2c{word-spacing:0.224000pt;}
.ws5{word-spacing:0.405333pt;}
.ws2b{word-spacing:1.221333pt;}
.ws19{word-spacing:1.413867pt;}
.ws1a{word-spacing:2.241067pt;}
.ws17{word-spacing:2.587200pt;}
.ws1e{word-spacing:2.598933pt;}
.ws32{word-spacing:2.608000pt;}
.ws16{word-spacing:2.673600pt;}
.ws6{word-spacing:3.009600pt;}
.wsf{word-spacing:3.021333pt;}
.ws23{word-spacing:3.333333pt;}
.ws1c{word-spacing:3.654933pt;}
.ws18{word-spacing:3.678400pt;}
.ws7{word-spacing:4.080000pt;}
.ws29{word-spacing:4.176000pt;}
.ws21{word-spacing:4.586667pt;}
.ws30{word-spacing:4.912000pt;}
.ws13{word-spacing:5.532267pt;}
.wse{word-spacing:5.573333pt;}
.ws1b{word-spacing:5.632000pt;}
.ws22{word-spacing:6.704000pt;}
.wsc{word-spacing:6.705600pt;}
.ws34{word-spacing:7.034667pt;}
.ws15{word-spacing:7.094400pt;}
.ws26{word-spacing:8.586667pt;}
.ws14{word-spacing:8.899733pt;}
.ws24{word-spacing:9.040000pt;}
.ws33{word-spacing:10.032000pt;}
.ws25{word-spacing:16.522667pt;}
._13{margin-left:-17.254400pt;}
._d{margin-left:-15.916267pt;}
._6{margin-left:-14.826667pt;}
._a{margin-left:-13.406400pt;}
._10{margin-left:-11.825067pt;}
._15{margin-left:-9.239467pt;}
._14{margin-left:-7.350400pt;}
._1{margin-left:-6.331733pt;}
._3{margin-left:-5.050133pt;}
._11{margin-left:-4.094933pt;}
._0{margin-left:-2.664000pt;}
._2{margin-left:-1.544533pt;}
._4{width:1.226667pt;}
._5{width:2.357333pt;}
._7{width:3.445333pt;}
._b{width:4.722667pt;}
._e{width:6.265600pt;}
._f{width:7.227733pt;}
._c{width:8.195733pt;}
._12{width:9.328000pt;}
._17{width:11.338667pt;}
._16{width:16.522667pt;}
._8{width:20.467200pt;}
._9{width:23.116800pt;}
.fs6{font-size:27.984000pt;}
.fs5{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs7{font-size:37.333333pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:69.288133pt;}
.ydd{bottom:71.177600pt;}
.y181{bottom:71.782933pt;}
.y139{bottom:73.066800pt;}
.yd7{bottom:73.284133pt;}
.y126{bottom:73.840267pt;}
.y15c{bottom:74.400267pt;}
.y8a{bottom:75.173467pt;}
.y3e{bottom:75.513600pt;}
.y1{bottom:76.614933pt;}
.y103{bottom:79.440133pt;}
.y136{bottom:80.788267pt;}
.yc5{bottom:83.688133pt;}
.ydc{bottom:85.577600pt;}
.yd6{bottom:87.466800pt;}
.y125{bottom:88.024267pt;}
.y15b{bottom:88.800267pt;}
.y89{bottom:89.357467pt;}
.y3d{bottom:89.913600pt;}
.y180{bottom:90.982933pt;}
.y64{bottom:93.909467pt;}
.y102{bottom:97.040133pt;}
.yc4{bottom:98.088133pt;}
.y18{bottom:98.301600pt;}
.ya1{bottom:98.388267pt;}
.y138{bottom:101.866800pt;}
.y124{bottom:102.424267pt;}
.y15a{bottom:103.200267pt;}
.y88{bottom:103.757467pt;}
.ydb{bottom:103.973600pt;}
.y3c{bottom:104.313600pt;}
.yd5{bottom:105.862933pt;}
.y17f{bottom:106.982933pt;}
.y63{bottom:108.093600pt;}
.y17{bottom:112.485600pt;}
.yc3{bottom:112.488133pt;}
.y101{bottom:114.640133pt;}
.ya0{bottom:115.988267pt;}
.y159{bottom:117.600267pt;}
.y87{bottom:118.157467pt;}
.y3b{bottom:118.713600pt;}
.y137{bottom:120.262933pt;}
.y123{bottom:120.820267pt;}
.yd4{bottom:124.042933pt;}
.y62{bottom:126.489467pt;}
.yc2{bottom:126.888133pt;}
.y17e{bottom:130.541600pt;}
.y16{bottom:130.881600pt;}
.y158{bottom:132.000267pt;}
.y100{bottom:132.240133pt;}
.y86{bottom:132.557467pt;}
.y135{bottom:133.587867pt;}
.y9f{bottom:133.588267pt;}
.y122{bottom:135.002933pt;}
.y3a{bottom:137.109600pt;}
.yd3{bottom:138.226933pt;}
.y61{bottom:140.672133pt;}
.yc1{bottom:145.284267pt;}
.y17d{bottom:146.541600pt;}
.y85{bottom:146.957467pt;}
.y121{bottom:149.402933pt;}
.yff{bottom:149.840133pt;}
.y157{bottom:150.396267pt;}
.y134{bottom:151.187867pt;}
.y9e{bottom:151.188267pt;}
.yd2{bottom:152.626933pt;}
.y60{bottom:159.068133pt;}
.y84{bottom:165.353467pt;}
.yfe{bottom:167.440133pt;}
.y120{bottom:167.798933pt;}
.y133{bottom:168.787867pt;}
.y9d{bottom:168.788267pt;}
.y17c{bottom:170.100267pt;}
.y39{bottom:170.268267pt;}
.yd1{bottom:171.022933pt;}
.y156{bottom:172.930933pt;}
.yfd{bottom:185.040133pt;}
.y15{bottom:185.126933pt;}
.yd0{bottom:185.205467pt;}
.y11f{bottom:185.978933pt;}
.y17b{bottom:186.100267pt;}
.y132{bottom:186.387867pt;}
.y9c{bottom:186.388267pt;}
.y5f{bottom:186.944267pt;}
.y38{bottom:187.868267pt;}
.y155{bottom:188.930933pt;}
.ycf{bottom:199.605467pt;}
.y14{bottom:201.126933pt;}
.yc0{bottom:202.097600pt;}
.yfc{bottom:202.640133pt;}
.y131{bottom:203.987867pt;}
.y83{bottom:203.988267pt;}
.y11e{bottom:204.158933pt;}
.y5e{bottom:204.544267pt;}
.y37{bottom:205.468267pt;}
.y17a{bottom:209.660267pt;}
.y154{bottom:212.489600pt;}
.y13{bottom:217.126933pt;}
.yce{bottom:218.001600pt;}
.ybf{bottom:219.697600pt;}
.yfb{bottom:220.240133pt;}
.y130{bottom:221.587867pt;}
.y82{bottom:221.588267pt;}
.y5d{bottom:222.144267pt;}
.y11d{bottom:222.337600pt;}
.y36{bottom:223.068267pt;}
.y179{bottom:225.660267pt;}
.ycd{bottom:232.185600pt;}
.y12{bottom:233.126933pt;}
.y153{bottom:236.048267pt;}
.yfa{bottom:237.840133pt;}
.y12f{bottom:239.187867pt;}
.y81{bottom:239.188267pt;}
.y5c{bottom:239.744267pt;}
.y11c{bottom:240.517600pt;}
.y35{bottom:240.668267pt;}
.ycc{bottom:246.585600pt;}
.y11{bottom:249.126933pt;}
.y178{bottom:249.218933pt;}
.ybe{bottom:254.897600pt;}
.yf9{bottom:255.440133pt;}
.y12e{bottom:256.787867pt;}
.y80{bottom:256.788267pt;}
.y5b{bottom:257.344267pt;}
.y34{bottom:258.268267pt;}
.y152{bottom:259.608267pt;}
.ycb{bottom:264.981600pt;}
.y10{bottom:265.126933pt;}
.y177{bottom:265.218933pt;}
.yf8{bottom:273.040133pt;}
.y11b{bottom:273.040267pt;}
.y12d{bottom:274.387867pt;}
.y7f{bottom:274.388267pt;}
.y5a{bottom:274.944267pt;}
.y151{bottom:275.608267pt;}
.y33{bottom:275.868267pt;}
.yf{bottom:281.126933pt;}
.y176{bottom:288.777600pt;}
.yca{bottom:290.097600pt;}
.yf7{bottom:290.640133pt;}
.y11a{bottom:290.640267pt;}
.y12c{bottom:291.987867pt;}
.y7e{bottom:291.988267pt;}
.y59{bottom:292.544267pt;}
.y32{bottom:293.468267pt;}
.ye{bottom:297.126933pt;}
.y150{bottom:299.166933pt;}
.y175{bottom:304.777600pt;}
.ybd{bottom:307.697600pt;}
.yf6{bottom:308.240133pt;}
.y119{bottom:308.240267pt;}
.y12b{bottom:309.587867pt;}
.y7d{bottom:309.588267pt;}
.y58{bottom:310.144267pt;}
.y31{bottom:311.068267pt;}
.yd{bottom:313.126933pt;}
.y174{bottom:320.777600pt;}
.y14f{bottom:322.725600pt;}
.ybc{bottom:325.297600pt;}
.yf5{bottom:325.840133pt;}
.y118{bottom:325.840267pt;}
.y12a{bottom:327.187867pt;}
.y7c{bottom:327.188267pt;}
.y57{bottom:327.744267pt;}
.y30{bottom:328.668267pt;}
.y14e{bottom:338.725600pt;}
.ybb{bottom:342.897600pt;}
.yf4{bottom:343.440133pt;}
.y117{bottom:343.440267pt;}
.y173{bottom:344.337600pt;}
.y129{bottom:344.787867pt;}
.y7b{bottom:344.788267pt;}
.y56{bottom:345.344267pt;}
.y2f{bottom:346.268267pt;}
.yba{bottom:360.497600pt;}
.yf3{bottom:361.040133pt;}
.y116{bottom:361.040267pt;}
.y14d{bottom:362.284267pt;}
.y128{bottom:362.387867pt;}
.y7a{bottom:362.388267pt;}
.y55{bottom:362.944267pt;}
.y2e{bottom:363.868267pt;}
.yc{bottom:367.528533pt;}
.y172{bottom:367.896267pt;}
.yb9{bottom:378.097600pt;}
.y14c{bottom:378.284267pt;}
.yf2{bottom:378.640133pt;}
.y115{bottom:378.640267pt;}
.y127{bottom:379.987867pt;}
.y79{bottom:379.988267pt;}
.y54{bottom:380.544267pt;}
.y2d{bottom:381.468267pt;}
.y171{bottom:383.896267pt;}
.yb{bottom:384.861600pt;}
.yb8{bottom:395.697600pt;}
.yf1{bottom:396.240133pt;}
.y114{bottom:396.240267pt;}
.y78{bottom:397.587867pt;}
.y9b{bottom:397.588267pt;}
.y53{bottom:398.144267pt;}
.y2c{bottom:399.068267pt;}
.y14b{bottom:401.844267pt;}
.ya{bottom:402.194667pt;}
.y170{bottom:407.454933pt;}
.yb7{bottom:413.297600pt;}
.yf0{bottom:413.840133pt;}
.y113{bottom:413.840267pt;}
.y77{bottom:415.187867pt;}
.y9a{bottom:415.188267pt;}
.y52{bottom:415.744267pt;}
.y2b{bottom:416.668267pt;}
.y14a{bottom:417.844267pt;}
.y9{bottom:419.527733pt;}
.y16f{bottom:423.454933pt;}
.yb6{bottom:430.897600pt;}
.yef{bottom:431.440133pt;}
.y112{bottom:431.440267pt;}
.y76{bottom:432.787867pt;}
.y99{bottom:432.788267pt;}
.y51{bottom:433.344267pt;}
.y2a{bottom:434.268267pt;}
.y8{bottom:436.860800pt;}
.y149{bottom:441.402933pt;}
.y16e{bottom:447.013600pt;}
.yb5{bottom:448.497600pt;}
.yee{bottom:449.040133pt;}
.y111{bottom:449.040267pt;}
.y75{bottom:450.387867pt;}
.y98{bottom:450.388267pt;}
.y50{bottom:450.944267pt;}
.y29{bottom:451.868267pt;}
.y7{bottom:454.193867pt;}
.y148{bottom:457.402933pt;}
.y16d{bottom:463.013600pt;}
.yb4{bottom:466.097600pt;}
.yed{bottom:466.640133pt;}
.y110{bottom:466.640267pt;}
.y74{bottom:467.987867pt;}
.y97{bottom:467.988267pt;}
.y4f{bottom:468.544267pt;}
.y28{bottom:469.468267pt;}
.y6{bottom:471.526933pt;}
.y147{bottom:480.961600pt;}
.yb3{bottom:483.697600pt;}
.yec{bottom:484.240133pt;}
.y10f{bottom:484.240267pt;}
.y73{bottom:485.587867pt;}
.y96{bottom:485.588267pt;}
.y4e{bottom:486.144267pt;}
.y16c{bottom:486.573600pt;}
.y27{bottom:487.068267pt;}
.y146{bottom:496.961600pt;}
.yb2{bottom:501.297600pt;}
.yeb{bottom:501.840133pt;}
.y10e{bottom:501.840267pt;}
.y16b{bottom:502.573600pt;}
.y72{bottom:503.187867pt;}
.y95{bottom:503.188267pt;}
.y4d{bottom:503.744267pt;}
.y26{bottom:504.668800pt;}
.yb1{bottom:518.897600pt;}
.yea{bottom:519.440133pt;}
.y10d{bottom:519.440267pt;}
.y71{bottom:520.787867pt;}
.y94{bottom:520.788267pt;}
.y4c{bottom:521.344267pt;}
.y25{bottom:522.268800pt;}
.y16a{bottom:526.132267pt;}
.yb0{bottom:536.497600pt;}
.y145{bottom:536.521600pt;}
.ye9{bottom:537.040133pt;}
.y10c{bottom:537.040267pt;}
.y70{bottom:538.387867pt;}
.y93{bottom:538.388267pt;}
.y4b{bottom:538.944267pt;}
.y24{bottom:539.868800pt;}
.y169{bottom:542.132267pt;}
.yaf{bottom:554.097600pt;}
.ye8{bottom:554.640133pt;}
.y10b{bottom:554.640267pt;}
.y6f{bottom:555.987867pt;}
.y92{bottom:555.988267pt;}
.y4a{bottom:556.544267pt;}
.y23{bottom:557.468800pt;}
.y168{bottom:565.690933pt;}
.yae{bottom:571.697600pt;}
.ye7{bottom:572.240133pt;}
.y10a{bottom:572.240267pt;}
.y6e{bottom:573.587867pt;}
.y91{bottom:573.588267pt;}
.y49{bottom:574.144267pt;}
.y22{bottom:575.068800pt;}
.y5{bottom:581.393600pt;}
.y167{bottom:589.250933pt;}
.yad{bottom:589.297600pt;}
.ye6{bottom:589.840133pt;}
.y109{bottom:589.840267pt;}
.yda{bottom:591.187867pt;}
.y90{bottom:591.188267pt;}
.y48{bottom:591.744267pt;}
.y21{bottom:592.668800pt;}
.y4{bottom:597.393600pt;}
.y166{bottom:605.250933pt;}
.yac{bottom:606.897600pt;}
.ye5{bottom:607.440133pt;}
.y108{bottom:607.440267pt;}
.y6d{bottom:608.787867pt;}
.y8f{bottom:608.788267pt;}
.y47{bottom:609.344267pt;}
.y144{bottom:610.121200pt;}
.y20{bottom:610.268800pt;}
.yab{bottom:624.497600pt;}
.y107{bottom:625.040267pt;}
.yd9{bottom:626.387867pt;}
.y8e{bottom:626.388267pt;}
.y46{bottom:626.944267pt;}
.y143{bottom:627.721200pt;}
.y165{bottom:628.809600pt;}
.yaa{bottom:642.097600pt;}
.ye4{bottom:642.640133pt;}
.y106{bottom:642.640267pt;}
.yd8{bottom:643.987867pt;}
.y8d{bottom:643.988267pt;}
.y164{bottom:644.809600pt;}
.y142{bottom:645.321200pt;}
.y1f{bottom:645.468800pt;}
.yc9{bottom:659.697600pt;}
.ya9{bottom:659.698133pt;}
.y105{bottom:660.240267pt;}
.y6c{bottom:661.587867pt;}
.y8c{bottom:661.588267pt;}
.y45{bottom:662.144267pt;}
.y141{bottom:662.921200pt;}
.y163{bottom:668.368267pt;}
.yc8{bottom:677.297600pt;}
.ya8{bottom:677.298133pt;}
.y104{bottom:677.840133pt;}
.y6b{bottom:679.187867pt;}
.y8b{bottom:679.188267pt;}
.y140{bottom:680.521200pt;}
.y162{bottom:684.368267pt;}
.y3{bottom:686.993600pt;}
.yc7{bottom:694.897600pt;}
.ya7{bottom:694.898133pt;}
.ye3{bottom:695.440133pt;}
.y6a{bottom:696.787867pt;}
.y13f{bottom:698.121200pt;}
.y1e{bottom:698.268800pt;}
.y2{bottom:707.260267pt;}
.y161{bottom:707.926933pt;}
.ya6{bottom:712.498133pt;}
.ye2{bottom:713.040133pt;}
.y69{bottom:714.387867pt;}
.y44{bottom:714.944267pt;}
.y13e{bottom:715.721200pt;}
.y1d{bottom:715.868800pt;}
.y160{bottom:723.926933pt;}
.ya5{bottom:730.098133pt;}
.ye1{bottom:730.640133pt;}
.y68{bottom:731.987867pt;}
.y43{bottom:732.544267pt;}
.y13d{bottom:733.321200pt;}
.y1c{bottom:733.468800pt;}
.y15f{bottom:747.486933pt;}
.ya4{bottom:747.698133pt;}
.ye0{bottom:748.240133pt;}
.y67{bottom:749.587867pt;}
.y42{bottom:750.144267pt;}
.y13c{bottom:750.921200pt;}
.y1b{bottom:751.068800pt;}
.ya3{bottom:765.298133pt;}
.ydf{bottom:765.840133pt;}
.y66{bottom:767.187867pt;}
.y41{bottom:767.744267pt;}
.y13b{bottom:768.521200pt;}
.y1a{bottom:768.668800pt;}
.y15e{bottom:771.045600pt;}
.ya2{bottom:782.898133pt;}
.yde{bottom:783.440133pt;}
.y65{bottom:784.787867pt;}
.y40{bottom:785.344267pt;}
.y13a{bottom:786.121200pt;}
.y15d{bottom:787.045600pt;}
.y19{bottom:824.888133pt;}
.y3f{bottom:825.118667pt;}
.y182{bottom:825.118933pt;}
.h11{height:26.132654pt;}
.h8{height:26.133188pt;}
.he{height:26.133721pt;}
.h13{height:26.249842pt;}
.h16{height:26.250375pt;}
.h14{height:26.250908pt;}
.h12{height:30.812875pt;}
.ha{height:33.158854pt;}
.h9{height:42.117188pt;}
.hc{height:42.234375pt;}
.h2{height:42.632812pt;}
.h5{height:46.796875pt;}
.h7{height:46.927083pt;}
.hd{height:47.369792pt;}
.h4{height:49.914247pt;}
.h6{height:51.476562pt;}
.h15{height:51.477096pt;}
.hf{height:51.478162pt;}
.h10{height:51.619792pt;}
.hb{height:52.106771pt;}
.h3{height:75.791667pt;}
.h0{height:870.381600pt;}
.h1{height:870.666667pt;}
.w1{width:605.333333pt;}
.w0{width:605.356933pt;}
.x0{left:0.000000pt;}
.x8{left:84.421467pt;}
.x1{left:88.421467pt;}
.xa{left:96.421467pt;}
.x7{left:100.200933pt;}
.x2{left:113.283600pt;}
.x9{left:114.658267pt;}
.xd{left:118.436267pt;}
.x10{left:132.421467pt;}
.x11{left:136.200933pt;}
.x6{left:137.334267pt;}
.x3{left:139.028667pt;}
.xe{left:163.032933pt;}
.xb{left:259.706267pt;}
.x5{left:387.338267pt;}
.x4{left:426.890267pt;}
.xf{left:447.785067pt;}
.xc{left:507.398267pt;}
}




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