
    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_7a454099647756a0f8f04597.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3b3ddaa5cdf2996645057403.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_3bbe01470ad155faf0f3e5d8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_da2a8a14b11ac1c98b4fb72f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_43b0192c579bde55b77463fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_17ec487f2be6ec95c1eaf724.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_94ffa7be89c02942f69faa78.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_6063bdc5ba90cbb97ed298c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c0de7ad2cde649e9a8f62dfa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_60eb73cfed233916e7935d63.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_521537c81636015c8c86f5ae.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_848584f08a4b4b0645d06019.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_f3e49346f479e3f6eb7ebcb8.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_da6e22d7e3aedd917cb64866.woff2')format("woff");}.fff{font-family:fff;line-height:0.921387;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:ff10;src:url('chunks/assets/font_71440d26560aef39196c646b.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_482c021b170f2318007a49b4.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_8712a2c046ddd245dfd32649.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_5177601726cded8aebc3da4c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.921387;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:ff14;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.738770;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls10{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.259800px;}
.lsf{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lse{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.132600px;}
.lsd{letter-spacing:0.153600px;}
.ls7{letter-spacing:0.174240px;}
.ls5{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.lsb{letter-spacing:5.220000px;}
.lsa{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.wsb{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.093600px;}
.wse{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.833200px;}
.wsc{word-spacing:-14.680200px;}
.ws10{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.505760px;}
.ws6{word-spacing:-12.854880px;}
.ws5{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._10{margin-left:-7.768800px;}
._4{margin-left:-5.557680px;}
._e{margin-left:-4.457760px;}
._3{margin-left:-3.412320px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.068000px;}
._1{width:1.314000px;}
._a{width:2.868480px;}
._b{width:4.098720px;}
._9{width:5.199120px;}
._12{width:6.240480px;}
._f{width:7.410240px;}
._11{width:8.844480px;}
._14{width:10.273680px;}
._5{width:12.204000px;}
._6{width:13.326480px;}
._8{width:16.135200px;}
._7{width:17.330400px;}
._13{width:19.063440px;}
._d{width:20.964960px;}
._c{width:23.964480px;}
.fc7{color:rgb(54,96,145);}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y64{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y69{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y67{bottom:10.620000px;}
.y1e{bottom:11.160000px;}
.y44{bottom:11.880000px;}
.y20{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.280000px;}
.y2{bottom:20.160000px;}
.y63{bottom:20.520000px;}
.y68{bottom:22.320000px;}
.y66{bottom:25.380000px;}
.y43{bottom:26.460000px;}
.y5{bottom:28.080000px;}
.yb{bottom:30.240000px;}
.y1d{bottom:31.500000px;}
.y62{bottom:37.620000px;}
.y42{bottom:41.220000px;}
.y1c{bottom:44.100000px;}
.ya{bottom:46.620000px;}
.y1{bottom:49.140000px;}
.y61{bottom:54.900000px;}
.y41{bottom:55.800000px;}
.y1b{bottom:64.440000px;}
.y40{bottom:70.560000px;}
.y60{bottom:72.180000px;}
.y9{bottom:73.470000px;}
.y1a{bottom:77.040000px;}
.y3f{bottom:85.140000px;}
.y5f{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y19{bottom:97.380000px;}
.ye3{bottom:97.956000px;}
.y3e{bottom:99.720000px;}
.y10c{bottom:104.436000px;}
.ya9{bottom:105.156000px;}
.y5e{bottom:106.740000px;}
.y6a{bottom:107.316000px;}
.y18{bottom:110.160000px;}
.y7{bottom:111.450000px;}
.y3d{bottom:114.480000px;}
.ye2{bottom:115.236000px;}
.y65{bottom:121.356000px;}
.y10b{bottom:121.716000px;}
.ya8{bottom:122.256000px;}
.y5d{bottom:124.020000px;}
.y3c{bottom:129.060000px;}
.y17{bottom:130.365000px;}
.ye1{bottom:132.516000px;}
.y10a{bottom:138.996000px;}
.ya7{bottom:139.536000px;}
.y5c{bottom:141.120000px;}
.y16{bottom:142.425000px;}
.y3b{bottom:143.640000px;}
.ye0{bottom:149.616000px;}
.y109{bottom:156.270000px;}
.y15{bottom:156.645000px;}
.ya6{bottom:156.810000px;}
.y21{bottom:158.070000px;}
.y3a{bottom:158.400000px;}
.ydf{bottom:166.890000px;}
.yb3{bottom:171.930000px;}
.y39{bottom:172.980000px;}
.y108{bottom:173.550000px;}
.ya5{bottom:174.090000px;}
.y14{bottom:175.005000px;}
.y5b{bottom:175.680000px;}
.yde{bottom:184.170000px;}
.y38{bottom:187.785000px;}
.yb2{bottom:189.210000px;}
.y107{bottom:190.830000px;}
.ya4{bottom:191.370000px;}
.y5a{bottom:193.005000px;}
.y13{bottom:193.905000px;}
.ydd{bottom:201.450000px;}
.y37{bottom:202.365000px;}
.yb1{bottom:206.490000px;}
.y106{bottom:207.930000px;}
.ya3{bottom:208.470000px;}
.y59{bottom:210.285000px;}
.ydc{bottom:216.210000px;}
.y36{bottom:216.945000px;}
.y12{bottom:219.645000px;}
.yb0{bottom:223.770000px;}
.y105{bottom:225.210000px;}
.ya2{bottom:225.750000px;}
.y58{bottom:227.385000px;}
.y35{bottom:231.705000px;}
.ydb{bottom:234.210000px;}
.yaf{bottom:241.050000px;}
.y104{bottom:242.490000px;}
.ya1{bottom:243.030000px;}
.y57{bottom:244.665000px;}
.y11{bottom:245.385000px;}
.y34{bottom:246.285000px;}
.yda{bottom:252.210000px;}
.yae{bottom:258.330000px;}
.y103{bottom:259.770000px;}
.ya0{bottom:260.310000px;}
.y33{bottom:260.865000px;}
.y56{bottom:261.945000px;}
.y10{bottom:269.865000px;}
.yd9{bottom:270.210000px;}
.yad{bottom:275.430000px;}
.y32{bottom:275.625000px;}
.y102{bottom:277.050000px;}
.y9f{bottom:277.590000px;}
.y55{bottom:279.225000px;}
.yd8{bottom:288.210000px;}
.y31{bottom:290.205000px;}
.yac{bottom:292.710000px;}
.y101{bottom:294.330000px;}
.y9e{bottom:294.870000px;}
.y54{bottom:296.505000px;}
.y30{bottom:305.505000px;}
.yd7{bottom:306.210000px;}
.yab{bottom:309.990000px;}
.y100{bottom:311.430000px;}
.y9d{bottom:311.970000px;}
.y53{bottom:313.785000px;}
.y2f{bottom:323.145000px;}
.yaa{bottom:324.030000px;}
.yd6{bottom:324.210000px;}
.yff{bottom:328.710000px;}
.y9c{bottom:329.250000px;}
.y52{bottom:330.885000px;}
.y2e{bottom:340.425000px;}
.yd5{bottom:342.255000px;}
.yfe{bottom:346.035000px;}
.y9b{bottom:346.575000px;}
.y51{bottom:348.165000px;}
.y2d{bottom:357.705000px;}
.yd4{bottom:360.255000px;}
.yfd{bottom:363.315000px;}
.y9a{bottom:363.855000px;}
.y50{bottom:365.445000px;}
.y2c{bottom:375.345000px;}
.yfc{bottom:380.595000px;}
.y99{bottom:381.135000px;}
.yd3{bottom:381.495000px;}
.y4f{bottom:382.725000px;}
.y2b{bottom:392.085000px;}
.yfb{bottom:397.695000px;}
.y98{bottom:398.415000px;}
.yd2{bottom:398.775000px;}
.y4e{bottom:400.005000px;}
.y2a{bottom:408.465000px;}
.yfa{bottom:414.975000px;}
.y97{bottom:415.515000px;}
.yd1{bottom:415.875000px;}
.y4d{bottom:417.285000px;}
.y29{bottom:425.565000px;}
.yf9{bottom:432.255000px;}
.y96{bottom:432.795000px;}
.yd0{bottom:433.155000px;}
.y4c{bottom:434.385000px;}
.y28{bottom:443.025000px;}
.yf8{bottom:449.535000px;}
.y95{bottom:450.075000px;}
.ycf{bottom:450.435000px;}
.y4b{bottom:451.695000px;}
.y27{bottom:460.335000px;}
.yce{bottom:465.195000px;}
.yf7{bottom:466.815000px;}
.y94{bottom:467.355000px;}
.y4a{bottom:468.975000px;}
.y26{bottom:477.795000px;}
.ycd{bottom:483.195000px;}
.yf6{bottom:484.095000px;}
.y93{bottom:484.635000px;}
.y49{bottom:486.255000px;}
.y25{bottom:495.255000px;}
.ycc{bottom:501.195000px;}
.y92{bottom:501.735000px;}
.y48{bottom:503.535000px;}
.y24{bottom:512.715000px;}
.yf5{bottom:518.475000px;}
.y91{bottom:519.015000px;}
.ycb{bottom:519.195000px;}
.y47{bottom:520.815000px;}
.yf4{bottom:535.755000px;}
.y90{bottom:536.295000px;}
.yca{bottom:537.195000px;}
.y46{bottom:537.915000px;}
.y23{bottom:540.255000px;}
.yf3{bottom:553.035000px;}
.y8f{bottom:553.575000px;}
.y45{bottom:555.195000px;}
.y22{bottom:557.895000px;}
.yc9{bottom:558.435000px;}
.yf2{bottom:570.315000px;}
.y8e{bottom:570.855000px;}
.yc8{bottom:575.715000px;}
.yf1{bottom:587.595000px;}
.y8d{bottom:588.135000px;}
.yc7{bottom:592.995000px;}
.yf0{bottom:604.725000px;}
.y8c{bottom:605.265000px;}
.yc6{bottom:610.305000px;}
.yef{bottom:622.005000px;}
.y8b{bottom:622.545000px;}
.yc5{bottom:627.405000px;}
.yee{bottom:639.285000px;}
.y8a{bottom:639.825000px;}
.yc4{bottom:644.685000px;}
.yed{bottom:656.565000px;}
.y89{bottom:657.105000px;}
.yc3{bottom:661.965000px;}
.yec{bottom:673.845000px;}
.y88{bottom:674.385000px;}
.yc2{bottom:679.245000px;}
.yeb{bottom:691.125000px;}
.y87{bottom:691.665000px;}
.yc1{bottom:696.525000px;}
.yea{bottom:708.225000px;}
.y86{bottom:708.765000px;}
.yc0{bottom:713.625000px;}
.ye9{bottom:725.505000px;}
.y85{bottom:726.045000px;}
.y1f{bottom:727.305000px;}
.ybf{bottom:730.905000px;}
.ye8{bottom:742.785000px;}
.y84{bottom:743.325000px;}
.ybe{bottom:748.185000px;}
.yf{bottom:756.825000px;}
.ye7{bottom:760.065000px;}
.y83{bottom:760.605000px;}
.ybd{bottom:765.465000px;}
.ye6{bottom:777.345000px;}
.y82{bottom:777.885000px;}
.ybc{bottom:782.745000px;}
.ye5{bottom:794.445000px;}
.y81{bottom:795.165000px;}
.ybb{bottom:800.025000px;}
.ye4{bottom:808.485000px;}
.y80{bottom:812.265000px;}
.yba{bottom:817.125000px;}
.y7f{bottom:829.545000px;}
.yb9{bottom:834.405000px;}
.y7e{bottom:846.825000px;}
.yb8{bottom:851.685000px;}
.y7d{bottom:864.105000px;}
.yb7{bottom:868.965000px;}
.y7c{bottom:881.430000px;}
.yb6{bottom:886.290000px;}
.y7b{bottom:898.530000px;}
.yb5{bottom:903.570000px;}
.y7a{bottom:915.810000px;}
.yb4{bottom:917.430000px;}
.y79{bottom:933.090000px;}
.y78{bottom:950.370000px;}
.y77{bottom:967.650000px;}
.y76{bottom:984.930000px;}
.y75{bottom:1002.030000px;}
.y74{bottom:1019.310000px;}
.y73{bottom:1036.590000px;}
.yd{bottom:1041.810000px;}
.y72{bottom:1053.870000px;}
.y6{bottom:1067.010000px;}
.y71{bottom:1071.150000px;}
.y70{bottom:1088.430000px;}
.y6f{bottom:1105.530000px;}
.y6e{bottom:1122.810000px;}
.y6d{bottom:1140.120000px;}
.y6c{bottom:1157.400000px;}
.y6b{bottom:1174.680000px;}
.h22{height:17.280000px;}
.h23{height:17.316000px;}
.hc{height:24.840000px;}
.h14{height:29.520000px;}
.h12{height:32.103633px;}
.h2{height:32.976000px;}
.h9{height:36.180000px;}
.h1f{height:36.720000px;}
.h19{height:40.243711px;}
.h24{height:40.472227px;}
.h1e{height:41.726953px;}
.h1d{height:42.164648px;}
.h1c{height:42.186445px;}
.h1b{height:42.281367px;}
.h21{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h13{height:47.223633px;}
.h17{height:47.980898px;}
.h1a{height:49.742227px;}
.h20{height:52.260820px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:284.970000px;}
.h16{height:569.235000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w11{width:103.680000px;}
.wd{width:115.920000px;}
.w5{width:151.950000px;}
.wc{width:160.950000px;}
.we{width:162.750000px;}
.wb{width:181.290000px;}
.w10{width:215.670000px;}
.w8{width:223.455000px;}
.wf{width:251.895000px;}
.wa{width:268.995000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.560000px;}
.x2{left:8.676000px;}
.x13{left:12.600000px;}
.xf{left:17.856000px;}
.xa{left:26.316000px;}
.xd{left:27.756000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x20{left:108.035987px;}
.x16{left:198.929987px;}
.x11{left:215.175000px;}
.x5{left:232.950000px;}
.x1b{left:245.370000px;}
.x8{left:272.235000px;}
.x10{left:300.315000px;}
.x12{left:304.455000px;}
.x1a{left:327.494987px;}
.xb{left:329.475000px;}
.x6{left:331.995000px;}
.xe{left:350.175000px;}
.x7{left:351.255000px;}
.xc{left:365.475000px;}
.x1f{left:396.074987px;}
.x9{left:439.500000px;}
.x1c{left:497.985000px;}
.x18{left:533.625000px;}
.x19{left:695.490000px;}
.x1d{left:714.390000px;}
.x3{left:739.050000px;}
.x15{left:749.129987px;}
.x1e{left:750.749987px;}
.x14{left:766.049987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.230933pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.117867pt;}
.lsd{letter-spacing:0.136533pt;}
.ls7{letter-spacing:0.154880pt;}
.ls5{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.lsb{letter-spacing:4.640000pt;}
.lsa{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.wsb{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.416533pt;}
.wse{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.185067pt;}
.wsc{word-spacing:-13.049067pt;}
.ws10{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.640000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.426560pt;}
.ws5{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._10{margin-left:-6.905600pt;}
._4{margin-left:-4.940160pt;}
._e{margin-left:-3.962453pt;}
._3{margin-left:-3.033173pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-0.949333pt;}
._1{width:1.168000pt;}
._a{width:2.549760pt;}
._b{width:3.643307pt;}
._9{width:4.621440pt;}
._12{width:5.547093pt;}
._f{width:6.586880pt;}
._11{width:7.861760pt;}
._14{width:9.132160pt;}
._5{width:10.848000pt;}
._6{width:11.845760pt;}
._8{width:14.342400pt;}
._7{width:15.404800pt;}
._13{width:16.945280pt;}
._d{width:18.635520pt;}
._c{width:21.301760pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y69{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y67{bottom:9.440000pt;}
.y1e{bottom:9.920000pt;}
.y44{bottom:10.560000pt;}
.y20{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.360000pt;}
.y2{bottom:17.920000pt;}
.y63{bottom:18.240000pt;}
.y68{bottom:19.840000pt;}
.y66{bottom:22.560000pt;}
.y43{bottom:23.520000pt;}
.y5{bottom:24.960000pt;}
.yb{bottom:26.880000pt;}
.y1d{bottom:28.000000pt;}
.y62{bottom:33.440000pt;}
.y42{bottom:36.640000pt;}
.y1c{bottom:39.200000pt;}
.ya{bottom:41.440000pt;}
.y1{bottom:43.680000pt;}
.y61{bottom:48.800000pt;}
.y41{bottom:49.600000pt;}
.y1b{bottom:57.280000pt;}
.y40{bottom:62.720000pt;}
.y60{bottom:64.160000pt;}
.y9{bottom:65.306667pt;}
.y1a{bottom:68.480000pt;}
.y3f{bottom:75.680000pt;}
.y5f{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y19{bottom:86.560000pt;}
.ye3{bottom:87.072000pt;}
.y3e{bottom:88.640000pt;}
.y10c{bottom:92.832000pt;}
.ya9{bottom:93.472000pt;}
.y5e{bottom:94.880000pt;}
.y6a{bottom:95.392000pt;}
.y18{bottom:97.920000pt;}
.y7{bottom:99.066667pt;}
.y3d{bottom:101.760000pt;}
.ye2{bottom:102.432000pt;}
.y65{bottom:107.872000pt;}
.y10b{bottom:108.192000pt;}
.ya8{bottom:108.672000pt;}
.y5d{bottom:110.240000pt;}
.y3c{bottom:114.720000pt;}
.y17{bottom:115.880000pt;}
.ye1{bottom:117.792000pt;}
.y10a{bottom:123.552000pt;}
.ya7{bottom:124.032000pt;}
.y5c{bottom:125.440000pt;}
.y16{bottom:126.600000pt;}
.y3b{bottom:127.680000pt;}
.ye0{bottom:132.992000pt;}
.y109{bottom:138.906667pt;}
.y15{bottom:139.240000pt;}
.ya6{bottom:139.386667pt;}
.y21{bottom:140.506667pt;}
.y3a{bottom:140.800000pt;}
.ydf{bottom:148.346667pt;}
.yb3{bottom:152.826667pt;}
.y39{bottom:153.760000pt;}
.y108{bottom:154.266667pt;}
.ya5{bottom:154.746667pt;}
.y14{bottom:155.560000pt;}
.y5b{bottom:156.160000pt;}
.yde{bottom:163.706667pt;}
.y38{bottom:166.920000pt;}
.yb2{bottom:168.186667pt;}
.y107{bottom:169.626667pt;}
.ya4{bottom:170.106667pt;}
.y5a{bottom:171.560000pt;}
.y13{bottom:172.360000pt;}
.ydd{bottom:179.066667pt;}
.y37{bottom:179.880000pt;}
.yb1{bottom:183.546667pt;}
.y106{bottom:184.826667pt;}
.ya3{bottom:185.306667pt;}
.y59{bottom:186.920000pt;}
.ydc{bottom:192.186667pt;}
.y36{bottom:192.840000pt;}
.y12{bottom:195.240000pt;}
.yb0{bottom:198.906667pt;}
.y105{bottom:200.186667pt;}
.ya2{bottom:200.666667pt;}
.y58{bottom:202.120000pt;}
.y35{bottom:205.960000pt;}
.ydb{bottom:208.186667pt;}
.yaf{bottom:214.266667pt;}
.y104{bottom:215.546667pt;}
.ya1{bottom:216.026667pt;}
.y57{bottom:217.480000pt;}
.y11{bottom:218.120000pt;}
.y34{bottom:218.920000pt;}
.yda{bottom:224.186667pt;}
.yae{bottom:229.626667pt;}
.y103{bottom:230.906667pt;}
.ya0{bottom:231.386667pt;}
.y33{bottom:231.880000pt;}
.y56{bottom:232.840000pt;}
.y10{bottom:239.880000pt;}
.yd9{bottom:240.186667pt;}
.yad{bottom:244.826667pt;}
.y32{bottom:245.000000pt;}
.y102{bottom:246.266667pt;}
.y9f{bottom:246.746667pt;}
.y55{bottom:248.200000pt;}
.yd8{bottom:256.186667pt;}
.y31{bottom:257.960000pt;}
.yac{bottom:260.186667pt;}
.y101{bottom:261.626667pt;}
.y9e{bottom:262.106667pt;}
.y54{bottom:263.560000pt;}
.y30{bottom:271.560000pt;}
.yd7{bottom:272.186667pt;}
.yab{bottom:275.546667pt;}
.y100{bottom:276.826667pt;}
.y9d{bottom:277.306667pt;}
.y53{bottom:278.920000pt;}
.y2f{bottom:287.240000pt;}
.yaa{bottom:288.026667pt;}
.yd6{bottom:288.186667pt;}
.yff{bottom:292.186667pt;}
.y9c{bottom:292.666667pt;}
.y52{bottom:294.120000pt;}
.y2e{bottom:302.600000pt;}
.yd5{bottom:304.226667pt;}
.yfe{bottom:307.586667pt;}
.y9b{bottom:308.066667pt;}
.y51{bottom:309.480000pt;}
.y2d{bottom:317.960000pt;}
.yd4{bottom:320.226667pt;}
.yfd{bottom:322.946667pt;}
.y9a{bottom:323.426667pt;}
.y50{bottom:324.840000pt;}
.y2c{bottom:333.640000pt;}
.yfc{bottom:338.306667pt;}
.y99{bottom:338.786667pt;}
.yd3{bottom:339.106667pt;}
.y4f{bottom:340.200000pt;}
.y2b{bottom:348.520000pt;}
.yfb{bottom:353.506667pt;}
.y98{bottom:354.146667pt;}
.yd2{bottom:354.466667pt;}
.y4e{bottom:355.560000pt;}
.y2a{bottom:363.080000pt;}
.yfa{bottom:368.866667pt;}
.y97{bottom:369.346667pt;}
.yd1{bottom:369.666667pt;}
.y4d{bottom:370.920000pt;}
.y29{bottom:378.280000pt;}
.yf9{bottom:384.226667pt;}
.y96{bottom:384.706667pt;}
.yd0{bottom:385.026667pt;}
.y4c{bottom:386.120000pt;}
.y28{bottom:393.800000pt;}
.yf8{bottom:399.586667pt;}
.y95{bottom:400.066667pt;}
.ycf{bottom:400.386667pt;}
.y4b{bottom:401.506667pt;}
.y27{bottom:409.186667pt;}
.yce{bottom:413.506667pt;}
.yf7{bottom:414.946667pt;}
.y94{bottom:415.426667pt;}
.y4a{bottom:416.866667pt;}
.y26{bottom:424.706667pt;}
.ycd{bottom:429.506667pt;}
.yf6{bottom:430.306667pt;}
.y93{bottom:430.786667pt;}
.y49{bottom:432.226667pt;}
.y25{bottom:440.226667pt;}
.ycc{bottom:445.506667pt;}
.y92{bottom:445.986667pt;}
.y48{bottom:447.586667pt;}
.y24{bottom:455.746667pt;}
.yf5{bottom:460.866667pt;}
.y91{bottom:461.346667pt;}
.ycb{bottom:461.506667pt;}
.y47{bottom:462.946667pt;}
.yf4{bottom:476.226667pt;}
.y90{bottom:476.706667pt;}
.yca{bottom:477.506667pt;}
.y46{bottom:478.146667pt;}
.y23{bottom:480.226667pt;}
.yf3{bottom:491.586667pt;}
.y8f{bottom:492.066667pt;}
.y45{bottom:493.506667pt;}
.y22{bottom:495.906667pt;}
.yc9{bottom:496.386667pt;}
.yf2{bottom:506.946667pt;}
.y8e{bottom:507.426667pt;}
.yc8{bottom:511.746667pt;}
.yf1{bottom:522.306667pt;}
.y8d{bottom:522.786667pt;}
.yc7{bottom:527.106667pt;}
.yf0{bottom:537.533333pt;}
.y8c{bottom:538.013333pt;}
.yc6{bottom:542.493333pt;}
.yef{bottom:552.893333pt;}
.y8b{bottom:553.373333pt;}
.yc5{bottom:557.693333pt;}
.yee{bottom:568.253333pt;}
.y8a{bottom:568.733333pt;}
.yc4{bottom:573.053333pt;}
.yed{bottom:583.613333pt;}
.y89{bottom:584.093333pt;}
.yc3{bottom:588.413333pt;}
.yec{bottom:598.973333pt;}
.y88{bottom:599.453333pt;}
.yc2{bottom:603.773333pt;}
.yeb{bottom:614.333333pt;}
.y87{bottom:614.813333pt;}
.yc1{bottom:619.133333pt;}
.yea{bottom:629.533333pt;}
.y86{bottom:630.013333pt;}
.yc0{bottom:634.333333pt;}
.ye9{bottom:644.893333pt;}
.y85{bottom:645.373333pt;}
.y1f{bottom:646.493333pt;}
.ybf{bottom:649.693333pt;}
.ye8{bottom:660.253333pt;}
.y84{bottom:660.733333pt;}
.ybe{bottom:665.053333pt;}
.yf{bottom:672.733333pt;}
.ye7{bottom:675.613333pt;}
.y83{bottom:676.093333pt;}
.ybd{bottom:680.413333pt;}
.ye6{bottom:690.973333pt;}
.y82{bottom:691.453333pt;}
.ybc{bottom:695.773333pt;}
.ye5{bottom:706.173333pt;}
.y81{bottom:706.813333pt;}
.ybb{bottom:711.133333pt;}
.ye4{bottom:718.653333pt;}
.y80{bottom:722.013333pt;}
.yba{bottom:726.333333pt;}
.y7f{bottom:737.373333pt;}
.yb9{bottom:741.693333pt;}
.y7e{bottom:752.733333pt;}
.yb8{bottom:757.053333pt;}
.y7d{bottom:768.093333pt;}
.yb7{bottom:772.413333pt;}
.y7c{bottom:783.493333pt;}
.yb6{bottom:787.813333pt;}
.y7b{bottom:798.693333pt;}
.yb5{bottom:803.173333pt;}
.y7a{bottom:814.053333pt;}
.yb4{bottom:815.493333pt;}
.y79{bottom:829.413333pt;}
.y78{bottom:844.773333pt;}
.y77{bottom:860.133333pt;}
.y76{bottom:875.493333pt;}
.y75{bottom:890.693333pt;}
.y74{bottom:906.053333pt;}
.y73{bottom:921.413333pt;}
.yd{bottom:926.053333pt;}
.y72{bottom:936.773333pt;}
.y6{bottom:948.453333pt;}
.y71{bottom:952.133333pt;}
.y70{bottom:967.493333pt;}
.y6f{bottom:982.693333pt;}
.y6e{bottom:998.053333pt;}
.y6d{bottom:1013.440000pt;}
.y6c{bottom:1028.800000pt;}
.y6b{bottom:1044.160000pt;}
.h22{height:15.360000pt;}
.h23{height:15.392000pt;}
.hc{height:22.080000pt;}
.h14{height:26.240000pt;}
.h12{height:28.536563pt;}
.h2{height:29.312000pt;}
.h9{height:32.160000pt;}
.h1f{height:32.640000pt;}
.h19{height:35.772188pt;}
.h24{height:35.975313pt;}
.h1e{height:37.090625pt;}
.h1d{height:37.479688pt;}
.h1c{height:37.499062pt;}
.h1b{height:37.583438pt;}
.h21{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h13{height:41.976562pt;}
.h17{height:42.649687pt;}
.h1a{height:44.215312pt;}
.h20{height:46.454062pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:253.306667pt;}
.h16{height:505.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w11{width:92.160000pt;}
.wd{width:103.040000pt;}
.w5{width:135.066667pt;}
.wc{width:143.066667pt;}
.we{width:144.666667pt;}
.wb{width:161.146667pt;}
.w10{width:191.706667pt;}
.w8{width:198.626667pt;}
.wf{width:223.906667pt;}
.wa{width:239.106667pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.720000pt;}
.x2{left:7.712000pt;}
.x13{left:11.200000pt;}
.xf{left:15.872000pt;}
.xa{left:23.392000pt;}
.xd{left:24.672000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x20{left:96.031988pt;}
.x16{left:176.826655pt;}
.x11{left:191.266667pt;}
.x5{left:207.066667pt;}
.x1b{left:218.106667pt;}
.x8{left:241.986667pt;}
.x10{left:266.946667pt;}
.x12{left:270.626667pt;}
.x1a{left:291.106655pt;}
.xb{left:292.866667pt;}
.x6{left:295.106667pt;}
.xe{left:311.266667pt;}
.x7{left:312.226667pt;}
.xc{left:324.866667pt;}
.x1f{left:352.066655pt;}
.x9{left:390.666667pt;}
.x1c{left:442.653333pt;}
.x18{left:474.333333pt;}
.x19{left:618.213333pt;}
.x1d{left:635.013333pt;}
.x3{left:656.933333pt;}
.x15{left:665.893322pt;}
.x1e{left:667.333322pt;}
.x14{left:680.933322pt;}
}




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