
    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_8ff59abff5009f4df777b503.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8116f2afec246a7ba7983203.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102539;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_95d8ea51c292cfe11a39fa8d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cad8c845c018205f1ec64769.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ca0735bf2936ab2c5a243274.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_344a5375830d07707f06f9ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_c44a3492c0d8d8069049a021.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239258;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_30edfa79c9d08556b0fe08b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.761719;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_861a5159bc8e4d1714cb3895.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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);}
.v4{vertical-align:-27.600000px;}
.v3{vertical-align:-23.400000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.800000px;}
.v2{vertical-align:27.600000px;}
.v5{vertical-align:30.000000px;}
.v1{vertical-align:41.400000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.099600px;}
.ls2{letter-spacing:8.040000px;}
.ls1{letter-spacing:12.528000px;}
.ls5{letter-spacing:64.800000px;}
.ls3{letter-spacing:79.272000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.000000px;}
.ws16{word-spacing:-15.000000px;}
.ws14{word-spacing:-10.500000px;}
.ws15{word-spacing:-8.700000px;}
.ws1a{word-spacing:-0.042000px;}
.ws1{word-spacing:0.000000px;}
.ws12{word-spacing:25.200000px;}
.ws2{word-spacing:32.400000px;}
.ws17{word-spacing:36.000000px;}
.ws11{word-spacing:48.000000px;}
.ws8{word-spacing:49.200000px;}
.wsa{word-spacing:67.200000px;}
.ws10{word-spacing:69.000000px;}
.wsb{word-spacing:93.120000px;}
.ws1b{word-spacing:93.816000px;}
.wsc{word-spacing:95.640000px;}
.ws1c{word-spacing:100.512000px;}
.wse{word-spacing:103.200000px;}
.ws6{word-spacing:107.400000px;}
.wsf{word-spacing:114.864000px;}
.ws13{word-spacing:115.200000px;}
.wsd{word-spacing:115.368000px;}
.ws3{word-spacing:124.368000px;}
.ws9{word-spacing:125.112000px;}
.ws4{word-spacing:125.400000px;}
.ws7{word-spacing:145.800000px;}
.ws5{word-spacing:163.800000px;}
.ws19{word-spacing:428.400000px;}
.ws18{word-spacing:446.400000px;}
._1a{margin-left:-12.216000px;}
._0{margin-left:-1.224000px;}
._7{width:1.152000px;}
._1{width:2.304000px;}
._3{width:3.528000px;}
._4{width:4.824000px;}
._5{width:6.288000px;}
._2{width:7.896000px;}
._8{width:8.952000px;}
._a{width:9.984000px;}
._c{width:11.904000px;}
._1b{width:13.032000px;}
._19{width:14.040000px;}
._6{width:15.552000px;}
._9{width:16.632000px;}
._47{width:17.676000px;}
._d{width:19.008000px;}
._3b{width:20.664000px;}
._42{width:21.888000px;}
._40{width:23.328000px;}
._41{width:24.336000px;}
._49{width:25.920000px;}
._43{width:27.240000px;}
._46{width:28.320000px;}
._1c{width:29.376000px;}
._48{width:30.600000px;}
._3c{width:31.800000px;}
._3d{width:32.928000px;}
._4d{width:35.208000px;}
._4f{width:36.648000px;}
._28{width:37.800000px;}
._27{width:42.000000px;}
._26{width:48.000000px;}
._b{width:50.400000px;}
._25{width:52.200000px;}
._3e{width:54.000000px;}
._29{width:55.200000px;}
._3f{width:56.640000px;}
._4a{width:59.256000px;}
._24{width:60.600000px;}
._1e{width:63.720000px;}
._4e{width:68.496000px;}
._11{width:69.600000px;}
._10{width:70.800000px;}
._12{width:72.600000px;}
._1d{width:73.776000px;}
._21{width:76.200000px;}
._20{width:78.600000px;}
._1f{width:81.000000px;}
._f{width:83.304000px;}
._14{width:87.600000px;}
._13{width:88.800000px;}
._15{width:90.600000px;}
._2b{width:91.800000px;}
._30{width:97.200000px;}
._22{width:100.800000px;}
._31{width:102.000000px;}
._2f{width:106.128000px;}
._32{width:109.224000px;}
._50{width:112.248000px;}
._2d{width:114.600000px;}
._51{width:118.296000px;}
._17{width:123.672000px;}
._16{width:124.728000px;}
._18{width:126.528000px;}
._37{width:138.000000px;}
._36{width:142.200000px;}
._35{width:150.600000px;}
._34{width:159.600000px;}
._39{width:163.800000px;}
._38{width:168.000000px;}
._3a{width:181.200000px;}
._4c{width:213.048000px;}
._4b{width:214.200000px;}
._e{width:241.800000px;}
._53{width:280.512000px;}
._2e{width:292.272000px;}
._2a{width:312.144000px;}
._2c{width:328.200000px;}
._33{width:356.208000px;}
._54{width:373.464000px;}
._23{width:375.384000px;}
._55{width:397.440000px;}
._52{width:409.464000px;}
._44{width:450.000000px;}
._45{width:464.400000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:34.800000px;}
.fs1{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y28{bottom:57.900000px;}
.y57{bottom:78.600000px;}
.yb5{bottom:109.500000px;}
.y113{bottom:116.100000px;}
.y56{bottom:116.400000px;}
.y18b{bottom:123.600000px;}
.yb4{bottom:126.900000px;}
.y13c{bottom:130.950000px;}
.yde{bottom:132.750000px;}
.y167{bottom:133.950000px;}
.y112{bottom:135.150000px;}
.y55{bottom:137.100000px;}
.yb3{bottom:144.150000px;}
.y18a{bottom:144.300000px;}
.y27{bottom:146.100000px;}
.yac{bottom:149.100000px;}
.ydd{bottom:150.000000px;}
.y13b{bottom:151.950000px;}
.y166{bottom:154.650000px;}
.y54{bottom:157.800000px;}
.yb2{bottom:161.550000px;}
.y189{bottom:165.000000px;}
.y26{bottom:166.800000px;}
.y6d{bottom:169.500000px;}
.yab{bottom:169.800000px;}
.y13a{bottom:172.800000px;}
.y165{bottom:175.350000px;}
.y53{bottom:178.500000px;}
.yb1{bottom:178.800000px;}
.y111{bottom:183.900000px;}
.yed{bottom:184.650000px;}
.y188{bottom:185.700000px;}
.yec{bottom:186.300000px;}
.y25{bottom:187.500000px;}
.y6c{bottom:190.200000px;}
.yaa{bottom:190.500000px;}
.y139{bottom:193.500000px;}
.y164{bottom:196.050000px;}
.ydc{bottom:196.200000px;}
.y52{bottom:199.200000px;}
.yeb{bottom:199.500000px;}
.yb0{bottom:202.050000px;}
.y110{bottom:205.050000px;}
.y187{bottom:206.400000px;}
.y24{bottom:208.200000px;}
.y6b{bottom:210.900000px;}
.ya9{bottom:211.200000px;}
.yaf{bottom:213.450000px;}
.y138{bottom:214.500000px;}
.y163{bottom:216.750000px;}
.yea{bottom:216.900000px;}
.yd2{bottom:218.100000px;}
.y51{bottom:219.900000px;}
.y10f{bottom:226.200000px;}
.y186{bottom:227.100000px;}
.y23{bottom:228.900000px;}
.yae{bottom:230.850000px;}
.ya8{bottom:231.900000px;}
.ye9{bottom:234.150000px;}
.y137{bottom:235.350000px;}
.ydb{bottom:236.700000px;}
.y162{bottom:237.450000px;}
.yd1{bottom:238.800000px;}
.y50{bottom:240.600000px;}
.y10e{bottom:247.350000px;}
.y185{bottom:247.800000px;}
.y22{bottom:249.600000px;}
.ye8{bottom:251.550000px;}
.ya7{bottom:252.600000px;}
.y6a{bottom:253.050000px;}
.yad{bottom:253.950000px;}
.y136{bottom:256.350000px;}
.y161{bottom:258.150000px;}
.yd0{bottom:259.500000px;}
.y4f{bottom:261.300000px;}
.yb9{bottom:265.500000px;}
.y10d{bottom:268.500000px;}
.ye7{bottom:268.800000px;}
.y21{bottom:270.300000px;}
.ya6{bottom:273.300000px;}
.y69{bottom:274.500000px;}
.y135{bottom:277.200000px;}
.y160{bottom:278.850000px;}
.ycf{bottom:280.200000px;}
.y4e{bottom:282.000000px;}
.yb8{bottom:282.750000px;}
.ye6{bottom:286.200000px;}
.y10c{bottom:289.350000px;}
.y184{bottom:289.500000px;}
.y20{bottom:291.000000px;}
.ya5{bottom:294.000000px;}
.y68{bottom:295.950000px;}
.y86{bottom:297.000000px;}
.y134{bottom:298.200000px;}
.y15f{bottom:299.550000px;}
.yb7{bottom:300.150000px;}
.yce{bottom:300.900000px;}
.y4d{bottom:302.700000px;}
.ye5{bottom:303.450000px;}
.y10b{bottom:310.350000px;}
.y183{bottom:310.650000px;}
.y1f{bottom:311.700000px;}
.ya4{bottom:314.700000px;}
.y67{bottom:317.400000px;}
.y85{bottom:317.700000px;}
.y133{bottom:319.050000px;}
.y15e{bottom:320.250000px;}
.ye4{bottom:320.850000px;}
.ycd{bottom:321.600000px;}
.y4c{bottom:323.400000px;}
.y10a{bottom:331.200000px;}
.y182{bottom:331.800000px;}
.y1e{bottom:332.400000px;}
.ya3{bottom:335.400000px;}
.ye3{bottom:338.100000px;}
.y84{bottom:338.400000px;}
.y66{bottom:338.850000px;}
.y132{bottom:340.050000px;}
.yb6{bottom:340.650000px;}
.y15d{bottom:340.950000px;}
.y4b{bottom:344.100000px;}
.y109{bottom:352.200000px;}
.y181{bottom:352.950000px;}
.y1d{bottom:353.100000px;}
.ye2{bottom:355.500000px;}
.y83{bottom:359.100000px;}
.y65{bottom:360.300000px;}
.y131{bottom:360.900000px;}
.y15c{bottom:361.650000px;}
.ycc{bottom:363.000000px;}
.y4a{bottom:364.800000px;}
.ye1{bottom:372.750000px;}
.y108{bottom:373.050000px;}
.y180{bottom:374.100000px;}
.ya2{bottom:376.800000px;}
.y82{bottom:379.800000px;}
.y130{bottom:381.600000px;}
.y64{bottom:381.750000px;}
.y15b{bottom:382.350000px;}
.yda{bottom:384.000000px;}
.y49{bottom:385.500000px;}
.ye0{bottom:390.150000px;}
.y107{bottom:394.050000px;}
.y1c{bottom:394.500000px;}
.y17f{bottom:395.250000px;}
.ya1{bottom:397.500000px;}
.y81{bottom:400.500000px;}
.y12f{bottom:402.600000px;}
.y15a{bottom:403.050000px;}
.y63{bottom:403.200000px;}
.yd9{bottom:404.700000px;}
.y48{bottom:406.200000px;}
.ydf{bottom:413.250000px;}
.y106{bottom:414.900000px;}
.y17e{bottom:416.400000px;}
.y80{bottom:421.200000px;}
.y12e{bottom:423.450000px;}
.y159{bottom:423.750000px;}
.y62{bottom:424.650000px;}
.ycb{bottom:425.100000px;}
.yd8{bottom:425.400000px;}
.y47{bottom:426.900000px;}
.y105{bottom:435.900000px;}
.y17d{bottom:437.250000px;}
.y7f{bottom:441.900000px;}
.ya0{bottom:443.850000px;}
.y12d{bottom:444.150000px;}
.y158{bottom:444.450000px;}
.yca{bottom:445.800000px;}
.y61{bottom:446.100000px;}
.y46{bottom:447.600000px;}
.y1b{bottom:456.600000px;}
.y104{bottom:457.050000px;}
.y17c{bottom:457.950000px;}
.y198{bottom:461.700000px;}
.y7e{bottom:462.600000px;}
.y12c{bottom:464.850000px;}
.y157{bottom:465.150000px;}
.yc9{bottom:466.500000px;}
.y5f{bottom:467.550000px;}
.y45{bottom:468.300000px;}
.y9f{bottom:473.550000px;}
.y5e{bottom:477.900000px;}
.y103{bottom:478.200000px;}
.y17b{bottom:478.650000px;}
.y197{bottom:482.400000px;}
.y7d{bottom:483.300000px;}
.y12b{bottom:485.850000px;}
.y156{bottom:486.150000px;}
.yc8{bottom:487.200000px;}
.y60{bottom:488.250000px;}
.y44{bottom:489.000000px;}
.y1a{bottom:498.000000px;}
.y102{bottom:499.350000px;}
.y9e{bottom:503.250000px;}
.y196{bottom:503.400000px;}
.y7c{bottom:504.000000px;}
.y12a{bottom:506.700000px;}
.y155{bottom:507.000000px;}
.yc7{bottom:507.900000px;}
.yd7{bottom:508.950000px;}
.y43{bottom:509.700000px;}
.y17a{bottom:520.350000px;}
.y101{bottom:520.500000px;}
.y7b{bottom:524.700000px;}
.y195{bottom:525.750000px;}
.y129{bottom:527.400000px;}
.y154{bottom:527.700000px;}
.yc6{bottom:528.600000px;}
.y42{bottom:530.400000px;}
.y9d{bottom:532.950000px;}
.y19{bottom:539.400000px;}
.y179{bottom:541.200000px;}
.y100{bottom:541.650000px;}
.y7a{bottom:545.400000px;}
.y194{bottom:547.950000px;}
.y128{bottom:548.400000px;}
.y153{bottom:548.700000px;}
.yc5{bottom:549.300000px;}
.yd6{bottom:550.350000px;}
.y41{bottom:551.100000px;}
.y18{bottom:560.100000px;}
.y178{bottom:562.200000px;}
.y9c{bottom:562.650000px;}
.yff{bottom:562.800000px;}
.y79{bottom:566.100000px;}
.y193{bottom:568.950000px;}
.y127{bottom:569.250000px;}
.y152{bottom:569.850000px;}
.yc4{bottom:570.000000px;}
.yd5{bottom:571.050000px;}
.y40{bottom:571.800000px;}
.y17{bottom:580.800000px;}
.y177{bottom:583.350000px;}
.yfe{bottom:583.950000px;}
.y78{bottom:586.800000px;}
.y192{bottom:589.800000px;}
.y126{bottom:590.250000px;}
.y151{bottom:590.700000px;}
.yc3{bottom:591.000000px;}
.y9b{bottom:592.350000px;}
.y3f{bottom:592.500000px;}
.y16{bottom:601.500000px;}
.y176{bottom:604.200000px;}
.yfd{bottom:605.100000px;}
.y191{bottom:610.800000px;}
.y125{bottom:611.100000px;}
.y150{bottom:611.400000px;}
.yc2{bottom:611.850000px;}
.yd4{bottom:612.450000px;}
.y9a{bottom:613.050000px;}
.y3e{bottom:613.200000px;}
.y15{bottom:622.200000px;}
.y175{bottom:624.900000px;}
.yfc{bottom:626.250000px;}
.y77{bottom:628.200000px;}
.y124{bottom:631.800000px;}
.y190{bottom:631.950000px;}
.y14f{bottom:632.100000px;}
.yc1{bottom:632.550000px;}
.yd3{bottom:633.150000px;}
.y5d{bottom:633.900000px;}
.y14{bottom:642.900000px;}
.y174{bottom:645.600000px;}
.yfb{bottom:647.400000px;}
.y76{bottom:648.900000px;}
.y123{bottom:652.500000px;}
.y14e{bottom:652.800000px;}
.yc0{bottom:653.550000px;}
.y3d{bottom:654.600000px;}
.y99{bottom:659.250000px;}
.y13{bottom:663.600000px;}
.y173{bottom:666.300000px;}
.yfa{bottom:668.550000px;}
.y75{bottom:669.600000px;}
.y122{bottom:673.200000px;}
.y14d{bottom:673.500000px;}
.ybf{bottom:674.400000px;}
.y5c{bottom:675.300000px;}
.y98{bottom:679.950000px;}
.y12{bottom:684.300000px;}
.y172{bottom:687.000000px;}
.y121{bottom:693.900000px;}
.y14c{bottom:694.200000px;}
.ybe{bottom:695.100000px;}
.y5b{bottom:696.000000px;}
.y97{bottom:700.650000px;}
.y11{bottom:705.000000px;}
.y171{bottom:708.450000px;}
.yf9{bottom:710.250000px;}
.y120{bottom:714.900000px;}
.ybd{bottom:716.100000px;}
.y3c{bottom:716.700000px;}
.y96{bottom:721.350000px;}
.y74{bottom:722.250000px;}
.y10{bottom:725.700000px;}
.y170{bottom:729.900000px;}
.y14b{bottom:735.600000px;}
.y11f{bottom:735.750000px;}
.y18f{bottom:735.900000px;}
.ybc{bottom:736.950000px;}
.y3b{bottom:737.400000px;}
.y95{bottom:742.050000px;}
.yf{bottom:746.400000px;}
.y16f{bottom:751.350000px;}
.yf8{bottom:753.150000px;}
.y14a{bottom:756.300000px;}
.y11e{bottom:756.750000px;}
.y18e{bottom:757.050000px;}
.ybb{bottom:757.650000px;}
.y3a{bottom:758.100000px;}
.y94{bottom:762.750000px;}
.y73{bottom:764.400000px;}
.ye{bottom:767.100000px;}
.y16e{bottom:772.800000px;}
.yf7{bottom:774.300000px;}
.y149{bottom:777.000000px;}
.y11d{bottom:777.600000px;}
.y18d{bottom:778.200000px;}
.yba{bottom:778.650000px;}
.y39{bottom:778.800000px;}
.y93{bottom:783.450000px;}
.yd{bottom:787.800000px;}
.y16d{bottom:794.250000px;}
.yf6{bottom:795.450000px;}
.y148{bottom:797.700000px;}
.y11c{bottom:798.300000px;}
.y18c{bottom:799.350000px;}
.y38{bottom:799.500000px;}
.y72{bottom:806.700000px;}
.yc{bottom:808.500000px;}
.y16c{bottom:815.700000px;}
.yf5{bottom:816.300000px;}
.y11b{bottom:819.000000px;}
.y37{bottom:820.200000px;}
.y92{bottom:824.850000px;}
.yb{bottom:829.200000px;}
.y16b{bottom:837.150000px;}
.y147{bottom:839.100000px;}
.y11a{bottom:840.000000px;}
.y36{bottom:840.900000px;}
.y91{bottom:845.550000px;}
.y71{bottom:848.850000px;}
.yf4{bottom:858.000000px;}
.y16a{bottom:858.600000px;}
.y146{bottom:859.800000px;}
.y119{bottom:860.850000px;}
.y35{bottom:861.600000px;}
.ya{bottom:870.600000px;}
.yf3{bottom:878.850000px;}
.y169{bottom:880.050000px;}
.y145{bottom:880.500000px;}
.y118{bottom:881.550000px;}
.y34{bottom:882.300000px;}
.y70{bottom:891.150000px;}
.y9{bottom:891.300000px;}
.y90{bottom:891.900000px;}
.y168{bottom:901.500000px;}
.y117{bottom:902.250000px;}
.y33{bottom:903.000000px;}
.y8f{bottom:912.600000px;}
.yf2{bottom:920.400000px;}
.y144{bottom:922.200000px;}
.y6f{bottom:922.950000px;}
.y32{bottom:923.700000px;}
.y8e{bottom:933.300000px;}
.y143{bottom:943.050000px;}
.y6e{bottom:943.650000px;}
.y31{bottom:944.400000px;}
.y8{bottom:953.400000px;}
.y8d{bottom:963.000000px;}
.yf1{bottom:963.300000px;}
.y142{bottom:964.050000px;}
.y116{bottom:964.350000px;}
.y30{bottom:965.100000px;}
.y7{bottom:974.100000px;}
.y8c{bottom:983.700000px;}
.yf0{bottom:984.450000px;}
.y141{bottom:984.900000px;}
.y115{bottom:985.050000px;}
.y5a{bottom:985.800000px;}
.y6{bottom:994.800000px;}
.y8b{bottom:1004.400000px;}
.yef{bottom:1005.600000px;}
.y59{bottom:1006.500000px;}
.y5{bottom:1015.500000px;}
.y140{bottom:1026.300000px;}
.y114{bottom:1026.450000px;}
.y2f{bottom:1027.200000px;}
.y8a{bottom:1034.100000px;}
.yee{bottom:1047.150000px;}
.y13f{bottom:1047.300000px;}
.y58{bottom:1047.900000px;}
.y89{bottom:1054.800000px;}
.y13e{bottom:1068.150000px;}
.y2e{bottom:1068.600000px;}
.y88{bottom:1075.500000px;}
.y4{bottom:1077.600000px;}
.y13d{bottom:1089.150000px;}
.y2d{bottom:1089.300000px;}
.y3{bottom:1098.300000px;}
.y87{bottom:1105.200000px;}
.y2c{bottom:1110.000000px;}
.y2{bottom:1119.000000px;}
.y2b{bottom:1151.400000px;}
.y2a{bottom:1172.100000px;}
.y29{bottom:1192.800000px;}
.hd{height:26.507812px;}
.h8{height:30.534961px;}
.he{height:34.034180px;}
.hb{height:36.852539px;}
.h9{height:52.646484px;}
.ha{height:52.792969px;}
.h3{height:63.175781px;}
.h4{height:63.351562px;}
.h7{height:63.843750px;}
.h2{height:63.949219px;}
.h6{height:64.452539px;}
.hc{height:68.903320px;}
.h5{height:105.349219px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x23{left:54.750000px;}
.x25{left:55.950000px;}
.x8{left:127.800000px;}
.x1c{left:131.850000px;}
.x32{left:135.150000px;}
.x29{left:138.300000px;}
.x16{left:140.100000px;}
.x18{left:144.900000px;}
.x13{left:146.100000px;}
.x12{left:147.600000px;}
.xc{left:149.550000px;}
.x17{left:152.850000px;}
.x9{left:154.800000px;}
.x24{left:158.250000px;}
.x19{left:160.350000px;}
.x1{left:165.450000px;}
.x31{left:174.750000px;}
.x30{left:179.250000px;}
.xa{left:181.800000px;}
.x3{left:186.150000px;}
.x2{left:187.350000px;}
.x26{left:207.900000px;}
.xd{left:212.250000px;}
.x27{left:234.900000px;}
.x1d{left:247.200000px;}
.x1a{left:254.250000px;}
.x28{left:261.900000px;}
.x15{left:267.150000px;}
.x33{left:270.450000px;}
.x2a{left:278.850000px;}
.xf{left:298.050000px;}
.xe{left:312.150000px;}
.x6{left:314.700000px;}
.x4{left:324.150000px;}
.x7{left:328.200000px;}
.x5{left:342.150000px;}
.x1b{left:367.500000px;}
.x10{left:401.850000px;}
.x2b{left:407.550000px;}
.x11{left:408.600000px;}
.x2c{left:410.550000px;}
.x14{left:425.700000px;}
.x1e{left:483.000000px;}
.x2d{left:525.900000px;}
.x2e{left:533.850000px;}
.x1f{left:540.750000px;}
.x20{left:598.500000px;}
.x2f{left:645.600000px;}
.x21{left:656.250000px;}
.x22{left:714.000000px;}
.xb{left:747.300000px;}
@media print{
.v4{vertical-align:-24.533333pt;}
.v3{vertical-align:-20.800000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.600000pt;}
.v2{vertical-align:24.533333pt;}
.v5{vertical-align:26.666667pt;}
.v1{vertical-align:36.800000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.088533pt;}
.ls2{letter-spacing:7.146667pt;}
.ls1{letter-spacing:11.136000pt;}
.ls5{letter-spacing:57.600000pt;}
.ls3{letter-spacing:70.464000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws16{word-spacing:-13.333333pt;}
.ws14{word-spacing:-9.333333pt;}
.ws15{word-spacing:-7.733333pt;}
.ws1a{word-spacing:-0.037333pt;}
.ws1{word-spacing:0.000000pt;}
.ws12{word-spacing:22.400000pt;}
.ws2{word-spacing:28.800000pt;}
.ws17{word-spacing:32.000000pt;}
.ws11{word-spacing:42.666667pt;}
.ws8{word-spacing:43.733333pt;}
.wsa{word-spacing:59.733333pt;}
.ws10{word-spacing:61.333333pt;}
.wsb{word-spacing:82.773333pt;}
.ws1b{word-spacing:83.392000pt;}
.wsc{word-spacing:85.013333pt;}
.ws1c{word-spacing:89.344000pt;}
.wse{word-spacing:91.733333pt;}
.ws6{word-spacing:95.466667pt;}
.wsf{word-spacing:102.101333pt;}
.ws13{word-spacing:102.400000pt;}
.wsd{word-spacing:102.549333pt;}
.ws3{word-spacing:110.549333pt;}
.ws9{word-spacing:111.210667pt;}
.ws4{word-spacing:111.466667pt;}
.ws7{word-spacing:129.600000pt;}
.ws5{word-spacing:145.600000pt;}
.ws19{word-spacing:380.800000pt;}
.ws18{word-spacing:396.800000pt;}
._1a{margin-left:-10.858667pt;}
._0{margin-left:-1.088000pt;}
._7{width:1.024000pt;}
._1{width:2.048000pt;}
._3{width:3.136000pt;}
._4{width:4.288000pt;}
._5{width:5.589333pt;}
._2{width:7.018667pt;}
._8{width:7.957333pt;}
._a{width:8.874667pt;}
._c{width:10.581333pt;}
._1b{width:11.584000pt;}
._19{width:12.480000pt;}
._6{width:13.824000pt;}
._9{width:14.784000pt;}
._47{width:15.712000pt;}
._d{width:16.896000pt;}
._3b{width:18.368000pt;}
._42{width:19.456000pt;}
._40{width:20.736000pt;}
._41{width:21.632000pt;}
._49{width:23.040000pt;}
._43{width:24.213333pt;}
._46{width:25.173333pt;}
._1c{width:26.112000pt;}
._48{width:27.200000pt;}
._3c{width:28.266667pt;}
._3d{width:29.269333pt;}
._4d{width:31.296000pt;}
._4f{width:32.576000pt;}
._28{width:33.600000pt;}
._27{width:37.333333pt;}
._26{width:42.666667pt;}
._b{width:44.800000pt;}
._25{width:46.400000pt;}
._3e{width:48.000000pt;}
._29{width:49.066667pt;}
._3f{width:50.346667pt;}
._4a{width:52.672000pt;}
._24{width:53.866667pt;}
._1e{width:56.640000pt;}
._4e{width:60.885333pt;}
._11{width:61.866667pt;}
._10{width:62.933333pt;}
._12{width:64.533333pt;}
._1d{width:65.578667pt;}
._21{width:67.733333pt;}
._20{width:69.866667pt;}
._1f{width:72.000000pt;}
._f{width:74.048000pt;}
._14{width:77.866667pt;}
._13{width:78.933333pt;}
._15{width:80.533333pt;}
._2b{width:81.600000pt;}
._30{width:86.400000pt;}
._22{width:89.600000pt;}
._31{width:90.666667pt;}
._2f{width:94.336000pt;}
._32{width:97.088000pt;}
._50{width:99.776000pt;}
._2d{width:101.866667pt;}
._51{width:105.152000pt;}
._17{width:109.930667pt;}
._16{width:110.869333pt;}
._18{width:112.469333pt;}
._37{width:122.666667pt;}
._36{width:126.400000pt;}
._35{width:133.866667pt;}
._34{width:141.866667pt;}
._39{width:145.600000pt;}
._38{width:149.333333pt;}
._3a{width:161.066667pt;}
._4c{width:189.376000pt;}
._4b{width:190.400000pt;}
._e{width:214.933333pt;}
._53{width:249.344000pt;}
._2e{width:259.797333pt;}
._2a{width:277.461333pt;}
._2c{width:291.733333pt;}
._33{width:316.629333pt;}
._54{width:331.968000pt;}
._23{width:333.674667pt;}
._55{width:353.280000pt;}
._52{width:363.968000pt;}
._44{width:400.000000pt;}
._45{width:412.800000pt;}
.fs2{font-size:30.933333pt;}
.fs1{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y28{bottom:51.466667pt;}
.y57{bottom:69.866667pt;}
.yb5{bottom:97.333333pt;}
.y113{bottom:103.200000pt;}
.y56{bottom:103.466667pt;}
.y18b{bottom:109.866667pt;}
.yb4{bottom:112.800000pt;}
.y13c{bottom:116.400000pt;}
.yde{bottom:118.000000pt;}
.y167{bottom:119.066667pt;}
.y112{bottom:120.133333pt;}
.y55{bottom:121.866667pt;}
.yb3{bottom:128.133333pt;}
.y18a{bottom:128.266667pt;}
.y27{bottom:129.866667pt;}
.yac{bottom:132.533333pt;}
.ydd{bottom:133.333333pt;}
.y13b{bottom:135.066667pt;}
.y166{bottom:137.466667pt;}
.y54{bottom:140.266667pt;}
.yb2{bottom:143.600000pt;}
.y189{bottom:146.666667pt;}
.y26{bottom:148.266667pt;}
.y6d{bottom:150.666667pt;}
.yab{bottom:150.933333pt;}
.y13a{bottom:153.600000pt;}
.y165{bottom:155.866667pt;}
.y53{bottom:158.666667pt;}
.yb1{bottom:158.933333pt;}
.y111{bottom:163.466667pt;}
.yed{bottom:164.133333pt;}
.y188{bottom:165.066667pt;}
.yec{bottom:165.600000pt;}
.y25{bottom:166.666667pt;}
.y6c{bottom:169.066667pt;}
.yaa{bottom:169.333333pt;}
.y139{bottom:172.000000pt;}
.y164{bottom:174.266667pt;}
.ydc{bottom:174.400000pt;}
.y52{bottom:177.066667pt;}
.yeb{bottom:177.333333pt;}
.yb0{bottom:179.600000pt;}
.y110{bottom:182.266667pt;}
.y187{bottom:183.466667pt;}
.y24{bottom:185.066667pt;}
.y6b{bottom:187.466667pt;}
.ya9{bottom:187.733333pt;}
.yaf{bottom:189.733333pt;}
.y138{bottom:190.666667pt;}
.y163{bottom:192.666667pt;}
.yea{bottom:192.800000pt;}
.yd2{bottom:193.866667pt;}
.y51{bottom:195.466667pt;}
.y10f{bottom:201.066667pt;}
.y186{bottom:201.866667pt;}
.y23{bottom:203.466667pt;}
.yae{bottom:205.200000pt;}
.ya8{bottom:206.133333pt;}
.ye9{bottom:208.133333pt;}
.y137{bottom:209.200000pt;}
.ydb{bottom:210.400000pt;}
.y162{bottom:211.066667pt;}
.yd1{bottom:212.266667pt;}
.y50{bottom:213.866667pt;}
.y10e{bottom:219.866667pt;}
.y185{bottom:220.266667pt;}
.y22{bottom:221.866667pt;}
.ye8{bottom:223.600000pt;}
.ya7{bottom:224.533333pt;}
.y6a{bottom:224.933333pt;}
.yad{bottom:225.733333pt;}
.y136{bottom:227.866667pt;}
.y161{bottom:229.466667pt;}
.yd0{bottom:230.666667pt;}
.y4f{bottom:232.266667pt;}
.yb9{bottom:236.000000pt;}
.y10d{bottom:238.666667pt;}
.ye7{bottom:238.933333pt;}
.y21{bottom:240.266667pt;}
.ya6{bottom:242.933333pt;}
.y69{bottom:244.000000pt;}
.y135{bottom:246.400000pt;}
.y160{bottom:247.866667pt;}
.ycf{bottom:249.066667pt;}
.y4e{bottom:250.666667pt;}
.yb8{bottom:251.333333pt;}
.ye6{bottom:254.400000pt;}
.y10c{bottom:257.200000pt;}
.y184{bottom:257.333333pt;}
.y20{bottom:258.666667pt;}
.ya5{bottom:261.333333pt;}
.y68{bottom:263.066667pt;}
.y86{bottom:264.000000pt;}
.y134{bottom:265.066667pt;}
.y15f{bottom:266.266667pt;}
.yb7{bottom:266.800000pt;}
.yce{bottom:267.466667pt;}
.y4d{bottom:269.066667pt;}
.ye5{bottom:269.733333pt;}
.y10b{bottom:275.866667pt;}
.y183{bottom:276.133333pt;}
.y1f{bottom:277.066667pt;}
.ya4{bottom:279.733333pt;}
.y67{bottom:282.133333pt;}
.y85{bottom:282.400000pt;}
.y133{bottom:283.600000pt;}
.y15e{bottom:284.666667pt;}
.ye4{bottom:285.200000pt;}
.ycd{bottom:285.866667pt;}
.y4c{bottom:287.466667pt;}
.y10a{bottom:294.400000pt;}
.y182{bottom:294.933333pt;}
.y1e{bottom:295.466667pt;}
.ya3{bottom:298.133333pt;}
.ye3{bottom:300.533333pt;}
.y84{bottom:300.800000pt;}
.y66{bottom:301.200000pt;}
.y132{bottom:302.266667pt;}
.yb6{bottom:302.800000pt;}
.y15d{bottom:303.066667pt;}
.y4b{bottom:305.866667pt;}
.y109{bottom:313.066667pt;}
.y181{bottom:313.733333pt;}
.y1d{bottom:313.866667pt;}
.ye2{bottom:316.000000pt;}
.y83{bottom:319.200000pt;}
.y65{bottom:320.266667pt;}
.y131{bottom:320.800000pt;}
.y15c{bottom:321.466667pt;}
.ycc{bottom:322.666667pt;}
.y4a{bottom:324.266667pt;}
.ye1{bottom:331.333333pt;}
.y108{bottom:331.600000pt;}
.y180{bottom:332.533333pt;}
.ya2{bottom:334.933333pt;}
.y82{bottom:337.600000pt;}
.y130{bottom:339.200000pt;}
.y64{bottom:339.333333pt;}
.y15b{bottom:339.866667pt;}
.yda{bottom:341.333333pt;}
.y49{bottom:342.666667pt;}
.ye0{bottom:346.800000pt;}
.y107{bottom:350.266667pt;}
.y1c{bottom:350.666667pt;}
.y17f{bottom:351.333333pt;}
.ya1{bottom:353.333333pt;}
.y81{bottom:356.000000pt;}
.y12f{bottom:357.866667pt;}
.y15a{bottom:358.266667pt;}
.y63{bottom:358.400000pt;}
.yd9{bottom:359.733333pt;}
.y48{bottom:361.066667pt;}
.ydf{bottom:367.333333pt;}
.y106{bottom:368.800000pt;}
.y17e{bottom:370.133333pt;}
.y80{bottom:374.400000pt;}
.y12e{bottom:376.400000pt;}
.y159{bottom:376.666667pt;}
.y62{bottom:377.466667pt;}
.ycb{bottom:377.866667pt;}
.yd8{bottom:378.133333pt;}
.y47{bottom:379.466667pt;}
.y105{bottom:387.466667pt;}
.y17d{bottom:388.666667pt;}
.y7f{bottom:392.800000pt;}
.ya0{bottom:394.533333pt;}
.y12d{bottom:394.800000pt;}
.y158{bottom:395.066667pt;}
.yca{bottom:396.266667pt;}
.y61{bottom:396.533333pt;}
.y46{bottom:397.866667pt;}
.y1b{bottom:405.866667pt;}
.y104{bottom:406.266667pt;}
.y17c{bottom:407.066667pt;}
.y198{bottom:410.400000pt;}
.y7e{bottom:411.200000pt;}
.y12c{bottom:413.200000pt;}
.y157{bottom:413.466667pt;}
.yc9{bottom:414.666667pt;}
.y5f{bottom:415.600000pt;}
.y45{bottom:416.266667pt;}
.y9f{bottom:420.933333pt;}
.y5e{bottom:424.800000pt;}
.y103{bottom:425.066667pt;}
.y17b{bottom:425.466667pt;}
.y197{bottom:428.800000pt;}
.y7d{bottom:429.600000pt;}
.y12b{bottom:431.866667pt;}
.y156{bottom:432.133333pt;}
.yc8{bottom:433.066667pt;}
.y60{bottom:434.000000pt;}
.y44{bottom:434.666667pt;}
.y1a{bottom:442.666667pt;}
.y102{bottom:443.866667pt;}
.y9e{bottom:447.333333pt;}
.y196{bottom:447.466667pt;}
.y7c{bottom:448.000000pt;}
.y12a{bottom:450.400000pt;}
.y155{bottom:450.666667pt;}
.yc7{bottom:451.466667pt;}
.yd7{bottom:452.400000pt;}
.y43{bottom:453.066667pt;}
.y17a{bottom:462.533333pt;}
.y101{bottom:462.666667pt;}
.y7b{bottom:466.400000pt;}
.y195{bottom:467.333333pt;}
.y129{bottom:468.800000pt;}
.y154{bottom:469.066667pt;}
.yc6{bottom:469.866667pt;}
.y42{bottom:471.466667pt;}
.y9d{bottom:473.733333pt;}
.y19{bottom:479.466667pt;}
.y179{bottom:481.066667pt;}
.y100{bottom:481.466667pt;}
.y7a{bottom:484.800000pt;}
.y194{bottom:487.066667pt;}
.y128{bottom:487.466667pt;}
.y153{bottom:487.733333pt;}
.yc5{bottom:488.266667pt;}
.yd6{bottom:489.200000pt;}
.y41{bottom:489.866667pt;}
.y18{bottom:497.866667pt;}
.y178{bottom:499.733333pt;}
.y9c{bottom:500.133333pt;}
.yff{bottom:500.266667pt;}
.y79{bottom:503.200000pt;}
.y193{bottom:505.733333pt;}
.y127{bottom:506.000000pt;}
.y152{bottom:506.533333pt;}
.yc4{bottom:506.666667pt;}
.yd5{bottom:507.600000pt;}
.y40{bottom:508.266667pt;}
.y17{bottom:516.266667pt;}
.y177{bottom:518.533333pt;}
.yfe{bottom:519.066667pt;}
.y78{bottom:521.600000pt;}
.y192{bottom:524.266667pt;}
.y126{bottom:524.666667pt;}
.y151{bottom:525.066667pt;}
.yc3{bottom:525.333333pt;}
.y9b{bottom:526.533333pt;}
.y3f{bottom:526.666667pt;}
.y16{bottom:534.666667pt;}
.y176{bottom:537.066667pt;}
.yfd{bottom:537.866667pt;}
.y191{bottom:542.933333pt;}
.y125{bottom:543.200000pt;}
.y150{bottom:543.466667pt;}
.yc2{bottom:543.866667pt;}
.yd4{bottom:544.400000pt;}
.y9a{bottom:544.933333pt;}
.y3e{bottom:545.066667pt;}
.y15{bottom:553.066667pt;}
.y175{bottom:555.466667pt;}
.yfc{bottom:556.666667pt;}
.y77{bottom:558.400000pt;}
.y124{bottom:561.600000pt;}
.y190{bottom:561.733333pt;}
.y14f{bottom:561.866667pt;}
.yc1{bottom:562.266667pt;}
.yd3{bottom:562.800000pt;}
.y5d{bottom:563.466667pt;}
.y14{bottom:571.466667pt;}
.y174{bottom:573.866667pt;}
.yfb{bottom:575.466667pt;}
.y76{bottom:576.800000pt;}
.y123{bottom:580.000000pt;}
.y14e{bottom:580.266667pt;}
.yc0{bottom:580.933333pt;}
.y3d{bottom:581.866667pt;}
.y99{bottom:586.000000pt;}
.y13{bottom:589.866667pt;}
.y173{bottom:592.266667pt;}
.yfa{bottom:594.266667pt;}
.y75{bottom:595.200000pt;}
.y122{bottom:598.400000pt;}
.y14d{bottom:598.666667pt;}
.ybf{bottom:599.466667pt;}
.y5c{bottom:600.266667pt;}
.y98{bottom:604.400000pt;}
.y12{bottom:608.266667pt;}
.y172{bottom:610.666667pt;}
.y121{bottom:616.800000pt;}
.y14c{bottom:617.066667pt;}
.ybe{bottom:617.866667pt;}
.y5b{bottom:618.666667pt;}
.y97{bottom:622.800000pt;}
.y11{bottom:626.666667pt;}
.y171{bottom:629.733333pt;}
.yf9{bottom:631.333333pt;}
.y120{bottom:635.466667pt;}
.ybd{bottom:636.533333pt;}
.y3c{bottom:637.066667pt;}
.y96{bottom:641.200000pt;}
.y74{bottom:642.000000pt;}
.y10{bottom:645.066667pt;}
.y170{bottom:648.800000pt;}
.y14b{bottom:653.866667pt;}
.y11f{bottom:654.000000pt;}
.y18f{bottom:654.133333pt;}
.ybc{bottom:655.066667pt;}
.y3b{bottom:655.466667pt;}
.y95{bottom:659.600000pt;}
.yf{bottom:663.466667pt;}
.y16f{bottom:667.866667pt;}
.yf8{bottom:669.466667pt;}
.y14a{bottom:672.266667pt;}
.y11e{bottom:672.666667pt;}
.y18e{bottom:672.933333pt;}
.ybb{bottom:673.466667pt;}
.y3a{bottom:673.866667pt;}
.y94{bottom:678.000000pt;}
.y73{bottom:679.466667pt;}
.ye{bottom:681.866667pt;}
.y16e{bottom:686.933333pt;}
.yf7{bottom:688.266667pt;}
.y149{bottom:690.666667pt;}
.y11d{bottom:691.200000pt;}
.y18d{bottom:691.733333pt;}
.yba{bottom:692.133333pt;}
.y39{bottom:692.266667pt;}
.y93{bottom:696.400000pt;}
.yd{bottom:700.266667pt;}
.y16d{bottom:706.000000pt;}
.yf6{bottom:707.066667pt;}
.y148{bottom:709.066667pt;}
.y11c{bottom:709.600000pt;}
.y18c{bottom:710.533333pt;}
.y38{bottom:710.666667pt;}
.y72{bottom:717.066667pt;}
.yc{bottom:718.666667pt;}
.y16c{bottom:725.066667pt;}
.yf5{bottom:725.600000pt;}
.y11b{bottom:728.000000pt;}
.y37{bottom:729.066667pt;}
.y92{bottom:733.200000pt;}
.yb{bottom:737.066667pt;}
.y16b{bottom:744.133333pt;}
.y147{bottom:745.866667pt;}
.y11a{bottom:746.666667pt;}
.y36{bottom:747.466667pt;}
.y91{bottom:751.600000pt;}
.y71{bottom:754.533333pt;}
.yf4{bottom:762.666667pt;}
.y16a{bottom:763.200000pt;}
.y146{bottom:764.266667pt;}
.y119{bottom:765.200000pt;}
.y35{bottom:765.866667pt;}
.ya{bottom:773.866667pt;}
.yf3{bottom:781.200000pt;}
.y169{bottom:782.266667pt;}
.y145{bottom:782.666667pt;}
.y118{bottom:783.600000pt;}
.y34{bottom:784.266667pt;}
.y70{bottom:792.133333pt;}
.y9{bottom:792.266667pt;}
.y90{bottom:792.800000pt;}
.y168{bottom:801.333333pt;}
.y117{bottom:802.000000pt;}
.y33{bottom:802.666667pt;}
.y8f{bottom:811.200000pt;}
.yf2{bottom:818.133333pt;}
.y144{bottom:819.733333pt;}
.y6f{bottom:820.400000pt;}
.y32{bottom:821.066667pt;}
.y8e{bottom:829.600000pt;}
.y143{bottom:838.266667pt;}
.y6e{bottom:838.800000pt;}
.y31{bottom:839.466667pt;}
.y8{bottom:847.466667pt;}
.y8d{bottom:856.000000pt;}
.yf1{bottom:856.266667pt;}
.y142{bottom:856.933333pt;}
.y116{bottom:857.200000pt;}
.y30{bottom:857.866667pt;}
.y7{bottom:865.866667pt;}
.y8c{bottom:874.400000pt;}
.yf0{bottom:875.066667pt;}
.y141{bottom:875.466667pt;}
.y115{bottom:875.600000pt;}
.y5a{bottom:876.266667pt;}
.y6{bottom:884.266667pt;}
.y8b{bottom:892.800000pt;}
.yef{bottom:893.866667pt;}
.y59{bottom:894.666667pt;}
.y5{bottom:902.666667pt;}
.y140{bottom:912.266667pt;}
.y114{bottom:912.400000pt;}
.y2f{bottom:913.066667pt;}
.y8a{bottom:919.200000pt;}
.yee{bottom:930.800000pt;}
.y13f{bottom:930.933333pt;}
.y58{bottom:931.466667pt;}
.y89{bottom:937.600000pt;}
.y13e{bottom:949.466667pt;}
.y2e{bottom:949.866667pt;}
.y88{bottom:956.000000pt;}
.y4{bottom:957.866667pt;}
.y13d{bottom:968.133333pt;}
.y2d{bottom:968.266667pt;}
.y3{bottom:976.266667pt;}
.y87{bottom:982.400000pt;}
.y2c{bottom:986.666667pt;}
.y2{bottom:994.666667pt;}
.y2b{bottom:1023.466667pt;}
.y2a{bottom:1041.866667pt;}
.y29{bottom:1060.266667pt;}
.hd{height:23.562500pt;}
.h8{height:27.142187pt;}
.he{height:30.252604pt;}
.hb{height:32.757812pt;}
.h9{height:46.796875pt;}
.ha{height:46.927083pt;}
.h3{height:56.156250pt;}
.h4{height:56.312500pt;}
.h7{height:56.750000pt;}
.h2{height:56.843750pt;}
.h6{height:57.291146pt;}
.hc{height:61.247396pt;}
.h5{height:93.643750pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x23{left:48.666667pt;}
.x25{left:49.733333pt;}
.x8{left:113.600000pt;}
.x1c{left:117.200000pt;}
.x32{left:120.133333pt;}
.x29{left:122.933333pt;}
.x16{left:124.533333pt;}
.x18{left:128.800000pt;}
.x13{left:129.866667pt;}
.x12{left:131.200000pt;}
.xc{left:132.933333pt;}
.x17{left:135.866667pt;}
.x9{left:137.600000pt;}
.x24{left:140.666667pt;}
.x19{left:142.533333pt;}
.x1{left:147.066667pt;}
.x31{left:155.333333pt;}
.x30{left:159.333333pt;}
.xa{left:161.600000pt;}
.x3{left:165.466667pt;}
.x2{left:166.533333pt;}
.x26{left:184.800000pt;}
.xd{left:188.666667pt;}
.x27{left:208.800000pt;}
.x1d{left:219.733333pt;}
.x1a{left:226.000000pt;}
.x28{left:232.800000pt;}
.x15{left:237.466667pt;}
.x33{left:240.400000pt;}
.x2a{left:247.866667pt;}
.xf{left:264.933333pt;}
.xe{left:277.466667pt;}
.x6{left:279.733333pt;}
.x4{left:288.133333pt;}
.x7{left:291.733333pt;}
.x5{left:304.133333pt;}
.x1b{left:326.666667pt;}
.x10{left:357.200000pt;}
.x2b{left:362.266667pt;}
.x11{left:363.200000pt;}
.x2c{left:364.933333pt;}
.x14{left:378.400000pt;}
.x1e{left:429.333333pt;}
.x2d{left:467.466667pt;}
.x2e{left:474.533333pt;}
.x1f{left:480.666667pt;}
.x20{left:532.000000pt;}
.x2f{left:573.866667pt;}
.x21{left:583.333333pt;}
.x22{left:634.666667pt;}
.xb{left:664.266667pt;}
}




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