
    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_d17ea8c380b85f00672f6290.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1888571dec21a3c32e885331.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_2b8a6d3efedef6b12e4bfa4c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.762695;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_ccd942b874a22f401f445f8c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.102051;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_9cb49d1ac9ba81d032381fab.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bd5eba36e757022eba63db5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4b34692b7b0c636dbfc52c81.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_aa03e41917e273177a485908.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d75f1f2e947d311a0a227886.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-2.400000px;}
.ls4{letter-spacing:-2.016000px;}
.ls11{letter-spacing:-1.800000px;}
.ls8{letter-spacing:-1.200000px;}
.ls16{letter-spacing:-1.176000px;}
.ls5{letter-spacing:-0.816000px;}
.ls9{letter-spacing:-0.768000px;}
.ls13{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.408000px;}
.ls15{letter-spacing:-0.384000px;}
.ls12{letter-spacing:-0.240000px;}
.ls3{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.024000px;}
.ls19{letter-spacing:0.060000px;}
.ls1d{letter-spacing:0.084000px;}
.ls1{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.384000px;}
.ls6{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.552000px;}
.ls0{letter-spacing:0.600000px;}
.ls1b{letter-spacing:0.756000px;}
.lse{letter-spacing:0.816000px;}
.lsb{letter-spacing:1.200000px;}
.ls18{letter-spacing:1.632000px;}
.ls10{letter-spacing:3.000000px;}
.ls17{letter-spacing:12.000000px;}
.ls14{letter-spacing:24.000000px;}
.ls7{letter-spacing:194.400000px;}
.lsd{letter-spacing:194.520000px;}
.ls1e{letter-spacing:265.140000px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.ws1{word-spacing:-38.856000px;}
.ws2{word-spacing:-24.144000px;}
.wsa{word-spacing:-18.432000px;}
.ws7{word-spacing:-18.384000px;}
.wsc{word-spacing:-18.024000px;}
.ws4{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.616000px;}
.wsb{word-spacing:-17.592000px;}
.ws6{word-spacing:-17.232000px;}
.ws10{word-spacing:-16.824000px;}
.ws8{word-spacing:-16.800000px;}
.ws9{word-spacing:-15.000000px;}
.wsd{word-spacing:-14.760000px;}
.ws0{word-spacing:-0.156000px;}
.ws5{word-spacing:-0.084000px;}
.ws3{word-spacing:0.000000px;}
._11{margin-left:-15.858000px;}
._10{margin-left:-14.070000px;}
._e{margin-left:-11.958000px;}
._12{margin-left:-10.218000px;}
._d{margin-left:-9.156000px;}
._f{margin-left:-5.190000px;}
._4{margin-left:-4.152000px;}
._3{margin-left:-3.072000px;}
._0{margin-left:-1.248000px;}
._1{width:1.656000px;}
._2{width:2.742000px;}
._a{width:3.846000px;}
._9{width:5.040000px;}
._b{width:6.672000px;}
._6{width:7.704000px;}
._5{width:8.712000px;}
._7{width:10.566000px;}
._8{width:12.120000px;}
._c{width:13.872000px;}
._13{width:15.144000px;}
._14{width:16.416000px;}
._17{width:19.728000px;}
._15{width:20.904000px;}
._16{width:22.320000px;}
._18{width:23.472000px;}
._1a{width:24.834000px;}
._1d{width:25.848000px;}
._1c{width:27.096000px;}
._1b{width:28.608000px;}
._1e{width:30.168000px;}
._1f{width:33.288000px;}
._20{width:34.392000px;}
._22{width:76.260000px;}
._21{width:78.198000px;}
._23{width:136.662000px;}
._19{width:194.550000px;}
._26{width:265.272000px;}
._24{width:533.736000px;}
._27{width:800.130000px;}
._25{width:1951.752000px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:39.600000px;}
.fs9{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:96.000000px;}
.fsa{font-size:120.000000px;}
.fs2{font-size:144.000000px;}
.fs1{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y17d{bottom:7.800000px;}
.y1a3{bottom:18.585000px;}
.y181{bottom:18.592500px;}
.y16d{bottom:18.600000px;}
.y1a9{bottom:18.615000px;}
.y196{bottom:18.645000px;}
.y177{bottom:19.200000px;}
.y17c{bottom:28.500000px;}
.y176{bottom:39.900000px;}
.y1a2{bottom:40.185000px;}
.y173{bottom:40.200000px;}
.y18e{bottom:40.215000px;}
.y180{bottom:40.237500px;}
.y16c{bottom:40.245000px;}
.y17b{bottom:49.200000px;}
.y16{bottom:57.037500px;}
.y175{bottom:60.600000px;}
.y1a8{bottom:60.615000px;}
.y1a1{bottom:60.630000px;}
.y172{bottom:60.900000px;}
.y18d{bottom:60.915000px;}
.y16b{bottom:60.930000px;}
.y17f{bottom:60.937500px;}
.y195{bottom:60.945000px;}
.y15{bottom:77.737500px;}
.y190{bottom:81.600000px;}
.y193{bottom:81.630000px;}
.y78{bottom:109.537500px;}
.yb9{bottom:110.137500px;}
.y179{bottom:113.137500px;}
.y1a5{bottom:114.037500px;}
.y188{bottom:116.437500px;}
.y14{bottom:116.737500px;}
.y12b{bottom:119.137500px;}
.y159{bottom:119.437500px;}
.y42{bottom:120.937500px;}
.y184{bottom:126.337500px;}
.y77{bottom:126.937500px;}
.y126{bottom:129.337500px;}
.ydc{bottom:131.137500px;}
.y17e{bottom:132.037500px;}
.y76{bottom:132.337500px;}
.y1a6{bottom:132.937500px;}
.y165{bottom:135.337500px;}
.yf9{bottom:136.237500px;}
.y5b{bottom:138.037500px;}
.yb8{bottom:141.337500px;}
.yea{bottom:143.437500px;}
.yaf{bottom:144.037500px;}
.y75{bottom:144.937500px;}
.y28{bottom:149.437500px;}
.y12a{bottom:150.045000px;}
.y158{bottom:150.330000px;}
.y134{bottom:152.430000px;}
.y18b{bottom:154.245000px;}
.y194{bottom:157.830000px;}
.y170{bottom:159.030000px;}
.yfd{bottom:160.245000px;}
.yae{bottom:161.430000px;}
.ydb{bottom:162.030000px;}
.y41{bottom:164.130000px;}
.y183{bottom:164.430000px;}
.yad{bottom:166.830000px;}
.yf8{bottom:167.430000px;}
.y92{bottom:169.275000px;}
.y13{bottom:169.575000px;}
.yb7{bottom:172.275000px;}
.y18f{bottom:173.475000px;}
.y14c{bottom:174.975000px;}
.y174{bottom:177.975000px;}
.yac{bottom:178.575000px;}
.y11b{bottom:179.475000px;}
.y5a{bottom:180.975000px;}
.y129{bottom:181.275000px;}
.y169{bottom:181.875000px;}
.ycb{bottom:184.275000px;}
.ye9{bottom:186.375000px;}
.yfc{bottom:191.475000px;}
.y27{bottom:192.675000px;}
.yda{bottom:193.275000px;}
.y133{bottom:195.375000px;}
.yab{bottom:195.975000px;}
.y113{bottom:198.375000px;}
.yb6{bottom:203.475000px;}
.y74{bottom:205.275000px;}
.y14b{bottom:206.175000px;}
.y40{bottom:207.375000px;}
.yf7{bottom:210.075000px;}
.y123{bottom:210.375000px;}
.y91{bottom:212.175000px;}
.yaa{bottom:213.075000px;}
.y1a0{bottom:214.275000px;}
.yca{bottom:215.475000px;}
.y187{bottom:217.875000px;}
.ya9{bottom:218.475000px;}
.y168{bottom:219.975000px;}
.y164{bottom:221.475000px;}
.y12{bottom:222.375000px;}
.y59{bottom:224.175000px;}
.y157{bottom:224.475000px;}
.ye8{bottom:229.275000px;}
.ya8{bottom:231.075000px;}
.yb5{bottom:234.375000px;}
.y26{bottom:235.575000px;}
.y73{bottom:236.175000px;}
.y14a{bottom:237.075000px;}
.y132{bottom:238.575000px;}
.y90{bottom:243.375000px;}
.yc9{bottom:246.375000px;}
.y3f{bottom:250.575000px;}
.y19f{bottom:252.375000px;}
.yf6{bottom:253.275000px;}
.yf4{bottom:255.375000px;}
.y167{bottom:258.075000px;}
.y163{bottom:264.675000px;}
.ya7{bottom:265.275000px;}
.y58{bottom:267.075000px;}
.y72{bottom:267.375000px;}
.ye7{bottom:272.475000px;}
.y8f{bottom:274.275000px;}
.y11{bottom:275.175000px;}
.yc8{bottom:277.275000px;}
.y25{bottom:278.775000px;}
.y149{bottom:280.275000px;}
.y131{bottom:281.475000px;}
.yfb{bottom:284.475000px;}
.yf3{bottom:286.275000px;}
.y156{bottom:286.575000px;}
.y19e{bottom:290.475000px;}
.y3e{bottom:293.475000px;}
.y166{bottom:296.175000px;}
.ya6{bottom:296.475000px;}
.y71{bottom:298.275000px;}
.y112{bottom:303.375000px;}
.y8e{bottom:305.475000px;}
.y162{bottom:307.575000px;}
.yc7{bottom:308.475000px;}
.y57{bottom:310.275000px;}
.y148{bottom:311.175000px;}
.y16a{bottom:315.075000px;}
.ye6{bottom:315.375000px;}
.y122{bottom:317.475000px;}
.y24{bottom:321.675000px;}
.y130{bottom:324.675000px;}
.ya5{bottom:327.375000px;}
.y10{bottom:327.975000px;}
.y19d{bottom:328.575000px;}
.yd9{bottom:329.475000px;}
.y128{bottom:331.575000px;}
.y111{bottom:334.575000px;}
.y8d{bottom:336.375000px;}
.y3d{bottom:336.675000px;}
.yc6{bottom:339.405000px;}
.y70{bottom:341.505000px;}
.yfa{bottom:346.620000px;}
.y121{bottom:348.420000px;}
.y161{bottom:350.805000px;}
.y56{bottom:353.205000px;}
.y147{bottom:354.405000px;}
.yb4{bottom:358.620000px;}
.yd8{bottom:360.405000px;}
.y155{bottom:360.705000px;}
.y23{bottom:364.905000px;}
.y110{bottom:365.505000px;}
.y19c{bottom:366.705000px;}
.y8c{bottom:367.605000px;}
.ya4{bottom:370.605000px;}
.y6f{bottom:372.420000px;}
.y127{bottom:377.505000px;}
.y3c{bottom:379.620000px;}
.yf{bottom:380.820000px;}
.yc5{bottom:382.620000px;}
.y146{bottom:385.305000px;}
.ye5{bottom:389.505000px;}
.yd7{bottom:391.605000px;}
.y160{bottom:393.705000px;}
.y55{bottom:396.420000px;}
.y10f{bottom:396.705000px;}
.y8b{bottom:398.505000px;}
.ya3{bottom:401.505000px;}
.y6e{bottom:403.605000px;}
.y19b{bottom:404.820000px;}
.y22{bottom:407.820000px;}
.y12f{bottom:410.820000px;}
.yc4{bottom:413.505000px;}
.ye4{bottom:420.705000px;}
.yd6{bottom:422.505000px;}
.y3b{bottom:422.820000px;}
.y10e{bottom:427.620000px;}
.y145{bottom:428.505000px;}
.y8a{bottom:429.705000px;}
.ya2{bottom:432.705000px;}
.y6d{bottom:434.505000px;}
.y15f{bottom:436.905000px;}
.y54{bottom:439.320000px;}
.y19a{bottom:442.920000px;}
.ye{bottom:444.105000px;}
.yc3{bottom:444.705000px;}
.y21{bottom:451.005000px;}
.ye3{bottom:451.620000px;}
.yd5{bottom:453.705000px;}
.y10d{bottom:458.820000px;}
.y144{bottom:459.405000px;}
.y89{bottom:460.620000px;}
.y199{bottom:461.820000px;}
.ya1{bottom:463.620000px;}
.y3a{bottom:465.705000px;}
.y11a{bottom:470.820000px;}
.yc2{bottom:475.620000px;}
.y15e{bottom:479.820000px;}
.y53{bottom:482.505000px;}
.ye2{bottom:482.820000px;}
.yd4{bottom:484.605000px;}
.y10c{bottom:489.705000px;}
.y143{bottom:490.620000px;}
.y88{bottom:491.820000px;}
.y20{bottom:493.905000px;}
.ya0{bottom:494.820000px;}
.y6c{bottom:496.605000px;}
.y39{bottom:496.905000px;}
.y198{bottom:499.905000px;}
.y119{bottom:501.705000px;}
.yc1{bottom:506.820000px;}
.ye1{bottom:513.750000px;}
.yd3{bottom:515.850000px;}
.yd{bottom:520.050000px;}
.y10b{bottom:520.950000px;}
.y87{bottom:522.750000px;}
.y15d{bottom:523.050000px;}
.y52{bottom:525.450000px;}
.y9f{bottom:525.750000px;}
.y38{bottom:527.850000px;}
.y1b8{bottom:528.450000px;}
.y118{bottom:532.950000px;}
.y142{bottom:533.550000px;}
.y1f{bottom:537.150000px;}
.yc0{bottom:537.750000px;}
.y197{bottom:538.050000px;}
.y12e{bottom:539.850000px;}
.ye0{bottom:544.950000px;}
.yd2{bottom:546.750000px;}
.y86{bottom:553.950000px;}
.y16f{bottom:555.450000px;}
.y9e{bottom:556.950000px;}
.y6b{bottom:558.750000px;}
.y37{bottom:559.050000px;}
.y10a{bottom:563.850000px;}
.y51{bottom:564.150000px;}
.y141{bottom:564.750000px;}
.y15c{bottom:565.950000px;}
.y1b7{bottom:566.550000px;}
.ybf{bottom:568.950000px;}
.y154{bottom:571.050000px;}
.y171{bottom:574.350000px;}
.yf5{bottom:575.850000px;}
.yf2{bottom:577.950000px;}
.y1e{bottom:580.050000px;}
.y12d{bottom:583.050000px;}
.y85{bottom:584.850000px;}
.yc{bottom:586.650000px;}
.y9d{bottom:587.850000px;}
.y36{bottom:589.950000px;}
.y109{bottom:595.050000px;}
.ybe{bottom:599.850000px;}
.y153{bottom:601.950000px;}
.y50{bottom:602.550000px;}
.y1b6{bottom:604.650000px;}
.y191{bottom:604.950000px;}
.y178{bottom:605.250000px;}
.y140{bottom:607.650000px;}
.y120{bottom:608.850000px;}
.y15b{bottom:609.150000px;}
.y182{bottom:610.650000px;}
.y9c{bottom:619.050000px;}
.y6a{bottom:620.850000px;}
.y35{bottom:621.150000px;}
.y1d{bottom:623.250000px;}
.y192{bottom:623.850000px;}
.y17a{bottom:624.150000px;}
.y108{bottom:625.950000px;}
.y84{bottom:628.050000px;}
.y185{bottom:629.550000px;}
.yb3{bottom:631.050000px;}
.y13f{bottom:638.850000px;}
.y11f{bottom:640.050000px;}
.y4f{bottom:641.250000px;}
.y1b5{bottom:642.750000px;}
.y152{bottom:645.150000px;}
.yb{bottom:646.350000px;}
.y9b{bottom:649.950000px;}
.y34{bottom:652.050000px;}
.y107{bottom:657.150000px;}
.y1a4{bottom:657.450000px;}
.yb2{bottom:661.950000px;}
.y69{bottom:664.050000px;}
.y1c{bottom:666.150000px;}
.y12c{bottom:669.150000px;}
.y83{bottom:670.950000px;}
.y151{bottom:676.080000px;}
.y1a7{bottom:676.380000px;}
.y4e{bottom:679.695000px;}
.y1b4{bottom:680.580000px;}
.y9a{bottom:681.180000px;}
.y13e{bottom:681.780000px;}
.yd1{bottom:682.995000px;}
.y186{bottom:687.480000px;}
.y106{bottom:688.080000px;}
.ya{bottom:688.980000px;}
.y18a{bottom:689.580000px;}
.yb1{bottom:693.195000px;}
.y68{bottom:694.995000px;}
.y33{bottom:695.280000px;}
.y189{bottom:706.380000px;}
.y150{bottom:707.280000px;}
.y18c{bottom:708.780000px;}
.y1b{bottom:709.380000px;}
.ydf{bottom:712.095000px;}
.y82{bottom:714.195000px;}
.y4d{bottom:718.380000px;}
.y1b3{bottom:718.695000px;}
.y105{bottom:719.280000px;}
.y98{bottom:724.095000px;}
.y13d{bottom:724.980000px;}
.y67{bottom:726.195000px;}
.y99{bottom:730.980000px;}
.y9{bottom:731.580000px;}
.y32{bottom:738.180000px;}
.yde{bottom:743.280000px;}
.y81{bottom:745.080000px;}
.y104{bottom:750.180000px;}
.y1a{bottom:752.280000px;}
.y97{bottom:755.280000px;}
.y13c{bottom:755.880000px;}
.y4c{bottom:756.780000px;}
.y66{bottom:757.080000px;}
.y117{bottom:762.180000px;}
.ydd{bottom:774.195000px;}
.y80{bottom:776.295000px;}
.y31{bottom:781.380000px;}
.y96{bottom:786.195000px;}
.y65{bottom:788.295000px;}
.y8{bottom:790.080000px;}
.y116{bottom:793.380000px;}
.y1b2{bottom:794.880000px;}
.y19{bottom:795.480000px;}
.ybd{bottom:798.195000px;}
.y13b{bottom:798.795000px;}
.y125{bottom:805.380000px;}
.yd0{bottom:807.195000px;}
.y14f{bottom:812.295000px;}
.y95{bottom:817.380000px;}
.y64{bottom:819.195000px;}
.y7f{bottom:821.280000px;}
.y30{bottom:824.295000px;}
.ybc{bottom:829.380000px;}
.y1b1{bottom:832.980000px;}
.y4b{bottom:833.880000px;}
.y124{bottom:836.295000px;}
.y18{bottom:838.380000px;}
.y13a{bottom:841.980000px;}
.y94{bottom:848.325000px;}
.y103{bottom:855.525000px;}
.ybb{bottom:860.325000px;}
.y63{bottom:862.425000px;}
.y7{bottom:866.025000px;}
.y2f{bottom:867.525000px;}
.ycf{bottom:869.325000px;}
.y1b0{bottom:871.125000px;}
.y4a{bottom:872.625000px;}
.y93{bottom:879.525000px;}
.yf1{bottom:881.325000px;}
.y17{bottom:881.625000px;}
.y139{bottom:885.225000px;}
.y102{bottom:886.425000px;}
.yba{bottom:891.525000px;}
.y62{bottom:893.325000px;}
.y15a{bottom:898.425000px;}
.yce{bottom:900.525000px;}
.y1af{bottom:909.225000px;}
.y2e{bottom:910.425000px;}
.y49{bottom:911.025000px;}
.y101{bottom:917.625000px;}
.yb0{bottom:922.425000px;}
.y6{bottom:924.525000px;}
.y138{bottom:928.125000px;}
.y14e{bottom:929.625000px;}
.y11e{bottom:931.425000px;}
.y2d{bottom:941.625000px;}
.ycd{bottom:945.525000px;}
.y1ae{bottom:947.025000px;}
.y100{bottom:948.525000px;}
.y48{bottom:949.725000px;}
.y7e{bottom:953.625000px;}
.y61{bottom:955.425000px;}
.y14d{bottom:960.525000px;}
.yf0{bottom:967.425000px;}
.y5{bottom:967.725000px;}
.y137{bottom:971.325000px;}
.y2c{bottom:972.525000px;}
.y11d{bottom:976.725000px;}
.yff{bottom:979.725000px;}
.y7d{bottom:984.525000px;}
.y1ad{bottom:985.125000px;}
.y60{bottom:986.625000px;}
.y47{bottom:988.125000px;}
.y115{bottom:991.425000px;}
.ycc{bottom:991.725000px;}
.yef{bottom:998.625000px;}
.y2b{bottom:1003.725000px;}
.y4{bottom:1010.625000px;}
.y136{bottom:1014.225000px;}
.y7c{bottom:1015.755000px;}
.y5f{bottom:1017.570000px;}
.yfe{bottom:1022.355000px;}
.y11c{bottom:1022.670000px;}
.y1ac{bottom:1023.255000px;}
.y46{bottom:1026.855000px;}
.yee{bottom:1029.570000px;}
.y2a{bottom:1034.670000px;}
.y7b{bottom:1046.670000px;}
.y5e{bottom:1048.755000px;}
.y3{bottom:1053.855000px;}
.y135{bottom:1057.155000px;}
.yed{bottom:1060.755000px;}
.y45{bottom:1061.070000px;}
.y1ab{bottom:1061.355000px;}
.y29{bottom:1065.855000px;}
.y7a{bottom:1077.870000px;}
.y44{bottom:1084.755000px;}
.yec{bottom:1091.670000px;}
.y5c{bottom:1093.755000px;}
.y2{bottom:1096.755000px;}
.y1aa{bottom:1099.455000px;}
.y5d{bottom:1101.255000px;}
.y79{bottom:1108.755000px;}
.y114{bottom:1115.670000px;}
.yeb{bottom:1136.955000px;}
.y16e{bottom:1137.570000px;}
.y43{bottom:1139.655000px;}
.y1{bottom:1139.955000px;}
.hb{height:38.865234px;}
.hd{height:47.109375px;}
.ha{height:54.421875px;}
.hc{height:58.886719px;}
.he{height:64.546875px;}
.h15{height:65.437500px;}
.h5{height:66.585938px;}
.hf{height:70.628906px;}
.h2{height:70.664062px;}
.h7{height:72.562500px;}
.h14{height:76.800000px;}
.h18{height:76.837500px;}
.h13{height:77.100000px;}
.h11{height:77.137500px;}
.h10{height:82.441406px;}
.h9{height:84.656250px;}
.h6{height:88.781250px;}
.h8{height:96.750000px;}
.h16{height:97.800000px;}
.h17{height:97.837500px;}
.h12{height:117.773438px;}
.h4{height:133.171875px;}
.h3{height:144.269531px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:637.095000px;}
.w6{width:637.380000px;}
.w9{width:637.680000px;}
.w8{width:637.695000px;}
.w7{width:638.580000px;}
.w5{width:638.595000px;}
.w3{width:893.099973px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:126.337500px;}
.x1{left:127.537487px;}
.x4{left:133.537487px;}
.xd{left:145.537487px;}
.x25{left:159.344987px;}
.xc{left:180.674987px;}
.x23{left:183.074973px;}
.x11{left:186.374987px;}
.x24{left:189.074987px;}
.x2{left:202.874987px;}
.x8{left:245.474987px;}
.x7{left:310.004987px;}
.x3{left:312.404987px;}
.x5{left:330.419987px;}
.x22{left:337.004987px;}
.x10{left:343.619987px;}
.x9{left:344.819987px;}
.x1b{left:373.319987px;}
.x1a{left:374.819987px;}
.x19{left:377.819987px;}
.x15{left:402.719973px;}
.x16{left:408.719987px;}
.xb{left:414.719987px;}
.x17{left:432.449973px;}
.x18{left:438.449987px;}
.xa{left:442.049987px;}
.x6{left:446.549987px;}
.xe{left:547.094973px;}
.xf{left:553.979987px;}
.x13{left:563.594987px;}
.x1d{left:567.479987px;}
.x1c{left:601.694987px;}
.x12{left:630.494987px;}
.x1e{left:677.624973px;}
.x1f{left:683.624987px;}
.x20{left:719.924973px;}
.x21{left:725.924987px;}
.x14{left:765.524987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-2.133333pt;}
.ls4{letter-spacing:-1.792000pt;}
.ls11{letter-spacing:-1.600000pt;}
.ls8{letter-spacing:-1.066667pt;}
.ls16{letter-spacing:-1.045333pt;}
.ls5{letter-spacing:-0.725333pt;}
.ls9{letter-spacing:-0.682667pt;}
.ls13{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.362667pt;}
.ls15{letter-spacing:-0.341333pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.021333pt;}
.ls19{letter-spacing:0.053333pt;}
.ls1d{letter-spacing:0.074667pt;}
.ls1{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.341333pt;}
.ls6{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.490667pt;}
.ls0{letter-spacing:0.533333pt;}
.ls1b{letter-spacing:0.672000pt;}
.lse{letter-spacing:0.725333pt;}
.lsb{letter-spacing:1.066667pt;}
.ls18{letter-spacing:1.450667pt;}
.ls10{letter-spacing:2.666667pt;}
.ls17{letter-spacing:10.666667pt;}
.ls14{letter-spacing:21.333333pt;}
.ls7{letter-spacing:172.800000pt;}
.lsd{letter-spacing:172.906667pt;}
.ls1e{letter-spacing:235.680000pt;}
.wse{word-spacing:-64.000000pt;}
.ws1{word-spacing:-34.538667pt;}
.ws2{word-spacing:-21.461333pt;}
.wsa{word-spacing:-16.384000pt;}
.ws7{word-spacing:-16.341333pt;}
.wsc{word-spacing:-16.021333pt;}
.ws4{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.658667pt;}
.wsb{word-spacing:-15.637333pt;}
.ws6{word-spacing:-15.317333pt;}
.ws10{word-spacing:-14.954667pt;}
.ws8{word-spacing:-14.933333pt;}
.ws9{word-spacing:-13.333333pt;}
.wsd{word-spacing:-13.120000pt;}
.ws0{word-spacing:-0.138667pt;}
.ws5{word-spacing:-0.074667pt;}
.ws3{word-spacing:0.000000pt;}
._11{margin-left:-14.096000pt;}
._10{margin-left:-12.506667pt;}
._e{margin-left:-10.629333pt;}
._12{margin-left:-9.082667pt;}
._d{margin-left:-8.138667pt;}
._f{margin-left:-4.613333pt;}
._4{margin-left:-3.690667pt;}
._3{margin-left:-2.730667pt;}
._0{margin-left:-1.109333pt;}
._1{width:1.472000pt;}
._2{width:2.437333pt;}
._a{width:3.418667pt;}
._9{width:4.480000pt;}
._b{width:5.930667pt;}
._6{width:6.848000pt;}
._5{width:7.744000pt;}
._7{width:9.392000pt;}
._8{width:10.773333pt;}
._c{width:12.330667pt;}
._13{width:13.461333pt;}
._14{width:14.592000pt;}
._17{width:17.536000pt;}
._15{width:18.581333pt;}
._16{width:19.840000pt;}
._18{width:20.864000pt;}
._1a{width:22.074667pt;}
._1d{width:22.976000pt;}
._1c{width:24.085333pt;}
._1b{width:25.429333pt;}
._1e{width:26.816000pt;}
._1f{width:29.589333pt;}
._20{width:30.570667pt;}
._22{width:67.786667pt;}
._21{width:69.509333pt;}
._23{width:121.477333pt;}
._19{width:172.933333pt;}
._26{width:235.797333pt;}
._24{width:474.432000pt;}
._27{width:711.226667pt;}
._25{width:1734.890667pt;}
.fs7{font-size:35.200000pt;}
.fs9{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:85.333333pt;}
.fsa{font-size:106.666667pt;}
.fs2{font-size:128.000000pt;}
.fs1{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y17d{bottom:6.933333pt;}
.y1a3{bottom:16.520000pt;}
.y181{bottom:16.526667pt;}
.y16d{bottom:16.533333pt;}
.y1a9{bottom:16.546667pt;}
.y196{bottom:16.573333pt;}
.y177{bottom:17.066667pt;}
.y17c{bottom:25.333333pt;}
.y176{bottom:35.466667pt;}
.y1a2{bottom:35.720000pt;}
.y173{bottom:35.733333pt;}
.y18e{bottom:35.746667pt;}
.y180{bottom:35.766667pt;}
.y16c{bottom:35.773333pt;}
.y17b{bottom:43.733333pt;}
.y16{bottom:50.700000pt;}
.y175{bottom:53.866667pt;}
.y1a8{bottom:53.880000pt;}
.y1a1{bottom:53.893333pt;}
.y172{bottom:54.133333pt;}
.y18d{bottom:54.146667pt;}
.y16b{bottom:54.160000pt;}
.y17f{bottom:54.166667pt;}
.y195{bottom:54.173333pt;}
.y15{bottom:69.100000pt;}
.y190{bottom:72.533333pt;}
.y193{bottom:72.560000pt;}
.y78{bottom:97.366667pt;}
.yb9{bottom:97.900000pt;}
.y179{bottom:100.566667pt;}
.y1a5{bottom:101.366667pt;}
.y188{bottom:103.500000pt;}
.y14{bottom:103.766667pt;}
.y12b{bottom:105.900000pt;}
.y159{bottom:106.166667pt;}
.y42{bottom:107.500000pt;}
.y184{bottom:112.300000pt;}
.y77{bottom:112.833333pt;}
.y126{bottom:114.966667pt;}
.ydc{bottom:116.566667pt;}
.y17e{bottom:117.366667pt;}
.y76{bottom:117.633333pt;}
.y1a6{bottom:118.166667pt;}
.y165{bottom:120.300000pt;}
.yf9{bottom:121.100000pt;}
.y5b{bottom:122.700000pt;}
.yb8{bottom:125.633333pt;}
.yea{bottom:127.500000pt;}
.yaf{bottom:128.033333pt;}
.y75{bottom:128.833333pt;}
.y28{bottom:132.833333pt;}
.y12a{bottom:133.373333pt;}
.y158{bottom:133.626667pt;}
.y134{bottom:135.493333pt;}
.y18b{bottom:137.106667pt;}
.y194{bottom:140.293333pt;}
.y170{bottom:141.360000pt;}
.yfd{bottom:142.440000pt;}
.yae{bottom:143.493333pt;}
.ydb{bottom:144.026667pt;}
.y41{bottom:145.893333pt;}
.y183{bottom:146.160000pt;}
.yad{bottom:148.293333pt;}
.yf8{bottom:148.826667pt;}
.y92{bottom:150.466667pt;}
.y13{bottom:150.733333pt;}
.yb7{bottom:153.133333pt;}
.y18f{bottom:154.200000pt;}
.y14c{bottom:155.533333pt;}
.y174{bottom:158.200000pt;}
.yac{bottom:158.733333pt;}
.y11b{bottom:159.533333pt;}
.y5a{bottom:160.866667pt;}
.y129{bottom:161.133333pt;}
.y169{bottom:161.666667pt;}
.ycb{bottom:163.800000pt;}
.ye9{bottom:165.666667pt;}
.yfc{bottom:170.200000pt;}
.y27{bottom:171.266667pt;}
.yda{bottom:171.800000pt;}
.y133{bottom:173.666667pt;}
.yab{bottom:174.200000pt;}
.y113{bottom:176.333333pt;}
.yb6{bottom:180.866667pt;}
.y74{bottom:182.466667pt;}
.y14b{bottom:183.266667pt;}
.y40{bottom:184.333333pt;}
.yf7{bottom:186.733333pt;}
.y123{bottom:187.000000pt;}
.y91{bottom:188.600000pt;}
.yaa{bottom:189.400000pt;}
.y1a0{bottom:190.466667pt;}
.yca{bottom:191.533333pt;}
.y187{bottom:193.666667pt;}
.ya9{bottom:194.200000pt;}
.y168{bottom:195.533333pt;}
.y164{bottom:196.866667pt;}
.y12{bottom:197.666667pt;}
.y59{bottom:199.266667pt;}
.y157{bottom:199.533333pt;}
.ye8{bottom:203.800000pt;}
.ya8{bottom:205.400000pt;}
.yb5{bottom:208.333333pt;}
.y26{bottom:209.400000pt;}
.y73{bottom:209.933333pt;}
.y14a{bottom:210.733333pt;}
.y132{bottom:212.066667pt;}
.y90{bottom:216.333333pt;}
.yc9{bottom:219.000000pt;}
.y3f{bottom:222.733333pt;}
.y19f{bottom:224.333333pt;}
.yf6{bottom:225.133333pt;}
.yf4{bottom:227.000000pt;}
.y167{bottom:229.400000pt;}
.y163{bottom:235.266667pt;}
.ya7{bottom:235.800000pt;}
.y58{bottom:237.400000pt;}
.y72{bottom:237.666667pt;}
.ye7{bottom:242.200000pt;}
.y8f{bottom:243.800000pt;}
.y11{bottom:244.600000pt;}
.yc8{bottom:246.466667pt;}
.y25{bottom:247.800000pt;}
.y149{bottom:249.133333pt;}
.y131{bottom:250.200000pt;}
.yfb{bottom:252.866667pt;}
.yf3{bottom:254.466667pt;}
.y156{bottom:254.733333pt;}
.y19e{bottom:258.200000pt;}
.y3e{bottom:260.866667pt;}
.y166{bottom:263.266667pt;}
.ya6{bottom:263.533333pt;}
.y71{bottom:265.133333pt;}
.y112{bottom:269.666667pt;}
.y8e{bottom:271.533333pt;}
.y162{bottom:273.400000pt;}
.yc7{bottom:274.200000pt;}
.y57{bottom:275.800000pt;}
.y148{bottom:276.600000pt;}
.y16a{bottom:280.066667pt;}
.ye6{bottom:280.333333pt;}
.y122{bottom:282.200000pt;}
.y24{bottom:285.933333pt;}
.y130{bottom:288.600000pt;}
.ya5{bottom:291.000000pt;}
.y10{bottom:291.533333pt;}
.y19d{bottom:292.066667pt;}
.yd9{bottom:292.866667pt;}
.y128{bottom:294.733333pt;}
.y111{bottom:297.400000pt;}
.y8d{bottom:299.000000pt;}
.y3d{bottom:299.266667pt;}
.yc6{bottom:301.693333pt;}
.y70{bottom:303.560000pt;}
.yfa{bottom:308.106667pt;}
.y121{bottom:309.706667pt;}
.y161{bottom:311.826667pt;}
.y56{bottom:313.960000pt;}
.y147{bottom:315.026667pt;}
.yb4{bottom:318.773333pt;}
.yd8{bottom:320.360000pt;}
.y155{bottom:320.626667pt;}
.y23{bottom:324.360000pt;}
.y110{bottom:324.893333pt;}
.y19c{bottom:325.960000pt;}
.y8c{bottom:326.760000pt;}
.ya4{bottom:329.426667pt;}
.y6f{bottom:331.040000pt;}
.y127{bottom:335.560000pt;}
.y3c{bottom:337.440000pt;}
.yf{bottom:338.506667pt;}
.yc5{bottom:340.106667pt;}
.y146{bottom:342.493333pt;}
.ye5{bottom:346.226667pt;}
.yd7{bottom:348.093333pt;}
.y160{bottom:349.960000pt;}
.y55{bottom:352.373333pt;}
.y10f{bottom:352.626667pt;}
.y8b{bottom:354.226667pt;}
.ya3{bottom:356.893333pt;}
.y6e{bottom:358.760000pt;}
.y19b{bottom:359.840000pt;}
.y22{bottom:362.506667pt;}
.y12f{bottom:365.173333pt;}
.yc4{bottom:367.560000pt;}
.ye4{bottom:373.960000pt;}
.yd6{bottom:375.560000pt;}
.y3b{bottom:375.840000pt;}
.y10e{bottom:380.106667pt;}
.y145{bottom:380.893333pt;}
.y8a{bottom:381.960000pt;}
.ya2{bottom:384.626667pt;}
.y6d{bottom:386.226667pt;}
.y15f{bottom:388.360000pt;}
.y54{bottom:390.506667pt;}
.y19a{bottom:393.706667pt;}
.ye{bottom:394.760000pt;}
.yc3{bottom:395.293333pt;}
.y21{bottom:400.893333pt;}
.ye3{bottom:401.440000pt;}
.yd5{bottom:403.293333pt;}
.y10d{bottom:407.840000pt;}
.y144{bottom:408.360000pt;}
.y89{bottom:409.440000pt;}
.y199{bottom:410.506667pt;}
.ya1{bottom:412.106667pt;}
.y3a{bottom:413.960000pt;}
.y11a{bottom:418.506667pt;}
.yc2{bottom:422.773333pt;}
.y15e{bottom:426.506667pt;}
.y53{bottom:428.893333pt;}
.ye2{bottom:429.173333pt;}
.yd4{bottom:430.760000pt;}
.y10c{bottom:435.293333pt;}
.y143{bottom:436.106667pt;}
.y88{bottom:437.173333pt;}
.y20{bottom:439.026667pt;}
.ya0{bottom:439.840000pt;}
.y6c{bottom:441.426667pt;}
.y39{bottom:441.693333pt;}
.y198{bottom:444.360000pt;}
.y119{bottom:445.960000pt;}
.yc1{bottom:450.506667pt;}
.ye1{bottom:456.666667pt;}
.yd3{bottom:458.533333pt;}
.yd{bottom:462.266667pt;}
.y10b{bottom:463.066667pt;}
.y87{bottom:464.666667pt;}
.y15d{bottom:464.933333pt;}
.y52{bottom:467.066667pt;}
.y9f{bottom:467.333333pt;}
.y38{bottom:469.200000pt;}
.y1b8{bottom:469.733333pt;}
.y118{bottom:473.733333pt;}
.y142{bottom:474.266667pt;}
.y1f{bottom:477.466667pt;}
.yc0{bottom:478.000000pt;}
.y197{bottom:478.266667pt;}
.y12e{bottom:479.866667pt;}
.ye0{bottom:484.400000pt;}
.yd2{bottom:486.000000pt;}
.y86{bottom:492.400000pt;}
.y16f{bottom:493.733333pt;}
.y9e{bottom:495.066667pt;}
.y6b{bottom:496.666667pt;}
.y37{bottom:496.933333pt;}
.y10a{bottom:501.200000pt;}
.y51{bottom:501.466667pt;}
.y141{bottom:502.000000pt;}
.y15c{bottom:503.066667pt;}
.y1b7{bottom:503.600000pt;}
.ybf{bottom:505.733333pt;}
.y154{bottom:507.600000pt;}
.y171{bottom:510.533333pt;}
.yf5{bottom:511.866667pt;}
.yf2{bottom:513.733333pt;}
.y1e{bottom:515.600000pt;}
.y12d{bottom:518.266667pt;}
.y85{bottom:519.866667pt;}
.yc{bottom:521.466667pt;}
.y9d{bottom:522.533333pt;}
.y36{bottom:524.400000pt;}
.y109{bottom:528.933333pt;}
.ybe{bottom:533.200000pt;}
.y153{bottom:535.066667pt;}
.y50{bottom:535.600000pt;}
.y1b6{bottom:537.466667pt;}
.y191{bottom:537.733333pt;}
.y178{bottom:538.000000pt;}
.y140{bottom:540.133333pt;}
.y120{bottom:541.200000pt;}
.y15b{bottom:541.466667pt;}
.y182{bottom:542.800000pt;}
.y9c{bottom:550.266667pt;}
.y6a{bottom:551.866667pt;}
.y35{bottom:552.133333pt;}
.y1d{bottom:554.000000pt;}
.y192{bottom:554.533333pt;}
.y17a{bottom:554.800000pt;}
.y108{bottom:556.400000pt;}
.y84{bottom:558.266667pt;}
.y185{bottom:559.600000pt;}
.yb3{bottom:560.933333pt;}
.y13f{bottom:567.866667pt;}
.y11f{bottom:568.933333pt;}
.y4f{bottom:570.000000pt;}
.y1b5{bottom:571.333333pt;}
.y152{bottom:573.466667pt;}
.yb{bottom:574.533333pt;}
.y9b{bottom:577.733333pt;}
.y34{bottom:579.600000pt;}
.y107{bottom:584.133333pt;}
.y1a4{bottom:584.400000pt;}
.yb2{bottom:588.400000pt;}
.y69{bottom:590.266667pt;}
.y1c{bottom:592.133333pt;}
.y12c{bottom:594.800000pt;}
.y83{bottom:596.400000pt;}
.y151{bottom:600.960000pt;}
.y1a7{bottom:601.226667pt;}
.y4e{bottom:604.173333pt;}
.y1b4{bottom:604.960000pt;}
.y9a{bottom:605.493333pt;}
.y13e{bottom:606.026667pt;}
.yd1{bottom:607.106667pt;}
.y186{bottom:611.093333pt;}
.y106{bottom:611.626667pt;}
.ya{bottom:612.426667pt;}
.y18a{bottom:612.960000pt;}
.yb1{bottom:616.173333pt;}
.y68{bottom:617.773333pt;}
.y33{bottom:618.026667pt;}
.y189{bottom:627.893333pt;}
.y150{bottom:628.693333pt;}
.y18c{bottom:630.026667pt;}
.y1b{bottom:630.560000pt;}
.ydf{bottom:632.973333pt;}
.y82{bottom:634.840000pt;}
.y4d{bottom:638.560000pt;}
.y1b3{bottom:638.840000pt;}
.y105{bottom:639.360000pt;}
.y98{bottom:643.640000pt;}
.y13d{bottom:644.426667pt;}
.y67{bottom:645.506667pt;}
.y99{bottom:649.760000pt;}
.y9{bottom:650.293333pt;}
.y32{bottom:656.160000pt;}
.yde{bottom:660.693333pt;}
.y81{bottom:662.293333pt;}
.y104{bottom:666.826667pt;}
.y1a{bottom:668.693333pt;}
.y97{bottom:671.360000pt;}
.y13c{bottom:671.893333pt;}
.y4c{bottom:672.693333pt;}
.y66{bottom:672.960000pt;}
.y117{bottom:677.493333pt;}
.ydd{bottom:688.173333pt;}
.y80{bottom:690.040000pt;}
.y31{bottom:694.560000pt;}
.y96{bottom:698.840000pt;}
.y65{bottom:700.706667pt;}
.y8{bottom:702.293333pt;}
.y116{bottom:705.226667pt;}
.y1b2{bottom:706.560000pt;}
.y19{bottom:707.093333pt;}
.ybd{bottom:709.506667pt;}
.y13b{bottom:710.040000pt;}
.y125{bottom:715.893333pt;}
.yd0{bottom:717.506667pt;}
.y14f{bottom:722.040000pt;}
.y95{bottom:726.560000pt;}
.y64{bottom:728.173333pt;}
.y7f{bottom:730.026667pt;}
.y30{bottom:732.706667pt;}
.ybc{bottom:737.226667pt;}
.y1b1{bottom:740.426667pt;}
.y4b{bottom:741.226667pt;}
.y124{bottom:743.373333pt;}
.y18{bottom:745.226667pt;}
.y13a{bottom:748.426667pt;}
.y94{bottom:754.066667pt;}
.y103{bottom:760.466667pt;}
.ybb{bottom:764.733333pt;}
.y63{bottom:766.600000pt;}
.y7{bottom:769.800000pt;}
.y2f{bottom:771.133333pt;}
.ycf{bottom:772.733333pt;}
.y1b0{bottom:774.333333pt;}
.y4a{bottom:775.666667pt;}
.y93{bottom:781.800000pt;}
.yf1{bottom:783.400000pt;}
.y17{bottom:783.666667pt;}
.y139{bottom:786.866667pt;}
.y102{bottom:787.933333pt;}
.yba{bottom:792.466667pt;}
.y62{bottom:794.066667pt;}
.y15a{bottom:798.600000pt;}
.yce{bottom:800.466667pt;}
.y1af{bottom:808.200000pt;}
.y2e{bottom:809.266667pt;}
.y49{bottom:809.800000pt;}
.y101{bottom:815.666667pt;}
.yb0{bottom:819.933333pt;}
.y6{bottom:821.800000pt;}
.y138{bottom:825.000000pt;}
.y14e{bottom:826.333333pt;}
.y11e{bottom:827.933333pt;}
.y2d{bottom:837.000000pt;}
.ycd{bottom:840.466667pt;}
.y1ae{bottom:841.800000pt;}
.y100{bottom:843.133333pt;}
.y48{bottom:844.200000pt;}
.y7e{bottom:847.666667pt;}
.y61{bottom:849.266667pt;}
.y14d{bottom:853.800000pt;}
.yf0{bottom:859.933333pt;}
.y5{bottom:860.200000pt;}
.y137{bottom:863.400000pt;}
.y2c{bottom:864.466667pt;}
.y11d{bottom:868.200000pt;}
.yff{bottom:870.866667pt;}
.y7d{bottom:875.133333pt;}
.y1ad{bottom:875.666667pt;}
.y60{bottom:877.000000pt;}
.y47{bottom:878.333333pt;}
.y115{bottom:881.266667pt;}
.ycc{bottom:881.533333pt;}
.yef{bottom:887.666667pt;}
.y2b{bottom:892.200000pt;}
.y4{bottom:898.333333pt;}
.y136{bottom:901.533333pt;}
.y7c{bottom:902.893333pt;}
.y5f{bottom:904.506667pt;}
.yfe{bottom:908.760000pt;}
.y11c{bottom:909.040000pt;}
.y1ac{bottom:909.560000pt;}
.y46{bottom:912.760000pt;}
.yee{bottom:915.173333pt;}
.y2a{bottom:919.706667pt;}
.y7b{bottom:930.373333pt;}
.y5e{bottom:932.226667pt;}
.y3{bottom:936.760000pt;}
.y135{bottom:939.693333pt;}
.yed{bottom:942.893333pt;}
.y45{bottom:943.173333pt;}
.y1ab{bottom:943.426667pt;}
.y29{bottom:947.426667pt;}
.y7a{bottom:958.106667pt;}
.y44{bottom:964.226667pt;}
.yec{bottom:970.373333pt;}
.y5c{bottom:972.226667pt;}
.y2{bottom:974.893333pt;}
.y1aa{bottom:977.293333pt;}
.y5d{bottom:978.893333pt;}
.y79{bottom:985.560000pt;}
.y114{bottom:991.706667pt;}
.yeb{bottom:1010.626667pt;}
.y16e{bottom:1011.173333pt;}
.y43{bottom:1013.026667pt;}
.y1{bottom:1013.293333pt;}
.hb{height:34.546875pt;}
.hd{height:41.875000pt;}
.ha{height:48.375000pt;}
.hc{height:52.343750pt;}
.he{height:57.375000pt;}
.h15{height:58.166667pt;}
.h5{height:59.187500pt;}
.hf{height:62.781250pt;}
.h2{height:62.812500pt;}
.h7{height:64.500000pt;}
.h14{height:68.266667pt;}
.h18{height:68.300000pt;}
.h13{height:68.533333pt;}
.h11{height:68.566667pt;}
.h10{height:73.281250pt;}
.h9{height:75.250000pt;}
.h6{height:78.916667pt;}
.h8{height:86.000000pt;}
.h16{height:86.933333pt;}
.h17{height:86.966667pt;}
.h12{height:104.687500pt;}
.h4{height:118.375000pt;}
.h3{height:128.239583pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:566.306667pt;}
.w6{width:566.560000pt;}
.w9{width:566.826667pt;}
.w8{width:566.840000pt;}
.w7{width:567.626667pt;}
.w5{width:567.640000pt;}
.w3{width:793.866643pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:112.300000pt;}
.x1{left:113.366655pt;}
.x4{left:118.699988pt;}
.xd{left:129.366655pt;}
.x25{left:141.639988pt;}
.xc{left:160.599988pt;}
.x23{left:162.733310pt;}
.x11{left:165.666655pt;}
.x24{left:168.066655pt;}
.x2{left:180.333322pt;}
.x8{left:218.199988pt;}
.x7{left:275.559988pt;}
.x3{left:277.693322pt;}
.x5{left:293.706655pt;}
.x22{left:299.559988pt;}
.x10{left:305.439988pt;}
.x9{left:306.506655pt;}
.x1b{left:331.839988pt;}
.x1a{left:333.173322pt;}
.x19{left:335.839988pt;}
.x15{left:357.973310pt;}
.x16{left:363.306655pt;}
.xb{left:368.639988pt;}
.x17{left:384.399976pt;}
.x18{left:389.733322pt;}
.xa{left:392.933322pt;}
.x6{left:396.933322pt;}
.xe{left:486.306643pt;}
.xf{left:492.426655pt;}
.x13{left:500.973322pt;}
.x1d{left:504.426655pt;}
.x1c{left:534.839988pt;}
.x12{left:560.439988pt;}
.x1e{left:602.333310pt;}
.x1f{left:607.666655pt;}
.x20{left:639.933310pt;}
.x21{left:645.266655pt;}
.x14{left:680.466655pt;}
}




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