
    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_e6f3ddbaf53df97706d8c8ee.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_78d7db7940b5a6659e67033a.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_3fb31bb796ed881568ca053e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.682129;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_a53ffde63a553e52e9ce2c21.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3d75f2e8a11676e4d1d575b0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_703fd26df45e38e8855ae02a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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);}
.v2{vertical-align:-17.981400px;}
.v3{vertical-align:-4.962000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.980600px;}
.v1{vertical-align:21.978000px;}
.ls4{letter-spacing:-6.580200px;}
.ls6{letter-spacing:-6.276600px;}
.ls11{letter-spacing:-1.427534px;}
.ls2e{letter-spacing:-1.320000px;}
.ls15{letter-spacing:-1.167982px;}
.ls2c{letter-spacing:-0.660000px;}
.ls9{letter-spacing:-0.600000px;}
.ls31{letter-spacing:-0.384780px;}
.ls23{letter-spacing:-0.054000px;}
.ls24{letter-spacing:-0.048600px;}
.ls14{letter-spacing:-0.032400px;}
.ls5{letter-spacing:-0.026400px;}
.ls13{letter-spacing:-0.016200px;}
.ls19{letter-spacing:-0.006600px;}
.ls18{letter-spacing:-0.006000px;}
.ls12{letter-spacing:-0.005400px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003000px;}
.lsb{letter-spacing:0.003600px;}
.ls20{letter-spacing:0.005400px;}
.ls36{letter-spacing:0.006000px;}
.ls16{letter-spacing:0.006600px;}
.lsd{letter-spacing:0.010800px;}
.ls2f{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.019200px;}
.ls1a{letter-spacing:0.019800px;}
.lse{letter-spacing:0.021600px;}
.ls2{letter-spacing:0.026400px;}
.ls35{letter-spacing:0.030000px;}
.ls17{letter-spacing:0.033000px;}
.ls27{letter-spacing:0.165000px;}
.ls2b{letter-spacing:0.184800px;}
.ls28{letter-spacing:0.217800px;}
.ls2a{letter-spacing:0.270600px;}
.ls29{letter-spacing:0.316800px;}
.ls26{letter-spacing:0.330000px;}
.ls21{letter-spacing:0.384780px;}
.ls1b{letter-spacing:0.660000px;}
.ls1c{letter-spacing:0.679800px;}
.ls1d{letter-spacing:0.686400px;}
.ls1e{letter-spacing:0.699600px;}
.ls8{letter-spacing:0.810000px;}
.lsa{letter-spacing:1.490400px;}
.ls2d{letter-spacing:1.524600px;}
.ls34{letter-spacing:1.656000px;}
.ls37{letter-spacing:1.686000px;}
.ls10{letter-spacing:1.821600px;}
.ls33{letter-spacing:2.112000px;}
.ls22{letter-spacing:2.184600px;}
.lsf{letter-spacing:2.808000px;}
.ls1f{letter-spacing:4.059000px;}
.ls25{letter-spacing:5.175291px;}
.ls7{letter-spacing:6.442200px;}
.ls32{letter-spacing:12.774000px;}
.ls30{letter-spacing:15.417600px;}
.lsc{letter-spacing:16.368000px;}
.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;}
}
.ws1{word-spacing:-96.000000px;}
.ws1c{word-spacing:-66.000000px;}
.ws38{word-spacing:-60.000000px;}
.ws12{word-spacing:-54.000000px;}
.ws2{word-spacing:-24.000000px;}
.ws26{word-spacing:-17.160000px;}
.ws2d{word-spacing:-16.830000px;}
.ws3{word-spacing:-16.500000px;}
.ws37{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.500000px;}
.ws27{word-spacing:-10.004280px;}
.ws8{word-spacing:-9.619500px;}
.ws35{word-spacing:-9.234720px;}
.wsb{word-spacing:-8.745000px;}
.ws1d{word-spacing:-8.191966px;}
.ws4{word-spacing:-7.870500px;}
.ws1e{word-spacing:-6.702518px;}
.wsc{word-spacing:-6.283200px;}
.ws3e{word-spacing:-3.654000px;}
.ws29{word-spacing:-3.126600px;}
.ws2b{word-spacing:-2.538000px;}
.ws3f{word-spacing:-2.424000px;}
.ws30{word-spacing:-1.852200px;}
.ws16{word-spacing:-1.722000px;}
.ws2e{word-spacing:-1.564200px;}
.ws18{word-spacing:-1.248000px;}
.ws39{word-spacing:-1.227600px;}
.ws24{word-spacing:-0.604800px;}
.ws5{word-spacing:0.000000px;}
.ws3c{word-spacing:0.018000px;}
.ws20{word-spacing:0.140400px;}
.ws28{word-spacing:0.151800px;}
.ws9{word-spacing:1.254000px;}
.wsf{word-spacing:1.360800px;}
.ws14{word-spacing:2.019600px;}
.ws34{word-spacing:2.332800px;}
.ws6{word-spacing:2.468400px;}
.ws23{word-spacing:3.753000px;}
.ws2a{word-spacing:4.827600px;}
.wsa{word-spacing:4.963200px;}
.ws17{word-spacing:5.124000px;}
.ws40{word-spacing:5.388000px;}
.ws31{word-spacing:5.392200px;}
.ws41{word-spacing:5.394000px;}
.ws25{word-spacing:5.412000px;}
.ws36{word-spacing:5.788200px;}
.ws3d{word-spacing:6.024000px;}
.ws19{word-spacing:6.098400px;}
.ws15{word-spacing:6.264000px;}
.ws1a{word-spacing:6.409800px;}
.ws1b{word-spacing:6.447600px;}
.ws11{word-spacing:7.290000px;}
.ws2f{word-spacing:7.682400px;}
.wsd{word-spacing:7.708800px;}
.ws1f{word-spacing:8.210400px;}
.ws10{word-spacing:8.375400px;}
.ws3b{word-spacing:8.964000px;}
.ws21{word-spacing:9.018000px;}
.ws2c{word-spacing:9.072000px;}
.ws22{word-spacing:10.184400px;}
.wse{word-spacing:10.533600px;}
.ws13{word-spacing:10.824000px;}
.ws3a{word-spacing:12.780000px;}
.ws33{word-spacing:28.236600px;}
.ws32{word-spacing:28.242000px;}
.ws7{word-spacing:625.479600px;}
._a{margin-left:-19.951800px;}
._e{margin-left:-18.329400px;}
._2{margin-left:-16.734000px;}
._4{margin-left:-15.000000px;}
._1{margin-left:-10.636800px;}
._10{margin-left:-8.586600px;}
._7{margin-left:-7.312800px;}
._11{margin-left:-6.058800px;}
._c{margin-left:-4.647600px;}
._f{margin-left:-3.116400px;}
._0{margin-left:-1.833600px;}
._3{width:1.686000px;}
._9{width:2.712600px;}
._b{width:4.243800px;}
._d{width:5.570400px;}
._8{width:6.758400px;}
._15{width:7.788000px;}
._6{width:8.830800px;}
._5{width:9.880200px;}
._12{width:11.226600px;}
._18{width:12.243000px;}
._16{width:14.229600px;}
._1b{width:15.364800px;}
._1e{width:16.714800px;}
._17{width:17.998200px;}
._19{width:19.093800px;}
._1c{width:20.387400px;}
._1a{width:22.695000px;}
._14{width:23.801400px;}
._13{width:24.875400px;}
._1d{width:28.429200px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:31.482000px;}
.fs7{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs6{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;}
.y1{bottom:83.191800px;}
.y1b{bottom:114.085650px;}
.y6c{bottom:118.548900px;}
.y108{bottom:118.550250px;}
.y16e{bottom:120.048300px;}
.y92{bottom:120.048600px;}
.ybb{bottom:120.050400px;}
.y43{bottom:123.043500px;}
.y6b{bottom:135.048600px;}
.y107{bottom:135.049950px;}
.y91{bottom:136.548300px;}
.yba{bottom:136.550100px;}
.y16d{bottom:141.043500px;}
.y42{bottom:147.544350px;}
.y6a{bottom:151.548300px;}
.y106{bottom:151.549650px;}
.yb9{bottom:153.049800px;}
.y1a{bottom:156.667800px;}
.y90{bottom:157.543500px;}
.y16c{bottom:161.051700px;}
.y12b{bottom:167.551800px;}
.y105{bottom:168.049350px;}
.yb8{bottom:169.549500px;}
.ydb{bottom:172.047000px;}
.y69{bottom:172.543500px;}
.y19{bottom:176.467800px;}
.y8f{bottom:177.549300px;}
.y16b{bottom:177.551400px;}
.y104{bottom:184.549050px;}
.yb7{bottom:186.049200px;}
.y180{bottom:186.529500px;}
.y12a{bottom:188.547000px;}
.y68{bottom:188.799300px;}
.y41{bottom:192.265500px;}
.y16a{bottom:194.051100px;}
.y18{bottom:196.267800px;}
.yda{bottom:196.549500px;}
.y144{bottom:197.044350px;}
.y8e{bottom:198.544350px;}
.y103{bottom:201.048750px;}
.yb6{bottom:202.548900px;}
.y17f{bottom:206.329500px;}
.y67{bottom:209.794350px;}
.y40{bottom:210.265500px;}
.y169{bottom:210.550800px;}
.y129{bottom:213.049500px;}
.y17{bottom:216.067800px;}
.y102{bottom:217.548450px;}
.yb5{bottom:219.048600px;}
.yd9{bottom:221.050500px;}
.y143{bottom:221.547000px;}
.y66{bottom:226.051800px;}
.y168{bottom:227.050500px;}
.y101{bottom:234.048150px;}
.y17e{bottom:234.633000px;}
.yb4{bottom:235.548300px;}
.y16{bottom:235.867800px;}
.y3f{bottom:241.765500px;}
.y8d{bottom:242.221500px;}
.y167{bottom:243.550200px;}
.y19e{bottom:244.563000px;}
.yd8{bottom:245.553000px;}
.y65{bottom:247.047000px;}
.y17d{bottom:254.433000px;}
.y100{bottom:255.043350px;}
.y142{bottom:255.580800px;}
.y15{bottom:255.667800px;}
.yb3{bottom:256.543500px;}
.y166{bottom:260.049900px;}
.y3e{bottom:261.565500px;}
.y128{bottom:261.580500px;}
.y8c{bottom:262.021500px;}
.y19d{bottom:264.363000px;}
.y17c{bottom:274.233000px;}
.yff{bottom:275.051700px;}
.y141{bottom:275.380800px;}
.y14{bottom:275.467800px;}
.y165{bottom:276.549600px;}
.yd7{bottom:277.165500px;}
.yb2{bottom:281.044500px;}
.y3d{bottom:281.365500px;}
.y127{bottom:281.380500px;}
.y8b{bottom:281.821500px;}
.y64{bottom:285.421500px;}
.yfe{bottom:291.551400px;}
.y164{bottom:293.049300px;}
.y17b{bottom:294.033000px;}
.y140{bottom:295.180800px;}
.y13{bottom:295.267800px;}
.yd6{bottom:296.965500px;}
.y3c{bottom:301.165500px;}
.y126{bottom:301.180500px;}
.y8a{bottom:301.621500px;}
.y63{bottom:303.421500px;}
.y19c{bottom:303.963000px;}
.yb1{bottom:305.547000px;}
.yfd{bottom:308.051100px;}
.y163{bottom:309.549000px;}
.y13f{bottom:314.980800px;}
.y12{bottom:315.067800px;}
.yd5{bottom:316.765500px;}
.y3b{bottom:320.965500px;}
.y125{bottom:320.980500px;}
.y62{bottom:321.421500px;}
.y17a{bottom:322.338000px;}
.y19b{bottom:323.763000px;}
.yfc{bottom:324.550800px;}
.yb0{bottom:325.554900px;}
.y13e{bottom:334.780800px;}
.y11{bottom:334.867800px;}
.yd4{bottom:336.565500px;}
.y61{bottom:339.421500px;}
.y3a{bottom:340.765500px;}
.y124{bottom:340.780500px;}
.yfb{bottom:341.050500px;}
.y89{bottom:341.221500px;}
.yaf{bottom:342.054600px;}
.y179{bottom:342.138000px;}
.y162{bottom:343.165500px;}
.y19a{bottom:343.563000px;}
.y13d{bottom:354.580800px;}
.y10{bottom:354.667800px;}
.yd3{bottom:356.365500px;}
.yfa{bottom:357.550200px;}
.yae{bottom:358.554300px;}
.y39{bottom:360.565500px;}
.y123{bottom:360.580500px;}
.y88{bottom:361.021500px;}
.y161{bottom:361.165500px;}
.y199{bottom:363.363000px;}
.y178{bottom:370.441500px;}
.y60{bottom:370.921500px;}
.yf9{bottom:374.049900px;}
.y13c{bottom:374.380800px;}
.yf{bottom:374.467800px;}
.yd2{bottom:376.165500px;}
.y160{bottom:379.165500px;}
.yad{bottom:379.549500px;}
.y38{bottom:380.365500px;}
.y122{bottom:380.380500px;}
.y87{bottom:380.821500px;}
.y198{bottom:383.163000px;}
.y177{bottom:390.241500px;}
.yf8{bottom:390.549600px;}
.y5f{bottom:390.721500px;}
.y13b{bottom:394.180800px;}
.ye{bottom:394.267800px;}
.yac{bottom:395.805300px;}
.yd1{bottom:395.965500px;}
.y15f{bottom:397.165500px;}
.y37{bottom:400.165500px;}
.y121{bottom:400.180500px;}
.y86{bottom:400.621500px;}
.y197{bottom:402.962850px;}
.yf7{bottom:407.049300px;}
.y5e{bottom:410.521500px;}
.y13a{bottom:413.980800px;}
.yd{bottom:414.067800px;}
.y15e{bottom:415.165500px;}
.yd0{bottom:415.765800px;}
.yab{bottom:416.800500px;}
.y176{bottom:418.545000px;}
.y36{bottom:419.965500px;}
.y120{bottom:419.980500px;}
.y196{bottom:422.762850px;}
.yf6{bottom:428.044500px;}
.y5d{bottom:430.321500px;}
.y15d{bottom:433.165500px;}
.y139{bottom:433.780800px;}
.yc{bottom:433.867800px;}
.ycf{bottom:435.565800px;}
.y35{bottom:439.765500px;}
.y11f{bottom:439.780500px;}
.y85{bottom:439.921500px;}
.y195{bottom:442.562850px;}
.y175{bottom:446.848500px;}
.yf5{bottom:448.055700px;}
.y5c{bottom:450.121500px;}
.y15c{bottom:451.165500px;}
.y138{bottom:453.580800px;}
.yb{bottom:453.667800px;}
.yce{bottom:455.365800px;}
.y34{bottom:459.564900px;}
.y11e{bottom:459.580500px;}
.y84{bottom:459.721500px;}
.yaa{bottom:461.080500px;}
.yf4{bottom:464.555400px;}
.y15b{bottom:469.165500px;}
.y5b{bottom:469.921500px;}
.y137{bottom:473.380800px;}
.ya{bottom:473.467800px;}
.y174{bottom:475.153500px;}
.ycd{bottom:475.165800px;}
.y83{bottom:477.721500px;}
.y33{bottom:479.364900px;}
.y11d{bottom:479.380500px;}
.ya9{bottom:480.880500px;}
.yf3{bottom:481.055100px;}
.y5a{bottom:489.721500px;}
.y136{bottom:493.180800px;}
.y9{bottom:493.267800px;}
.y173{bottom:494.953500px;}
.ycc{bottom:494.965800px;}
.y82{bottom:495.721500px;}
.yf2{bottom:497.554800px;}
.y32{bottom:499.164900px;}
.y11c{bottom:499.180500px;}
.y15a{bottom:500.664900px;}
.ya8{bottom:500.680500px;}
.y194{bottom:501.962850px;}
.y59{bottom:509.521500px;}
.y8{bottom:513.067800px;}
.y81{bottom:513.721500px;}
.yf1{bottom:514.054500px;}
.ycb{bottom:514.765800px;}
.y31{bottom:518.964900px;}
.y11b{bottom:518.980500px;}
.y159{bottom:520.464900px;}
.ya7{bottom:520.480500px;}
.y193{bottom:521.762850px;}
.y172{bottom:523.257000px;}
.y58{bottom:529.321500px;}
.yf0{bottom:530.554200px;}
.y80{bottom:531.721500px;}
.y135{bottom:532.480500px;}
.y7{bottom:532.867800px;}
.yca{bottom:534.565800px;}
.y30{bottom:538.764900px;}
.y11a{bottom:538.780500px;}
.y158{bottom:540.264900px;}
.ya6{bottom:540.280500px;}
.yef{bottom:547.053900px;}
.y57{bottom:549.121500px;}
.y7f{bottom:549.721500px;}
.y171{bottom:551.560500px;}
.y134{bottom:552.280500px;}
.yc9{bottom:554.365800px;}
.y2f{bottom:558.564900px;}
.y119{bottom:558.580500px;}
.y157{bottom:560.064900px;}
.ya5{bottom:560.080500px;}
.y192{bottom:561.362850px;}
.yee{bottom:563.553600px;}
.y7e{bottom:567.721500px;}
.y56{bottom:568.921500px;}
.y133{bottom:570.280500px;}
.y170{bottom:571.360500px;}
.yc8{bottom:574.165800px;}
.y2e{bottom:578.364900px;}
.y118{bottom:578.380500px;}
.y156{bottom:579.864900px;}
.ya4{bottom:579.880500px;}
.yed{bottom:580.053300px;}
.y191{bottom:581.162850px;}
.y7d{bottom:585.721500px;}
.y132{bottom:588.280500px;}
.y55{bottom:588.721500px;}
.yec{bottom:596.553000px;}
.y2d{bottom:598.164900px;}
.y117{bottom:598.180500px;}
.y155{bottom:599.664900px;}
.ya3{bottom:599.680500px;}
.y190{bottom:600.962850px;}
.y7c{bottom:603.721500px;}
.y131{bottom:606.280500px;}
.y54{bottom:608.521500px;}
.yeb{bottom:613.052700px;}
.yc7{bottom:613.465500px;}
.y2c{bottom:617.964900px;}
.y116{bottom:617.980500px;}
.y154{bottom:619.464900px;}
.y16f{bottom:619.465500px;}
.ya2{bottom:619.480500px;}
.y18f{bottom:620.762850px;}
.y7b{bottom:621.721500px;}
.y53{bottom:628.321500px;}
.yea{bottom:629.552400px;}
.yc6{bottom:633.265500px;}
.y2b{bottom:637.764900px;}
.y115{bottom:637.780500px;}
.y153{bottom:639.264900px;}
.ya1{bottom:639.280500px;}
.y7a{bottom:639.721500px;}
.y18e{bottom:640.562850px;}
.ye9{bottom:646.052100px;}
.y52{bottom:648.121500px;}
.yc5{bottom:651.265500px;}
.y6{bottom:655.267800px;}
.y2a{bottom:657.564900px;}
.y114{bottom:657.580500px;}
.y79{bottom:657.721500px;}
.y152{bottom:659.064900px;}
.ya0{bottom:659.080500px;}
.y18d{bottom:660.362850px;}
.ye8{bottom:662.551800px;}
.y51{bottom:667.921500px;}
.yc4{bottom:669.265500px;}
.y5{bottom:673.267800px;}
.y78{bottom:675.721500px;}
.y29{bottom:677.364900px;}
.y113{bottom:677.380500px;}
.y151{bottom:678.864900px;}
.y9f{bottom:678.880500px;}
.y18c{bottom:680.162850px;}
.ye7{bottom:683.547000px;}
.yc3{bottom:687.265500px;}
.y50{bottom:687.721500px;}
.y77{bottom:693.721500px;}
.y28{bottom:697.164900px;}
.y112{bottom:697.180500px;}
.y130{bottom:697.181100px;}
.y150{bottom:698.664900px;}
.y9e{bottom:698.680500px;}
.ye6{bottom:703.554900px;}
.yc2{bottom:705.265500px;}
.y4f{bottom:707.521500px;}
.y76{bottom:711.721500px;}
.y27{bottom:716.964900px;}
.y111{bottom:716.980500px;}
.y12f{bottom:716.981100px;}
.y14f{bottom:718.464900px;}
.y9d{bottom:718.481100px;}
.y18b{bottom:719.762850px;}
.ye5{bottom:720.054600px;}
.y4e{bottom:727.321500px;}
.y75{bottom:729.721500px;}
.ye4{bottom:736.554300px;}
.y26{bottom:736.764900px;}
.yc1{bottom:736.765500px;}
.y110{bottom:736.780500px;}
.y12e{bottom:736.781100px;}
.y14e{bottom:738.264900px;}
.y9c{bottom:738.281100px;}
.y18a{bottom:739.562850px;}
.y4d{bottom:747.121500px;}
.y4{bottom:750.067800px;}
.y25{bottom:756.564900px;}
.yc0{bottom:756.565500px;}
.y10f{bottom:756.580500px;}
.y12d{bottom:756.581100px;}
.ye3{bottom:757.549500px;}
.y14d{bottom:758.064900px;}
.y9b{bottom:758.081100px;}
.y74{bottom:761.221500px;}
.y4c{bottom:766.921500px;}
.y3{bottom:772.867800px;}
.y24{bottom:776.364900px;}
.ybf{bottom:776.365500px;}
.y10e{bottom:776.380500px;}
.y12c{bottom:776.381100px;}
.y14c{bottom:777.864900px;}
.y9a{bottom:777.881100px;}
.y189{bottom:779.162850px;}
.y73{bottom:781.021500px;}
.y4b{bottom:786.721500px;}
.y2{bottom:795.667800px;}
.y23{bottom:796.164900px;}
.ybe{bottom:796.165500px;}
.ye2{bottom:796.180500px;}
.y10d{bottom:796.181100px;}
.y14b{bottom:797.664900px;}
.y99{bottom:797.681100px;}
.y188{bottom:798.962850px;}
.y72{bottom:800.821500px;}
.y22{bottom:815.964900px;}
.ybd{bottom:815.965500px;}
.ye1{bottom:815.980500px;}
.y10c{bottom:815.981100px;}
.y14a{bottom:817.464900px;}
.y98{bottom:817.481100px;}
.y187{bottom:818.762850px;}
.y71{bottom:820.621500px;}
.y4a{bottom:826.021350px;}
.y21{bottom:835.764900px;}
.ybc{bottom:835.765500px;}
.ye0{bottom:835.780500px;}
.y10b{bottom:835.781100px;}
.y149{bottom:837.264900px;}
.y97{bottom:837.281100px;}
.y186{bottom:838.562850px;}
.y70{bottom:840.421500px;}
.y49{bottom:844.021350px;}
.y20{bottom:855.564900px;}
.ydf{bottom:855.580500px;}
.y10a{bottom:855.581100px;}
.y148{bottom:857.064900px;}
.y96{bottom:857.081100px;}
.y185{bottom:858.362850px;}
.y6f{bottom:860.221500px;}
.y48{bottom:862.021350px;}
.y1f{bottom:875.364900px;}
.yde{bottom:875.380500px;}
.y109{bottom:875.381100px;}
.y147{bottom:876.864900px;}
.y95{bottom:876.881100px;}
.y184{bottom:878.162850px;}
.y47{bottom:880.021350px;}
.y1e{bottom:895.164900px;}
.ydd{bottom:895.181100px;}
.y146{bottom:896.664900px;}
.y94{bottom:896.681100px;}
.y183{bottom:897.962850px;}
.y46{bottom:898.021350px;}
.y6e{bottom:899.521050px;}
.y1d{bottom:914.964900px;}
.ydc{bottom:914.981100px;}
.y45{bottom:916.021350px;}
.y145{bottom:916.464900px;}
.y93{bottom:916.481100px;}
.y6d{bottom:917.521050px;}
.y182{bottom:917.762850px;}
.y44{bottom:960.979350px;}
.y181{bottom:960.979500px;}
.y1c{bottom:962.219850px;}
.h8{height:29.400436px;}
.he{height:29.531672px;}
.hd{height:29.532272px;}
.h16{height:34.664484px;}
.hf{height:37.303711px;}
.h11{height:47.381836px;}
.h12{height:47.513672px;}
.h2{height:47.961914px;}
.hb{height:48.329016px;}
.h5{height:52.646484px;}
.h17{height:52.647084px;}
.h13{height:52.792969px;}
.h10{height:53.291016px;}
.h6{height:57.911133px;}
.hc{height:57.913533px;}
.h15{height:58.069866px;}
.h7{height:58.072266px;}
.h14{height:58.074666px;}
.h4{height:58.620117px;}
.h3{height:85.265625px;}
.h0{height:979.179300px;}
.h1{height:979.500000px;}
.h9{height:1045.984500px;}
.ha{height:1046.250000px;}
.w1{width:681.000000px;}
.w0{width:681.026550px;}
.w2{width:748.347000px;}
.w3{width:748.500000px;}
.x0{left:0.000000px;}
.x1{left:94.974150px;}
.x7{left:127.559100px;}
.x2{left:128.707050px;}
.xe{left:131.811750px;}
.x10{left:141.058950px;}
.xf{left:145.309650px;}
.x3{left:151.893450px;}
.x8{left:161.575500px;}
.xd{left:165.826500px;}
.x9{left:182.835000px;}
.x12{left:184.985700px;}
.xc{left:187.086000px;}
.x6{left:197.371050px;}
.x4{left:224.637450px;}
.xb{left:256.372500px;}
.x13{left:293.016000px;}
.x11{left:297.054000px;}
.x15{left:331.338000px;}
.x14{left:339.129000px;}
.x5{left:417.790050px;}
.xa{left:608.658000px;}
@media print{
.v2{vertical-align:-15.983467pt;}
.v3{vertical-align:-4.410667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.760533pt;}
.v1{vertical-align:19.536000pt;}
.ls4{letter-spacing:-5.849067pt;}
.ls6{letter-spacing:-5.579200pt;}
.ls11{letter-spacing:-1.268919pt;}
.ls2e{letter-spacing:-1.173333pt;}
.ls15{letter-spacing:-1.038206pt;}
.ls2c{letter-spacing:-0.586667pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls31{letter-spacing:-0.342027pt;}
.ls23{letter-spacing:-0.048000pt;}
.ls24{letter-spacing:-0.043200pt;}
.ls14{letter-spacing:-0.028800pt;}
.ls5{letter-spacing:-0.023467pt;}
.ls13{letter-spacing:-0.014400pt;}
.ls19{letter-spacing:-0.005867pt;}
.ls18{letter-spacing:-0.005333pt;}
.ls12{letter-spacing:-0.004800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.002667pt;}
.lsb{letter-spacing:0.003200pt;}
.ls20{letter-spacing:0.004800pt;}
.ls36{letter-spacing:0.005333pt;}
.ls16{letter-spacing:0.005867pt;}
.lsd{letter-spacing:0.009600pt;}
.ls2f{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.017067pt;}
.ls1a{letter-spacing:0.017600pt;}
.lse{letter-spacing:0.019200pt;}
.ls2{letter-spacing:0.023467pt;}
.ls35{letter-spacing:0.026667pt;}
.ls17{letter-spacing:0.029333pt;}
.ls27{letter-spacing:0.146667pt;}
.ls2b{letter-spacing:0.164267pt;}
.ls28{letter-spacing:0.193600pt;}
.ls2a{letter-spacing:0.240533pt;}
.ls29{letter-spacing:0.281600pt;}
.ls26{letter-spacing:0.293333pt;}
.ls21{letter-spacing:0.342027pt;}
.ls1b{letter-spacing:0.586667pt;}
.ls1c{letter-spacing:0.604267pt;}
.ls1d{letter-spacing:0.610133pt;}
.ls1e{letter-spacing:0.621867pt;}
.ls8{letter-spacing:0.720000pt;}
.lsa{letter-spacing:1.324800pt;}
.ls2d{letter-spacing:1.355200pt;}
.ls34{letter-spacing:1.472000pt;}
.ls37{letter-spacing:1.498667pt;}
.ls10{letter-spacing:1.619200pt;}
.ls33{letter-spacing:1.877333pt;}
.ls22{letter-spacing:1.941867pt;}
.lsf{letter-spacing:2.496000pt;}
.ls1f{letter-spacing:3.608000pt;}
.ls25{letter-spacing:4.600259pt;}
.ls7{letter-spacing:5.726400pt;}
.ls32{letter-spacing:11.354667pt;}
.ls30{letter-spacing:13.704533pt;}
.lsc{letter-spacing:14.549333pt;}
.ws1{word-spacing:-85.333333pt;}
.ws1c{word-spacing:-58.666667pt;}
.ws38{word-spacing:-53.333333pt;}
.ws12{word-spacing:-48.000000pt;}
.ws2{word-spacing:-21.333333pt;}
.ws26{word-spacing:-15.253333pt;}
.ws2d{word-spacing:-14.960000pt;}
.ws3{word-spacing:-14.666667pt;}
.ws37{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws27{word-spacing:-8.892693pt;}
.ws8{word-spacing:-8.550667pt;}
.ws35{word-spacing:-8.208640pt;}
.wsb{word-spacing:-7.773333pt;}
.ws1d{word-spacing:-7.281748pt;}
.ws4{word-spacing:-6.996000pt;}
.ws1e{word-spacing:-5.957794pt;}
.wsc{word-spacing:-5.585067pt;}
.ws3e{word-spacing:-3.248000pt;}
.ws29{word-spacing:-2.779200pt;}
.ws2b{word-spacing:-2.256000pt;}
.ws3f{word-spacing:-2.154667pt;}
.ws30{word-spacing:-1.646400pt;}
.ws16{word-spacing:-1.530667pt;}
.ws2e{word-spacing:-1.390400pt;}
.ws18{word-spacing:-1.109333pt;}
.ws39{word-spacing:-1.091200pt;}
.ws24{word-spacing:-0.537600pt;}
.ws5{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.016000pt;}
.ws20{word-spacing:0.124800pt;}
.ws28{word-spacing:0.134933pt;}
.ws9{word-spacing:1.114667pt;}
.wsf{word-spacing:1.209600pt;}
.ws14{word-spacing:1.795200pt;}
.ws34{word-spacing:2.073600pt;}
.ws6{word-spacing:2.194133pt;}
.ws23{word-spacing:3.336000pt;}
.ws2a{word-spacing:4.291200pt;}
.wsa{word-spacing:4.411733pt;}
.ws17{word-spacing:4.554667pt;}
.ws40{word-spacing:4.789333pt;}
.ws31{word-spacing:4.793067pt;}
.ws41{word-spacing:4.794667pt;}
.ws25{word-spacing:4.810667pt;}
.ws36{word-spacing:5.145067pt;}
.ws3d{word-spacing:5.354667pt;}
.ws19{word-spacing:5.420800pt;}
.ws15{word-spacing:5.568000pt;}
.ws1a{word-spacing:5.697600pt;}
.ws1b{word-spacing:5.731200pt;}
.ws11{word-spacing:6.480000pt;}
.ws2f{word-spacing:6.828800pt;}
.wsd{word-spacing:6.852267pt;}
.ws1f{word-spacing:7.298133pt;}
.ws10{word-spacing:7.444800pt;}
.ws3b{word-spacing:7.968000pt;}
.ws21{word-spacing:8.016000pt;}
.ws2c{word-spacing:8.064000pt;}
.ws22{word-spacing:9.052800pt;}
.wse{word-spacing:9.363200pt;}
.ws13{word-spacing:9.621333pt;}
.ws3a{word-spacing:11.360000pt;}
.ws33{word-spacing:25.099200pt;}
.ws32{word-spacing:25.104000pt;}
.ws7{word-spacing:555.981867pt;}
._a{margin-left:-17.734933pt;}
._e{margin-left:-16.292800pt;}
._2{margin-left:-14.874667pt;}
._4{margin-left:-13.333333pt;}
._1{margin-left:-9.454933pt;}
._10{margin-left:-7.632533pt;}
._7{margin-left:-6.500267pt;}
._11{margin-left:-5.385600pt;}
._c{margin-left:-4.131200pt;}
._f{margin-left:-2.770133pt;}
._0{margin-left:-1.629867pt;}
._3{width:1.498667pt;}
._9{width:2.411200pt;}
._b{width:3.772267pt;}
._d{width:4.951467pt;}
._8{width:6.007467pt;}
._15{width:6.922667pt;}
._6{width:7.849600pt;}
._5{width:8.782400pt;}
._12{width:9.979200pt;}
._18{width:10.882667pt;}
._16{width:12.648533pt;}
._1b{width:13.657600pt;}
._1e{width:14.857600pt;}
._17{width:15.998400pt;}
._19{width:16.972267pt;}
._1c{width:18.122133pt;}
._1a{width:20.173333pt;}
._14{width:21.156800pt;}
._13{width:22.111467pt;}
._1d{width:25.270400pt;}
.fs5{font-size:27.984000pt;}
.fs7{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs6{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;}
.y1{bottom:73.948267pt;}
.y1b{bottom:101.409467pt;}
.y6c{bottom:105.376800pt;}
.y108{bottom:105.378000pt;}
.y16e{bottom:106.709600pt;}
.y92{bottom:106.709867pt;}
.ybb{bottom:106.711467pt;}
.y43{bottom:109.372000pt;}
.y6b{bottom:120.043200pt;}
.y107{bottom:120.044400pt;}
.y91{bottom:121.376267pt;}
.yba{bottom:121.377867pt;}
.y16d{bottom:125.372000pt;}
.y42{bottom:131.150533pt;}
.y6a{bottom:134.709600pt;}
.y106{bottom:134.710800pt;}
.yb9{bottom:136.044267pt;}
.y1a{bottom:139.260267pt;}
.y90{bottom:140.038667pt;}
.y16c{bottom:143.157067pt;}
.y12b{bottom:148.934933pt;}
.y105{bottom:149.377200pt;}
.yb8{bottom:150.710667pt;}
.ydb{bottom:152.930667pt;}
.y69{bottom:153.372000pt;}
.y19{bottom:156.860267pt;}
.y8f{bottom:157.821600pt;}
.y16b{bottom:157.823467pt;}
.y104{bottom:164.043600pt;}
.yb7{bottom:165.377067pt;}
.y180{bottom:165.804000pt;}
.y12a{bottom:167.597333pt;}
.y68{bottom:167.821600pt;}
.y41{bottom:170.902667pt;}
.y16a{bottom:172.489867pt;}
.y18{bottom:174.460267pt;}
.yda{bottom:174.710667pt;}
.y144{bottom:175.150533pt;}
.y8e{bottom:176.483867pt;}
.y103{bottom:178.710000pt;}
.yb6{bottom:180.043467pt;}
.y17f{bottom:183.404000pt;}
.y67{bottom:186.483867pt;}
.y40{bottom:186.902667pt;}
.y169{bottom:187.156267pt;}
.y129{bottom:189.377333pt;}
.y17{bottom:192.060267pt;}
.y102{bottom:193.376400pt;}
.yb5{bottom:194.709867pt;}
.yd9{bottom:196.489333pt;}
.y143{bottom:196.930667pt;}
.y66{bottom:200.934933pt;}
.y168{bottom:201.822667pt;}
.y101{bottom:208.042800pt;}
.y17e{bottom:208.562667pt;}
.yb4{bottom:209.376267pt;}
.y16{bottom:209.660267pt;}
.y3f{bottom:214.902667pt;}
.y8d{bottom:215.308000pt;}
.y167{bottom:216.489067pt;}
.y19e{bottom:217.389333pt;}
.yd8{bottom:218.269333pt;}
.y65{bottom:219.597333pt;}
.y17d{bottom:226.162667pt;}
.y100{bottom:226.705200pt;}
.y142{bottom:227.182933pt;}
.y15{bottom:227.260267pt;}
.yb3{bottom:228.038667pt;}
.y166{bottom:231.155467pt;}
.y3e{bottom:232.502667pt;}
.y128{bottom:232.516000pt;}
.y8c{bottom:232.908000pt;}
.y19d{bottom:234.989333pt;}
.y17c{bottom:243.762667pt;}
.yff{bottom:244.490400pt;}
.y141{bottom:244.782933pt;}
.y14{bottom:244.860267pt;}
.y165{bottom:245.821867pt;}
.yd7{bottom:246.369333pt;}
.yb2{bottom:249.817333pt;}
.y3d{bottom:250.102667pt;}
.y127{bottom:250.116000pt;}
.y8b{bottom:250.508000pt;}
.y64{bottom:253.708000pt;}
.yfe{bottom:259.156800pt;}
.y164{bottom:260.488267pt;}
.y17b{bottom:261.362667pt;}
.y140{bottom:262.382933pt;}
.y13{bottom:262.460267pt;}
.yd6{bottom:263.969333pt;}
.y3c{bottom:267.702667pt;}
.y126{bottom:267.716000pt;}
.y8a{bottom:268.108000pt;}
.y63{bottom:269.708000pt;}
.y19c{bottom:270.189333pt;}
.yb1{bottom:271.597333pt;}
.yfd{bottom:273.823200pt;}
.y163{bottom:275.154667pt;}
.y13f{bottom:279.982933pt;}
.y12{bottom:280.060267pt;}
.yd5{bottom:281.569333pt;}
.y3b{bottom:285.302667pt;}
.y125{bottom:285.316000pt;}
.y62{bottom:285.708000pt;}
.y17a{bottom:286.522667pt;}
.y19b{bottom:287.789333pt;}
.yfc{bottom:288.489600pt;}
.yb0{bottom:289.382133pt;}
.y13e{bottom:297.582933pt;}
.y11{bottom:297.660267pt;}
.yd4{bottom:299.169333pt;}
.y61{bottom:301.708000pt;}
.y3a{bottom:302.902667pt;}
.y124{bottom:302.916000pt;}
.yfb{bottom:303.156000pt;}
.y89{bottom:303.308000pt;}
.yaf{bottom:304.048533pt;}
.y179{bottom:304.122667pt;}
.y162{bottom:305.036000pt;}
.y19a{bottom:305.389333pt;}
.y13d{bottom:315.182933pt;}
.y10{bottom:315.260267pt;}
.yd3{bottom:316.769333pt;}
.yfa{bottom:317.822400pt;}
.yae{bottom:318.714933pt;}
.y39{bottom:320.502667pt;}
.y123{bottom:320.516000pt;}
.y88{bottom:320.908000pt;}
.y161{bottom:321.036000pt;}
.y199{bottom:322.989333pt;}
.y178{bottom:329.281333pt;}
.y60{bottom:329.708000pt;}
.yf9{bottom:332.488800pt;}
.y13c{bottom:332.782933pt;}
.yf{bottom:332.860267pt;}
.yd2{bottom:334.369333pt;}
.y160{bottom:337.036000pt;}
.yad{bottom:337.377333pt;}
.y38{bottom:338.102667pt;}
.y122{bottom:338.116000pt;}
.y87{bottom:338.508000pt;}
.y198{bottom:340.589333pt;}
.y177{bottom:346.881333pt;}
.yf8{bottom:347.155200pt;}
.y5f{bottom:347.308000pt;}
.y13b{bottom:350.382933pt;}
.ye{bottom:350.460267pt;}
.yac{bottom:351.826933pt;}
.yd1{bottom:351.969333pt;}
.y15f{bottom:353.036000pt;}
.y37{bottom:355.702667pt;}
.y121{bottom:355.716000pt;}
.y86{bottom:356.108000pt;}
.y197{bottom:358.189200pt;}
.yf7{bottom:361.821600pt;}
.y5e{bottom:364.908000pt;}
.y13a{bottom:367.982933pt;}
.yd{bottom:368.060267pt;}
.y15e{bottom:369.036000pt;}
.yd0{bottom:369.569600pt;}
.yab{bottom:370.489333pt;}
.y176{bottom:372.040000pt;}
.y36{bottom:373.302667pt;}
.y120{bottom:373.316000pt;}
.y196{bottom:375.789200pt;}
.yf6{bottom:380.484000pt;}
.y5d{bottom:382.508000pt;}
.y15d{bottom:385.036000pt;}
.y139{bottom:385.582933pt;}
.yc{bottom:385.660267pt;}
.ycf{bottom:387.169600pt;}
.y35{bottom:390.902667pt;}
.y11f{bottom:390.916000pt;}
.y85{bottom:391.041333pt;}
.y195{bottom:393.389200pt;}
.y175{bottom:397.198667pt;}
.yf5{bottom:398.271733pt;}
.y5c{bottom:400.108000pt;}
.y15c{bottom:401.036000pt;}
.y138{bottom:403.182933pt;}
.yb{bottom:403.260267pt;}
.yce{bottom:404.769600pt;}
.y34{bottom:408.502133pt;}
.y11e{bottom:408.516000pt;}
.y84{bottom:408.641333pt;}
.yaa{bottom:409.849333pt;}
.yf4{bottom:412.938133pt;}
.y15b{bottom:417.036000pt;}
.y5b{bottom:417.708000pt;}
.y137{bottom:420.782933pt;}
.ya{bottom:420.860267pt;}
.y174{bottom:422.358667pt;}
.ycd{bottom:422.369600pt;}
.y83{bottom:424.641333pt;}
.y33{bottom:426.102133pt;}
.y11d{bottom:426.116000pt;}
.ya9{bottom:427.449333pt;}
.yf3{bottom:427.604533pt;}
.y5a{bottom:435.308000pt;}
.y136{bottom:438.382933pt;}
.y9{bottom:438.460267pt;}
.y173{bottom:439.958667pt;}
.ycc{bottom:439.969600pt;}
.y82{bottom:440.641333pt;}
.yf2{bottom:442.270933pt;}
.y32{bottom:443.702133pt;}
.y11c{bottom:443.716000pt;}
.y15a{bottom:445.035467pt;}
.ya8{bottom:445.049333pt;}
.y194{bottom:446.189200pt;}
.y59{bottom:452.908000pt;}
.y8{bottom:456.060267pt;}
.y81{bottom:456.641333pt;}
.yf1{bottom:456.937333pt;}
.ycb{bottom:457.569600pt;}
.y31{bottom:461.302133pt;}
.y11b{bottom:461.316000pt;}
.y159{bottom:462.635467pt;}
.ya7{bottom:462.649333pt;}
.y193{bottom:463.789200pt;}
.y172{bottom:465.117333pt;}
.y58{bottom:470.508000pt;}
.yf0{bottom:471.603733pt;}
.y80{bottom:472.641333pt;}
.y135{bottom:473.316000pt;}
.y7{bottom:473.660267pt;}
.yca{bottom:475.169600pt;}
.y30{bottom:478.902133pt;}
.y11a{bottom:478.916000pt;}
.y158{bottom:480.235467pt;}
.ya6{bottom:480.249333pt;}
.yef{bottom:486.270133pt;}
.y57{bottom:488.108000pt;}
.y7f{bottom:488.641333pt;}
.y171{bottom:490.276000pt;}
.y134{bottom:490.916000pt;}
.yc9{bottom:492.769600pt;}
.y2f{bottom:496.502133pt;}
.y119{bottom:496.516000pt;}
.y157{bottom:497.835467pt;}
.ya5{bottom:497.849333pt;}
.y192{bottom:498.989200pt;}
.yee{bottom:500.936533pt;}
.y7e{bottom:504.641333pt;}
.y56{bottom:505.708000pt;}
.y133{bottom:506.916000pt;}
.y170{bottom:507.876000pt;}
.yc8{bottom:510.369600pt;}
.y2e{bottom:514.102133pt;}
.y118{bottom:514.116000pt;}
.y156{bottom:515.435467pt;}
.ya4{bottom:515.449333pt;}
.yed{bottom:515.602933pt;}
.y191{bottom:516.589200pt;}
.y7d{bottom:520.641333pt;}
.y132{bottom:522.916000pt;}
.y55{bottom:523.308000pt;}
.yec{bottom:530.269333pt;}
.y2d{bottom:531.702133pt;}
.y117{bottom:531.716000pt;}
.y155{bottom:533.035467pt;}
.ya3{bottom:533.049333pt;}
.y190{bottom:534.189200pt;}
.y7c{bottom:536.641333pt;}
.y131{bottom:538.916000pt;}
.y54{bottom:540.908000pt;}
.yeb{bottom:544.935733pt;}
.yc7{bottom:545.302667pt;}
.y2c{bottom:549.302133pt;}
.y116{bottom:549.316000pt;}
.y154{bottom:550.635467pt;}
.y16f{bottom:550.636000pt;}
.ya2{bottom:550.649333pt;}
.y18f{bottom:551.789200pt;}
.y7b{bottom:552.641333pt;}
.y53{bottom:558.508000pt;}
.yea{bottom:559.602133pt;}
.yc6{bottom:562.902667pt;}
.y2b{bottom:566.902133pt;}
.y115{bottom:566.916000pt;}
.y153{bottom:568.235467pt;}
.ya1{bottom:568.249333pt;}
.y7a{bottom:568.641333pt;}
.y18e{bottom:569.389200pt;}
.ye9{bottom:574.268533pt;}
.y52{bottom:576.108000pt;}
.yc5{bottom:578.902667pt;}
.y6{bottom:582.460267pt;}
.y2a{bottom:584.502133pt;}
.y114{bottom:584.516000pt;}
.y79{bottom:584.641333pt;}
.y152{bottom:585.835467pt;}
.ya0{bottom:585.849333pt;}
.y18d{bottom:586.989200pt;}
.ye8{bottom:588.934933pt;}
.y51{bottom:593.708000pt;}
.yc4{bottom:594.902667pt;}
.y5{bottom:598.460267pt;}
.y78{bottom:600.641333pt;}
.y29{bottom:602.102133pt;}
.y113{bottom:602.116000pt;}
.y151{bottom:603.435467pt;}
.y9f{bottom:603.449333pt;}
.y18c{bottom:604.589200pt;}
.ye7{bottom:607.597333pt;}
.yc3{bottom:610.902667pt;}
.y50{bottom:611.308000pt;}
.y77{bottom:616.641333pt;}
.y28{bottom:619.702133pt;}
.y112{bottom:619.716000pt;}
.y130{bottom:619.716533pt;}
.y150{bottom:621.035467pt;}
.y9e{bottom:621.049333pt;}
.ye6{bottom:625.382133pt;}
.yc2{bottom:626.902667pt;}
.y4f{bottom:628.908000pt;}
.y76{bottom:632.641333pt;}
.y27{bottom:637.302133pt;}
.y111{bottom:637.316000pt;}
.y12f{bottom:637.316533pt;}
.y14f{bottom:638.635467pt;}
.y9d{bottom:638.649867pt;}
.y18b{bottom:639.789200pt;}
.ye5{bottom:640.048533pt;}
.y4e{bottom:646.508000pt;}
.y75{bottom:648.641333pt;}
.ye4{bottom:654.714933pt;}
.y26{bottom:654.902133pt;}
.yc1{bottom:654.902667pt;}
.y110{bottom:654.916000pt;}
.y12e{bottom:654.916533pt;}
.y14e{bottom:656.235467pt;}
.y9c{bottom:656.249867pt;}
.y18a{bottom:657.389200pt;}
.y4d{bottom:664.108000pt;}
.y4{bottom:666.726933pt;}
.y25{bottom:672.502133pt;}
.yc0{bottom:672.502667pt;}
.y10f{bottom:672.516000pt;}
.y12d{bottom:672.516533pt;}
.ye3{bottom:673.377333pt;}
.y14d{bottom:673.835467pt;}
.y9b{bottom:673.849867pt;}
.y74{bottom:676.641333pt;}
.y4c{bottom:681.708000pt;}
.y3{bottom:686.993600pt;}
.y24{bottom:690.102133pt;}
.ybf{bottom:690.102667pt;}
.y10e{bottom:690.116000pt;}
.y12c{bottom:690.116533pt;}
.y14c{bottom:691.435467pt;}
.y9a{bottom:691.449867pt;}
.y189{bottom:692.589200pt;}
.y73{bottom:694.241333pt;}
.y4b{bottom:699.308000pt;}
.y2{bottom:707.260267pt;}
.y23{bottom:707.702133pt;}
.ybe{bottom:707.702667pt;}
.ye2{bottom:707.716000pt;}
.y10d{bottom:707.716533pt;}
.y14b{bottom:709.035467pt;}
.y99{bottom:709.049867pt;}
.y188{bottom:710.189200pt;}
.y72{bottom:711.841333pt;}
.y22{bottom:725.302133pt;}
.ybd{bottom:725.302667pt;}
.ye1{bottom:725.316000pt;}
.y10c{bottom:725.316533pt;}
.y14a{bottom:726.635467pt;}
.y98{bottom:726.649867pt;}
.y187{bottom:727.789200pt;}
.y71{bottom:729.441333pt;}
.y4a{bottom:734.241200pt;}
.y21{bottom:742.902133pt;}
.ybc{bottom:742.902667pt;}
.ye0{bottom:742.916000pt;}
.y10b{bottom:742.916533pt;}
.y149{bottom:744.235467pt;}
.y97{bottom:744.249867pt;}
.y186{bottom:745.389200pt;}
.y70{bottom:747.041333pt;}
.y49{bottom:750.241200pt;}
.y20{bottom:760.502133pt;}
.ydf{bottom:760.516000pt;}
.y10a{bottom:760.516533pt;}
.y148{bottom:761.835467pt;}
.y96{bottom:761.849867pt;}
.y185{bottom:762.989200pt;}
.y6f{bottom:764.641333pt;}
.y48{bottom:766.241200pt;}
.y1f{bottom:778.102133pt;}
.yde{bottom:778.116000pt;}
.y109{bottom:778.116533pt;}
.y147{bottom:779.435467pt;}
.y95{bottom:779.449867pt;}
.y184{bottom:780.589200pt;}
.y47{bottom:782.241200pt;}
.y1e{bottom:795.702133pt;}
.ydd{bottom:795.716533pt;}
.y146{bottom:797.035467pt;}
.y94{bottom:797.049867pt;}
.y183{bottom:798.189200pt;}
.y46{bottom:798.241200pt;}
.y6e{bottom:799.574267pt;}
.y1d{bottom:813.302133pt;}
.ydc{bottom:813.316533pt;}
.y45{bottom:814.241200pt;}
.y145{bottom:814.635467pt;}
.y93{bottom:814.649867pt;}
.y6d{bottom:815.574267pt;}
.y182{bottom:815.789200pt;}
.y44{bottom:854.203867pt;}
.y181{bottom:854.204000pt;}
.y1c{bottom:855.306533pt;}
.h8{height:26.133721pt;}
.he{height:26.250375pt;}
.hd{height:26.250908pt;}
.h16{height:30.812875pt;}
.hf{height:33.158854pt;}
.h11{height:42.117188pt;}
.h12{height:42.234375pt;}
.h2{height:42.632812pt;}
.hb{height:42.959125pt;}
.h5{height:46.796875pt;}
.h17{height:46.797408pt;}
.h13{height:46.927083pt;}
.h10{height:47.369792pt;}
.h6{height:51.476562pt;}
.hc{height:51.478696pt;}
.h15{height:51.617658pt;}
.h7{height:51.619792pt;}
.h14{height:51.621925pt;}
.h4{height:52.106771pt;}
.h3{height:75.791667pt;}
.h0{height:870.381600pt;}
.h1{height:870.666667pt;}
.h9{height:929.764000pt;}
.ha{height:930.000000pt;}
.w1{width:605.333333pt;}
.w0{width:605.356933pt;}
.w2{width:665.197333pt;}
.w3{width:665.333333pt;}
.x0{left:0.000000pt;}
.x1{left:84.421467pt;}
.x7{left:113.385867pt;}
.x2{left:114.406267pt;}
.xe{left:117.166000pt;}
.x10{left:125.385733pt;}
.xf{left:129.164133pt;}
.x3{left:135.016400pt;}
.x8{left:143.622667pt;}
.xd{left:147.401333pt;}
.x9{left:162.520000pt;}
.x12{left:164.431733pt;}
.xc{left:166.298667pt;}
.x6{left:175.440933pt;}
.x4{left:199.677733pt;}
.xb{left:227.886667pt;}
.x13{left:260.458667pt;}
.x11{left:264.048000pt;}
.x15{left:294.522667pt;}
.x14{left:301.448000pt;}
.x5{left:371.368933pt;}
.xa{left:541.029333pt;}
}




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