
    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_23395042de4eeea1b2f824cc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_4adb52e78239d5a0a38562e8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939941;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_4744d2a8888179fd6158f9b8.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8f029ef2cdfc8dfdd84f79d4.woff')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_58054634e47f718ec6bc222c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_b6f4bac02b5fed23fafbdbee.woff')format("woff");}.ff6{font-family:ff6;line-height:0.767578;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_de97c69fb5843a1eacbb6b11.woff')format("woff");}.ff7{font-family:ff7;line-height:0.969238;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_5f0b5c4e56565bfac79fb87d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.939941;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls1a{letter-spacing:-0.942000px;}
.ls4{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.457800px;}
.ls15{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.224400px;}
.lsd{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.152400px;}
.lsa{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.109200px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.109200px;}
.ls10{letter-spacing:0.152400px;}
.lse{letter-spacing:0.153600px;}
.ls7{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.256200px;}
.ls17{letter-spacing:0.262080px;}
.lsc{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.ls6{letter-spacing:3.600000px;}
.ls1{letter-spacing:7.380000px;}
.ls2{letter-spacing:10.800000px;}
.ls13{letter-spacing:20.160000px;}
.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;}
}
.ws7{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.280000px;}
.wsd{word-spacing:-16.712400px;}
.ws12{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.450800px;}
.ws13{word-spacing:-16.335600px;}
.ws10{word-spacing:-16.254600px;}
.wsa{word-spacing:-16.102200px;}
.ws14{word-spacing:-15.618000px;}
.wsb{word-spacing:-15.300000px;}
.wse{word-spacing:-15.226440px;}
.wsc{word-spacing:-15.093600px;}
.wsf{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws15{word-spacing:-10.440000px;}
.ws2{word-spacing:0.000000px;}
._13{margin-left:-4.140000px;}
._12{margin-left:-2.988000px;}
._2{margin-left:-1.152000px;}
._0{width:1.008000px;}
._1{width:2.232000px;}
._6{width:3.420000px;}
._8{width:4.608000px;}
._7{width:5.760000px;}
._14{width:7.056000px;}
._4{width:8.352000px;}
._5{width:9.420000px;}
._3{width:10.512000px;}
._15{width:11.784000px;}
._16{width:13.140000px;}
._c{width:15.264000px;}
._d{width:16.332000px;}
._9{width:17.820000px;}
._a{width:20.016000px;}
._b{width:21.456000px;}
._17{width:22.896000px;}
._e{width:32.220000px;}
._11{width:33.552000px;}
._10{width:34.992000px;}
._f{width:36.000000px;}
.fc4{color:rgb(32,33,34);}
.fc1{color:rgb(17,85,204);}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:3.960000px;}
.y5c{bottom:3.990000px;}
.y72{bottom:11.880000px;}
.y65{bottom:12.960000px;}
.yfb{bottom:12.990000px;}
.y108{bottom:13.005000px;}
.y8e{bottom:13.134000px;}
.y69{bottom:13.140000px;}
.yf2{bottom:13.320000px;}
.y103{bottom:13.500000px;}
.ybb{bottom:14.214000px;}
.y33{bottom:14.220000px;}
.y36{bottom:14.400000px;}
.yca{bottom:14.760000px;}
.y6c{bottom:23.400000px;}
.y4e{bottom:24.660000px;}
.y6f{bottom:24.840000px;}
.yea{bottom:26.820000px;}
.y63{bottom:27.180000px;}
.yf0{bottom:27.225000px;}
.y8f{bottom:27.354000px;}
.y67{bottom:27.360000px;}
.ydb{bottom:27.540000px;}
.y31{bottom:29.700000px;}
.y38{bottom:29.880000px;}
.y6d{bottom:37.620000px;}
.y71{bottom:37.800000px;}
.y64{bottom:41.400000px;}
.y92{bottom:41.430000px;}
.y9a{bottom:41.445000px;}
.y8d{bottom:41.574000px;}
.y68{bottom:41.580000px;}
.y9c{bottom:41.760000px;}
.y7f{bottom:41.940000px;}
.y76{bottom:42.120000px;}
.y8a{bottom:42.294000px;}
.y94{bottom:42.300000px;}
.y84{bottom:42.345000px;}
.yba{bottom:45.354000px;}
.y32{bottom:45.360000px;}
.yc6{bottom:45.405000px;}
.y43{bottom:46.260000px;}
.y6e{bottom:50.580000px;}
.y6b{bottom:51.840000px;}
.yd7{bottom:55.845000px;}
.yda{bottom:55.980000px;}
.y2{bottom:57.636000px;}
.y44{bottom:61.740000px;}
.y70{bottom:63.540000px;}
.ye6{bottom:70.020000px;}
.yd8{bottom:70.065000px;}
.y7b{bottom:70.560000px;}
.y89{bottom:70.734000px;}
.y75{bottom:70.740000px;}
.y83{bottom:70.785000px;}
.yb9{bottom:76.314000px;}
.yc5{bottom:76.365000px;}
.yab{bottom:76.500000px;}
.y42{bottom:77.220000px;}
.y1{bottom:77.616000px;}
.ye4{bottom:84.420000px;}
.y88{bottom:99.174000px;}
.y74{bottom:99.180000px;}
.y7a{bottom:99.210000px;}
.y82{bottom:99.225000px;}
.y142{bottom:106.956000px;}
.yb8{bottom:107.454000px;}
.yaa{bottom:107.460000px;}
.yc4{bottom:107.505000px;}
.y87{bottom:111.276000px;}
.ybc{bottom:113.076000px;}
.y2f{bottom:115.056000px;}
.y10c{bottom:124.596000px;}
.y141{bottom:137.916000px;}
.yb7{bottom:138.459000px;}
.yc3{bottom:138.465000px;}
.ya9{bottom:138.600000px;}
.y8c{bottom:140.436000px;}
.y138{bottom:143.136000px;}
.yad{bottom:144.936000px;}
.y2e{bottom:146.196000px;}
.y10a{bottom:153.750000px;}
.yed{bottom:161.490000px;}
.y140{bottom:169.050000px;}
.ya8{bottom:169.560000px;}
.yb6{bottom:169.599000px;}
.yc2{bottom:169.605000px;}
.y2d{bottom:177.150000px;}
.y10b{bottom:182.910000px;}
.y137{bottom:188.130000px;}
.yec{bottom:190.830000px;}
.y8b{bottom:198.210000px;}
.y13f{bottom:199.290000px;}
.yb5{bottom:200.559000px;}
.yc1{bottom:200.565000px;}
.ya7{bottom:200.700000px;}
.y2c{bottom:208.290000px;}
.y109{bottom:212.070000px;}
.y2b{bottom:215.130000px;}
.y136{bottom:219.090000px;}
.yeb{bottom:219.990000px;}
.ya6{bottom:231.660000px;}
.yb4{bottom:231.699000px;}
.yc0{bottom:231.705000px;}
.y2a{bottom:239.250000px;}
.y106{bottom:241.410000px;}
.ye8{bottom:249.150000px;}
.y135{bottom:249.510000px;}
.y81{bottom:255.810000px;}
.yb3{bottom:262.659000px;}
.ybf{bottom:262.665000px;}
.ya5{bottom:262.845000px;}
.y29{bottom:270.390000px;}
.y107{bottom:270.570000px;}
.y28{bottom:277.230000px;}
.y86{bottom:285.195000px;}
.yb2{bottom:293.619000px;}
.ya4{bottom:293.805000px;}
.y105{bottom:299.775000px;}
.y27{bottom:301.395000px;}
.ye9{bottom:306.075000px;}
.yb1{bottom:324.759000px;}
.ybe{bottom:324.795000px;}
.ya3{bottom:324.945000px;}
.y102{bottom:328.935000px;}
.y26{bottom:332.535000px;}
.ye7{bottom:335.415000px;}
.y25{bottom:339.375000px;}
.y85{bottom:342.795000px;}
.yb0{bottom:355.719000px;}
.ya2{bottom:355.905000px;}
.y104{bottom:358.275000px;}
.y24{bottom:363.495000px;}
.ye3{bottom:364.575000px;}
.yaf{bottom:386.859000px;}
.ya1{bottom:387.045000px;}
.y101{bottom:387.435000px;}
.ye5{bottom:393.735000px;}
.y23{bottom:394.635000px;}
.y7e{bottom:400.395000px;}
.y22{bottom:401.475000px;}
.yff{bottom:416.595000px;}
.yae{bottom:417.819000px;}
.y21{bottom:425.595000px;}
.y80{bottom:429.735000px;}
.y100{bottom:445.935000px;}
.y12f{bottom:452.415000px;}
.y20{bottom:456.555000px;}
.y1f{bottom:463.395000px;}
.y3f{bottom:474.915000px;}
.yfe{bottom:475.095000px;}
.ye2{bottom:479.955000px;}
.y60{bottom:481.755000px;}
.y12e{bottom:484.095000px;}
.y79{bottom:487.335000px;}
.y1e{bottom:487.695000px;}
.y5f{bottom:498.135000px;}
.yfc{bottom:504.255000px;}
.y3e{bottom:506.775000px;}
.ye1{bottom:509.115000px;}
.y12d{bottom:515.955000px;}
.y7d{bottom:516.495000px;}
.y1d{bottom:518.655000px;}
.y5e{bottom:519.555000px;}
.y1c{bottom:525.495000px;}
.y124{bottom:525.855000px;}
.yfd{bottom:533.415000px;}
.y13e{bottom:539.355000px;}
.y5d{bottom:540.975000px;}
.y123{bottom:543.315000px;}
.y12c{bottom:547.815000px;}
.y1b{bottom:549.795000px;}
.y1a{bottom:556.635000px;}
.y4c{bottom:561.315000px;}
.y61{bottom:561.855000px;}
.y5b{bottom:562.395000px;}
.yfa{bottom:562.755000px;}
.ye0{bottom:566.745000px;}
.y3d{bottom:569.625000px;}
.y7c{bottom:574.305000px;}
.y122{bottom:575.025000px;}
.yd2{bottom:576.285000px;}
.y4b{bottom:578.805000px;}
.yac{bottom:580.425000px;}
.y19{bottom:580.785000px;}
.y5a{bottom:584.025000px;}
.y13d{bottom:584.385000px;}
.yf8{bottom:591.945000px;}
.yde{bottom:596.085000px;}
.y3c{bottom:601.485000px;}
.y59{bottom:605.445000px;}
.y121{bottom:606.885000px;}
.yd1{bottom:607.965000px;}
.y12b{bottom:609.945000px;}
.y18{bottom:611.925000px;}
.ya0{bottom:612.105000px;}
.y13c{bottom:615.345000px;}
.yf9{bottom:621.105000px;}
.y73{bottom:631.905000px;}
.y120{bottom:638.745000px;}
.yd0{bottom:639.825000px;}
.y4a{bottom:641.625000px;}
.y17{bottom:642.885000px;}
.y145{bottom:644.505000px;}
.y13b{bottom:646.485000px;}
.y58{bottom:647.565000px;}
.y16{bottom:649.725000px;}
.yf7{bottom:650.445000px;}
.ydf{bottom:653.685000px;}
.y78{bottom:661.065000px;}
.y3b{bottom:664.305000px;}
.y57{bottom:668.985000px;}
.y11f{bottom:670.425000px;}
.ycf{bottom:671.685000px;}
.y12a{bottom:673.485000px;}
.y15{bottom:674.025000px;}
.y144{bottom:675.465000px;}
.y9e{bottom:676.185000px;}
.y13a{bottom:677.445000px;}
.yf5{bottom:679.605000px;}
.ydd{bottom:682.845000px;}
.y9b{bottom:693.645000px;}
.y11e{bottom:702.285000px;}
.y143{bottom:702.465000px;}
.yce{bottom:703.365000px;}
.y49{bottom:704.625000px;}
.y14{bottom:704.985000px;}
.y139{bottom:707.685000px;}
.yf6{bottom:708.765000px;}
.y56{bottom:711.105000px;}
.y13{bottom:711.825000px;}
.yd9{bottom:712.185000px;}
.y77{bottom:718.845000px;}
.y9d{bottom:722.805000px;}
.y3a{bottom:727.125000px;}
.y134{bottom:730.365000px;}
.y55{bottom:732.525000px;}
.y11d{bottom:734.145000px;}
.ycd{bottom:735.225000px;}
.y129{bottom:735.585000px;}
.y12{bottom:736.125000px;}
.yf4{bottom:737.925000px;}
.y54{bottom:754.125000px;}
.y11c{bottom:765.825000px;}
.y11{bottom:767.085000px;}
.yf1{bottom:767.265000px;}
.y48{bottom:767.445000px;}
.ydc{bottom:769.785000px;}
.y133{bottom:772.665000px;}
.y10{bottom:773.925000px;}
.y53{bottom:775.545000px;}
.y6a{bottom:776.445000px;}
.y97{bottom:780.405000px;}
.y39{bottom:789.945000px;}
.yf3{bottom:796.425000px;}
.yc7{bottom:796.605000px;}
.y52{bottom:796.965000px;}
.y11b{bottom:797.685000px;}
.yf{bottom:798.225000px;}
.ycc{bottom:798.765000px;}
.yd6{bottom:798.945000px;}
.y47{bottom:799.125000px;}
.y132{bottom:803.625000px;}
.y99{bottom:809.745000px;}
.ybd{bottom:814.245000px;}
.y51{bottom:818.385000px;}
.yef{bottom:825.585000px;}
.ye{bottom:829.185000px;}
.y11a{bottom:829.545000px;}
.y128{bottom:830.265000px;}
.ycb{bottom:830.625000px;}
.y131{bottom:834.045000px;}
.y37{bottom:852.810000px;}
.y66{bottom:854.790000px;}
.yd{bottom:860.370000px;}
.y50{bottom:860.550000px;}
.y119{bottom:861.270000px;}
.y41{bottom:861.990000px;}
.yc9{bottom:862.530000px;}
.yc{bottom:867.210000px;}
.y98{bottom:867.390000px;}
.y116{bottom:876.030000px;}
.y4d{bottom:881.970000px;}
.yee{bottom:883.410000px;}
.yd5{bottom:885.210000px;}
.yb{bottom:891.330000px;}
.y127{bottom:892.410000px;}
.y118{bottom:893.130000px;}
.y115{bottom:893.670000px;}
.y46{bottom:893.850000px;}
.yc8{bottom:895.290000px;}
.y62{bottom:912.570000px;}
.yd4{bottom:914.370000px;}
.y35{bottom:915.630000px;}
.ya{bottom:922.470000px;}
.y113{bottom:922.830000px;}
.y126{bottom:923.370000px;}
.y93{bottom:924.990000px;}
.y45{bottom:925.710000px;}
.y34{bottom:947.490000px;}
.y114{bottom:951.990000px;}
.y9{bottom:953.430000px;}
.y96{bottom:954.330000px;}
.y125{bottom:955.230000px;}
.y117{bottom:956.670000px;}
.yd3{bottom:971.970000px;}
.y30{bottom:979.350000px;}
.y112{bottom:981.150000px;}
.y8{bottom:984.570000px;}
.y40{bottom:988.530000px;}
.y110{bottom:1010.490000px;}
.y95{bottom:1011.930000px;}
.y7{bottom:1015.530000px;}
.y9f{bottom:1016.610000px;}
.y111{bottom:1039.650000px;}
.y6{bottom:1046.670000px;}
.y10f{bottom:1068.810000px;}
.y90{bottom:1069.530000px;}
.y5{bottom:1077.630000px;}
.y10d{bottom:1098.150000px;}
.y91{bottom:1098.870000px;}
.y4{bottom:1108.770000px;}
.y10e{bottom:1127.310000px;}
.y3{bottom:1139.760000px;}
.y130{bottom:1140.840000px;}
.he{height:20.700000px;}
.h10{height:20.736000px;}
.h18{height:28.440000px;}
.h1c{height:28.476000px;}
.h1e{height:28.620000px;}
.h8{height:30.960000px;}
.h25{height:30.996000px;}
.h9{height:31.140000px;}
.h24{height:32.040000px;}
.h2f{height:40.948242px;}
.hd{height:41.400000px;}
.hf{height:41.436000px;}
.h6{height:43.246406px;}
.h13{height:47.965781px;}
.h26{height:49.906406px;}
.h3{height:52.136719px;}
.h16{height:53.573906px;}
.h20{height:54.246094px;}
.hc{height:54.773438px;}
.h2a{height:56.196000px;}
.h11{height:56.880000px;}
.h1a{height:56.916000px;}
.h14{height:57.060000px;}
.h2b{height:57.600000px;}
.h2e{height:57.636000px;}
.h2d{height:57.780000px;}
.h12{height:59.383125px;}
.h2c{height:61.197187px;}
.h7{height:62.100000px;}
.ha{height:62.136000px;}
.h4{height:64.546875px;}
.h2{height:65.884219px;}
.h5{height:70.606406px;}
.h15{height:77.616000px;}
.h29{height:85.500000px;}
.h27{height:85.536000px;}
.h1f{height:86.040000px;}
.h1b{height:86.220000px;}
.h1d{height:86.256000px;}
.h28{height:114.660000px;}
.hb{height:125.820000px;}
.h17{height:143.820000px;}
.h19{height:143.856000px;}
.h23{height:341.535000px;}
.h21{height:403.770000px;}
.h22{height:434.595000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w38{width:42.480000px;}
.w26{width:42.516000px;}
.w18{width:52.200000px;}
.w24{width:60.516000px;}
.w36{width:62.496000px;}
.w6{width:63.180000px;}
.w35{width:64.440000px;}
.w22{width:66.636000px;}
.wd{width:68.580000px;}
.w5{width:73.080000px;}
.w13{width:77.256000px;}
.w15{width:77.760000px;}
.w2d{width:79.956000px;}
.w1a{width:81.180000px;}
.w1e{width:81.216000px;}
.w1c{width:81.360000px;}
.w29{width:81.576000px;}
.w7{width:83.196000px;}
.w17{width:84.240000px;}
.w12{width:84.420000px;}
.w1b{width:86.976000px;}
.w31{width:88.596000px;}
.w21{width:92.520000px;}
.w32{width:95.436000px;}
.w16{width:99.756000px;}
.w2e{width:101.340000px;}
.w2f{width:101.376000px;}
.w11{width:102.636000px;}
.w28{width:103.500000px;}
.w33{width:105.120000px;}
.w23{width:105.300000px;}
.w9{width:107.316000px;}
.w2c{width:109.620000px;}
.w2a{width:110.700000px;}
.w2b{width:110.736000px;}
.w30{width:114.120000px;}
.w20{width:114.876000px;}
.w34{width:126.936000px;}
.w14{width:138.276000px;}
.w3a{width:147.960000px;}
.w3b{width:150.150000px;}
.we{width:156.630000px;}
.w1d{width:163.290000px;}
.w10{width:169.380000px;}
.w3c{width:184.710000px;}
.w39{width:208.290000px;}
.wb{width:222.150000px;}
.w4{width:222.330000px;}
.w8{width:222.510000px;}
.wc{width:243.930000px;}
.w37{width:274.350000px;}
.w25{width:299.550000px;}
.w19{width:327.315000px;}
.w1f{width:678.885000px;}
.wf{width:754.170000px;}
.wa{width:775.230000px;}
.w27{width:786.600000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.800000px;}
.x33{left:3.780000px;}
.x13{left:4.860000px;}
.x19{left:6.660000px;}
.x17{left:8.100000px;}
.x16{left:9.360000px;}
.x3b{left:10.440000px;}
.x18{left:11.520000px;}
.x14{left:12.960000px;}
.x2a{left:14.040000px;}
.x3f{left:15.480000px;}
.x1b{left:16.920000px;}
.xa{left:18.000000px;}
.x32{left:19.440000px;}
.xc{left:21.630000px;}
.x5b{left:23.040000px;}
.x11{left:24.300000px;}
.x3c{left:25.380000px;}
.x8{left:26.460000px;}
.x15{left:27.540000px;}
.x5a{left:28.980000px;}
.x51{left:30.060000px;}
.x1c{left:31.140000px;}
.x3e{left:32.220000px;}
.x52{left:33.840000px;}
.x25{left:34.920000px;}
.x2d{left:36.360000px;}
.x2b{left:37.440000px;}
.x1a{left:38.520000px;}
.x50{left:40.680000px;}
.x31{left:42.345000px;}
.x21{left:43.785000px;}
.x28{left:46.845000px;}
.x29{left:48.600000px;}
.x30{left:49.860000px;}
.x53{left:51.300000px;}
.x2e{left:53.100000px;}
.xf{left:57.780000px;}
.x2c{left:59.940000px;}
.x5{left:62.459973px;}
.xe{left:64.080000px;}
.x2f{left:68.940000px;}
.x3{left:70.919973px;}
.x4{left:79.379987px;}
.x48{left:90.900000px;}
.x49{left:92.520000px;}
.x6{left:95.976000px;}
.x61{left:103.140000px;}
.x2{left:106.415987px;}
.x46{left:115.740000px;}
.x36{left:129.825000px;}
.x5c{left:160.410000px;}
.x41{left:180.030000px;}
.x34{left:181.290000px;}
.x4a{left:211.530000px;}
.x54{left:217.470000px;}
.x35{left:234.390000px;}
.x5d{left:266.250000px;}
.x42{left:273.270000px;}
.x20{left:276.870000px;}
.x4b{left:293.835000px;}
.x55{left:298.155000px;}
.x63{left:314.715000px;}
.x3d{left:316.335000px;}
.x7{left:319.035000px;}
.x1d{left:330.015000px;}
.x43{left:340.635000px;}
.x22{left:380.415000px;}
.x9{left:392.835000px;}
.x5e{left:393.915000px;}
.x39{left:398.415000px;}
.x56{left:400.215000px;}
.x4c{left:405.255000px;}
.x44{left:446.835000px;}
.xb{left:456.735000px;}
.x5f{left:459.075000px;}
.x64{left:462.675000px;}
.x23{left:465.555000px;}
.x3a{left:480.345000px;}
.x57{left:502.305000px;}
.x45{left:508.065000px;}
.x4d{left:516.705000px;}
.x60{left:522.285000px;}
.xd{left:540.645000px;}
.x24{left:543.705000px;}
.x37{left:562.425000px;}
.x1e{left:574.665000px;}
.x65{left:612.825000px;}
.x58{left:617.145000px;}
.x4e{left:628.125000px;}
.x1f{left:643.965000px;}
.x26{left:682.710000px;}
.x59{left:706.470000px;}
.x38{left:732.210000px;}
.x4f{left:739.590000px;}
.x68{left:750.029987px;}
.x27{left:761.190000px;}
.x10{left:763.890000px;}
.x40{left:770.009987px;}
.x67{left:775.409987px;}
.x1{left:778.469987px;}
.x66{left:782.609987px;}
.x62{left:797.370000px;}
.x47{left:808.350000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls1a{letter-spacing:-0.837333pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.406933pt;}
.ls15{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.199467pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.135467pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.097067pt;}
.ls10{letter-spacing:0.135467pt;}
.lse{letter-spacing:0.136533pt;}
.ls7{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.227733pt;}
.ls17{letter-spacing:0.232960pt;}
.lsc{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls6{letter-spacing:3.200000pt;}
.ls1{letter-spacing:6.560000pt;}
.ls2{letter-spacing:9.600000pt;}
.ls13{letter-spacing:17.920000pt;}
.ws7{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.360000pt;}
.wsd{word-spacing:-14.855467pt;}
.ws12{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.622933pt;}
.ws13{word-spacing:-14.520533pt;}
.ws10{word-spacing:-14.448533pt;}
.wsa{word-spacing:-14.313067pt;}
.ws14{word-spacing:-13.882667pt;}
.wsb{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.534613pt;}
.wsc{word-spacing:-13.416533pt;}
.wsf{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws15{word-spacing:-9.280000pt;}
.ws2{word-spacing:0.000000pt;}
._13{margin-left:-3.680000pt;}
._12{margin-left:-2.656000pt;}
._2{margin-left:-1.024000pt;}
._0{width:0.896000pt;}
._1{width:1.984000pt;}
._6{width:3.040000pt;}
._8{width:4.096000pt;}
._7{width:5.120000pt;}
._14{width:6.272000pt;}
._4{width:7.424000pt;}
._5{width:8.373333pt;}
._3{width:9.344000pt;}
._15{width:10.474667pt;}
._16{width:11.680000pt;}
._c{width:13.568000pt;}
._d{width:14.517333pt;}
._9{width:15.840000pt;}
._a{width:17.792000pt;}
._b{width:19.072000pt;}
._17{width:20.352000pt;}
._e{width:28.640000pt;}
._11{width:29.824000pt;}
._10{width:31.104000pt;}
._f{width:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:3.520000pt;}
.y5c{bottom:3.546667pt;}
.y72{bottom:10.560000pt;}
.y65{bottom:11.520000pt;}
.yfb{bottom:11.546667pt;}
.y108{bottom:11.560000pt;}
.y8e{bottom:11.674667pt;}
.y69{bottom:11.680000pt;}
.yf2{bottom:11.840000pt;}
.y103{bottom:12.000000pt;}
.ybb{bottom:12.634667pt;}
.y33{bottom:12.640000pt;}
.y36{bottom:12.800000pt;}
.yca{bottom:13.120000pt;}
.y6c{bottom:20.800000pt;}
.y4e{bottom:21.920000pt;}
.y6f{bottom:22.080000pt;}
.yea{bottom:23.840000pt;}
.y63{bottom:24.160000pt;}
.yf0{bottom:24.200000pt;}
.y8f{bottom:24.314667pt;}
.y67{bottom:24.320000pt;}
.ydb{bottom:24.480000pt;}
.y31{bottom:26.400000pt;}
.y38{bottom:26.560000pt;}
.y6d{bottom:33.440000pt;}
.y71{bottom:33.600000pt;}
.y64{bottom:36.800000pt;}
.y92{bottom:36.826667pt;}
.y9a{bottom:36.840000pt;}
.y8d{bottom:36.954667pt;}
.y68{bottom:36.960000pt;}
.y9c{bottom:37.120000pt;}
.y7f{bottom:37.280000pt;}
.y76{bottom:37.440000pt;}
.y8a{bottom:37.594667pt;}
.y94{bottom:37.600000pt;}
.y84{bottom:37.640000pt;}
.yba{bottom:40.314667pt;}
.y32{bottom:40.320000pt;}
.yc6{bottom:40.360000pt;}
.y43{bottom:41.120000pt;}
.y6e{bottom:44.960000pt;}
.y6b{bottom:46.080000pt;}
.yd7{bottom:49.640000pt;}
.yda{bottom:49.760000pt;}
.y2{bottom:51.232000pt;}
.y44{bottom:54.880000pt;}
.y70{bottom:56.480000pt;}
.ye6{bottom:62.240000pt;}
.yd8{bottom:62.280000pt;}
.y7b{bottom:62.720000pt;}
.y89{bottom:62.874667pt;}
.y75{bottom:62.880000pt;}
.y83{bottom:62.920000pt;}
.yb9{bottom:67.834667pt;}
.yc5{bottom:67.880000pt;}
.yab{bottom:68.000000pt;}
.y42{bottom:68.640000pt;}
.y1{bottom:68.992000pt;}
.ye4{bottom:75.040000pt;}
.y88{bottom:88.154667pt;}
.y74{bottom:88.160000pt;}
.y7a{bottom:88.186667pt;}
.y82{bottom:88.200000pt;}
.y142{bottom:95.072000pt;}
.yb8{bottom:95.514667pt;}
.yaa{bottom:95.520000pt;}
.yc4{bottom:95.560000pt;}
.y87{bottom:98.912000pt;}
.ybc{bottom:100.512000pt;}
.y2f{bottom:102.272000pt;}
.y10c{bottom:110.752000pt;}
.y141{bottom:122.592000pt;}
.yb7{bottom:123.074667pt;}
.yc3{bottom:123.080000pt;}
.ya9{bottom:123.200000pt;}
.y8c{bottom:124.832000pt;}
.y138{bottom:127.232000pt;}
.yad{bottom:128.832000pt;}
.y2e{bottom:129.952000pt;}
.y10a{bottom:136.666667pt;}
.yed{bottom:143.546667pt;}
.y140{bottom:150.266667pt;}
.ya8{bottom:150.720000pt;}
.yb6{bottom:150.754667pt;}
.yc2{bottom:150.760000pt;}
.y2d{bottom:157.466667pt;}
.y10b{bottom:162.586667pt;}
.y137{bottom:167.226667pt;}
.yec{bottom:169.626667pt;}
.y8b{bottom:176.186667pt;}
.y13f{bottom:177.146667pt;}
.yb5{bottom:178.274667pt;}
.yc1{bottom:178.280000pt;}
.ya7{bottom:178.400000pt;}
.y2c{bottom:185.146667pt;}
.y109{bottom:188.506667pt;}
.y2b{bottom:191.226667pt;}
.y136{bottom:194.746667pt;}
.yeb{bottom:195.546667pt;}
.ya6{bottom:205.920000pt;}
.yb4{bottom:205.954667pt;}
.yc0{bottom:205.960000pt;}
.y2a{bottom:212.666667pt;}
.y106{bottom:214.586667pt;}
.ye8{bottom:221.466667pt;}
.y135{bottom:221.786667pt;}
.y81{bottom:227.386667pt;}
.yb3{bottom:233.474667pt;}
.ybf{bottom:233.480000pt;}
.ya5{bottom:233.640000pt;}
.y29{bottom:240.346667pt;}
.y107{bottom:240.506667pt;}
.y28{bottom:246.426667pt;}
.y86{bottom:253.506667pt;}
.yb2{bottom:260.994667pt;}
.ya4{bottom:261.160000pt;}
.y105{bottom:266.466667pt;}
.y27{bottom:267.906667pt;}
.ye9{bottom:272.066667pt;}
.yb1{bottom:288.674667pt;}
.ybe{bottom:288.706667pt;}
.ya3{bottom:288.840000pt;}
.y102{bottom:292.386667pt;}
.y26{bottom:295.586667pt;}
.ye7{bottom:298.146667pt;}
.y25{bottom:301.666667pt;}
.y85{bottom:304.706667pt;}
.yb0{bottom:316.194667pt;}
.ya2{bottom:316.360000pt;}
.y104{bottom:318.466667pt;}
.y24{bottom:323.106667pt;}
.ye3{bottom:324.066667pt;}
.yaf{bottom:343.874667pt;}
.ya1{bottom:344.040000pt;}
.y101{bottom:344.386667pt;}
.ye5{bottom:349.986667pt;}
.y23{bottom:350.786667pt;}
.y7e{bottom:355.906667pt;}
.y22{bottom:356.866667pt;}
.yff{bottom:370.306667pt;}
.yae{bottom:371.394667pt;}
.y21{bottom:378.306667pt;}
.y80{bottom:381.986667pt;}
.y100{bottom:396.386667pt;}
.y12f{bottom:402.146667pt;}
.y20{bottom:405.826667pt;}
.y1f{bottom:411.906667pt;}
.y3f{bottom:422.146667pt;}
.yfe{bottom:422.306667pt;}
.ye2{bottom:426.626667pt;}
.y60{bottom:428.226667pt;}
.y12e{bottom:430.306667pt;}
.y79{bottom:433.186667pt;}
.y1e{bottom:433.506667pt;}
.y5f{bottom:442.786667pt;}
.yfc{bottom:448.226667pt;}
.y3e{bottom:450.466667pt;}
.ye1{bottom:452.546667pt;}
.y12d{bottom:458.626667pt;}
.y7d{bottom:459.106667pt;}
.y1d{bottom:461.026667pt;}
.y5e{bottom:461.826667pt;}
.y1c{bottom:467.106667pt;}
.y124{bottom:467.426667pt;}
.yfd{bottom:474.146667pt;}
.y13e{bottom:479.426667pt;}
.y5d{bottom:480.866667pt;}
.y123{bottom:482.946667pt;}
.y12c{bottom:486.946667pt;}
.y1b{bottom:488.706667pt;}
.y1a{bottom:494.786667pt;}
.y4c{bottom:498.946667pt;}
.y61{bottom:499.426667pt;}
.y5b{bottom:499.906667pt;}
.yfa{bottom:500.226667pt;}
.ye0{bottom:503.773333pt;}
.y3d{bottom:506.333333pt;}
.y7c{bottom:510.493333pt;}
.y122{bottom:511.133333pt;}
.yd2{bottom:512.253333pt;}
.y4b{bottom:514.493333pt;}
.yac{bottom:515.933333pt;}
.y19{bottom:516.253333pt;}
.y5a{bottom:519.133333pt;}
.y13d{bottom:519.453333pt;}
.yf8{bottom:526.173333pt;}
.yde{bottom:529.853333pt;}
.y3c{bottom:534.653333pt;}
.y59{bottom:538.173333pt;}
.y121{bottom:539.453333pt;}
.yd1{bottom:540.413333pt;}
.y12b{bottom:542.173333pt;}
.y18{bottom:543.933333pt;}
.ya0{bottom:544.093333pt;}
.y13c{bottom:546.973333pt;}
.yf9{bottom:552.093333pt;}
.y73{bottom:561.693333pt;}
.y120{bottom:567.773333pt;}
.yd0{bottom:568.733333pt;}
.y4a{bottom:570.333333pt;}
.y17{bottom:571.453333pt;}
.y145{bottom:572.893333pt;}
.y13b{bottom:574.653333pt;}
.y58{bottom:575.613333pt;}
.y16{bottom:577.533333pt;}
.yf7{bottom:578.173333pt;}
.ydf{bottom:581.053333pt;}
.y78{bottom:587.613333pt;}
.y3b{bottom:590.493333pt;}
.y57{bottom:594.653333pt;}
.y11f{bottom:595.933333pt;}
.ycf{bottom:597.053333pt;}
.y12a{bottom:598.653333pt;}
.y15{bottom:599.133333pt;}
.y144{bottom:600.413333pt;}
.y9e{bottom:601.053333pt;}
.y13a{bottom:602.173333pt;}
.yf5{bottom:604.093333pt;}
.ydd{bottom:606.973333pt;}
.y9b{bottom:616.573333pt;}
.y11e{bottom:624.253333pt;}
.y143{bottom:624.413333pt;}
.yce{bottom:625.213333pt;}
.y49{bottom:626.333333pt;}
.y14{bottom:626.653333pt;}
.y139{bottom:629.053333pt;}
.yf6{bottom:630.013333pt;}
.y56{bottom:632.093333pt;}
.y13{bottom:632.733333pt;}
.yd9{bottom:633.053333pt;}
.y77{bottom:638.973333pt;}
.y9d{bottom:642.493333pt;}
.y3a{bottom:646.333333pt;}
.y134{bottom:649.213333pt;}
.y55{bottom:651.133333pt;}
.y11d{bottom:652.573333pt;}
.ycd{bottom:653.533333pt;}
.y129{bottom:653.853333pt;}
.y12{bottom:654.333333pt;}
.yf4{bottom:655.933333pt;}
.y54{bottom:670.333333pt;}
.y11c{bottom:680.733333pt;}
.y11{bottom:681.853333pt;}
.yf1{bottom:682.013333pt;}
.y48{bottom:682.173333pt;}
.ydc{bottom:684.253333pt;}
.y133{bottom:686.813333pt;}
.y10{bottom:687.933333pt;}
.y53{bottom:689.373333pt;}
.y6a{bottom:690.173333pt;}
.y97{bottom:693.693333pt;}
.y39{bottom:702.173333pt;}
.yf3{bottom:707.933333pt;}
.yc7{bottom:708.093333pt;}
.y52{bottom:708.413333pt;}
.y11b{bottom:709.053333pt;}
.yf{bottom:709.533333pt;}
.ycc{bottom:710.013333pt;}
.yd6{bottom:710.173333pt;}
.y47{bottom:710.333333pt;}
.y132{bottom:714.333333pt;}
.y99{bottom:719.773333pt;}
.ybd{bottom:723.773333pt;}
.y51{bottom:727.453333pt;}
.yef{bottom:733.853333pt;}
.ye{bottom:737.053333pt;}
.y11a{bottom:737.373333pt;}
.y128{bottom:738.013333pt;}
.ycb{bottom:738.333333pt;}
.y131{bottom:741.373333pt;}
.y37{bottom:758.053333pt;}
.y66{bottom:759.813333pt;}
.yd{bottom:764.773333pt;}
.y50{bottom:764.933333pt;}
.y119{bottom:765.573333pt;}
.y41{bottom:766.213333pt;}
.yc9{bottom:766.693333pt;}
.yc{bottom:770.853333pt;}
.y98{bottom:771.013333pt;}
.y116{bottom:778.693333pt;}
.y4d{bottom:783.973333pt;}
.yee{bottom:785.253333pt;}
.yd5{bottom:786.853333pt;}
.yb{bottom:792.293333pt;}
.y127{bottom:793.253333pt;}
.y118{bottom:793.893333pt;}
.y115{bottom:794.373333pt;}
.y46{bottom:794.533333pt;}
.yc8{bottom:795.813333pt;}
.y62{bottom:811.173333pt;}
.yd4{bottom:812.773333pt;}
.y35{bottom:813.893333pt;}
.ya{bottom:819.973333pt;}
.y113{bottom:820.293333pt;}
.y126{bottom:820.773333pt;}
.y93{bottom:822.213333pt;}
.y45{bottom:822.853333pt;}
.y34{bottom:842.213333pt;}
.y114{bottom:846.213333pt;}
.y9{bottom:847.493333pt;}
.y96{bottom:848.293333pt;}
.y125{bottom:849.093333pt;}
.y117{bottom:850.373333pt;}
.yd3{bottom:863.973333pt;}
.y30{bottom:870.533333pt;}
.y112{bottom:872.133333pt;}
.y8{bottom:875.173333pt;}
.y40{bottom:878.693333pt;}
.y110{bottom:898.213333pt;}
.y95{bottom:899.493333pt;}
.y7{bottom:902.693333pt;}
.y9f{bottom:903.653333pt;}
.y111{bottom:924.133333pt;}
.y6{bottom:930.373333pt;}
.y10f{bottom:950.053333pt;}
.y90{bottom:950.693333pt;}
.y5{bottom:957.893333pt;}
.y10d{bottom:976.133333pt;}
.y91{bottom:976.773333pt;}
.y4{bottom:985.573333pt;}
.y10e{bottom:1002.053333pt;}
.y3{bottom:1013.120000pt;}
.y130{bottom:1014.080000pt;}
.he{height:18.400000pt;}
.h10{height:18.432000pt;}
.h18{height:25.280000pt;}
.h1c{height:25.312000pt;}
.h1e{height:25.440000pt;}
.h8{height:27.520000pt;}
.h25{height:27.552000pt;}
.h9{height:27.680000pt;}
.h24{height:28.480000pt;}
.h2f{height:36.398438pt;}
.hd{height:36.800000pt;}
.hf{height:36.832000pt;}
.h6{height:38.441250pt;}
.h13{height:42.636250pt;}
.h26{height:44.361250pt;}
.h3{height:46.343750pt;}
.h16{height:47.621250pt;}
.h20{height:48.218750pt;}
.hc{height:48.687500pt;}
.h2a{height:49.952000pt;}
.h11{height:50.560000pt;}
.h1a{height:50.592000pt;}
.h14{height:50.720000pt;}
.h2b{height:51.200000pt;}
.h2e{height:51.232000pt;}
.h2d{height:51.360000pt;}
.h12{height:52.785000pt;}
.h2c{height:54.397500pt;}
.h7{height:55.200000pt;}
.ha{height:55.232000pt;}
.h4{height:57.375000pt;}
.h2{height:58.563750pt;}
.h5{height:62.761250pt;}
.h15{height:68.992000pt;}
.h29{height:76.000000pt;}
.h27{height:76.032000pt;}
.h1f{height:76.480000pt;}
.h1b{height:76.640000pt;}
.h1d{height:76.672000pt;}
.h28{height:101.920000pt;}
.hb{height:111.840000pt;}
.h17{height:127.840000pt;}
.h19{height:127.872000pt;}
.h23{height:303.586667pt;}
.h21{height:358.906667pt;}
.h22{height:386.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w38{width:37.760000pt;}
.w26{width:37.792000pt;}
.w18{width:46.400000pt;}
.w24{width:53.792000pt;}
.w36{width:55.552000pt;}
.w6{width:56.160000pt;}
.w35{width:57.280000pt;}
.w22{width:59.232000pt;}
.wd{width:60.960000pt;}
.w5{width:64.960000pt;}
.w13{width:68.672000pt;}
.w15{width:69.120000pt;}
.w2d{width:71.072000pt;}
.w1a{width:72.160000pt;}
.w1e{width:72.192000pt;}
.w1c{width:72.320000pt;}
.w29{width:72.512000pt;}
.w7{width:73.952000pt;}
.w17{width:74.880000pt;}
.w12{width:75.040000pt;}
.w1b{width:77.312000pt;}
.w31{width:78.752000pt;}
.w21{width:82.240000pt;}
.w32{width:84.832000pt;}
.w16{width:88.672000pt;}
.w2e{width:90.080000pt;}
.w2f{width:90.112000pt;}
.w11{width:91.232000pt;}
.w28{width:92.000000pt;}
.w33{width:93.440000pt;}
.w23{width:93.600000pt;}
.w9{width:95.392000pt;}
.w2c{width:97.440000pt;}
.w2a{width:98.400000pt;}
.w2b{width:98.432000pt;}
.w30{width:101.440000pt;}
.w20{width:102.112000pt;}
.w34{width:112.832000pt;}
.w14{width:122.912000pt;}
.w3a{width:131.520000pt;}
.w3b{width:133.466667pt;}
.we{width:139.226667pt;}
.w1d{width:145.146667pt;}
.w10{width:150.560000pt;}
.w3c{width:164.186667pt;}
.w39{width:185.146667pt;}
.wb{width:197.466667pt;}
.w4{width:197.626667pt;}
.w8{width:197.786667pt;}
.wc{width:216.826667pt;}
.w37{width:243.866667pt;}
.w25{width:266.266667pt;}
.w19{width:290.946667pt;}
.w1f{width:603.453333pt;}
.wf{width:670.373333pt;}
.wa{width:689.093333pt;}
.w27{width:699.200000pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.600000pt;}
.x33{left:3.360000pt;}
.x13{left:4.320000pt;}
.x19{left:5.920000pt;}
.x17{left:7.200000pt;}
.x16{left:8.320000pt;}
.x3b{left:9.280000pt;}
.x18{left:10.240000pt;}
.x14{left:11.520000pt;}
.x2a{left:12.480000pt;}
.x3f{left:13.760000pt;}
.x1b{left:15.040000pt;}
.xa{left:16.000000pt;}
.x32{left:17.280000pt;}
.xc{left:19.226667pt;}
.x5b{left:20.480000pt;}
.x11{left:21.600000pt;}
.x3c{left:22.560000pt;}
.x8{left:23.520000pt;}
.x15{left:24.480000pt;}
.x5a{left:25.760000pt;}
.x51{left:26.720000pt;}
.x1c{left:27.680000pt;}
.x3e{left:28.640000pt;}
.x52{left:30.080000pt;}
.x25{left:31.040000pt;}
.x2d{left:32.320000pt;}
.x2b{left:33.280000pt;}
.x1a{left:34.240000pt;}
.x50{left:36.160000pt;}
.x31{left:37.640000pt;}
.x21{left:38.920000pt;}
.x28{left:41.640000pt;}
.x29{left:43.200000pt;}
.x30{left:44.320000pt;}
.x53{left:45.600000pt;}
.x2e{left:47.200000pt;}
.xf{left:51.360000pt;}
.x2c{left:53.280000pt;}
.x5{left:55.519976pt;}
.xe{left:56.960000pt;}
.x2f{left:61.280000pt;}
.x3{left:63.039976pt;}
.x4{left:70.559988pt;}
.x48{left:80.800000pt;}
.x49{left:82.240000pt;}
.x6{left:85.312000pt;}
.x61{left:91.680000pt;}
.x2{left:94.591988pt;}
.x46{left:102.880000pt;}
.x36{left:115.400000pt;}
.x5c{left:142.586667pt;}
.x41{left:160.026667pt;}
.x34{left:161.146667pt;}
.x4a{left:188.026667pt;}
.x54{left:193.306667pt;}
.x35{left:208.346667pt;}
.x5d{left:236.666667pt;}
.x42{left:242.906667pt;}
.x20{left:246.106667pt;}
.x4b{left:261.186667pt;}
.x55{left:265.026667pt;}
.x63{left:279.746667pt;}
.x3d{left:281.186667pt;}
.x7{left:283.586667pt;}
.x1d{left:293.346667pt;}
.x43{left:302.786667pt;}
.x22{left:338.146667pt;}
.x9{left:349.186667pt;}
.x5e{left:350.146667pt;}
.x39{left:354.146667pt;}
.x56{left:355.746667pt;}
.x4c{left:360.226667pt;}
.x44{left:397.186667pt;}
.xb{left:405.986667pt;}
.x5f{left:408.066667pt;}
.x64{left:411.266667pt;}
.x23{left:413.826667pt;}
.x3a{left:426.973333pt;}
.x57{left:446.493333pt;}
.x45{left:451.613333pt;}
.x4d{left:459.293333pt;}
.x60{left:464.253333pt;}
.xd{left:480.573333pt;}
.x24{left:483.293333pt;}
.x37{left:499.933333pt;}
.x1e{left:510.813333pt;}
.x65{left:544.733333pt;}
.x58{left:548.573333pt;}
.x4e{left:558.333333pt;}
.x1f{left:572.413333pt;}
.x26{left:606.853333pt;}
.x59{left:627.973333pt;}
.x38{left:650.853333pt;}
.x4f{left:657.413333pt;}
.x68{left:666.693322pt;}
.x27{left:676.613333pt;}
.x10{left:679.013333pt;}
.x40{left:684.453322pt;}
.x67{left:689.253322pt;}
.x1{left:691.973322pt;}
.x66{left:695.653322pt;}
.x62{left:708.773333pt;}
.x47{left:718.533333pt;}
}




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