
    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_ea5d2976d442738a622156ae.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_619e1c41fef4c687362555c9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d263e8ccd0bbe5c66f43154d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9c4e1bb49b9d34b2364878b3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2a1854aea0ea13319da53037.woff')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_735196dff95ed7ff953c19ef.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_8af03750bb0335a0a49ddc0d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.612000px;}
.ls4{letter-spacing:-0.460200px;}
.ls1{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.259800px;}
.ls12{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.513600px;}
.ls13{letter-spacing:0.666000px;}
.ls9{letter-spacing:0.828000px;}
.lsa{letter-spacing:0.900000px;}
.lse{letter-spacing:1.620000px;}
.ls11{letter-spacing:16.506720px;}
.lsf{letter-spacing:46.026720px;}
.ls5{letter-spacing:64.170720px;}
.ls7{letter-spacing:201.204000px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-15.606000px;}
.ws6{word-spacing:-15.453600px;}
.ws7{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.833200px;}
.wsa{word-spacing:-14.733600px;}
.ws4{word-spacing:-14.680200px;}
.ws8{word-spacing:-14.479800px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-2.028480px;}
._2{margin-left:-1.008000px;}
._0{width:1.127520px;}
._1{width:2.710320px;}
._3{width:4.699920px;}
._b{width:5.712960px;}
._4{width:6.735360px;}
._f{width:7.852320px;}
._c{width:9.143280px;}
._6{width:10.344960px;}
._5{width:11.473920px;}
._8{width:13.386240px;}
._10{width:16.501680px;}
._a{width:18.278640px;}
._9{width:19.481760px;}
._d{width:20.955600px;}
._12{width:22.073520px;}
._14{width:23.086320px;}
._13{width:24.143040px;}
._e{width:25.218720px;}
._18{width:26.835840px;}
._1a{width:33.078240px;}
._19{width:34.151760px;}
._1b{width:35.168160px;}
._15{width:41.234400px;}
._7{width:201.204000px;}
._17{width:424.124400px;}
._16{width:458.045760px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y17d{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.ydd{bottom:3.240000px;}
.yf7{bottom:3.420000px;}
.ye4{bottom:3.600000px;}
.y100{bottom:3.774000px;}
.ydf{bottom:3.780000px;}
.ye6{bottom:3.810000px;}
.y5{bottom:4.500000px;}
.ydb{bottom:11.880000px;}
.yf5{bottom:12.060000px;}
.y157{bottom:12.420000px;}
.ydc{bottom:20.520000px;}
.yf6{bottom:20.700000px;}
.y17b{bottom:20.880000px;}
.y156{bottom:21.060000px;}
.y4{bottom:24.120000px;}
.y177{bottom:29.370000px;}
.y176{bottom:37.830000px;}
.y179{bottom:38.340000px;}
.y1c5{bottom:58.860000px;}
.yb3{bottom:61.200000px;}
.y1cb{bottom:61.560000px;}
.y45{bottom:63.540000px;}
.y1ab{bottom:72.180000px;}
.y174{bottom:73.620000px;}
.y85{bottom:74.520000px;}
.y1c4{bottom:76.140000px;}
.yb2{bottom:78.480000px;}
.yab{bottom:78.840000px;}
.y104{bottom:79.560000px;}
.y44{bottom:80.820000px;}
.y153{bottom:85.680000px;}
.y131{bottom:88.200000px;}
.y1aa{bottom:88.920000px;}
.yd7{bottom:90.720000px;}
.y173{bottom:90.900000px;}
.y84{bottom:91.800000px;}
.y1c3{bottom:93.420000px;}
.yaa{bottom:96.120000px;}
.y103{bottom:96.840000px;}
.y43{bottom:98.136000px;}
.y152{bottom:102.816000px;}
.y1a9{bottom:106.596000px;}
.yd6{bottom:108.036000px;}
.y172{bottom:108.216000px;}
.y83{bottom:109.116000px;}
.y130{bottom:110.016000px;}
.y1c2{bottom:110.736000px;}
.y1ca{bottom:113.076000px;}
.ya9{bottom:113.436000px;}
.y102{bottom:114.156000px;}
.y42{bottom:115.416000px;}
.y151{bottom:120.096000px;}
.y1a8{bottom:123.876000px;}
.yd5{bottom:125.316000px;}
.y82{bottom:126.396000px;}
.y1c1{bottom:128.016000px;}
.ya8{bottom:130.716000px;}
.y101{bottom:131.436000px;}
.y12f{bottom:131.796000px;}
.y41{bottom:132.516000px;}
.y150{bottom:137.376000px;}
.y1a7{bottom:141.156000px;}
.yd4{bottom:142.596000px;}
.y81{bottom:143.496000px;}
.y1c0{bottom:145.296000px;}
.ya7{bottom:147.816000px;}
.yff{bottom:148.176000px;}
.y40{bottom:149.796000px;}
.y12e{bottom:153.570000px;}
.y14f{bottom:154.650000px;}
.y1a6{bottom:158.430000px;}
.y171{bottom:159.510000px;}
.yd3{bottom:159.870000px;}
.y80{bottom:160.770000px;}
.y1bf{bottom:162.390000px;}
.ya6{bottom:165.090000px;}
.y3f{bottom:167.070000px;}
.yfe{bottom:169.950000px;}
.y14e{bottom:171.930000px;}
.y12d{bottom:175.170000px;}
.y1a5{bottom:175.530000px;}
.yd2{bottom:177.150000px;}
.y7f{bottom:178.050000px;}
.y1be{bottom:179.670000px;}
.ya5{bottom:182.370000px;}
.y3e{bottom:184.350000px;}
.y14d{bottom:189.030000px;}
.yfd{bottom:191.730000px;}
.y1a4{bottom:192.810000px;}
.yd1{bottom:194.250000px;}
.y170{bottom:194.430000px;}
.y7e{bottom:195.330000px;}
.y1bd{bottom:196.590000px;}
.y12c{bottom:196.950000px;}
.ya4{bottom:199.650000px;}
.y3d{bottom:201.630000px;}
.y14c{bottom:206.310000px;}
.y1a3{bottom:210.090000px;}
.yd0{bottom:211.530000px;}
.y7d{bottom:212.610000px;}
.yfc{bottom:213.510000px;}
.y1bc{bottom:214.230000px;}
.ya3{bottom:216.930000px;}
.y3c{bottom:218.730000px;}
.y14b{bottom:223.590000px;}
.y1a2{bottom:227.370000px;}
.ycf{bottom:228.810000px;}
.y7c{bottom:229.890000px;}
.y1bb{bottom:231.510000px;}
.ya2{bottom:234.030000px;}
.yfb{bottom:235.290000px;}
.y3b{bottom:236.010000px;}
.y12b{bottom:240.510000px;}
.y1a1{bottom:244.650000px;}
.yce{bottom:246.090000px;}
.y7b{bottom:246.630000px;}
.y1ba{bottom:248.610000px;}
.yb1{bottom:250.950000px;}
.ya1{bottom:251.310000px;}
.y3a{bottom:253.290000px;}
.yfa{bottom:257.070000px;}
.y1a0{bottom:261.930000px;}
.y12a{bottom:262.290000px;}
.y16f{bottom:263.010000px;}
.ycd{bottom:263.370000px;}
.y7a{bottom:264.270000px;}
.y1b9{bottom:265.890000px;}
.ya0{bottom:268.590000px;}
.y39{bottom:270.570000px;}
.yf9{bottom:278.670000px;}
.y19f{bottom:279.030000px;}
.ycc{bottom:280.650000px;}
.y79{bottom:281.550000px;}
.y1b8{bottom:283.170000px;}
.y14a{bottom:284.070000px;}
.y9f{bottom:285.870000px;}
.y38{bottom:287.850000px;}
.y19e{bottom:296.310000px;}
.ycb{bottom:297.750000px;}
.y16e{bottom:297.930000px;}
.y78{bottom:298.830000px;}
.y1b7{bottom:300.090000px;}
.yf8{bottom:300.450000px;}
.y9e{bottom:303.150000px;}
.y129{bottom:303.870000px;}
.y37{bottom:305.130000px;}
.y149{bottom:305.670000px;}
.y19d{bottom:313.590000px;}
.yca{bottom:315.030000px;}
.y77{bottom:316.110000px;}
.y1b6{bottom:317.730000px;}
.y9d{bottom:320.430000px;}
.y128{bottom:321.150000px;}
.y36{bottom:322.230000px;}
.y148{bottom:330.150000px;}
.y19c{bottom:330.870000px;}
.yc9{bottom:332.310000px;}
.y76{bottom:333.210000px;}
.y1b5{bottom:335.010000px;}
.y9c{bottom:337.170000px;}
.yb0{bottom:337.530000px;}
.y127{bottom:338.430000px;}
.y35{bottom:339.150000px;}
.y147{bottom:347.430000px;}
.y19b{bottom:348.150000px;}
.yc8{bottom:349.590000px;}
.y75{bottom:350.130000px;}
.y1b4{bottom:352.110000px;}
.y9b{bottom:354.810000px;}
.y126{bottom:355.170000px;}
.y34{bottom:356.790000px;}
.yf4{bottom:363.855000px;}
.y146{bottom:364.575000px;}
.y19a{bottom:365.475000px;}
.yc7{bottom:366.915000px;}
.y74{bottom:367.815000px;}
.y1b3{bottom:369.435000px;}
.y9a{bottom:372.135000px;}
.y125{bottom:372.855000px;}
.y33{bottom:374.115000px;}
.yf3{bottom:381.135000px;}
.y145{bottom:381.855000px;}
.y199{bottom:382.575000px;}
.yc6{bottom:384.195000px;}
.y73{bottom:385.095000px;}
.y1b2{bottom:386.355000px;}
.y99{bottom:389.415000px;}
.y124{bottom:390.135000px;}
.y32{bottom:391.395000px;}
.yf2{bottom:398.415000px;}
.y144{bottom:398.775000px;}
.y198{bottom:399.855000px;}
.yc5{bottom:401.295000px;}
.y16d{bottom:401.475000px;}
.y72{bottom:402.375000px;}
.y1b1{bottom:403.995000px;}
.y98{bottom:406.695000px;}
.y123{bottom:407.415000px;}
.y31{bottom:408.675000px;}
.yf1{bottom:415.335000px;}
.y143{bottom:416.415000px;}
.y197{bottom:416.775000px;}
.yc4{bottom:418.575000px;}
.y71{bottom:419.655000px;}
.y1b0{bottom:421.275000px;}
.y97{bottom:423.975000px;}
.y122{bottom:424.695000px;}
.y30{bottom:425.775000px;}
.yf0{bottom:432.975000px;}
.y142{bottom:433.695000px;}
.yc3{bottom:435.855000px;}
.y70{bottom:436.755000px;}
.y196{bottom:438.555000px;}
.y96{bottom:440.715000px;}
.yaf{bottom:441.075000px;}
.y121{bottom:441.795000px;}
.y2f{bottom:443.055000px;}
.yef{bottom:450.075000px;}
.y141{bottom:450.975000px;}
.yc2{bottom:453.135000px;}
.y6f{bottom:454.035000px;}
.y1af{bottom:455.655000px;}
.y95{bottom:458.355000px;}
.y120{bottom:459.075000px;}
.y2e{bottom:460.335000px;}
.yee{bottom:467.355000px;}
.y140{bottom:468.075000px;}
.yc1{bottom:470.415000px;}
.y6e{bottom:471.315000px;}
.y1ae{bottom:472.575000px;}
.y94{bottom:475.635000px;}
.y11f{bottom:475.995000px;}
.y2d{bottom:477.255000px;}
.y195{bottom:477.435000px;}
.yed{bottom:484.635000px;}
.y13f{bottom:485.355000px;}
.yc0{bottom:487.515000px;}
.y16c{bottom:487.695000px;}
.y6d{bottom:488.595000px;}
.y1ad{bottom:490.215000px;}
.y93{bottom:492.915000px;}
.y2c{bottom:494.895000px;}
.y11e{bottom:497.775000px;}
.y194{bottom:499.215000px;}
.yec{bottom:501.915000px;}
.y13e{bottom:502.635000px;}
.y16b{bottom:504.435000px;}
.ybf{bottom:504.795000px;}
.y6c{bottom:505.875000px;}
.y1ac{bottom:507.495000px;}
.y1c9{bottom:509.835000px;}
.y92{bottom:510.195000px;}
.y2b{bottom:511.995000px;}
.yeb{bottom:519.195000px;}
.y11d{bottom:519.555000px;}
.y13d{bottom:519.915000px;}
.y193{bottom:520.995000px;}
.ybe{bottom:522.075000px;}
.y6b{bottom:523.155000px;}
.y91{bottom:527.295000px;}
.y2a{bottom:529.275000px;}
.yea{bottom:536.295000px;}
.y13c{bottom:537.195000px;}
.ybd{bottom:539.355000px;}
.y6a{bottom:540.255000px;}
.y11c{bottom:541.335000px;}
.y192{bottom:542.775000px;}
.y90{bottom:544.575000px;}
.y29{bottom:546.555000px;}
.ye9{bottom:553.575000px;}
.y13b{bottom:554.295000px;}
.ybc{bottom:556.635000px;}
.y69{bottom:557.535000px;}
.yae{bottom:561.495000px;}
.y8f{bottom:561.855000px;}
.y11b{bottom:562.935000px;}
.y28{bottom:563.475000px;}
.ye8{bottom:570.495000px;}
.y13a{bottom:571.575000px;}
.ybb{bottom:573.915000px;}
.y68{bottom:574.455000px;}
.y8e{bottom:579.135000px;}
.y27{bottom:581.115000px;}
.y191{bottom:584.355000px;}
.y11a{bottom:584.715000px;}
.y139{bottom:588.495000px;}
.yba{bottom:591.015000px;}
.y16a{bottom:591.195000px;}
.y67{bottom:592.095000px;}
.ye7{bottom:592.275000px;}
.y8d{bottom:596.415000px;}
.y26{bottom:598.395000px;}
.y190{bottom:601.635000px;}
.y119{bottom:606.495000px;}
.yb9{bottom:608.295000px;}
.y66{bottom:609.375000px;}
.y138{bottom:610.275000px;}
.y8c{bottom:613.695000px;}
.ye5{bottom:614.055000px;}
.y25{bottom:615.495000px;}
.y18f{bottom:618.585000px;}
.yb8{bottom:625.605000px;}
.y65{bottom:627.585000px;}
.y118{bottom:628.305000px;}
.y8b{bottom:630.825000px;}
.y137{bottom:632.085000px;}
.y24{bottom:632.805000px;}
.ye3{bottom:635.865000px;}
.y18e{bottom:636.225000px;}
.yb7{bottom:642.885000px;}
.y64{bottom:645.945000px;}
.y8a{bottom:648.105000px;}
.y23{bottom:650.085000px;}
.y18d{bottom:652.965000px;}
.y136{bottom:653.865000px;}
.ye2{bottom:657.465000px;}
.yb6{bottom:659.805000px;}
.y169{bottom:660.165000px;}
.y63{bottom:664.305000px;}
.y89{bottom:665.385000px;}
.y22{bottom:667.365000px;}
.y18c{bottom:670.605000px;}
.yb5{bottom:673.665000px;}
.y135{bottom:675.465000px;}
.y168{bottom:677.445000px;}
.ye1{bottom:679.245000px;}
.y62{bottom:682.305000px;}
.y88{bottom:682.665000px;}
.y21{bottom:684.645000px;}
.y18b{bottom:687.885000px;}
.y117{bottom:691.665000px;}
.y167{bottom:694.185000px;}
.y61{bottom:699.945000px;}
.ye0{bottom:701.025000px;}
.y20{bottom:701.925000px;}
.y18a{bottom:705.165000px;}
.y116{bottom:708.945000px;}
.y166{bottom:715.965000px;}
.y60{bottom:717.225000px;}
.y1f{bottom:719.025000px;}
.y189{bottom:722.085000px;}
.yde{bottom:722.805000px;}
.y115{bottom:726.225000px;}
.y1c8{bottom:733.965000px;}
.y5f{bottom:734.325000px;}
.y1e{bottom:736.305000px;}
.y188{bottom:739.725000px;}
.y165{bottom:740.445000px;}
.y114{bottom:742.965000px;}
.yda{bottom:744.585000px;}
.y5e{bottom:751.605000px;}
.y1d{bottom:753.585000px;}
.y187{bottom:756.825000px;}
.y164{bottom:757.725000px;}
.y113{bottom:760.605000px;}
.y134{bottom:768.525000px;}
.y5d{bottom:768.885000px;}
.y1c{bottom:770.865000px;}
.y186{bottom:774.105000px;}
.y163{bottom:774.825000px;}
.y112{bottom:777.885000px;}
.y5c{bottom:786.165000px;}
.y1b{bottom:788.145000px;}
.y185{bottom:791.385000px;}
.y162{bottom:792.105000px;}
.y111{bottom:795.165000px;}
.y5b{bottom:803.445000px;}
.y1a{bottom:805.425000px;}
.y184{bottom:808.665000px;}
.y161{bottom:809.025000px;}
.y110{bottom:812.445000px;}
.y1cd{bottom:820.365000px;}
.y5a{bottom:820.725000px;}
.y19{bottom:822.525000px;}
.y183{bottom:825.945000px;}
.y160{bottom:826.665000px;}
.y10f{bottom:829.545000px;}
.yad{bottom:837.465000px;}
.y59{bottom:837.825000px;}
.y18{bottom:839.805000px;}
.y182{bottom:843.045000px;}
.y15f{bottom:843.945000px;}
.y10e{bottom:846.825000px;}
.y58{bottom:855.105000px;}
.y17{bottom:857.085000px;}
.y181{bottom:860.325000px;}
.y15e{bottom:861.045000px;}
.y10d{bottom:863.745000px;}
.y57{bottom:872.025000px;}
.y87{bottom:872.385000px;}
.y16{bottom:874.005000px;}
.y180{bottom:877.650000px;}
.y15d{bottom:878.370000px;}
.y10c{bottom:885.570000px;}
.y56{bottom:889.710000px;}
.y15{bottom:892.050000px;}
.y17f{bottom:894.930000px;}
.y15c{bottom:895.650000px;}
.y133{bottom:906.630000px;}
.y55{bottom:906.990000px;}
.y10b{bottom:907.350000px;}
.y14{bottom:909.690000px;}
.y17e{bottom:912.210000px;}
.y15b{bottom:912.930000px;}
.yd9{bottom:923.730000px;}
.y54{bottom:924.090000px;}
.y13{bottom:926.790000px;}
.y10a{bottom:929.130000px;}
.y15a{bottom:930.210000px;}
.y1c7{bottom:941.010000px;}
.y53{bottom:941.370000px;}
.y12{bottom:944.070000px;}
.y159{bottom:947.490000px;}
.y109{bottom:950.730000px;}
.y52{bottom:958.650000px;}
.y11{bottom:961.350000px;}
.y158{bottom:964.590000px;}
.y108{bottom:972.510000px;}
.y51{bottom:975.930000px;}
.y10{bottom:978.630000px;}
.y155{bottom:981.510000px;}
.y17c{bottom:989.790000px;}
.y50{bottom:993.210000px;}
.y107{bottom:994.290000px;}
.yf{bottom:995.910000px;}
.yd8{bottom:1010.130000px;}
.y4f{bottom:1010.490000px;}
.y17a{bottom:1011.570000px;}
.ye{bottom:1013.910000px;}
.y106{bottom:1016.070000px;}
.y154{bottom:1020.570000px;}
.y4e{bottom:1027.230000px;}
.y86{bottom:1027.590000px;}
.yd{bottom:1031.190000px;}
.y105{bottom:1037.850000px;}
.y4d{bottom:1044.870000px;}
.yc{bottom:1048.290000px;}
.y178{bottom:1050.450000px;}
.y132{bottom:1061.790000px;}
.y4c{bottom:1062.150000px;}
.yb{bottom:1065.570000px;}
.y4b{bottom:1079.430000px;}
.ya{bottom:1082.850000px;}
.y4a{bottom:1096.710000px;}
.y9{bottom:1100.490000px;}
.y175{bottom:1106.790000px;}
.y1cc{bottom:1113.630000px;}
.y49{bottom:1113.990000px;}
.y8{bottom:1121.190000px;}
.yac{bottom:1130.730000px;}
.y48{bottom:1131.090000px;}
.y7{bottom:1141.920000px;}
.y1c6{bottom:1148.040000px;}
.y47{bottom:1148.400000px;}
.y6{bottom:1162.620000px;}
.yb4{bottom:1165.320000px;}
.y46{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.hb{height:17.100000px;}
.ha{height:17.280000px;}
.hc{height:17.316000px;}
.h9{height:34.380000px;}
.hd{height:34.560000px;}
.h8{height:41.726953px;}
.he{height:51.696000px;}
.hf{height:51.840000px;}
.h2{height:58.621992px;}
.h5{height:58.651172px;}
.h6{height:60.226875px;}
.h7{height:61.423863px;}
.h4{height:65.884219px;}
.h3{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w35{width:49.680000px;}
.w32{width:61.236000px;}
.w34{width:61.380000px;}
.w20{width:63.900000px;}
.w36{width:79.776000px;}
.w1c{width:98.496000px;}
.w2f{width:101.376000px;}
.w2{width:105.516000px;}
.wb{width:105.696000px;}
.w2d{width:109.800000px;}
.w25{width:113.436000px;}
.w2c{width:113.976000px;}
.w24{width:115.236000px;}
.w16{width:115.956000px;}
.w1f{width:117.936000px;}
.wf{width:124.236000px;}
.w1d{width:130.536000px;}
.w2e{width:134.856000px;}
.w10{width:135.036000px;}
.w12{width:136.116000px;}
.w8{width:140.076000px;}
.w33{width:140.256000px;}
.w28{width:149.256000px;}
.w17{width:149.436000px;}
.w23{width:149.580000px;}
.w2a{width:151.590000px;}
.w14{width:152.490000px;}
.w15{width:153.030000px;}
.w1b{width:154.620000px;}
.w19{width:155.910000px;}
.w3{width:160.590000px;}
.w4{width:160.950000px;}
.w5{width:162.210000px;}
.wd{width:162.750000px;}
.w7{width:163.110000px;}
.w2b{width:164.370000px;}
.w11{width:171.930000px;}
.w13{width:173.550000px;}
.w26{width:176.070000px;}
.wa{width:177.150000px;}
.wc{width:177.330000px;}
.w31{width:180.930000px;}
.w6{width:188.850000px;}
.w9{width:192.270000px;}
.w30{width:200.730000px;}
.w18{width:201.810000px;}
.w27{width:202.530000px;}
.we{width:208.470000px;}
.w21{width:220.755000px;}
.w1a{width:227.595000px;}
.w29{width:252.975000px;}
.w1e{width:378.255000px;}
.w22{width:402.765000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:1.080000px;}
.x1c{left:2.700000px;}
.x25{left:5.040000px;}
.x75{left:6.120000px;}
.x35{left:7.200000px;}
.x42{left:8.280000px;}
.x50{left:10.440000px;}
.x20{left:12.420000px;}
.x27{left:13.500000px;}
.x19{left:14.760000px;}
.x3c{left:15.840000px;}
.x38{left:17.280000px;}
.x2b{left:19.440000px;}
.x17{left:21.240000px;}
.x6c{left:22.320000px;}
.x24{left:24.840000px;}
.x2d{left:27.180000px;}
.x45{left:29.700000px;}
.x2f{left:30.780000px;}
.x2a{left:32.400000px;}
.x55{left:34.380000px;}
.x22{left:35.640000px;}
.x23{left:37.260000px;}
.x28{left:38.880000px;}
.x40{left:40.500000px;}
.x16{left:41.580000px;}
.x39{left:43.560000px;}
.x49{left:44.820000px;}
.x62{left:46.476000px;}
.x1a{left:48.420000px;}
.x44{left:50.436000px;}
.x64{left:51.525000px;}
.x13{left:52.920000px;}
.x5{left:54.000000px;}
.x1f{left:56.700000px;}
.x54{left:57.960000px;}
.x4c{left:59.436000px;}
.x4d{left:61.056000px;}
.x1d{left:62.280000px;}
.x4b{left:64.800000px;}
.x21{left:67.140000px;}
.x30{left:68.400000px;}
.x6f{left:69.876000px;}
.x43{left:72.720000px;}
.x32{left:75.240000px;}
.xf{left:81.000000px;}
.x31{left:82.980000px;}
.x36{left:86.400000px;}
.x4a{left:87.840000px;}
.x3a{left:91.080000px;}
.x10{left:108.036000px;}
.x5a{left:110.910000px;}
.x5b{left:117.570000px;}
.xd{left:139.716000px;}
.x60{left:152.130000px;}
.x15{left:160.770000px;}
.x5c{left:180.930000px;}
.xc{left:189.750000px;}
.x3d{left:194.790000px;}
.x69{left:206.670000px;}
.x6{left:209.190000px;}
.x63{left:231.330000px;}
.xa{left:235.110000px;}
.x4e{left:236.190000px;}
.x68{left:237.990000px;}
.x46{left:242.490000px;}
.x3b{left:248.970000px;}
.x3{left:254.550000px;}
.x70{left:255.810000px;}
.x77{left:259.590000px;}
.x12{left:274.035000px;}
.x4f{left:277.635000px;}
.x26{left:280.695000px;}
.x8{left:290.235000px;}
.xe{left:297.975000px;}
.x2{left:300.675000px;}
.x61{left:311.295000px;}
.x18{left:323.535000px;}
.x29{left:326.235000px;}
.x47{left:327.495000px;}
.x56{left:330.375000px;}
.x33{left:340.455000px;}
.x1{left:345.135000px;}
.x9{left:348.735000px;}
.x3e{left:368.895000px;}
.x6a{left:373.395000px;}
.x7{left:391.575000px;}
.x57{left:433.515000px;}
.x51{left:434.595000px;}
.x65{left:436.035000px;}
.x71{left:439.095000px;}
.x67{left:446.475000px;}
.x5d{left:457.845000px;}
.xb{left:462.165000px;}
.x2c{left:468.645000px;}
.x48{left:479.085000px;}
.x1b{left:486.825000px;}
.x6b{left:489.705000px;}
.x72{left:502.665000px;}
.x34{left:505.365000px;}
.x3f{left:507.345000px;}
.x58{left:553.605000px;}
.x66{left:587.445000px;}
.x6d{left:601.845000px;}
.x5e{left:609.585000px;}
.x52{left:613.905000px;}
.x59{left:619.665000px;}
.x73{left:645.090000px;}
.x1e{left:651.390000px;}
.x2e{left:663.270000px;}
.x41{left:683.250000px;}
.x74{left:708.630000px;}
.x53{left:714.750000px;}
.x37{left:716.190000px;}
.x5f{left:726.990000px;}
.x6e{left:739.050000px;}
.x76{left:760.470000px;}
.x78{left:788.730000px;}
.x11{left:797.550000px;}
.x4{left:812.130000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.544000pt;}
.ls4{letter-spacing:-0.409067pt;}
.ls1{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.230933pt;}
.ls12{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.456533pt;}
.ls13{letter-spacing:0.592000pt;}
.ls9{letter-spacing:0.736000pt;}
.lsa{letter-spacing:0.800000pt;}
.lse{letter-spacing:1.440000pt;}
.ls11{letter-spacing:14.672640pt;}
.lsf{letter-spacing:40.912640pt;}
.ls5{letter-spacing:57.040640pt;}
.ls7{letter-spacing:178.848000pt;}
.ws3{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-13.872000pt;}
.ws6{word-spacing:-13.736533pt;}
.ws7{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.185067pt;}
.wsa{word-spacing:-13.096533pt;}
.ws4{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.870933pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-1.803093pt;}
._2{margin-left:-0.896000pt;}
._0{width:1.002240pt;}
._1{width:2.409173pt;}
._3{width:4.177707pt;}
._b{width:5.078187pt;}
._4{width:5.986987pt;}
._f{width:6.979840pt;}
._c{width:8.127360pt;}
._6{width:9.195520pt;}
._5{width:10.199040pt;}
._8{width:11.898880pt;}
._10{width:14.668160pt;}
._a{width:16.247680pt;}
._9{width:17.317120pt;}
._d{width:18.627200pt;}
._12{width:19.620907pt;}
._14{width:20.521173pt;}
._13{width:21.460480pt;}
._e{width:22.416640pt;}
._18{width:23.854080pt;}
._1a{width:29.402880pt;}
._19{width:30.357120pt;}
._1b{width:31.260587pt;}
._15{width:36.652800pt;}
._7{width:178.848000pt;}
._17{width:376.999467pt;}
._16{width:407.151787pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y17d{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.ydd{bottom:2.880000pt;}
.yf7{bottom:3.040000pt;}
.ye4{bottom:3.200000pt;}
.y100{bottom:3.354667pt;}
.ydf{bottom:3.360000pt;}
.ye6{bottom:3.386667pt;}
.y5{bottom:4.000000pt;}
.ydb{bottom:10.560000pt;}
.yf5{bottom:10.720000pt;}
.y157{bottom:11.040000pt;}
.ydc{bottom:18.240000pt;}
.yf6{bottom:18.400000pt;}
.y17b{bottom:18.560000pt;}
.y156{bottom:18.720000pt;}
.y4{bottom:21.440000pt;}
.y177{bottom:26.106667pt;}
.y176{bottom:33.626667pt;}
.y179{bottom:34.080000pt;}
.y1c5{bottom:52.320000pt;}
.yb3{bottom:54.400000pt;}
.y1cb{bottom:54.720000pt;}
.y45{bottom:56.480000pt;}
.y1ab{bottom:64.160000pt;}
.y174{bottom:65.440000pt;}
.y85{bottom:66.240000pt;}
.y1c4{bottom:67.680000pt;}
.yb2{bottom:69.760000pt;}
.yab{bottom:70.080000pt;}
.y104{bottom:70.720000pt;}
.y44{bottom:71.840000pt;}
.y153{bottom:76.160000pt;}
.y131{bottom:78.400000pt;}
.y1aa{bottom:79.040000pt;}
.yd7{bottom:80.640000pt;}
.y173{bottom:80.800000pt;}
.y84{bottom:81.600000pt;}
.y1c3{bottom:83.040000pt;}
.yaa{bottom:85.440000pt;}
.y103{bottom:86.080000pt;}
.y43{bottom:87.232000pt;}
.y152{bottom:91.392000pt;}
.y1a9{bottom:94.752000pt;}
.yd6{bottom:96.032000pt;}
.y172{bottom:96.192000pt;}
.y83{bottom:96.992000pt;}
.y130{bottom:97.792000pt;}
.y1c2{bottom:98.432000pt;}
.y1ca{bottom:100.512000pt;}
.ya9{bottom:100.832000pt;}
.y102{bottom:101.472000pt;}
.y42{bottom:102.592000pt;}
.y151{bottom:106.752000pt;}
.y1a8{bottom:110.112000pt;}
.yd5{bottom:111.392000pt;}
.y82{bottom:112.352000pt;}
.y1c1{bottom:113.792000pt;}
.ya8{bottom:116.192000pt;}
.y101{bottom:116.832000pt;}
.y12f{bottom:117.152000pt;}
.y41{bottom:117.792000pt;}
.y150{bottom:122.112000pt;}
.y1a7{bottom:125.472000pt;}
.yd4{bottom:126.752000pt;}
.y81{bottom:127.552000pt;}
.y1c0{bottom:129.152000pt;}
.ya7{bottom:131.392000pt;}
.yff{bottom:131.712000pt;}
.y40{bottom:133.152000pt;}
.y12e{bottom:136.506667pt;}
.y14f{bottom:137.466667pt;}
.y1a6{bottom:140.826667pt;}
.y171{bottom:141.786667pt;}
.yd3{bottom:142.106667pt;}
.y80{bottom:142.906667pt;}
.y1bf{bottom:144.346667pt;}
.ya6{bottom:146.746667pt;}
.y3f{bottom:148.506667pt;}
.yfe{bottom:151.066667pt;}
.y14e{bottom:152.826667pt;}
.y12d{bottom:155.706667pt;}
.y1a5{bottom:156.026667pt;}
.yd2{bottom:157.466667pt;}
.y7f{bottom:158.266667pt;}
.y1be{bottom:159.706667pt;}
.ya5{bottom:162.106667pt;}
.y3e{bottom:163.866667pt;}
.y14d{bottom:168.026667pt;}
.yfd{bottom:170.426667pt;}
.y1a4{bottom:171.386667pt;}
.yd1{bottom:172.666667pt;}
.y170{bottom:172.826667pt;}
.y7e{bottom:173.626667pt;}
.y1bd{bottom:174.746667pt;}
.y12c{bottom:175.066667pt;}
.ya4{bottom:177.466667pt;}
.y3d{bottom:179.226667pt;}
.y14c{bottom:183.386667pt;}
.y1a3{bottom:186.746667pt;}
.yd0{bottom:188.026667pt;}
.y7d{bottom:188.986667pt;}
.yfc{bottom:189.786667pt;}
.y1bc{bottom:190.426667pt;}
.ya3{bottom:192.826667pt;}
.y3c{bottom:194.426667pt;}
.y14b{bottom:198.746667pt;}
.y1a2{bottom:202.106667pt;}
.ycf{bottom:203.386667pt;}
.y7c{bottom:204.346667pt;}
.y1bb{bottom:205.786667pt;}
.ya2{bottom:208.026667pt;}
.yfb{bottom:209.146667pt;}
.y3b{bottom:209.786667pt;}
.y12b{bottom:213.786667pt;}
.y1a1{bottom:217.466667pt;}
.yce{bottom:218.746667pt;}
.y7b{bottom:219.226667pt;}
.y1ba{bottom:220.986667pt;}
.yb1{bottom:223.066667pt;}
.ya1{bottom:223.386667pt;}
.y3a{bottom:225.146667pt;}
.yfa{bottom:228.506667pt;}
.y1a0{bottom:232.826667pt;}
.y12a{bottom:233.146667pt;}
.y16f{bottom:233.786667pt;}
.ycd{bottom:234.106667pt;}
.y7a{bottom:234.906667pt;}
.y1b9{bottom:236.346667pt;}
.ya0{bottom:238.746667pt;}
.y39{bottom:240.506667pt;}
.yf9{bottom:247.706667pt;}
.y19f{bottom:248.026667pt;}
.ycc{bottom:249.466667pt;}
.y79{bottom:250.266667pt;}
.y1b8{bottom:251.706667pt;}
.y14a{bottom:252.506667pt;}
.y9f{bottom:254.106667pt;}
.y38{bottom:255.866667pt;}
.y19e{bottom:263.386667pt;}
.ycb{bottom:264.666667pt;}
.y16e{bottom:264.826667pt;}
.y78{bottom:265.626667pt;}
.y1b7{bottom:266.746667pt;}
.yf8{bottom:267.066667pt;}
.y9e{bottom:269.466667pt;}
.y129{bottom:270.106667pt;}
.y37{bottom:271.226667pt;}
.y149{bottom:271.706667pt;}
.y19d{bottom:278.746667pt;}
.yca{bottom:280.026667pt;}
.y77{bottom:280.986667pt;}
.y1b6{bottom:282.426667pt;}
.y9d{bottom:284.826667pt;}
.y128{bottom:285.466667pt;}
.y36{bottom:286.426667pt;}
.y148{bottom:293.466667pt;}
.y19c{bottom:294.106667pt;}
.yc9{bottom:295.386667pt;}
.y76{bottom:296.186667pt;}
.y1b5{bottom:297.786667pt;}
.y9c{bottom:299.706667pt;}
.yb0{bottom:300.026667pt;}
.y127{bottom:300.826667pt;}
.y35{bottom:301.466667pt;}
.y147{bottom:308.826667pt;}
.y19b{bottom:309.466667pt;}
.yc8{bottom:310.746667pt;}
.y75{bottom:311.226667pt;}
.y1b4{bottom:312.986667pt;}
.y9b{bottom:315.386667pt;}
.y126{bottom:315.706667pt;}
.y34{bottom:317.146667pt;}
.yf4{bottom:323.426667pt;}
.y146{bottom:324.066667pt;}
.y19a{bottom:324.866667pt;}
.yc7{bottom:326.146667pt;}
.y74{bottom:326.946667pt;}
.y1b3{bottom:328.386667pt;}
.y9a{bottom:330.786667pt;}
.y125{bottom:331.426667pt;}
.y33{bottom:332.546667pt;}
.yf3{bottom:338.786667pt;}
.y145{bottom:339.426667pt;}
.y199{bottom:340.066667pt;}
.yc6{bottom:341.506667pt;}
.y73{bottom:342.306667pt;}
.y1b2{bottom:343.426667pt;}
.y99{bottom:346.146667pt;}
.y124{bottom:346.786667pt;}
.y32{bottom:347.906667pt;}
.yf2{bottom:354.146667pt;}
.y144{bottom:354.466667pt;}
.y198{bottom:355.426667pt;}
.yc5{bottom:356.706667pt;}
.y16d{bottom:356.866667pt;}
.y72{bottom:357.666667pt;}
.y1b1{bottom:359.106667pt;}
.y98{bottom:361.506667pt;}
.y123{bottom:362.146667pt;}
.y31{bottom:363.266667pt;}
.yf1{bottom:369.186667pt;}
.y143{bottom:370.146667pt;}
.y197{bottom:370.466667pt;}
.yc4{bottom:372.066667pt;}
.y71{bottom:373.026667pt;}
.y1b0{bottom:374.466667pt;}
.y97{bottom:376.866667pt;}
.y122{bottom:377.506667pt;}
.y30{bottom:378.466667pt;}
.yf0{bottom:384.866667pt;}
.y142{bottom:385.506667pt;}
.yc3{bottom:387.426667pt;}
.y70{bottom:388.226667pt;}
.y196{bottom:389.826667pt;}
.y96{bottom:391.746667pt;}
.yaf{bottom:392.066667pt;}
.y121{bottom:392.706667pt;}
.y2f{bottom:393.826667pt;}
.yef{bottom:400.066667pt;}
.y141{bottom:400.866667pt;}
.yc2{bottom:402.786667pt;}
.y6f{bottom:403.586667pt;}
.y1af{bottom:405.026667pt;}
.y95{bottom:407.426667pt;}
.y120{bottom:408.066667pt;}
.y2e{bottom:409.186667pt;}
.yee{bottom:415.426667pt;}
.y140{bottom:416.066667pt;}
.yc1{bottom:418.146667pt;}
.y6e{bottom:418.946667pt;}
.y1ae{bottom:420.066667pt;}
.y94{bottom:422.786667pt;}
.y11f{bottom:423.106667pt;}
.y2d{bottom:424.226667pt;}
.y195{bottom:424.386667pt;}
.yed{bottom:430.786667pt;}
.y13f{bottom:431.426667pt;}
.yc0{bottom:433.346667pt;}
.y16c{bottom:433.506667pt;}
.y6d{bottom:434.306667pt;}
.y1ad{bottom:435.746667pt;}
.y93{bottom:438.146667pt;}
.y2c{bottom:439.906667pt;}
.y11e{bottom:442.466667pt;}
.y194{bottom:443.746667pt;}
.yec{bottom:446.146667pt;}
.y13e{bottom:446.786667pt;}
.y16b{bottom:448.386667pt;}
.ybf{bottom:448.706667pt;}
.y6c{bottom:449.666667pt;}
.y1ac{bottom:451.106667pt;}
.y1c9{bottom:453.186667pt;}
.y92{bottom:453.506667pt;}
.y2b{bottom:455.106667pt;}
.yeb{bottom:461.506667pt;}
.y11d{bottom:461.826667pt;}
.y13d{bottom:462.146667pt;}
.y193{bottom:463.106667pt;}
.ybe{bottom:464.066667pt;}
.y6b{bottom:465.026667pt;}
.y91{bottom:468.706667pt;}
.y2a{bottom:470.466667pt;}
.yea{bottom:476.706667pt;}
.y13c{bottom:477.506667pt;}
.ybd{bottom:479.426667pt;}
.y6a{bottom:480.226667pt;}
.y11c{bottom:481.186667pt;}
.y192{bottom:482.466667pt;}
.y90{bottom:484.066667pt;}
.y29{bottom:485.826667pt;}
.ye9{bottom:492.066667pt;}
.y13b{bottom:492.706667pt;}
.ybc{bottom:494.786667pt;}
.y69{bottom:495.586667pt;}
.yae{bottom:499.106667pt;}
.y8f{bottom:499.426667pt;}
.y11b{bottom:500.386667pt;}
.y28{bottom:500.866667pt;}
.ye8{bottom:507.106667pt;}
.y13a{bottom:508.066667pt;}
.ybb{bottom:510.146667pt;}
.y68{bottom:510.626667pt;}
.y8e{bottom:514.786667pt;}
.y27{bottom:516.546667pt;}
.y191{bottom:519.426667pt;}
.y11a{bottom:519.746667pt;}
.y139{bottom:523.106667pt;}
.yba{bottom:525.346667pt;}
.y16a{bottom:525.506667pt;}
.y67{bottom:526.306667pt;}
.ye7{bottom:526.466667pt;}
.y8d{bottom:530.146667pt;}
.y26{bottom:531.906667pt;}
.y190{bottom:534.786667pt;}
.y119{bottom:539.106667pt;}
.yb9{bottom:540.706667pt;}
.y66{bottom:541.666667pt;}
.y138{bottom:542.466667pt;}
.y8c{bottom:545.506667pt;}
.ye5{bottom:545.826667pt;}
.y25{bottom:547.106667pt;}
.y18f{bottom:549.853333pt;}
.yb8{bottom:556.093333pt;}
.y65{bottom:557.853333pt;}
.y118{bottom:558.493333pt;}
.y8b{bottom:560.733333pt;}
.y137{bottom:561.853333pt;}
.y24{bottom:562.493333pt;}
.ye3{bottom:565.213333pt;}
.y18e{bottom:565.533333pt;}
.yb7{bottom:571.453333pt;}
.y64{bottom:574.173333pt;}
.y8a{bottom:576.093333pt;}
.y23{bottom:577.853333pt;}
.y18d{bottom:580.413333pt;}
.y136{bottom:581.213333pt;}
.ye2{bottom:584.413333pt;}
.yb6{bottom:586.493333pt;}
.y169{bottom:586.813333pt;}
.y63{bottom:590.493333pt;}
.y89{bottom:591.453333pt;}
.y22{bottom:593.213333pt;}
.y18c{bottom:596.093333pt;}
.yb5{bottom:598.813333pt;}
.y135{bottom:600.413333pt;}
.y168{bottom:602.173333pt;}
.ye1{bottom:603.773333pt;}
.y62{bottom:606.493333pt;}
.y88{bottom:606.813333pt;}
.y21{bottom:608.573333pt;}
.y18b{bottom:611.453333pt;}
.y117{bottom:614.813333pt;}
.y167{bottom:617.053333pt;}
.y61{bottom:622.173333pt;}
.ye0{bottom:623.133333pt;}
.y20{bottom:623.933333pt;}
.y18a{bottom:626.813333pt;}
.y116{bottom:630.173333pt;}
.y166{bottom:636.413333pt;}
.y60{bottom:637.533333pt;}
.y1f{bottom:639.133333pt;}
.y189{bottom:641.853333pt;}
.yde{bottom:642.493333pt;}
.y115{bottom:645.533333pt;}
.y1c8{bottom:652.413333pt;}
.y5f{bottom:652.733333pt;}
.y1e{bottom:654.493333pt;}
.y188{bottom:657.533333pt;}
.y165{bottom:658.173333pt;}
.y114{bottom:660.413333pt;}
.yda{bottom:661.853333pt;}
.y5e{bottom:668.093333pt;}
.y1d{bottom:669.853333pt;}
.y187{bottom:672.733333pt;}
.y164{bottom:673.533333pt;}
.y113{bottom:676.093333pt;}
.y134{bottom:683.133333pt;}
.y5d{bottom:683.453333pt;}
.y1c{bottom:685.213333pt;}
.y186{bottom:688.093333pt;}
.y163{bottom:688.733333pt;}
.y112{bottom:691.453333pt;}
.y5c{bottom:698.813333pt;}
.y1b{bottom:700.573333pt;}
.y185{bottom:703.453333pt;}
.y162{bottom:704.093333pt;}
.y111{bottom:706.813333pt;}
.y5b{bottom:714.173333pt;}
.y1a{bottom:715.933333pt;}
.y184{bottom:718.813333pt;}
.y161{bottom:719.133333pt;}
.y110{bottom:722.173333pt;}
.y1cd{bottom:729.213333pt;}
.y5a{bottom:729.533333pt;}
.y19{bottom:731.133333pt;}
.y183{bottom:734.173333pt;}
.y160{bottom:734.813333pt;}
.y10f{bottom:737.373333pt;}
.yad{bottom:744.413333pt;}
.y59{bottom:744.733333pt;}
.y18{bottom:746.493333pt;}
.y182{bottom:749.373333pt;}
.y15f{bottom:750.173333pt;}
.y10e{bottom:752.733333pt;}
.y58{bottom:760.093333pt;}
.y17{bottom:761.853333pt;}
.y181{bottom:764.733333pt;}
.y15e{bottom:765.373333pt;}
.y10d{bottom:767.773333pt;}
.y57{bottom:775.133333pt;}
.y87{bottom:775.453333pt;}
.y16{bottom:776.893333pt;}
.y180{bottom:780.133333pt;}
.y15d{bottom:780.773333pt;}
.y10c{bottom:787.173333pt;}
.y56{bottom:790.853333pt;}
.y15{bottom:792.933333pt;}
.y17f{bottom:795.493333pt;}
.y15c{bottom:796.133333pt;}
.y133{bottom:805.893333pt;}
.y55{bottom:806.213333pt;}
.y10b{bottom:806.533333pt;}
.y14{bottom:808.613333pt;}
.y17e{bottom:810.853333pt;}
.y15b{bottom:811.493333pt;}
.yd9{bottom:821.093333pt;}
.y54{bottom:821.413333pt;}
.y13{bottom:823.813333pt;}
.y10a{bottom:825.893333pt;}
.y15a{bottom:826.853333pt;}
.y1c7{bottom:836.453333pt;}
.y53{bottom:836.773333pt;}
.y12{bottom:839.173333pt;}
.y159{bottom:842.213333pt;}
.y109{bottom:845.093333pt;}
.y52{bottom:852.133333pt;}
.y11{bottom:854.533333pt;}
.y158{bottom:857.413333pt;}
.y108{bottom:864.453333pt;}
.y51{bottom:867.493333pt;}
.y10{bottom:869.893333pt;}
.y155{bottom:872.453333pt;}
.y17c{bottom:879.813333pt;}
.y50{bottom:882.853333pt;}
.y107{bottom:883.813333pt;}
.yf{bottom:885.253333pt;}
.yd8{bottom:897.893333pt;}
.y4f{bottom:898.213333pt;}
.y17a{bottom:899.173333pt;}
.ye{bottom:901.253333pt;}
.y106{bottom:903.173333pt;}
.y154{bottom:907.173333pt;}
.y4e{bottom:913.093333pt;}
.y86{bottom:913.413333pt;}
.yd{bottom:916.613333pt;}
.y105{bottom:922.533333pt;}
.y4d{bottom:928.773333pt;}
.yc{bottom:931.813333pt;}
.y178{bottom:933.733333pt;}
.y132{bottom:943.813333pt;}
.y4c{bottom:944.133333pt;}
.yb{bottom:947.173333pt;}
.y4b{bottom:959.493333pt;}
.ya{bottom:962.533333pt;}
.y4a{bottom:974.853333pt;}
.y9{bottom:978.213333pt;}
.y175{bottom:983.813333pt;}
.y1cc{bottom:989.893333pt;}
.y49{bottom:990.213333pt;}
.y8{bottom:996.613333pt;}
.yac{bottom:1005.093333pt;}
.y48{bottom:1005.413333pt;}
.y7{bottom:1015.040000pt;}
.y1c6{bottom:1020.480000pt;}
.y47{bottom:1020.800000pt;}
.y6{bottom:1033.440000pt;}
.yb4{bottom:1035.840000pt;}
.y46{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.hb{height:15.200000pt;}
.ha{height:15.360000pt;}
.hc{height:15.392000pt;}
.h9{height:30.560000pt;}
.hd{height:30.720000pt;}
.h8{height:37.090625pt;}
.he{height:45.952000pt;}
.hf{height:46.080000pt;}
.h2{height:52.108438pt;}
.h5{height:52.134375pt;}
.h6{height:53.535000pt;}
.h7{height:54.598989pt;}
.h4{height:58.563750pt;}
.h3{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w35{width:44.160000pt;}
.w32{width:54.432000pt;}
.w34{width:54.560000pt;}
.w20{width:56.800000pt;}
.w36{width:70.912000pt;}
.w1c{width:87.552000pt;}
.w2f{width:90.112000pt;}
.w2{width:93.792000pt;}
.wb{width:93.952000pt;}
.w2d{width:97.600000pt;}
.w25{width:100.832000pt;}
.w2c{width:101.312000pt;}
.w24{width:102.432000pt;}
.w16{width:103.072000pt;}
.w1f{width:104.832000pt;}
.wf{width:110.432000pt;}
.w1d{width:116.032000pt;}
.w2e{width:119.872000pt;}
.w10{width:120.032000pt;}
.w12{width:120.992000pt;}
.w8{width:124.512000pt;}
.w33{width:124.672000pt;}
.w28{width:132.672000pt;}
.w17{width:132.832000pt;}
.w23{width:132.960000pt;}
.w2a{width:134.746667pt;}
.w14{width:135.546667pt;}
.w15{width:136.026667pt;}
.w1b{width:137.440000pt;}
.w19{width:138.586667pt;}
.w3{width:142.746667pt;}
.w4{width:143.066667pt;}
.w5{width:144.186667pt;}
.wd{width:144.666667pt;}
.w7{width:144.986667pt;}
.w2b{width:146.106667pt;}
.w11{width:152.826667pt;}
.w13{width:154.266667pt;}
.w26{width:156.506667pt;}
.wa{width:157.466667pt;}
.wc{width:157.626667pt;}
.w31{width:160.826667pt;}
.w6{width:167.866667pt;}
.w9{width:170.906667pt;}
.w30{width:178.426667pt;}
.w18{width:179.386667pt;}
.w27{width:180.026667pt;}
.we{width:185.306667pt;}
.w21{width:196.226667pt;}
.w1a{width:202.306667pt;}
.w29{width:224.866667pt;}
.w1e{width:336.226667pt;}
.w22{width:358.013333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:0.960000pt;}
.x1c{left:2.400000pt;}
.x25{left:4.480000pt;}
.x75{left:5.440000pt;}
.x35{left:6.400000pt;}
.x42{left:7.360000pt;}
.x50{left:9.280000pt;}
.x20{left:11.040000pt;}
.x27{left:12.000000pt;}
.x19{left:13.120000pt;}
.x3c{left:14.080000pt;}
.x38{left:15.360000pt;}
.x2b{left:17.280000pt;}
.x17{left:18.880000pt;}
.x6c{left:19.840000pt;}
.x24{left:22.080000pt;}
.x2d{left:24.160000pt;}
.x45{left:26.400000pt;}
.x2f{left:27.360000pt;}
.x2a{left:28.800000pt;}
.x55{left:30.560000pt;}
.x22{left:31.680000pt;}
.x23{left:33.120000pt;}
.x28{left:34.560000pt;}
.x40{left:36.000000pt;}
.x16{left:36.960000pt;}
.x39{left:38.720000pt;}
.x49{left:39.840000pt;}
.x62{left:41.312000pt;}
.x1a{left:43.040000pt;}
.x44{left:44.832000pt;}
.x64{left:45.800000pt;}
.x13{left:47.040000pt;}
.x5{left:48.000000pt;}
.x1f{left:50.400000pt;}
.x54{left:51.520000pt;}
.x4c{left:52.832000pt;}
.x4d{left:54.272000pt;}
.x1d{left:55.360000pt;}
.x4b{left:57.600000pt;}
.x21{left:59.680000pt;}
.x30{left:60.800000pt;}
.x6f{left:62.112000pt;}
.x43{left:64.640000pt;}
.x32{left:66.880000pt;}
.xf{left:72.000000pt;}
.x31{left:73.760000pt;}
.x36{left:76.800000pt;}
.x4a{left:78.080000pt;}
.x3a{left:80.960000pt;}
.x10{left:96.032000pt;}
.x5a{left:98.586667pt;}
.x5b{left:104.506667pt;}
.xd{left:124.192000pt;}
.x60{left:135.226667pt;}
.x15{left:142.906667pt;}
.x5c{left:160.826667pt;}
.xc{left:168.666667pt;}
.x3d{left:173.146667pt;}
.x69{left:183.706667pt;}
.x6{left:185.946667pt;}
.x63{left:205.626667pt;}
.xa{left:208.986667pt;}
.x4e{left:209.946667pt;}
.x68{left:211.546667pt;}
.x46{left:215.546667pt;}
.x3b{left:221.306667pt;}
.x3{left:226.266667pt;}
.x70{left:227.386667pt;}
.x77{left:230.746667pt;}
.x12{left:243.586667pt;}
.x4f{left:246.786667pt;}
.x26{left:249.506667pt;}
.x8{left:257.986667pt;}
.xe{left:264.866667pt;}
.x2{left:267.266667pt;}
.x61{left:276.706667pt;}
.x18{left:287.586667pt;}
.x29{left:289.986667pt;}
.x47{left:291.106667pt;}
.x56{left:293.666667pt;}
.x33{left:302.626667pt;}
.x1{left:306.786667pt;}
.x9{left:309.986667pt;}
.x3e{left:327.906667pt;}
.x6a{left:331.906667pt;}
.x7{left:348.066667pt;}
.x57{left:385.346667pt;}
.x51{left:386.306667pt;}
.x65{left:387.586667pt;}
.x71{left:390.306667pt;}
.x67{left:396.866667pt;}
.x5d{left:406.973333pt;}
.xb{left:410.813333pt;}
.x2c{left:416.573333pt;}
.x48{left:425.853333pt;}
.x1b{left:432.733333pt;}
.x6b{left:435.293333pt;}
.x72{left:446.813333pt;}
.x34{left:449.213333pt;}
.x3f{left:450.973333pt;}
.x58{left:492.093333pt;}
.x66{left:522.173333pt;}
.x6d{left:534.973333pt;}
.x5e{left:541.853333pt;}
.x52{left:545.693333pt;}
.x59{left:550.813333pt;}
.x73{left:573.413333pt;}
.x1e{left:579.013333pt;}
.x2e{left:589.573333pt;}
.x41{left:607.333333pt;}
.x74{left:629.893333pt;}
.x53{left:635.333333pt;}
.x37{left:636.613333pt;}
.x5f{left:646.213333pt;}
.x6e{left:656.933333pt;}
.x76{left:675.973333pt;}
.x78{left:701.093333pt;}
.x11{left:708.933333pt;}
.x4{left:721.893333pt;}
}




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