
    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_b60c24912a622d80e1630f23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_fad3833fa9a55b8e9396b446.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_104dcba985cddeec9ed2444f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_937063222f40376c08849961.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_b506be2197d9dc4610b168c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_d4c64aea84b898a80a053f68.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934082;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_e5abf81e9a5fd206a619615a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937500;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_61caf9e8a8753c7bd826e51e.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-21.060000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1b{letter-spacing:-0.960000px;}
.lsd{letter-spacing:-0.696000px;}
.ls1f{letter-spacing:-0.579600px;}
.ls5{letter-spacing:-0.463800px;}
.ls10{letter-spacing:-0.414000px;}
.ls21{letter-spacing:-0.326400px;}
.ls2b{letter-spacing:-0.303000px;}
.ls7{letter-spacing:-0.292200px;}
.ls8{letter-spacing:-0.240600px;}
.ls29{letter-spacing:-0.115200px;}
.lsc{letter-spacing:-0.107400px;}
.ls1a{letter-spacing:-0.064800px;}
.ls14{letter-spacing:-0.058320px;}
.ls27{letter-spacing:-0.041040px;}
.ls6{letter-spacing:-0.020160px;}
.ls15{letter-spacing:-0.001440px;}
.ls4{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.023760px;}
.ls22{letter-spacing:0.060600px;}
.ls1e{letter-spacing:0.075000px;}
.ls2c{letter-spacing:0.093600px;}
.lsa{letter-spacing:0.140400px;}
.ls3{letter-spacing:0.174240px;}
.ls11{letter-spacing:0.175200px;}
.ls23{letter-spacing:0.218400px;}
.ls18{letter-spacing:0.220200px;}
.ls1d{letter-spacing:0.288600px;}
.ls20{letter-spacing:0.306000px;}
.ls16{letter-spacing:0.309000px;}
.ls13{letter-spacing:0.479400px;}
.ls9{letter-spacing:0.492000px;}
.ls12{letter-spacing:0.493200px;}
.lsb{letter-spacing:0.642000px;}
.ls2a{letter-spacing:0.666720px;}
.ls28{letter-spacing:0.906000px;}
.ls19{letter-spacing:1.026000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls24{letter-spacing:22.986720px;}
.ls26{letter-spacing:30.906720px;}
.lsf{letter-spacing:43.146720px;}
.lse{letter-spacing:46.026720px;}
.ls17{letter-spacing:50.346720px;}
.ls25{letter-spacing:61.290720px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws10{word-spacing:-14.411760px;}
.wsa{word-spacing:-13.814760px;}
.wse{word-spacing:-13.811760px;}
.wsb{word-spacing:-13.725960px;}
.ws7{word-spacing:-13.680960px;}
.ws14{word-spacing:-13.599360px;}
.wsd{word-spacing:-13.529520px;}
.ws5{word-spacing:-13.505760px;}
.ws9{word-spacing:-13.504320px;}
.wsf{word-spacing:-13.464720px;}
.ws8{word-spacing:-13.447440px;}
.wsc{word-spacing:-13.440960px;}
.ws12{word-spacing:-13.390560px;}
.ws13{word-spacing:-13.202760px;}
.ws11{word-spacing:-13.179360px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.ws6{word-spacing:0.000000px;}
._4{margin-left:-1451.376240px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1003.789440px;}
._5{margin-left:-581.644560px;}
._7{margin-left:-4.329600px;}
._6{margin-left:-3.312000px;}
._d{margin-left:-2.270880px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._c{width:2.640720px;}
._b{width:3.692400px;}
._12{width:4.818960px;}
._e{width:6.029280px;}
._11{width:7.144800px;}
._8{width:8.235360px;}
._9{width:9.288720px;}
._a{width:10.948800px;}
._f{width:12.230880px;}
._13{width:15.096960px;}
._14{width:17.151120px;}
._15{width:18.206880px;}
._10{width:19.362240px;}
._1a{width:20.856240px;}
._17{width:22.031520px;}
._16{width:23.067360px;}
._18{width:38.106240px;}
._19{width:39.205200px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(31,31,31);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:6.840000px;}
.yc7{bottom:7.020000px;}
.yed{bottom:7.200000px;}
.yc5{bottom:7.380000px;}
.yc3{bottom:7.560000px;}
.yc1{bottom:8.820000px;}
.ycd{bottom:9.000000px;}
.yd0{bottom:28.080000px;}
.y139{bottom:28.260000px;}
.y136{bottom:35.460000px;}
.y138{bottom:49.536000px;}
.y6{bottom:58.500000px;}
.y137{bottom:70.770000px;}
.y31{bottom:91.080000px;}
.y66{bottom:92.520000px;}
.y9a{bottom:95.580000px;}
.y135{bottom:97.200000px;}
.ycb{bottom:98.280000px;}
.y72{bottom:104.580000px;}
.y104{bottom:107.100000px;}
.ydf{bottom:109.620000px;}
.y30{bottom:112.140000px;}
.y65{bottom:113.580000px;}
.y99{bottom:116.640000px;}
.y134{bottom:118.260000px;}
.yca{bottom:119.340000px;}
.y71{bottom:125.640000px;}
.y103{bottom:128.196000px;}
.yde{bottom:130.716000px;}
.y2f{bottom:133.056000px;}
.y64{bottom:134.676000px;}
.y98{bottom:137.736000px;}
.y133{bottom:139.356000px;}
.yc9{bottom:140.436000px;}
.y70{bottom:146.736000px;}
.y102{bottom:149.256000px;}
.ydd{bottom:151.770000px;}
.y2e{bottom:154.110000px;}
.y63{bottom:155.730000px;}
.y97{bottom:158.790000px;}
.y132{bottom:160.410000px;}
.yc8{bottom:161.490000px;}
.y6f{bottom:167.790000px;}
.y101{bottom:170.310000px;}
.ydc{bottom:172.830000px;}
.y2d{bottom:175.170000px;}
.yc6{bottom:176.250000px;}
.y62{bottom:176.790000px;}
.y96{bottom:179.850000px;}
.y131{bottom:181.470000px;}
.y6e{bottom:188.850000px;}
.y100{bottom:191.370000px;}
.ydb{bottom:193.890000px;}
.y2c{bottom:196.230000px;}
.y61{bottom:197.850000px;}
.yc4{bottom:199.830000px;}
.y95{bottom:200.910000px;}
.y130{bottom:202.530000px;}
.y6d{bottom:209.910000px;}
.yff{bottom:212.430000px;}
.yda{bottom:214.950000px;}
.y2b{bottom:217.290000px;}
.y60{bottom:218.910000px;}
.y94{bottom:221.970000px;}
.y12f{bottom:223.590000px;}
.yc2{bottom:223.770000px;}
.y6c{bottom:230.970000px;}
.yfe{bottom:233.490000px;}
.yd9{bottom:236.010000px;}
.y2a{bottom:238.350000px;}
.y5f{bottom:239.970000px;}
.y93{bottom:243.030000px;}
.y12e{bottom:244.650000px;}
.yc0{bottom:247.890000px;}
.y6b{bottom:252.030000px;}
.yfd{bottom:254.550000px;}
.yd8{bottom:257.070000px;}
.y29{bottom:259.410000px;}
.y5e{bottom:261.030000px;}
.y92{bottom:264.090000px;}
.y12d{bottom:265.710000px;}
.y6a{bottom:273.090000px;}
.yfc{bottom:275.610000px;}
.yd7{bottom:278.130000px;}
.ybf{bottom:280.290000px;}
.y28{bottom:280.470000px;}
.y5d{bottom:282.090000px;}
.y91{bottom:285.150000px;}
.y12c{bottom:286.770000px;}
.y69{bottom:294.150000px;}
.yfb{bottom:296.670000px;}
.yd6{bottom:299.190000px;}
.ybe{bottom:301.350000px;}
.y27{bottom:301.530000px;}
.y5c{bottom:303.150000px;}
.y90{bottom:306.210000px;}
.y12b{bottom:307.830000px;}
.y68{bottom:315.210000px;}
.yfa{bottom:317.730000px;}
.yd5{bottom:320.250000px;}
.ybd{bottom:322.410000px;}
.y26{bottom:322.590000px;}
.y5b{bottom:324.210000px;}
.y8f{bottom:327.270000px;}
.y12a{bottom:328.890000px;}
.y67{bottom:336.270000px;}
.yf9{bottom:338.790000px;}
.yd4{bottom:341.310000px;}
.ybc{bottom:343.470000px;}
.y25{bottom:343.650000px;}
.y5a{bottom:345.270000px;}
.y8e{bottom:348.330000px;}
.y129{bottom:349.950000px;}
.yf8{bottom:359.850000px;}
.yd3{bottom:362.370000px;}
.ybb{bottom:364.530000px;}
.y24{bottom:364.710000px;}
.y59{bottom:366.330000px;}
.y8d{bottom:369.390000px;}
.y128{bottom:371.010000px;}
.yf7{bottom:380.955000px;}
.yd2{bottom:383.475000px;}
.yba{bottom:385.635000px;}
.y23{bottom:385.815000px;}
.y58{bottom:387.435000px;}
.y8c{bottom:390.495000px;}
.y127{bottom:392.115000px;}
.yd1{bottom:399.315000px;}
.yf6{bottom:402.015000px;}
.yb9{bottom:406.695000px;}
.y22{bottom:406.875000px;}
.y57{bottom:408.495000px;}
.y8b{bottom:411.555000px;}
.y126{bottom:413.175000px;}
.yf5{bottom:423.075000px;}
.ycf{bottom:423.435000px;}
.yb8{bottom:427.755000px;}
.y21{bottom:427.935000px;}
.y56{bottom:429.555000px;}
.y125{bottom:434.235000px;}
.y8a{bottom:441.615000px;}
.yf4{bottom:444.135000px;}
.yb7{bottom:448.815000px;}
.y55{bottom:450.615000px;}
.y20{bottom:451.155000px;}
.y124{bottom:455.295000px;}
.y89{bottom:462.675000px;}
.yf3{bottom:465.195000px;}
.yce{bottom:468.795000px;}
.yb6{bottom:469.875000px;}
.y54{bottom:471.675000px;}
.y123{bottom:476.355000px;}
.y1f{bottom:481.395000px;}
.y88{bottom:483.735000px;}
.yf2{bottom:486.255000px;}
.yb5{bottom:490.935000px;}
.y53{bottom:492.735000px;}
.ycc{bottom:493.635000px;}
.y122{bottom:497.415000px;}
.y1e{bottom:502.455000px;}
.y87{bottom:504.795000px;}
.yf1{bottom:507.315000px;}
.yb4{bottom:511.995000px;}
.y52{bottom:513.795000px;}
.y121{bottom:518.475000px;}
.y1d{bottom:523.515000px;}
.y86{bottom:525.855000px;}
.yf0{bottom:528.375000px;}
.yb3{bottom:533.055000px;}
.y51{bottom:534.855000px;}
.y120{bottom:539.535000px;}
.y1c{bottom:544.575000px;}
.y85{bottom:546.915000px;}
.yef{bottom:549.435000px;}
.yb2{bottom:554.115000px;}
.y50{bottom:555.915000px;}
.y11f{bottom:560.595000px;}
.y1b{bottom:565.635000px;}
.y84{bottom:567.975000px;}
.yee{bottom:570.495000px;}
.yb1{bottom:575.175000px;}
.y4f{bottom:576.975000px;}
.y11e{bottom:581.655000px;}
.yec{bottom:585.255000px;}
.y1a{bottom:586.695000px;}
.y83{bottom:589.035000px;}
.yb0{bottom:596.235000px;}
.y4e{bottom:598.035000px;}
.y11d{bottom:602.715000px;}
.y19{bottom:607.755000px;}
.yeb{bottom:609.015000px;}
.y82{bottom:610.095000px;}
.yaf{bottom:617.115000px;}
.y4d{bottom:619.095000px;}
.y11c{bottom:623.775000px;}
.y18{bottom:628.815000px;}
.y81{bottom:631.155000px;}
.yea{bottom:632.625000px;}
.y4c{bottom:640.185000px;}
.y11b{bottom:644.865000px;}
.yae{bottom:647.205000px;}
.y17{bottom:649.905000px;}
.y80{bottom:652.245000px;}
.ye9{bottom:656.565000px;}
.y4b{bottom:661.245000px;}
.y11a{bottom:665.925000px;}
.yad{bottom:668.265000px;}
.y16{bottom:670.965000px;}
.y7f{bottom:673.305000px;}
.ye8{bottom:680.145000px;}
.y4a{bottom:682.305000px;}
.y119{bottom:686.985000px;}
.yac{bottom:689.325000px;}
.y15{bottom:692.025000px;}
.y7e{bottom:694.365000px;}
.y49{bottom:703.365000px;}
.ye7{bottom:704.085000px;}
.y118{bottom:708.045000px;}
.yab{bottom:710.385000px;}
.y14{bottom:713.085000px;}
.y7d{bottom:715.425000px;}
.y48{bottom:724.425000px;}
.y117{bottom:729.105000px;}
.yaa{bottom:731.445000px;}
.y13{bottom:734.145000px;}
.y7c{bottom:736.485000px;}
.y47{bottom:745.485000px;}
.y116{bottom:750.165000px;}
.ya9{bottom:752.505000px;}
.y12{bottom:755.205000px;}
.y7b{bottom:757.365000px;}
.y46{bottom:766.365000px;}
.y115{bottom:771.225000px;}
.ya8{bottom:773.565000px;}
.y11{bottom:776.265000px;}
.y7a{bottom:778.425000px;}
.y45{bottom:787.425000px;}
.y114{bottom:792.285000px;}
.ya7{bottom:794.625000px;}
.y10{bottom:797.145000px;}
.y79{bottom:799.485000px;}
.y44{bottom:808.485000px;}
.y113{bottom:813.345000px;}
.ya6{bottom:815.685000px;}
.yf{bottom:818.205000px;}
.y78{bottom:820.545000px;}
.y43{bottom:829.545000px;}
.y112{bottom:834.405000px;}
.ya5{bottom:836.745000px;}
.ye{bottom:839.265000px;}
.y77{bottom:841.605000px;}
.y42{bottom:850.605000px;}
.y111{bottom:855.285000px;}
.ya4{bottom:857.805000px;}
.yd{bottom:862.665000px;}
.y41{bottom:871.665000px;}
.y110{bottom:876.345000px;}
.ya3{bottom:878.865000px;}
.y76{bottom:883.725000px;}
.yc{bottom:888.990000px;}
.y40{bottom:892.770000px;}
.y10f{bottom:897.450000px;}
.ya2{bottom:899.970000px;}
.y75{bottom:904.830000px;}
.yb{bottom:905.730000px;}
.y3f{bottom:913.830000px;}
.y10e{bottom:918.510000px;}
.ya1{bottom:921.030000px;}
.y74{bottom:925.890000px;}
.ya{bottom:928.050000px;}
.y3e{bottom:934.890000px;}
.y10d{bottom:939.570000px;}
.ya0{bottom:942.090000px;}
.y73{bottom:946.950000px;}
.y9{bottom:953.070000px;}
.y3d{bottom:955.950000px;}
.y9f{bottom:956.850000px;}
.y10c{bottom:960.630000px;}
.ye6{bottom:968.010000px;}
.y3c{bottom:977.010000px;}
.y9e{bottom:981.150000px;}
.y10b{bottom:981.690000px;}
.y8{bottom:986.730000px;}
.ye5{bottom:989.070000px;}
.y10a{bottom:996.450000px;}
.y3b{bottom:998.070000px;}
.y9d{bottom:1005.630000px;}
.ye4{bottom:1010.130000px;}
.y3a{bottom:1019.130000px;}
.y109{bottom:1019.850000px;}
.y7{bottom:1020.390000px;}
.y9b{bottom:1030.110000px;}
.ye3{bottom:1031.190000px;}
.y39{bottom:1040.190000px;}
.y108{bottom:1043.970000px;}
.ye2{bottom:1052.250000px;}
.y5{bottom:1060.710000px;}
.y38{bottom:1061.250000px;}
.y107{bottom:1067.370000px;}
.ye1{bottom:1073.310000px;}
.y37{bottom:1082.310000px;}
.y106{bottom:1091.310000px;}
.y4{bottom:1092.930000px;}
.ye0{bottom:1094.370000px;}
.y36{bottom:1103.370000px;}
.y105{bottom:1115.250000px;}
.y35{bottom:1124.430000px;}
.y3{bottom:1124.970000px;}
.y34{bottom:1145.520000px;}
.y2{bottom:1157.220000px;}
.y33{bottom:1173.420000px;}
.y1{bottom:1191.780000px;}
.y32{bottom:1193.580000px;}
.h14{height:2.864531px;}
.ha{height:21.060000px;}
.he{height:21.240000px;}
.h11{height:21.420000px;}
.hd{height:21.600000px;}
.hc{height:21.780000px;}
.hb{height:23.040000px;}
.hf{height:23.220000px;}
.h7{height:38.671172px;}
.h10{height:42.300000px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h12{height:61.423863px;}
.h9{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h13{height:84.996000px;}
.h4{height:98.051133px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wc{width:43.020000px;}
.w10{width:43.380000px;}
.we{width:87.480000px;}
.w4{width:93.600000px;}
.wa{width:100.800000px;}
.w7{width:101.160000px;}
.w8{width:113.976000px;}
.w5{width:127.296000px;}
.wf{width:128.016000px;}
.wb{width:134.856000px;}
.w12{width:210.855000px;}
.w9{width:269.715000px;}
.wd{width:273.315000px;}
.w11{width:273.495000px;}
.w3{width:281.955000px;}
.w6{width:289.695000px;}
.w13{width:580.965000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:7.560000px;}
.x1{left:53.999987px;}
.x5{left:75.599987px;}
.x4{left:80.999987px;}
.x6{left:86.399987px;}
.x2{left:96.875987px;}
.x3{left:106.595987px;}
.x13{left:140.435987px;}
.xb{left:179.670000px;}
.x10{left:182.190000px;}
.x14{left:191.370000px;}
.x7{left:194.610000px;}
.xd{left:215.850000px;}
.x11{left:225.750000px;}
.x15{left:264.855000px;}
.xc{left:469.905000px;}
.x9{left:476.925000px;}
.xe{left:485.925000px;}
.x12{left:499.425000px;}
.xa{left:570.885000px;}
.xf{left:587.085000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.720000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1b{letter-spacing:-0.853333pt;}
.lsd{letter-spacing:-0.618667pt;}
.ls1f{letter-spacing:-0.515200pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls10{letter-spacing:-0.368000pt;}
.ls21{letter-spacing:-0.290133pt;}
.ls2b{letter-spacing:-0.269333pt;}
.ls7{letter-spacing:-0.259733pt;}
.ls8{letter-spacing:-0.213867pt;}
.ls29{letter-spacing:-0.102400pt;}
.lsc{letter-spacing:-0.095467pt;}
.ls1a{letter-spacing:-0.057600pt;}
.ls14{letter-spacing:-0.051840pt;}
.ls27{letter-spacing:-0.036480pt;}
.ls6{letter-spacing:-0.017920pt;}
.ls15{letter-spacing:-0.001280pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.021120pt;}
.ls22{letter-spacing:0.053867pt;}
.ls1e{letter-spacing:0.066667pt;}
.ls2c{letter-spacing:0.083200pt;}
.lsa{letter-spacing:0.124800pt;}
.ls3{letter-spacing:0.154880pt;}
.ls11{letter-spacing:0.155733pt;}
.ls23{letter-spacing:0.194133pt;}
.ls18{letter-spacing:0.195733pt;}
.ls1d{letter-spacing:0.256533pt;}
.ls20{letter-spacing:0.272000pt;}
.ls16{letter-spacing:0.274667pt;}
.ls13{letter-spacing:0.426133pt;}
.ls9{letter-spacing:0.437333pt;}
.ls12{letter-spacing:0.438400pt;}
.lsb{letter-spacing:0.570667pt;}
.ls2a{letter-spacing:0.592640pt;}
.ls28{letter-spacing:0.805333pt;}
.ls19{letter-spacing:0.912000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls24{letter-spacing:20.432640pt;}
.ls26{letter-spacing:27.472640pt;}
.lsf{letter-spacing:38.352640pt;}
.lse{letter-spacing:40.912640pt;}
.ls17{letter-spacing:44.752640pt;}
.ls25{letter-spacing:54.480640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws10{word-spacing:-12.810453pt;}
.wsa{word-spacing:-12.279787pt;}
.wse{word-spacing:-12.277120pt;}
.wsb{word-spacing:-12.200853pt;}
.ws7{word-spacing:-12.160853pt;}
.ws14{word-spacing:-12.088320pt;}
.wsd{word-spacing:-12.026240pt;}
.ws5{word-spacing:-12.005120pt;}
.ws9{word-spacing:-12.003840pt;}
.wsf{word-spacing:-11.968640pt;}
.ws8{word-spacing:-11.953280pt;}
.wsc{word-spacing:-11.947520pt;}
.ws12{word-spacing:-11.902720pt;}
.ws13{word-spacing:-11.735787pt;}
.ws11{word-spacing:-11.714987pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.ws6{word-spacing:0.000000pt;}
._4{margin-left:-1290.112213pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-892.257280pt;}
._5{margin-left:-517.017387pt;}
._7{margin-left:-3.848533pt;}
._6{margin-left:-2.944000pt;}
._d{margin-left:-2.018560pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._c{width:2.347307pt;}
._b{width:3.282133pt;}
._12{width:4.283520pt;}
._e{width:5.359360pt;}
._11{width:6.350933pt;}
._8{width:7.320320pt;}
._9{width:8.256640pt;}
._a{width:9.732267pt;}
._f{width:10.871893pt;}
._13{width:13.419520pt;}
._14{width:15.245440pt;}
._15{width:16.183893pt;}
._10{width:17.210880pt;}
._1a{width:18.538880pt;}
._17{width:19.583573pt;}
._16{width:20.504320pt;}
._18{width:33.872213pt;}
._19{width:34.849067pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:6.080000pt;}
.yc7{bottom:6.240000pt;}
.yed{bottom:6.400000pt;}
.yc5{bottom:6.560000pt;}
.yc3{bottom:6.720000pt;}
.yc1{bottom:7.840000pt;}
.ycd{bottom:8.000000pt;}
.yd0{bottom:24.960000pt;}
.y139{bottom:25.120000pt;}
.y136{bottom:31.520000pt;}
.y138{bottom:44.032000pt;}
.y6{bottom:52.000000pt;}
.y137{bottom:62.906667pt;}
.y31{bottom:80.960000pt;}
.y66{bottom:82.240000pt;}
.y9a{bottom:84.960000pt;}
.y135{bottom:86.400000pt;}
.ycb{bottom:87.360000pt;}
.y72{bottom:92.960000pt;}
.y104{bottom:95.200000pt;}
.ydf{bottom:97.440000pt;}
.y30{bottom:99.680000pt;}
.y65{bottom:100.960000pt;}
.y99{bottom:103.680000pt;}
.y134{bottom:105.120000pt;}
.yca{bottom:106.080000pt;}
.y71{bottom:111.680000pt;}
.y103{bottom:113.952000pt;}
.yde{bottom:116.192000pt;}
.y2f{bottom:118.272000pt;}
.y64{bottom:119.712000pt;}
.y98{bottom:122.432000pt;}
.y133{bottom:123.872000pt;}
.yc9{bottom:124.832000pt;}
.y70{bottom:130.432000pt;}
.y102{bottom:132.672000pt;}
.ydd{bottom:134.906667pt;}
.y2e{bottom:136.986667pt;}
.y63{bottom:138.426667pt;}
.y97{bottom:141.146667pt;}
.y132{bottom:142.586667pt;}
.yc8{bottom:143.546667pt;}
.y6f{bottom:149.146667pt;}
.y101{bottom:151.386667pt;}
.ydc{bottom:153.626667pt;}
.y2d{bottom:155.706667pt;}
.yc6{bottom:156.666667pt;}
.y62{bottom:157.146667pt;}
.y96{bottom:159.866667pt;}
.y131{bottom:161.306667pt;}
.y6e{bottom:167.866667pt;}
.y100{bottom:170.106667pt;}
.ydb{bottom:172.346667pt;}
.y2c{bottom:174.426667pt;}
.y61{bottom:175.866667pt;}
.yc4{bottom:177.626667pt;}
.y95{bottom:178.586667pt;}
.y130{bottom:180.026667pt;}
.y6d{bottom:186.586667pt;}
.yff{bottom:188.826667pt;}
.yda{bottom:191.066667pt;}
.y2b{bottom:193.146667pt;}
.y60{bottom:194.586667pt;}
.y94{bottom:197.306667pt;}
.y12f{bottom:198.746667pt;}
.yc2{bottom:198.906667pt;}
.y6c{bottom:205.306667pt;}
.yfe{bottom:207.546667pt;}
.yd9{bottom:209.786667pt;}
.y2a{bottom:211.866667pt;}
.y5f{bottom:213.306667pt;}
.y93{bottom:216.026667pt;}
.y12e{bottom:217.466667pt;}
.yc0{bottom:220.346667pt;}
.y6b{bottom:224.026667pt;}
.yfd{bottom:226.266667pt;}
.yd8{bottom:228.506667pt;}
.y29{bottom:230.586667pt;}
.y5e{bottom:232.026667pt;}
.y92{bottom:234.746667pt;}
.y12d{bottom:236.186667pt;}
.y6a{bottom:242.746667pt;}
.yfc{bottom:244.986667pt;}
.yd7{bottom:247.226667pt;}
.ybf{bottom:249.146667pt;}
.y28{bottom:249.306667pt;}
.y5d{bottom:250.746667pt;}
.y91{bottom:253.466667pt;}
.y12c{bottom:254.906667pt;}
.y69{bottom:261.466667pt;}
.yfb{bottom:263.706667pt;}
.yd6{bottom:265.946667pt;}
.ybe{bottom:267.866667pt;}
.y27{bottom:268.026667pt;}
.y5c{bottom:269.466667pt;}
.y90{bottom:272.186667pt;}
.y12b{bottom:273.626667pt;}
.y68{bottom:280.186667pt;}
.yfa{bottom:282.426667pt;}
.yd5{bottom:284.666667pt;}
.ybd{bottom:286.586667pt;}
.y26{bottom:286.746667pt;}
.y5b{bottom:288.186667pt;}
.y8f{bottom:290.906667pt;}
.y12a{bottom:292.346667pt;}
.y67{bottom:298.906667pt;}
.yf9{bottom:301.146667pt;}
.yd4{bottom:303.386667pt;}
.ybc{bottom:305.306667pt;}
.y25{bottom:305.466667pt;}
.y5a{bottom:306.906667pt;}
.y8e{bottom:309.626667pt;}
.y129{bottom:311.066667pt;}
.yf8{bottom:319.866667pt;}
.yd3{bottom:322.106667pt;}
.ybb{bottom:324.026667pt;}
.y24{bottom:324.186667pt;}
.y59{bottom:325.626667pt;}
.y8d{bottom:328.346667pt;}
.y128{bottom:329.786667pt;}
.yf7{bottom:338.626667pt;}
.yd2{bottom:340.866667pt;}
.yba{bottom:342.786667pt;}
.y23{bottom:342.946667pt;}
.y58{bottom:344.386667pt;}
.y8c{bottom:347.106667pt;}
.y127{bottom:348.546667pt;}
.yd1{bottom:354.946667pt;}
.yf6{bottom:357.346667pt;}
.yb9{bottom:361.506667pt;}
.y22{bottom:361.666667pt;}
.y57{bottom:363.106667pt;}
.y8b{bottom:365.826667pt;}
.y126{bottom:367.266667pt;}
.yf5{bottom:376.066667pt;}
.ycf{bottom:376.386667pt;}
.yb8{bottom:380.226667pt;}
.y21{bottom:380.386667pt;}
.y56{bottom:381.826667pt;}
.y125{bottom:385.986667pt;}
.y8a{bottom:392.546667pt;}
.yf4{bottom:394.786667pt;}
.yb7{bottom:398.946667pt;}
.y55{bottom:400.546667pt;}
.y20{bottom:401.026667pt;}
.y124{bottom:404.706667pt;}
.y89{bottom:411.266667pt;}
.yf3{bottom:413.506667pt;}
.yce{bottom:416.706667pt;}
.yb6{bottom:417.666667pt;}
.y54{bottom:419.266667pt;}
.y123{bottom:423.426667pt;}
.y1f{bottom:427.906667pt;}
.y88{bottom:429.986667pt;}
.yf2{bottom:432.226667pt;}
.yb5{bottom:436.386667pt;}
.y53{bottom:437.986667pt;}
.ycc{bottom:438.786667pt;}
.y122{bottom:442.146667pt;}
.y1e{bottom:446.626667pt;}
.y87{bottom:448.706667pt;}
.yf1{bottom:450.946667pt;}
.yb4{bottom:455.106667pt;}
.y52{bottom:456.706667pt;}
.y121{bottom:460.866667pt;}
.y1d{bottom:465.346667pt;}
.y86{bottom:467.426667pt;}
.yf0{bottom:469.666667pt;}
.yb3{bottom:473.826667pt;}
.y51{bottom:475.426667pt;}
.y120{bottom:479.586667pt;}
.y1c{bottom:484.066667pt;}
.y85{bottom:486.146667pt;}
.yef{bottom:488.386667pt;}
.yb2{bottom:492.546667pt;}
.y50{bottom:494.146667pt;}
.y11f{bottom:498.306667pt;}
.y1b{bottom:502.786667pt;}
.y84{bottom:504.866667pt;}
.yee{bottom:507.106667pt;}
.yb1{bottom:511.266667pt;}
.y4f{bottom:512.866667pt;}
.y11e{bottom:517.026667pt;}
.yec{bottom:520.226667pt;}
.y1a{bottom:521.506667pt;}
.y83{bottom:523.586667pt;}
.yb0{bottom:529.986667pt;}
.y4e{bottom:531.586667pt;}
.y11d{bottom:535.746667pt;}
.y19{bottom:540.226667pt;}
.yeb{bottom:541.346667pt;}
.y82{bottom:542.306667pt;}
.yaf{bottom:548.546667pt;}
.y4d{bottom:550.306667pt;}
.y11c{bottom:554.466667pt;}
.y18{bottom:558.946667pt;}
.y81{bottom:561.026667pt;}
.yea{bottom:562.333333pt;}
.y4c{bottom:569.053333pt;}
.y11b{bottom:573.213333pt;}
.yae{bottom:575.293333pt;}
.y17{bottom:577.693333pt;}
.y80{bottom:579.773333pt;}
.ye9{bottom:583.613333pt;}
.y4b{bottom:587.773333pt;}
.y11a{bottom:591.933333pt;}
.yad{bottom:594.013333pt;}
.y16{bottom:596.413333pt;}
.y7f{bottom:598.493333pt;}
.ye8{bottom:604.573333pt;}
.y4a{bottom:606.493333pt;}
.y119{bottom:610.653333pt;}
.yac{bottom:612.733333pt;}
.y15{bottom:615.133333pt;}
.y7e{bottom:617.213333pt;}
.y49{bottom:625.213333pt;}
.ye7{bottom:625.853333pt;}
.y118{bottom:629.373333pt;}
.yab{bottom:631.453333pt;}
.y14{bottom:633.853333pt;}
.y7d{bottom:635.933333pt;}
.y48{bottom:643.933333pt;}
.y117{bottom:648.093333pt;}
.yaa{bottom:650.173333pt;}
.y13{bottom:652.573333pt;}
.y7c{bottom:654.653333pt;}
.y47{bottom:662.653333pt;}
.y116{bottom:666.813333pt;}
.ya9{bottom:668.893333pt;}
.y12{bottom:671.293333pt;}
.y7b{bottom:673.213333pt;}
.y46{bottom:681.213333pt;}
.y115{bottom:685.533333pt;}
.ya8{bottom:687.613333pt;}
.y11{bottom:690.013333pt;}
.y7a{bottom:691.933333pt;}
.y45{bottom:699.933333pt;}
.y114{bottom:704.253333pt;}
.ya7{bottom:706.333333pt;}
.y10{bottom:708.573333pt;}
.y79{bottom:710.653333pt;}
.y44{bottom:718.653333pt;}
.y113{bottom:722.973333pt;}
.ya6{bottom:725.053333pt;}
.yf{bottom:727.293333pt;}
.y78{bottom:729.373333pt;}
.y43{bottom:737.373333pt;}
.y112{bottom:741.693333pt;}
.ya5{bottom:743.773333pt;}
.ye{bottom:746.013333pt;}
.y77{bottom:748.093333pt;}
.y42{bottom:756.093333pt;}
.y111{bottom:760.253333pt;}
.ya4{bottom:762.493333pt;}
.yd{bottom:766.813333pt;}
.y41{bottom:774.813333pt;}
.y110{bottom:778.973333pt;}
.ya3{bottom:781.213333pt;}
.y76{bottom:785.533333pt;}
.yc{bottom:790.213333pt;}
.y40{bottom:793.573333pt;}
.y10f{bottom:797.733333pt;}
.ya2{bottom:799.973333pt;}
.y75{bottom:804.293333pt;}
.yb{bottom:805.093333pt;}
.y3f{bottom:812.293333pt;}
.y10e{bottom:816.453333pt;}
.ya1{bottom:818.693333pt;}
.y74{bottom:823.013333pt;}
.ya{bottom:824.933333pt;}
.y3e{bottom:831.013333pt;}
.y10d{bottom:835.173333pt;}
.ya0{bottom:837.413333pt;}
.y73{bottom:841.733333pt;}
.y9{bottom:847.173333pt;}
.y3d{bottom:849.733333pt;}
.y9f{bottom:850.533333pt;}
.y10c{bottom:853.893333pt;}
.ye6{bottom:860.453333pt;}
.y3c{bottom:868.453333pt;}
.y9e{bottom:872.133333pt;}
.y10b{bottom:872.613333pt;}
.y8{bottom:877.093333pt;}
.ye5{bottom:879.173333pt;}
.y10a{bottom:885.733333pt;}
.y3b{bottom:887.173333pt;}
.y9d{bottom:893.893333pt;}
.ye4{bottom:897.893333pt;}
.y3a{bottom:905.893333pt;}
.y109{bottom:906.533333pt;}
.y7{bottom:907.013333pt;}
.y9b{bottom:915.653333pt;}
.ye3{bottom:916.613333pt;}
.y39{bottom:924.613333pt;}
.y108{bottom:927.973333pt;}
.ye2{bottom:935.333333pt;}
.y5{bottom:942.853333pt;}
.y38{bottom:943.333333pt;}
.y107{bottom:948.773333pt;}
.ye1{bottom:954.053333pt;}
.y37{bottom:962.053333pt;}
.y106{bottom:970.053333pt;}
.y4{bottom:971.493333pt;}
.ye0{bottom:972.773333pt;}
.y36{bottom:980.773333pt;}
.y105{bottom:991.333333pt;}
.y35{bottom:999.493333pt;}
.y3{bottom:999.973333pt;}
.y34{bottom:1018.240000pt;}
.y2{bottom:1028.640000pt;}
.y33{bottom:1043.040000pt;}
.y1{bottom:1059.360000pt;}
.y32{bottom:1060.960000pt;}
.h14{height:2.546250pt;}
.ha{height:18.720000pt;}
.he{height:18.880000pt;}
.h11{height:19.040000pt;}
.hd{height:19.200000pt;}
.hc{height:19.360000pt;}
.hb{height:20.480000pt;}
.hf{height:20.640000pt;}
.h7{height:34.374375pt;}
.h10{height:37.600000pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h12{height:54.598989pt;}
.h9{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h13{height:75.552000pt;}
.h4{height:87.156562pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wc{width:38.240000pt;}
.w10{width:38.560000pt;}
.we{width:77.760000pt;}
.w4{width:83.200000pt;}
.wa{width:89.600000pt;}
.w7{width:89.920000pt;}
.w8{width:101.312000pt;}
.w5{width:113.152000pt;}
.wf{width:113.792000pt;}
.wb{width:119.872000pt;}
.w12{width:187.426667pt;}
.w9{width:239.746667pt;}
.wd{width:242.946667pt;}
.w11{width:243.106667pt;}
.w3{width:250.626667pt;}
.w6{width:257.506667pt;}
.w13{width:516.413333pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:6.720000pt;}
.x1{left:47.999988pt;}
.x5{left:67.199988pt;}
.x4{left:71.999988pt;}
.x6{left:76.799988pt;}
.x2{left:86.111988pt;}
.x3{left:94.751988pt;}
.x13{left:124.831988pt;}
.xb{left:159.706667pt;}
.x10{left:161.946667pt;}
.x14{left:170.106667pt;}
.x7{left:172.986667pt;}
.xd{left:191.866667pt;}
.x11{left:200.666667pt;}
.x15{left:235.426667pt;}
.xc{left:417.693333pt;}
.x9{left:423.933333pt;}
.xe{left:431.933333pt;}
.x12{left:443.933333pt;}
.xa{left:507.453333pt;}
.xf{left:521.853333pt;}
}




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