
    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_ead50a68a1f2157a89d9c25a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945312;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_a78fba81eb70e6e1bdf4a22c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_459a5b9225eff38aa51719fa.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_46659d8a30c1c309de18c029.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.695312;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_c58f14ea73972e2773d8ad86.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923340;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_e004787fc5625396b9d2bab4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.754395;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_05062acc148ad18eb8975149.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_5e80c28a41068321190522de.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_801c30690d42ab7118cfc782.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1dbc79da27da79a044e5c3f8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8b9de92c9fb766cd73abece0.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e498cc3de1e41f2e08884be5.woff2')format("woff");}.ffc{font-family:ffc;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);}
.v1{vertical-align:-63.360000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.ls3{letter-spacing:-2.160000px;}
.ls11{letter-spacing:-1.440000px;}
.ls12{letter-spacing:-1.362000px;}
.ls6{letter-spacing:-1.296000px;}
.ls7{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.630000px;}
.ls20{letter-spacing:-0.612000px;}
.ls17{letter-spacing:-0.457800px;}
.ls5{letter-spacing:-0.406200px;}
.lsf{letter-spacing:-0.305400px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.080400px;}
.ls18{letter-spacing:0.152400px;}
.lsc{letter-spacing:0.152640px;}
.ls1e{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.296640px;}
.ls4{letter-spacing:0.435000px;}
.ls1a{letter-spacing:0.498240px;}
.ls8{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.982080px;}
.ls15{letter-spacing:1.440000px;}
.lsd{letter-spacing:2.160000px;}
.ls13{letter-spacing:3.600000px;}
.ls1d{letter-spacing:5.040000px;}
.ls1b{letter-spacing:6.480000px;}
.ls1c{letter-spacing:6.492000px;}
.lse{letter-spacing:13.680000px;}
.lsa{letter-spacing:15.120000px;}
.ls19{letter-spacing:19.440000px;}
.ls22{letter-spacing:27.665280px;}
.ls21{letter-spacing:60.785280px;}
.ls14{letter-spacing:68.400000px;}
.ls0{letter-spacing:190.260000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-18.504000px;}
.ws6{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.064000px;}
.wsa{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.254600px;}
.wsb{word-spacing:-16.102200px;}
.wse{word-spacing:-15.948000px;}
.ws0{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.555000px;}
.ws1{word-spacing:-15.120000px;}
.wsc{word-spacing:-13.680000px;}
.wsd{word-spacing:-13.050000px;}
.ws3{word-spacing:-12.756840px;}
.ws4{word-spacing:-11.880000px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-3.620160px;}
._2{margin-left:-2.397600px;}
._1{margin-left:-1.139040px;}
._0{width:1.092960px;}
._3{width:2.373120px;}
._6{width:3.391200px;}
._7{width:4.872960px;}
._12{width:6.206400px;}
._9{width:7.994880px;}
._8{width:9.617760px;}
._f{width:11.293920px;}
._19{width:12.669600px;}
._d{width:13.737600px;}
._e{width:14.883840px;}
._18{width:18.545280px;}
._16{width:19.605600px;}
._17{width:21.561120px;}
._37{width:22.677600px;}
._1c{width:23.802240px;}
._1b{width:25.018560px;}
._1a{width:26.580960px;}
._14{width:27.966240px;}
._15{width:29.714400px;}
._2f{width:30.807360px;}
._1d{width:31.922400px;}
._1e{width:33.214560px;}
._a{width:34.292160px;}
._b{width:36.113760px;}
._c{width:37.596960px;}
._11{width:38.648160px;}
._10{width:40.412160px;}
._23{width:41.598720px;}
._24{width:43.387200px;}
._22{width:44.572320px;}
._2d{width:45.622080px;}
._13{width:46.716480px;}
._21{width:48.525120px;}
._31{width:49.554720px;}
._26{width:50.561280px;}
._25{width:52.024320px;}
._2e{width:53.392320px;}
._3d{width:54.905280px;}
._2b{width:55.992960px;}
._27{width:57.058560px;}
._2c{width:58.951680px;}
._30{width:60.289440px;}
._28{width:61.935840px;}
._1f{width:64.101600px;}
._20{width:66.186720px;}
._29{width:67.671360px;}
._2a{width:68.882400px;}
._3c{width:70.298400px;}
._3f{width:72.069120px;}
._40{width:73.780320px;}
._41{width:75.013440px;}
._35{width:86.696640px;}
._34{width:87.719040px;}
._36{width:97.286400px;}
._3b{width:98.644320px;}
._3e{width:112.380480px;}
._43{width:121.927680px;}
._32{width:129.657600px;}
._33{width:132.645600px;}
._39{width:198.300000px;}
._42{width:227.249280px;}
._3a{width:850.256640px;}
._38{width:903.850560px;}
._5{width:1927.663680px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs1{font-size:47.520000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.y12{bottom:-9.018000px;}
.ya{bottom:-6.124500px;}
.y0{bottom:0.000000px;}
.y1c{bottom:2.550000px;}
.yf2{bottom:2.880000px;}
.ye7{bottom:3.240000px;}
.yed{bottom:3.630000px;}
.y11{bottom:8.265000px;}
.y33{bottom:10.080000px;}
.yeb{bottom:10.800000px;}
.y9{bottom:11.875500px;}
.yf1{bottom:16.920000px;}
.ye6{bottom:18.720000px;}
.y10{bottom:25.545000px;}
.y8{bottom:25.915500px;}
.yea{bottom:26.280000px;}
.y32{bottom:31.005000px;}
.ye9{bottom:34.200000px;}
.yf{bottom:42.825000px;}
.y7{bottom:55.471500px;}
.y1a{bottom:55.836000px;}
.y57{bottom:56.916000px;}
.y35{bottom:57.276000px;}
.ye{bottom:60.105000px;}
.y34{bottom:72.756000px;}
.y56{bottom:74.556000px;}
.y6{bottom:75.634500px;}
.y19{bottom:75.636000px;}
.yd{bottom:77.025000px;}
.y55{bottom:90.036000px;}
.y18{bottom:91.116000px;}
.y1{bottom:91.480500px;}
.yc{bottom:94.665000px;}
.y5{bottom:95.794500px;}
.y4{bottom:116.314500px;}
.ydf{bottom:133.992000px;}
.ybb{bottom:135.792000px;}
.y3{bottom:136.474500px;}
.y148{bottom:136.872000px;}
.y10b{bottom:147.672000px;}
.y124{bottom:149.112000px;}
.y85{bottom:149.832000px;}
.yde{bottom:153.075000px;}
.yba{bottom:154.875000px;}
.yb{bottom:155.610000px;}
.yff{bottom:155.955000px;}
.y2{bottom:156.634500px;}
.y174{bottom:162.795000px;}
.y15d{bottom:163.875000px;}
.y10a{bottom:166.755000px;}
.y123{bottom:167.835000px;}
.y84{bottom:168.915000px;}
.ydd{bottom:171.795000px;}
.yb9{bottom:173.955000px;}
.yfe{bottom:174.675000px;}
.y109{bottom:185.835000px;}
.y122{bottom:186.915000px;}
.y83{bottom:187.995000px;}
.ydc{bottom:190.875000px;}
.yb8{bottom:192.675000px;}
.yfd{bottom:193.755000px;}
.y173{bottom:198.075000px;}
.y15c{bottom:199.155000px;}
.y108{bottom:204.915000px;}
.y121{bottom:205.995000px;}
.y82{bottom:207.075000px;}
.y13a{bottom:208.875000px;}
.ydb{bottom:209.955000px;}
.yb7{bottom:211.755000px;}
.yfc{bottom:212.835000px;}
.y107{bottom:223.635000px;}
.y120{bottom:225.075000px;}
.y81{bottom:225.795000px;}
.y139{bottom:227.955000px;}
.yda{bottom:228.675000px;}
.yb6{bottom:230.835000px;}
.yfb{bottom:231.555000px;}
.y172{bottom:233.355000px;}
.y15b{bottom:234.435000px;}
.y106{bottom:242.715000px;}
.y11f{bottom:243.795000px;}
.y80{bottom:244.875000px;}
.y138{bottom:246.675000px;}
.yd9{bottom:247.755000px;}
.yb5{bottom:249.555000px;}
.yfa{bottom:250.635000px;}
.y11e{bottom:262.905000px;}
.y7f{bottom:263.985000px;}
.y137{bottom:265.785000px;}
.yd8{bottom:266.865000px;}
.yb4{bottom:268.665000px;}
.yf9{bottom:269.745000px;}
.y105{bottom:279.465000px;}
.y11d{bottom:281.985000px;}
.y7e{bottom:282.705000px;}
.y136{bottom:284.865000px;}
.yd7{bottom:285.585000px;}
.y147{bottom:286.665000px;}
.yb3{bottom:287.745000px;}
.yf8{bottom:288.825000px;}
.y104{bottom:298.185000px;}
.y30{bottom:299.625000px;}
.y11c{bottom:300.705000px;}
.y7d{bottom:301.785000px;}
.y135{bottom:303.585000px;}
.y15a{bottom:305.025000px;}
.y146{bottom:305.745000px;}
.yb2{bottom:306.825000px;}
.yf7{bottom:307.545000px;}
.y103{bottom:316.545000px;}
.y2f{bottom:316.905000px;}
.y11b{bottom:319.785000px;}
.y7c{bottom:320.865000px;}
.yd6{bottom:322.665000px;}
.y145{bottom:324.825000px;}
.yb1{bottom:325.545000px;}
.yf6{bottom:326.625000px;}
.y102{bottom:332.385000px;}
.y11a{bottom:338.865000px;}
.y7b{bottom:339.585000px;}
.y159{bottom:340.305000px;}
.yd5{bottom:341.745000px;}
.y144{bottom:343.545000px;}
.y14a{bottom:344.625000px;}
.yf5{bottom:345.705000px;}
.y101{bottom:353.265000px;}
.y2e{bottom:356.865000px;}
.y92{bottom:357.585000px;}
.y7a{bottom:358.665000px;}
.yd4{bottom:360.825000px;}
.yb0{bottom:362.265000px;}
.y143{bottom:362.625000px;}
.y171{bottom:374.145000px;}
.y158{bottom:375.585000px;}
.y91{bottom:376.665000px;}
.y79{bottom:377.745000px;}
.y134{bottom:378.825000px;}
.yd3{bottom:379.545000px;}
.y142{bottom:381.705000px;}
.yf4{bottom:382.065000px;}
.y119{bottom:394.710000px;}
.y90{bottom:395.790000px;}
.y2d{bottom:397.230000px;}
.y133{bottom:397.590000px;}
.yd2{bottom:398.670000px;}
.yaf{bottom:399.750000px;}
.y141{bottom:400.470000px;}
.y170{bottom:409.470000px;}
.y157{bottom:410.910000px;}
.y118{bottom:413.790000px;}
.y78{bottom:414.870000px;}
.y132{bottom:416.670000px;}
.yd1{bottom:417.750000px;}
.yae{bottom:418.470000px;}
.yf3{bottom:419.550000px;}
.y117{bottom:432.870000px;}
.y77{bottom:433.590000px;}
.y2c{bottom:433.950000px;}
.yf0{bottom:434.310000px;}
.y131{bottom:435.750000px;}
.yd0{bottom:436.470000px;}
.yad{bottom:437.550000px;}
.y16f{bottom:444.750000px;}
.y156{bottom:446.190000px;}
.y116{bottom:451.590000px;}
.y76{bottom:452.670000px;}
.y130{bottom:454.470000px;}
.ycf{bottom:455.550000px;}
.yac{bottom:456.630000px;}
.yef{bottom:462.750000px;}
.y115{bottom:470.670000px;}
.y75{bottom:471.750000px;}
.y12f{bottom:473.550000px;}
.y2b{bottom:473.910000px;}
.yce{bottom:474.630000px;}
.yab{bottom:475.350000px;}
.y16e{bottom:480.030000px;}
.y155{bottom:481.470000px;}
.y114{bottom:489.750000px;}
.y74{bottom:490.470000px;}
.y12e{bottom:492.630000px;}
.ycd{bottom:493.350000px;}
.yee{bottom:493.710000px;}
.yaa{bottom:494.430000px;}
.y113{bottom:508.470000px;}
.y73{bottom:509.550000px;}
.y2a{bottom:512.070000px;}
.ycc{bottom:512.430000px;}
.ya9{bottom:513.510000px;}
.y16d{bottom:515.310000px;}
.y154{bottom:516.390000px;}
.yec{bottom:525.390000px;}
.y112{bottom:527.550000px;}
.y72{bottom:528.660000px;}
.y12d{bottom:529.020000px;}
.ycb{bottom:531.540000px;}
.ya8{bottom:532.620000px;}
.y50{bottom:538.380000px;}
.ye8{bottom:541.980000px;}
.y111{bottom:546.660000px;}
.y71{bottom:547.380000px;}
.y54{bottom:548.460000px;}
.yca{bottom:550.620000px;}
.ya7{bottom:551.340000px;}
.y153{bottom:551.700000px;}
.y29{bottom:553.860000px;}
.y4f{bottom:557.460000px;}
.y110{bottom:565.380000px;}
.y70{bottom:566.460000px;}
.y53{bottom:567.540000px;}
.yc9{bottom:569.340000px;}
.ya6{bottom:570.420000px;}
.y28{bottom:584.100000px;}
.y10f{bottom:584.460000px;}
.y4e{bottom:585.180000px;}
.y6f{bottom:585.540000px;}
.y16c{bottom:585.900000px;}
.y152{bottom:586.980000px;}
.yc8{bottom:588.420000px;}
.ye5{bottom:589.140000px;}
.y52{bottom:595.620000px;}
.y10e{bottom:603.540000px;}
.y6e{bottom:604.620000px;}
.y149{bottom:606.420000px;}
.ya5{bottom:607.500000px;}
.y4d{bottom:613.620000px;}
.y16b{bottom:621.180000px;}
.y151{bottom:622.260000px;}
.y10d{bottom:622.620000px;}
.y51{bottom:623.340000px;}
.y27{bottom:624.060000px;}
.y140{bottom:625.500000px;}
.ya4{bottom:626.220000px;}
.y4c{bottom:632.340000px;}
.y10c{bottom:641.340000px;}
.y8f{bottom:642.420000px;}
.y13f{bottom:644.220000px;}
.ya3{bottom:645.300000px;}
.y4b{bottom:651.420000px;}
.y16a{bottom:656.460000px;}
.y150{bottom:657.540000px;}
.y6d{bottom:660.420000px;}
.y8e{bottom:661.500000px;}
.y100{bottom:662.610000px;}
.yc7{bottom:662.970000px;}
.y13e{bottom:663.330000px;}
.ya2{bottom:664.410000px;}
.y26{bottom:668.730000px;}
.y4a{bottom:670.530000px;}
.y6c{bottom:679.530000px;}
.y8d{bottom:680.250000px;}
.yc6{bottom:682.050000px;}
.y13d{bottom:682.410000px;}
.ya1{bottom:683.490000px;}
.y49{bottom:689.250000px;}
.y169{bottom:691.410000px;}
.y14f{bottom:692.850000px;}
.y6b{bottom:698.250000px;}
.y8c{bottom:699.330000px;}
.y13c{bottom:701.490000px;}
.ya0{bottom:702.210000px;}
.y48{bottom:708.330000px;}
.y25{bottom:710.130000px;}
.y6a{bottom:717.330000px;}
.y8b{bottom:718.410000px;}
.yc5{bottom:719.490000px;}
.y13b{bottom:720.210000px;}
.y9f{bottom:721.290000px;}
.y168{bottom:726.690000px;}
.y47{bottom:727.410000px;}
.y14e{bottom:728.130000px;}
.y69{bottom:736.410000px;}
.y8a{bottom:737.490000px;}
.yc4{bottom:738.210000px;}
.y9e{bottom:740.370000px;}
.y46{bottom:746.490000px;}
.y68{bottom:755.490000px;}
.y89{bottom:756.210000px;}
.yc3{bottom:757.290000px;}
.y9d{bottom:759.090000px;}
.y24{bottom:760.530000px;}
.y167{bottom:761.970000px;}
.y14d{bottom:763.410000px;}
.y45{bottom:765.210000px;}
.y67{bottom:774.210000px;}
.y88{bottom:775.290000px;}
.yc2{bottom:776.370000px;}
.y9c{bottom:778.170000px;}
.y44{bottom:784.290000px;}
.y66{bottom:793.290000px;}
.y87{bottom:794.370000px;}
.yc1{bottom:795.090000px;}
.y166{bottom:797.295000px;}
.y14c{bottom:798.735000px;}
.y43{bottom:803.415000px;}
.y23{bottom:810.975000px;}
.y65{bottom:812.415000px;}
.ye4{bottom:813.135000px;}
.yc0{bottom:814.215000px;}
.y9b{bottom:814.935000px;}
.y42{bottom:822.135000px;}
.y64{bottom:831.135000px;}
.ye3{bottom:832.215000px;}
.y165{bottom:832.575000px;}
.ybf{bottom:833.295000px;}
.y14b{bottom:834.015000px;}
.y41{bottom:841.215000px;}
.y63{bottom:850.215000px;}
.ye2{bottom:851.295000px;}
.y9a{bottom:852.015000px;}
.y22{bottom:852.375000px;}
.y40{bottom:860.295000px;}
.y164{bottom:867.855000px;}
.y62{bottom:869.295000px;}
.ye1{bottom:870.015000px;}
.y99{bottom:871.095000px;}
.y3f{bottom:879.015000px;}
.y61{bottom:888.015000px;}
.ye0{bottom:889.095000px;}
.y98{bottom:890.175000px;}
.y21{bottom:898.095000px;}
.y163{bottom:903.135000px;}
.y60{bottom:907.095000px;}
.y128{bottom:908.175000px;}
.y97{bottom:909.255000px;}
.y3e{bottom:917.175000px;}
.y5f{bottom:926.175000px;}
.y127{bottom:927.255000px;}
.y96{bottom:927.975000px;}
.y3d{bottom:936.285000px;}
.y20{bottom:938.085000px;}
.y162{bottom:938.445000px;}
.y5e{bottom:945.285000px;}
.y126{bottom:946.005000px;}
.y95{bottom:947.085000px;}
.y3c{bottom:955.005000px;}
.y5d{bottom:964.005000px;}
.y125{bottom:965.085000px;}
.ybe{bottom:966.165000px;}
.y161{bottom:973.725000px;}
.y3b{bottom:974.085000px;}
.y1f{bottom:978.045000px;}
.y5c{bottom:983.085000px;}
.y94{bottom:983.805000px;}
.y12c{bottom:984.165000px;}
.ybd{bottom:984.885000px;}
.y3a{bottom:993.165000px;}
.y5b{bottom:1002.165000px;}
.y93{bottom:1002.525000px;}
.y12b{bottom:1002.885000px;}
.y160{bottom:1009.005000px;}
.y39{bottom:1011.885000px;}
.y5a{bottom:1020.885000px;}
.ybc{bottom:1021.605000px;}
.y12a{bottom:1021.965000px;}
.y1e{bottom:1027.365000px;}
.y38{bottom:1030.965000px;}
.y31{bottom:1035.645000px;}
.y59{bottom:1039.965000px;}
.y129{bottom:1041.045000px;}
.y15f{bottom:1044.285000px;}
.y37{bottom:1050.045000px;}
.y58{bottom:1059.045000px;}
.y1d{bottom:1067.730000px;}
.y36{bottom:1077.810000px;}
.y86{bottom:1078.170000px;}
.y15e{bottom:1079.610000px;}
.y17{bottom:1120.290000px;}
.y16{bottom:1141.530000px;}
.y15{bottom:1159.890000px;}
.y14{bottom:1176.810000px;}
.y13{bottom:1194.090000px;}
.y1b{bottom:1194.810000px;}
.hd{height:14.790000px;}
.h20{height:15.870000px;}
.h22{height:27.705000px;}
.h21{height:30.945000px;}
.h1c{height:30.960000px;}
.he{height:34.990312px;}
.h14{height:38.158594px;}
.h9{height:40.959844px;}
.hc{height:44.533125px;}
.ha{height:44.860781px;}
.h1f{height:46.440000px;}
.h4{height:46.638281px;}
.h17{height:47.190000px;}
.h8{height:48.761719px;}
.hb{height:48.774375px;}
.h3{height:49.640625px;}
.h1e{height:53.704687px;}
.h1d{height:55.147500px;}
.h15{height:59.328281px;}
.h6{height:59.357813px;}
.h1a{height:59.383125px;}
.h7{height:60.952500px;}
.h1b{height:64.978594px;}
.h19{height:65.010937px;}
.h18{height:66.757500px;}
.h23{height:68.084282px;}
.h12{height:70.664062px;}
.h10{height:72.562500px;}
.hf{height:74.953125px;}
.h13{height:79.758281px;}
.h16{height:81.929531px;}
.h11{height:97.233750px;}
.h5{height:108.000000px;}
.h2{height:171.765000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:19.785000px;}
.w8{width:82.080000px;}
.wa{width:84.225000px;}
.w9{width:84.270000px;}
.w7{width:115.222500px;}
.w2{width:266.490000px;}
.w3{width:324.810000px;}
.w6{width:365.850000px;}
.w5{width:764.910000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x12{left:7.906500px;}
.x2{left:10.785000px;}
.x14{left:18.705000px;}
.x17{left:20.160000px;}
.x1c{left:22.305000px;}
.x19{left:23.400000px;}
.x1b{left:25.560000px;}
.x1a{left:26.640000px;}
.x15{left:28.785000px;}
.x5{left:50.449500px;}
.x11{left:55.849500px;}
.x3{left:62.310000px;}
.x6{left:63.756000px;}
.xf{left:66.289500px;}
.x1f{left:95.796000px;}
.xb{left:97.236000px;}
.x4{left:162.060000px;}
.x13{left:171.090000px;}
.x9{left:203.835000px;}
.x16{left:253.185000px;}
.x18{left:337.470000px;}
.xc{left:382.110000px;}
.xa{left:444.420000px;}
.x10{left:473.220000px;}
.x1e{left:505.260000px;}
.xd{left:540.570000px;}
.x1{left:567.225000px;}
.xe{left:699.375000px;}
.x1d{left:806.010000px;}
.x8{left:809.610000px;}
.x7{left:829.410000px;}
@media print{
.v1{vertical-align:-56.320000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.ls3{letter-spacing:-1.920000pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls12{letter-spacing:-1.210667pt;}
.ls6{letter-spacing:-1.152000pt;}
.ls7{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.560000pt;}
.ls20{letter-spacing:-0.544000pt;}
.ls17{letter-spacing:-0.406933pt;}
.ls5{letter-spacing:-0.361067pt;}
.lsf{letter-spacing:-0.271467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.071467pt;}
.ls18{letter-spacing:0.135467pt;}
.lsc{letter-spacing:0.135680pt;}
.ls1e{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.263680pt;}
.ls4{letter-spacing:0.386667pt;}
.ls1a{letter-spacing:0.442880pt;}
.ls8{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.872960pt;}
.ls15{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.920000pt;}
.ls13{letter-spacing:3.200000pt;}
.ls1d{letter-spacing:4.480000pt;}
.ls1b{letter-spacing:5.760000pt;}
.ls1c{letter-spacing:5.770667pt;}
.lse{letter-spacing:12.160000pt;}
.lsa{letter-spacing:13.440000pt;}
.ls19{letter-spacing:17.280000pt;}
.ls22{letter-spacing:24.591360pt;}
.ls21{letter-spacing:54.031360pt;}
.ls14{letter-spacing:60.800000pt;}
.ls0{letter-spacing:169.120000pt;}
.ws7{word-spacing:-16.448000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.168000pt;}
.wsa{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.448533pt;}
.wsb{word-spacing:-14.313067pt;}
.wse{word-spacing:-14.176000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.826667pt;}
.ws1{word-spacing:-13.440000pt;}
.wsc{word-spacing:-12.160000pt;}
.wsd{word-spacing:-11.600000pt;}
.ws3{word-spacing:-11.339413pt;}
.ws4{word-spacing:-10.560000pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-3.217920pt;}
._2{margin-left:-2.131200pt;}
._1{margin-left:-1.012480pt;}
._0{width:0.971520pt;}
._3{width:2.109440pt;}
._6{width:3.014400pt;}
._7{width:4.331520pt;}
._12{width:5.516800pt;}
._9{width:7.106560pt;}
._8{width:8.549120pt;}
._f{width:10.039040pt;}
._19{width:11.261867pt;}
._d{width:12.211200pt;}
._e{width:13.230080pt;}
._18{width:16.484693pt;}
._16{width:17.427200pt;}
._17{width:19.165440pt;}
._37{width:20.157867pt;}
._1c{width:21.157547pt;}
._1b{width:22.238720pt;}
._1a{width:23.627520pt;}
._14{width:24.858880pt;}
._15{width:26.412800pt;}
._2f{width:27.384320pt;}
._1d{width:28.375467pt;}
._1e{width:29.524053pt;}
._a{width:30.481920pt;}
._b{width:32.101120pt;}
._c{width:33.419520pt;}
._11{width:34.353920pt;}
._10{width:35.921920pt;}
._23{width:36.976640pt;}
._24{width:38.566400pt;}
._22{width:39.619840pt;}
._2d{width:40.552960pt;}
._13{width:41.525760pt;}
._21{width:43.133440pt;}
._31{width:44.048640pt;}
._26{width:44.943360pt;}
._25{width:46.243840pt;}
._2e{width:47.459840pt;}
._3d{width:48.804693pt;}
._2b{width:49.771520pt;}
._27{width:50.718720pt;}
._2c{width:52.401493pt;}
._30{width:53.590613pt;}
._28{width:55.054080pt;}
._1f{width:56.979200pt;}
._20{width:58.832640pt;}
._29{width:60.152320pt;}
._2a{width:61.228800pt;}
._3c{width:62.487467pt;}
._3f{width:64.061440pt;}
._40{width:65.582507pt;}
._41{width:66.678613pt;}
._35{width:77.063680pt;}
._34{width:77.972480pt;}
._36{width:86.476800pt;}
._3b{width:87.683840pt;}
._3e{width:99.893760pt;}
._43{width:108.380160pt;}
._32{width:115.251200pt;}
._33{width:117.907200pt;}
._39{width:176.266667pt;}
._42{width:201.999360pt;}
._3a{width:755.783680pt;}
._38{width:803.422720pt;}
._5{width:1713.478827pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:42.240000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.y12{bottom:-8.016000pt;}
.ya{bottom:-5.444000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:2.266667pt;}
.yf2{bottom:2.560000pt;}
.ye7{bottom:2.880000pt;}
.yed{bottom:3.226667pt;}
.y11{bottom:7.346667pt;}
.y33{bottom:8.960000pt;}
.yeb{bottom:9.600000pt;}
.y9{bottom:10.556000pt;}
.yf1{bottom:15.040000pt;}
.ye6{bottom:16.640000pt;}
.y10{bottom:22.706667pt;}
.y8{bottom:23.036000pt;}
.yea{bottom:23.360000pt;}
.y32{bottom:27.560000pt;}
.ye9{bottom:30.400000pt;}
.yf{bottom:38.066667pt;}
.y7{bottom:49.308000pt;}
.y1a{bottom:49.632000pt;}
.y57{bottom:50.592000pt;}
.y35{bottom:50.912000pt;}
.ye{bottom:53.426667pt;}
.y34{bottom:64.672000pt;}
.y56{bottom:66.272000pt;}
.y6{bottom:67.230667pt;}
.y19{bottom:67.232000pt;}
.yd{bottom:68.466667pt;}
.y55{bottom:80.032000pt;}
.y18{bottom:80.992000pt;}
.y1{bottom:81.316000pt;}
.yc{bottom:84.146667pt;}
.y5{bottom:85.150667pt;}
.y4{bottom:103.390667pt;}
.ydf{bottom:119.104000pt;}
.ybb{bottom:120.704000pt;}
.y3{bottom:121.310667pt;}
.y148{bottom:121.664000pt;}
.y10b{bottom:131.264000pt;}
.y124{bottom:132.544000pt;}
.y85{bottom:133.184000pt;}
.yde{bottom:136.066667pt;}
.yba{bottom:137.666667pt;}
.yb{bottom:138.320000pt;}
.yff{bottom:138.626667pt;}
.y2{bottom:139.230667pt;}
.y174{bottom:144.706667pt;}
.y15d{bottom:145.666667pt;}
.y10a{bottom:148.226667pt;}
.y123{bottom:149.186667pt;}
.y84{bottom:150.146667pt;}
.ydd{bottom:152.706667pt;}
.yb9{bottom:154.626667pt;}
.yfe{bottom:155.266667pt;}
.y109{bottom:165.186667pt;}
.y122{bottom:166.146667pt;}
.y83{bottom:167.106667pt;}
.ydc{bottom:169.666667pt;}
.yb8{bottom:171.266667pt;}
.yfd{bottom:172.226667pt;}
.y173{bottom:176.066667pt;}
.y15c{bottom:177.026667pt;}
.y108{bottom:182.146667pt;}
.y121{bottom:183.106667pt;}
.y82{bottom:184.066667pt;}
.y13a{bottom:185.666667pt;}
.ydb{bottom:186.626667pt;}
.yb7{bottom:188.226667pt;}
.yfc{bottom:189.186667pt;}
.y107{bottom:198.786667pt;}
.y120{bottom:200.066667pt;}
.y81{bottom:200.706667pt;}
.y139{bottom:202.626667pt;}
.yda{bottom:203.266667pt;}
.yb6{bottom:205.186667pt;}
.yfb{bottom:205.826667pt;}
.y172{bottom:207.426667pt;}
.y15b{bottom:208.386667pt;}
.y106{bottom:215.746667pt;}
.y11f{bottom:216.706667pt;}
.y80{bottom:217.666667pt;}
.y138{bottom:219.266667pt;}
.yd9{bottom:220.226667pt;}
.yb5{bottom:221.826667pt;}
.yfa{bottom:222.786667pt;}
.y11e{bottom:233.693333pt;}
.y7f{bottom:234.653333pt;}
.y137{bottom:236.253333pt;}
.yd8{bottom:237.213333pt;}
.yb4{bottom:238.813333pt;}
.yf9{bottom:239.773333pt;}
.y105{bottom:248.413333pt;}
.y11d{bottom:250.653333pt;}
.y7e{bottom:251.293333pt;}
.y136{bottom:253.213333pt;}
.yd7{bottom:253.853333pt;}
.y147{bottom:254.813333pt;}
.yb3{bottom:255.773333pt;}
.yf8{bottom:256.733333pt;}
.y104{bottom:265.053333pt;}
.y30{bottom:266.333333pt;}
.y11c{bottom:267.293333pt;}
.y7d{bottom:268.253333pt;}
.y135{bottom:269.853333pt;}
.y15a{bottom:271.133333pt;}
.y146{bottom:271.773333pt;}
.yb2{bottom:272.733333pt;}
.yf7{bottom:273.373333pt;}
.y103{bottom:281.373333pt;}
.y2f{bottom:281.693333pt;}
.y11b{bottom:284.253333pt;}
.y7c{bottom:285.213333pt;}
.yd6{bottom:286.813333pt;}
.y145{bottom:288.733333pt;}
.yb1{bottom:289.373333pt;}
.yf6{bottom:290.333333pt;}
.y102{bottom:295.453333pt;}
.y11a{bottom:301.213333pt;}
.y7b{bottom:301.853333pt;}
.y159{bottom:302.493333pt;}
.yd5{bottom:303.773333pt;}
.y144{bottom:305.373333pt;}
.y14a{bottom:306.333333pt;}
.yf5{bottom:307.293333pt;}
.y101{bottom:314.013333pt;}
.y2e{bottom:317.213333pt;}
.y92{bottom:317.853333pt;}
.y7a{bottom:318.813333pt;}
.yd4{bottom:320.733333pt;}
.yb0{bottom:322.013333pt;}
.y143{bottom:322.333333pt;}
.y171{bottom:332.573333pt;}
.y158{bottom:333.853333pt;}
.y91{bottom:334.813333pt;}
.y79{bottom:335.773333pt;}
.y134{bottom:336.733333pt;}
.yd3{bottom:337.373333pt;}
.y142{bottom:339.293333pt;}
.yf4{bottom:339.613333pt;}
.y119{bottom:350.853333pt;}
.y90{bottom:351.813333pt;}
.y2d{bottom:353.093333pt;}
.y133{bottom:353.413333pt;}
.yd2{bottom:354.373333pt;}
.yaf{bottom:355.333333pt;}
.y141{bottom:355.973333pt;}
.y170{bottom:363.973333pt;}
.y157{bottom:365.253333pt;}
.y118{bottom:367.813333pt;}
.y78{bottom:368.773333pt;}
.y132{bottom:370.373333pt;}
.yd1{bottom:371.333333pt;}
.yae{bottom:371.973333pt;}
.yf3{bottom:372.933333pt;}
.y117{bottom:384.773333pt;}
.y77{bottom:385.413333pt;}
.y2c{bottom:385.733333pt;}
.yf0{bottom:386.053333pt;}
.y131{bottom:387.333333pt;}
.yd0{bottom:387.973333pt;}
.yad{bottom:388.933333pt;}
.y16f{bottom:395.333333pt;}
.y156{bottom:396.613333pt;}
.y116{bottom:401.413333pt;}
.y76{bottom:402.373333pt;}
.y130{bottom:403.973333pt;}
.ycf{bottom:404.933333pt;}
.yac{bottom:405.893333pt;}
.yef{bottom:411.333333pt;}
.y115{bottom:418.373333pt;}
.y75{bottom:419.333333pt;}
.y12f{bottom:420.933333pt;}
.y2b{bottom:421.253333pt;}
.yce{bottom:421.893333pt;}
.yab{bottom:422.533333pt;}
.y16e{bottom:426.693333pt;}
.y155{bottom:427.973333pt;}
.y114{bottom:435.333333pt;}
.y74{bottom:435.973333pt;}
.y12e{bottom:437.893333pt;}
.ycd{bottom:438.533333pt;}
.yee{bottom:438.853333pt;}
.yaa{bottom:439.493333pt;}
.y113{bottom:451.973333pt;}
.y73{bottom:452.933333pt;}
.y2a{bottom:455.173333pt;}
.ycc{bottom:455.493333pt;}
.ya9{bottom:456.453333pt;}
.y16d{bottom:458.053333pt;}
.y154{bottom:459.013333pt;}
.yec{bottom:467.013333pt;}
.y112{bottom:468.933333pt;}
.y72{bottom:469.920000pt;}
.y12d{bottom:470.240000pt;}
.ycb{bottom:472.480000pt;}
.ya8{bottom:473.440000pt;}
.y50{bottom:478.560000pt;}
.ye8{bottom:481.760000pt;}
.y111{bottom:485.920000pt;}
.y71{bottom:486.560000pt;}
.y54{bottom:487.520000pt;}
.yca{bottom:489.440000pt;}
.ya7{bottom:490.080000pt;}
.y153{bottom:490.400000pt;}
.y29{bottom:492.320000pt;}
.y4f{bottom:495.520000pt;}
.y110{bottom:502.560000pt;}
.y70{bottom:503.520000pt;}
.y53{bottom:504.480000pt;}
.yc9{bottom:506.080000pt;}
.ya6{bottom:507.040000pt;}
.y28{bottom:519.200000pt;}
.y10f{bottom:519.520000pt;}
.y4e{bottom:520.160000pt;}
.y6f{bottom:520.480000pt;}
.y16c{bottom:520.800000pt;}
.y152{bottom:521.760000pt;}
.yc8{bottom:523.040000pt;}
.ye5{bottom:523.680000pt;}
.y52{bottom:529.440000pt;}
.y10e{bottom:536.480000pt;}
.y6e{bottom:537.440000pt;}
.y149{bottom:539.040000pt;}
.ya5{bottom:540.000000pt;}
.y4d{bottom:545.440000pt;}
.y16b{bottom:552.160000pt;}
.y151{bottom:553.120000pt;}
.y10d{bottom:553.440000pt;}
.y51{bottom:554.080000pt;}
.y27{bottom:554.720000pt;}
.y140{bottom:556.000000pt;}
.ya4{bottom:556.640000pt;}
.y4c{bottom:562.080000pt;}
.y10c{bottom:570.080000pt;}
.y8f{bottom:571.040000pt;}
.y13f{bottom:572.640000pt;}
.ya3{bottom:573.600000pt;}
.y4b{bottom:579.040000pt;}
.y16a{bottom:583.520000pt;}
.y150{bottom:584.480000pt;}
.y6d{bottom:587.040000pt;}
.y8e{bottom:588.000000pt;}
.y100{bottom:588.986667pt;}
.yc7{bottom:589.306667pt;}
.y13e{bottom:589.626667pt;}
.ya2{bottom:590.586667pt;}
.y26{bottom:594.426667pt;}
.y4a{bottom:596.026667pt;}
.y6c{bottom:604.026667pt;}
.y8d{bottom:604.666667pt;}
.yc6{bottom:606.266667pt;}
.y13d{bottom:606.586667pt;}
.ya1{bottom:607.546667pt;}
.y49{bottom:612.666667pt;}
.y169{bottom:614.586667pt;}
.y14f{bottom:615.866667pt;}
.y6b{bottom:620.666667pt;}
.y8c{bottom:621.626667pt;}
.y13c{bottom:623.546667pt;}
.ya0{bottom:624.186667pt;}
.y48{bottom:629.626667pt;}
.y25{bottom:631.226667pt;}
.y6a{bottom:637.626667pt;}
.y8b{bottom:638.586667pt;}
.yc5{bottom:639.546667pt;}
.y13b{bottom:640.186667pt;}
.y9f{bottom:641.146667pt;}
.y168{bottom:645.946667pt;}
.y47{bottom:646.586667pt;}
.y14e{bottom:647.226667pt;}
.y69{bottom:654.586667pt;}
.y8a{bottom:655.546667pt;}
.yc4{bottom:656.186667pt;}
.y9e{bottom:658.106667pt;}
.y46{bottom:663.546667pt;}
.y68{bottom:671.546667pt;}
.y89{bottom:672.186667pt;}
.yc3{bottom:673.146667pt;}
.y9d{bottom:674.746667pt;}
.y24{bottom:676.026667pt;}
.y167{bottom:677.306667pt;}
.y14d{bottom:678.586667pt;}
.y45{bottom:680.186667pt;}
.y67{bottom:688.186667pt;}
.y88{bottom:689.146667pt;}
.yc2{bottom:690.106667pt;}
.y9c{bottom:691.706667pt;}
.y44{bottom:697.146667pt;}
.y66{bottom:705.146667pt;}
.y87{bottom:706.106667pt;}
.yc1{bottom:706.746667pt;}
.y166{bottom:708.706667pt;}
.y14c{bottom:709.986667pt;}
.y43{bottom:714.146667pt;}
.y23{bottom:720.866667pt;}
.y65{bottom:722.146667pt;}
.ye4{bottom:722.786667pt;}
.yc0{bottom:723.746667pt;}
.y9b{bottom:724.386667pt;}
.y42{bottom:730.786667pt;}
.y64{bottom:738.786667pt;}
.ye3{bottom:739.746667pt;}
.y165{bottom:740.066667pt;}
.ybf{bottom:740.706667pt;}
.y14b{bottom:741.346667pt;}
.y41{bottom:747.746667pt;}
.y63{bottom:755.746667pt;}
.ye2{bottom:756.706667pt;}
.y9a{bottom:757.346667pt;}
.y22{bottom:757.666667pt;}
.y40{bottom:764.706667pt;}
.y164{bottom:771.426667pt;}
.y62{bottom:772.706667pt;}
.ye1{bottom:773.346667pt;}
.y99{bottom:774.306667pt;}
.y3f{bottom:781.346667pt;}
.y61{bottom:789.346667pt;}
.ye0{bottom:790.306667pt;}
.y98{bottom:791.266667pt;}
.y21{bottom:798.306667pt;}
.y163{bottom:802.786667pt;}
.y60{bottom:806.306667pt;}
.y128{bottom:807.266667pt;}
.y97{bottom:808.226667pt;}
.y3e{bottom:815.266667pt;}
.y5f{bottom:823.266667pt;}
.y127{bottom:824.226667pt;}
.y96{bottom:824.866667pt;}
.y3d{bottom:832.253333pt;}
.y20{bottom:833.853333pt;}
.y162{bottom:834.173333pt;}
.y5e{bottom:840.253333pt;}
.y126{bottom:840.893333pt;}
.y95{bottom:841.853333pt;}
.y3c{bottom:848.893333pt;}
.y5d{bottom:856.893333pt;}
.y125{bottom:857.853333pt;}
.ybe{bottom:858.813333pt;}
.y161{bottom:865.533333pt;}
.y3b{bottom:865.853333pt;}
.y1f{bottom:869.373333pt;}
.y5c{bottom:873.853333pt;}
.y94{bottom:874.493333pt;}
.y12c{bottom:874.813333pt;}
.ybd{bottom:875.453333pt;}
.y3a{bottom:882.813333pt;}
.y5b{bottom:890.813333pt;}
.y93{bottom:891.133333pt;}
.y12b{bottom:891.453333pt;}
.y160{bottom:896.893333pt;}
.y39{bottom:899.453333pt;}
.y5a{bottom:907.453333pt;}
.ybc{bottom:908.093333pt;}
.y12a{bottom:908.413333pt;}
.y1e{bottom:913.213333pt;}
.y38{bottom:916.413333pt;}
.y31{bottom:920.573333pt;}
.y59{bottom:924.413333pt;}
.y129{bottom:925.373333pt;}
.y15f{bottom:928.253333pt;}
.y37{bottom:933.373333pt;}
.y58{bottom:941.373333pt;}
.y1d{bottom:949.093333pt;}
.y36{bottom:958.053333pt;}
.y86{bottom:958.373333pt;}
.y15e{bottom:959.653333pt;}
.y17{bottom:995.813333pt;}
.y16{bottom:1014.693333pt;}
.y15{bottom:1031.013333pt;}
.y14{bottom:1046.053333pt;}
.y13{bottom:1061.413333pt;}
.y1b{bottom:1062.053333pt;}
.hd{height:13.146667pt;}
.h20{height:14.106667pt;}
.h22{height:24.626667pt;}
.h21{height:27.506667pt;}
.h1c{height:27.520000pt;}
.he{height:31.102500pt;}
.h14{height:33.918750pt;}
.h9{height:36.408750pt;}
.hc{height:39.585000pt;}
.ha{height:39.876250pt;}
.h1f{height:41.280000pt;}
.h4{height:41.456250pt;}
.h17{height:41.946667pt;}
.h8{height:43.343750pt;}
.hb{height:43.355000pt;}
.h3{height:44.125000pt;}
.h1e{height:47.737500pt;}
.h1d{height:49.020000pt;}
.h15{height:52.736250pt;}
.h6{height:52.762500pt;}
.h1a{height:52.785000pt;}
.h7{height:54.180000pt;}
.h1b{height:57.758750pt;}
.h19{height:57.787500pt;}
.h18{height:59.340000pt;}
.h23{height:60.519362pt;}
.h12{height:62.812500pt;}
.h10{height:64.500000pt;}
.hf{height:66.625000pt;}
.h13{height:70.896250pt;}
.h16{height:72.826250pt;}
.h11{height:86.430000pt;}
.h5{height:96.000000pt;}
.h2{height:152.680000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:17.586667pt;}
.w8{width:72.960000pt;}
.wa{width:74.866667pt;}
.w9{width:74.906667pt;}
.w7{width:102.420000pt;}
.w2{width:236.880000pt;}
.w3{width:288.720000pt;}
.w6{width:325.200000pt;}
.w5{width:679.920000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x12{left:7.028000pt;}
.x2{left:9.586667pt;}
.x14{left:16.626667pt;}
.x17{left:17.920000pt;}
.x1c{left:19.826667pt;}
.x19{left:20.800000pt;}
.x1b{left:22.720000pt;}
.x1a{left:23.680000pt;}
.x15{left:25.586667pt;}
.x5{left:44.844000pt;}
.x11{left:49.644000pt;}
.x3{left:55.386667pt;}
.x6{left:56.672000pt;}
.xf{left:58.924000pt;}
.x1f{left:85.152000pt;}
.xb{left:86.432000pt;}
.x4{left:144.053333pt;}
.x13{left:152.080000pt;}
.x9{left:181.186667pt;}
.x16{left:225.053333pt;}
.x18{left:299.973333pt;}
.xc{left:339.653333pt;}
.xa{left:395.040000pt;}
.x10{left:420.640000pt;}
.x1e{left:449.120000pt;}
.xd{left:480.506667pt;}
.x1{left:504.200000pt;}
.xe{left:621.666667pt;}
.x1d{left:716.453333pt;}
.x8{left:719.653333pt;}
.x7{left:737.253333pt;}
}




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