
    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_7cc212c8fbcaebe9138a3220.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_fe79a723c5135063fc4d1214.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_fd98aefd0b1a97757c97bb06.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_95230a2756d79c1782762b2f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_f376942abc0108c7c46f171d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_45498f39975149cf05e4c9ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_43674b37103ab4fce9bbf5af.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_6d4bfc8379733b521545f3e6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064941;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);}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsd{letter-spacing:-0.618000px;}
.ls4{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.478200px;}
.ls1c{letter-spacing:-0.414600px;}
.ls5{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.334200px;}
.ls13{letter-spacing:-0.247800px;}
.ls16{letter-spacing:-0.141000px;}
.lsb{letter-spacing:-0.094800px;}
.ls6{letter-spacing:-0.036000px;}
.ls12{letter-spacing:-0.031680px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.023040px;}
.ls2{letter-spacing:0.060480px;}
.ls1{letter-spacing:0.060600px;}
.lsc{letter-spacing:0.100800px;}
.ls15{letter-spacing:0.152400px;}
.ls18{letter-spacing:0.168600px;}
.ls0{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.187200px;}
.ls9{letter-spacing:0.241800px;}
.ls1b{letter-spacing:0.281280px;}
.ls19{letter-spacing:0.305280px;}
.ls1a{letter-spacing:0.305400px;}
.ls14{letter-spacing:0.382800px;}
.ls11{letter-spacing:0.385800px;}
.ls1d{letter-spacing:0.425280px;}
.ls10{letter-spacing:5.587200px;}
.lsf{letter-spacing:34.841280px;}
.lse{letter-spacing:39.161280px;}
.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;}
}
.wsc{word-spacing:-14.958600px;}
.wse{word-spacing:-14.955600px;}
.ws14{word-spacing:-14.878200px;}
.wsf{word-spacing:-14.725200px;}
.ws11{word-spacing:-14.673600px;}
.wsb{word-spacing:-14.595840px;}
.ws3{word-spacing:-14.572800px;}
.wsd{word-spacing:-14.541120px;}
.ws10{word-spacing:-14.431800px;}
.ws12{word-spacing:-14.238600px;}
.ws15{word-spacing:-14.158200px;}
.ws0{word-spacing:-13.140000px;}
.ws1{word-spacing:-12.060000px;}
.ws8{word-spacing:-10.854600px;}
.ws4{word-spacing:-10.612800px;}
.ws9{word-spacing:-10.134600px;}
.ws13{word-spacing:-9.355800px;}
.wsa{word-spacing:-9.092400px;}
.ws2{word-spacing:-8.614200px;}
.ws6{word-spacing:-7.920000px;}
.ws5{word-spacing:-7.884000px;}
.ws7{word-spacing:0.000000px;}
._25{margin-left:-7.140000px;}
._22{margin-left:-4.409040px;}
._17{margin-left:-3.373680px;}
._16{margin-left:-2.357040px;}
._2{margin-left:-1.098000px;}
._1{width:1.488000px;}
._6{width:2.569680px;}
._14{width:3.824640px;}
._12{width:4.906320px;}
._e{width:6.460080px;}
._f{width:7.888320px;}
._10{width:9.752880px;}
._a{width:10.882320px;}
._b{width:12.071520px;}
._1f{width:13.115520px;}
._8{width:15.005760px;}
._7{width:16.135200px;}
._11{width:17.814480px;}
._15{width:19.661040px;}
._19{width:21.100800px;}
._18{width:22.493520px;}
._20{width:23.692080px;}
._c{width:25.338240px;}
._d{width:26.473680px;}
._2c{width:27.688320px;}
._2b{width:29.392320px;}
._9{width:30.776400px;}
._13{width:32.575200px;}
._1c{width:33.913680px;}
._1d{width:35.135040px;}
._1e{width:36.254160px;}
._21{width:37.612800px;}
._32{width:38.882880px;}
._28{width:42.393600px;}
._29{width:43.985280px;}
._2e{width:45.571200px;}
._1a{width:47.215920px;}
._23{width:54.912960px;}
._24{width:56.304000px;}
._30{width:61.669440px;}
._31{width:63.331440px;}
._0{width:75.000000px;}
._2f{width:91.468320px;}
._3{width:181.080000px;}
._4{width:198.429840px;}
._5{width:202.852800px;}
._2d{width:309.403200px;}
._26{width:446.924640px;}
._27{width:463.854480px;}
._2a{width:637.003200px;}
._1b{width:1056.007200px;}
.fc4{color:rgb(38,74,96);}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(68,84,106);}
.fc3{color:rgb(1,2,5);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fsa{font-size:66.384000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.y56{bottom:-5.580000px;}
.y0{bottom:0.000000px;}
.yba{bottom:6.300000px;}
.yb9{bottom:6.480000px;}
.ye0{bottom:7.020000px;}
.yc4{bottom:7.200000px;}
.y9e{bottom:10.725000px;}
.y94{bottom:10.770000px;}
.y96{bottom:10.800000px;}
.y98{bottom:10.905000px;}
.y9a{bottom:10.980000px;}
.y55{bottom:15.120000px;}
.yf2{bottom:28.620000px;}
.yc7{bottom:28.650000px;}
.y137{bottom:28.800000px;}
.yc2{bottom:29.340000px;}
.yd4{bottom:29.520000px;}
.y54{bottom:33.870000px;}
.y53{bottom:44.490000px;}
.y59{bottom:46.980000px;}
.yf4{bottom:50.940000px;}
.y147{bottom:51.660000px;}
.y52{bottom:55.110000px;}
.y8{bottom:56.520000px;}
.y51{bottom:65.550000px;}
.y7{bottom:70.596000px;}
.y146{bottom:73.980000px;}
.y132{bottom:76.140000px;}
.y135{bottom:76.185000px;}
.y6{bottom:84.636000px;}
.y50{bottom:87.150000px;}
.y4f{bottom:103.890000px;}
.yc0{bottom:112.536000px;}
.y88{bottom:115.596000px;}
.y3e{bottom:120.996000px;}
.y12b{bottom:122.796000px;}
.y178{bottom:124.416000px;}
.y104{bottom:125.856000px;}
.ydd{bottom:127.296000px;}
.ybf{bottom:134.856000px;}
.y87{bottom:137.916000px;}
.y3d{bottom:143.136000px;}
.y12a{bottom:143.496000px;}
.y177{bottom:146.556000px;}
.y103{bottom:148.176000px;}
.ydc{bottom:149.616000px;}
.y4e{bottom:156.810000px;}
.ybe{bottom:156.990000px;}
.y86{bottom:160.050000px;}
.y3c{bottom:165.450000px;}
.y156{bottom:165.810000px;}
.y129{bottom:166.530000px;}
.y176{bottom:168.870000px;}
.y130{bottom:169.605000px;}
.y102{bottom:170.310000px;}
.y4d{bottom:170.850000px;}
.ydb{bottom:171.750000px;}
.ybd{bottom:173.730000px;}
.y85{bottom:182.370000px;}
.y4c{bottom:185.070000px;}
.y3b{bottom:187.770000px;}
.y155{bottom:187.950000px;}
.y128{bottom:188.850000px;}
.y175{bottom:191.010000px;}
.y101{bottom:192.630000px;}
.yda{bottom:194.070000px;}
.ybc{bottom:196.590000px;}
.y4b{bottom:199.110000px;}
.y84{bottom:204.510000px;}
.y3a{bottom:209.910000px;}
.y154{bottom:210.270000px;}
.yd9{bottom:210.630000px;}
.y127{bottom:210.990000px;}
.y4a{bottom:213.150000px;}
.y100{bottom:214.770000px;}
.y174{bottom:217.830000px;}
.ybb{bottom:218.910000px;}
.y83{bottom:226.830000px;}
.y49{bottom:227.190000px;}
.y39{bottom:232.230000px;}
.y153{bottom:232.410000px;}
.y126{bottom:233.310000px;}
.yd8{bottom:233.670000px;}
.yff{bottom:237.090000px;}
.y173{bottom:240.150000px;}
.y48{bottom:241.230000px;}
.y82{bottom:249.150000px;}
.y38{bottom:254.370000px;}
.y152{bottom:254.730000px;}
.y47{bottom:255.270000px;}
.y125{bottom:255.630000px;}
.yd7{bottom:256.710000px;}
.yfe{bottom:259.230000px;}
.y172{bottom:262.290000px;}
.yb8{bottom:264.090000px;}
.y46{bottom:270.570000px;}
.y81{bottom:271.290000px;}
.y37{bottom:276.690000px;}
.y151{bottom:277.050000px;}
.y124{bottom:277.770000px;}
.yd6{bottom:279.570000px;}
.yfd{bottom:281.550000px;}
.y171{bottom:284.610000px;}
.y45{bottom:290.010000px;}
.y80{bottom:293.610000px;}
.y36{bottom:295.950000px;}
.y150{bottom:299.190000px;}
.y123{bottom:300.090000px;}
.yd3{bottom:302.610000px;}
.yfc{bottom:303.870000px;}
.y44{bottom:304.275000px;}
.y170{bottom:306.750000px;}
.y35{bottom:313.590000px;}
.y7f{bottom:315.750000px;}
.y43{bottom:318.315000px;}
.yb7{bottom:320.250000px;}
.y14f{bottom:321.510000px;}
.y122{bottom:322.230000px;}
.yd5{bottom:325.650000px;}
.yfb{bottom:326.010000px;}
.y16f{bottom:329.070000px;}
.y34{bottom:331.050000px;}
.y42{bottom:332.355000px;}
.y7e{bottom:338.115000px;}
.yb6{bottom:342.615000px;}
.y14e{bottom:343.695000px;}
.y121{bottom:344.595000px;}
.y41{bottom:346.395000px;}
.yfa{bottom:348.375000px;}
.y33{bottom:348.735000px;}
.y16e{bottom:351.255000px;}
.yd2{bottom:355.035000px;}
.y7d{bottom:360.255000px;}
.y40{bottom:360.795000px;}
.y120{bottom:361.155000px;}
.yb5{bottom:364.755000px;}
.y14d{bottom:366.015000px;}
.y32{bottom:366.375000px;}
.yf9{bottom:370.515000px;}
.y16d{bottom:373.575000px;}
.yd1{bottom:377.355000px;}
.y7c{bottom:382.575000px;}
.y31{bottom:383.835000px;}
.y11f{bottom:384.195000px;}
.yb4{bottom:387.075000px;}
.y14c{bottom:388.155000px;}
.yf8{bottom:392.835000px;}
.y16c{bottom:395.895000px;}
.yd0{bottom:399.495000px;}
.y30{bottom:401.475000px;}
.y7b{bottom:404.895000px;}
.y11e{bottom:407.235000px;}
.yb3{bottom:409.395000px;}
.y14b{bottom:410.475000px;}
.yf7{bottom:415.155000px;}
.y16b{bottom:418.035000px;}
.y2f{bottom:419.115000px;}
.ycf{bottom:421.815000px;}
.y7a{bottom:427.035000px;}
.y11d{bottom:430.095000px;}
.yb2{bottom:431.535000px;}
.y2e{bottom:436.755000px;}
.yf6{bottom:437.295000px;}
.y16a{bottom:440.355000px;}
.yce{bottom:444.135000px;}
.y79{bottom:449.355000px;}
.y14a{bottom:450.075000px;}
.yf5{bottom:453.135000px;}
.yb1{bottom:453.855000px;}
.y2d{bottom:454.215000px;}
.y169{bottom:462.495000px;}
.ycd{bottom:466.275000px;}
.y78{bottom:471.495000px;}
.y2c{bottom:471.855000px;}
.y149{bottom:473.115000px;}
.yb0{bottom:475.995000px;}
.yf3{bottom:476.175000px;}
.y168{bottom:484.815000px;}
.ycc{bottom:488.595000px;}
.y2b{bottom:489.495000px;}
.y77{bottom:493.815000px;}
.y145{bottom:495.975000px;}
.yaf{bottom:498.315000px;}
.y11c{bottom:505.515000px;}
.y2a{bottom:506.955000px;}
.y167{bottom:507.135000px;}
.ycb{bottom:510.735000px;}
.y76{bottom:516.135000px;}
.yae{bottom:520.635000px;}
.y29{bottom:524.595000px;}
.y11b{bottom:527.835000px;}
.y166{bottom:529.275000px;}
.yca{bottom:533.055000px;}
.y75{bottom:538.275000px;}
.y28{bottom:542.235000px;}
.yad{bottom:542.775000px;}
.yf1{bottom:542.955000px;}
.yc9{bottom:549.615000px;}
.y11a{bottom:549.975000px;}
.y165{bottom:551.595000px;}
.y27{bottom:559.695000px;}
.y74{bottom:560.595000px;}
.y148{bottom:563.475000px;}
.yac{bottom:565.095000px;}
.y3f{bottom:569.775000px;}
.y119{bottom:572.295000px;}
.yc8{bottom:572.655000px;}
.y164{bottom:573.735000px;}
.y26{bottom:577.335000px;}
.y73{bottom:582.735000px;}
.yab{bottom:587.235000px;}
.yf0{bottom:587.415000px;}
.y144{bottom:592.995000px;}
.y118{bottom:594.615000px;}
.y25{bottom:594.975000px;}
.yc6{bottom:595.695000px;}
.y163{bottom:596.055000px;}
.y72{bottom:605.085000px;}
.yaa{bottom:614.085000px;}
.y24{bottom:614.805000px;}
.y143{bottom:615.165000px;}
.y117{bottom:616.785000px;}
.y162{bottom:618.405000px;}
.y71{bottom:627.405000px;}
.ya9{bottom:630.720000px;}
.y23{bottom:632.445000px;}
.yef{bottom:632.625000px;}
.y142{bottom:637.485000px;}
.y116{bottom:639.105000px;}
.y161{bottom:640.545000px;}
.yc5{bottom:640.905000px;}
.y70{bottom:649.545000px;}
.y22{bottom:649.905000px;}
.ya8{bottom:658.260000px;}
.y141{bottom:659.625000px;}
.y115{bottom:661.245000px;}
.yee{bottom:662.145000px;}
.yc1{bottom:663.945000px;}
.y160{bottom:667.365000px;}
.y21{bottom:667.545000px;}
.y6f{bottom:671.865000px;}
.y114{bottom:677.985000px;}
.y140{bottom:681.945000px;}
.y20{bottom:685.185000px;}
.ya7{bottom:685.725000px;}
.ya6{bottom:685.800000px;}
.yc3{bottom:686.985000px;}
.yed{bottom:688.785000px;}
.y15f{bottom:689.505000px;}
.y6e{bottom:694.005000px;}
.y113{bottom:700.845000px;}
.y1f{bottom:702.825000px;}
.y13f{bottom:704.265000px;}
.yec{bottom:711.105000px;}
.y15e{bottom:711.825000px;}
.ya5{bottom:713.085000px;}
.ya4{bottom:713.160000px;}
.y6d{bottom:716.325000px;}
.y1e{bottom:720.285000px;}
.y112{bottom:723.885000px;}
.y13e{bottom:726.405000px;}
.yeb{bottom:733.245000px;}
.y15d{bottom:733.965000px;}
.y1d{bottom:737.925000px;}
.y6c{bottom:738.465000px;}
.ya3{bottom:740.625000px;}
.ya2{bottom:740.700000px;}
.y111{bottom:746.925000px;}
.y13d{bottom:748.725000px;}
.y1c{bottom:755.565000px;}
.y15c{bottom:756.285000px;}
.y6b{bottom:760.785000px;}
.ya1{bottom:768.165000px;}
.ya0{bottom:768.240000px;}
.y10f{bottom:769.965000px;}
.y13c{bottom:770.865000px;}
.y1b{bottom:773.025000px;}
.yea{bottom:777.705000px;}
.y15b{bottom:778.605000px;}
.y6a{bottom:783.105000px;}
.y1a{bottom:790.665000px;}
.y110{bottom:792.825000px;}
.y13b{bottom:793.185000px;}
.y9f{bottom:795.705000px;}
.y9d{bottom:795.780000px;}
.ye9{bottom:800.025000px;}
.y15a{bottom:800.745000px;}
.y69{bottom:805.245000px;}
.y19{bottom:808.305000px;}
.y13a{bottom:815.505000px;}
.ye8{bottom:822.345000px;}
.y9c{bottom:823.065000px;}
.y9b{bottom:823.140000px;}
.y18{bottom:825.765000px;}
.y68{bottom:827.565000px;}
.y139{bottom:831.345000px;}
.y17{bottom:843.405000px;}
.ye7{bottom:844.485000px;}
.y159{bottom:845.205000px;}
.y67{bottom:849.705000px;}
.y99{bottom:850.605000px;}
.y97{bottom:850.680000px;}
.y12f{bottom:855.105000px;}
.y16{bottom:861.045000px;}
.ye6{bottom:866.805000px;}
.y158{bottom:867.525000px;}
.y66{bottom:872.070000px;}
.y95{bottom:878.190000px;}
.y93{bottom:878.220000px;}
.y15{bottom:878.550000px;}
.y138{bottom:878.730000px;}
.ye5{bottom:888.990000px;}
.y157{bottom:889.890000px;}
.y65{bottom:894.390000px;}
.y14{bottom:896.190000px;}
.y136{bottom:902.490000px;}
.ye4{bottom:905.730000px;}
.y10e{bottom:911.310000px;}
.y92{bottom:912.030000px;}
.y13{bottom:913.830000px;}
.y64{bottom:916.530000px;}
.ye3{bottom:928.590000px;}
.y12{bottom:931.470000px;}
.y10d{bottom:933.630000px;}
.y91{bottom:934.350000px;}
.y63{bottom:938.850000px;}
.y131{bottom:948.570000px;}
.y11{bottom:949.290000px;}
.ye2{bottom:951.630000px;}
.y10c{bottom:955.770000px;}
.y90{bottom:956.490000px;}
.y62{bottom:960.990000px;}
.y10{bottom:972.150000px;}
.y134{bottom:972.330000px;}
.ye1{bottom:974.670000px;}
.y10b{bottom:978.090000px;}
.y8f{bottom:978.810000px;}
.y61{bottom:983.310000px;}
.yf{bottom:986.190000px;}
.y10a{bottom:994.650000px;}
.y133{bottom:996.090000px;}
.yde{bottom:997.710000px;}
.y8e{bottom:1000.950000px;}
.ye{bottom:1005.270000px;}
.y60{bottom:1005.450000px;}
.y109{bottom:1017.690000px;}
.ydf{bottom:1020.570000px;}
.yd{bottom:1023.090000px;}
.y8d{bottom:1023.270000px;}
.y5f{bottom:1027.770000px;}
.y108{bottom:1040.550000px;}
.y12e{bottom:1041.990000px;}
.yc{bottom:1042.530000px;}
.y8c{bottom:1045.590000px;}
.y5e{bottom:1050.090000px;}
.yb{bottom:1062.510000px;}
.y107{bottom:1063.590000px;}
.y12d{bottom:1064.310000px;}
.y8b{bottom:1067.730000px;}
.y5d{bottom:1072.230000px;}
.ya{bottom:1085.370000px;}
.y105{bottom:1086.630000px;}
.y8a{bottom:1090.050000px;}
.y12c{bottom:1090.230000px;}
.y5c{bottom:1094.550000px;}
.y9{bottom:1108.230000px;}
.y106{bottom:1109.670000px;}
.y89{bottom:1112.190000px;}
.y5b{bottom:1116.690000px;}
.y5{bottom:1133.250000px;}
.y5a{bottom:1139.040000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y58{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y57{bottom:1197.540000px;}
.h12{height:22.140000px;}
.h1e{height:22.176000px;}
.h11{height:22.320000px;}
.h16{height:22.356000px;}
.he{height:26.640000px;}
.hf{height:26.820000px;}
.h10{height:26.856000px;}
.hb{height:30.480469px;}
.h8{height:35.477578px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h17{height:44.460000px;}
.h14{height:44.496000px;}
.h1d{height:44.640000px;}
.h13{height:45.180000px;}
.h19{height:45.360000px;}
.h15{height:45.396000px;}
.h2{height:45.720703px;}
.ha{height:50.273438px;}
.h7{height:50.597578px;}
.h6{height:56.084062px;}
.hd{height:56.205984px;}
.hc{height:58.819922px;}
.h5{height:65.837812px;}
.h18{height:66.780000px;}
.h1f{height:89.820000px;}
.h1b{height:91.980000px;}
.h1c{height:92.016000px;}
.h1a{height:185.430000px;}
.h9{height:373.575000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:47.340000px;}
.w28{width:55.260000px;}
.w21{width:62.820000px;}
.w14{width:62.856000px;}
.w1a{width:63.036000px;}
.w15{width:64.980000px;}
.w22{width:65.016000px;}
.w1b{width:65.160000px;}
.w12{width:65.340000px;}
.w20{width:65.376000px;}
.w18{width:65.556000px;}
.w17{width:67.500000px;}
.w1f{width:67.680000px;}
.w11{width:67.716000px;}
.wf{width:68.220000px;}
.wd{width:68.580000px;}
.w25{width:76.500000px;}
.w26{width:76.536000px;}
.w19{width:84.240000px;}
.w13{width:84.420000px;}
.w10{width:106.596000px;}
.w7{width:122.220000px;}
.w27{width:123.336000px;}
.w4{width:128.160000px;}
.w8{width:128.196000px;}
.w1e{width:128.376000px;}
.w1d{width:131.976000px;}
.w2a{width:137.196000px;}
.w2c{width:137.520000px;}
.w2e{width:148.176000px;}
.wb{width:148.536000px;}
.wc{width:148.716000px;}
.w5{width:154.080000px;}
.w6{width:154.110000px;}
.w2d{width:158.790000px;}
.w29{width:162.570000px;}
.w3{width:208.110000px;}
.wa{width:255.090000px;}
.w1c{width:271.650000px;}
.w24{width:341.175000px;}
.we{width:348.375000px;}
.w16{width:417.675000px;}
.w2b{width:445.935000px;}
.w23{width:495.825000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x62{left:4.500000px;}
.x3b{left:9.000000px;}
.x39{left:12.060000px;}
.x26{left:13.314000px;}
.x52{left:15.300000px;}
.x2c{left:17.274000px;}
.x17{left:19.005000px;}
.x42{left:22.320000px;}
.x32{left:23.574000px;}
.x30{left:26.640000px;}
.x40{left:28.080000px;}
.x2b{left:30.060000px;}
.x1c{left:31.425000px;}
.x41{left:32.940000px;}
.x6b{left:34.200000px;}
.x1f{left:36.285000px;}
.x22{left:38.265000px;}
.x5b{left:40.140000px;}
.x4d{left:41.985000px;}
.x20{left:43.995000px;}
.x51{left:45.210000px;}
.x13{left:47.595000px;}
.x15{left:50.115000px;}
.x2f{left:52.020000px;}
.x18{left:54.255000px;}
.x34{left:57.810000px;}
.x2e{left:58.890000px;}
.x21{left:62.355000px;}
.x1a{left:67.215000px;}
.x65{left:68.580000px;}
.x1d{left:72.255000px;}
.x19{left:73.845000px;}
.x2d{left:79.380000px;}
.x1e{left:81.900000px;}
.x1b{left:86.760000px;}
.x28{left:91.125000px;}
.x31{left:92.205000px;}
.x68{left:94.140000px;}
.x4f{left:99.405000px;}
.x33{left:106.605000px;}
.x1{left:108.035987px;}
.xd{left:112.536000px;}
.x53{left:114.885000px;}
.x2{left:116.135987px;}
.x4{left:129.815987px;}
.x6{left:131.255987px;}
.xe{left:134.994000px;}
.x44{left:138.816000px;}
.x6c{left:144.035987px;}
.x25{left:146.736000px;}
.x36{left:149.616000px;}
.x66{left:154.650000px;}
.xc{left:161.129987px;}
.x10{left:171.929987px;}
.x55{left:178.050000px;}
.x8{left:179.849987px;}
.x24{left:191.909987px;}
.x27{left:194.070000px;}
.x4e{left:195.689987px;}
.x5e{left:198.750000px;}
.x5f{left:200.385000px;}
.x9{left:205.229987px;}
.x45{left:208.110000px;}
.x37{left:218.910000px;}
.x54{left:222.869987px;}
.x5c{left:233.309987px;}
.x12{left:243.540000px;}
.x57{left:246.450000px;}
.x48{left:276.330000px;}
.x3c{left:287.355000px;}
.x35{left:290.594987px;}
.x67{left:292.575000px;}
.x43{left:301.394987px;}
.x4c{left:302.834987px;}
.x58{left:312.555000px;}
.x5d{left:314.534987px;}
.x11{left:320.114987px;}
.x63{left:322.095000px;}
.xb{left:335.414987px;}
.x49{left:342.615000px;}
.x3d{left:353.415000px;}
.x14{left:372.420000px;}
.x64{left:377.355000px;}
.x5{left:380.774987px;}
.x59{left:397.695000px;}
.x7{left:417.134987px;}
.x4a{left:427.575000px;}
.x69{left:430.815000px;}
.x3e{left:438.555000px;}
.x3{left:446.474987px;}
.x29{left:449.175000px;}
.x23{left:451.874987px;}
.x5a{left:461.415000px;}
.x50{left:465.735000px;}
.x4b{left:491.325000px;}
.x3f{left:502.305000px;}
.xf{left:519.764987px;}
.x16{left:527.400000px;}
.x60{left:539.925000px;}
.x46{left:557.205000px;}
.xa{left:560.264987px;}
.x38{left:568.005000px;}
.x6a{left:590.325000px;}
.x56{left:596.085000px;}
.x2a{left:597.705000px;}
.x61{left:618.045000px;}
.x47{left:626.145000px;}
.x3a{left:636.945000px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.549333pt;}
.ls4{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.425067pt;}
.ls1c{letter-spacing:-0.368533pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.297067pt;}
.ls13{letter-spacing:-0.220267pt;}
.ls16{letter-spacing:-0.125333pt;}
.lsb{letter-spacing:-0.084267pt;}
.ls6{letter-spacing:-0.032000pt;}
.ls12{letter-spacing:-0.028160pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.020480pt;}
.ls2{letter-spacing:0.053760pt;}
.ls1{letter-spacing:0.053867pt;}
.lsc{letter-spacing:0.089600pt;}
.ls15{letter-spacing:0.135467pt;}
.ls18{letter-spacing:0.149867pt;}
.ls0{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.166400pt;}
.ls9{letter-spacing:0.214933pt;}
.ls1b{letter-spacing:0.250027pt;}
.ls19{letter-spacing:0.271360pt;}
.ls1a{letter-spacing:0.271467pt;}
.ls14{letter-spacing:0.340267pt;}
.ls11{letter-spacing:0.342933pt;}
.ls1d{letter-spacing:0.378027pt;}
.ls10{letter-spacing:4.966400pt;}
.lsf{letter-spacing:30.970027pt;}
.lse{letter-spacing:34.810027pt;}
.wsc{word-spacing:-13.296533pt;}
.wse{word-spacing:-13.293867pt;}
.ws14{word-spacing:-13.225067pt;}
.wsf{word-spacing:-13.089067pt;}
.ws11{word-spacing:-13.043200pt;}
.wsb{word-spacing:-12.974080pt;}
.ws3{word-spacing:-12.953600pt;}
.wsd{word-spacing:-12.925440pt;}
.ws10{word-spacing:-12.828267pt;}
.ws12{word-spacing:-12.656533pt;}
.ws15{word-spacing:-12.585067pt;}
.ws0{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws8{word-spacing:-9.648533pt;}
.ws4{word-spacing:-9.433600pt;}
.ws9{word-spacing:-9.008533pt;}
.ws13{word-spacing:-8.316267pt;}
.wsa{word-spacing:-8.082133pt;}
.ws2{word-spacing:-7.657067pt;}
.ws6{word-spacing:-7.040000pt;}
.ws5{word-spacing:-7.008000pt;}
.ws7{word-spacing:0.000000pt;}
._25{margin-left:-6.346667pt;}
._22{margin-left:-3.919147pt;}
._17{margin-left:-2.998827pt;}
._16{margin-left:-2.095147pt;}
._2{margin-left:-0.976000pt;}
._1{width:1.322667pt;}
._6{width:2.284160pt;}
._14{width:3.399680pt;}
._12{width:4.361173pt;}
._e{width:5.742293pt;}
._f{width:7.011840pt;}
._10{width:8.669227pt;}
._a{width:9.673173pt;}
._b{width:10.730240pt;}
._1f{width:11.658240pt;}
._8{width:13.338453pt;}
._7{width:14.342400pt;}
._11{width:15.835093pt;}
._15{width:17.476480pt;}
._19{width:18.756267pt;}
._18{width:19.994240pt;}
._20{width:21.059627pt;}
._c{width:22.522880pt;}
._d{width:23.532160pt;}
._2c{width:24.611840pt;}
._2b{width:26.126507pt;}
._9{width:27.356800pt;}
._13{width:28.955733pt;}
._1c{width:30.145493pt;}
._1d{width:31.231147pt;}
._1e{width:32.225920pt;}
._21{width:33.433600pt;}
._32{width:34.562560pt;}
._28{width:37.683200pt;}
._29{width:39.098027pt;}
._2e{width:40.507733pt;}
._1a{width:41.969707pt;}
._23{width:48.811520pt;}
._24{width:50.048000pt;}
._30{width:54.817280pt;}
._31{width:56.294613pt;}
._0{width:66.666667pt;}
._2f{width:81.305173pt;}
._3{width:160.960000pt;}
._4{width:176.382080pt;}
._5{width:180.313600pt;}
._2d{width:275.025067pt;}
._26{width:397.266347pt;}
._27{width:412.315093pt;}
._2a{width:566.225067pt;}
._1b{width:938.673067pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fsa{font-size:59.008000pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.y56{bottom:-4.960000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:5.600000pt;}
.yb9{bottom:5.760000pt;}
.ye0{bottom:6.240000pt;}
.yc4{bottom:6.400000pt;}
.y9e{bottom:9.533333pt;}
.y94{bottom:9.573333pt;}
.y96{bottom:9.600000pt;}
.y98{bottom:9.693333pt;}
.y9a{bottom:9.760000pt;}
.y55{bottom:13.440000pt;}
.yf2{bottom:25.440000pt;}
.yc7{bottom:25.466667pt;}
.y137{bottom:25.600000pt;}
.yc2{bottom:26.080000pt;}
.yd4{bottom:26.240000pt;}
.y54{bottom:30.106667pt;}
.y53{bottom:39.546667pt;}
.y59{bottom:41.760000pt;}
.yf4{bottom:45.280000pt;}
.y147{bottom:45.920000pt;}
.y52{bottom:48.986667pt;}
.y8{bottom:50.240000pt;}
.y51{bottom:58.266667pt;}
.y7{bottom:62.752000pt;}
.y146{bottom:65.760000pt;}
.y132{bottom:67.680000pt;}
.y135{bottom:67.720000pt;}
.y6{bottom:75.232000pt;}
.y50{bottom:77.466667pt;}
.y4f{bottom:92.346667pt;}
.yc0{bottom:100.032000pt;}
.y88{bottom:102.752000pt;}
.y3e{bottom:107.552000pt;}
.y12b{bottom:109.152000pt;}
.y178{bottom:110.592000pt;}
.y104{bottom:111.872000pt;}
.ydd{bottom:113.152000pt;}
.ybf{bottom:119.872000pt;}
.y87{bottom:122.592000pt;}
.y3d{bottom:127.232000pt;}
.y12a{bottom:127.552000pt;}
.y177{bottom:130.272000pt;}
.y103{bottom:131.712000pt;}
.ydc{bottom:132.992000pt;}
.y4e{bottom:139.386667pt;}
.ybe{bottom:139.546667pt;}
.y86{bottom:142.266667pt;}
.y3c{bottom:147.066667pt;}
.y156{bottom:147.386667pt;}
.y129{bottom:148.026667pt;}
.y176{bottom:150.106667pt;}
.y130{bottom:150.760000pt;}
.y102{bottom:151.386667pt;}
.y4d{bottom:151.866667pt;}
.ydb{bottom:152.666667pt;}
.ybd{bottom:154.426667pt;}
.y85{bottom:162.106667pt;}
.y4c{bottom:164.506667pt;}
.y3b{bottom:166.906667pt;}
.y155{bottom:167.066667pt;}
.y128{bottom:167.866667pt;}
.y175{bottom:169.786667pt;}
.y101{bottom:171.226667pt;}
.yda{bottom:172.506667pt;}
.ybc{bottom:174.746667pt;}
.y4b{bottom:176.986667pt;}
.y84{bottom:181.786667pt;}
.y3a{bottom:186.586667pt;}
.y154{bottom:186.906667pt;}
.yd9{bottom:187.226667pt;}
.y127{bottom:187.546667pt;}
.y4a{bottom:189.466667pt;}
.y100{bottom:190.906667pt;}
.y174{bottom:193.626667pt;}
.ybb{bottom:194.586667pt;}
.y83{bottom:201.626667pt;}
.y49{bottom:201.946667pt;}
.y39{bottom:206.426667pt;}
.y153{bottom:206.586667pt;}
.y126{bottom:207.386667pt;}
.yd8{bottom:207.706667pt;}
.yff{bottom:210.746667pt;}
.y173{bottom:213.466667pt;}
.y48{bottom:214.426667pt;}
.y82{bottom:221.466667pt;}
.y38{bottom:226.106667pt;}
.y152{bottom:226.426667pt;}
.y47{bottom:226.906667pt;}
.y125{bottom:227.226667pt;}
.yd7{bottom:228.186667pt;}
.yfe{bottom:230.426667pt;}
.y172{bottom:233.146667pt;}
.yb8{bottom:234.746667pt;}
.y46{bottom:240.506667pt;}
.y81{bottom:241.146667pt;}
.y37{bottom:245.946667pt;}
.y151{bottom:246.266667pt;}
.y124{bottom:246.906667pt;}
.yd6{bottom:248.506667pt;}
.yfd{bottom:250.266667pt;}
.y171{bottom:252.986667pt;}
.y45{bottom:257.786667pt;}
.y80{bottom:260.986667pt;}
.y36{bottom:263.066667pt;}
.y150{bottom:265.946667pt;}
.y123{bottom:266.746667pt;}
.yd3{bottom:268.986667pt;}
.yfc{bottom:270.106667pt;}
.y44{bottom:270.466667pt;}
.y170{bottom:272.666667pt;}
.y35{bottom:278.746667pt;}
.y7f{bottom:280.666667pt;}
.y43{bottom:282.946667pt;}
.yb7{bottom:284.666667pt;}
.y14f{bottom:285.786667pt;}
.y122{bottom:286.426667pt;}
.yd5{bottom:289.466667pt;}
.yfb{bottom:289.786667pt;}
.y16f{bottom:292.506667pt;}
.y34{bottom:294.266667pt;}
.y42{bottom:295.426667pt;}
.y7e{bottom:300.546667pt;}
.yb6{bottom:304.546667pt;}
.y14e{bottom:305.506667pt;}
.y121{bottom:306.306667pt;}
.y41{bottom:307.906667pt;}
.yfa{bottom:309.666667pt;}
.y33{bottom:309.986667pt;}
.y16e{bottom:312.226667pt;}
.yd2{bottom:315.586667pt;}
.y7d{bottom:320.226667pt;}
.y40{bottom:320.706667pt;}
.y120{bottom:321.026667pt;}
.yb5{bottom:324.226667pt;}
.y14d{bottom:325.346667pt;}
.y32{bottom:325.666667pt;}
.yf9{bottom:329.346667pt;}
.y16d{bottom:332.066667pt;}
.yd1{bottom:335.426667pt;}
.y7c{bottom:340.066667pt;}
.y31{bottom:341.186667pt;}
.y11f{bottom:341.506667pt;}
.yb4{bottom:344.066667pt;}
.y14c{bottom:345.026667pt;}
.yf8{bottom:349.186667pt;}
.y16c{bottom:351.906667pt;}
.yd0{bottom:355.106667pt;}
.y30{bottom:356.866667pt;}
.y7b{bottom:359.906667pt;}
.y11e{bottom:361.986667pt;}
.yb3{bottom:363.906667pt;}
.y14b{bottom:364.866667pt;}
.yf7{bottom:369.026667pt;}
.y16b{bottom:371.586667pt;}
.y2f{bottom:372.546667pt;}
.ycf{bottom:374.946667pt;}
.y7a{bottom:379.586667pt;}
.y11d{bottom:382.306667pt;}
.yb2{bottom:383.586667pt;}
.y2e{bottom:388.226667pt;}
.yf6{bottom:388.706667pt;}
.y16a{bottom:391.426667pt;}
.yce{bottom:394.786667pt;}
.y79{bottom:399.426667pt;}
.y14a{bottom:400.066667pt;}
.yf5{bottom:402.786667pt;}
.yb1{bottom:403.426667pt;}
.y2d{bottom:403.746667pt;}
.y169{bottom:411.106667pt;}
.ycd{bottom:414.466667pt;}
.y78{bottom:419.106667pt;}
.y2c{bottom:419.426667pt;}
.y149{bottom:420.546667pt;}
.yb0{bottom:423.106667pt;}
.yf3{bottom:423.266667pt;}
.y168{bottom:430.946667pt;}
.ycc{bottom:434.306667pt;}
.y2b{bottom:435.106667pt;}
.y77{bottom:438.946667pt;}
.y145{bottom:440.866667pt;}
.yaf{bottom:442.946667pt;}
.y11c{bottom:449.346667pt;}
.y2a{bottom:450.626667pt;}
.y167{bottom:450.786667pt;}
.ycb{bottom:453.986667pt;}
.y76{bottom:458.786667pt;}
.yae{bottom:462.786667pt;}
.y29{bottom:466.306667pt;}
.y11b{bottom:469.186667pt;}
.y166{bottom:470.466667pt;}
.yca{bottom:473.826667pt;}
.y75{bottom:478.466667pt;}
.y28{bottom:481.986667pt;}
.yad{bottom:482.466667pt;}
.yf1{bottom:482.626667pt;}
.yc9{bottom:488.546667pt;}
.y11a{bottom:488.866667pt;}
.y165{bottom:490.306667pt;}
.y27{bottom:497.506667pt;}
.y74{bottom:498.306667pt;}
.y148{bottom:500.866667pt;}
.yac{bottom:502.306667pt;}
.y3f{bottom:506.466667pt;}
.y119{bottom:508.706667pt;}
.yc8{bottom:509.026667pt;}
.y164{bottom:509.986667pt;}
.y26{bottom:513.186667pt;}
.y73{bottom:517.986667pt;}
.yab{bottom:521.986667pt;}
.yf0{bottom:522.146667pt;}
.y144{bottom:527.106667pt;}
.y118{bottom:528.546667pt;}
.y25{bottom:528.866667pt;}
.yc6{bottom:529.506667pt;}
.y163{bottom:529.826667pt;}
.y72{bottom:537.853333pt;}
.yaa{bottom:545.853333pt;}
.y24{bottom:546.493333pt;}
.y143{bottom:546.813333pt;}
.y117{bottom:548.253333pt;}
.y162{bottom:549.693333pt;}
.y71{bottom:557.693333pt;}
.ya9{bottom:560.640000pt;}
.y23{bottom:562.173333pt;}
.yef{bottom:562.333333pt;}
.y142{bottom:566.653333pt;}
.y116{bottom:568.093333pt;}
.y161{bottom:569.373333pt;}
.yc5{bottom:569.693333pt;}
.y70{bottom:577.373333pt;}
.y22{bottom:577.693333pt;}
.ya8{bottom:585.120000pt;}
.y141{bottom:586.333333pt;}
.y115{bottom:587.773333pt;}
.yee{bottom:588.573333pt;}
.yc1{bottom:590.173333pt;}
.y160{bottom:593.213333pt;}
.y21{bottom:593.373333pt;}
.y6f{bottom:597.213333pt;}
.y114{bottom:602.653333pt;}
.y140{bottom:606.173333pt;}
.y20{bottom:609.053333pt;}
.ya7{bottom:609.533333pt;}
.ya6{bottom:609.600000pt;}
.yc3{bottom:610.653333pt;}
.yed{bottom:612.253333pt;}
.y15f{bottom:612.893333pt;}
.y6e{bottom:616.893333pt;}
.y113{bottom:622.973333pt;}
.y1f{bottom:624.733333pt;}
.y13f{bottom:626.013333pt;}
.yec{bottom:632.093333pt;}
.y15e{bottom:632.733333pt;}
.ya5{bottom:633.853333pt;}
.ya4{bottom:633.920000pt;}
.y6d{bottom:636.733333pt;}
.y1e{bottom:640.253333pt;}
.y112{bottom:643.453333pt;}
.y13e{bottom:645.693333pt;}
.yeb{bottom:651.773333pt;}
.y15d{bottom:652.413333pt;}
.y1d{bottom:655.933333pt;}
.y6c{bottom:656.413333pt;}
.ya3{bottom:658.333333pt;}
.ya2{bottom:658.400000pt;}
.y111{bottom:663.933333pt;}
.y13d{bottom:665.533333pt;}
.y1c{bottom:671.613333pt;}
.y15c{bottom:672.253333pt;}
.y6b{bottom:676.253333pt;}
.ya1{bottom:682.813333pt;}
.ya0{bottom:682.880000pt;}
.y10f{bottom:684.413333pt;}
.y13c{bottom:685.213333pt;}
.y1b{bottom:687.133333pt;}
.yea{bottom:691.293333pt;}
.y15b{bottom:692.093333pt;}
.y6a{bottom:696.093333pt;}
.y1a{bottom:702.813333pt;}
.y110{bottom:704.733333pt;}
.y13b{bottom:705.053333pt;}
.y9f{bottom:707.293333pt;}
.y9d{bottom:707.360000pt;}
.ye9{bottom:711.133333pt;}
.y15a{bottom:711.773333pt;}
.y69{bottom:715.773333pt;}
.y19{bottom:718.493333pt;}
.y13a{bottom:724.893333pt;}
.ye8{bottom:730.973333pt;}
.y9c{bottom:731.613333pt;}
.y9b{bottom:731.680000pt;}
.y18{bottom:734.013333pt;}
.y68{bottom:735.613333pt;}
.y139{bottom:738.973333pt;}
.y17{bottom:749.693333pt;}
.ye7{bottom:750.653333pt;}
.y159{bottom:751.293333pt;}
.y67{bottom:755.293333pt;}
.y99{bottom:756.093333pt;}
.y97{bottom:756.160000pt;}
.y12f{bottom:760.093333pt;}
.y16{bottom:765.373333pt;}
.ye6{bottom:770.493333pt;}
.y158{bottom:771.133333pt;}
.y66{bottom:775.173333pt;}
.y95{bottom:780.613333pt;}
.y93{bottom:780.640000pt;}
.y15{bottom:780.933333pt;}
.y138{bottom:781.093333pt;}
.ye5{bottom:790.213333pt;}
.y157{bottom:791.013333pt;}
.y65{bottom:795.013333pt;}
.y14{bottom:796.613333pt;}
.y136{bottom:802.213333pt;}
.ye4{bottom:805.093333pt;}
.y10e{bottom:810.053333pt;}
.y92{bottom:810.693333pt;}
.y13{bottom:812.293333pt;}
.y64{bottom:814.693333pt;}
.ye3{bottom:825.413333pt;}
.y12{bottom:827.973333pt;}
.y10d{bottom:829.893333pt;}
.y91{bottom:830.533333pt;}
.y63{bottom:834.533333pt;}
.y131{bottom:843.173333pt;}
.y11{bottom:843.813333pt;}
.ye2{bottom:845.893333pt;}
.y10c{bottom:849.573333pt;}
.y90{bottom:850.213333pt;}
.y62{bottom:854.213333pt;}
.y10{bottom:864.133333pt;}
.y134{bottom:864.293333pt;}
.ye1{bottom:866.373333pt;}
.y10b{bottom:869.413333pt;}
.y8f{bottom:870.053333pt;}
.y61{bottom:874.053333pt;}
.yf{bottom:876.613333pt;}
.y10a{bottom:884.133333pt;}
.y133{bottom:885.413333pt;}
.yde{bottom:886.853333pt;}
.y8e{bottom:889.733333pt;}
.ye{bottom:893.573333pt;}
.y60{bottom:893.733333pt;}
.y109{bottom:904.613333pt;}
.ydf{bottom:907.173333pt;}
.yd{bottom:909.413333pt;}
.y8d{bottom:909.573333pt;}
.y5f{bottom:913.573333pt;}
.y108{bottom:924.933333pt;}
.y12e{bottom:926.213333pt;}
.yc{bottom:926.693333pt;}
.y8c{bottom:929.413333pt;}
.y5e{bottom:933.413333pt;}
.yb{bottom:944.453333pt;}
.y107{bottom:945.413333pt;}
.y12d{bottom:946.053333pt;}
.y8b{bottom:949.093333pt;}
.y5d{bottom:953.093333pt;}
.ya{bottom:964.773333pt;}
.y105{bottom:965.893333pt;}
.y8a{bottom:968.933333pt;}
.y12c{bottom:969.093333pt;}
.y5c{bottom:972.933333pt;}
.y9{bottom:985.093333pt;}
.y106{bottom:986.373333pt;}
.y89{bottom:988.613333pt;}
.y5b{bottom:992.613333pt;}
.y5{bottom:1007.333333pt;}
.y5a{bottom:1012.480000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y58{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y57{bottom:1064.480000pt;}
.h12{height:19.680000pt;}
.h1e{height:19.712000pt;}
.h11{height:19.840000pt;}
.h16{height:19.872000pt;}
.he{height:23.680000pt;}
.hf{height:23.840000pt;}
.h10{height:23.872000pt;}
.hb{height:27.093750pt;}
.h8{height:31.535625pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h17{height:39.520000pt;}
.h14{height:39.552000pt;}
.h1d{height:39.680000pt;}
.h13{height:40.160000pt;}
.h19{height:40.320000pt;}
.h15{height:40.352000pt;}
.h2{height:40.640625pt;}
.ha{height:44.687500pt;}
.h7{height:44.975625pt;}
.h6{height:49.852500pt;}
.hd{height:49.960875pt;}
.hc{height:52.284375pt;}
.h5{height:58.522500pt;}
.h18{height:59.360000pt;}
.h1f{height:79.840000pt;}
.h1b{height:81.760000pt;}
.h1c{height:81.792000pt;}
.h1a{height:164.826667pt;}
.h9{height:332.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:42.080000pt;}
.w28{width:49.120000pt;}
.w21{width:55.840000pt;}
.w14{width:55.872000pt;}
.w1a{width:56.032000pt;}
.w15{width:57.760000pt;}
.w22{width:57.792000pt;}
.w1b{width:57.920000pt;}
.w12{width:58.080000pt;}
.w20{width:58.112000pt;}
.w18{width:58.272000pt;}
.w17{width:60.000000pt;}
.w1f{width:60.160000pt;}
.w11{width:60.192000pt;}
.wf{width:60.640000pt;}
.wd{width:60.960000pt;}
.w25{width:68.000000pt;}
.w26{width:68.032000pt;}
.w19{width:74.880000pt;}
.w13{width:75.040000pt;}
.w10{width:94.752000pt;}
.w7{width:108.640000pt;}
.w27{width:109.632000pt;}
.w4{width:113.920000pt;}
.w8{width:113.952000pt;}
.w1e{width:114.112000pt;}
.w1d{width:117.312000pt;}
.w2a{width:121.952000pt;}
.w2c{width:122.240000pt;}
.w2e{width:131.712000pt;}
.wb{width:132.032000pt;}
.wc{width:132.192000pt;}
.w5{width:136.960000pt;}
.w6{width:136.986667pt;}
.w2d{width:141.146667pt;}
.w29{width:144.506667pt;}
.w3{width:184.986667pt;}
.wa{width:226.746667pt;}
.w1c{width:241.466667pt;}
.w24{width:303.266667pt;}
.we{width:309.666667pt;}
.w16{width:371.266667pt;}
.w2b{width:396.386667pt;}
.w23{width:440.733333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x62{left:4.000000pt;}
.x3b{left:8.000000pt;}
.x39{left:10.720000pt;}
.x26{left:11.834667pt;}
.x52{left:13.600000pt;}
.x2c{left:15.354667pt;}
.x17{left:16.893333pt;}
.x42{left:19.840000pt;}
.x32{left:20.954667pt;}
.x30{left:23.680000pt;}
.x40{left:24.960000pt;}
.x2b{left:26.720000pt;}
.x1c{left:27.933333pt;}
.x41{left:29.280000pt;}
.x6b{left:30.400000pt;}
.x1f{left:32.253333pt;}
.x22{left:34.013333pt;}
.x5b{left:35.680000pt;}
.x4d{left:37.320000pt;}
.x20{left:39.106667pt;}
.x51{left:40.186667pt;}
.x13{left:42.306667pt;}
.x15{left:44.546667pt;}
.x2f{left:46.240000pt;}
.x18{left:48.226667pt;}
.x34{left:51.386667pt;}
.x2e{left:52.346667pt;}
.x21{left:55.426667pt;}
.x1a{left:59.746667pt;}
.x65{left:60.960000pt;}
.x1d{left:64.226667pt;}
.x19{left:65.640000pt;}
.x2d{left:70.560000pt;}
.x1e{left:72.800000pt;}
.x1b{left:77.120000pt;}
.x28{left:81.000000pt;}
.x31{left:81.960000pt;}
.x68{left:83.680000pt;}
.x4f{left:88.360000pt;}
.x33{left:94.760000pt;}
.x1{left:96.031988pt;}
.xd{left:100.032000pt;}
.x53{left:102.120000pt;}
.x2{left:103.231988pt;}
.x4{left:115.391988pt;}
.x6{left:116.671988pt;}
.xe{left:119.994667pt;}
.x44{left:123.392000pt;}
.x6c{left:128.031988pt;}
.x25{left:130.432000pt;}
.x36{left:132.992000pt;}
.x66{left:137.466667pt;}
.xc{left:143.226655pt;}
.x10{left:152.826655pt;}
.x55{left:158.266667pt;}
.x8{left:159.866655pt;}
.x24{left:170.586655pt;}
.x27{left:172.506667pt;}
.x4e{left:173.946655pt;}
.x5e{left:176.666667pt;}
.x5f{left:178.120000pt;}
.x9{left:182.426655pt;}
.x45{left:184.986667pt;}
.x37{left:194.586667pt;}
.x54{left:198.106655pt;}
.x5c{left:207.386655pt;}
.x12{left:216.480000pt;}
.x57{left:219.066667pt;}
.x48{left:245.626667pt;}
.x3c{left:255.426667pt;}
.x35{left:258.306655pt;}
.x67{left:260.066667pt;}
.x43{left:267.906655pt;}
.x4c{left:269.186655pt;}
.x58{left:277.826667pt;}
.x5d{left:279.586655pt;}
.x11{left:284.546655pt;}
.x63{left:286.306667pt;}
.xb{left:298.146655pt;}
.x49{left:304.546667pt;}
.x3d{left:314.146667pt;}
.x14{left:331.040000pt;}
.x64{left:335.426667pt;}
.x5{left:338.466655pt;}
.x59{left:353.506667pt;}
.x7{left:370.786655pt;}
.x4a{left:380.066667pt;}
.x69{left:382.946667pt;}
.x3e{left:389.826667pt;}
.x3{left:396.866655pt;}
.x29{left:399.266667pt;}
.x23{left:401.666655pt;}
.x5a{left:410.146667pt;}
.x50{left:413.986667pt;}
.x4b{left:436.733333pt;}
.x3f{left:446.493333pt;}
.xf{left:462.013322pt;}
.x16{left:468.800000pt;}
.x60{left:479.933333pt;}
.x46{left:495.293333pt;}
.xa{left:498.013322pt;}
.x38{left:504.893333pt;}
.x6a{left:524.733333pt;}
.x56{left:529.853333pt;}
.x2a{left:531.293333pt;}
.x61{left:549.373333pt;}
.x47{left:556.573333pt;}
.x3a{left:566.173333pt;}
}




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