
    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_ea3ee2c081ec11708c2233c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_22f913d1a14a62c9fe8c96c0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d6742b0adf017068550ab876.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.929688;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_406931b373c93f964d2d2aba.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_fee8bea0b26098cda94c9ac4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_06756af709cbcd098ccf3cf4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e116510af85ce6a022e7dafe.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_49ae4c30271cdf0d0a5b2510.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_54287a35ecaace926a579e8a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.152400px;}
.ls7{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.119520px;}
.lse{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.148800px;}
.ls1{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.150000px;}
.lsa{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.256200px;}
.lsb{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.696000px;}
.ls6{letter-spacing:0.720000px;}
.ls4{letter-spacing:8.460000px;}
.ls3{letter-spacing:9.900000px;}
.ls12{letter-spacing:25.920000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-20.340000px;}
.wsa{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.614080px;}
.ws6{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.407600px;}
.ws5{word-spacing:-16.272000px;}
.ws0{word-spacing:-15.226440px;}
.ws1{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.296000px;}
.ws4{word-spacing:-13.147200px;}
.ws9{word-spacing:0.000000px;}
._5{margin-left:-3.912000px;}
._4{margin-left:-2.293920px;}
._0{margin-left:-1.032480px;}
._1{width:1.189200px;}
._2{width:2.483280px;}
._7{width:4.063680px;}
._e{width:5.136960px;}
._a{width:6.223440px;}
._9{width:7.888320px;}
._d{width:8.971680px;}
._6{width:10.006320px;}
._3{width:11.149920px;}
._c{width:12.662400px;}
._8{width:13.744800px;}
._12{width:14.955600px;}
._b{width:16.104000px;}
._1a{width:17.637600px;}
._19{width:18.679680px;}
._11{width:19.945440px;}
._10{width:21.528000px;}
._f{width:22.992480px;}
._18{width:24.408000px;}
._14{width:25.692720px;}
._13{width:27.360000px;}
._15{width:29.160000px;}
._21{width:30.456000px;}
._22{width:31.464000px;}
._20{width:33.432720px;}
._1b{width:34.560000px;}
._16{width:36.360000px;}
._17{width:37.512000px;}
._24{width:38.628000px;}
._23{width:39.636000px;}
._1c{width:41.863680px;}
._1f{width:42.952320px;}
._1e{width:43.956000px;}
._1d{width:48.168000px;}
._25{width:53.496480px;}
._26{width:54.598560px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:81.360000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.600000px;}
.y3{bottom:77.760000px;}
.y30{bottom:111.240000px;}
.y1b4{bottom:114.300000px;}
.y19e{bottom:117.000000px;}
.y1fc{bottom:121.320000px;}
.y15a{bottom:123.300000px;}
.y5b{bottom:125.100000px;}
.yea{bottom:125.640000px;}
.y116{bottom:126.900000px;}
.y135{bottom:127.440000px;}
.y12e{bottom:127.800000px;}
.y2f{bottom:129.060000px;}
.y88{bottom:132.300000px;}
.y18c{bottom:132.660000px;}
.y1b3{bottom:135.000000px;}
.y19d{bottom:137.700000px;}
.y1fb{bottom:142.020000px;}
.y159{bottom:144.000000px;}
.ye9{bottom:144.720000px;}
.ya8{bottom:145.800000px;}
.y174{bottom:146.700000px;}
.y115{bottom:147.600000px;}
.y12d{bottom:148.500000px;}
.y1cc{bottom:153.000000px;}
.y18b{bottom:153.360000px;}
.y2e{bottom:158.220000px;}
.y19c{bottom:158.400000px;}
.y143{bottom:161.100000px;}
.yc1{bottom:162.540000px;}
.ye8{bottom:163.650000px;}
.y5a{bottom:163.830000px;}
.y158{bottom:164.730000px;}
.ya7{bottom:166.530000px;}
.y173{bottom:167.430000px;}
.y114{bottom:168.330000px;}
.y12c{bottom:169.230000px;}
.y87{bottom:171.030000px;}
.y1fa{bottom:171.750000px;}
.y1cb{bottom:173.730000px;}
.y18a{bottom:174.090000px;}
.y2d{bottom:174.990000px;}
.y142{bottom:181.830000px;}
.ye7{bottom:182.550000px;}
.yc0{bottom:183.270000px;}
.ycd{bottom:184.530000px;}
.y157{bottom:185.430000px;}
.ya6{bottom:187.230000px;}
.y172{bottom:188.130000px;}
.y113{bottom:189.030000px;}
.y12b{bottom:189.930000px;}
.y2c{bottom:190.470000px;}
.y1f9{bottom:192.450000px;}
.y1ca{bottom:194.430000px;}
.y189{bottom:194.790000px;}
.y86{bottom:200.730000px;}
.ye6{bottom:201.630000px;}
.y59{bottom:202.530000px;}
.ybf{bottom:203.970000px;}
.y156{bottom:206.130000px;}
.ya5{bottom:207.930000px;}
.y19b{bottom:208.830000px;}
.y112{bottom:209.730000px;}
.y12a{bottom:210.630000px;}
.y2b{bottom:212.070000px;}
.y1c9{bottom:215.130000px;}
.y188{bottom:215.490000px;}
.y85{bottom:221.430000px;}
.y1f8{bottom:222.150000px;}
.y2a{bottom:222.870000px;}
.y58{bottom:223.230000px;}
.ybe{bottom:224.670000px;}
.y134{bottom:225.930000px;}
.y155{bottom:226.830000px;}
.ya4{bottom:228.630000px;}
.y19a{bottom:229.530000px;}
.y129{bottom:231.330000px;}
.y1c8{bottom:235.830000px;}
.ye5{bottom:239.070000px;}
.y84{bottom:242.130000px;}
.y1f7{bottom:242.850000px;}
.y57{bottom:243.930000px;}
.ybd{bottom:245.370000px;}
.y133{bottom:246.630000px;}
.y154{bottom:247.530000px;}
.y111{bottom:247.890000px;}
.ya3{bottom:249.330000px;}
.y199{bottom:250.230000px;}
.y187{bottom:253.650000px;}
.y1c7{bottom:256.530000px;}
.ye4{bottom:259.770000px;}
.y29{bottom:260.670000px;}
.y83{bottom:262.830000px;}
.y56{bottom:264.630000px;}
.ybc{bottom:266.070000px;}
.y110{bottom:266.970000px;}
.y132{bottom:267.330000px;}
.y153{bottom:268.230000px;}
.y128{bottom:270.030000px;}
.y186{bottom:272.550000px;}
.y1b2{bottom:277.230000px;}
.y198{bottom:279.930000px;}
.y28{bottom:281.370000px;}
.y82{bottom:283.530000px;}
.y55{bottom:285.330000px;}
.y10f{bottom:285.870000px;}
.ybb{bottom:286.770000px;}
.ya2{bottom:288.030000px;}
.y152{bottom:288.930000px;}
.y127{bottom:290.730000px;}
.y185{bottom:291.630000px;}
.y1f6{bottom:293.250000px;}
.y1b1{bottom:297.930000px;}
.ye3{bottom:298.470000px;}
.y197{bottom:300.630000px;}
.y27{bottom:302.070000px;}
.y81{bottom:304.230000px;}
.y10e{bottom:304.950000px;}
.y54{bottom:306.030000px;}
.y1d7{bottom:306.930000px;}
.yba{bottom:307.470000px;}
.ya1{bottom:308.730000px;}
.y151{bottom:309.630000px;}
.y184{bottom:310.530000px;}
.y126{bottom:311.430000px;}
.y1b0{bottom:318.630000px;}
.ye2{bottom:319.170000px;}
.y196{bottom:321.330000px;}
.y26{bottom:322.770000px;}
.y1f5{bottom:322.950000px;}
.y10d{bottom:323.850000px;}
.y80{bottom:324.930000px;}
.y53{bottom:326.730000px;}
.y1d6{bottom:327.630000px;}
.ya0{bottom:329.430000px;}
.y183{bottom:329.610000px;}
.y150{bottom:330.330000px;}
.y125{bottom:332.130000px;}
.yb9{bottom:337.170000px;}
.y1af{bottom:339.330000px;}
.ye1{bottom:339.870000px;}
.y195{bottom:342.030000px;}
.y10c{bottom:342.750000px;}
.y25{bottom:343.470000px;}
.ycc{bottom:344.730000px;}
.y7f{bottom:345.630000px;}
.y52{bottom:347.430000px;}
.y1c6{bottom:348.330000px;}
.y182{bottom:348.510000px;}
.y9f{bottom:350.130000px;}
.y14f{bottom:351.030000px;}
.y1f4{bottom:352.650000px;}
.yb8{bottom:357.870000px;}
.y1ae{bottom:360.030000px;}
.ye0{bottom:360.570000px;}
.y10b{bottom:361.830000px;}
.y194{bottom:362.730000px;}
.y24{bottom:364.170000px;}
.ycb{bottom:365.430000px;}
.y7e{bottom:366.330000px;}
.y181{bottom:367.410000px;}
.y1c5{bottom:369.030000px;}
.y9e{bottom:370.830000px;}
.y14e{bottom:371.730000px;}
.y10a{bottom:380.730000px;}
.ydf{bottom:381.270000px;}
.y1f3{bottom:382.350000px;}
.y193{bottom:383.430000px;}
.y23{bottom:384.870000px;}
.y51{bottom:386.130000px;}
.y180{bottom:386.490000px;}
.y7d{bottom:387.030000px;}
.y131{bottom:388.830000px;}
.y171{bottom:389.730000px;}
.y9d{bottom:391.530000px;}
.y14d{bottom:392.430000px;}
.yb7{bottom:396.030000px;}
.y1ad{bottom:401.430000px;}
.yde{bottom:401.970000px;}
.y1f2{bottom:403.050000px;}
.y17f{bottom:405.390000px;}
.y22{bottom:405.570000px;}
.y50{bottom:406.830000px;}
.y7c{bottom:407.775000px;}
.y130{bottom:409.575000px;}
.y170{bottom:410.475000px;}
.y124{bottom:412.275000px;}
.y14c{bottom:413.175000px;}
.yb6{bottom:415.155000px;}
.y109{bottom:418.215000px;}
.y1ac{bottom:422.175000px;}
.ydd{bottom:422.715000px;}
.y21{bottom:426.315000px;}
.y4f{bottom:427.575000px;}
.y7b{bottom:428.475000px;}
.y139{bottom:429.915000px;}
.y9c{bottom:430.275000px;}
.y16f{bottom:431.175000px;}
.y1f1{bottom:432.795000px;}
.y123{bottom:432.975000px;}
.y14b{bottom:433.875000px;}
.yb5{bottom:434.055000px;}
.y108{bottom:438.915000px;}
.y1ab{bottom:442.875000px;}
.ydc{bottom:443.415000px;}
.y20{bottom:447.015000px;}
.y4e{bottom:448.275000px;}
.y7a{bottom:449.175000px;}
.y9b{bottom:450.975000px;}
.y16e{bottom:451.875000px;}
.yb4{bottom:452.955000px;}
.y1f0{bottom:453.495000px;}
.y122{bottom:453.675000px;}
.y17e{bottom:454.575000px;}
.y1d5{bottom:460.875000px;}
.y14a{bottom:463.575000px;}
.ydb{bottom:464.115000px;}
.y1f{bottom:466.995000px;}
.y4d{bottom:468.975000px;}
.y79{bottom:469.875000px;}
.y9a{bottom:471.675000px;}
.yb3{bottom:472.035000px;}
.y16d{bottom:472.575000px;}
.y1ef{bottom:474.195000px;}
.y121{bottom:474.375000px;}
.y17d{bottom:475.275000px;}
.y107{bottom:477.615000px;}
.y1d4{bottom:481.575000px;}
.y149{bottom:484.275000px;}
.yca{bottom:486.975000px;}
.y138{bottom:489.675000px;}
.y78{bottom:490.575000px;}
.yb2{bottom:490.935000px;}
.y99{bottom:492.375000px;}
.y1aa{bottom:493.275000px;}
.y17c{bottom:495.975000px;}
.y106{bottom:498.315000px;}
.y1c4{bottom:502.275000px;}
.yda{bottom:502.455000px;}
.y1ee{bottom:503.895000px;}
.y148{bottom:504.975000px;}
.y1e{bottom:505.695000px;}
.y4c{bottom:507.675000px;}
.y12f{bottom:510.015000px;}
.y137{bottom:510.375000px;}
.y77{bottom:511.275000px;}
.y120{bottom:513.075000px;}
.y1a9{bottom:513.975000px;}
.y17b{bottom:516.675000px;}
.y105{bottom:519.015000px;}
.y1c3{bottom:522.975000px;}
.y1ed{bottom:524.595000px;}
.y147{bottom:525.675000px;}
.y4b{bottom:528.375000px;}
.y98{bottom:531.075000px;}
.y1d3{bottom:531.615000px;}
.y76{bottom:531.975000px;}
.y11f{bottom:533.775000px;}
.y1a8{bottom:534.675000px;}
.y17a{bottom:537.375000px;}
.y104{bottom:539.715000px;}
.yd9{bottom:541.155000px;}
.y1c2{bottom:543.675000px;}
.y146{bottom:546.375000px;}
.y1d{bottom:547.635000px;}
.y4a{bottom:549.075000px;}
.y97{bottom:551.775000px;}
.y1d2{bottom:552.315000px;}
.y75{bottom:552.675000px;}
.y1ec{bottom:554.295000px;}
.y11e{bottom:554.475000px;}
.y1a7{bottom:555.375000px;}
.y179{bottom:558.075000px;}
.y1c1{bottom:564.375000px;}
.y145{bottom:567.075000px;}
.y1c{bottom:567.615000px;}
.y49{bottom:569.775000px;}
.y96{bottom:572.475000px;}
.y74{bottom:573.375000px;}
.y1eb{bottom:574.995000px;}
.y11d{bottom:575.175000px;}
.y103{bottom:578.415000px;}
.y178{bottom:578.775000px;}
.yd8{bottom:580.215000px;}
.y1d1{bottom:582.375000px;}
.y1b{bottom:584.895000px;}
.y1a6{bottom:585.075000px;}
.y141{bottom:587.775000px;}
.y48{bottom:590.475000px;}
.y16c{bottom:591.375000px;}
.y95{bottom:593.175000px;}
.y73{bottom:594.075000px;}
.y1ea{bottom:595.695000px;}
.y102{bottom:599.115000px;}
.yd7{bottom:600.915000px;}
.y1a{bottom:602.175000px;}
.y1d0{bottom:603.075000px;}
.y1a5{bottom:605.775000px;}
.y177{bottom:608.115000px;}
.y140{bottom:608.475000px;}
.y47{bottom:611.175000px;}
.y16b{bottom:612.075000px;}
.y11c{bottom:613.875000px;}
.y72{bottom:614.775000px;}
.y19{bottom:619.275000px;}
.y101{bottom:619.815000px;}
.yd6{bottom:621.615000px;}
.y1cf{bottom:623.775000px;}
.y1e9{bottom:625.395000px;}
.y1a4{bottom:626.475000px;}
.yb1{bottom:629.175000px;}
.y94{bottom:631.875000px;}
.y16a{bottom:632.775000px;}
.y11b{bottom:634.575000px;}
.y71{bottom:635.475000px;}
.y192{bottom:638.175000px;}
.y100{bottom:640.515000px;}
.yd5{bottom:642.315000px;}
.y1ce{bottom:644.475000px;}
.y1e8{bottom:646.095000px;}
.y176{bottom:647.175000px;}
.y46{bottom:649.875000px;}
.y93{bottom:652.605000px;}
.y169{bottom:653.505000px;}
.y11a{bottom:655.305000px;}
.y70{bottom:656.205000px;}
.y191{bottom:658.905000px;}
.y18{bottom:659.805000px;}
.yff{bottom:661.245000px;}
.yd4{bottom:663.045000px;}
.y1cd{bottom:665.205000px;}
.y175{bottom:667.905000px;}
.y45{bottom:670.605000px;}
.y92{bottom:673.305000px;}
.y168{bottom:674.205000px;}
.y1e7{bottom:675.645000px;}
.y119{bottom:676.005000px;}
.y6f{bottom:676.905000px;}
.y190{bottom:679.605000px;}
.y1c0{bottom:685.905000px;}
.y144{bottom:688.605000px;}
.y44{bottom:691.305000px;}
.y91{bottom:694.005000px;}
.y167{bottom:694.905000px;}
.y1e6{bottom:696.345000px;}
.y118{bottom:696.705000px;}
.y6e{bottom:697.605000px;}
.yfe{bottom:699.945000px;}
.y18f{bottom:700.305000px;}
.y17{bottom:701.025000px;}
.yd3{bottom:701.205000px;}
.y1bf{bottom:706.605000px;}
.y13f{bottom:709.305000px;}
.y43{bottom:712.005000px;}
.y90{bottom:714.705000px;}
.y166{bottom:715.605000px;}
.y16{bottom:718.305000px;}
.yd2{bottom:720.285000px;}
.yfd{bottom:720.645000px;}
.y1e5{bottom:726.045000px;}
.y1be{bottom:727.305000px;}
.y13e{bottom:730.005000px;}
.y42{bottom:732.705000px;}
.y117{bottom:735.045000px;}
.y8f{bottom:735.405000px;}
.y15{bottom:735.585000px;}
.y165{bottom:736.305000px;}
.y6d{bottom:739.005000px;}
.yd1{bottom:739.185000px;}
.yfc{bottom:741.345000px;}
.y1bd{bottom:748.005000px;}
.yb0{bottom:750.705000px;}
.y14{bottom:752.865000px;}
.y41{bottom:753.405000px;}
.y1e4{bottom:755.745000px;}
.y8e{bottom:756.105000px;}
.y164{bottom:757.005000px;}
.yd0{bottom:758.085000px;}
.y6c{bottom:759.705000px;}
.y1bc{bottom:768.705000px;}
.y13{bottom:771.225000px;}
.yaf{bottom:771.405000px;}
.y40{bottom:774.105000px;}
.y8d{bottom:776.805000px;}
.ycf{bottom:777.165000px;}
.yfb{bottom:780.045000px;}
.y6b{bottom:780.405000px;}
.y1e3{bottom:785.445000px;}
.y163{bottom:786.705000px;}
.y1bb{bottom:789.405000px;}
.yae{bottom:792.105000px;}
.y3f{bottom:794.805000px;}
.yce{bottom:796.065000px;}
.yfa{bottom:800.745000px;}
.y6a{bottom:801.105000px;}
.y1e2{bottom:806.145000px;}
.y162{bottom:807.405000px;}
.y1ba{bottom:810.105000px;}
.y11{bottom:812.085000px;}
.yad{bottom:812.805000px;}
.y3e{bottom:815.505000px;}
.y12{bottom:820.365000px;}
.yf9{bottom:821.445000px;}
.y69{bottom:821.805000px;}
.y161{bottom:828.105000px;}
.y1b9{bottom:830.805000px;}
.yac{bottom:833.505000px;}
.y1e1{bottom:835.845000px;}
.y8c{bottom:836.205000px;}
.y10{bottom:841.965000px;}
.yf8{bottom:842.145000px;}
.y68{bottom:842.505000px;}
.y160{bottom:848.805000px;}
.y1a3{bottom:851.505000px;}
.y3d{bottom:854.205000px;}
.y1e0{bottom:856.545000px;}
.y8b{bottom:856.905000px;}
.yf7{bottom:862.845000px;}
.y67{bottom:863.205000px;}
.y15f{bottom:869.505000px;}
.yf{bottom:871.665000px;}
.y13d{bottom:872.205000px;}
.y3c{bottom:874.905000px;}
.y8a{bottom:877.605000px;}
.y1b8{bottom:881.205000px;}
.yf6{bottom:883.545000px;}
.y66{bottom:883.905000px;}
.y1df{bottom:886.245000px;}
.y15e{bottom:890.205000px;}
.yc9{bottom:892.905000px;}
.y3b{bottom:895.605000px;}
.ye{bottom:901.770000px;}
.y1b7{bottom:901.950000px;}
.yf5{bottom:904.290000px;}
.y65{bottom:904.650000px;}
.y15d{bottom:910.950000px;}
.yc8{bottom:913.650000px;}
.y1de{bottom:915.990000px;}
.y3a{bottom:916.350000px;}
.y1b6{bottom:922.650000px;}
.yf4{bottom:924.990000px;}
.y64{bottom:925.350000px;}
.y15c{bottom:931.650000px;}
.yab{bottom:934.350000px;}
.yd{bottom:935.430000px;}
.y39{bottom:937.050000px;}
.y1b5{bottom:943.350000px;}
.y1dd{bottom:945.690000px;}
.y63{bottom:946.050000px;}
.y15b{bottom:952.350000px;}
.yaa{bottom:955.050000px;}
.y38{bottom:957.750000px;}
.yf3{bottom:963.690000px;}
.y1a2{bottom:964.050000px;}
.y1dc{bottom:966.390000px;}
.y62{bottom:966.750000px;}
.yc{bottom:971.250000px;}
.y13c{bottom:973.050000px;}
.ya9{bottom:975.750000px;}
.y37{bottom:978.450000px;}
.yf2{bottom:984.390000px;}
.y1a1{bottom:984.750000px;}
.y61{bottom:987.450000px;}
.y13b{bottom:993.750000px;}
.y1db{bottom:996.090000px;}
.y89{bottom:996.450000px;}
.y136{bottom:999.150000px;}
.yb{bottom:1004.190000px;}
.yf1{bottom:1005.090000px;}
.y1a0{bottom:1005.450000px;}
.y60{bottom:1008.150000px;}
.y13a{bottom:1014.450000px;}
.y1da{bottom:1016.790000px;}
.y36{bottom:1017.150000px;}
.yf0{bottom:1025.790000px;}
.y19f{bottom:1026.150000px;}
.y5f{bottom:1028.850000px;}
.yc7{bottom:1035.150000px;}
.y35{bottom:1037.850000px;}
.y1d9{bottom:1046.490000px;}
.ya{bottom:1046.670000px;}
.y1fe{bottom:1046.850000px;}
.y5e{bottom:1049.550000px;}
.yc6{bottom:1055.850000px;}
.y34{bottom:1058.550000px;}
.yef{bottom:1063.950000px;}
.y9{bottom:1065.930000px;}
.y18e{bottom:1067.190000px;}
.y1fd{bottom:1067.550000px;}
.y5d{bottom:1070.250000px;}
.yc5{bottom:1076.550000px;}
.y33{bottom:1079.250000px;}
.yee{bottom:1083.030000px;}
.y8{bottom:1085.550000px;}
.y18d{bottom:1087.890000px;}
.y1d8{bottom:1096.890000px;}
.yc4{bottom:1097.250000px;}
.y5c{bottom:1099.590000px;}
.y32{bottom:1099.950000px;}
.yed{bottom:1101.930000px;}
.y7{bottom:1104.090000px;}
.yc3{bottom:1117.950000px;}
.yec{bottom:1121.010000px;}
.y6{bottom:1122.810000px;}
.y31{bottom:1138.290000px;}
.yc2{bottom:1138.650000px;}
.yeb{bottom:1139.910000px;}
.y5{bottom:1141.380000px;}
.y2{bottom:1174.140000px;}
.y1{bottom:1194.300000px;}
.he{height:32.273438px;}
.ha{height:43.246406px;}
.h11{height:43.506914px;}
.hf{height:48.410156px;}
.h4{height:50.364141px;}
.h3{height:53.573906px;}
.h10{height:59.383125px;}
.hb{height:63.949219px;}
.h8{height:64.546875px;}
.h2{height:65.884219px;}
.hd{height:72.262617px;}
.hc{height:72.937969px;}
.h6{height:74.820586px;}
.h7{height:80.208984px;}
.h5{height:102.832031px;}
.h9{height:1262.875980px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.976250px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.656000px;}
.xc{left:180.750000px;}
.x4{left:191.550000px;}
.x6{left:229.170000px;}
.xd{left:234.030000px;}
.x7{left:313.275000px;}
.xb{left:343.695000px;}
.x8{left:395.895000px;}
.x3{left:438.225000px;}
.x5{left:478.545000px;}
.xe{left:511.305000px;}
.x1{left:531.825000px;}
.x9{left:555.221250px;}
.xa{left:561.345000px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.135467pt;}
.ls7{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.106240pt;}
.lse{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.132267pt;}
.ls1{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.133333pt;}
.lsa{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.227733pt;}
.lsb{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.618667pt;}
.ls6{letter-spacing:0.640000pt;}
.ls4{letter-spacing:7.520000pt;}
.ls3{letter-spacing:8.800000pt;}
.ls12{letter-spacing:23.040000pt;}
.ws7{word-spacing:-18.080000pt;}
.wsa{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.656960pt;}
.ws6{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.584533pt;}
.ws5{word-spacing:-14.464000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws1{word-spacing:-13.280000pt;}
.ws3{word-spacing:-11.818667pt;}
.ws4{word-spacing:-11.686400pt;}
.ws9{word-spacing:0.000000pt;}
._5{margin-left:-3.477333pt;}
._4{margin-left:-2.039040pt;}
._0{margin-left:-0.917760pt;}
._1{width:1.057067pt;}
._2{width:2.207360pt;}
._7{width:3.612160pt;}
._e{width:4.566187pt;}
._a{width:5.531947pt;}
._9{width:7.011840pt;}
._d{width:7.974827pt;}
._6{width:8.894507pt;}
._3{width:9.911040pt;}
._c{width:11.255467pt;}
._8{width:12.217600pt;}
._12{width:13.293867pt;}
._b{width:14.314667pt;}
._1a{width:15.677867pt;}
._19{width:16.604160pt;}
._11{width:17.729280pt;}
._10{width:19.136000pt;}
._f{width:20.437760pt;}
._18{width:21.696000pt;}
._14{width:22.837973pt;}
._13{width:24.320000pt;}
._15{width:25.920000pt;}
._21{width:27.072000pt;}
._22{width:27.968000pt;}
._20{width:29.717973pt;}
._1b{width:30.720000pt;}
._16{width:32.320000pt;}
._17{width:33.344000pt;}
._24{width:34.336000pt;}
._23{width:35.232000pt;}
._1c{width:37.212160pt;}
._1f{width:38.179840pt;}
._1e{width:39.072000pt;}
._1d{width:42.816000pt;}
._25{width:47.552427pt;}
._26{width:48.532053pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:72.320000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.200000pt;}
.y3{bottom:69.120000pt;}
.y30{bottom:98.880000pt;}
.y1b4{bottom:101.600000pt;}
.y19e{bottom:104.000000pt;}
.y1fc{bottom:107.840000pt;}
.y15a{bottom:109.600000pt;}
.y5b{bottom:111.200000pt;}
.yea{bottom:111.680000pt;}
.y116{bottom:112.800000pt;}
.y135{bottom:113.280000pt;}
.y12e{bottom:113.600000pt;}
.y2f{bottom:114.720000pt;}
.y88{bottom:117.600000pt;}
.y18c{bottom:117.920000pt;}
.y1b3{bottom:120.000000pt;}
.y19d{bottom:122.400000pt;}
.y1fb{bottom:126.240000pt;}
.y159{bottom:128.000000pt;}
.ye9{bottom:128.640000pt;}
.ya8{bottom:129.600000pt;}
.y174{bottom:130.400000pt;}
.y115{bottom:131.200000pt;}
.y12d{bottom:132.000000pt;}
.y1cc{bottom:136.000000pt;}
.y18b{bottom:136.320000pt;}
.y2e{bottom:140.640000pt;}
.y19c{bottom:140.800000pt;}
.y143{bottom:143.200000pt;}
.yc1{bottom:144.480000pt;}
.ye8{bottom:145.466667pt;}
.y5a{bottom:145.626667pt;}
.y158{bottom:146.426667pt;}
.ya7{bottom:148.026667pt;}
.y173{bottom:148.826667pt;}
.y114{bottom:149.626667pt;}
.y12c{bottom:150.426667pt;}
.y87{bottom:152.026667pt;}
.y1fa{bottom:152.666667pt;}
.y1cb{bottom:154.426667pt;}
.y18a{bottom:154.746667pt;}
.y2d{bottom:155.546667pt;}
.y142{bottom:161.626667pt;}
.ye7{bottom:162.266667pt;}
.yc0{bottom:162.906667pt;}
.ycd{bottom:164.026667pt;}
.y157{bottom:164.826667pt;}
.ya6{bottom:166.426667pt;}
.y172{bottom:167.226667pt;}
.y113{bottom:168.026667pt;}
.y12b{bottom:168.826667pt;}
.y2c{bottom:169.306667pt;}
.y1f9{bottom:171.066667pt;}
.y1ca{bottom:172.826667pt;}
.y189{bottom:173.146667pt;}
.y86{bottom:178.426667pt;}
.ye6{bottom:179.226667pt;}
.y59{bottom:180.026667pt;}
.ybf{bottom:181.306667pt;}
.y156{bottom:183.226667pt;}
.ya5{bottom:184.826667pt;}
.y19b{bottom:185.626667pt;}
.y112{bottom:186.426667pt;}
.y12a{bottom:187.226667pt;}
.y2b{bottom:188.506667pt;}
.y1c9{bottom:191.226667pt;}
.y188{bottom:191.546667pt;}
.y85{bottom:196.826667pt;}
.y1f8{bottom:197.466667pt;}
.y2a{bottom:198.106667pt;}
.y58{bottom:198.426667pt;}
.ybe{bottom:199.706667pt;}
.y134{bottom:200.826667pt;}
.y155{bottom:201.626667pt;}
.ya4{bottom:203.226667pt;}
.y19a{bottom:204.026667pt;}
.y129{bottom:205.626667pt;}
.y1c8{bottom:209.626667pt;}
.ye5{bottom:212.506667pt;}
.y84{bottom:215.226667pt;}
.y1f7{bottom:215.866667pt;}
.y57{bottom:216.826667pt;}
.ybd{bottom:218.106667pt;}
.y133{bottom:219.226667pt;}
.y154{bottom:220.026667pt;}
.y111{bottom:220.346667pt;}
.ya3{bottom:221.626667pt;}
.y199{bottom:222.426667pt;}
.y187{bottom:225.466667pt;}
.y1c7{bottom:228.026667pt;}
.ye4{bottom:230.906667pt;}
.y29{bottom:231.706667pt;}
.y83{bottom:233.626667pt;}
.y56{bottom:235.226667pt;}
.ybc{bottom:236.506667pt;}
.y110{bottom:237.306667pt;}
.y132{bottom:237.626667pt;}
.y153{bottom:238.426667pt;}
.y128{bottom:240.026667pt;}
.y186{bottom:242.266667pt;}
.y1b2{bottom:246.426667pt;}
.y198{bottom:248.826667pt;}
.y28{bottom:250.106667pt;}
.y82{bottom:252.026667pt;}
.y55{bottom:253.626667pt;}
.y10f{bottom:254.106667pt;}
.ybb{bottom:254.906667pt;}
.ya2{bottom:256.026667pt;}
.y152{bottom:256.826667pt;}
.y127{bottom:258.426667pt;}
.y185{bottom:259.226667pt;}
.y1f6{bottom:260.666667pt;}
.y1b1{bottom:264.826667pt;}
.ye3{bottom:265.306667pt;}
.y197{bottom:267.226667pt;}
.y27{bottom:268.506667pt;}
.y81{bottom:270.426667pt;}
.y10e{bottom:271.066667pt;}
.y54{bottom:272.026667pt;}
.y1d7{bottom:272.826667pt;}
.yba{bottom:273.306667pt;}
.ya1{bottom:274.426667pt;}
.y151{bottom:275.226667pt;}
.y184{bottom:276.026667pt;}
.y126{bottom:276.826667pt;}
.y1b0{bottom:283.226667pt;}
.ye2{bottom:283.706667pt;}
.y196{bottom:285.626667pt;}
.y26{bottom:286.906667pt;}
.y1f5{bottom:287.066667pt;}
.y10d{bottom:287.866667pt;}
.y80{bottom:288.826667pt;}
.y53{bottom:290.426667pt;}
.y1d6{bottom:291.226667pt;}
.ya0{bottom:292.826667pt;}
.y183{bottom:292.986667pt;}
.y150{bottom:293.626667pt;}
.y125{bottom:295.226667pt;}
.yb9{bottom:299.706667pt;}
.y1af{bottom:301.626667pt;}
.ye1{bottom:302.106667pt;}
.y195{bottom:304.026667pt;}
.y10c{bottom:304.666667pt;}
.y25{bottom:305.306667pt;}
.ycc{bottom:306.426667pt;}
.y7f{bottom:307.226667pt;}
.y52{bottom:308.826667pt;}
.y1c6{bottom:309.626667pt;}
.y182{bottom:309.786667pt;}
.y9f{bottom:311.226667pt;}
.y14f{bottom:312.026667pt;}
.y1f4{bottom:313.466667pt;}
.yb8{bottom:318.106667pt;}
.y1ae{bottom:320.026667pt;}
.ye0{bottom:320.506667pt;}
.y10b{bottom:321.626667pt;}
.y194{bottom:322.426667pt;}
.y24{bottom:323.706667pt;}
.ycb{bottom:324.826667pt;}
.y7e{bottom:325.626667pt;}
.y181{bottom:326.586667pt;}
.y1c5{bottom:328.026667pt;}
.y9e{bottom:329.626667pt;}
.y14e{bottom:330.426667pt;}
.y10a{bottom:338.426667pt;}
.ydf{bottom:338.906667pt;}
.y1f3{bottom:339.866667pt;}
.y193{bottom:340.826667pt;}
.y23{bottom:342.106667pt;}
.y51{bottom:343.226667pt;}
.y180{bottom:343.546667pt;}
.y7d{bottom:344.026667pt;}
.y131{bottom:345.626667pt;}
.y171{bottom:346.426667pt;}
.y9d{bottom:348.026667pt;}
.y14d{bottom:348.826667pt;}
.yb7{bottom:352.026667pt;}
.y1ad{bottom:356.826667pt;}
.yde{bottom:357.306667pt;}
.y1f2{bottom:358.266667pt;}
.y17f{bottom:360.346667pt;}
.y22{bottom:360.506667pt;}
.y50{bottom:361.626667pt;}
.y7c{bottom:362.466667pt;}
.y130{bottom:364.066667pt;}
.y170{bottom:364.866667pt;}
.y124{bottom:366.466667pt;}
.y14c{bottom:367.266667pt;}
.yb6{bottom:369.026667pt;}
.y109{bottom:371.746667pt;}
.y1ac{bottom:375.266667pt;}
.ydd{bottom:375.746667pt;}
.y21{bottom:378.946667pt;}
.y4f{bottom:380.066667pt;}
.y7b{bottom:380.866667pt;}
.y139{bottom:382.146667pt;}
.y9c{bottom:382.466667pt;}
.y16f{bottom:383.266667pt;}
.y1f1{bottom:384.706667pt;}
.y123{bottom:384.866667pt;}
.y14b{bottom:385.666667pt;}
.yb5{bottom:385.826667pt;}
.y108{bottom:390.146667pt;}
.y1ab{bottom:393.666667pt;}
.ydc{bottom:394.146667pt;}
.y20{bottom:397.346667pt;}
.y4e{bottom:398.466667pt;}
.y7a{bottom:399.266667pt;}
.y9b{bottom:400.866667pt;}
.y16e{bottom:401.666667pt;}
.yb4{bottom:402.626667pt;}
.y1f0{bottom:403.106667pt;}
.y122{bottom:403.266667pt;}
.y17e{bottom:404.066667pt;}
.y1d5{bottom:409.666667pt;}
.y14a{bottom:412.066667pt;}
.ydb{bottom:412.546667pt;}
.y1f{bottom:415.106667pt;}
.y4d{bottom:416.866667pt;}
.y79{bottom:417.666667pt;}
.y9a{bottom:419.266667pt;}
.yb3{bottom:419.586667pt;}
.y16d{bottom:420.066667pt;}
.y1ef{bottom:421.506667pt;}
.y121{bottom:421.666667pt;}
.y17d{bottom:422.466667pt;}
.y107{bottom:424.546667pt;}
.y1d4{bottom:428.066667pt;}
.y149{bottom:430.466667pt;}
.yca{bottom:432.866667pt;}
.y138{bottom:435.266667pt;}
.y78{bottom:436.066667pt;}
.yb2{bottom:436.386667pt;}
.y99{bottom:437.666667pt;}
.y1aa{bottom:438.466667pt;}
.y17c{bottom:440.866667pt;}
.y106{bottom:442.946667pt;}
.y1c4{bottom:446.466667pt;}
.yda{bottom:446.626667pt;}
.y1ee{bottom:447.906667pt;}
.y148{bottom:448.866667pt;}
.y1e{bottom:449.506667pt;}
.y4c{bottom:451.266667pt;}
.y12f{bottom:453.346667pt;}
.y137{bottom:453.666667pt;}
.y77{bottom:454.466667pt;}
.y120{bottom:456.066667pt;}
.y1a9{bottom:456.866667pt;}
.y17b{bottom:459.266667pt;}
.y105{bottom:461.346667pt;}
.y1c3{bottom:464.866667pt;}
.y1ed{bottom:466.306667pt;}
.y147{bottom:467.266667pt;}
.y4b{bottom:469.666667pt;}
.y98{bottom:472.066667pt;}
.y1d3{bottom:472.546667pt;}
.y76{bottom:472.866667pt;}
.y11f{bottom:474.466667pt;}
.y1a8{bottom:475.266667pt;}
.y17a{bottom:477.666667pt;}
.y104{bottom:479.746667pt;}
.yd9{bottom:481.026667pt;}
.y1c2{bottom:483.266667pt;}
.y146{bottom:485.666667pt;}
.y1d{bottom:486.786667pt;}
.y4a{bottom:488.066667pt;}
.y97{bottom:490.466667pt;}
.y1d2{bottom:490.946667pt;}
.y75{bottom:491.266667pt;}
.y1ec{bottom:492.706667pt;}
.y11e{bottom:492.866667pt;}
.y1a7{bottom:493.666667pt;}
.y179{bottom:496.066667pt;}
.y1c1{bottom:501.666667pt;}
.y145{bottom:504.066667pt;}
.y1c{bottom:504.546667pt;}
.y49{bottom:506.466667pt;}
.y96{bottom:508.866667pt;}
.y74{bottom:509.666667pt;}
.y1eb{bottom:511.106667pt;}
.y11d{bottom:511.266667pt;}
.y103{bottom:514.146667pt;}
.y178{bottom:514.466667pt;}
.yd8{bottom:515.746667pt;}
.y1d1{bottom:517.666667pt;}
.y1b{bottom:519.906667pt;}
.y1a6{bottom:520.066667pt;}
.y141{bottom:522.466667pt;}
.y48{bottom:524.866667pt;}
.y16c{bottom:525.666667pt;}
.y95{bottom:527.266667pt;}
.y73{bottom:528.066667pt;}
.y1ea{bottom:529.506667pt;}
.y102{bottom:532.546667pt;}
.yd7{bottom:534.146667pt;}
.y1a{bottom:535.266667pt;}
.y1d0{bottom:536.066667pt;}
.y1a5{bottom:538.466667pt;}
.y177{bottom:540.546667pt;}
.y140{bottom:540.866667pt;}
.y47{bottom:543.266667pt;}
.y16b{bottom:544.066667pt;}
.y11c{bottom:545.666667pt;}
.y72{bottom:546.466667pt;}
.y19{bottom:550.466667pt;}
.y101{bottom:550.946667pt;}
.yd6{bottom:552.546667pt;}
.y1cf{bottom:554.466667pt;}
.y1e9{bottom:555.906667pt;}
.y1a4{bottom:556.866667pt;}
.yb1{bottom:559.266667pt;}
.y94{bottom:561.666667pt;}
.y16a{bottom:562.466667pt;}
.y11b{bottom:564.066667pt;}
.y71{bottom:564.866667pt;}
.y192{bottom:567.266667pt;}
.y100{bottom:569.346667pt;}
.yd5{bottom:570.946667pt;}
.y1ce{bottom:572.866667pt;}
.y1e8{bottom:574.306667pt;}
.y176{bottom:575.266667pt;}
.y46{bottom:577.666667pt;}
.y93{bottom:580.093333pt;}
.y169{bottom:580.893333pt;}
.y11a{bottom:582.493333pt;}
.y70{bottom:583.293333pt;}
.y191{bottom:585.693333pt;}
.y18{bottom:586.493333pt;}
.yff{bottom:587.773333pt;}
.yd4{bottom:589.373333pt;}
.y1cd{bottom:591.293333pt;}
.y175{bottom:593.693333pt;}
.y45{bottom:596.093333pt;}
.y92{bottom:598.493333pt;}
.y168{bottom:599.293333pt;}
.y1e7{bottom:600.573333pt;}
.y119{bottom:600.893333pt;}
.y6f{bottom:601.693333pt;}
.y190{bottom:604.093333pt;}
.y1c0{bottom:609.693333pt;}
.y144{bottom:612.093333pt;}
.y44{bottom:614.493333pt;}
.y91{bottom:616.893333pt;}
.y167{bottom:617.693333pt;}
.y1e6{bottom:618.973333pt;}
.y118{bottom:619.293333pt;}
.y6e{bottom:620.093333pt;}
.yfe{bottom:622.173333pt;}
.y18f{bottom:622.493333pt;}
.y17{bottom:623.133333pt;}
.yd3{bottom:623.293333pt;}
.y1bf{bottom:628.093333pt;}
.y13f{bottom:630.493333pt;}
.y43{bottom:632.893333pt;}
.y90{bottom:635.293333pt;}
.y166{bottom:636.093333pt;}
.y16{bottom:638.493333pt;}
.yd2{bottom:640.253333pt;}
.yfd{bottom:640.573333pt;}
.y1e5{bottom:645.373333pt;}
.y1be{bottom:646.493333pt;}
.y13e{bottom:648.893333pt;}
.y42{bottom:651.293333pt;}
.y117{bottom:653.373333pt;}
.y8f{bottom:653.693333pt;}
.y15{bottom:653.853333pt;}
.y165{bottom:654.493333pt;}
.y6d{bottom:656.893333pt;}
.yd1{bottom:657.053333pt;}
.yfc{bottom:658.973333pt;}
.y1bd{bottom:664.893333pt;}
.yb0{bottom:667.293333pt;}
.y14{bottom:669.213333pt;}
.y41{bottom:669.693333pt;}
.y1e4{bottom:671.773333pt;}
.y8e{bottom:672.093333pt;}
.y164{bottom:672.893333pt;}
.yd0{bottom:673.853333pt;}
.y6c{bottom:675.293333pt;}
.y1bc{bottom:683.293333pt;}
.y13{bottom:685.533333pt;}
.yaf{bottom:685.693333pt;}
.y40{bottom:688.093333pt;}
.y8d{bottom:690.493333pt;}
.ycf{bottom:690.813333pt;}
.yfb{bottom:693.373333pt;}
.y6b{bottom:693.693333pt;}
.y1e3{bottom:698.173333pt;}
.y163{bottom:699.293333pt;}
.y1bb{bottom:701.693333pt;}
.yae{bottom:704.093333pt;}
.y3f{bottom:706.493333pt;}
.yce{bottom:707.613333pt;}
.yfa{bottom:711.773333pt;}
.y6a{bottom:712.093333pt;}
.y1e2{bottom:716.573333pt;}
.y162{bottom:717.693333pt;}
.y1ba{bottom:720.093333pt;}
.y11{bottom:721.853333pt;}
.yad{bottom:722.493333pt;}
.y3e{bottom:724.893333pt;}
.y12{bottom:729.213333pt;}
.yf9{bottom:730.173333pt;}
.y69{bottom:730.493333pt;}
.y161{bottom:736.093333pt;}
.y1b9{bottom:738.493333pt;}
.yac{bottom:740.893333pt;}
.y1e1{bottom:742.973333pt;}
.y8c{bottom:743.293333pt;}
.y10{bottom:748.413333pt;}
.yf8{bottom:748.573333pt;}
.y68{bottom:748.893333pt;}
.y160{bottom:754.493333pt;}
.y1a3{bottom:756.893333pt;}
.y3d{bottom:759.293333pt;}
.y1e0{bottom:761.373333pt;}
.y8b{bottom:761.693333pt;}
.yf7{bottom:766.973333pt;}
.y67{bottom:767.293333pt;}
.y15f{bottom:772.893333pt;}
.yf{bottom:774.813333pt;}
.y13d{bottom:775.293333pt;}
.y3c{bottom:777.693333pt;}
.y8a{bottom:780.093333pt;}
.y1b8{bottom:783.293333pt;}
.yf6{bottom:785.373333pt;}
.y66{bottom:785.693333pt;}
.y1df{bottom:787.773333pt;}
.y15e{bottom:791.293333pt;}
.yc9{bottom:793.693333pt;}
.y3b{bottom:796.093333pt;}
.ye{bottom:801.573333pt;}
.y1b7{bottom:801.733333pt;}
.yf5{bottom:803.813333pt;}
.y65{bottom:804.133333pt;}
.y15d{bottom:809.733333pt;}
.yc8{bottom:812.133333pt;}
.y1de{bottom:814.213333pt;}
.y3a{bottom:814.533333pt;}
.y1b6{bottom:820.133333pt;}
.yf4{bottom:822.213333pt;}
.y64{bottom:822.533333pt;}
.y15c{bottom:828.133333pt;}
.yab{bottom:830.533333pt;}
.yd{bottom:831.493333pt;}
.y39{bottom:832.933333pt;}
.y1b5{bottom:838.533333pt;}
.y1dd{bottom:840.613333pt;}
.y63{bottom:840.933333pt;}
.y15b{bottom:846.533333pt;}
.yaa{bottom:848.933333pt;}
.y38{bottom:851.333333pt;}
.yf3{bottom:856.613333pt;}
.y1a2{bottom:856.933333pt;}
.y1dc{bottom:859.013333pt;}
.y62{bottom:859.333333pt;}
.yc{bottom:863.333333pt;}
.y13c{bottom:864.933333pt;}
.ya9{bottom:867.333333pt;}
.y37{bottom:869.733333pt;}
.yf2{bottom:875.013333pt;}
.y1a1{bottom:875.333333pt;}
.y61{bottom:877.733333pt;}
.y13b{bottom:883.333333pt;}
.y1db{bottom:885.413333pt;}
.y89{bottom:885.733333pt;}
.y136{bottom:888.133333pt;}
.yb{bottom:892.613333pt;}
.yf1{bottom:893.413333pt;}
.y1a0{bottom:893.733333pt;}
.y60{bottom:896.133333pt;}
.y13a{bottom:901.733333pt;}
.y1da{bottom:903.813333pt;}
.y36{bottom:904.133333pt;}
.yf0{bottom:911.813333pt;}
.y19f{bottom:912.133333pt;}
.y5f{bottom:914.533333pt;}
.yc7{bottom:920.133333pt;}
.y35{bottom:922.533333pt;}
.y1d9{bottom:930.213333pt;}
.ya{bottom:930.373333pt;}
.y1fe{bottom:930.533333pt;}
.y5e{bottom:932.933333pt;}
.yc6{bottom:938.533333pt;}
.y34{bottom:940.933333pt;}
.yef{bottom:945.733333pt;}
.y9{bottom:947.493333pt;}
.y18e{bottom:948.613333pt;}
.y1fd{bottom:948.933333pt;}
.y5d{bottom:951.333333pt;}
.yc5{bottom:956.933333pt;}
.y33{bottom:959.333333pt;}
.yee{bottom:962.693333pt;}
.y8{bottom:964.933333pt;}
.y18d{bottom:967.013333pt;}
.y1d8{bottom:975.013333pt;}
.yc4{bottom:975.333333pt;}
.y5c{bottom:977.413333pt;}
.y32{bottom:977.733333pt;}
.yed{bottom:979.493333pt;}
.y7{bottom:981.413333pt;}
.yc3{bottom:993.733333pt;}
.yec{bottom:996.453333pt;}
.y6{bottom:998.053333pt;}
.y31{bottom:1011.813333pt;}
.yc2{bottom:1012.133333pt;}
.yeb{bottom:1013.253333pt;}
.y5{bottom:1014.560000pt;}
.y2{bottom:1043.680000pt;}
.y1{bottom:1061.600000pt;}
.he{height:28.687500pt;}
.ha{height:38.441250pt;}
.h11{height:38.672812pt;}
.hf{height:43.031250pt;}
.h4{height:44.768125pt;}
.h3{height:47.621250pt;}
.h10{height:52.785000pt;}
.hb{height:56.843750pt;}
.h8{height:57.375000pt;}
.h2{height:58.563750pt;}
.hd{height:64.233437pt;}
.hc{height:64.833750pt;}
.h6{height:66.507188pt;}
.h7{height:71.296875pt;}
.h5{height:91.406250pt;}
.h9{height:1122.556427pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.756667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.472000pt;}
.xc{left:160.666667pt;}
.x4{left:170.266667pt;}
.x6{left:203.706667pt;}
.xd{left:208.026667pt;}
.x7{left:278.466667pt;}
.xb{left:305.506667pt;}
.x8{left:351.906667pt;}
.x3{left:389.533333pt;}
.x5{left:425.373333pt;}
.xe{left:454.493333pt;}
.x1{left:472.733333pt;}
.x9{left:493.530000pt;}
.xa{left:498.973333pt;}
}




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