
    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_cb03943225c540f9d4b8fcb5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_10931858addfd4591adc4444.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128906;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_07d904bed6fbcbd7dd766b1f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.128906;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_78f9339f60e6904d3e5eb047.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_f7215ad85064a4818ba73f09.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_daaeba960333ef945df2b5cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.731445;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_d7cad7b71d77bf3090749230.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740234;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_d83b7799236c0b76a4caec18.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7322e2c14aba8714b48ea760.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.926758;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_839ebc86e51542a301b738d7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002930;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;}
.m1{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);}
.m0{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-18.720000px;}
.v2{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.400000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000012px;}
.ls3{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.453600px;}
.ls8{letter-spacing:0.604776px;}
.lsa{letter-spacing:0.627816px;}
.ls4{letter-spacing:33.580561px;}
.ls7{letter-spacing:40.780561px;}
.ls1{letter-spacing:42.220537px;}
.ls6{letter-spacing:49.420537px;}
.ls9{letter-spacing:412.391224px;}
.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;}
}
.ws8{word-spacing:-60.480000px;}
.ws4{word-spacing:-15.361920px;}
.ws2{word-spacing:-15.212160px;}
.ws5{word-spacing:-14.575680px;}
.ws1{word-spacing:-13.210560px;}
.wsa{word-spacing:-12.366720px;}
.ws7{word-spacing:-10.116000px;}
.ws0{word-spacing:-9.370080px;}
.ws6{word-spacing:-8.860320px;}
.ws9{word-spacing:-8.676000px;}
.ws3{word-spacing:0.000000px;}
._f{margin-left:-6.154560px;}
._b{margin-left:-4.944960px;}
._6{margin-left:-3.810240px;}
._0{margin-left:-2.419200px;}
._1{margin-left:-1.149120px;}
._2{width:1.293120px;}
._5{width:2.517120px;}
._3{width:3.628800px;}
._4{width:4.815360px;}
._7{width:5.889600px;}
._c{width:6.969600px;}
._8{width:7.983360px;}
._a{width:9.374400px;}
._9{width:11.430720px;}
._12{width:13.063680px;}
._13{width:15.906240px;}
._10{width:20.623680px;}
._11{width:22.112640px;}
._e{width:136.699200px;}
._d{width:197.104320px;}
._19{width:198.495360px;}
._15{width:210.300480px;}
._16{width:308.051764px;}
._17{width:412.391284px;}
._18{width:766.530934px;}
._14{width:849.334329px;}
.fc1{color:rgb(29,33,41);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs5{font-size:48.000000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y115{bottom:3.600000px;}
.y2a{bottom:3.900000px;}
.y29{bottom:53.016105px;}
.y6c{bottom:101.429850px;}
.y55{bottom:101.430000px;}
.y28{bottom:102.870000px;}
.y17d{bottom:103.230000px;}
.y171{bottom:106.110000px;}
.yb9{bottom:112.950000px;}
.y6b{bottom:116.909850px;}
.y54{bottom:116.910000px;}
.y170{bottom:117.270000px;}
.y27{bottom:119.790000px;}
.y160{bottom:121.590000px;}
.y138{bottom:121.950000px;}
.y17c{bottom:122.310000px;}
.yf4{bottom:124.470000px;}
.yb8{bottom:132.030000px;}
.y6a{bottom:132.389850px;}
.y92{bottom:132.390000px;}
.y15f{bottom:132.750000px;}
.yd4{bottom:135.630000px;}
.y26{bottom:136.710000px;}
.yd8{bottom:137.069850px;}
.y53{bottom:137.070000px;}
.y137{bottom:138.510000px;}
.yc4{bottom:140.670000px;}
.y17b{bottom:141.030000px;}
.y16a{bottom:141.390000px;}
.yf3{bottom:143.190000px;}
.y111{bottom:147.869850px;}
.y91{bottom:147.870000px;}
.yd7{bottom:148.230000px;}
.yb7{bottom:150.750000px;}
.y25{bottom:151.110000px;}
.y69{bottom:152.549850px;}
.y52{bottom:153.630000px;}
.yd3{bottom:154.350000px;}
.y136{bottom:155.070000px;}
.y195{bottom:157.230000px;}
.yc3{bottom:159.750000px;}
.y169{bottom:160.470000px;}
.yf2{bottom:161.910000px;}
.y158{bottom:162.990000px;}
.y90{bottom:163.350000px;}
.y51{bottom:164.069850px;}
.y68{bottom:168.029850px;}
.yb6{bottom:169.470000px;}
.y135{bottom:171.270000px;}
.yd2{bottom:173.070000px;}
.y194{bottom:176.310000px;}
.yc2{bottom:178.470000px;}
.y168{bottom:179.190000px;}
.y67{bottom:179.550000px;}
.y157{bottom:179.910000px;}
.yf1{bottom:180.630000px;}
.y8f{bottom:183.510000px;}
.y50{bottom:183.870000px;}
.yb5{bottom:188.190000px;}
.y16f{bottom:191.790000px;}
.y4f{bottom:193.950000px;}
.y8e{bottom:195.030000px;}
.y156{bottom:196.830000px;}
.yc1{bottom:197.190000px;}
.yd1{bottom:197.550000px;}
.y167{bottom:197.910000px;}
.yf0{bottom:199.350000px;}
.y134{bottom:200.070000px;}
.y193{bottom:204.030000px;}
.yb4{bottom:206.910000px;}
.y155{bottom:213.390000px;}
.y15e{bottom:215.550000px;}
.y4e{bottom:215.910000px;}
.y66{bottom:216.270000px;}
.yd0{bottom:216.630000px;}
.yef{bottom:218.070000px;}
.y24{bottom:218.790000px;}
.y192{bottom:222.750000px;}
.yb3{bottom:225.630000px;}
.y8d{bottom:228.870000px;}
.y154{bottom:230.310000px;}
.y133{bottom:232.830000px;}
.y4d{bottom:234.630000px;}
.y65{bottom:235.350000px;}
.yee{bottom:236.790000px;}
.y23{bottom:238.230000px;}
.y17a{bottom:240.390000px;}
.y191{bottom:241.470000px;}
.yb2{bottom:244.350000px;}
.y153{bottom:247.230000px;}
.y8c{bottom:247.590000px;}
.y132{bottom:249.390000px;}
.y16e{bottom:252.990000px;}
.y4c{bottom:253.350000px;}
.y64{bottom:254.070000px;}
.y22{bottom:256.950000px;}
.y179{bottom:259.470000px;}
.yed{bottom:263.790000px;}
.y152{bottom:264.150000px;}
.y131{bottom:265.950000px;}
.y8b{bottom:266.310000px;}
.yb1{bottom:268.830000px;}
.y190{bottom:269.190000px;}
.y4b{bottom:272.070000px;}
.y63{bottom:272.790000px;}
.y21{bottom:275.670000px;}
.y110{bottom:277.110000px;}
.y178{bottom:278.190000px;}
.yec{bottom:280.710000px;}
.y151{bottom:281.070000px;}
.y130{bottom:282.510000px;}
.yb0{bottom:287.910000px;}
.y4a{bottom:290.790000px;}
.y62{bottom:291.510000px;}
.y8a{bottom:294.030000px;}
.y20{bottom:294.390000px;}
.y177{bottom:296.910000px;}
.yeb{bottom:297.630000px;}
.y150{bottom:297.990000px;}
.y12f{bottom:299.070000px;}
.y10f{bottom:301.230000px;}
.yaf{bottom:306.630000px;}
.y49{bottom:309.510000px;}
.y61{bottom:310.230000px;}
.y1f{bottom:313.110000px;}
.yea{bottom:314.549850px;}
.y14f{bottom:314.910000px;}
.yc0{bottom:315.270000px;}
.y176{bottom:315.630000px;}
.ycf{bottom:315.990000px;}
.y10e{bottom:320.670000px;}
.y89{bottom:321.750000px;}
.yae{bottom:325.350000px;}
.y48{bottom:328.230000px;}
.y60{bottom:329.310000px;}
.ye9{bottom:331.470000px;}
.y1e{bottom:331.830000px;}
.yd6{bottom:333.990000px;}
.ybf{bottom:334.350000px;}
.yce{bottom:335.070000px;}
.y10d{bottom:339.390000px;}
.y88{bottom:340.470000px;}
.yad{bottom:344.070000px;}
.y47{bottom:347.310000px;}
.y5f{bottom:348.030000px;}
.ye8{bottom:348.390000px;}
.y14e{bottom:348.750000px;}
.y1d{bottom:350.550000px;}
.ybe{bottom:353.070000px;}
.ycd{bottom:353.790000px;}
.yac{bottom:362.790000px;}
.y10c{bottom:363.510000px;}
.y87{bottom:364.950000px;}
.ye7{bottom:365.310000px;}
.y15d{bottom:366.030000px;}
.y5e{bottom:366.750000px;}
.y1c{bottom:369.270000px;}
.y46{bottom:371.430000px;}
.ybd{bottom:371.790000px;}
.ycc{bottom:372.510000px;}
.y14d{bottom:375.030000px;}
.y166{bottom:378.270000px;}
.y12e{bottom:381.150000px;}
.yab{bottom:381.510000px;}
.y10b{bottom:382.590000px;}
.y86{bottom:384.030000px;}
.y15c{bottom:384.750000px;}
.y1b{bottom:387.990000px;}
.y45{bottom:390.510000px;}
.y5d{bottom:391.230000px;}
.y14c{bottom:394.110000px;}
.y165{bottom:397.350000px;}
.y12d{bottom:397.710000px;}
.yaa{bottom:400.230000px;}
.y10a{bottom:401.670000px;}
.y85{bottom:402.750000px;}
.y15b{bottom:403.470000px;}
.y1a7{bottom:405.270000px;}
.y1a{bottom:407.070000px;}
.y44{bottom:409.230000px;}
.ycb{bottom:409.950000px;}
.ye6{bottom:410.670000px;}
.y14b{bottom:412.830000px;}
.y12c{bottom:414.270000px;}
.ya9{bottom:418.950000px;}
.y109{bottom:420.390000px;}
.y84{bottom:421.470000px;}
.y164{bottom:421.830000px;}
.y15a{bottom:422.190000px;}
.y5c{bottom:427.590000px;}
.y43{bottom:427.950000px;}
.yca{bottom:429.030000px;}
.ye5{bottom:429.390000px;}
.y19{bottom:431.190000px;}
.y14a{bottom:431.550000px;}
.y1a6{bottom:433.350000px;}
.y175{bottom:433.710000px;}
.y18f{bottom:436.950000px;}
.ya8{bottom:438.030000px;}
.y108{bottom:439.110000px;}
.y83{bottom:440.190000px;}
.y163{bottom:440.910000px;}
.y12b{bottom:442.710000px;}
.y159{bottom:446.670000px;}
.y42{bottom:447.030000px;}
.yc9{bottom:447.750000px;}
.ye4{bottom:448.110000px;}
.y18{bottom:450.270000px;}
.y1a5{bottom:452.070000px;}
.y174{bottom:452.790000px;}
.y149{bottom:456.030000px;}
.ya7{bottom:456.750000px;}
.y107{bottom:457.830000px;}
.y12a{bottom:459.270000px;}
.y162{bottom:459.630000px;}
.y82{bottom:465.030000px;}
.y41{bottom:465.750000px;}
.yc8{bottom:466.470000px;}
.ye3{bottom:466.830000px;}
.y17{bottom:468.990000px;}
.y1a4{bottom:470.790000px;}
.y173{bottom:471.510000px;}
.y148{bottom:475.110000px;}
.y129{bottom:475.830000px;}
.y106{bottom:476.550000px;}
.y16d{bottom:478.350000px;}
.ya6{bottom:480.870000px;}
.y18e{bottom:483.750000px;}
.y81{bottom:484.110000px;}
.y40{bottom:484.470000px;}
.yc7{bottom:485.190000px;}
.ye2{bottom:485.550000px;}
.y16{bottom:488.070000px;}
.y1a3{bottom:489.510000px;}
.y172{bottom:490.230000px;}
.y128{bottom:492.390000px;}
.y147{bottom:493.830000px;}
.y105{bottom:495.270000px;}
.ya5{bottom:499.950000px;}
.y18d{bottom:502.470000px;}
.y16c{bottom:502.830000px;}
.y3f{bottom:503.190000px;}
.ye1{bottom:504.270000px;}
.y15{bottom:506.790000px;}
.y80{bottom:508.590000px;}
.y127{bottom:508.950000px;}
.yc6{bottom:509.670000px;}
.y146{bottom:512.550000px;}
.y104{bottom:513.990000px;}
.y1a2{bottom:517.230000px;}
.ya4{bottom:519.030000px;}
.y18c{bottom:521.190000px;}
.y3e{bottom:521.910000px;}
.y126{bottom:525.150000px;}
.y14{bottom:525.510000px;}
.y7f{bottom:528.030000px;}
.ye0{bottom:531.270000px;}
.y103{bottom:532.710000px;}
.y1a1{bottom:535.950000px;}
.ya3{bottom:537.750000px;}
.y18b{bottom:539.910000px;}
.y3d{bottom:540.630000px;}
.y13{bottom:544.230000px;}
.ybc{bottom:546.390000px;}
.y7e{bottom:546.750000px;}
.ydf{bottom:548.190000px;}
.y145{bottom:549.990000px;}
.y102{bottom:551.430000px;}
.y125{bottom:553.950000px;}
.y1a0{bottom:555.030000px;}
.ya2{bottom:556.470000px;}
.y3c{bottom:559.350000px;}
.y12{bottom:562.950000px;}
.yde{bottom:565.110000px;}
.y7d{bottom:565.470000px;}
.y18a{bottom:567.630000px;}
.y144{bottom:568.710000px;}
.y101{bottom:570.150000px;}
.y124{bottom:570.510000px;}
.y19f{bottom:573.750000px;}
.ya1{bottom:575.190000px;}
.y3b{bottom:578.070000px;}
.y11{bottom:581.670000px;}
.y7c{bottom:584.190000px;}
.y189{bottom:586.350000px;}
.y123{bottom:586.710000px;}
.y143{bottom:587.430000px;}
.y100{bottom:588.870000px;}
.ya0{bottom:593.910000px;}
.y3a{bottom:596.790000px;}
.ydd{bottom:598.590000px;}
.y10{bottom:600.390000px;}
.y19e{bottom:601.470000px;}
.y7b{bottom:602.910000px;}
.y122{bottom:603.270000px;}
.y188{bottom:605.070000px;}
.y142{bottom:606.150000px;}
.yff{bottom:607.590000px;}
.y9f{bottom:612.630000px;}
.ydc{bottom:615.509850px;}
.y39{bottom:615.510000px;}
.y121{bottom:619.830000px;}
.y19d{bottom:620.190000px;}
.y7a{bottom:621.630000px;}
.yf{bottom:624.870000px;}
.yfe{bottom:626.310000px;}
.y9e{bottom:631.350000px;}
.ydb{bottom:632.430000px;}
.y187{bottom:632.790000px;}
.y38{bottom:634.230000px;}
.y19c{bottom:638.910000px;}
.y79{bottom:640.350000px;}
.y141{bottom:643.590000px;}
.ye{bottom:643.950000px;}
.y120{bottom:648.630000px;}
.y9d{bottom:650.070000px;}
.y186{bottom:651.510000px;}
.y37{bottom:652.950000px;}
.yfd{bottom:653.310000px;}
.yda{bottom:658.710000px;}
.y78{bottom:659.070000px;}
.y140{bottom:662.310000px;}
.yd{bottom:662.670000px;}
.y11f{bottom:664.830000px;}
.y19b{bottom:666.630000px;}
.y9c{bottom:668.790000px;}
.yfc{bottom:670.230000px;}
.y36{bottom:671.670000px;}
.y77{bottom:677.790000px;}
.y185{bottom:679.230000px;}
.yc{bottom:681.390000px;}
.y19a{bottom:685.350000px;}
.yfb{bottom:687.150000px;}
.y5b{bottom:690.750000px;}
.y9b{bottom:693.270000px;}
.y35{bottom:696.150000px;}
.ybb{bottom:696.510000px;}
.y11e{bottom:697.950000px;}
.yb{bottom:700.110000px;}
.y76{bottom:702.270000px;}
.yfa{bottom:704.070000px;}
.y5a{bottom:709.470000px;}
.y9a{bottom:712.350000px;}
.y13f{bottom:713.430000px;}
.y11d{bottom:714.510000px;}
.y161{bottom:714.870000px;}
.y34{bottom:715.230000px;}
.y184{bottom:716.670000px;}
.ya{bottom:718.830000px;}
.yba{bottom:720.990000px;}
.y75{bottom:721.350000px;}
.y11c{bottom:730.710000px;}
.y99{bottom:731.070000px;}
.y199{bottom:731.790000px;}
.y59{bottom:733.590000px;}
.y33{bottom:733.950000px;}
.y13e{bottom:736.830000px;}
.y9{bottom:737.550000px;}
.yf9{bottom:737.910000px;}
.yc5{bottom:739.710000px;}
.y74{bottom:740.070000px;}
.y183{bottom:744.750000px;}
.y98{bottom:749.790000px;}
.y198{bottom:750.510000px;}
.y32{bottom:752.670000px;}
.y13d{bottom:753.390000px;}
.yf8{bottom:754.830000px;}
.y8{bottom:756.270000px;}
.y73{bottom:758.790000px;}
.y11b{bottom:759.510000px;}
.y182{bottom:763.470000px;}
.y97{bottom:768.510000px;}
.y13c{bottom:769.950000px;}
.yf7{bottom:771.390000px;}
.y31{bottom:771.750000px;}
.y7{bottom:774.990000px;}
.y11a{bottom:776.070000px;}
.y72{bottom:777.510000px;}
.y197{bottom:778.230000px;}
.y181{bottom:782.190000px;}
.y13b{bottom:786.510000px;}
.y96{bottom:787.230000px;}
.yf6{bottom:788.670000px;}
.y30{bottom:790.470000px;}
.y119{bottom:792.270000px;}
.yd9{bottom:795.870000px;}
.y71{bottom:796.230000px;}
.y196{bottom:796.950000px;}
.y6{bottom:802.710000px;}
.y95{bottom:805.950000px;}
.y118{bottom:808.830000px;}
.y2f{bottom:809.190000px;}
.y180{bottom:809.910000px;}
.yf5{bottom:814.590000px;}
.y70{bottom:814.950000px;}
.y5{bottom:819.630000px;}
.y94{bottom:824.670000px;}
.y117{bottom:825.390000px;}
.y2e{bottom:827.910000px;}
.y17f{bottom:828.630000px;}
.y13a{bottom:831.510000px;}
.yd5{bottom:833.310000px;}
.y6f{bottom:833.670000px;}
.y4{bottom:836.190000px;}
.y116{bottom:841.950000px;}
.y93{bottom:843.750000px;}
.y2d{bottom:846.630000px;}
.y16b{bottom:852.390000px;}
.y6e{bottom:852.750000px;}
.y114{bottom:854.910000px;}
.y17e{bottom:856.350000px;}
.y3{bottom:858.870000px;}
.y2c{bottom:865.350000px;}
.y139{bottom:870.390000px;}
.y58{bottom:871.110000px;}
.y6d{bottom:871.470000px;}
.y2{bottom:881.190000px;}
.y2b{bottom:884.070000px;}
.y113{bottom:886.950000px;}
.y57{bottom:890.190000px;}
.y112{bottom:903.510000px;}
.y1{bottom:908.550000px;}
.y56{bottom:908.910000px;}
.hc{height:16.200000px;}
.h7{height:16.380000px;}
.h9{height:27.109688px;}
.ha{height:32.273438px;}
.h8{height:34.500000px;}
.h5{height:42.600937px;}
.hb{height:45.127969px;}
.h6{height:49.055625px;}
.h4{height:49.910625px;}
.h2{height:55.164375px;}
.h3{height:65.671875px;}
.h1{height:1021.500000px;}
.h0{height:1021.680000px;}
.w6{width:2.880000px;}
.w4{width:3.240000px;}
.w5{width:6.120000px;}
.w8{width:6.480000px;}
.wd{width:14.760000px;}
.wc{width:19.800000px;}
.w3{width:31.680000px;}
.w2{width:34.681500px;}
.wb{width:49.320000px;}
.w7{width:51.120000px;}
.w9{width:65.880000px;}
.wa{width:84.960000px;}
.w0{width:689.040000px;}
.w1{width:689.250000px;}
.x0{left:0.000000px;}
.x7{left:97.979850px;}
.xc{left:116.700000px;}
.x9{left:124.981200px;}
.x3{left:145.860135px;}
.xf{left:148.380000px;}
.x1d{left:150.899295px;}
.xa{left:151.980900px;}
.x10{left:157.380000px;}
.xb{left:161.700000px;}
.x6{left:189.059955px;}
.x2{left:198.059355px;}
.xd{left:212.099040px;}
.x5{left:241.260675px;}
.x11{left:263.220000px;}
.x12{left:266.460000px;}
.x13{left:272.940000px;}
.x14{left:276.180000px;}
.x1{left:294.540000px;}
.x8{left:327.178500px;}
.x15{left:342.060000px;}
.x4{left:344.220465px;}
.xe{left:361.138935px;}
.x16{left:446.100000px;}
.x17{left:467.340000px;}
.x18{left:516.660000px;}
.x19{left:519.540000px;}
.x1a{left:539.340000px;}
.x1b{left:542.580000px;}
.x1c{left:557.340000px;}
@media print{
.v3{vertical-align:-16.640000pt;}
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000011pt;}
.ls3{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.403200pt;}
.ls8{letter-spacing:0.537579pt;}
.lsa{letter-spacing:0.558059pt;}
.ls4{letter-spacing:29.849387pt;}
.ls7{letter-spacing:36.249387pt;}
.ls1{letter-spacing:37.529366pt;}
.ls6{letter-spacing:43.929366pt;}
.ls9{letter-spacing:366.569977pt;}
.ws8{word-spacing:-53.760000pt;}
.ws4{word-spacing:-13.655040pt;}
.ws2{word-spacing:-13.521920pt;}
.ws5{word-spacing:-12.956160pt;}
.ws1{word-spacing:-11.742720pt;}
.wsa{word-spacing:-10.992640pt;}
.ws7{word-spacing:-8.992000pt;}
.ws0{word-spacing:-8.328960pt;}
.ws6{word-spacing:-7.875840pt;}
.ws9{word-spacing:-7.712000pt;}
.ws3{word-spacing:0.000000pt;}
._f{margin-left:-5.470720pt;}
._b{margin-left:-4.395520pt;}
._6{margin-left:-3.386880pt;}
._0{margin-left:-2.150400pt;}
._1{margin-left:-1.021440pt;}
._2{width:1.149440pt;}
._5{width:2.237440pt;}
._3{width:3.225600pt;}
._4{width:4.280320pt;}
._7{width:5.235200pt;}
._c{width:6.195200pt;}
._8{width:7.096320pt;}
._a{width:8.332800pt;}
._9{width:10.160640pt;}
._12{width:11.612160pt;}
._13{width:14.138880pt;}
._10{width:18.332160pt;}
._11{width:19.655680pt;}
._e{width:121.510400pt;}
._d{width:175.203840pt;}
._19{width:176.440320pt;}
._15{width:186.933760pt;}
._16{width:273.823790pt;}
._17{width:366.570030pt;}
._18{width:681.360830pt;}
._14{width:754.963848pt;}
.fs6{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs5{font-size:42.666667pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y115{bottom:3.200000pt;}
.y2a{bottom:3.466667pt;}
.y29{bottom:47.125427pt;}
.y6c{bottom:90.159867pt;}
.y55{bottom:90.160000pt;}
.y28{bottom:91.440000pt;}
.y17d{bottom:91.760000pt;}
.y171{bottom:94.320000pt;}
.yb9{bottom:100.400000pt;}
.y6b{bottom:103.919867pt;}
.y54{bottom:103.920000pt;}
.y170{bottom:104.240000pt;}
.y27{bottom:106.480000pt;}
.y160{bottom:108.080000pt;}
.y138{bottom:108.400000pt;}
.y17c{bottom:108.720000pt;}
.yf4{bottom:110.640000pt;}
.yb8{bottom:117.360000pt;}
.y6a{bottom:117.679867pt;}
.y92{bottom:117.680000pt;}
.y15f{bottom:118.000000pt;}
.yd4{bottom:120.560000pt;}
.y26{bottom:121.520000pt;}
.yd8{bottom:121.839867pt;}
.y53{bottom:121.840000pt;}
.y137{bottom:123.120000pt;}
.yc4{bottom:125.040000pt;}
.y17b{bottom:125.360000pt;}
.y16a{bottom:125.680000pt;}
.yf3{bottom:127.280000pt;}
.y111{bottom:131.439867pt;}
.y91{bottom:131.440000pt;}
.yd7{bottom:131.760000pt;}
.yb7{bottom:134.000000pt;}
.y25{bottom:134.320000pt;}
.y69{bottom:135.599867pt;}
.y52{bottom:136.560000pt;}
.yd3{bottom:137.200000pt;}
.y136{bottom:137.840000pt;}
.y195{bottom:139.760000pt;}
.yc3{bottom:142.000000pt;}
.y169{bottom:142.640000pt;}
.yf2{bottom:143.920000pt;}
.y158{bottom:144.880000pt;}
.y90{bottom:145.200000pt;}
.y51{bottom:145.839867pt;}
.y68{bottom:149.359867pt;}
.yb6{bottom:150.640000pt;}
.y135{bottom:152.240000pt;}
.yd2{bottom:153.840000pt;}
.y194{bottom:156.720000pt;}
.yc2{bottom:158.640000pt;}
.y168{bottom:159.280000pt;}
.y67{bottom:159.600000pt;}
.y157{bottom:159.920000pt;}
.yf1{bottom:160.560000pt;}
.y8f{bottom:163.120000pt;}
.y50{bottom:163.440000pt;}
.yb5{bottom:167.280000pt;}
.y16f{bottom:170.480000pt;}
.y4f{bottom:172.400000pt;}
.y8e{bottom:173.360000pt;}
.y156{bottom:174.960000pt;}
.yc1{bottom:175.280000pt;}
.yd1{bottom:175.600000pt;}
.y167{bottom:175.920000pt;}
.yf0{bottom:177.200000pt;}
.y134{bottom:177.840000pt;}
.y193{bottom:181.360000pt;}
.yb4{bottom:183.920000pt;}
.y155{bottom:189.680000pt;}
.y15e{bottom:191.600000pt;}
.y4e{bottom:191.920000pt;}
.y66{bottom:192.240000pt;}
.yd0{bottom:192.560000pt;}
.yef{bottom:193.840000pt;}
.y24{bottom:194.480000pt;}
.y192{bottom:198.000000pt;}
.yb3{bottom:200.560000pt;}
.y8d{bottom:203.440000pt;}
.y154{bottom:204.720000pt;}
.y133{bottom:206.960000pt;}
.y4d{bottom:208.560000pt;}
.y65{bottom:209.200000pt;}
.yee{bottom:210.480000pt;}
.y23{bottom:211.760000pt;}
.y17a{bottom:213.680000pt;}
.y191{bottom:214.640000pt;}
.yb2{bottom:217.200000pt;}
.y153{bottom:219.760000pt;}
.y8c{bottom:220.080000pt;}
.y132{bottom:221.680000pt;}
.y16e{bottom:224.880000pt;}
.y4c{bottom:225.200000pt;}
.y64{bottom:225.840000pt;}
.y22{bottom:228.400000pt;}
.y179{bottom:230.640000pt;}
.yed{bottom:234.480000pt;}
.y152{bottom:234.800000pt;}
.y131{bottom:236.400000pt;}
.y8b{bottom:236.720000pt;}
.yb1{bottom:238.960000pt;}
.y190{bottom:239.280000pt;}
.y4b{bottom:241.840000pt;}
.y63{bottom:242.480000pt;}
.y21{bottom:245.040000pt;}
.y110{bottom:246.320000pt;}
.y178{bottom:247.280000pt;}
.yec{bottom:249.520000pt;}
.y151{bottom:249.840000pt;}
.y130{bottom:251.120000pt;}
.yb0{bottom:255.920000pt;}
.y4a{bottom:258.480000pt;}
.y62{bottom:259.120000pt;}
.y8a{bottom:261.360000pt;}
.y20{bottom:261.680000pt;}
.y177{bottom:263.920000pt;}
.yeb{bottom:264.560000pt;}
.y150{bottom:264.880000pt;}
.y12f{bottom:265.840000pt;}
.y10f{bottom:267.760000pt;}
.yaf{bottom:272.560000pt;}
.y49{bottom:275.120000pt;}
.y61{bottom:275.760000pt;}
.y1f{bottom:278.320000pt;}
.yea{bottom:279.599867pt;}
.y14f{bottom:279.920000pt;}
.yc0{bottom:280.240000pt;}
.y176{bottom:280.560000pt;}
.ycf{bottom:280.880000pt;}
.y10e{bottom:285.040000pt;}
.y89{bottom:286.000000pt;}
.yae{bottom:289.200000pt;}
.y48{bottom:291.760000pt;}
.y60{bottom:292.720000pt;}
.ye9{bottom:294.640000pt;}
.y1e{bottom:294.960000pt;}
.yd6{bottom:296.880000pt;}
.ybf{bottom:297.200000pt;}
.yce{bottom:297.840000pt;}
.y10d{bottom:301.680000pt;}
.y88{bottom:302.640000pt;}
.yad{bottom:305.840000pt;}
.y47{bottom:308.720000pt;}
.y5f{bottom:309.360000pt;}
.ye8{bottom:309.680000pt;}
.y14e{bottom:310.000000pt;}
.y1d{bottom:311.600000pt;}
.ybe{bottom:313.840000pt;}
.ycd{bottom:314.480000pt;}
.yac{bottom:322.480000pt;}
.y10c{bottom:323.120000pt;}
.y87{bottom:324.400000pt;}
.ye7{bottom:324.720000pt;}
.y15d{bottom:325.360000pt;}
.y5e{bottom:326.000000pt;}
.y1c{bottom:328.240000pt;}
.y46{bottom:330.160000pt;}
.ybd{bottom:330.480000pt;}
.ycc{bottom:331.120000pt;}
.y14d{bottom:333.360000pt;}
.y166{bottom:336.240000pt;}
.y12e{bottom:338.800000pt;}
.yab{bottom:339.120000pt;}
.y10b{bottom:340.080000pt;}
.y86{bottom:341.360000pt;}
.y15c{bottom:342.000000pt;}
.y1b{bottom:344.880000pt;}
.y45{bottom:347.120000pt;}
.y5d{bottom:347.760000pt;}
.y14c{bottom:350.320000pt;}
.y165{bottom:353.200000pt;}
.y12d{bottom:353.520000pt;}
.yaa{bottom:355.760000pt;}
.y10a{bottom:357.040000pt;}
.y85{bottom:358.000000pt;}
.y15b{bottom:358.640000pt;}
.y1a7{bottom:360.240000pt;}
.y1a{bottom:361.840000pt;}
.y44{bottom:363.760000pt;}
.ycb{bottom:364.400000pt;}
.ye6{bottom:365.040000pt;}
.y14b{bottom:366.960000pt;}
.y12c{bottom:368.240000pt;}
.ya9{bottom:372.400000pt;}
.y109{bottom:373.680000pt;}
.y84{bottom:374.640000pt;}
.y164{bottom:374.960000pt;}
.y15a{bottom:375.280000pt;}
.y5c{bottom:380.080000pt;}
.y43{bottom:380.400000pt;}
.yca{bottom:381.360000pt;}
.ye5{bottom:381.680000pt;}
.y19{bottom:383.280000pt;}
.y14a{bottom:383.600000pt;}
.y1a6{bottom:385.200000pt;}
.y175{bottom:385.520000pt;}
.y18f{bottom:388.400000pt;}
.ya8{bottom:389.360000pt;}
.y108{bottom:390.320000pt;}
.y83{bottom:391.280000pt;}
.y163{bottom:391.920000pt;}
.y12b{bottom:393.520000pt;}
.y159{bottom:397.040000pt;}
.y42{bottom:397.360000pt;}
.yc9{bottom:398.000000pt;}
.ye4{bottom:398.320000pt;}
.y18{bottom:400.240000pt;}
.y1a5{bottom:401.840000pt;}
.y174{bottom:402.480000pt;}
.y149{bottom:405.360000pt;}
.ya7{bottom:406.000000pt;}
.y107{bottom:406.960000pt;}
.y12a{bottom:408.240000pt;}
.y162{bottom:408.560000pt;}
.y82{bottom:413.360000pt;}
.y41{bottom:414.000000pt;}
.yc8{bottom:414.640000pt;}
.ye3{bottom:414.960000pt;}
.y17{bottom:416.880000pt;}
.y1a4{bottom:418.480000pt;}
.y173{bottom:419.120000pt;}
.y148{bottom:422.320000pt;}
.y129{bottom:422.960000pt;}
.y106{bottom:423.600000pt;}
.y16d{bottom:425.200000pt;}
.ya6{bottom:427.440000pt;}
.y18e{bottom:430.000000pt;}
.y81{bottom:430.320000pt;}
.y40{bottom:430.640000pt;}
.yc7{bottom:431.280000pt;}
.ye2{bottom:431.600000pt;}
.y16{bottom:433.840000pt;}
.y1a3{bottom:435.120000pt;}
.y172{bottom:435.760000pt;}
.y128{bottom:437.680000pt;}
.y147{bottom:438.960000pt;}
.y105{bottom:440.240000pt;}
.ya5{bottom:444.400000pt;}
.y18d{bottom:446.640000pt;}
.y16c{bottom:446.960000pt;}
.y3f{bottom:447.280000pt;}
.ye1{bottom:448.240000pt;}
.y15{bottom:450.480000pt;}
.y80{bottom:452.080000pt;}
.y127{bottom:452.400000pt;}
.yc6{bottom:453.040000pt;}
.y146{bottom:455.600000pt;}
.y104{bottom:456.880000pt;}
.y1a2{bottom:459.760000pt;}
.ya4{bottom:461.360000pt;}
.y18c{bottom:463.280000pt;}
.y3e{bottom:463.920000pt;}
.y126{bottom:466.800000pt;}
.y14{bottom:467.120000pt;}
.y7f{bottom:469.360000pt;}
.ye0{bottom:472.240000pt;}
.y103{bottom:473.520000pt;}
.y1a1{bottom:476.400000pt;}
.ya3{bottom:478.000000pt;}
.y18b{bottom:479.920000pt;}
.y3d{bottom:480.560000pt;}
.y13{bottom:483.760000pt;}
.ybc{bottom:485.680000pt;}
.y7e{bottom:486.000000pt;}
.ydf{bottom:487.280000pt;}
.y145{bottom:488.880000pt;}
.y102{bottom:490.160000pt;}
.y125{bottom:492.400000pt;}
.y1a0{bottom:493.360000pt;}
.ya2{bottom:494.640000pt;}
.y3c{bottom:497.200000pt;}
.y12{bottom:500.400000pt;}
.yde{bottom:502.320000pt;}
.y7d{bottom:502.640000pt;}
.y18a{bottom:504.560000pt;}
.y144{bottom:505.520000pt;}
.y101{bottom:506.800000pt;}
.y124{bottom:507.120000pt;}
.y19f{bottom:510.000000pt;}
.ya1{bottom:511.280000pt;}
.y3b{bottom:513.840000pt;}
.y11{bottom:517.040000pt;}
.y7c{bottom:519.280000pt;}
.y189{bottom:521.200000pt;}
.y123{bottom:521.520000pt;}
.y143{bottom:522.160000pt;}
.y100{bottom:523.440000pt;}
.ya0{bottom:527.920000pt;}
.y3a{bottom:530.480000pt;}
.ydd{bottom:532.080000pt;}
.y10{bottom:533.680000pt;}
.y19e{bottom:534.640000pt;}
.y7b{bottom:535.920000pt;}
.y122{bottom:536.240000pt;}
.y188{bottom:537.840000pt;}
.y142{bottom:538.800000pt;}
.yff{bottom:540.080000pt;}
.y9f{bottom:544.560000pt;}
.ydc{bottom:547.119867pt;}
.y39{bottom:547.120000pt;}
.y121{bottom:550.960000pt;}
.y19d{bottom:551.280000pt;}
.y7a{bottom:552.560000pt;}
.yf{bottom:555.440000pt;}
.yfe{bottom:556.720000pt;}
.y9e{bottom:561.200000pt;}
.ydb{bottom:562.160000pt;}
.y187{bottom:562.480000pt;}
.y38{bottom:563.760000pt;}
.y19c{bottom:567.920000pt;}
.y79{bottom:569.200000pt;}
.y141{bottom:572.080000pt;}
.ye{bottom:572.400000pt;}
.y120{bottom:576.560000pt;}
.y9d{bottom:577.840000pt;}
.y186{bottom:579.120000pt;}
.y37{bottom:580.400000pt;}
.yfd{bottom:580.720000pt;}
.yda{bottom:585.520000pt;}
.y78{bottom:585.840000pt;}
.y140{bottom:588.720000pt;}
.yd{bottom:589.040000pt;}
.y11f{bottom:590.960000pt;}
.y19b{bottom:592.560000pt;}
.y9c{bottom:594.480000pt;}
.yfc{bottom:595.760000pt;}
.y36{bottom:597.040000pt;}
.y77{bottom:602.480000pt;}
.y185{bottom:603.760000pt;}
.yc{bottom:605.680000pt;}
.y19a{bottom:609.200000pt;}
.yfb{bottom:610.800000pt;}
.y5b{bottom:614.000000pt;}
.y9b{bottom:616.240000pt;}
.y35{bottom:618.800000pt;}
.ybb{bottom:619.120000pt;}
.y11e{bottom:620.400000pt;}
.yb{bottom:622.320000pt;}
.y76{bottom:624.240000pt;}
.yfa{bottom:625.840000pt;}
.y5a{bottom:630.640000pt;}
.y9a{bottom:633.200000pt;}
.y13f{bottom:634.160000pt;}
.y11d{bottom:635.120000pt;}
.y161{bottom:635.440000pt;}
.y34{bottom:635.760000pt;}
.y184{bottom:637.040000pt;}
.ya{bottom:638.960000pt;}
.yba{bottom:640.880000pt;}
.y75{bottom:641.200000pt;}
.y11c{bottom:649.520000pt;}
.y99{bottom:649.840000pt;}
.y199{bottom:650.480000pt;}
.y59{bottom:652.080000pt;}
.y33{bottom:652.400000pt;}
.y13e{bottom:654.960000pt;}
.y9{bottom:655.600000pt;}
.yf9{bottom:655.920000pt;}
.yc5{bottom:657.520000pt;}
.y74{bottom:657.840000pt;}
.y183{bottom:662.000000pt;}
.y98{bottom:666.480000pt;}
.y198{bottom:667.120000pt;}
.y32{bottom:669.040000pt;}
.y13d{bottom:669.680000pt;}
.yf8{bottom:670.960000pt;}
.y8{bottom:672.240000pt;}
.y73{bottom:674.480000pt;}
.y11b{bottom:675.120000pt;}
.y182{bottom:678.640000pt;}
.y97{bottom:683.120000pt;}
.y13c{bottom:684.400000pt;}
.yf7{bottom:685.680000pt;}
.y31{bottom:686.000000pt;}
.y7{bottom:688.880000pt;}
.y11a{bottom:689.840000pt;}
.y72{bottom:691.120000pt;}
.y197{bottom:691.760000pt;}
.y181{bottom:695.280000pt;}
.y13b{bottom:699.120000pt;}
.y96{bottom:699.760000pt;}
.yf6{bottom:701.040000pt;}
.y30{bottom:702.640000pt;}
.y119{bottom:704.240000pt;}
.yd9{bottom:707.440000pt;}
.y71{bottom:707.760000pt;}
.y196{bottom:708.400000pt;}
.y6{bottom:713.520000pt;}
.y95{bottom:716.400000pt;}
.y118{bottom:718.960000pt;}
.y2f{bottom:719.280000pt;}
.y180{bottom:719.920000pt;}
.yf5{bottom:724.080000pt;}
.y70{bottom:724.400000pt;}
.y5{bottom:728.560000pt;}
.y94{bottom:733.040000pt;}
.y117{bottom:733.680000pt;}
.y2e{bottom:735.920000pt;}
.y17f{bottom:736.560000pt;}
.y13a{bottom:739.120000pt;}
.yd5{bottom:740.720000pt;}
.y6f{bottom:741.040000pt;}
.y4{bottom:743.280000pt;}
.y116{bottom:748.400000pt;}
.y93{bottom:750.000000pt;}
.y2d{bottom:752.560000pt;}
.y16b{bottom:757.680000pt;}
.y6e{bottom:758.000000pt;}
.y114{bottom:759.920000pt;}
.y17e{bottom:761.200000pt;}
.y3{bottom:763.440000pt;}
.y2c{bottom:769.200000pt;}
.y139{bottom:773.680000pt;}
.y58{bottom:774.320000pt;}
.y6d{bottom:774.640000pt;}
.y2{bottom:783.280000pt;}
.y2b{bottom:785.840000pt;}
.y113{bottom:788.400000pt;}
.y57{bottom:791.280000pt;}
.y112{bottom:803.120000pt;}
.y1{bottom:807.600000pt;}
.y56{bottom:807.920000pt;}
.hc{height:14.400000pt;}
.h7{height:14.560000pt;}
.h9{height:24.097500pt;}
.ha{height:28.687500pt;}
.h8{height:30.666667pt;}
.h5{height:37.867500pt;}
.hb{height:40.113750pt;}
.h6{height:43.605000pt;}
.h4{height:44.365000pt;}
.h2{height:49.035000pt;}
.h3{height:58.375000pt;}
.h1{height:908.000000pt;}
.h0{height:908.160000pt;}
.w6{width:2.560000pt;}
.w4{width:2.880000pt;}
.w5{width:5.440000pt;}
.w8{width:5.760000pt;}
.wd{width:13.120000pt;}
.wc{width:17.600000pt;}
.w3{width:28.160000pt;}
.w2{width:30.828000pt;}
.wb{width:43.840000pt;}
.w7{width:45.440000pt;}
.w9{width:58.560000pt;}
.wa{width:75.520000pt;}
.w0{width:612.480000pt;}
.w1{width:612.666667pt;}
.x0{left:0.000000pt;}
.x7{left:87.093200pt;}
.xc{left:103.733333pt;}
.x9{left:111.094400pt;}
.x3{left:129.653453pt;}
.xf{left:131.893333pt;}
.x1d{left:134.132707pt;}
.xa{left:135.094133pt;}
.x10{left:139.893333pt;}
.xb{left:143.733333pt;}
.x6{left:168.053293pt;}
.x2{left:176.052760pt;}
.xd{left:188.532480pt;}
.x5{left:214.453933pt;}
.x11{left:233.973333pt;}
.x12{left:236.853333pt;}
.x13{left:242.613333pt;}
.x14{left:245.493333pt;}
.x1{left:261.813333pt;}
.x8{left:290.825333pt;}
.x15{left:304.053333pt;}
.x4{left:305.973747pt;}
.xe{left:321.012387pt;}
.x16{left:396.533333pt;}
.x17{left:415.413333pt;}
.x18{left:459.253333pt;}
.x19{left:461.813333pt;}
.x1a{left:479.413333pt;}
.x1b{left:482.293333pt;}
.x1c{left:495.413333pt;}
}




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