
    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_7a01b4c24b73a0f82a60628e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1c39e63b833e33e9426b039a.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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_48951c1e000ec034ce8a0dcb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_760996ff313ca013463dec28.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_89cee35111b8e095e7265f9f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.182000px;}
.lsd{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.513600px;}
.lsb{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.666000px;}
.lsf{letter-spacing:16.506720px;}
.lse{letter-spacing:46.026720px;}
.ls7{letter-spacing:64.170720px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws3{word-spacing:0.000000px;}
._17{margin-left:-2.180880px;}
._2{margin-left:-1.104000px;}
._0{width:1.195200px;}
._1{width:2.260560px;}
._7{width:4.123440px;}
._3{width:5.438160px;}
._4{width:6.661680px;}
._11{width:7.788000px;}
._10{width:9.143280px;}
._6{width:10.277280px;}
._5{width:11.473920px;}
._14{width:12.611040px;}
._c{width:13.653600px;}
._12{width:16.374240px;}
._a{width:17.390160px;}
._9{width:18.645120px;}
._b{width:20.306400px;}
._15{width:21.884160px;}
._d{width:22.947840px;}
._13{width:24.501600px;}
._18{width:25.816320px;}
._16{width:27.131040px;}
._f{width:28.916400px;}
._e{width:30.617280px;}
._8{width:201.204000px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.yca{bottom:-5.040000px;}
.yc6{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:3.240000px;}
.y84{bottom:3.420000px;}
.yb2{bottom:3.465000px;}
.y86{bottom:3.600000px;}
.y7f{bottom:3.780000px;}
.y5{bottom:4.500000px;}
.y129{bottom:12.060000px;}
.yb8{bottom:12.420000px;}
.y12a{bottom:20.700000px;}
.yb7{bottom:21.060000px;}
.y4{bottom:24.120000px;}
.y127{bottom:57.780000px;}
.yf8{bottom:65.700000px;}
.y14b{bottom:66.780000px;}
.y82{bottom:69.840000px;}
.y126{bottom:75.060000px;}
.y44{bottom:77.400000px;}
.y110{bottom:78.840000px;}
.yf7{bottom:82.980000px;}
.yc1{bottom:83.160000px;}
.y14a{bottom:84.060000px;}
.y81{bottom:91.620000px;}
.y125{bottom:92.340000px;}
.y43{bottom:94.680000px;}
.y10f{bottom:96.120000px;}
.yf6{bottom:100.296000px;}
.yc0{bottom:100.476000px;}
.y149{bottom:101.376000px;}
.y124{bottom:109.656000px;}
.y42{bottom:111.816000px;}
.y80{bottom:113.436000px;}
.ybf{bottom:117.216000px;}
.yf5{bottom:117.576000px;}
.y148{bottom:118.656000px;}
.y123{bottom:126.936000px;}
.y41{bottom:129.096000px;}
.y10e{bottom:130.716000px;}
.yf4{bottom:134.856000px;}
.y7e{bottom:135.216000px;}
.ybe{bottom:135.936000px;}
.y122{bottom:144.036000px;}
.y40{bottom:146.376000px;}
.y10d{bottom:147.816000px;}
.yf3{bottom:151.950000px;}
.y147{bottom:153.030000px;}
.ybd{bottom:153.210000px;}
.y7c{bottom:156.990000px;}
.y121{bottom:161.310000px;}
.y3f{bottom:163.650000px;}
.y10c{bottom:165.090000px;}
.yf2{bottom:168.870000px;}
.y146{bottom:170.310000px;}
.ybc{bottom:170.490000px;}
.y120{bottom:178.590000px;}
.y3e{bottom:180.930000px;}
.y7b{bottom:181.290000px;}
.y10b{bottom:182.370000px;}
.yf1{bottom:186.510000px;}
.ybb{bottom:187.410000px;}
.y145{bottom:187.590000px;}
.y11f{bottom:195.510000px;}
.y3d{bottom:198.030000px;}
.y7a{bottom:198.570000px;}
.y10a{bottom:199.650000px;}
.yf0{bottom:203.790000px;}
.y144{bottom:204.870000px;}
.yba{bottom:209.010000px;}
.y3c{bottom:215.310000px;}
.y79{bottom:215.850000px;}
.y109{bottom:216.930000px;}
.y11e{bottom:217.290000px;}
.yef{bottom:221.070000px;}
.y143{bottom:222.150000px;}
.yb9{bottom:230.790000px;}
.y3b{bottom:232.590000px;}
.y78{bottom:232.950000px;}
.y108{bottom:234.030000px;}
.yee{bottom:238.350000px;}
.y11d{bottom:239.070000px;}
.y142{bottom:239.430000px;}
.y3a{bottom:249.870000px;}
.y77{bottom:250.230000px;}
.y107{bottom:251.310000px;}
.yb6{bottom:252.570000px;}
.yed{bottom:255.450000px;}
.y141{bottom:256.530000px;}
.y11c{bottom:260.670000px;}
.y39{bottom:267.150000px;}
.y76{bottom:267.510000px;}
.y106{bottom:268.590000px;}
.yec{bottom:272.730000px;}
.y140{bottom:273.810000px;}
.y11b{bottom:282.450000px;}
.y38{bottom:284.430000px;}
.y75{bottom:284.790000px;}
.y105{bottom:285.870000px;}
.yeb{bottom:290.010000px;}
.y13f{bottom:291.090000px;}
.yb5{bottom:291.630000px;}
.y37{bottom:301.530000px;}
.y74{bottom:302.070000px;}
.y114{bottom:302.790000px;}
.y104{bottom:303.150000px;}
.y11a{bottom:304.230000px;}
.yea{bottom:307.290000px;}
.y13e{bottom:308.370000px;}
.yb4{bottom:313.410000px;}
.y36{bottom:318.810000px;}
.y73{bottom:319.350000px;}
.y103{bottom:320.430000px;}
.ye9{bottom:324.570000px;}
.y13d{bottom:325.650000px;}
.y119{bottom:326.010000px;}
.yb3{bottom:335.010000px;}
.y35{bottom:336.090000px;}
.y72{bottom:336.450000px;}
.y102{bottom:337.530000px;}
.ye8{bottom:341.850000px;}
.y13c{bottom:342.930000px;}
.y118{bottom:347.790000px;}
.y34{bottom:353.370000px;}
.y71{bottom:353.730000px;}
.y14c{bottom:354.450000px;}
.y101{bottom:354.810000px;}
.yb1{bottom:356.790000px;}
.ye7{bottom:358.995000px;}
.y13b{bottom:360.075000px;}
.y33{bottom:370.695000px;}
.y70{bottom:371.055000px;}
.y100{bottom:372.135000px;}
.ye6{bottom:376.275000px;}
.y13a{bottom:377.355000px;}
.yb0{bottom:381.315000px;}
.y32{bottom:387.975000px;}
.y6f{bottom:388.335000px;}
.yff{bottom:389.055000px;}
.y113{bottom:389.415000px;}
.ye5{bottom:393.195000px;}
.y139{bottom:394.635000px;}
.yaf{bottom:398.415000px;}
.y31{bottom:405.075000px;}
.y6e{bottom:405.615000px;}
.yfe{bottom:406.695000px;}
.ye4{bottom:410.835000px;}
.y138{bottom:411.915000px;}
.yae{bottom:415.695000px;}
.y30{bottom:422.355000px;}
.y6d{bottom:422.535000px;}
.yfd{bottom:423.975000px;}
.ye3{bottom:428.115000px;}
.y137{bottom:429.195000px;}
.yad{bottom:432.975000px;}
.y2f{bottom:439.635000px;}
.y6c{bottom:440.715000px;}
.yfc{bottom:441.075000px;}
.ye2{bottom:445.395000px;}
.y136{bottom:446.475000px;}
.yac{bottom:450.255000px;}
.y2e{bottom:456.915000px;}
.y6b{bottom:458.355000px;}
.ye1{bottom:462.495000px;}
.y135{bottom:463.575000px;}
.yab{bottom:467.535000px;}
.y2d{bottom:474.195000px;}
.yfb{bottom:475.275000px;}
.y6a{bottom:475.635000px;}
.ye0{bottom:479.775000px;}
.y134{bottom:480.855000px;}
.yaa{bottom:484.815000px;}
.y2c{bottom:491.475000px;}
.y69{bottom:492.915000px;}
.ydf{bottom:496.695000px;}
.y133{bottom:498.135000px;}
.ya9{bottom:501.915000px;}
.y2b{bottom:508.575000px;}
.y117{bottom:509.835000px;}
.y68{bottom:510.195000px;}
.y132{bottom:515.415000px;}
.yde{bottom:518.475000px;}
.ya8{bottom:519.195000px;}
.y2a{bottom:525.855000px;}
.y67{bottom:527.295000px;}
.y131{bottom:532.695000px;}
.ya7{bottom:536.475000px;}
.ydd{bottom:540.255000px;}
.y29{bottom:543.135000px;}
.y66{bottom:544.575000px;}
.y130{bottom:549.795000px;}
.ya6{bottom:553.755000px;}
.y28{bottom:560.415000px;}
.y65{bottom:561.855000px;}
.y12f{bottom:566.715000px;}
.ya5{bottom:571.035000px;}
.y27{bottom:577.695000px;}
.y64{bottom:579.135000px;}
.ydc{bottom:583.635000px;}
.ya4{bottom:587.775000px;}
.y26{bottom:594.795000px;}
.y63{bottom:596.415000px;}
.ydb{bottom:605.415000px;}
.y12e{bottom:605.775000px;}
.ya3{bottom:606.495000px;}
.y25{bottom:612.075000px;}
.y62{bottom:613.695000px;}
.ya2{bottom:623.805000px;}
.yda{bottom:627.225000px;}
.y12d{bottom:627.585000px;}
.y24{bottom:629.385000px;}
.y116{bottom:630.465000px;}
.y61{bottom:630.825000px;}
.ya1{bottom:641.085000px;}
.y23{bottom:646.305000px;}
.y60{bottom:648.105000px;}
.yd9{bottom:649.005000px;}
.y12c{bottom:649.365000px;}
.ya0{bottom:658.365000px;}
.y22{bottom:663.945000px;}
.y5f{bottom:665.385000px;}
.yd8{bottom:670.785000px;}
.y12b{bottom:670.965000px;}
.y9f{bottom:675.285000px;}
.y21{bottom:681.225000px;}
.y112{bottom:682.305000px;}
.y5e{bottom:682.665000px;}
.y128{bottom:692.745000px;}
.yd7{bottom:695.085000px;}
.y9e{bottom:696.885000px;}
.y20{bottom:698.325000px;}
.y5d{bottom:699.945000px;}
.yd6{bottom:712.365000px;}
.y1f{bottom:715.605000px;}
.y5c{bottom:717.225000px;}
.y9d{bottom:718.665000px;}
.yd5{bottom:729.645000px;}
.y1e{bottom:732.885000px;}
.y5b{bottom:734.325000px;}
.y9c{bottom:740.445000px;}
.yd4{bottom:746.745000px;}
.y1d{bottom:750.165000px;}
.y5a{bottom:751.605000px;}
.yd3{bottom:764.025000px;}
.y9b{bottom:764.745000px;}
.y1c{bottom:767.445000px;}
.y59{bottom:768.885000px;}
.yd2{bottom:781.305000px;}
.y9a{bottom:782.025000px;}
.y1b{bottom:784.725000px;}
.y58{bottom:786.165000px;}
.yd1{bottom:798.585000px;}
.y99{bottom:799.305000px;}
.y1a{bottom:801.825000px;}
.y57{bottom:803.445000px;}
.yd0{bottom:815.865000px;}
.y98{bottom:816.585000px;}
.y19{bottom:819.105000px;}
.y56{bottom:820.725000px;}
.ycf{bottom:832.605000px;}
.y97{bottom:833.865000px;}
.y18{bottom:836.385000px;}
.y55{bottom:837.465000px;}
.yfa{bottom:837.825000px;}
.y96{bottom:851.145000px;}
.yce{bottom:851.325000px;}
.y17{bottom:853.665000px;}
.y54{bottom:855.105000px;}
.y95{bottom:868.245000px;}
.ycd{bottom:868.605000px;}
.y16{bottom:870.945000px;}
.y53{bottom:872.385000px;}
.y94{bottom:885.570000px;}
.ycc{bottom:885.930000px;}
.y15{bottom:887.730000px;}
.y52{bottom:889.710000px;}
.y93{bottom:902.850000px;}
.ycb{bottom:903.210000px;}
.y14{bottom:905.730000px;}
.y51{bottom:906.990000px;}
.y92{bottom:920.130000px;}
.y13{bottom:923.370000px;}
.y50{bottom:924.090000px;}
.y91{bottom:937.410000px;}
.y12{bottom:940.650000px;}
.y4f{bottom:941.370000px;}
.yc9{bottom:941.730000px;}
.y90{bottom:954.510000px;}
.y11{bottom:957.930000px;}
.y4e{bottom:958.290000px;}
.yf9{bottom:958.650000px;}
.yc8{bottom:963.510000px;}
.y8f{bottom:971.790000px;}
.y10{bottom:975.210000px;}
.y4d{bottom:975.930000px;}
.yc7{bottom:985.290000px;}
.y8e{bottom:988.710000px;}
.yf{bottom:992.490000px;}
.y4c{bottom:993.210000px;}
.yc5{bottom:1007.070000px;}
.y8d{bottom:1007.430000px;}
.ye{bottom:1009.770000px;}
.y4b{bottom:1010.490000px;}
.y8c{bottom:1024.710000px;}
.yd{bottom:1027.590000px;}
.yc4{bottom:1028.850000px;}
.y8b{bottom:1041.990000px;}
.yc{bottom:1044.870000px;}
.yc3{bottom:1050.450000px;}
.y8a{bottom:1059.090000px;}
.y115{bottom:1061.790000px;}
.yb{bottom:1062.150000px;}
.yc2{bottom:1072.230000px;}
.y89{bottom:1076.370000px;}
.y14d{bottom:1079.070000px;}
.y4a{bottom:1079.430000px;}
.ya{bottom:1079.790000px;}
.y88{bottom:1093.290000px;}
.y111{bottom:1096.350000px;}
.y49{bottom:1096.710000px;}
.y9{bottom:1100.490000px;}
.y48{bottom:1113.990000px;}
.y87{bottom:1115.070000px;}
.y8{bottom:1121.190000px;}
.y47{bottom:1131.090000px;}
.y85{bottom:1136.880000px;}
.y7{bottom:1141.920000px;}
.y46{bottom:1148.400000px;}
.y83{bottom:1158.480000px;}
.y6{bottom:1162.620000px;}
.y45{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.h9{height:17.100000px;}
.hd{height:17.136000px;}
.ha{height:17.280000px;}
.hb{height:17.316000px;}
.hc{height:34.560000px;}
.h7{height:41.726953px;}
.h2{height:58.621992px;}
.h5{height:58.651172px;}
.h6{height:60.226875px;}
.h8{height:61.423863px;}
.h4{height:65.884219px;}
.h3{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:51.696000px;}
.w11{width:56.556000px;}
.w8{width:61.776000px;}
.w14{width:75.096000px;}
.w4{width:87.156000px;}
.w7{width:88.560000px;}
.w1a{width:90.216000px;}
.w1c{width:114.840000px;}
.w1d{width:114.876000px;}
.w17{width:120.240000px;}
.w1b{width:122.076000px;}
.w1e{width:125.136000px;}
.w9{width:125.316000px;}
.w6{width:140.976000px;}
.we{width:154.110000px;}
.w5{width:157.170000px;}
.w15{width:169.230000px;}
.wc{width:180.930000px;}
.w19{width:182.550000px;}
.wa{width:194.790000px;}
.wb{width:201.990000px;}
.w13{width:207.030000px;}
.wd{width:227.595000px;}
.w2{width:261.795000px;}
.w12{width:329.295000px;}
.wf{width:351.615000px;}
.w10{width:366.915000px;}
.w3{width:430.815000px;}
.w16{width:611.070000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:1.080000px;}
.x69{left:4.140000px;}
.x1c{left:6.480000px;}
.x33{left:7.605000px;}
.x1d{left:8.820000px;}
.x1b{left:10.440000px;}
.x27{left:11.730000px;}
.x24{left:13.140000px;}
.x44{left:14.400000px;}
.x22{left:16.560000px;}
.x46{left:18.180000px;}
.x15{left:19.800000px;}
.x3c{left:21.780000px;}
.x2d{left:23.430000px;}
.x14{left:24.840000px;}
.x49{left:26.460000px;}
.x5a{left:28.080000px;}
.x17{left:30.420000px;}
.x3a{left:32.256000px;}
.x3d{left:33.516000px;}
.x3b{left:35.316000px;}
.x2c{left:36.720000px;}
.x6b{left:40.500000px;}
.x36{left:43.416000px;}
.x4e{left:44.640000px;}
.x6c{left:45.720000px;}
.x5d{left:46.980000px;}
.x6a{left:49.500000px;}
.x4c{left:52.920000px;}
.x5{left:54.000000px;}
.x21{left:56.700000px;}
.x2e{left:58.680000px;}
.x31{left:60.840000px;}
.x30{left:63.936000px;}
.x2b{left:66.645000px;}
.x53{left:67.680000px;}
.x16{left:70.020000px;}
.x4a{left:72.210000px;}
.x39{left:73.260000px;}
.x37{left:77.265000px;}
.xe{left:81.000000px;}
.x1e{left:84.960000px;}
.x52{left:86.610000px;}
.x45{left:87.690000px;}
.x2f{left:89.820000px;}
.x51{left:91.836000px;}
.x3e{left:96.870000px;}
.x63{left:99.036000px;}
.x38{left:100.650000px;}
.x1a{left:102.960000px;}
.x48{left:104.430000px;}
.x10{left:105.510000px;}
.x6d{left:108.036000px;}
.x55{left:109.470000px;}
.x19{left:114.660000px;}
.x54{left:131.250000px;}
.x4d{left:134.130000px;}
.x18{left:137.730000px;}
.x62{left:141.690000px;}
.x40{left:145.830000px;}
.x42{left:153.750000px;}
.x1f{left:158.610000px;}
.x61{left:161.670000px;}
.x56{left:164.550000px;}
.x57{left:165.630000px;}
.x4b{left:173.730000px;}
.x47{left:175.890000px;}
.x20{left:184.350000px;}
.xf{left:187.590000px;}
.x12{left:193.530000px;}
.x3f{left:204.690000px;}
.x7{left:214.590000px;}
.x23{left:216.030000px;}
.x6{left:218.550000px;}
.x5f{left:220.575000px;}
.x5e{left:224.535000px;}
.x60{left:230.655000px;}
.x5c{left:244.515000px;}
.xb{left:246.450000px;}
.xc{left:247.890000px;}
.x64{left:251.130000px;}
.x3{left:254.550000px;}
.x32{left:265.170000px;}
.x58{left:277.635000px;}
.x9{left:298.335000px;}
.x2{left:300.675000px;}
.x11{left:318.495000px;}
.x65{left:343.515000px;}
.x1{left:352.695000px;}
.x25{left:359.355000px;}
.x8{left:384.015000px;}
.x41{left:410.655000px;}
.xa{left:425.955000px;}
.xd{left:445.395000px;}
.x34{left:448.275000px;}
.x26{left:450.075000px;}
.x66{left:467.745000px;}
.x28{left:514.185000px;}
.x67{left:584.745000px;}
.x4f{left:593.565000px;}
.x29{left:641.670000px;}
.x59{left:666.150000px;}
.x50{left:671.010000px;}
.x35{left:678.210000px;}
.x68{left:701.790000px;}
.x13{left:751.470000px;}
.x43{left:779.910000px;}
.x5b{left:788.550000px;}
.x4{left:812.130000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.050667pt;}
.lsd{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.456533pt;}
.lsb{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.592000pt;}
.lsf{letter-spacing:14.672640pt;}
.lse{letter-spacing:40.912640pt;}
.ls7{letter-spacing:57.040640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws3{word-spacing:0.000000pt;}
._17{margin-left:-1.938560pt;}
._2{margin-left:-0.981333pt;}
._0{width:1.062400pt;}
._1{width:2.009387pt;}
._7{width:3.665280pt;}
._3{width:4.833920pt;}
._4{width:5.921493pt;}
._11{width:6.922667pt;}
._10{width:8.127360pt;}
._6{width:9.135360pt;}
._5{width:10.199040pt;}
._14{width:11.209813pt;}
._c{width:12.136533pt;}
._12{width:14.554880pt;}
._a{width:15.457920pt;}
._9{width:16.573440pt;}
._b{width:18.050133pt;}
._15{width:19.452587pt;}
._d{width:20.398080pt;}
._13{width:21.779200pt;}
._18{width:22.947840pt;}
._16{width:24.116480pt;}
._f{width:25.703467pt;}
._e{width:27.215360pt;}
._8{width:178.848000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.yca{bottom:-4.480000pt;}
.yc6{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:2.880000pt;}
.y84{bottom:3.040000pt;}
.yb2{bottom:3.080000pt;}
.y86{bottom:3.200000pt;}
.y7f{bottom:3.360000pt;}
.y5{bottom:4.000000pt;}
.y129{bottom:10.720000pt;}
.yb8{bottom:11.040000pt;}
.y12a{bottom:18.400000pt;}
.yb7{bottom:18.720000pt;}
.y4{bottom:21.440000pt;}
.y127{bottom:51.360000pt;}
.yf8{bottom:58.400000pt;}
.y14b{bottom:59.360000pt;}
.y82{bottom:62.080000pt;}
.y126{bottom:66.720000pt;}
.y44{bottom:68.800000pt;}
.y110{bottom:70.080000pt;}
.yf7{bottom:73.760000pt;}
.yc1{bottom:73.920000pt;}
.y14a{bottom:74.720000pt;}
.y81{bottom:81.440000pt;}
.y125{bottom:82.080000pt;}
.y43{bottom:84.160000pt;}
.y10f{bottom:85.440000pt;}
.yf6{bottom:89.152000pt;}
.yc0{bottom:89.312000pt;}
.y149{bottom:90.112000pt;}
.y124{bottom:97.472000pt;}
.y42{bottom:99.392000pt;}
.y80{bottom:100.832000pt;}
.ybf{bottom:104.192000pt;}
.yf5{bottom:104.512000pt;}
.y148{bottom:105.472000pt;}
.y123{bottom:112.832000pt;}
.y41{bottom:114.752000pt;}
.y10e{bottom:116.192000pt;}
.yf4{bottom:119.872000pt;}
.y7e{bottom:120.192000pt;}
.ybe{bottom:120.832000pt;}
.y122{bottom:128.032000pt;}
.y40{bottom:130.112000pt;}
.y10d{bottom:131.392000pt;}
.yf3{bottom:135.066667pt;}
.y147{bottom:136.026667pt;}
.ybd{bottom:136.186667pt;}
.y7c{bottom:139.546667pt;}
.y121{bottom:143.386667pt;}
.y3f{bottom:145.466667pt;}
.y10c{bottom:146.746667pt;}
.yf2{bottom:150.106667pt;}
.y146{bottom:151.386667pt;}
.ybc{bottom:151.546667pt;}
.y120{bottom:158.746667pt;}
.y3e{bottom:160.826667pt;}
.y7b{bottom:161.146667pt;}
.y10b{bottom:162.106667pt;}
.yf1{bottom:165.786667pt;}
.ybb{bottom:166.586667pt;}
.y145{bottom:166.746667pt;}
.y11f{bottom:173.786667pt;}
.y3d{bottom:176.026667pt;}
.y7a{bottom:176.506667pt;}
.y10a{bottom:177.466667pt;}
.yf0{bottom:181.146667pt;}
.y144{bottom:182.106667pt;}
.yba{bottom:185.786667pt;}
.y3c{bottom:191.386667pt;}
.y79{bottom:191.866667pt;}
.y109{bottom:192.826667pt;}
.y11e{bottom:193.146667pt;}
.yef{bottom:196.506667pt;}
.y143{bottom:197.466667pt;}
.yb9{bottom:205.146667pt;}
.y3b{bottom:206.746667pt;}
.y78{bottom:207.066667pt;}
.y108{bottom:208.026667pt;}
.yee{bottom:211.866667pt;}
.y11d{bottom:212.506667pt;}
.y142{bottom:212.826667pt;}
.y3a{bottom:222.106667pt;}
.y77{bottom:222.426667pt;}
.y107{bottom:223.386667pt;}
.yb6{bottom:224.506667pt;}
.yed{bottom:227.066667pt;}
.y141{bottom:228.026667pt;}
.y11c{bottom:231.706667pt;}
.y39{bottom:237.466667pt;}
.y76{bottom:237.786667pt;}
.y106{bottom:238.746667pt;}
.yec{bottom:242.426667pt;}
.y140{bottom:243.386667pt;}
.y11b{bottom:251.066667pt;}
.y38{bottom:252.826667pt;}
.y75{bottom:253.146667pt;}
.y105{bottom:254.106667pt;}
.yeb{bottom:257.786667pt;}
.y13f{bottom:258.746667pt;}
.yb5{bottom:259.226667pt;}
.y37{bottom:268.026667pt;}
.y74{bottom:268.506667pt;}
.y114{bottom:269.146667pt;}
.y104{bottom:269.466667pt;}
.y11a{bottom:270.426667pt;}
.yea{bottom:273.146667pt;}
.y13e{bottom:274.106667pt;}
.yb4{bottom:278.586667pt;}
.y36{bottom:283.386667pt;}
.y73{bottom:283.866667pt;}
.y103{bottom:284.826667pt;}
.ye9{bottom:288.506667pt;}
.y13d{bottom:289.466667pt;}
.y119{bottom:289.786667pt;}
.yb3{bottom:297.786667pt;}
.y35{bottom:298.746667pt;}
.y72{bottom:299.066667pt;}
.y102{bottom:300.026667pt;}
.ye8{bottom:303.866667pt;}
.y13c{bottom:304.826667pt;}
.y118{bottom:309.146667pt;}
.y34{bottom:314.106667pt;}
.y71{bottom:314.426667pt;}
.y14c{bottom:315.066667pt;}
.y101{bottom:315.386667pt;}
.yb1{bottom:317.146667pt;}
.ye7{bottom:319.106667pt;}
.y13b{bottom:320.066667pt;}
.y33{bottom:329.506667pt;}
.y70{bottom:329.826667pt;}
.y100{bottom:330.786667pt;}
.ye6{bottom:334.466667pt;}
.y13a{bottom:335.426667pt;}
.yb0{bottom:338.946667pt;}
.y32{bottom:344.866667pt;}
.y6f{bottom:345.186667pt;}
.yff{bottom:345.826667pt;}
.y113{bottom:346.146667pt;}
.ye5{bottom:349.506667pt;}
.y139{bottom:350.786667pt;}
.yaf{bottom:354.146667pt;}
.y31{bottom:360.066667pt;}
.y6e{bottom:360.546667pt;}
.yfe{bottom:361.506667pt;}
.ye4{bottom:365.186667pt;}
.y138{bottom:366.146667pt;}
.yae{bottom:369.506667pt;}
.y30{bottom:375.426667pt;}
.y6d{bottom:375.586667pt;}
.yfd{bottom:376.866667pt;}
.ye3{bottom:380.546667pt;}
.y137{bottom:381.506667pt;}
.yad{bottom:384.866667pt;}
.y2f{bottom:390.786667pt;}
.y6c{bottom:391.746667pt;}
.yfc{bottom:392.066667pt;}
.ye2{bottom:395.906667pt;}
.y136{bottom:396.866667pt;}
.yac{bottom:400.226667pt;}
.y2e{bottom:406.146667pt;}
.y6b{bottom:407.426667pt;}
.ye1{bottom:411.106667pt;}
.y135{bottom:412.066667pt;}
.yab{bottom:415.586667pt;}
.y2d{bottom:421.506667pt;}
.yfb{bottom:422.466667pt;}
.y6a{bottom:422.786667pt;}
.ye0{bottom:426.466667pt;}
.y134{bottom:427.426667pt;}
.yaa{bottom:430.946667pt;}
.y2c{bottom:436.866667pt;}
.y69{bottom:438.146667pt;}
.ydf{bottom:441.506667pt;}
.y133{bottom:442.786667pt;}
.ya9{bottom:446.146667pt;}
.y2b{bottom:452.066667pt;}
.y117{bottom:453.186667pt;}
.y68{bottom:453.506667pt;}
.y132{bottom:458.146667pt;}
.yde{bottom:460.866667pt;}
.ya8{bottom:461.506667pt;}
.y2a{bottom:467.426667pt;}
.y67{bottom:468.706667pt;}
.y131{bottom:473.506667pt;}
.ya7{bottom:476.866667pt;}
.ydd{bottom:480.226667pt;}
.y29{bottom:482.786667pt;}
.y66{bottom:484.066667pt;}
.y130{bottom:488.706667pt;}
.ya6{bottom:492.226667pt;}
.y28{bottom:498.146667pt;}
.y65{bottom:499.426667pt;}
.y12f{bottom:503.746667pt;}
.ya5{bottom:507.586667pt;}
.y27{bottom:513.506667pt;}
.y64{bottom:514.786667pt;}
.ydc{bottom:518.786667pt;}
.ya4{bottom:522.466667pt;}
.y26{bottom:528.706667pt;}
.y63{bottom:530.146667pt;}
.ydb{bottom:538.146667pt;}
.y12e{bottom:538.466667pt;}
.ya3{bottom:539.106667pt;}
.y25{bottom:544.066667pt;}
.y62{bottom:545.506667pt;}
.ya2{bottom:554.493333pt;}
.yda{bottom:557.533333pt;}
.y12d{bottom:557.853333pt;}
.y24{bottom:559.453333pt;}
.y116{bottom:560.413333pt;}
.y61{bottom:560.733333pt;}
.ya1{bottom:569.853333pt;}
.y23{bottom:574.493333pt;}
.y60{bottom:576.093333pt;}
.yd9{bottom:576.893333pt;}
.y12c{bottom:577.213333pt;}
.ya0{bottom:585.213333pt;}
.y22{bottom:590.173333pt;}
.y5f{bottom:591.453333pt;}
.yd8{bottom:596.253333pt;}
.y12b{bottom:596.413333pt;}
.y9f{bottom:600.253333pt;}
.y21{bottom:605.533333pt;}
.y112{bottom:606.493333pt;}
.y5e{bottom:606.813333pt;}
.y128{bottom:615.773333pt;}
.yd7{bottom:617.853333pt;}
.y9e{bottom:619.453333pt;}
.y20{bottom:620.733333pt;}
.y5d{bottom:622.173333pt;}
.yd6{bottom:633.213333pt;}
.y1f{bottom:636.093333pt;}
.y5c{bottom:637.533333pt;}
.y9d{bottom:638.813333pt;}
.yd5{bottom:648.573333pt;}
.y1e{bottom:651.453333pt;}
.y5b{bottom:652.733333pt;}
.y9c{bottom:658.173333pt;}
.yd4{bottom:663.773333pt;}
.y1d{bottom:666.813333pt;}
.y5a{bottom:668.093333pt;}
.yd3{bottom:679.133333pt;}
.y9b{bottom:679.773333pt;}
.y1c{bottom:682.173333pt;}
.y59{bottom:683.453333pt;}
.yd2{bottom:694.493333pt;}
.y9a{bottom:695.133333pt;}
.y1b{bottom:697.533333pt;}
.y58{bottom:698.813333pt;}
.yd1{bottom:709.853333pt;}
.y99{bottom:710.493333pt;}
.y1a{bottom:712.733333pt;}
.y57{bottom:714.173333pt;}
.yd0{bottom:725.213333pt;}
.y98{bottom:725.853333pt;}
.y19{bottom:728.093333pt;}
.y56{bottom:729.533333pt;}
.ycf{bottom:740.093333pt;}
.y97{bottom:741.213333pt;}
.y18{bottom:743.453333pt;}
.y55{bottom:744.413333pt;}
.yfa{bottom:744.733333pt;}
.y96{bottom:756.573333pt;}
.yce{bottom:756.733333pt;}
.y17{bottom:758.813333pt;}
.y54{bottom:760.093333pt;}
.y95{bottom:771.773333pt;}
.ycd{bottom:772.093333pt;}
.y16{bottom:774.173333pt;}
.y53{bottom:775.453333pt;}
.y94{bottom:787.173333pt;}
.ycc{bottom:787.493333pt;}
.y15{bottom:789.093333pt;}
.y52{bottom:790.853333pt;}
.y93{bottom:802.533333pt;}
.ycb{bottom:802.853333pt;}
.y14{bottom:805.093333pt;}
.y51{bottom:806.213333pt;}
.y92{bottom:817.893333pt;}
.y13{bottom:820.773333pt;}
.y50{bottom:821.413333pt;}
.y91{bottom:833.253333pt;}
.y12{bottom:836.133333pt;}
.y4f{bottom:836.773333pt;}
.yc9{bottom:837.093333pt;}
.y90{bottom:848.453333pt;}
.y11{bottom:851.493333pt;}
.y4e{bottom:851.813333pt;}
.yf9{bottom:852.133333pt;}
.yc8{bottom:856.453333pt;}
.y8f{bottom:863.813333pt;}
.y10{bottom:866.853333pt;}
.y4d{bottom:867.493333pt;}
.yc7{bottom:875.813333pt;}
.y8e{bottom:878.853333pt;}
.yf{bottom:882.213333pt;}
.y4c{bottom:882.853333pt;}
.yc5{bottom:895.173333pt;}
.y8d{bottom:895.493333pt;}
.ye{bottom:897.573333pt;}
.y4b{bottom:898.213333pt;}
.y8c{bottom:910.853333pt;}
.yd{bottom:913.413333pt;}
.yc4{bottom:914.533333pt;}
.y8b{bottom:926.213333pt;}
.yc{bottom:928.773333pt;}
.yc3{bottom:933.733333pt;}
.y8a{bottom:941.413333pt;}
.y115{bottom:943.813333pt;}
.yb{bottom:944.133333pt;}
.yc2{bottom:953.093333pt;}
.y89{bottom:956.773333pt;}
.y14d{bottom:959.173333pt;}
.y4a{bottom:959.493333pt;}
.ya{bottom:959.813333pt;}
.y88{bottom:971.813333pt;}
.y111{bottom:974.533333pt;}
.y49{bottom:974.853333pt;}
.y9{bottom:978.213333pt;}
.y48{bottom:990.213333pt;}
.y87{bottom:991.173333pt;}
.y8{bottom:996.613333pt;}
.y47{bottom:1005.413333pt;}
.y85{bottom:1010.560000pt;}
.y7{bottom:1015.040000pt;}
.y46{bottom:1020.800000pt;}
.y83{bottom:1029.760000pt;}
.y6{bottom:1033.440000pt;}
.y45{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.h9{height:15.200000pt;}
.hd{height:15.232000pt;}
.ha{height:15.360000pt;}
.hb{height:15.392000pt;}
.hc{height:30.720000pt;}
.h7{height:37.090625pt;}
.h2{height:52.108438pt;}
.h5{height:52.134375pt;}
.h6{height:53.535000pt;}
.h8{height:54.598989pt;}
.h4{height:58.563750pt;}
.h3{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:45.952000pt;}
.w11{width:50.272000pt;}
.w8{width:54.912000pt;}
.w14{width:66.752000pt;}
.w4{width:77.472000pt;}
.w7{width:78.720000pt;}
.w1a{width:80.192000pt;}
.w1c{width:102.080000pt;}
.w1d{width:102.112000pt;}
.w17{width:106.880000pt;}
.w1b{width:108.512000pt;}
.w1e{width:111.232000pt;}
.w9{width:111.392000pt;}
.w6{width:125.312000pt;}
.we{width:136.986667pt;}
.w5{width:139.706667pt;}
.w15{width:150.426667pt;}
.wc{width:160.826667pt;}
.w19{width:162.266667pt;}
.wa{width:173.146667pt;}
.wb{width:179.546667pt;}
.w13{width:184.026667pt;}
.wd{width:202.306667pt;}
.w2{width:232.706667pt;}
.w12{width:292.706667pt;}
.wf{width:312.546667pt;}
.w10{width:326.146667pt;}
.w3{width:382.946667pt;}
.w16{width:543.173333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:0.960000pt;}
.x69{left:3.680000pt;}
.x1c{left:5.760000pt;}
.x33{left:6.760000pt;}
.x1d{left:7.840000pt;}
.x1b{left:9.280000pt;}
.x27{left:10.426667pt;}
.x24{left:11.680000pt;}
.x44{left:12.800000pt;}
.x22{left:14.720000pt;}
.x46{left:16.160000pt;}
.x15{left:17.600000pt;}
.x3c{left:19.360000pt;}
.x2d{left:20.826667pt;}
.x14{left:22.080000pt;}
.x49{left:23.520000pt;}
.x5a{left:24.960000pt;}
.x17{left:27.040000pt;}
.x3a{left:28.672000pt;}
.x3d{left:29.792000pt;}
.x3b{left:31.392000pt;}
.x2c{left:32.640000pt;}
.x6b{left:36.000000pt;}
.x36{left:38.592000pt;}
.x4e{left:39.680000pt;}
.x6c{left:40.640000pt;}
.x5d{left:41.760000pt;}
.x6a{left:44.000000pt;}
.x4c{left:47.040000pt;}
.x5{left:48.000000pt;}
.x21{left:50.400000pt;}
.x2e{left:52.160000pt;}
.x31{left:54.080000pt;}
.x30{left:56.832000pt;}
.x2b{left:59.240000pt;}
.x53{left:60.160000pt;}
.x16{left:62.240000pt;}
.x4a{left:64.186667pt;}
.x39{left:65.120000pt;}
.x37{left:68.680000pt;}
.xe{left:72.000000pt;}
.x1e{left:75.520000pt;}
.x52{left:76.986667pt;}
.x45{left:77.946667pt;}
.x2f{left:79.840000pt;}
.x51{left:81.632000pt;}
.x3e{left:86.106667pt;}
.x63{left:88.032000pt;}
.x38{left:89.466667pt;}
.x1a{left:91.520000pt;}
.x48{left:92.826667pt;}
.x10{left:93.786667pt;}
.x6d{left:96.032000pt;}
.x55{left:97.306667pt;}
.x19{left:101.920000pt;}
.x54{left:116.666667pt;}
.x4d{left:119.226667pt;}
.x18{left:122.426667pt;}
.x62{left:125.946667pt;}
.x40{left:129.626667pt;}
.x42{left:136.666667pt;}
.x1f{left:140.986667pt;}
.x61{left:143.706667pt;}
.x56{left:146.266667pt;}
.x57{left:147.226667pt;}
.x4b{left:154.426667pt;}
.x47{left:156.346667pt;}
.x20{left:163.866667pt;}
.xf{left:166.746667pt;}
.x12{left:172.026667pt;}
.x3f{left:181.946667pt;}
.x7{left:190.746667pt;}
.x23{left:192.026667pt;}
.x6{left:194.266667pt;}
.x5f{left:196.066667pt;}
.x5e{left:199.586667pt;}
.x60{left:205.026667pt;}
.x5c{left:217.346667pt;}
.xb{left:219.066667pt;}
.xc{left:220.346667pt;}
.x64{left:223.226667pt;}
.x3{left:226.266667pt;}
.x32{left:235.706667pt;}
.x58{left:246.786667pt;}
.x9{left:265.186667pt;}
.x2{left:267.266667pt;}
.x11{left:283.106667pt;}
.x65{left:305.346667pt;}
.x1{left:313.506667pt;}
.x25{left:319.426667pt;}
.x8{left:341.346667pt;}
.x41{left:365.026667pt;}
.xa{left:378.626667pt;}
.xd{left:395.906667pt;}
.x34{left:398.466667pt;}
.x26{left:400.066667pt;}
.x66{left:415.773333pt;}
.x28{left:457.053333pt;}
.x67{left:519.773333pt;}
.x4f{left:527.613333pt;}
.x29{left:570.373333pt;}
.x59{left:592.133333pt;}
.x50{left:596.453333pt;}
.x35{left:602.853333pt;}
.x68{left:623.813333pt;}
.x13{left:667.973333pt;}
.x43{left:693.253333pt;}
.x5b{left:700.933333pt;}
.x4{left:721.893333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  