
    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_6d7320d4cd9e9610b084370c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_053b0298ac2c9044b813cd3d.woff2')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_2dfdce46dc35e02229e792cc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8a8cb88dc750bff48eebedc9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f75c5523832cbe96aa158114.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.855469;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_bb2c4cc4b7c890a683661cc5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v6{vertical-align:-12.960000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.924000px;}
.lse{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.567600px;}
.ls16{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.460200px;}
.ls7{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.334200px;}
.lsa{letter-spacing:-0.219000px;}
.ls17{letter-spacing:-0.193800px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.011520px;}
.ls10{letter-spacing:0.051840px;}
.ls1{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.184320px;}
.ls14{letter-spacing:0.284400px;}
.ls11{letter-spacing:0.328200px;}
.lsc{letter-spacing:0.334200px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.540000px;}
.lsf{letter-spacing:2.536560px;}
.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;}
}
.wsd{word-spacing:-63.688200px;}
.wsb{word-spacing:-63.411840px;}
.wsf{word-spacing:-63.371520px;}
.wse{word-spacing:-63.360000px;}
.wsc{word-spacing:-45.360000px;}
.ws6{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.174200px;}
.ws7{word-spacing:-16.145400px;}
.wsa{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.621000px;}
.ws4{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.220000px;}
.ws12{word-spacing:-14.026200px;}
.ws11{word-spacing:-13.860000px;}
.ws0{word-spacing:-10.440000px;}
.ws3{word-spacing:0.000000px;}
._10{margin-left:-5.180160px;}
._f{margin-left:-4.051200px;}
._9{margin-left:-3.047760px;}
._0{margin-left:-1.324800px;}
._3{width:1.054560px;}
._2{width:2.280960px;}
._1{width:3.795840px;}
._c{width:5.497920px;}
._b{width:6.693120px;}
._7{width:7.909440px;}
._5{width:9.083520px;}
._4{width:10.338480px;}
._e{width:11.790720px;}
._a{width:13.565520px;}
._d{width:15.168960px;}
._13{width:17.619840px;}
._15{width:19.233360px;}
._6{width:20.378160px;}
._16{width:22.037760px;}
._14{width:23.448960px;}
._11{width:25.237440px;}
._12{width:26.628960px;}
._8{width:30.857280px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.000000px;}
.fsb{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs9{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fsa{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs8{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:3.240000px;}
.yd9{bottom:3.420000px;}
.y13d{bottom:12.420000px;}
.ye5{bottom:12.465000px;}
.y12{bottom:14.400000px;}
.y19{bottom:21.240000px;}
.yde{bottom:21.420000px;}
.ydb{bottom:21.600000px;}
.ye3{bottom:21.645000px;}
.y2a{bottom:29.520000px;}
.ye0{bottom:30.600000px;}
.ye4{bottom:30.645000px;}
.y18{bottom:38.520000px;}
.ydc{bottom:39.600000px;}
.ye6{bottom:39.645000px;}
.y29{bottom:46.800000px;}
.y17{bottom:55.800000px;}
.ye1{bottom:57.780000px;}
.y28{bottom:63.900000px;}
.y31{bottom:73.080000px;}
.y16{bottom:73.110000px;}
.y27{bottom:81.180000px;}
.y30{bottom:90.360000px;}
.y15{bottom:90.390000px;}
.y1a{bottom:95.430000px;}
.y26{bottom:98.460000px;}
.y14{bottom:105.150000px;}
.y2f{bottom:107.640000px;}
.y25{bottom:115.740000px;}
.y2e{bottom:124.740000px;}
.y24{bottom:133.020000px;}
.y2d{bottom:142.020000px;}
.y32{bottom:147.240000px;}
.y23{bottom:150.300000px;}
.y2c{bottom:156.960000px;}
.y178{bottom:157.680000px;}
.yd6{bottom:162.210000px;}
.y87{bottom:163.110000px;}
.y3f{bottom:164.550000px;}
.y75{bottom:166.170000px;}
.y22{bottom:167.400000px;}
.y10c{bottom:168.510000px;}
.ya5{bottom:169.770000px;}
.y152{bottom:171.570000px;}
.y177{bottom:175.890000px;}
.y203{bottom:176.430000px;}
.yd5{bottom:180.390000px;}
.y86{bottom:182.010000px;}
.y12c{bottom:182.730000px;}
.y3e{bottom:183.630000px;}
.y21{bottom:184.680000px;}
.y74{bottom:185.070000px;}
.y10b{bottom:186.510000px;}
.y151{bottom:189.750000px;}
.y1a4{bottom:190.290000px;}
.y202{bottom:192.810000px;}
.y176{bottom:193.890000px;}
.ya4{bottom:197.670000px;}
.yd4{bottom:198.390000px;}
.y12b{bottom:200.730000px;}
.y85{bottom:200.910000px;}
.y1d5{bottom:201.810000px;}
.y20{bottom:201.960000px;}
.y3d{bottom:202.530000px;}
.y10a{bottom:204.690000px;}
.y1a3{bottom:206.670000px;}
.y150{bottom:207.750000px;}
.y73{bottom:208.470000px;}
.y175{bottom:212.070000px;}
.y201{bottom:213.690000px;}
.yd3{bottom:216.570000px;}
.y1d4{bottom:218.190000px;}
.y12a{bottom:218.910000px;}
.y1f{bottom:219.240000px;}
.y84{bottom:219.990000px;}
.y3c{bottom:221.430000px;}
.y109{bottom:222.690000px;}
.ya3{bottom:225.570000px;}
.y14f{bottom:225.930000px;}
.y72{bottom:227.550000px;}
.y200{bottom:230.070000px;}
.yd2{bottom:234.570000px;}
.y1e{bottom:236.550000px;}
.y129{bottom:236.910000px;}
.y83{bottom:238.890000px;}
.y174{bottom:239.430000px;}
.y3b{bottom:240.510000px;}
.y108{bottom:240.870000px;}
.ya2{bottom:243.750000px;}
.y14e{bottom:243.930000px;}
.y1ff{bottom:246.450000px;}
.y71{bottom:246.630000px;}
.yd1{bottom:252.750000px;}
.y1d{bottom:253.830000px;}
.y128{bottom:255.090000px;}
.y1d3{bottom:255.450000px;}
.y82{bottom:257.970000px;}
.y107{bottom:259.050000px;}
.y3a{bottom:259.410000px;}
.y1a2{bottom:260.310000px;}
.ya1{bottom:261.750000px;}
.y14d{bottom:262.110000px;}
.y70{bottom:265.530000px;}
.y173{bottom:267.150000px;}
.y1fe{bottom:267.330000px;}
.y1c{bottom:268.590000px;}
.yd0{bottom:270.930000px;}
.y1d2{bottom:271.830000px;}
.y219{bottom:272.910000px;}
.y127{bottom:273.270000px;}
.y81{bottom:276.870000px;}
.y106{bottom:277.050000px;}
.ya0{bottom:279.930000px;}
.y14c{bottom:280.290000px;}
.y1a1{bottom:281.190000px;}
.y39{bottom:282.810000px;}
.y1fd{bottom:283.710000px;}
.y6f{bottom:284.610000px;}
.y172{bottom:285.150000px;}
.y1d1{bottom:288.210000px;}
.ycf{bottom:288.930000px;}
.y126{bottom:291.270000px;}
.y105{bottom:295.230000px;}
.y80{bottom:295.770000px;}
.y218{bottom:297.210000px;}
.y1a0{bottom:297.570000px;}
.y9f{bottom:298.110000px;}
.y14b{bottom:298.290000px;}
.y38{bottom:301.890000px;}
.y171{bottom:303.330000px;}
.y6e{bottom:303.510000px;}
.y1fc{bottom:304.590000px;}
.yce{bottom:307.110000px;}
.y1d0{bottom:309.090000px;}
.y125{bottom:309.450000px;}
.y217{bottom:313.590000px;}
.y19f{bottom:313.950000px;}
.y7f{bottom:314.850000px;}
.y9e{bottom:316.110000px;}
.y14a{bottom:316.470000px;}
.y37{bottom:320.790000px;}
.y1fb{bottom:320.970000px;}
.y170{bottom:321.510000px;}
.y104{bottom:322.230000px;}
.y6d{bottom:322.410000px;}
.ycd{bottom:325.290000px;}
.y1cf{bottom:325.470000px;}
.y124{bottom:327.630000px;}
.y216{bottom:329.970000px;}
.y7e{bottom:333.750000px;}
.y9d{bottom:334.290000px;}
.y149{bottom:334.470000px;}
.y19e{bottom:334.830000px;}
.y1fa{bottom:337.350000px;}
.y16f{bottom:339.510000px;}
.y36{bottom:339.870000px;}
.y103{bottom:340.410000px;}
.y6c{bottom:341.490000px;}
.y1ce{bottom:341.850000px;}
.ycc{bottom:343.290000px;}
.y123{bottom:345.630000px;}
.y215{bottom:350.850000px;}
.y19d{bottom:351.210000px;}
.y9c{bottom:352.290000px;}
.y148{bottom:352.650000px;}
.y7d{bottom:352.830000px;}
.y16e{bottom:357.690000px;}
.y1f9{bottom:358.230000px;}
.y102{bottom:358.590000px;}
.y35{bottom:358.770000px;}
.y6b{bottom:360.390000px;}
.ycb{bottom:361.470000px;}
.y1cd{bottom:362.730000px;}
.y122{bottom:363.810000px;}
.y214{bottom:367.230000px;}
.y19c{bottom:367.590000px;}
.y9b{bottom:370.470000px;}
.y147{bottom:370.830000px;}
.y7c{bottom:371.730000px;}
.y1f8{bottom:374.610000px;}
.y16d{bottom:376.410000px;}
.y101{bottom:376.590000px;}
.y1cc{bottom:379.110000px;}
.y6a{bottom:379.470000px;}
.y213{bottom:383.610000px;}
.y19b{bottom:383.970000px;}
.y34{bottom:386.670000px;}
.y9a{bottom:388.650000px;}
.y146{bottom:388.830000px;}
.y7b{bottom:390.630000px;}
.y121{bottom:390.810000px;}
.y1f7{bottom:390.990000px;}
.y100{bottom:394.770000px;}
.y16c{bottom:395.130000px;}
.yca{bottom:397.650000px;}
.y69{bottom:398.370000px;}
.y1cb{bottom:399.990000px;}
.y212{bottom:404.490000px;}
.y19a{bottom:404.850000px;}
.y33{bottom:405.390000px;}
.y99{bottom:406.695000px;}
.y145{bottom:407.055000px;}
.y7a{bottom:409.755000px;}
.y1f6{bottom:411.915000px;}
.yff{bottom:412.995000px;}
.y16b{bottom:413.535000px;}
.y120{bottom:414.615000px;}
.yc9{bottom:415.875000px;}
.y1ca{bottom:416.415000px;}
.y68{bottom:417.315000px;}
.y211{bottom:420.915000px;}
.y199{bottom:421.275000px;}
.y1b{bottom:421.635000px;}
.y98{bottom:424.875000px;}
.y144{bottom:425.235000px;}
.y1f5{bottom:428.295000px;}
.y79{bottom:428.655000px;}
.yfe{bottom:430.995000px;}
.y16a{bottom:432.255000px;}
.yc8{bottom:433.875000px;}
.y67{bottom:436.395000px;}
.y1c9{bottom:437.295000px;}
.y198{bottom:437.655000px;}
.y210{bottom:441.795000px;}
.y97{bottom:443.055000px;}
.y143{bottom:443.235000px;}
.y1f4{bottom:444.675000px;}
.yfd{bottom:449.175000px;}
.y169{bottom:450.435000px;}
.y78{bottom:451.875000px;}
.y1c8{bottom:453.675000px;}
.y66{bottom:455.295000px;}
.y20f{bottom:458.175000px;}
.y197{bottom:458.535000px;}
.y96{bottom:461.055000px;}
.y142{bottom:461.415000px;}
.y1f3{bottom:465.555000px;}
.yfc{bottom:467.175000px;}
.y168{bottom:468.975000px;}
.y77{bottom:471.135000px;}
.y65{bottom:474.375000px;}
.y1c7{bottom:474.555000px;}
.y196{bottom:474.915000px;}
.y141{bottom:479.415000px;}
.y1f2{bottom:481.935000px;}
.yfb{bottom:485.355000px;}
.y167{bottom:487.695000px;}
.y95{bottom:488.235000px;}
.yc7{bottom:488.955000px;}
.y1c6{bottom:490.935000px;}
.y20e{bottom:495.435000px;}
.y195{bottom:495.795000px;}
.y64{bottom:497.595000px;}
.y1f1{bottom:502.815000px;}
.yfa{bottom:503.535000px;}
.y166{bottom:505.875000px;}
.yc6{bottom:507.135000px;}
.y1c5{bottom:511.815000px;}
.y194{bottom:512.355000px;}
.y140{bottom:515.775000px;}
.y94{bottom:516.135000px;}
.y63{bottom:516.675000px;}
.y1f0{bottom:519.195000px;}
.yf9{bottom:521.535000px;}
.y165{bottom:523.875000px;}
.yc5{bottom:525.315000px;}
.y1c4{bottom:528.195000px;}
.y193{bottom:528.735000px;}
.y93{bottom:530.895000px;}
.y13f{bottom:533.775000px;}
.y1ef{bottom:535.575000px;}
.y62{bottom:535.755000px;}
.yf8{bottom:539.715000px;}
.y164{bottom:542.595000px;}
.yc4{bottom:543.315000px;}
.y1c3{bottom:544.575000px;}
.y20d{bottom:549.075000px;}
.y192{bottom:549.615000px;}
.y61{bottom:554.655000px;}
.y1ee{bottom:556.455000px;}
.yf7{bottom:557.895000px;}
.y163{bottom:561.315000px;}
.yc3{bottom:561.495000px;}
.y1c2{bottom:565.455000px;}
.y191{bottom:565.995000px;}
.y13e{bottom:567.255000px;}
.y1ed{bottom:572.835000px;}
.y60{bottom:573.735000px;}
.yf6{bottom:575.895000px;}
.yc2{bottom:579.495000px;}
.y162{bottom:580.035000px;}
.y1c1{bottom:581.835000px;}
.y190{bottom:582.375000px;}
.y13{bottom:585.075000px;}
.y13c{bottom:585.435000px;}
.y1ec{bottom:589.215000px;}
.y5f{bottom:592.635000px;}
.yf5{bottom:594.075000px;}
.yc1{bottom:597.675000px;}
.y1c0{bottom:598.215000px;}
.y161{bottom:598.755000px;}
.y20c{bottom:602.715000px;}
.y18f{bottom:603.255000px;}
.y1eb{bottom:610.095000px;}
.y5e{bottom:611.535000px;}
.yf4{bottom:612.075000px;}
.y1bf{bottom:614.595000px;}
.yc0{bottom:615.855000px;}
.y160{bottom:617.475000px;}
.y20b{bottom:619.095000px;}
.y18e{bottom:619.635000px;}
.y13b{bottom:621.615000px;}
.y1ea{bottom:626.475000px;}
.yf3{bottom:630.255000px;}
.y5d{bottom:630.615000px;}
.ybf{bottom:633.855000px;}
.y15f{bottom:635.475000px;}
.y18d{bottom:636.015000px;}
.y13a{bottom:639.615000px;}
.y1e9{bottom:643.035000px;}
.yf2{bottom:648.435000px;}
.y5c{bottom:649.515000px;}
.ybe{bottom:652.035000px;}
.y15e{bottom:653.685000px;}
.y20a{bottom:656.565000px;}
.y18c{bottom:656.925000px;}
.y139{bottom:658.545000px;}
.y1e8{bottom:663.945000px;}
.yf1{bottom:666.465000px;}
.y5b{bottom:668.625000px;}
.ybd{bottom:670.065000px;}
.y15d{bottom:671.685000px;}
.y1be{bottom:672.945000px;}
.y18b{bottom:673.305000px;}
.y1e7{bottom:680.325000px;}
.y138{bottom:680.865000px;}
.yf0{bottom:684.645000px;}
.y5a{bottom:687.525000px;}
.ybc{bottom:688.245000px;}
.y1bd{bottom:689.325000px;}
.y18a{bottom:689.685000px;}
.y15c{bottom:689.865000px;}
.y1e6{bottom:696.705000px;}
.y11{bottom:696.885000px;}
.yef{bottom:702.645000px;}
.y1bc{bottom:705.705000px;}
.y59{bottom:706.425000px;}
.y137{bottom:707.865000px;}
.y15b{bottom:708.045000px;}
.y209{bottom:710.205000px;}
.y189{bottom:710.565000px;}
.y1e5{bottom:717.585000px;}
.yee{bottom:720.825000px;}
.ybb{bottom:724.425000px;}
.y136{bottom:726.045000px;}
.y1bb{bottom:726.585000px;}
.y188{bottom:726.945000px;}
.y58{bottom:729.825000px;}
.y1e4{bottom:733.965000px;}
.y10{bottom:741.165000px;}
.yba{bottom:742.605000px;}
.y1ba{bottom:742.965000px;}
.y11f{bottom:744.225000px;}
.y187{bottom:747.825000px;}
.yed{bottom:748.005000px;}
.y57{bottom:748.905000px;}
.y1e3{bottom:750.345000px;}
.yf{bottom:758.445000px;}
.y135{bottom:762.225000px;}
.y11e{bottom:762.405000px;}
.y1b9{bottom:763.845000px;}
.y186{bottom:764.205000px;}
.y56{bottom:767.985000px;}
.yb9{bottom:769.785000px;}
.y1e2{bottom:771.225000px;}
.ye{bottom:775.725000px;}
.yec{bottom:775.905000px;}
.y1b8{bottom:780.225000px;}
.y134{bottom:780.405000px;}
.y11d{bottom:780.585000px;}
.y55{bottom:786.885000px;}
.y1e1{bottom:787.605000px;}
.yd{bottom:793.185000px;}
.yeb{bottom:794.085000px;}
.y1b7{bottom:796.605000px;}
.yb8{bottom:797.685000px;}
.y11c{bottom:798.585000px;}
.y208{bottom:801.105000px;}
.y185{bottom:801.465000px;}
.y1e0{bottom:803.985000px;}
.y54{bottom:805.965000px;}
.yea{bottom:812.085000px;}
.yb7{bottom:815.865000px;}
.yc{bottom:816.405000px;}
.y133{bottom:816.585000px;}
.y11b{bottom:816.765000px;}
.y1b6{bottom:817.485000px;}
.y184{bottom:817.845000px;}
.y53{bottom:824.865000px;}
.yb{bottom:829.365000px;}
.ye9{bottom:830.265000px;}
.yb6{bottom:833.865000px;}
.y183{bottom:834.225000px;}
.y132{bottom:834.765000px;}
.y11a{bottom:834.945000px;}
.y207{bottom:838.365000px;}
.y1df{bottom:841.245000px;}
.y76{bottom:843.585000px;}
.y52{bottom:843.765000px;}
.ye8{bottom:848.445000px;}
.y1b5{bottom:850.245000px;}
.yb5{bottom:852.045000px;}
.ya{bottom:852.765000px;}
.y131{bottom:852.945000px;}
.y206{bottom:854.745000px;}
.y182{bottom:855.105000px;}
.y119{bottom:861.945000px;}
.y1de{bottom:862.125000px;}
.y51{bottom:862.845000px;}
.y9{bottom:865.545000px;}
.ye7{bottom:866.445000px;}
.yb4{bottom:870.045000px;}
.y130{bottom:870.945000px;}
.y1b4{bottom:871.125000px;}
.y181{bottom:871.485000px;}
.y92{bottom:877.785000px;}
.y1dd{bottom:878.505000px;}
.y50{bottom:881.745000px;}
.y1b3{bottom:887.505000px;}
.y180{bottom:887.865000px;}
.yb3{bottom:888.225000px;}
.y8{bottom:888.945000px;}
.y12f{bottom:889.125000px;}
.ye2{bottom:890.925000px;}
.y1dc{bottom:894.885000px;}
.y91{bottom:895.965000px;}
.y4f{bottom:900.870000px;}
.y1b2{bottom:903.930000px;}
.yb2{bottom:906.450000px;}
.y118{bottom:907.170000px;}
.y205{bottom:908.430000px;}
.y17f{bottom:908.790000px;}
.y90{bottom:914.010000px;}
.y1db{bottom:915.810000px;}
.y4e{bottom:919.770000px;}
.yb1{bottom:924.450000px;}
.y1b1{bottom:924.810000px;}
.y17e{bottom:925.170000px;}
.y117{bottom:925.350000px;}
.y7{bottom:926.430000px;}
.y8f{bottom:932.190000px;}
.y15a{bottom:934.350000px;}
.y4d{bottom:938.670000px;}
.y1b0{bottom:941.190000px;}
.y17d{bottom:941.550000px;}
.yb0{bottom:942.630000px;}
.y116{bottom:943.530000px;}
.ydf{bottom:946.050000px;}
.y8e{bottom:950.370000px;}
.y159{bottom:952.530000px;}
.y1da{bottom:953.070000px;}
.y1af{bottom:957.570000px;}
.y4c{bottom:957.750000px;}
.yaf{bottom:960.630000px;}
.y115{bottom:961.530000px;}
.y6{bottom:962.070000px;}
.y1d9{bottom:969.450000px;}
.y158{bottom:970.530000px;}
.y17c{bottom:976.470000px;}
.y4b{bottom:976.650000px;}
.y8d{bottom:977.550000px;}
.y1ae{bottom:978.450000px;}
.yae{bottom:978.810000px;}
.y114{bottom:979.710000px;}
.y157{bottom:988.710000px;}
.y1d8{bottom:990.330000px;}
.y1ad{bottom:994.830000px;}
.y4a{bottom:995.730000px;}
.yad{bottom:996.990000px;}
.y113{bottom:997.890000px;}
.y5{bottom:1003.830000px;}
.y17b{bottom:1004.370000px;}
.y1d7{bottom:1006.710000px;}
.y156{bottom:1006.890000px;}
.y1ac{bottom:1011.210000px;}
.y8c{bottom:1014.450000px;}
.y49{bottom:1014.630000px;}
.yac{bottom:1014.990000px;}
.y112{bottom:1015.890000px;}
.ydd{bottom:1019.310000px;}
.y155{bottom:1024.890000px;}
.y1ab{bottom:1027.590000px;}
.y204{bottom:1032.090000px;}
.y17a{bottom:1032.450000px;}
.yab{bottom:1033.170000px;}
.y48{bottom:1033.530000px;}
.y111{bottom:1034.070000px;}
.y4{bottom:1038.570000px;}
.y154{bottom:1043.070000px;}
.y1d6{bottom:1043.970000px;}
.y1aa{bottom:1048.470000px;}
.yaa{bottom:1051.350000px;}
.y110{bottom:1052.070000px;}
.y8b{bottom:1052.610000px;}
.yda{bottom:1056.210000px;}
.y47{bottom:1056.930000px;}
.y179{bottom:1060.350000px;}
.y153{bottom:1061.070000px;}
.y1a9{bottom:1064.850000px;}
.ya9{bottom:1069.350000px;}
.y12e{bottom:1070.250000px;}
.y8a{bottom:1071.510000px;}
.y46{bottom:1076.010000px;}
.y10f{bottom:1079.250000px;}
.y1a8{bottom:1081.230000px;}
.ya8{bottom:1087.530000px;}
.y12d{bottom:1088.430000px;}
.y89{bottom:1090.590000px;}
.y45{bottom:1095.090000px;}
.y10e{bottom:1097.430000px;}
.y1a7{bottom:1102.110000px;}
.ya7{bottom:1105.530000px;}
.yd8{bottom:1111.290000px;}
.y88{bottom:1113.810000px;}
.y44{bottom:1113.990000px;}
.y10d{bottom:1115.430000px;}
.y1a6{bottom:1118.490000px;}
.ya6{bottom:1132.710000px;}
.y43{bottom:1132.890000px;}
.yd7{bottom:1133.610000px;}
.y1a5{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y42{bottom:1169.460000px;}
.y41{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y40{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hd{height:17.657227px;}
.h1b{height:18.000000px;}
.h15{height:18.180000px;}
.h1a{height:18.216000px;}
.h17{height:36.180000px;}
.ha{height:40.320000px;}
.h6{height:41.304375px;}
.h5{height:48.802500px;}
.h16{height:54.360000px;}
.h19{height:54.396000px;}
.h1c{height:55.824609px;}
.h1e{height:56.212031px;}
.h14{height:56.801250px;}
.h1d{height:57.324375px;}
.he{height:58.621992px;}
.h8{height:58.651172px;}
.h9{height:60.226875px;}
.h7{height:62.184375px;}
.h13{height:63.855000px;}
.h2{height:65.010937px;}
.hb{height:66.757500px;}
.h11{height:70.664062px;}
.h18{height:72.360000px;}
.h4{height:72.562500px;}
.h3{height:96.508125px;}
.hc{height:109.476000px;}
.h12{height:153.341016px;}
.h10{height:161.280000px;}
.hf{height:272.910000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.wb{width:71.820000px;}
.w6{width:148.140000px;}
.wa{width:169.410000px;}
.wc{width:169.950000px;}
.w8{width:177.150000px;}
.w3{width:237.990000px;}
.w9{width:257.970000px;}
.w7{width:364.575000px;}
.w5{width:406.875000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x5{left:108.035987px;}
.x18{left:116.136000px;}
.x6{left:122.796000px;}
.x12{left:124.955987px;}
.x2{left:131.255987px;}
.xc{left:174.809987px;}
.xa{left:185.250000px;}
.x16{left:205.589987px;}
.x11{left:241.049987px;}
.x13{left:256.170000px;}
.xf{left:260.849987px;}
.x17{left:284.294987px;}
.x3{left:314.354987px;}
.x8{left:360.795000px;}
.x19{left:374.115000px;}
.xd{left:375.374987px;}
.x9{left:378.435000px;}
.x1a{left:543.525000px;}
.x1b{left:615.345000px;}
.x14{left:620.745000px;}
.x15{left:655.844987px;}
.x10{left:723.389987px;}
.xe{left:732.389987px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x4{left:781.349987px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v6{vertical-align:-11.520000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.821333pt;}
.lse{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.504533pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.409067pt;}
.ls7{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.297067pt;}
.lsa{letter-spacing:-0.194667pt;}
.ls17{letter-spacing:-0.172267pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.010240pt;}
.ls10{letter-spacing:0.046080pt;}
.ls1{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.163840pt;}
.ls14{letter-spacing:0.252800pt;}
.ls11{letter-spacing:0.291733pt;}
.lsc{letter-spacing:0.297067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.480000pt;}
.lsf{letter-spacing:2.254720pt;}
.wsd{word-spacing:-56.611733pt;}
.wsb{word-spacing:-56.366080pt;}
.wsf{word-spacing:-56.330240pt;}
.wse{word-spacing:-56.320000pt;}
.wsc{word-spacing:-40.320000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.377067pt;}
.ws7{word-spacing:-14.351467pt;}
.wsa{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.885333pt;}
.ws4{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.640000pt;}
.ws12{word-spacing:-12.467733pt;}
.ws11{word-spacing:-12.320000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws3{word-spacing:0.000000pt;}
._10{margin-left:-4.604587pt;}
._f{margin-left:-3.601067pt;}
._9{margin-left:-2.709120pt;}
._0{margin-left:-1.177600pt;}
._3{width:0.937387pt;}
._2{width:2.027520pt;}
._1{width:3.374080pt;}
._c{width:4.887040pt;}
._b{width:5.949440pt;}
._7{width:7.030613pt;}
._5{width:8.074240pt;}
._4{width:9.189760pt;}
._e{width:10.480640pt;}
._a{width:12.058240pt;}
._d{width:13.483520pt;}
._13{width:15.662080pt;}
._15{width:17.096320pt;}
._6{width:18.113920pt;}
._16{width:19.589120pt;}
._14{width:20.843520pt;}
._11{width:22.433280pt;}
._12{width:23.670187pt;}
._8{width:27.428693pt;}
.fs7{font-size:16.000000pt;}
.fsb{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs9{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fsa{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs8{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:2.880000pt;}
.yd9{bottom:3.040000pt;}
.y13d{bottom:11.040000pt;}
.ye5{bottom:11.080000pt;}
.y12{bottom:12.800000pt;}
.y19{bottom:18.880000pt;}
.yde{bottom:19.040000pt;}
.ydb{bottom:19.200000pt;}
.ye3{bottom:19.240000pt;}
.y2a{bottom:26.240000pt;}
.ye0{bottom:27.200000pt;}
.ye4{bottom:27.240000pt;}
.y18{bottom:34.240000pt;}
.ydc{bottom:35.200000pt;}
.ye6{bottom:35.240000pt;}
.y29{bottom:41.600000pt;}
.y17{bottom:49.600000pt;}
.ye1{bottom:51.360000pt;}
.y28{bottom:56.800000pt;}
.y31{bottom:64.960000pt;}
.y16{bottom:64.986667pt;}
.y27{bottom:72.160000pt;}
.y30{bottom:80.320000pt;}
.y15{bottom:80.346667pt;}
.y1a{bottom:84.826667pt;}
.y26{bottom:87.520000pt;}
.y14{bottom:93.466667pt;}
.y2f{bottom:95.680000pt;}
.y25{bottom:102.880000pt;}
.y2e{bottom:110.880000pt;}
.y24{bottom:118.240000pt;}
.y2d{bottom:126.240000pt;}
.y32{bottom:130.880000pt;}
.y23{bottom:133.600000pt;}
.y2c{bottom:139.520000pt;}
.y178{bottom:140.160000pt;}
.yd6{bottom:144.186667pt;}
.y87{bottom:144.986667pt;}
.y3f{bottom:146.266667pt;}
.y75{bottom:147.706667pt;}
.y22{bottom:148.800000pt;}
.y10c{bottom:149.786667pt;}
.ya5{bottom:150.906667pt;}
.y152{bottom:152.506667pt;}
.y177{bottom:156.346667pt;}
.y203{bottom:156.826667pt;}
.yd5{bottom:160.346667pt;}
.y86{bottom:161.786667pt;}
.y12c{bottom:162.426667pt;}
.y3e{bottom:163.226667pt;}
.y21{bottom:164.160000pt;}
.y74{bottom:164.506667pt;}
.y10b{bottom:165.786667pt;}
.y151{bottom:168.666667pt;}
.y1a4{bottom:169.146667pt;}
.y202{bottom:171.386667pt;}
.y176{bottom:172.346667pt;}
.ya4{bottom:175.706667pt;}
.yd4{bottom:176.346667pt;}
.y12b{bottom:178.426667pt;}
.y85{bottom:178.586667pt;}
.y1d5{bottom:179.386667pt;}
.y20{bottom:179.520000pt;}
.y3d{bottom:180.026667pt;}
.y10a{bottom:181.946667pt;}
.y1a3{bottom:183.706667pt;}
.y150{bottom:184.666667pt;}
.y73{bottom:185.306667pt;}
.y175{bottom:188.506667pt;}
.y201{bottom:189.946667pt;}
.yd3{bottom:192.506667pt;}
.y1d4{bottom:193.946667pt;}
.y12a{bottom:194.586667pt;}
.y1f{bottom:194.880000pt;}
.y84{bottom:195.546667pt;}
.y3c{bottom:196.826667pt;}
.y109{bottom:197.946667pt;}
.ya3{bottom:200.506667pt;}
.y14f{bottom:200.826667pt;}
.y72{bottom:202.266667pt;}
.y200{bottom:204.506667pt;}
.yd2{bottom:208.506667pt;}
.y1e{bottom:210.266667pt;}
.y129{bottom:210.586667pt;}
.y83{bottom:212.346667pt;}
.y174{bottom:212.826667pt;}
.y3b{bottom:213.786667pt;}
.y108{bottom:214.106667pt;}
.ya2{bottom:216.666667pt;}
.y14e{bottom:216.826667pt;}
.y1ff{bottom:219.066667pt;}
.y71{bottom:219.226667pt;}
.yd1{bottom:224.666667pt;}
.y1d{bottom:225.626667pt;}
.y128{bottom:226.746667pt;}
.y1d3{bottom:227.066667pt;}
.y82{bottom:229.306667pt;}
.y107{bottom:230.266667pt;}
.y3a{bottom:230.586667pt;}
.y1a2{bottom:231.386667pt;}
.ya1{bottom:232.666667pt;}
.y14d{bottom:232.986667pt;}
.y70{bottom:236.026667pt;}
.y173{bottom:237.466667pt;}
.y1fe{bottom:237.626667pt;}
.y1c{bottom:238.746667pt;}
.yd0{bottom:240.826667pt;}
.y1d2{bottom:241.626667pt;}
.y219{bottom:242.586667pt;}
.y127{bottom:242.906667pt;}
.y81{bottom:246.106667pt;}
.y106{bottom:246.266667pt;}
.ya0{bottom:248.826667pt;}
.y14c{bottom:249.146667pt;}
.y1a1{bottom:249.946667pt;}
.y39{bottom:251.386667pt;}
.y1fd{bottom:252.186667pt;}
.y6f{bottom:252.986667pt;}
.y172{bottom:253.466667pt;}
.y1d1{bottom:256.186667pt;}
.ycf{bottom:256.826667pt;}
.y126{bottom:258.906667pt;}
.y105{bottom:262.426667pt;}
.y80{bottom:262.906667pt;}
.y218{bottom:264.186667pt;}
.y1a0{bottom:264.506667pt;}
.y9f{bottom:264.986667pt;}
.y14b{bottom:265.146667pt;}
.y38{bottom:268.346667pt;}
.y171{bottom:269.626667pt;}
.y6e{bottom:269.786667pt;}
.y1fc{bottom:270.746667pt;}
.yce{bottom:272.986667pt;}
.y1d0{bottom:274.746667pt;}
.y125{bottom:275.066667pt;}
.y217{bottom:278.746667pt;}
.y19f{bottom:279.066667pt;}
.y7f{bottom:279.866667pt;}
.y9e{bottom:280.986667pt;}
.y14a{bottom:281.306667pt;}
.y37{bottom:285.146667pt;}
.y1fb{bottom:285.306667pt;}
.y170{bottom:285.786667pt;}
.y104{bottom:286.426667pt;}
.y6d{bottom:286.586667pt;}
.ycd{bottom:289.146667pt;}
.y1cf{bottom:289.306667pt;}
.y124{bottom:291.226667pt;}
.y216{bottom:293.306667pt;}
.y7e{bottom:296.666667pt;}
.y9d{bottom:297.146667pt;}
.y149{bottom:297.306667pt;}
.y19e{bottom:297.626667pt;}
.y1fa{bottom:299.866667pt;}
.y16f{bottom:301.786667pt;}
.y36{bottom:302.106667pt;}
.y103{bottom:302.586667pt;}
.y6c{bottom:303.546667pt;}
.y1ce{bottom:303.866667pt;}
.ycc{bottom:305.146667pt;}
.y123{bottom:307.226667pt;}
.y215{bottom:311.866667pt;}
.y19d{bottom:312.186667pt;}
.y9c{bottom:313.146667pt;}
.y148{bottom:313.466667pt;}
.y7d{bottom:313.626667pt;}
.y16e{bottom:317.946667pt;}
.y1f9{bottom:318.426667pt;}
.y102{bottom:318.746667pt;}
.y35{bottom:318.906667pt;}
.y6b{bottom:320.346667pt;}
.ycb{bottom:321.306667pt;}
.y1cd{bottom:322.426667pt;}
.y122{bottom:323.386667pt;}
.y214{bottom:326.426667pt;}
.y19c{bottom:326.746667pt;}
.y9b{bottom:329.306667pt;}
.y147{bottom:329.626667pt;}
.y7c{bottom:330.426667pt;}
.y1f8{bottom:332.986667pt;}
.y16d{bottom:334.586667pt;}
.y101{bottom:334.746667pt;}
.y1cc{bottom:336.986667pt;}
.y6a{bottom:337.306667pt;}
.y213{bottom:340.986667pt;}
.y19b{bottom:341.306667pt;}
.y34{bottom:343.706667pt;}
.y9a{bottom:345.466667pt;}
.y146{bottom:345.626667pt;}
.y7b{bottom:347.226667pt;}
.y121{bottom:347.386667pt;}
.y1f7{bottom:347.546667pt;}
.y100{bottom:350.906667pt;}
.y16c{bottom:351.226667pt;}
.yca{bottom:353.466667pt;}
.y69{bottom:354.106667pt;}
.y1cb{bottom:355.546667pt;}
.y212{bottom:359.546667pt;}
.y19a{bottom:359.866667pt;}
.y33{bottom:360.346667pt;}
.y99{bottom:361.506667pt;}
.y145{bottom:361.826667pt;}
.y7a{bottom:364.226667pt;}
.y1f6{bottom:366.146667pt;}
.yff{bottom:367.106667pt;}
.y16b{bottom:367.586667pt;}
.y120{bottom:368.546667pt;}
.yc9{bottom:369.666667pt;}
.y1ca{bottom:370.146667pt;}
.y68{bottom:370.946667pt;}
.y211{bottom:374.146667pt;}
.y199{bottom:374.466667pt;}
.y1b{bottom:374.786667pt;}
.y98{bottom:377.666667pt;}
.y144{bottom:377.986667pt;}
.y1f5{bottom:380.706667pt;}
.y79{bottom:381.026667pt;}
.yfe{bottom:383.106667pt;}
.y16a{bottom:384.226667pt;}
.yc8{bottom:385.666667pt;}
.y67{bottom:387.906667pt;}
.y1c9{bottom:388.706667pt;}
.y198{bottom:389.026667pt;}
.y210{bottom:392.706667pt;}
.y97{bottom:393.826667pt;}
.y143{bottom:393.986667pt;}
.y1f4{bottom:395.266667pt;}
.yfd{bottom:399.266667pt;}
.y169{bottom:400.386667pt;}
.y78{bottom:401.666667pt;}
.y1c8{bottom:403.266667pt;}
.y66{bottom:404.706667pt;}
.y20f{bottom:407.266667pt;}
.y197{bottom:407.586667pt;}
.y96{bottom:409.826667pt;}
.y142{bottom:410.146667pt;}
.y1f3{bottom:413.826667pt;}
.yfc{bottom:415.266667pt;}
.y168{bottom:416.866667pt;}
.y77{bottom:418.786667pt;}
.y65{bottom:421.666667pt;}
.y1c7{bottom:421.826667pt;}
.y196{bottom:422.146667pt;}
.y141{bottom:426.146667pt;}
.y1f2{bottom:428.386667pt;}
.yfb{bottom:431.426667pt;}
.y167{bottom:433.506667pt;}
.y95{bottom:433.986667pt;}
.yc7{bottom:434.626667pt;}
.y1c6{bottom:436.386667pt;}
.y20e{bottom:440.386667pt;}
.y195{bottom:440.706667pt;}
.y64{bottom:442.306667pt;}
.y1f1{bottom:446.946667pt;}
.yfa{bottom:447.586667pt;}
.y166{bottom:449.666667pt;}
.yc6{bottom:450.786667pt;}
.y1c5{bottom:454.946667pt;}
.y194{bottom:455.426667pt;}
.y140{bottom:458.466667pt;}
.y94{bottom:458.786667pt;}
.y63{bottom:459.266667pt;}
.y1f0{bottom:461.506667pt;}
.yf9{bottom:463.586667pt;}
.y165{bottom:465.666667pt;}
.yc5{bottom:466.946667pt;}
.y1c4{bottom:469.506667pt;}
.y193{bottom:469.986667pt;}
.y93{bottom:471.906667pt;}
.y13f{bottom:474.466667pt;}
.y1ef{bottom:476.066667pt;}
.y62{bottom:476.226667pt;}
.yf8{bottom:479.746667pt;}
.y164{bottom:482.306667pt;}
.yc4{bottom:482.946667pt;}
.y1c3{bottom:484.066667pt;}
.y20d{bottom:488.066667pt;}
.y192{bottom:488.546667pt;}
.y61{bottom:493.026667pt;}
.y1ee{bottom:494.626667pt;}
.yf7{bottom:495.906667pt;}
.y163{bottom:498.946667pt;}
.yc3{bottom:499.106667pt;}
.y1c2{bottom:502.626667pt;}
.y191{bottom:503.106667pt;}
.y13e{bottom:504.226667pt;}
.y1ed{bottom:509.186667pt;}
.y60{bottom:509.986667pt;}
.yf6{bottom:511.906667pt;}
.yc2{bottom:515.106667pt;}
.y162{bottom:515.586667pt;}
.y1c1{bottom:517.186667pt;}
.y190{bottom:517.666667pt;}
.y13{bottom:520.066667pt;}
.y13c{bottom:520.386667pt;}
.y1ec{bottom:523.746667pt;}
.y5f{bottom:526.786667pt;}
.yf5{bottom:528.066667pt;}
.yc1{bottom:531.266667pt;}
.y1c0{bottom:531.746667pt;}
.y161{bottom:532.226667pt;}
.y20c{bottom:535.746667pt;}
.y18f{bottom:536.226667pt;}
.y1eb{bottom:542.306667pt;}
.y5e{bottom:543.586667pt;}
.yf4{bottom:544.066667pt;}
.y1bf{bottom:546.306667pt;}
.yc0{bottom:547.426667pt;}
.y160{bottom:548.866667pt;}
.y20b{bottom:550.306667pt;}
.y18e{bottom:550.786667pt;}
.y13b{bottom:552.546667pt;}
.y1ea{bottom:556.866667pt;}
.yf3{bottom:560.226667pt;}
.y5d{bottom:560.546667pt;}
.ybf{bottom:563.426667pt;}
.y15f{bottom:564.866667pt;}
.y18d{bottom:565.346667pt;}
.y13a{bottom:568.546667pt;}
.y1e9{bottom:571.586667pt;}
.yf2{bottom:576.386667pt;}
.y5c{bottom:577.346667pt;}
.ybe{bottom:579.586667pt;}
.y15e{bottom:581.053333pt;}
.y20a{bottom:583.613333pt;}
.y18c{bottom:583.933333pt;}
.y139{bottom:585.373333pt;}
.y1e8{bottom:590.173333pt;}
.yf1{bottom:592.413333pt;}
.y5b{bottom:594.333333pt;}
.ybd{bottom:595.613333pt;}
.y15d{bottom:597.053333pt;}
.y1be{bottom:598.173333pt;}
.y18b{bottom:598.493333pt;}
.y1e7{bottom:604.733333pt;}
.y138{bottom:605.213333pt;}
.yf0{bottom:608.573333pt;}
.y5a{bottom:611.133333pt;}
.ybc{bottom:611.773333pt;}
.y1bd{bottom:612.733333pt;}
.y18a{bottom:613.053333pt;}
.y15c{bottom:613.213333pt;}
.y1e6{bottom:619.293333pt;}
.y11{bottom:619.453333pt;}
.yef{bottom:624.573333pt;}
.y1bc{bottom:627.293333pt;}
.y59{bottom:627.933333pt;}
.y137{bottom:629.213333pt;}
.y15b{bottom:629.373333pt;}
.y209{bottom:631.293333pt;}
.y189{bottom:631.613333pt;}
.y1e5{bottom:637.853333pt;}
.yee{bottom:640.733333pt;}
.ybb{bottom:643.933333pt;}
.y136{bottom:645.373333pt;}
.y1bb{bottom:645.853333pt;}
.y188{bottom:646.173333pt;}
.y58{bottom:648.733333pt;}
.y1e4{bottom:652.413333pt;}
.y10{bottom:658.813333pt;}
.yba{bottom:660.093333pt;}
.y1ba{bottom:660.413333pt;}
.y11f{bottom:661.533333pt;}
.y187{bottom:664.733333pt;}
.yed{bottom:664.893333pt;}
.y57{bottom:665.693333pt;}
.y1e3{bottom:666.973333pt;}
.yf{bottom:674.173333pt;}
.y135{bottom:677.533333pt;}
.y11e{bottom:677.693333pt;}
.y1b9{bottom:678.973333pt;}
.y186{bottom:679.293333pt;}
.y56{bottom:682.653333pt;}
.yb9{bottom:684.253333pt;}
.y1e2{bottom:685.533333pt;}
.ye{bottom:689.533333pt;}
.yec{bottom:689.693333pt;}
.y1b8{bottom:693.533333pt;}
.y134{bottom:693.693333pt;}
.y11d{bottom:693.853333pt;}
.y55{bottom:699.453333pt;}
.y1e1{bottom:700.093333pt;}
.yd{bottom:705.053333pt;}
.yeb{bottom:705.853333pt;}
.y1b7{bottom:708.093333pt;}
.yb8{bottom:709.053333pt;}
.y11c{bottom:709.853333pt;}
.y208{bottom:712.093333pt;}
.y185{bottom:712.413333pt;}
.y1e0{bottom:714.653333pt;}
.y54{bottom:716.413333pt;}
.yea{bottom:721.853333pt;}
.yb7{bottom:725.213333pt;}
.yc{bottom:725.693333pt;}
.y133{bottom:725.853333pt;}
.y11b{bottom:726.013333pt;}
.y1b6{bottom:726.653333pt;}
.y184{bottom:726.973333pt;}
.y53{bottom:733.213333pt;}
.yb{bottom:737.213333pt;}
.ye9{bottom:738.013333pt;}
.yb6{bottom:741.213333pt;}
.y183{bottom:741.533333pt;}
.y132{bottom:742.013333pt;}
.y11a{bottom:742.173333pt;}
.y207{bottom:745.213333pt;}
.y1df{bottom:747.773333pt;}
.y76{bottom:749.853333pt;}
.y52{bottom:750.013333pt;}
.ye8{bottom:754.173333pt;}
.y1b5{bottom:755.773333pt;}
.yb5{bottom:757.373333pt;}
.ya{bottom:758.013333pt;}
.y131{bottom:758.173333pt;}
.y206{bottom:759.773333pt;}
.y182{bottom:760.093333pt;}
.y119{bottom:766.173333pt;}
.y1de{bottom:766.333333pt;}
.y51{bottom:766.973333pt;}
.y9{bottom:769.373333pt;}
.ye7{bottom:770.173333pt;}
.yb4{bottom:773.373333pt;}
.y130{bottom:774.173333pt;}
.y1b4{bottom:774.333333pt;}
.y181{bottom:774.653333pt;}
.y92{bottom:780.253333pt;}
.y1dd{bottom:780.893333pt;}
.y50{bottom:783.773333pt;}
.y1b3{bottom:788.893333pt;}
.y180{bottom:789.213333pt;}
.yb3{bottom:789.533333pt;}
.y8{bottom:790.173333pt;}
.y12f{bottom:790.333333pt;}
.ye2{bottom:791.933333pt;}
.y1dc{bottom:795.453333pt;}
.y91{bottom:796.413333pt;}
.y4f{bottom:800.773333pt;}
.y1b2{bottom:803.493333pt;}
.yb2{bottom:805.733333pt;}
.y118{bottom:806.373333pt;}
.y205{bottom:807.493333pt;}
.y17f{bottom:807.813333pt;}
.y90{bottom:812.453333pt;}
.y1db{bottom:814.053333pt;}
.y4e{bottom:817.573333pt;}
.yb1{bottom:821.733333pt;}
.y1b1{bottom:822.053333pt;}
.y17e{bottom:822.373333pt;}
.y117{bottom:822.533333pt;}
.y7{bottom:823.493333pt;}
.y8f{bottom:828.613333pt;}
.y15a{bottom:830.533333pt;}
.y4d{bottom:834.373333pt;}
.y1b0{bottom:836.613333pt;}
.y17d{bottom:836.933333pt;}
.yb0{bottom:837.893333pt;}
.y116{bottom:838.693333pt;}
.ydf{bottom:840.933333pt;}
.y8e{bottom:844.773333pt;}
.y159{bottom:846.693333pt;}
.y1da{bottom:847.173333pt;}
.y1af{bottom:851.173333pt;}
.y4c{bottom:851.333333pt;}
.yaf{bottom:853.893333pt;}
.y115{bottom:854.693333pt;}
.y6{bottom:855.173333pt;}
.y1d9{bottom:861.733333pt;}
.y158{bottom:862.693333pt;}
.y17c{bottom:867.973333pt;}
.y4b{bottom:868.133333pt;}
.y8d{bottom:868.933333pt;}
.y1ae{bottom:869.733333pt;}
.yae{bottom:870.053333pt;}
.y114{bottom:870.853333pt;}
.y157{bottom:878.853333pt;}
.y1d8{bottom:880.293333pt;}
.y1ad{bottom:884.293333pt;}
.y4a{bottom:885.093333pt;}
.yad{bottom:886.213333pt;}
.y113{bottom:887.013333pt;}
.y5{bottom:892.293333pt;}
.y17b{bottom:892.773333pt;}
.y1d7{bottom:894.853333pt;}
.y156{bottom:895.013333pt;}
.y1ac{bottom:898.853333pt;}
.y8c{bottom:901.733333pt;}
.y49{bottom:901.893333pt;}
.yac{bottom:902.213333pt;}
.y112{bottom:903.013333pt;}
.ydd{bottom:906.053333pt;}
.y155{bottom:911.013333pt;}
.y1ab{bottom:913.413333pt;}
.y204{bottom:917.413333pt;}
.y17a{bottom:917.733333pt;}
.yab{bottom:918.373333pt;}
.y48{bottom:918.693333pt;}
.y111{bottom:919.173333pt;}
.y4{bottom:923.173333pt;}
.y154{bottom:927.173333pt;}
.y1d6{bottom:927.973333pt;}
.y1aa{bottom:931.973333pt;}
.yaa{bottom:934.533333pt;}
.y110{bottom:935.173333pt;}
.y8b{bottom:935.653333pt;}
.yda{bottom:938.853333pt;}
.y47{bottom:939.493333pt;}
.y179{bottom:942.533333pt;}
.y153{bottom:943.173333pt;}
.y1a9{bottom:946.533333pt;}
.ya9{bottom:950.533333pt;}
.y12e{bottom:951.333333pt;}
.y8a{bottom:952.453333pt;}
.y46{bottom:956.453333pt;}
.y10f{bottom:959.333333pt;}
.y1a8{bottom:961.093333pt;}
.ya8{bottom:966.693333pt;}
.y12d{bottom:967.493333pt;}
.y89{bottom:969.413333pt;}
.y45{bottom:973.413333pt;}
.y10e{bottom:975.493333pt;}
.y1a7{bottom:979.653333pt;}
.ya7{bottom:982.693333pt;}
.yd8{bottom:987.813333pt;}
.y88{bottom:990.053333pt;}
.y44{bottom:990.213333pt;}
.y10d{bottom:991.493333pt;}
.y1a6{bottom:994.213333pt;}
.ya6{bottom:1006.853333pt;}
.y43{bottom:1007.013333pt;}
.yd7{bottom:1007.653333pt;}
.y1a5{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y42{bottom:1039.520000pt;}
.y41{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y40{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hd{height:15.695312pt;}
.h1b{height:16.000000pt;}
.h15{height:16.160000pt;}
.h1a{height:16.192000pt;}
.h17{height:32.160000pt;}
.ha{height:35.840000pt;}
.h6{height:36.715000pt;}
.h5{height:43.380000pt;}
.h16{height:48.320000pt;}
.h19{height:48.352000pt;}
.h1c{height:49.621875pt;}
.h1e{height:49.966250pt;}
.h14{height:50.490000pt;}
.h1d{height:50.955000pt;}
.he{height:52.108438pt;}
.h8{height:52.134375pt;}
.h9{height:53.535000pt;}
.h7{height:55.275000pt;}
.h13{height:56.760000pt;}
.h2{height:57.787500pt;}
.hb{height:59.340000pt;}
.h11{height:62.812500pt;}
.h18{height:64.320000pt;}
.h4{height:64.500000pt;}
.h3{height:85.785000pt;}
.hc{height:97.312000pt;}
.h12{height:136.303125pt;}
.h10{height:143.360000pt;}
.hf{height:242.586667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.wb{width:63.840000pt;}
.w6{width:131.680000pt;}
.wa{width:150.586667pt;}
.wc{width:151.066667pt;}
.w8{width:157.466667pt;}
.w3{width:211.546667pt;}
.w9{width:229.306667pt;}
.w7{width:324.066667pt;}
.w5{width:361.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x5{left:96.031988pt;}
.x18{left:103.232000pt;}
.x6{left:109.152000pt;}
.x12{left:111.071988pt;}
.x2{left:116.671988pt;}
.xc{left:155.386655pt;}
.xa{left:164.666667pt;}
.x16{left:182.746655pt;}
.x11{left:214.266655pt;}
.x13{left:227.706667pt;}
.xf{left:231.866655pt;}
.x17{left:252.706655pt;}
.x3{left:279.426655pt;}
.x8{left:320.706667pt;}
.x19{left:332.546667pt;}
.xd{left:333.666655pt;}
.x9{left:336.386667pt;}
.x1a{left:483.133333pt;}
.x1b{left:546.973333pt;}
.x14{left:551.773333pt;}
.x15{left:582.973322pt;}
.x10{left:643.013322pt;}
.xe{left:651.013322pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x4{left:694.533322pt;}
}




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