
    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_22d234794857b0e0cf80f3e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_ff10674c5c109fb73a549c96.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b829c1f7f22c672a8fce1841.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_5ad4e8fc52ecb7141fbcb350.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_717e045d6c15984010e6e420.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e58e50283a1ae6439e83022c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_93ad63e8b2ccf4ec58cf84be.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3c0ec612f6154fbacbd94078.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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:ffb;src:url('chunks/assets/font_19f4ad488f8ab0f6ea72304f.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v1{vertical-align:-76.320000px;}
.v5{vertical-align:-69.300000px;}
.v4{vertical-align:-60.480000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls14{letter-spacing:-2.880000px;}
.ls10{letter-spacing:-1.824000px;}
.ls12{letter-spacing:-1.680000px;}
.lsa{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-1.422000px;}
.lsb{letter-spacing:-0.954000px;}
.ls4{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.630000px;}
.ls7{letter-spacing:-0.486600px;}
.ls13{letter-spacing:-0.466800px;}
.lsf{letter-spacing:-0.382800px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.089400px;}
.lsd{letter-spacing:-0.020160px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.020160px;}
.lse{letter-spacing:0.535680px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.869760px;}
.ls9{letter-spacing:46.546560px;}
.ls11{letter-spacing:63.953280px;}
.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:-15.120000px;}
.wsa{word-spacing:-15.099840px;}
.ws10{word-spacing:-14.653200px;}
.ws8{word-spacing:-14.166000px;}
.ws9{word-spacing:-13.698000px;}
.ws4{word-spacing:-13.680000px;}
.ws6{word-spacing:-13.050000px;}
.wsc{word-spacing:-12.399264px;}
.wsb{word-spacing:-12.366720px;}
.wsd{word-spacing:-11.983920px;}
.ws2{word-spacing:-11.160000px;}
.wsf{word-spacing:-10.686720px;}
.wse{word-spacing:-10.542720px;}
.ws3{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.000000px;}
.ws7{word-spacing:0.000000px;}
._15{margin-left:-5.177760px;}
._f{margin-left:-3.467520px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._8{width:5.178240px;}
._a{width:6.791040px;}
._b{width:8.447040px;}
._e{width:9.645120px;}
._d{width:10.748160px;}
._10{width:11.761920px;}
._11{width:13.099680px;}
._1a{width:14.117760px;}
._6{width:17.046720px;}
._5{width:18.207360px;}
._14{width:19.386240px;}
._7{width:20.437440px;}
._c{width:21.456960px;}
._13{width:23.477760px;}
._12{width:24.641280px;}
._19{width:61.800960px;}
._18{width:63.209280px;}
._16{width:64.680000px;}
._17{width:66.180000px;}
._9{width:1716.463200px;}
._1b{width:1897.085760px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(88,88,88);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:5.760000px;}
.fs6{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.720000px;}
.fsc{font-size:54.864000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y112{bottom:-15.270000px;}
.yda{bottom:-8.895000px;}
.y0{bottom:0.000000px;}
.y123{bottom:0.075000px;}
.y116{bottom:0.825000px;}
.yde{bottom:2.235000px;}
.ydc{bottom:2.265000px;}
.y113{bottom:3.450000px;}
.y49{bottom:3.595500px;}
.yc0{bottom:3.600000px;}
.yd1{bottom:3.750000px;}
.y89{bottom:3.945000px;}
.y90{bottom:3.946500px;}
.y92{bottom:3.955500px;}
.y5{bottom:3.960000px;}
.y87{bottom:3.975000px;}
.yf1{bottom:3.990000px;}
.y9a{bottom:4.365000px;}
.ya5{bottom:4.665000px;}
.y96{bottom:4.680000px;}
.ya1{bottom:4.695000px;}
.ye2{bottom:4.725000px;}
.ya3{bottom:5.025000px;}
.y98{bottom:5.040000px;}
.y108{bottom:5.325000px;}
.y57{bottom:5.370000px;}
.ye0{bottom:5.400000px;}
.y2{bottom:7.920000px;}
.y55{bottom:8.995500px;}
.y11d{bottom:9.795000px;}
.y121{bottom:12.315000px;}
.y11f{bottom:14.115000px;}
.y111{bottom:14.970000px;}
.yaa{bottom:20.865000px;}
.yae{bottom:21.225000px;}
.y4{bottom:21.240000px;}
.yf0{bottom:21.270000px;}
.yd9{bottom:21.345000px;}
.y54{bottom:24.475500px;}
.y48{bottom:33.115500px;}
.y41{bottom:38.520000px;}
.y11c{bottom:39.675000px;}
.y53{bottom:39.955500px;}
.y3{bottom:44.280000px;}
.y110{bottom:44.490000px;}
.yd8{bottom:51.225000px;}
.y47{bottom:54.034500px;}
.y40{bottom:55.800000px;}
.y52{bottom:57.634500px;}
.y7{bottom:57.636000px;}
.y46{bottom:66.994500px;}
.y11b{bottom:69.585000px;}
.y3f{bottom:73.080000px;}
.y51{bottom:73.474500px;}
.y10f{bottom:74.415000px;}
.yd7{bottom:80.745000px;}
.y50{bottom:86.434500px;}
.y45{bottom:86.794500px;}
.y3e{bottom:90.360000px;}
.y4f{bottom:92.554500px;}
.y94{bottom:95.436000px;}
.y42{bottom:96.520500px;}
.y106{bottom:97.596000px;}
.ycf{bottom:98.316000px;}
.y11a{bottom:99.105000px;}
.y10e{bottom:104.295000px;}
.y135{bottom:107.316000px;}
.y3d{bottom:107.640000px;}
.y4e{bottom:108.394500px;}
.y93{bottom:109.840500px;}
.yd6{bottom:110.625000px;}
.y105{bottom:114.876000px;}
.y4d{bottom:123.874500px;}
.yce{bottom:124.596000px;}
.y3c{bottom:124.965000px;}
.y91{bottom:127.840500px;}
.y119{bottom:128.985000px;}
.y104{bottom:132.156000px;}
.y134{bottom:133.236000px;}
.y10d{bottom:134.175000px;}
.y4c{bottom:139.354500px;}
.yd5{bottom:140.550000px;}
.y3b{bottom:141.885000px;}
.y8f{bottom:145.885500px;}
.y44{bottom:148.714500px;}
.y103{bottom:149.472000px;}
.ycd{bottom:150.915000px;}
.y4b{bottom:154.834500px;}
.y118{bottom:155.985000px;}
.y120{bottom:157.680000px;}
.y3a{bottom:159.165000px;}
.y43{bottom:159.514500px;}
.y10c{bottom:163.695000px;}
.y8e{bottom:163.890000px;}
.y102{bottom:166.755000px;}
.y122{bottom:169.920000px;}
.y4a{bottom:170.314500px;}
.yd4{bottom:170.430000px;}
.y39{bottom:176.445000px;}
.ycc{bottom:177.195000px;}
.y11e{bottom:181.080000px;}
.y8d{bottom:181.890000px;}
.y101{bottom:183.675000px;}
.y10b{bottom:193.575000px;}
.y38{bottom:193.725000px;}
.yd3{bottom:197.430000px;}
.y8c{bottom:199.890000px;}
.y100{bottom:200.955000px;}
.ycb{bottom:203.475000px;}
.y117{bottom:209.880000px;}
.y37{bottom:211.005000px;}
.y8b{bottom:217.890000px;}
.y10a{bottom:220.965000px;}
.yff{bottom:226.875000px;}
.y36{bottom:228.285000px;}
.yca{bottom:229.755000px;}
.y8a{bottom:235.890000px;}
.yc9{bottom:244.170000px;}
.y35{bottom:245.565000px;}
.y88{bottom:253.890000px;}
.yc8{bottom:262.170000px;}
.y34{bottom:262.875000px;}
.ydd{bottom:265.680000px;}
.y86{bottom:271.890000px;}
.y33{bottom:280.155000px;}
.yc7{bottom:280.185000px;}
.y10{bottom:285.585000px;}
.yd2{bottom:287.280000px;}
.y85{bottom:293.505000px;}
.ydb{bottom:295.200000px;}
.y32{bottom:297.435000px;}
.yc6{bottom:298.185000px;}
.y84{bottom:310.785000px;}
.y31{bottom:314.715000px;}
.yc5{bottom:316.185000px;}
.y1e{bottom:320.475000px;}
.y83{bottom:328.065000px;}
.y30{bottom:331.635000px;}
.yc4{bottom:334.185000px;}
.y1d{bottom:344.595000px;}
.y2f{bottom:348.915000px;}
.yc3{bottom:352.185000px;}
.y82{bottom:354.705000px;}
.y2e{bottom:366.195000px;}
.y1c{bottom:369.075000px;}
.yc2{bottom:370.185000px;}
.y81{bottom:371.985000px;}
.y2d{bottom:383.505000px;}
.y115{bottom:388.080000px;}
.yc1{bottom:388.185000px;}
.y80{bottom:389.265000px;}
.y1b{bottom:393.225000px;}
.y2c{bottom:400.785000px;}
.ybf{bottom:406.230000px;}
.y7f{bottom:406.590000px;}
.y14e{bottom:415.590000px;}
.y133{bottom:416.670000px;}
.y1a{bottom:417.345000px;}
.y2b{bottom:418.065000px;}
.y7e{bottom:423.870000px;}
.y14d{bottom:432.870000px;}
.y132{bottom:433.950000px;}
.y2a{bottom:434.985000px;}
.ybe{bottom:436.830000px;}
.y7d{bottom:441.150000px;}
.y19{bottom:441.465000px;}
.y14c{bottom:450.150000px;}
.y131{bottom:451.230000px;}
.ybd{bottom:454.110000px;}
.y7c{bottom:458.430000px;}
.y29{bottom:460.905000px;}
.y18{bottom:465.585000px;}
.y14b{bottom:467.430000px;}
.y130{bottom:468.510000px;}
.y7b{bottom:475.350000px;}
.y28{bottom:476.385000px;}
.ybc{bottom:480.750000px;}
.y14a{bottom:484.350000px;}
.y12f{bottom:485.790000px;}
.y17{bottom:489.705000px;}
.y27{bottom:491.865000px;}
.y7a{bottom:492.630000px;}
.ybb{bottom:498.030000px;}
.y149{bottom:501.630000px;}
.y12e{bottom:503.070000px;}
.y26{bottom:507.345000px;}
.yd0{bottom:508.680000px;}
.y79{bottom:509.910000px;}
.y16{bottom:513.825000px;}
.yba{bottom:515.310000px;}
.y148{bottom:518.910000px;}
.y12d{bottom:519.990000px;}
.y25{bottom:523.230000px;}
.y78{bottom:527.190000px;}
.yb9{bottom:532.230000px;}
.y147{bottom:536.190000px;}
.y12c{bottom:537.300000px;}
.y15{bottom:537.990000px;}
.y24{bottom:538.710000px;}
.y77{bottom:544.500000px;}
.yfe{bottom:548.460000px;}
.yb8{bottom:549.540000px;}
.y146{bottom:553.500000px;}
.y23{bottom:554.190000px;}
.y12b{bottom:554.580000px;}
.y76{bottom:561.780000px;}
.y14{bottom:562.110000px;}
.yfd{bottom:565.740000px;}
.yb7{bottom:566.820000px;}
.y22{bottom:569.670000px;}
.y145{bottom:570.780000px;}
.y12a{bottom:571.860000px;}
.y75{bottom:579.060000px;}
.yfc{bottom:583.020000px;}
.yb6{bottom:584.100000px;}
.y21{bottom:585.150000px;}
.y13{bottom:586.230000px;}
.y144{bottom:587.700000px;}
.y129{bottom:589.140000px;}
.y74{bottom:596.340000px;}
.yfb{bottom:600.300000px;}
.y20{bottom:600.630000px;}
.yb5{bottom:601.380000px;}
.y128{bottom:606.420000px;}
.y12{bottom:610.350000px;}
.y73{bottom:613.260000px;}
.y143{bottom:614.340000px;}
.yfa{bottom:617.580000px;}
.yb4{bottom:618.660000px;}
.y127{bottom:623.700000px;}
.y1f{bottom:631.230000px;}
.y142{bottom:631.620000px;}
.y11{bottom:634.470000px;}
.yf9{bottom:634.860000px;}
.yb3{bottom:635.940000px;}
.y72{bottom:639.900000px;}
.y126{bottom:640.980000px;}
.y141{bottom:648.900000px;}
.yf8{bottom:652.140000px;}
.yb2{bottom:653.220000px;}
.y71{bottom:657.180000px;}
.y140{bottom:666.180000px;}
.y125{bottom:666.900000px;}
.yf7{bottom:669.450000px;}
.yb1{bottom:670.530000px;}
.y70{bottom:674.130000px;}
.y13f{bottom:683.130000px;}
.yf6{bottom:686.730000px;}
.yb0{bottom:687.810000px;}
.y6f{bottom:691.410000px;}
.y13e{bottom:700.410000px;}
.yf5{bottom:704.010000px;}
.yaf{bottom:705.090000px;}
.y114{bottom:708.120000px;}
.y6e{bottom:708.330000px;}
.y13d{bottom:717.690000px;}
.yf4{bottom:727.065000px;}
.yad{bottom:728.145000px;}
.y6d{bottom:734.970000px;}
.y109{bottom:740.160000px;}
.y6c{bottom:752.250000px;}
.yf3{bottom:762.345000px;}
.yac{bottom:763.425000px;}
.y6b{bottom:769.170000px;}
.y13c{bottom:769.530000px;}
.yf2{bottom:781.065000px;}
.yab{bottom:782.145000px;}
.y13b{bottom:786.810000px;}
.y6a{bottom:795.810000px;}
.yef{bottom:800.145000px;}
.ya9{bottom:801.270000px;}
.y13a{bottom:804.135000px;}
.y69{bottom:813.135000px;}
.y139{bottom:821.415000px;}
.y68{bottom:830.415000px;}
.yee{bottom:835.470000px;}
.ya8{bottom:836.550000px;}
.y138{bottom:838.695000px;}
.y67{bottom:847.695000px;}
.yed{bottom:854.550000px;}
.ya7{bottom:855.270000px;}
.y137{bottom:855.975000px;}
.y66{bottom:864.975000px;}
.y136{bottom:872.895000px;}
.yec{bottom:873.270000px;}
.ya6{bottom:873.990000px;}
.y65{bottom:882.255000px;}
.yeb{bottom:892.350000px;}
.ya4{bottom:893.070000px;}
.y64{bottom:899.175000px;}
.yea{bottom:911.070000px;}
.ya2{bottom:911.790000px;}
.y63{bottom:916.455000px;}
.ye9{bottom:930.150000px;}
.ya0{bottom:930.870000px;}
.y62{bottom:933.765000px;}
.yf{bottom:942.045000px;}
.ye8{bottom:948.885000px;}
.y9f{bottom:949.605000px;}
.ye{bottom:949.965000px;}
.y61{bottom:951.045000px;}
.ye7{bottom:967.605000px;}
.y60{bottom:968.325000px;}
.yd{bottom:974.085000px;}
.y5f{bottom:985.605000px;}
.y107{bottom:986.040000px;}
.ye6{bottom:987.045000px;}
.y9e{bottom:987.405000px;}
.yc{bottom:991.365000px;}
.y5e{bottom:1002.885000px;}
.ye5{bottom:1005.765000px;}
.y9d{bottom:1006.485000px;}
.y5d{bottom:1020.165000px;}
.yb{bottom:1020.525000px;}
.ye4{bottom:1024.845000px;}
.y9c{bottom:1025.205000px;}
.y5c{bottom:1037.445000px;}
.ye3{bottom:1043.925000px;}
.y9b{bottom:1044.285000px;}
.ya{bottom:1045.005000px;}
.y5b{bottom:1054.725000px;}
.ye1{bottom:1062.645000px;}
.y99{bottom:1063.005000px;}
.y9{bottom:1069.530000px;}
.y5a{bottom:1072.050000px;}
.ydf{bottom:1081.410000px;}
.y97{bottom:1081.770000px;}
.y8{bottom:1088.250000px;}
.y59{bottom:1088.970000px;}
.y56{bottom:1091.520000px;}
.y95{bottom:1100.850000px;}
.y58{bottom:1105.890000px;}
.y124{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.h12{height:5.650313px;}
.h33{height:11.160000px;}
.h29{height:13.320000px;}
.h2f{height:14.400000px;}
.h18{height:17.265000px;}
.h19{height:17.266500px;}
.h1b{height:17.275500px;}
.h17{height:17.280000px;}
.h23{height:17.310000px;}
.h1a{height:17.311500px;}
.h1e{height:17.670000px;}
.h1c{height:17.985000px;}
.h20{height:18.000000px;}
.h2b{height:18.030000px;}
.h1d{height:18.345000px;}
.ha{height:18.372656px;}
.h2a{height:18.705000px;}
.h24{height:20.880000px;}
.h2d{height:22.320000px;}
.h32{height:23.400000px;}
.h6{height:24.348516px;}
.h31{height:25.200000px;}
.h13{height:27.720000px;}
.h10{height:29.678906px;}
.h21{height:34.185000px;}
.h22{height:34.545000px;}
.h2c{height:34.581000px;}
.h8{height:38.158594px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.h15{height:42.229688px;}
.he{height:53.677969px;}
.h27{height:54.426094px;}
.h28{height:54.569320px;}
.h11{height:55.147500px;}
.h1f{height:59.328281px;}
.h5{height:59.357813px;}
.h9{height:60.952500px;}
.h16{height:62.163910px;}
.h14{height:63.455625px;}
.h7{height:63.577969px;}
.h3{height:65.884219px;}
.h2{height:81.390000px;}
.h25{height:83.071406px;}
.h4{height:116.640000px;}
.h30{height:167.400000px;}
.hf{height:188.325000px;}
.h26{height:208.800000px;}
.h2e{height:232.200000px;}
.hb{height:643.830000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w23{width:15.480000px;}
.w12{width:61.920000px;}
.w11{width:62.265000px;}
.w13{width:62.310000px;}
.wd{width:62.625000px;}
.we{width:62.670000px;}
.wf{width:62.676000px;}
.wc{width:63.030000px;}
.w1e{width:63.360000px;}
.w8{width:73.470000px;}
.w1b{width:79.920000px;}
.w15{width:81.000000px;}
.w1c{width:86.400000px;}
.w10{width:88.941000px;}
.w22{width:90.360000px;}
.w19{width:93.600000px;}
.w7{width:94.680000px;}
.w1d{width:95.760000px;}
.w16{width:96.150000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.wb{width:143.685000px;}
.w9{width:148.032000px;}
.w26{width:150.120000px;}
.wa{width:152.325000px;}
.w21{width:154.800000px;}
.w25{width:155.880000px;}
.w20{width:158.760000px;}
.w18{width:162.765000px;}
.w6{width:163.080000px;}
.w17{width:165.315000px;}
.w14{width:207.450000px;}
.w1a{width:540.000000px;}
.w1f{width:549.000000px;}
.w24{width:549.360000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:5.445000px;}
.x1f{left:6.876000px;}
.x17{left:8.266500px;}
.x25{left:9.720000px;}
.x4{left:13.305000px;}
.x38{left:15.120000px;}
.x3a{left:16.185000px;}
.x15{left:17.266500px;}
.x1b{left:18.346500px;}
.x5{left:19.425000px;}
.x27{left:23.415000px;}
.x35{left:25.185000px;}
.x16{left:29.146500px;}
.x22{left:33.135000px;}
.x2b{left:42.510000px;}
.xf{left:43.906500px;}
.x2a{left:44.985000px;}
.x29{left:46.110000px;}
.x1c{left:47.542500px;}
.x6{left:48.615000px;}
.x10{left:50.782500px;}
.x14{left:54.022500px;}
.xe{left:55.102500px;}
.x1d{left:57.262500px;}
.x19{left:62.295000px;}
.x13{left:73.105500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x12{left:90.025500px;}
.x2{left:95.425500px;}
.x1e{left:102.985500px;}
.x1a{left:106.945500px;}
.x2c{left:108.769500px;}
.x20{left:113.436000px;}
.x11{left:124.585500px;}
.x3c{left:146.880000px;}
.x44{left:165.240000px;}
.x3{left:182.250000px;}
.x34{left:193.050000px;}
.x40{left:196.560000px;}
.x45{left:200.520000px;}
.x21{left:211.410000px;}
.x18{left:218.970000px;}
.x3d{left:227.160000px;}
.x2d{left:253.185000px;}
.xa{left:261.465000px;}
.x41{left:268.560000px;}
.x36{left:274.785000px;}
.x49{left:278.385000px;}
.x48{left:283.065000px;}
.x46{left:300.960000px;}
.x23{left:306.825000px;}
.x2e{left:316.950000px;}
.xb{left:330.630000px;}
.x37{left:371.670000px;}
.x3e{left:375.840000px;}
.x24{left:381.030000px;}
.x3f{left:389.160000px;}
.x3b{left:417.240000px;}
.x43{left:420.120000px;}
.x2f{left:443.700000px;}
.x4a{left:446.580000px;}
.x42{left:489.960000px;}
.x30{left:507.105000px;}
.x47{left:519.840000px;}
.x26{left:529.785000px;}
.x39{left:537.705000px;}
.xc{left:580.935000px;}
.x31{left:596.790000px;}
.x32{left:659.790000px;}
.x33{left:722.445000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xd{left:807.090000px;}
@media print{
.v1{vertical-align:-67.840000pt;}
.v5{vertical-align:-61.600000pt;}
.v4{vertical-align:-53.760000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls14{letter-spacing:-2.560000pt;}
.ls10{letter-spacing:-1.621333pt;}
.ls12{letter-spacing:-1.493333pt;}
.lsa{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-1.264000pt;}
.lsb{letter-spacing:-0.848000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.560000pt;}
.ls7{letter-spacing:-0.432533pt;}
.ls13{letter-spacing:-0.414933pt;}
.lsf{letter-spacing:-0.340267pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.079467pt;}
.lsd{letter-spacing:-0.017920pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.017920pt;}
.lse{letter-spacing:0.476160pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.773120pt;}
.ls9{letter-spacing:41.374720pt;}
.ls11{letter-spacing:56.847360pt;}
.ws0{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.422080pt;}
.ws10{word-spacing:-13.025067pt;}
.ws8{word-spacing:-12.592000pt;}
.ws9{word-spacing:-12.176000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws6{word-spacing:-11.600000pt;}
.wsc{word-spacing:-11.021568pt;}
.wsb{word-spacing:-10.992640pt;}
.wsd{word-spacing:-10.652373pt;}
.ws2{word-spacing:-9.920000pt;}
.wsf{word-spacing:-9.499307pt;}
.wse{word-spacing:-9.371307pt;}
.ws3{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws7{word-spacing:0.000000pt;}
._15{margin-left:-4.602453pt;}
._f{margin-left:-3.082240pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._8{width:4.602880pt;}
._a{width:6.036480pt;}
._b{width:7.508480pt;}
._e{width:8.573440pt;}
._d{width:9.553920pt;}
._10{width:10.455040pt;}
._11{width:11.644160pt;}
._1a{width:12.549120pt;}
._6{width:15.152640pt;}
._5{width:16.184320pt;}
._14{width:17.232213pt;}
._7{width:18.166613pt;}
._c{width:19.072853pt;}
._13{width:20.869120pt;}
._12{width:21.903360pt;}
._19{width:54.934187pt;}
._18{width:56.186027pt;}
._16{width:57.493333pt;}
._17{width:58.826667pt;}
._9{width:1525.745067pt;}
._1b{width:1686.298453pt;}
.fsb{font-size:5.120000pt;}
.fs6{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.640000pt;}
.fsc{font-size:48.768000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y112{bottom:-13.573333pt;}
.yda{bottom:-7.906667pt;}
.y0{bottom:0.000000pt;}
.y123{bottom:0.066667pt;}
.y116{bottom:0.733333pt;}
.yde{bottom:1.986667pt;}
.ydc{bottom:2.013333pt;}
.y113{bottom:3.066667pt;}
.y49{bottom:3.196000pt;}
.yc0{bottom:3.200000pt;}
.yd1{bottom:3.333333pt;}
.y89{bottom:3.506667pt;}
.y90{bottom:3.508000pt;}
.y92{bottom:3.516000pt;}
.y5{bottom:3.520000pt;}
.y87{bottom:3.533333pt;}
.yf1{bottom:3.546667pt;}
.y9a{bottom:3.880000pt;}
.ya5{bottom:4.146667pt;}
.y96{bottom:4.160000pt;}
.ya1{bottom:4.173333pt;}
.ye2{bottom:4.200000pt;}
.ya3{bottom:4.466667pt;}
.y98{bottom:4.480000pt;}
.y108{bottom:4.733333pt;}
.y57{bottom:4.773333pt;}
.ye0{bottom:4.800000pt;}
.y2{bottom:7.040000pt;}
.y55{bottom:7.996000pt;}
.y11d{bottom:8.706667pt;}
.y121{bottom:10.946667pt;}
.y11f{bottom:12.546667pt;}
.y111{bottom:13.306667pt;}
.yaa{bottom:18.546667pt;}
.yae{bottom:18.866667pt;}
.y4{bottom:18.880000pt;}
.yf0{bottom:18.906667pt;}
.yd9{bottom:18.973333pt;}
.y54{bottom:21.756000pt;}
.y48{bottom:29.436000pt;}
.y41{bottom:34.240000pt;}
.y11c{bottom:35.266667pt;}
.y53{bottom:35.516000pt;}
.y3{bottom:39.360000pt;}
.y110{bottom:39.546667pt;}
.yd8{bottom:45.533333pt;}
.y47{bottom:48.030667pt;}
.y40{bottom:49.600000pt;}
.y52{bottom:51.230667pt;}
.y7{bottom:51.232000pt;}
.y46{bottom:59.550667pt;}
.y11b{bottom:61.853333pt;}
.y3f{bottom:64.960000pt;}
.y51{bottom:65.310667pt;}
.y10f{bottom:66.146667pt;}
.yd7{bottom:71.773333pt;}
.y50{bottom:76.830667pt;}
.y45{bottom:77.150667pt;}
.y3e{bottom:80.320000pt;}
.y4f{bottom:82.270667pt;}
.y94{bottom:84.832000pt;}
.y42{bottom:85.796000pt;}
.y106{bottom:86.752000pt;}
.ycf{bottom:87.392000pt;}
.y11a{bottom:88.093333pt;}
.y10e{bottom:92.706667pt;}
.y135{bottom:95.392000pt;}
.y3d{bottom:95.680000pt;}
.y4e{bottom:96.350667pt;}
.y93{bottom:97.636000pt;}
.yd6{bottom:98.333333pt;}
.y105{bottom:102.112000pt;}
.y4d{bottom:110.110667pt;}
.yce{bottom:110.752000pt;}
.y3c{bottom:111.080000pt;}
.y91{bottom:113.636000pt;}
.y119{bottom:114.653333pt;}
.y104{bottom:117.472000pt;}
.y134{bottom:118.432000pt;}
.y10d{bottom:119.266667pt;}
.y4c{bottom:123.870667pt;}
.yd5{bottom:124.933333pt;}
.y3b{bottom:126.120000pt;}
.y8f{bottom:129.676000pt;}
.y44{bottom:132.190667pt;}
.y103{bottom:132.864000pt;}
.ycd{bottom:134.146667pt;}
.y4b{bottom:137.630667pt;}
.y118{bottom:138.653333pt;}
.y120{bottom:140.160000pt;}
.y3a{bottom:141.480000pt;}
.y43{bottom:141.790667pt;}
.y10c{bottom:145.506667pt;}
.y8e{bottom:145.680000pt;}
.y102{bottom:148.226667pt;}
.y122{bottom:151.040000pt;}
.y4a{bottom:151.390667pt;}
.yd4{bottom:151.493333pt;}
.y39{bottom:156.840000pt;}
.ycc{bottom:157.506667pt;}
.y11e{bottom:160.960000pt;}
.y8d{bottom:161.680000pt;}
.y101{bottom:163.266667pt;}
.y10b{bottom:172.066667pt;}
.y38{bottom:172.200000pt;}
.yd3{bottom:175.493333pt;}
.y8c{bottom:177.680000pt;}
.y100{bottom:178.626667pt;}
.ycb{bottom:180.866667pt;}
.y117{bottom:186.560000pt;}
.y37{bottom:187.560000pt;}
.y8b{bottom:193.680000pt;}
.y10a{bottom:196.413333pt;}
.yff{bottom:201.666667pt;}
.y36{bottom:202.920000pt;}
.yca{bottom:204.226667pt;}
.y8a{bottom:209.680000pt;}
.yc9{bottom:217.040000pt;}
.y35{bottom:218.280000pt;}
.y88{bottom:225.680000pt;}
.yc8{bottom:233.040000pt;}
.y34{bottom:233.666667pt;}
.ydd{bottom:236.160000pt;}
.y86{bottom:241.680000pt;}
.y33{bottom:249.026667pt;}
.yc7{bottom:249.053333pt;}
.y10{bottom:253.853333pt;}
.yd2{bottom:255.360000pt;}
.y85{bottom:260.893333pt;}
.ydb{bottom:262.400000pt;}
.y32{bottom:264.386667pt;}
.yc6{bottom:265.053333pt;}
.y84{bottom:276.253333pt;}
.y31{bottom:279.746667pt;}
.yc5{bottom:281.053333pt;}
.y1e{bottom:284.866667pt;}
.y83{bottom:291.613333pt;}
.y30{bottom:294.786667pt;}
.yc4{bottom:297.053333pt;}
.y1d{bottom:306.306667pt;}
.y2f{bottom:310.146667pt;}
.yc3{bottom:313.053333pt;}
.y82{bottom:315.293333pt;}
.y2e{bottom:325.506667pt;}
.y1c{bottom:328.066667pt;}
.yc2{bottom:329.053333pt;}
.y81{bottom:330.653333pt;}
.y2d{bottom:340.893333pt;}
.y115{bottom:344.960000pt;}
.yc1{bottom:345.053333pt;}
.y80{bottom:346.013333pt;}
.y1b{bottom:349.533333pt;}
.y2c{bottom:356.253333pt;}
.ybf{bottom:361.093333pt;}
.y7f{bottom:361.413333pt;}
.y14e{bottom:369.413333pt;}
.y133{bottom:370.373333pt;}
.y1a{bottom:370.973333pt;}
.y2b{bottom:371.613333pt;}
.y7e{bottom:376.773333pt;}
.y14d{bottom:384.773333pt;}
.y132{bottom:385.733333pt;}
.y2a{bottom:386.653333pt;}
.ybe{bottom:388.293333pt;}
.y7d{bottom:392.133333pt;}
.y19{bottom:392.413333pt;}
.y14c{bottom:400.133333pt;}
.y131{bottom:401.093333pt;}
.ybd{bottom:403.653333pt;}
.y7c{bottom:407.493333pt;}
.y29{bottom:409.693333pt;}
.y18{bottom:413.853333pt;}
.y14b{bottom:415.493333pt;}
.y130{bottom:416.453333pt;}
.y7b{bottom:422.533333pt;}
.y28{bottom:423.453333pt;}
.ybc{bottom:427.333333pt;}
.y14a{bottom:430.533333pt;}
.y12f{bottom:431.813333pt;}
.y17{bottom:435.293333pt;}
.y27{bottom:437.213333pt;}
.y7a{bottom:437.893333pt;}
.ybb{bottom:442.693333pt;}
.y149{bottom:445.893333pt;}
.y12e{bottom:447.173333pt;}
.y26{bottom:450.973333pt;}
.yd0{bottom:452.160000pt;}
.y79{bottom:453.253333pt;}
.y16{bottom:456.733333pt;}
.yba{bottom:458.053333pt;}
.y148{bottom:461.253333pt;}
.y12d{bottom:462.213333pt;}
.y25{bottom:465.093333pt;}
.y78{bottom:468.613333pt;}
.yb9{bottom:473.093333pt;}
.y147{bottom:476.613333pt;}
.y12c{bottom:477.600000pt;}
.y15{bottom:478.213333pt;}
.y24{bottom:478.853333pt;}
.y77{bottom:484.000000pt;}
.yfe{bottom:487.520000pt;}
.yb8{bottom:488.480000pt;}
.y146{bottom:492.000000pt;}
.y23{bottom:492.613333pt;}
.y12b{bottom:492.960000pt;}
.y76{bottom:499.360000pt;}
.y14{bottom:499.653333pt;}
.yfd{bottom:502.880000pt;}
.yb7{bottom:503.840000pt;}
.y22{bottom:506.373333pt;}
.y145{bottom:507.360000pt;}
.y12a{bottom:508.320000pt;}
.y75{bottom:514.720000pt;}
.yfc{bottom:518.240000pt;}
.yb6{bottom:519.200000pt;}
.y21{bottom:520.133333pt;}
.y13{bottom:521.093333pt;}
.y144{bottom:522.400000pt;}
.y129{bottom:523.680000pt;}
.y74{bottom:530.080000pt;}
.yfb{bottom:533.600000pt;}
.y20{bottom:533.893333pt;}
.yb5{bottom:534.560000pt;}
.y128{bottom:539.040000pt;}
.y12{bottom:542.533333pt;}
.y73{bottom:545.120000pt;}
.y143{bottom:546.080000pt;}
.yfa{bottom:548.960000pt;}
.yb4{bottom:549.920000pt;}
.y127{bottom:554.400000pt;}
.y1f{bottom:561.093333pt;}
.y142{bottom:561.440000pt;}
.y11{bottom:563.973333pt;}
.yf9{bottom:564.320000pt;}
.yb3{bottom:565.280000pt;}
.y72{bottom:568.800000pt;}
.y126{bottom:569.760000pt;}
.y141{bottom:576.800000pt;}
.yf8{bottom:579.680000pt;}
.yb2{bottom:580.640000pt;}
.y71{bottom:584.160000pt;}
.y140{bottom:592.160000pt;}
.y125{bottom:592.800000pt;}
.yf7{bottom:595.066667pt;}
.yb1{bottom:596.026667pt;}
.y70{bottom:599.226667pt;}
.y13f{bottom:607.226667pt;}
.yf6{bottom:610.426667pt;}
.yb0{bottom:611.386667pt;}
.y6f{bottom:614.586667pt;}
.y13e{bottom:622.586667pt;}
.yf5{bottom:625.786667pt;}
.yaf{bottom:626.746667pt;}
.y114{bottom:629.440000pt;}
.y6e{bottom:629.626667pt;}
.y13d{bottom:637.946667pt;}
.yf4{bottom:646.280000pt;}
.yad{bottom:647.240000pt;}
.y6d{bottom:653.306667pt;}
.y109{bottom:657.920000pt;}
.y6c{bottom:668.666667pt;}
.yf3{bottom:677.640000pt;}
.yac{bottom:678.600000pt;}
.y6b{bottom:683.706667pt;}
.y13c{bottom:684.026667pt;}
.yf2{bottom:694.280000pt;}
.yab{bottom:695.240000pt;}
.y13b{bottom:699.386667pt;}
.y6a{bottom:707.386667pt;}
.yef{bottom:711.240000pt;}
.ya9{bottom:712.240000pt;}
.y13a{bottom:714.786667pt;}
.y69{bottom:722.786667pt;}
.y139{bottom:730.146667pt;}
.y68{bottom:738.146667pt;}
.yee{bottom:742.640000pt;}
.ya8{bottom:743.600000pt;}
.y138{bottom:745.506667pt;}
.y67{bottom:753.506667pt;}
.yed{bottom:759.600000pt;}
.ya7{bottom:760.240000pt;}
.y137{bottom:760.866667pt;}
.y66{bottom:768.866667pt;}
.y136{bottom:775.906667pt;}
.yec{bottom:776.240000pt;}
.ya6{bottom:776.880000pt;}
.y65{bottom:784.226667pt;}
.yeb{bottom:793.200000pt;}
.ya4{bottom:793.840000pt;}
.y64{bottom:799.266667pt;}
.yea{bottom:809.840000pt;}
.ya2{bottom:810.480000pt;}
.y63{bottom:814.626667pt;}
.ye9{bottom:826.800000pt;}
.ya0{bottom:827.440000pt;}
.y62{bottom:830.013333pt;}
.yf{bottom:837.373333pt;}
.ye8{bottom:843.453333pt;}
.y9f{bottom:844.093333pt;}
.ye{bottom:844.413333pt;}
.y61{bottom:845.373333pt;}
.ye7{bottom:860.093333pt;}
.y60{bottom:860.733333pt;}
.yd{bottom:865.853333pt;}
.y5f{bottom:876.093333pt;}
.y107{bottom:876.480000pt;}
.ye6{bottom:877.373333pt;}
.y9e{bottom:877.693333pt;}
.yc{bottom:881.213333pt;}
.y5e{bottom:891.453333pt;}
.ye5{bottom:894.013333pt;}
.y9d{bottom:894.653333pt;}
.y5d{bottom:906.813333pt;}
.yb{bottom:907.133333pt;}
.ye4{bottom:910.973333pt;}
.y9c{bottom:911.293333pt;}
.y5c{bottom:922.173333pt;}
.ye3{bottom:927.933333pt;}
.y9b{bottom:928.253333pt;}
.ya{bottom:928.893333pt;}
.y5b{bottom:937.533333pt;}
.ye1{bottom:944.573333pt;}
.y99{bottom:944.893333pt;}
.y9{bottom:950.693333pt;}
.y5a{bottom:952.933333pt;}
.ydf{bottom:961.253333pt;}
.y97{bottom:961.573333pt;}
.y8{bottom:967.333333pt;}
.y59{bottom:967.973333pt;}
.y56{bottom:970.240000pt;}
.y95{bottom:978.533333pt;}
.y58{bottom:983.013333pt;}
.y124{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.h12{height:5.022500pt;}
.h33{height:9.920000pt;}
.h29{height:11.840000pt;}
.h2f{height:12.800000pt;}
.h18{height:15.346667pt;}
.h19{height:15.348000pt;}
.h1b{height:15.356000pt;}
.h17{height:15.360000pt;}
.h23{height:15.386667pt;}
.h1a{height:15.388000pt;}
.h1e{height:15.706667pt;}
.h1c{height:15.986667pt;}
.h20{height:16.000000pt;}
.h2b{height:16.026667pt;}
.h1d{height:16.306667pt;}
.ha{height:16.331250pt;}
.h2a{height:16.626667pt;}
.h24{height:18.560000pt;}
.h2d{height:19.840000pt;}
.h32{height:20.800000pt;}
.h6{height:21.643125pt;}
.h31{height:22.400000pt;}
.h13{height:24.640000pt;}
.h10{height:26.381250pt;}
.h21{height:30.386667pt;}
.h22{height:30.706667pt;}
.h2c{height:30.738667pt;}
.h8{height:33.918750pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.h15{height:37.537500pt;}
.he{height:47.713750pt;}
.h27{height:48.378750pt;}
.h28{height:48.506062pt;}
.h11{height:49.020000pt;}
.h1f{height:52.736250pt;}
.h5{height:52.762500pt;}
.h9{height:54.180000pt;}
.h16{height:55.256809pt;}
.h14{height:56.405000pt;}
.h7{height:56.513750pt;}
.h3{height:58.563750pt;}
.h2{height:72.346667pt;}
.h25{height:73.841250pt;}
.h4{height:103.680000pt;}
.h30{height:148.800000pt;}
.hf{height:167.400000pt;}
.h26{height:185.600000pt;}
.h2e{height:206.400000pt;}
.hb{height:572.293333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w23{width:13.760000pt;}
.w12{width:55.040000pt;}
.w11{width:55.346667pt;}
.w13{width:55.386667pt;}
.wd{width:55.666667pt;}
.we{width:55.706667pt;}
.wf{width:55.712000pt;}
.wc{width:56.026667pt;}
.w1e{width:56.320000pt;}
.w8{width:65.306667pt;}
.w1b{width:71.040000pt;}
.w15{width:72.000000pt;}
.w1c{width:76.800000pt;}
.w10{width:79.058667pt;}
.w22{width:80.320000pt;}
.w19{width:83.200000pt;}
.w7{width:84.160000pt;}
.w1d{width:85.120000pt;}
.w16{width:85.466667pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.wb{width:127.720000pt;}
.w9{width:131.584000pt;}
.w26{width:133.440000pt;}
.wa{width:135.400000pt;}
.w21{width:137.600000pt;}
.w25{width:138.560000pt;}
.w20{width:141.120000pt;}
.w18{width:144.680000pt;}
.w6{width:144.960000pt;}
.w17{width:146.946667pt;}
.w14{width:184.400000pt;}
.w1a{width:480.000000pt;}
.w1f{width:488.000000pt;}
.w24{width:488.320000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:4.840000pt;}
.x1f{left:6.112000pt;}
.x17{left:7.348000pt;}
.x25{left:8.640000pt;}
.x4{left:11.826667pt;}
.x38{left:13.440000pt;}
.x3a{left:14.386667pt;}
.x15{left:15.348000pt;}
.x1b{left:16.308000pt;}
.x5{left:17.266667pt;}
.x27{left:20.813333pt;}
.x35{left:22.386667pt;}
.x16{left:25.908000pt;}
.x22{left:29.453333pt;}
.x2b{left:37.786667pt;}
.xf{left:39.028000pt;}
.x2a{left:39.986667pt;}
.x29{left:40.986667pt;}
.x1c{left:42.260000pt;}
.x6{left:43.213333pt;}
.x10{left:45.140000pt;}
.x14{left:48.020000pt;}
.xe{left:48.980000pt;}
.x1d{left:50.900000pt;}
.x19{left:55.373333pt;}
.x13{left:64.982667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x12{left:80.022667pt;}
.x2{left:84.822667pt;}
.x1e{left:91.542667pt;}
.x1a{left:95.062667pt;}
.x2c{left:96.684000pt;}
.x20{left:100.832000pt;}
.x11{left:110.742667pt;}
.x3c{left:130.560000pt;}
.x44{left:146.880000pt;}
.x3{left:162.000000pt;}
.x34{left:171.600000pt;}
.x40{left:174.720000pt;}
.x45{left:178.240000pt;}
.x21{left:187.920000pt;}
.x18{left:194.640000pt;}
.x3d{left:201.920000pt;}
.x2d{left:225.053333pt;}
.xa{left:232.413333pt;}
.x41{left:238.720000pt;}
.x36{left:244.253333pt;}
.x49{left:247.453333pt;}
.x48{left:251.613333pt;}
.x46{left:267.520000pt;}
.x23{left:272.733333pt;}
.x2e{left:281.733333pt;}
.xb{left:293.893333pt;}
.x37{left:330.373333pt;}
.x3e{left:334.080000pt;}
.x24{left:338.693333pt;}
.x3f{left:345.920000pt;}
.x3b{left:370.880000pt;}
.x43{left:373.440000pt;}
.x2f{left:394.400000pt;}
.x4a{left:396.960000pt;}
.x42{left:435.520000pt;}
.x30{left:450.760000pt;}
.x47{left:462.080000pt;}
.x26{left:470.920000pt;}
.x39{left:477.960000pt;}
.xc{left:516.386667pt;}
.x31{left:530.480000pt;}
.x32{left:586.480000pt;}
.x33{left:642.173333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xd{left:717.413333pt;}
}




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