
    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_4fe85cdf5daff753dab61fa7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_76a6b7d0f09fc03816a354b4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c970014b98109a15b353393f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_906c7762c8b5fd090156c178.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_027bc13bc96a5feef772981f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4f3f6e32323a98051f660e0e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_3cea2a0adc275b7c2aa96eab.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_65d07bdcb3c0d97724dbcf6d.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls10{letter-spacing:-1.926000px;}
.ls18{letter-spacing:-1.908000px;}
.ls5{letter-spacing:-1.842000px;}
.ls11{letter-spacing:-1.422000px;}
.ls8{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.498000px;}
.lsc{letter-spacing:-0.486600px;}
.ls16{letter-spacing:-0.466800px;}
.ls4{letter-spacing:-0.403200px;}
.ls3{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.017280px;}
.lse{letter-spacing:0.020160px;}
.ls0{letter-spacing:0.345600px;}
.ls1{letter-spacing:0.498240px;}
.lsa{letter-spacing:0.506880px;}
.ls17{letter-spacing:0.507000px;}
.ls9{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.731520px;}
.ls19{letter-spacing:5.160000px;}
.ls7{letter-spacing:7.920000px;}
.lsb{letter-spacing:15.120000px;}
.lsd{letter-spacing:16.920000px;}
.lsf{letter-spacing:71.038560px;}
.ls15{letter-spacing:114.346560px;}
.ls13{letter-spacing:137.386560px;}
.ls12{letter-spacing:160.426560px;}
.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;}
}
.wsa{word-spacing:-15.627000px;}
.ws7{word-spacing:-15.140160px;}
.ws3{word-spacing:-15.120000px;}
.wsc{word-spacing:-14.653200px;}
.ws5{word-spacing:-14.633400px;}
.ws8{word-spacing:-13.698000px;}
.wsb{word-spacing:-13.212000px;}
.ws6{word-spacing:-13.194000px;}
.ws2{word-spacing:-13.182000px;}
.ws0{word-spacing:-12.614400px;}
.ws1{word-spacing:-11.175600px;}
.ws9{word-spacing:-9.737280px;}
.ws4{word-spacing:0.000000px;}
._19{margin-left:-5.555520px;}
._14{margin-left:-4.373760px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._9{width:3.205440px;}
._8{width:4.480800px;}
._c{width:5.806080px;}
._b{width:7.318080px;}
._a{width:8.778240px;}
._12{width:10.644480px;}
._13{width:11.672640px;}
._7{width:13.487040px;}
._11{width:16.632000px;}
._e{width:17.794080px;}
._d{width:18.878880px;}
._f{width:20.260800px;}
._10{width:21.696960px;}
._1d{width:22.800960px;}
._1e{width:24.684480px;}
._16{width:28.724640px;}
._15{width:30.438720px;}
._1b{width:47.597760px;}
._1c{width:49.109760px;}
._1a{width:72.040320px;}
._17{width:89.741280px;}
._18{width:244.604640px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs2{font-size:57.600000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.yc{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.ye{bottom:2.880000px;}
.ybc{bottom:3.240000px;}
.ya4{bottom:11.520000px;}
.y91{bottom:11.880000px;}
.y97{bottom:11.910000px;}
.yca{bottom:11.925000px;}
.y28{bottom:23.760000px;}
.ybe{bottom:23.805000px;}
.yf8{bottom:24.840000px;}
.ye1{bottom:37.440000px;}
.yf7{bottom:37.800000px;}
.ya9{bottom:40.680000px;}
.yd8{bottom:40.710000px;}
.yf{bottom:43.560000px;}
.yc7{bottom:55.074000px;}
.ycd{bottom:55.080000px;}
.yb3{bottom:55.110000px;}
.y93{bottom:55.470000px;}
.y27{bottom:59.040000px;}
.yd{bottom:68.400000px;}
.y26{bottom:76.365000px;}
.y25{bottom:93.645000px;}
.yb{bottom:94.716000px;}
.y24{bottom:110.925000px;}
.yf2{bottom:111.270000px;}
.y23{bottom:128.205000px;}
.y38{bottom:131.076000px;}
.yc6{bottom:132.516000px;}
.y127{bottom:132.876000px;}
.y88{bottom:134.676000px;}
.y37{bottom:136.476000px;}
.ye8{bottom:141.156000px;}
.y69{bottom:141.516000px;}
.y11a{bottom:143.316000px;}
.y22{bottom:145.485000px;}
.ya6{bottom:146.196000px;}
.y36{bottom:149.436000px;}
.y126{bottom:152.670000px;}
.y35{bottom:154.830000px;}
.y9d{bottom:156.270000px;}
.y105{bottom:159.510000px;}
.y68{bottom:161.310000px;}
.y21{bottom:162.405000px;}
.y119{bottom:163.470000px;}
.ya5{bottom:165.990000px;}
.y34{bottom:167.790000px;}
.y87{bottom:172.470000px;}
.y33{bottom:173.190000px;}
.ye7{bottom:178.950000px;}
.y104{bottom:179.310000px;}
.y20{bottom:179.685000px;}
.y67{bottom:181.470000px;}
.y118{bottom:183.270000px;}
.y32{bottom:186.150000px;}
.yc9{bottom:190.110000px;}
.y31{bottom:191.550000px;}
.y1f{bottom:196.995000px;}
.ye6{bottom:198.795000px;}
.y103{bottom:199.155000px;}
.y9c{bottom:200.955000px;}
.y117{bottom:203.115000px;}
.y30{bottom:204.555000px;}
.y2f{bottom:209.955000px;}
.y86{bottom:210.315000px;}
.y1e{bottom:214.275000px;}
.ye5{bottom:218.595000px;}
.yc8{bottom:218.955000px;}
.y66{bottom:219.315000px;}
.y2e{bottom:222.195000px;}
.y116{bottom:222.915000px;}
.y85{bottom:230.115000px;}
.y1d{bottom:231.555000px;}
.y102{bottom:238.755000px;}
.y65{bottom:239.115000px;}
.y115{bottom:242.715000px;}
.yc5{bottom:247.755000px;}
.y1c{bottom:248.835000px;}
.y125{bottom:249.915000px;}
.ye2{bottom:253.515000px;}
.y2d{bottom:256.755000px;}
.y101{bottom:258.555000px;}
.y64{bottom:258.915000px;}
.y114{bottom:262.515000px;}
.y1b{bottom:266.115000px;}
.y84{bottom:267.915000px;}
.y124{bottom:269.715000px;}
.y2c{bottom:276.555000px;}
.y100{bottom:278.355000px;}
.y63{bottom:278.715000px;}
.ye4{bottom:282.315000px;}
.y1a{bottom:283.395000px;}
.ya3{bottom:287.715000px;}
.y2b{bottom:296.355000px;}
.y62{bottom:298.515000px;}
.yc4{bottom:300.675000px;}
.y113{bottom:302.115000px;}
.y83{bottom:305.715000px;}
.y123{bottom:307.875000px;}
.ye3{bottom:311.475000px;}
.y2a{bottom:316.515000px;}
.y61{bottom:318.315000px;}
.y19{bottom:318.705000px;}
.y112{bottom:321.915000px;}
.y82{bottom:325.905000px;}
.y122{bottom:327.705000px;}
.yff{bottom:338.145000px;}
.yc3{bottom:338.505000px;}
.ye0{bottom:340.305000px;}
.y111{bottom:341.745000px;}
.ya2{bottom:345.345000px;}
.y81{bottom:345.705000px;}
.y29{bottom:354.345000px;}
.y60{bottom:356.145000px;}
.y121{bottom:365.505000px;}
.ya1{bottom:374.505000px;}
.y5f{bottom:375.945000px;}
.yc2{bottom:376.305000px;}
.y110{bottom:379.905000px;}
.y80{bottom:383.505000px;}
.y18{bottom:388.545000px;}
.y5e{bottom:395.745000px;}
.yc1{bottom:396.105000px;}
.y10f{bottom:399.705000px;}
.y7f{bottom:403.305000px;}
.yfe{bottom:413.745000px;}
.y138{bottom:414.105000px;}
.y5d{bottom:415.905000px;}
.ydf{bottom:418.785000px;}
.y10e{bottom:419.505000px;}
.y7e{bottom:423.105000px;}
.ybd{bottom:431.025000px;}
.ya0{bottom:432.105000px;}
.yfd{bottom:433.545000px;}
.y5c{bottom:435.705000px;}
.y10d{bottom:439.305000px;}
.y7d{bottom:442.905000px;}
.yc0{bottom:451.590000px;}
.y137{bottom:452.310000px;}
.yfc{bottom:453.390000px;}
.y5b{bottom:455.550000px;}
.yde{bottom:456.630000px;}
.y10c{bottom:459.150000px;}
.y9f{bottom:460.950000px;}
.ybf{bottom:471.750000px;}
.yfb{bottom:473.190000px;}
.y5a{bottom:475.350000px;}
.y10b{bottom:478.950000px;}
.y7c{bottom:480.750000px;}
.y9e{bottom:489.750000px;}
.y136{bottom:490.110000px;}
.ybb{bottom:491.910000px;}
.ydd{bottom:494.430000px;}
.y120{bottom:500.550000px;}
.yf1{bottom:508.470000px;}
.y135{bottom:509.910000px;}
.y59{bottom:513.150000px;}
.ydc{bottom:514.230000px;}
.y10a{bottom:516.750000px;}
.y7b{bottom:518.550000px;}
.y9b{bottom:518.910000px;}
.y11f{bottom:520.350000px;}
.y58{bottom:532.950000px;}
.ydb{bottom:534.030000px;}
.yba{bottom:535.830000px;}
.y109{bottom:536.550000px;}
.yfa{bottom:537.270000px;}
.y7a{bottom:538.350000px;}
.y11e{bottom:540.150000px;}
.y134{bottom:547.710000px;}
.y57{bottom:552.750000px;}
.yf9{bottom:566.070000px;}
.y133{bottom:567.510000px;}
.yd7{bottom:569.310000px;}
.y9a{bottom:571.470000px;}
.y56{bottom:572.550000px;}
.yb9{bottom:573.990000px;}
.y108{bottom:574.350000px;}
.y79{bottom:576.180000px;}
.y11d{bottom:578.340000px;}
.y55{bottom:592.380000px;}
.y107{bottom:594.180000px;}
.yf6{bottom:594.900000px;}
.y78{bottom:596.340000px;}
.yda{bottom:598.140000px;}
.y132{bottom:605.340000px;}
.y99{bottom:609.300000px;}
.yb8{bottom:611.820000px;}
.y54{bottom:612.180000px;}
.y106{bottom:614.340000px;}
.y11c{bottom:616.140000px;}
.y131{bottom:625.140000px;}
.yd9{bottom:626.940000px;}
.y98{bottom:629.100000px;}
.yb7{bottom:631.620000px;}
.y53{bottom:632.340000px;}
.y77{bottom:634.140000px;}
.y11b{bottom:635.940000px;}
.yf5{bottom:649.620000px;}
.y52{bottom:652.140000px;}
.y76{bottom:653.940000px;}
.yd6{bottom:655.740000px;}
.y130{bottom:662.940000px;}
.y92{bottom:664.020000px;}
.yb2{bottom:666.540000px;}
.y51{bottom:671.940000px;}
.y75{bottom:673.740000px;}
.yf4{bottom:678.420000px;}
.y12f{bottom:682.740000px;}
.y50{bottom:691.740000px;}
.y96{bottom:693.180000px;}
.y74{bottom:693.540000px;}
.yb6{bottom:695.340000px;}
.yf3{bottom:707.610000px;}
.yd5{bottom:708.690000px;}
.y4f{bottom:711.570000px;}
.y73{bottom:713.370000px;}
.y12e{bottom:720.570000px;}
.y95{bottom:722.010000px;}
.yb5{bottom:724.170000px;}
.y4e{bottom:731.370000px;}
.y72{bottom:733.170000px;}
.yf0{bottom:736.410000px;}
.y12d{bottom:740.370000px;}
.yd4{bottom:746.490000px;}
.y17{bottom:747.210000px;}
.y94{bottom:750.810000px;}
.yb4{bottom:753.330000px;}
.y4d{bottom:769.170000px;}
.y71{bottom:770.970000px;}
.y12c{bottom:778.530000px;}
.y90{bottom:779.610000px;}
.yb1{bottom:782.130000px;}
.yd3{bottom:784.290000px;}
.y4c{bottom:788.970000px;}
.y70{bottom:790.770000px;}
.y16{bottom:791.130000px;}
.yd2{bottom:804.090000px;}
.y4b{bottom:808.770000px;}
.y6f{bottom:810.570000px;}
.y12b{bottom:816.330000px;}
.y14{bottom:817.050000px;}
.y15{bottom:822.450000px;}
.yd1{bottom:823.890000px;}
.yef{bottom:826.815000px;}
.y4a{bottom:828.615000px;}
.y6e{bottom:830.415000px;}
.y8f{bottom:832.575000px;}
.yb0{bottom:834.735000px;}
.y12{bottom:843.015000px;}
.y13{bottom:848.415000px;}
.y6d{bottom:850.575000px;}
.y12a{bottom:854.175000px;}
.ycc{bottom:858.855000px;}
.yee{bottom:864.615000px;}
.y49{bottom:868.575000px;}
.y11{bottom:868.935000px;}
.y8e{bottom:870.375000px;}
.yaf{bottom:872.535000px;}
.yed{bottom:884.415000px;}
.yd0{bottom:887.655000px;}
.y48{bottom:888.375000px;}
.y129{bottom:891.975000px;}
.yec{bottom:904.575000px;}
.y10{bottom:906.735000px;}
.y47{bottom:908.175000px;}
.yae{bottom:910.335000px;}
.ycf{bottom:916.815000px;}
.ya{bottom:924.015000px;}
.y6c{bottom:927.975000px;}
.y128{bottom:929.775000px;}
.yad{bottom:930.135000px;}
.yea{bottom:939.495000px;}
.y9{bottom:941.295000px;}
.yce{bottom:945.615000px;}
.y46{bottom:945.975000px;}
.y6b{bottom:947.775000px;}
.y8{bottom:958.245000px;}
.y45{bottom:965.805000px;}
.y6a{bottom:967.605000px;}
.yac{bottom:968.325000px;}
.y7{bottom:972.285000px;}
.ycb{bottom:974.445000px;}
.y44{bottom:985.605000px;}
.y8d{bottom:987.405000px;}
.yeb{bottom:997.125000px;}
.ya8{bottom:1003.245000px;}
.y43{bottom:1005.405000px;}
.y8c{bottom:1007.205000px;}
.y42{bottom:1025.205000px;}
.ye9{bottom:1026.285000px;}
.y6{bottom:1027.005000px;}
.yab{bottom:1032.045000px;}
.y41{bottom:1045.005000px;}
.y5{bottom:1052.565000px;}
.yaa{bottom:1060.845000px;}
.y8b{bottom:1064.805000px;}
.y4{bottom:1072.725000px;}
.y40{bottom:1082.850000px;}
.y8a{bottom:1085.010000px;}
.ya7{bottom:1089.690000px;}
.y3{bottom:1094.010000px;}
.y3f{bottom:1103.010000px;}
.y89{bottom:1104.810000px;}
.y2{bottom:1114.530000px;}
.y3e{bottom:1122.810000px;}
.y1{bottom:1131.450000px;}
.y3d{bottom:1142.610000px;}
.y3c{bottom:1166.370000px;}
.y3b{bottom:1180.410000px;}
.y3a{bottom:1201.290000px;}
.y39{bottom:1227.600000px;}
.h7{height:8.640000px;}
.h9{height:15.516000px;}
.h19{height:16.920000px;}
.h17{height:17.280000px;}
.h15{height:25.560000px;}
.h1c{height:25.596000px;}
.h10{height:25.920000px;}
.h13{height:25.956000px;}
.ha{height:34.114922px;}
.hc{height:38.671172px;}
.h5{height:39.997969px;}
.h2{height:43.794844px;}
.hf{height:44.031094px;}
.he{height:44.208281px;}
.h8{height:48.013594px;}
.h1b{height:51.480000px;}
.h1e{height:51.840000px;}
.h3{height:52.136719px;}
.h6{height:53.067656px;}
.h12{height:55.714922px;}
.h4{height:57.290625px;}
.h18{height:57.996000px;}
.hd{height:60.155156px;}
.h16{height:83.556000px;}
.h1a{height:112.356000px;}
.h11{height:112.716000px;}
.h1d{height:225.075000px;}
.h14{height:314.715000px;}
.hb{height:332.745000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:52.920000px;}
.wc{width:53.316000px;}
.w14{width:71.316000px;}
.w18{width:82.116000px;}
.wd{width:103.356000px;}
.we{width:106.236000px;}
.w20{width:114.156000px;}
.w11{width:124.632000px;}
.w15{width:135.432000px;}
.w9{width:156.675000px;}
.w24{width:157.395000px;}
.w1d{width:167.475000px;}
.w12{width:178.635000px;}
.w25{width:199.155000px;}
.w16{width:199.875000px;}
.wb{width:200.595000px;}
.w1c{width:211.035000px;}
.w19{width:211.395000px;}
.wa{width:220.785000px;}
.w1a{width:221.835000px;}
.w21{width:229.065000px;}
.w1b{width:231.585000px;}
.w1f{width:243.105000px;}
.w23{width:252.465000px;}
.w13{width:253.545000px;}
.w17{width:253.905000px;}
.w1e{width:284.865000px;}
.w22{width:285.945000px;}
.wf{width:303.630000px;}
.w8{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w7{width:341.430000px;}
.w6{width:679.965000px;}
.w1{width:892.500000px;}
.w5{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x22{left:4.680000px;}
.x9{left:8.640000px;}
.x7{left:106.235987px;}
.x21{left:107.676000px;}
.x1b{left:111.275987px;}
.x1e{left:133.271987px;}
.xb{left:155.954987px;}
.x1f{left:160.274987px;}
.xc{left:179.714987px;}
.x1c{left:180.794987px;}
.x20{left:187.274987px;}
.x25{left:216.795000px;}
.x27{left:235.545000px;}
.x2e{left:244.544987px;}
.x29{left:245.985000px;}
.x2{left:254.264987px;}
.x2d{left:255.344987px;}
.x23{left:267.585000px;}
.x6{left:274.064987px;}
.x2b{left:278.025000px;}
.x2f{left:287.024987px;}
.xa{left:304.350000px;}
.x1a{left:322.349987px;}
.xd{left:346.469973px;}
.xe{left:351.509987px;}
.x13{left:361.229987px;}
.x19{left:362.309987px;}
.x5{left:363.389987px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x14{left:406.979973px;}
.x15{left:412.019987px;}
.x28{left:415.620000px;}
.x8{left:446.579987px;}
.x1d{left:447.660000px;}
.x18{left:473.579987px;}
.x24{left:489.810000px;}
.xf{left:498.809973px;}
.x2a{left:500.610000px;}
.x10{left:503.849987px;}
.x26{left:521.850000px;}
.x2c{left:564.330000px;}
.x16{left:580.574973px;}
.x17{left:585.614987px;}
.x11{left:673.124973px;}
.x12{left:678.164987px;}
.x1{left:786.929987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls10{letter-spacing:-1.712000pt;}
.ls18{letter-spacing:-1.696000pt;}
.ls5{letter-spacing:-1.637333pt;}
.ls11{letter-spacing:-1.264000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.442667pt;}
.lsc{letter-spacing:-0.432533pt;}
.ls16{letter-spacing:-0.414933pt;}
.ls4{letter-spacing:-0.358400pt;}
.ls3{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.015360pt;}
.lse{letter-spacing:0.017920pt;}
.ls0{letter-spacing:0.307200pt;}
.ls1{letter-spacing:0.442880pt;}
.lsa{letter-spacing:0.450560pt;}
.ls17{letter-spacing:0.450667pt;}
.ls9{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.650240pt;}
.ls19{letter-spacing:4.586667pt;}
.ls7{letter-spacing:7.040000pt;}
.lsb{letter-spacing:13.440000pt;}
.lsd{letter-spacing:15.040000pt;}
.lsf{letter-spacing:63.145387pt;}
.ls15{letter-spacing:101.641387pt;}
.ls13{letter-spacing:122.121387pt;}
.ls12{letter-spacing:142.601387pt;}
.wsa{word-spacing:-13.890667pt;}
.ws7{word-spacing:-13.457920pt;}
.ws3{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.025067pt;}
.ws5{word-spacing:-13.007467pt;}
.ws8{word-spacing:-12.176000pt;}
.wsb{word-spacing:-11.744000pt;}
.ws6{word-spacing:-11.728000pt;}
.ws2{word-spacing:-11.717333pt;}
.ws0{word-spacing:-11.212800pt;}
.ws1{word-spacing:-9.933867pt;}
.ws9{word-spacing:-8.655360pt;}
.ws4{word-spacing:0.000000pt;}
._19{margin-left:-4.938240pt;}
._14{margin-left:-3.887787pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._9{width:2.849280pt;}
._8{width:3.982933pt;}
._c{width:5.160960pt;}
._b{width:6.504960pt;}
._a{width:7.802880pt;}
._12{width:9.461760pt;}
._13{width:10.375680pt;}
._7{width:11.988480pt;}
._11{width:14.784000pt;}
._e{width:15.816960pt;}
._d{width:16.781227pt;}
._f{width:18.009600pt;}
._10{width:19.286187pt;}
._1d{width:20.267520pt;}
._1e{width:21.941760pt;}
._16{width:25.533013pt;}
._15{width:27.056640pt;}
._1b{width:42.309120pt;}
._1c{width:43.653120pt;}
._1a{width:64.035840pt;}
._17{width:79.770027pt;}
._18{width:217.426347pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs2{font-size:51.200000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.yc{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:2.560000pt;}
.ybc{bottom:2.880000pt;}
.ya4{bottom:10.240000pt;}
.y91{bottom:10.560000pt;}
.y97{bottom:10.586667pt;}
.yca{bottom:10.600000pt;}
.y28{bottom:21.120000pt;}
.ybe{bottom:21.160000pt;}
.yf8{bottom:22.080000pt;}
.ye1{bottom:33.280000pt;}
.yf7{bottom:33.600000pt;}
.ya9{bottom:36.160000pt;}
.yd8{bottom:36.186667pt;}
.yf{bottom:38.720000pt;}
.yc7{bottom:48.954667pt;}
.ycd{bottom:48.960000pt;}
.yb3{bottom:48.986667pt;}
.y93{bottom:49.306667pt;}
.y27{bottom:52.480000pt;}
.yd{bottom:60.800000pt;}
.y26{bottom:67.880000pt;}
.y25{bottom:83.240000pt;}
.yb{bottom:84.192000pt;}
.y24{bottom:98.600000pt;}
.yf2{bottom:98.906667pt;}
.y23{bottom:113.960000pt;}
.y38{bottom:116.512000pt;}
.yc6{bottom:117.792000pt;}
.y127{bottom:118.112000pt;}
.y88{bottom:119.712000pt;}
.y37{bottom:121.312000pt;}
.ye8{bottom:125.472000pt;}
.y69{bottom:125.792000pt;}
.y11a{bottom:127.392000pt;}
.y22{bottom:129.320000pt;}
.ya6{bottom:129.952000pt;}
.y36{bottom:132.832000pt;}
.y126{bottom:135.706667pt;}
.y35{bottom:137.626667pt;}
.y9d{bottom:138.906667pt;}
.y105{bottom:141.786667pt;}
.y68{bottom:143.386667pt;}
.y21{bottom:144.360000pt;}
.y119{bottom:145.306667pt;}
.ya5{bottom:147.546667pt;}
.y34{bottom:149.146667pt;}
.y87{bottom:153.306667pt;}
.y33{bottom:153.946667pt;}
.ye7{bottom:159.066667pt;}
.y104{bottom:159.386667pt;}
.y20{bottom:159.720000pt;}
.y67{bottom:161.306667pt;}
.y118{bottom:162.906667pt;}
.y32{bottom:165.466667pt;}
.yc9{bottom:168.986667pt;}
.y31{bottom:170.266667pt;}
.y1f{bottom:175.106667pt;}
.ye6{bottom:176.706667pt;}
.y103{bottom:177.026667pt;}
.y9c{bottom:178.626667pt;}
.y117{bottom:180.546667pt;}
.y30{bottom:181.826667pt;}
.y2f{bottom:186.626667pt;}
.y86{bottom:186.946667pt;}
.y1e{bottom:190.466667pt;}
.ye5{bottom:194.306667pt;}
.yc8{bottom:194.626667pt;}
.y66{bottom:194.946667pt;}
.y2e{bottom:197.506667pt;}
.y116{bottom:198.146667pt;}
.y85{bottom:204.546667pt;}
.y1d{bottom:205.826667pt;}
.y102{bottom:212.226667pt;}
.y65{bottom:212.546667pt;}
.y115{bottom:215.746667pt;}
.yc5{bottom:220.226667pt;}
.y1c{bottom:221.186667pt;}
.y125{bottom:222.146667pt;}
.ye2{bottom:225.346667pt;}
.y2d{bottom:228.226667pt;}
.y101{bottom:229.826667pt;}
.y64{bottom:230.146667pt;}
.y114{bottom:233.346667pt;}
.y1b{bottom:236.546667pt;}
.y84{bottom:238.146667pt;}
.y124{bottom:239.746667pt;}
.y2c{bottom:245.826667pt;}
.y100{bottom:247.426667pt;}
.y63{bottom:247.746667pt;}
.ye4{bottom:250.946667pt;}
.y1a{bottom:251.906667pt;}
.ya3{bottom:255.746667pt;}
.y2b{bottom:263.426667pt;}
.y62{bottom:265.346667pt;}
.yc4{bottom:267.266667pt;}
.y113{bottom:268.546667pt;}
.y83{bottom:271.746667pt;}
.y123{bottom:273.666667pt;}
.ye3{bottom:276.866667pt;}
.y2a{bottom:281.346667pt;}
.y61{bottom:282.946667pt;}
.y19{bottom:283.293333pt;}
.y112{bottom:286.146667pt;}
.y82{bottom:289.693333pt;}
.y122{bottom:291.293333pt;}
.yff{bottom:300.573333pt;}
.yc3{bottom:300.893333pt;}
.ye0{bottom:302.493333pt;}
.y111{bottom:303.773333pt;}
.ya2{bottom:306.973333pt;}
.y81{bottom:307.293333pt;}
.y29{bottom:314.973333pt;}
.y60{bottom:316.573333pt;}
.y121{bottom:324.893333pt;}
.ya1{bottom:332.893333pt;}
.y5f{bottom:334.173333pt;}
.yc2{bottom:334.493333pt;}
.y110{bottom:337.693333pt;}
.y80{bottom:340.893333pt;}
.y18{bottom:345.373333pt;}
.y5e{bottom:351.773333pt;}
.yc1{bottom:352.093333pt;}
.y10f{bottom:355.293333pt;}
.y7f{bottom:358.493333pt;}
.yfe{bottom:367.773333pt;}
.y138{bottom:368.093333pt;}
.y5d{bottom:369.693333pt;}
.ydf{bottom:372.253333pt;}
.y10e{bottom:372.893333pt;}
.y7e{bottom:376.093333pt;}
.ybd{bottom:383.133333pt;}
.ya0{bottom:384.093333pt;}
.yfd{bottom:385.373333pt;}
.y5c{bottom:387.293333pt;}
.y10d{bottom:390.493333pt;}
.y7d{bottom:393.693333pt;}
.yc0{bottom:401.413333pt;}
.y137{bottom:402.053333pt;}
.yfc{bottom:403.013333pt;}
.y5b{bottom:404.933333pt;}
.yde{bottom:405.893333pt;}
.y10c{bottom:408.133333pt;}
.y9f{bottom:409.733333pt;}
.ybf{bottom:419.333333pt;}
.yfb{bottom:420.613333pt;}
.y5a{bottom:422.533333pt;}
.y10b{bottom:425.733333pt;}
.y7c{bottom:427.333333pt;}
.y9e{bottom:435.333333pt;}
.y136{bottom:435.653333pt;}
.ybb{bottom:437.253333pt;}
.ydd{bottom:439.493333pt;}
.y120{bottom:444.933333pt;}
.yf1{bottom:451.973333pt;}
.y135{bottom:453.253333pt;}
.y59{bottom:456.133333pt;}
.ydc{bottom:457.093333pt;}
.y10a{bottom:459.333333pt;}
.y7b{bottom:460.933333pt;}
.y9b{bottom:461.253333pt;}
.y11f{bottom:462.533333pt;}
.y58{bottom:473.733333pt;}
.ydb{bottom:474.693333pt;}
.yba{bottom:476.293333pt;}
.y109{bottom:476.933333pt;}
.yfa{bottom:477.573333pt;}
.y7a{bottom:478.533333pt;}
.y11e{bottom:480.133333pt;}
.y134{bottom:486.853333pt;}
.y57{bottom:491.333333pt;}
.yf9{bottom:503.173333pt;}
.y133{bottom:504.453333pt;}
.yd7{bottom:506.053333pt;}
.y9a{bottom:507.973333pt;}
.y56{bottom:508.933333pt;}
.yb9{bottom:510.213333pt;}
.y108{bottom:510.533333pt;}
.y79{bottom:512.160000pt;}
.y11d{bottom:514.080000pt;}
.y55{bottom:526.560000pt;}
.y107{bottom:528.160000pt;}
.yf6{bottom:528.800000pt;}
.y78{bottom:530.080000pt;}
.yda{bottom:531.680000pt;}
.y132{bottom:538.080000pt;}
.y99{bottom:541.600000pt;}
.yb8{bottom:543.840000pt;}
.y54{bottom:544.160000pt;}
.y106{bottom:546.080000pt;}
.y11c{bottom:547.680000pt;}
.y131{bottom:555.680000pt;}
.yd9{bottom:557.280000pt;}
.y98{bottom:559.200000pt;}
.yb7{bottom:561.440000pt;}
.y53{bottom:562.080000pt;}
.y77{bottom:563.680000pt;}
.y11b{bottom:565.280000pt;}
.yf5{bottom:577.440000pt;}
.y52{bottom:579.680000pt;}
.y76{bottom:581.280000pt;}
.yd6{bottom:582.880000pt;}
.y130{bottom:589.280000pt;}
.y92{bottom:590.240000pt;}
.yb2{bottom:592.480000pt;}
.y51{bottom:597.280000pt;}
.y75{bottom:598.880000pt;}
.yf4{bottom:603.040000pt;}
.y12f{bottom:606.880000pt;}
.y50{bottom:614.880000pt;}
.y96{bottom:616.160000pt;}
.y74{bottom:616.480000pt;}
.yb6{bottom:618.080000pt;}
.yf3{bottom:628.986667pt;}
.yd5{bottom:629.946667pt;}
.y4f{bottom:632.506667pt;}
.y73{bottom:634.106667pt;}
.y12e{bottom:640.506667pt;}
.y95{bottom:641.786667pt;}
.yb5{bottom:643.706667pt;}
.y4e{bottom:650.106667pt;}
.y72{bottom:651.706667pt;}
.yf0{bottom:654.586667pt;}
.y12d{bottom:658.106667pt;}
.yd4{bottom:663.546667pt;}
.y17{bottom:664.186667pt;}
.y94{bottom:667.386667pt;}
.yb4{bottom:669.626667pt;}
.y4d{bottom:683.706667pt;}
.y71{bottom:685.306667pt;}
.y12c{bottom:692.026667pt;}
.y90{bottom:692.986667pt;}
.yb1{bottom:695.226667pt;}
.yd3{bottom:697.146667pt;}
.y4c{bottom:701.306667pt;}
.y70{bottom:702.906667pt;}
.y16{bottom:703.226667pt;}
.yd2{bottom:714.746667pt;}
.y4b{bottom:718.906667pt;}
.y6f{bottom:720.506667pt;}
.y12b{bottom:725.626667pt;}
.y14{bottom:726.266667pt;}
.y15{bottom:731.066667pt;}
.yd1{bottom:732.346667pt;}
.yef{bottom:734.946667pt;}
.y4a{bottom:736.546667pt;}
.y6e{bottom:738.146667pt;}
.y8f{bottom:740.066667pt;}
.yb0{bottom:741.986667pt;}
.y12{bottom:749.346667pt;}
.y13{bottom:754.146667pt;}
.y6d{bottom:756.066667pt;}
.y12a{bottom:759.266667pt;}
.ycc{bottom:763.426667pt;}
.yee{bottom:768.546667pt;}
.y49{bottom:772.066667pt;}
.y11{bottom:772.386667pt;}
.y8e{bottom:773.666667pt;}
.yaf{bottom:775.586667pt;}
.yed{bottom:786.146667pt;}
.yd0{bottom:789.026667pt;}
.y48{bottom:789.666667pt;}
.y129{bottom:792.866667pt;}
.yec{bottom:804.066667pt;}
.y10{bottom:805.986667pt;}
.y47{bottom:807.266667pt;}
.yae{bottom:809.186667pt;}
.ycf{bottom:814.946667pt;}
.ya{bottom:821.346667pt;}
.y6c{bottom:824.866667pt;}
.y128{bottom:826.466667pt;}
.yad{bottom:826.786667pt;}
.yea{bottom:835.106667pt;}
.y9{bottom:836.706667pt;}
.yce{bottom:840.546667pt;}
.y46{bottom:840.866667pt;}
.y6b{bottom:842.466667pt;}
.y8{bottom:851.773333pt;}
.y45{bottom:858.493333pt;}
.y6a{bottom:860.093333pt;}
.yac{bottom:860.733333pt;}
.y7{bottom:864.253333pt;}
.ycb{bottom:866.173333pt;}
.y44{bottom:876.093333pt;}
.y8d{bottom:877.693333pt;}
.yeb{bottom:886.333333pt;}
.ya8{bottom:891.773333pt;}
.y43{bottom:893.693333pt;}
.y8c{bottom:895.293333pt;}
.y42{bottom:911.293333pt;}
.ye9{bottom:912.253333pt;}
.y6{bottom:912.893333pt;}
.yab{bottom:917.373333pt;}
.y41{bottom:928.893333pt;}
.y5{bottom:935.613333pt;}
.yaa{bottom:942.973333pt;}
.y8b{bottom:946.493333pt;}
.y4{bottom:953.533333pt;}
.y40{bottom:962.533333pt;}
.y8a{bottom:964.453333pt;}
.ya7{bottom:968.613333pt;}
.y3{bottom:972.453333pt;}
.y3f{bottom:980.453333pt;}
.y89{bottom:982.053333pt;}
.y2{bottom:990.693333pt;}
.y3e{bottom:998.053333pt;}
.y1{bottom:1005.733333pt;}
.y3d{bottom:1015.653333pt;}
.y3c{bottom:1036.773333pt;}
.y3b{bottom:1049.253333pt;}
.y3a{bottom:1067.813333pt;}
.y39{bottom:1091.200000pt;}
.h7{height:7.680000pt;}
.h9{height:13.792000pt;}
.h19{height:15.040000pt;}
.h17{height:15.360000pt;}
.h15{height:22.720000pt;}
.h1c{height:22.752000pt;}
.h10{height:23.040000pt;}
.h13{height:23.072000pt;}
.ha{height:30.324375pt;}
.hc{height:34.374375pt;}
.h5{height:35.553750pt;}
.h2{height:38.928750pt;}
.hf{height:39.138750pt;}
.he{height:39.296250pt;}
.h8{height:42.678750pt;}
.h1b{height:45.760000pt;}
.h1e{height:46.080000pt;}
.h3{height:46.343750pt;}
.h6{height:47.171250pt;}
.h12{height:49.524375pt;}
.h4{height:50.925000pt;}
.h18{height:51.552000pt;}
.hd{height:53.471250pt;}
.h16{height:74.272000pt;}
.h1a{height:99.872000pt;}
.h11{height:100.192000pt;}
.h1d{height:200.066667pt;}
.h14{height:279.746667pt;}
.hb{height:295.773333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:47.040000pt;}
.wc{width:47.392000pt;}
.w14{width:63.392000pt;}
.w18{width:72.992000pt;}
.wd{width:91.872000pt;}
.we{width:94.432000pt;}
.w20{width:101.472000pt;}
.w11{width:110.784000pt;}
.w15{width:120.384000pt;}
.w9{width:139.266667pt;}
.w24{width:139.906667pt;}
.w1d{width:148.866667pt;}
.w12{width:158.786667pt;}
.w25{width:177.026667pt;}
.w16{width:177.666667pt;}
.wb{width:178.306667pt;}
.w1c{width:187.586667pt;}
.w19{width:187.906667pt;}
.wa{width:196.253333pt;}
.w1a{width:197.186667pt;}
.w21{width:203.613333pt;}
.w1b{width:205.853333pt;}
.w1f{width:216.093333pt;}
.w23{width:224.413333pt;}
.w13{width:225.373333pt;}
.w17{width:225.693333pt;}
.w1e{width:253.213333pt;}
.w22{width:254.173333pt;}
.wf{width:269.893333pt;}
.w8{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w7{width:303.493333pt;}
.w6{width:604.413333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x22{left:4.160000pt;}
.x9{left:7.680000pt;}
.x7{left:94.431988pt;}
.x21{left:95.712000pt;}
.x1b{left:98.911988pt;}
.x1e{left:118.463988pt;}
.xb{left:138.626655pt;}
.x1f{left:142.466655pt;}
.xc{left:159.746655pt;}
.x1c{left:160.706655pt;}
.x20{left:166.466655pt;}
.x25{left:192.706667pt;}
.x27{left:209.373333pt;}
.x2e{left:217.373322pt;}
.x29{left:218.653333pt;}
.x2{left:226.013322pt;}
.x2d{left:226.973322pt;}
.x23{left:237.853333pt;}
.x6{left:243.613322pt;}
.x2b{left:247.133333pt;}
.x2f{left:255.133322pt;}
.xa{left:270.533333pt;}
.x1a{left:286.533322pt;}
.xd{left:307.973310pt;}
.xe{left:312.453322pt;}
.x13{left:321.093322pt;}
.x19{left:322.053322pt;}
.x5{left:323.013322pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x14{left:361.759976pt;}
.x15{left:366.239988pt;}
.x28{left:369.440000pt;}
.x8{left:396.959988pt;}
.x1d{left:397.920000pt;}
.x18{left:420.959988pt;}
.x24{left:435.386667pt;}
.xf{left:443.386643pt;}
.x2a{left:444.986667pt;}
.x10{left:447.866655pt;}
.x26{left:463.866667pt;}
.x2c{left:501.626667pt;}
.x16{left:516.066643pt;}
.x17{left:520.546655pt;}
.x11{left:598.333310pt;}
.x12{left:602.813322pt;}
.x1{left:699.493322pt;}
}




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