
    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_9758510c59bae3a8722825a5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_533fb4d353411d9960b34d68.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1f897eecbbb5905382e81544.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_59c517336c79b347652981a6.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf6ee80d1f43388e28a6f249.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b4ef70ab02724d57fe3856c8.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1b4d36274df1a3ce407a2629.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_513f2d503a5aec26ce8384b6.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_169d8d6c9b365ae615f5d660.woff')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;}
.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);}
.v3{vertical-align:-27.000000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:24.120000px;}
.ls8{letter-spacing:-0.513600px;}
.ls6{letter-spacing:-0.270000px;}
.ls1b{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.184200px;}
.ls1c{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.155400px;}
.lse{letter-spacing:-0.153600px;}
.lsb{letter-spacing:-0.090000px;}
.ls7{letter-spacing:-0.053280px;}
.ls19{letter-spacing:-0.009360px;}
.lsa{letter-spacing:-0.004320px;}
.ls17{letter-spacing:-0.002520px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.009360px;}
.ls13{letter-spacing:0.018720px;}
.ls1{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.108720px;}
.ls14{letter-spacing:0.129960px;}
.ls18{letter-spacing:0.137400px;}
.ls5{letter-spacing:0.139800px;}
.ls12{letter-spacing:0.140040px;}
.ls15{letter-spacing:0.143640px;}
.ls1a{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.lsf{letter-spacing:21.446640px;}
.ls11{letter-spacing:27.729360px;}
.ls3{letter-spacing:36.926640px;}
.ls2{letter-spacing:41.148000px;}
.ls9{letter-spacing:46.286640px;}
.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;}
}
.ws3{word-spacing:-60.120000px;}
.ws6{word-spacing:-15.210000px;}
.ws12{word-spacing:-15.183600px;}
.ws7{word-spacing:-15.169800px;}
.ws0{word-spacing:-15.030000px;}
.wsd{word-spacing:-14.876400px;}
.ws15{word-spacing:-14.850000px;}
.ws13{word-spacing:-14.823600px;}
.ws5{word-spacing:-14.516400px;}
.ws2{word-spacing:-13.500000px;}
.wsa{word-spacing:-12.150000px;}
.ws1{word-spacing:-11.970000px;}
.wse{word-spacing:-10.820880px;}
.ws10{word-spacing:-10.818360px;}
.wsc{word-spacing:-10.665480px;}
.wsb{word-spacing:-10.636680px;}
.ws9{word-spacing:-9.720000px;}
.ws8{word-spacing:-9.715680px;}
.ws14{word-spacing:-7.470000px;}
.ws11{word-spacing:-6.890280px;}
.wsf{word-spacing:-6.752880px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.202400px;}
._3{width:1.037880px;}
._8{width:2.224440px;}
._7{width:3.366720px;}
._e{width:4.769040px;}
._f{width:6.252480px;}
._23{width:7.394760px;}
._14{width:8.424000px;}
._9{width:9.979920px;}
._a{width:11.001960px;}
._10{width:12.024000px;}
._d{width:13.286520px;}
._12{width:14.958000px;}
._1b{width:16.112160px;}
._1e{width:18.096120px;}
._18{width:19.338960px;}
._17{width:20.500920px;}
._1f{width:21.522960px;}
._22{width:23.086080px;}
._11{width:24.709320px;}
._c{width:26.512920px;}
._b{width:27.655200px;}
._16{width:29.639160px;}
._25{width:31.622760px;}
._13{width:32.886000px;}
._1d{width:34.087680px;}
._26{width:35.111880px;}
._24{width:37.154160px;}
._20{width:39.017880px;}
._19{width:42.865560px;}
._1a{width:43.947720px;}
._1c{width:45.931680px;}
._27{width:47.675160px;}
._28{width:49.298400px;}
._21{width:55.791360px;}
._29{width:57.174120px;}
._5{width:62.519160px;}
._4{width:64.352160px;}
._2{width:130.455480px;}
._15{width:133.488000px;}
._1{width:341.548680px;}
._6{width:870.330000px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:29.880000px;}
.fsa{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yde{bottom:2.610000px;}
.y6{bottom:2.700000px;}
.y3b{bottom:2.970000px;}
.y16{bottom:3.240000px;}
.y9b{bottom:4.230000px;}
.y92{bottom:5.040000px;}
.y8b{bottom:5.490000px;}
.y34{bottom:6.030000px;}
.y86{bottom:6.120000px;}
.y8d{bottom:6.300000px;}
.y97{bottom:6.660000px;}
.y9d{bottom:6.750000px;}
.y87{bottom:7.290000px;}
.y4{bottom:8.460000px;}
.ydd{bottom:9.540000px;}
.y9{bottom:14.040000px;}
.y5{bottom:16.470000px;}
.ye0{bottom:16.500000px;}
.y83{bottom:17.910000px;}
.y3a{bottom:18.450000px;}
.y32{bottom:19.350000px;}
.y94{bottom:22.050000px;}
.y99{bottom:23.130000px;}
.y8f{bottom:23.490000px;}
.y89{bottom:23.940000px;}
.yef{bottom:30.240000px;}
.y84{bottom:32.520000px;}
.y39{bottom:34.020000px;}
.y7{bottom:35.550000px;}
.y31{bottom:35.730000px;}
.yee{bottom:44.010000px;}
.y38{bottom:49.500000px;}
.y2a{bottom:51.300000px;}
.yed{bottom:57.870000px;}
.y3{bottom:58.140000px;}
.y37{bottom:65.070000px;}
.y30{bottom:66.810000px;}
.y29{bottom:68.490000px;}
.y36{bottom:80.550000px;}
.y2f{bottom:82.380000px;}
.y28{bottom:85.770000px;}
.y2e{bottom:97.860000px;}
.y27{bottom:103.050000px;}
.y3c{bottom:106.200000px;}
.yaa{bottom:112.860000px;}
.y2d{bottom:113.430000px;}
.y46{bottom:114.300000px;}
.y26{bottom:120.240000px;}
.ydb{bottom:121.050000px;}
.y7e{bottom:124.020000px;}
.y2c{bottom:128.910000px;}
.ya9{bottom:130.050000px;}
.y45{bottom:131.580000px;}
.y25{bottom:137.520000px;}
.yda{bottom:138.240000px;}
.y7d{bottom:141.210000px;}
.ya8{bottom:147.330000px;}
.y44{bottom:148.860000px;}
.y24{bottom:154.800000px;}
.yd9{bottom:155.520000px;}
.y7c{bottom:158.520000px;}
.ya7{bottom:164.640000px;}
.y43{bottom:166.080000px;}
.y23{bottom:171.990000px;}
.yd8{bottom:172.830000px;}
.y7b{bottom:175.800000px;}
.ya6{bottom:181.830000px;}
.y42{bottom:183.360000px;}
.y22{bottom:189.270000px;}
.yd7{bottom:190.020000px;}
.y7a{bottom:192.990000px;}
.ya5{bottom:199.110000px;}
.y41{bottom:200.640000px;}
.y21{bottom:206.550000px;}
.yd6{bottom:207.300000px;}
.y79{bottom:210.270000px;}
.ya4{bottom:216.300000px;}
.y40{bottom:217.830000px;}
.y20{bottom:223.740000px;}
.yd5{bottom:224.580000px;}
.y78{bottom:227.460000px;}
.ya3{bottom:233.580000px;}
.y3f{bottom:235.110000px;}
.yea{bottom:240.330000px;}
.y1f{bottom:241.020000px;}
.yd4{bottom:241.770000px;}
.y77{bottom:244.740000px;}
.ya2{bottom:250.860000px;}
.y3e{bottom:252.390000px;}
.ye9{bottom:257.610000px;}
.y1e{bottom:258.210000px;}
.yd3{bottom:259.050000px;}
.y76{bottom:262.020000px;}
.ya1{bottom:268.050000px;}
.y3d{bottom:269.310000px;}
.ye8{bottom:274.800000px;}
.y1d{bottom:275.490000px;}
.yd2{bottom:276.330000px;}
.y75{bottom:279.210000px;}
.y17{bottom:282.630000px;}
.ya0{bottom:285.330000px;}
.ye7{bottom:292.080000px;}
.y1c{bottom:292.800000px;}
.yd1{bottom:293.520000px;}
.y74{bottom:296.490000px;}
.y9f{bottom:302.610000px;}
.ye6{bottom:309.360000px;}
.y1b{bottom:309.990000px;}
.yd0{bottom:310.800000px;}
.y73{bottom:313.770000px;}
.y9e{bottom:319.800000px;}
.ye5{bottom:326.550000px;}
.y1a{bottom:327.270000px;}
.ycf{bottom:328.080000px;}
.y72{bottom:330.960000px;}
.y98{bottom:334.560000px;}
.yec{bottom:341.310000px;}
.y19{bottom:344.550000px;}
.yce{bottom:345.270000px;}
.y71{bottom:348.240000px;}
.y9c{bottom:349.950000px;}
.y18{bottom:361.740000px;}
.ycd{bottom:362.550000px;}
.y70{bottom:365.520000px;}
.y9a{bottom:372.360000px;}
.ycc{bottom:379.830000px;}
.y6f{bottom:382.710000px;}
.y93{bottom:389.730000px;}
.ycb{bottom:397.020000px;}
.y6e{bottom:399.990000px;}
.y35{bottom:402.150000px;}
.yeb{bottom:411.060000px;}
.y96{bottom:412.050000px;}
.yca{bottom:414.300000px;}
.y6d{bottom:417.270000px;}
.y95{bottom:427.440000px;}
.yc9{bottom:431.490000px;}
.y6c{bottom:434.460000px;}
.y8e{bottom:442.830000px;}
.yc8{bottom:448.770000px;}
.y6b{bottom:451.740000px;}
.y91{bottom:458.220000px;}
.yc7{bottom:466.050000px;}
.y6a{bottom:469.020000px;}
.y90{bottom:477.300000px;}
.yc6{bottom:483.240000px;}
.y69{bottom:486.210000px;}
.y33{bottom:496.110000px;}
.y88{bottom:498.810000px;}
.yc5{bottom:500.520000px;}
.y68{bottom:503.490000px;}
.y8c{bottom:514.200000px;}
.y2b{bottom:516.900000px;}
.yc4{bottom:517.800000px;}
.y67{bottom:520.770000px;}
.yc3{bottom:534.990000px;}
.y8a{bottom:535.710000px;}
.y66{bottom:537.960000px;}
.yc2{bottom:552.270000px;}
.y65{bottom:555.240000px;}
.y82{bottom:555.600000px;}
.yc1{bottom:569.550000px;}
.y64{bottom:572.430000px;}
.y85{bottom:579.120000px;}
.yc0{bottom:586.230000px;}
.y63{bottom:589.740000px;}
.ybf{bottom:598.110000px;}
.y81{bottom:602.250000px;}
.y62{bottom:607.020000px;}
.y80{bottom:613.320000px;}
.ybe{bottom:613.500000px;}
.y61{bottom:624.210000px;}
.y7f{bottom:627.090000px;}
.ybd{bottom:628.890000px;}
.y60{bottom:641.490000px;}
.ybc{bottom:644.280000px;}
.y5f{bottom:658.770000px;}
.y15{bottom:659.130000px;}
.ybb{bottom:661.650000px;}
.yba{bottom:672.720000px;}
.y5e{bottom:675.960000px;}
.yb9{bottom:686.490000px;}
.y5d{bottom:693.240000px;}
.y14{bottom:693.780000px;}
.yb8{bottom:700.260000px;}
.y5c{bottom:710.520000px;}
.yb7{bottom:714.660000px;}
.y13{bottom:714.930000px;}
.y5b{bottom:727.710000px;}
.yb6{bottom:731.940000px;}
.y12{bottom:732.210000px;}
.y5a{bottom:744.990000px;}
.yb5{bottom:749.220000px;}
.y11{bottom:756.510000px;}
.y59{bottom:762.270000px;}
.yb4{bottom:766.410000px;}
.y10{bottom:775.500000px;}
.y58{bottom:779.460000px;}
.yb3{bottom:783.690000px;}
.yf{bottom:787.650000px;}
.y57{bottom:796.740000px;}
.yb2{bottom:800.970000px;}
.ye{bottom:811.050000px;}
.y56{bottom:814.020000px;}
.yb1{bottom:818.160000px;}
.y55{bottom:831.210000px;}
.yb0{bottom:835.440000px;}
.yd{bottom:839.310000px;}
.y54{bottom:848.490000px;}
.yaf{bottom:852.720000px;}
.y53{bottom:865.770000px;}
.yae{bottom:869.910000px;}
.yc{bottom:870.360000px;}
.y52{bottom:882.960000px;}
.yad{bottom:887.190000px;}
.y51{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.yac{bottom:904.380000px;}
.y50{bottom:917.430000px;}
.ye4{bottom:919.140000px;}
.ya{bottom:930.210000px;}
.ye3{bottom:933.720000px;}
.y4f{bottom:934.710000px;}
.y8{bottom:945.600000px;}
.ye2{bottom:948.300000px;}
.y4e{bottom:951.990000px;}
.ye1{bottom:962.790000px;}
.y4d{bottom:969.180000px;}
.ydf{bottom:977.370000px;}
.y4c{bottom:986.460000px;}
.y4b{bottom:1003.770000px;}
.ydc{bottom:1005.750000px;}
.y4a{bottom:1020.960000px;}
.y49{bottom:1038.240000px;}
.yab{bottom:1042.470000px;}
.y48{bottom:1055.520000px;}
.y47{bottom:1072.710000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h34{height:13.770000px;}
.h32{height:13.860000px;}
.h2a{height:14.580000px;}
.h25{height:14.670000px;}
.h2d{height:16.650000px;}
.hf{height:17.280000px;}
.h28{height:18.270000px;}
.h22{height:19.170000px;}
.h14{height:19.980000px;}
.h1f{height:20.430000px;}
.h27{height:20.700000px;}
.h24{height:20.790000px;}
.h2b{height:21.510000px;}
.h2e{height:21.600000px;}
.h20{height:22.710000px;}
.h1c{height:25.136719px;}
.h3{height:27.630000px;}
.h31{height:27.660000px;}
.hd{height:29.409961px;}
.h2f{height:29.718457px;}
.h5{height:33.431836px;}
.h1b{height:33.782520px;}
.h16{height:37.705078px;}
.h17{height:38.100586px;}
.h33{height:38.863477px;}
.h6{height:39.082324px;}
.h12{height:39.999023px;}
.h4{height:41.978320px;}
.he{height:42.418652px;}
.h19{height:43.769004px;}
.h1d{height:43.950000px;}
.h13{height:44.532246px;}
.h2{height:45.295488px;}
.h8{height:46.000195px;}
.h23{height:47.622832px;}
.h30{height:47.719512px;}
.h1a{height:48.027656px;}
.h1e{height:49.025566px;}
.h9{height:49.635176px;}
.h1{height:50.800781px;}
.h29{height:52.290000px;}
.hc{height:53.838457px;}
.h2c{height:54.450000px;}
.h26{height:55.170000px;}
.h21{height:56.070000px;}
.hb{height:67.819043px;}
.h35{height:69.030000px;}
.ha{height:76.201172px;}
.h15{height:93.150000px;}
.h18{height:118.800000px;}
.h11{height:141.510000px;}
.h7{height:153.930000px;}
.h10{height:375.780000px;}
.h0{height:1188.000000px;}
.w18{width:38.250000px;}
.w2{width:39.060000px;}
.wf{width:47.880000px;}
.w15{width:58.350000px;}
.w7{width:63.300000px;}
.w1a{width:64.920000px;}
.wc{width:101.970000px;}
.w13{width:103.500000px;}
.we{width:106.830000px;}
.wa{width:107.130000px;}
.w17{width:109.470000px;}
.wb{width:112.410000px;}
.wd{width:114.390000px;}
.w12{width:115.410000px;}
.w10{width:128.910000px;}
.w14{width:137.730000px;}
.w19{width:161.730000px;}
.w11{width:180.360000px;}
.w6{width:220.350000px;}
.w8{width:221.940000px;}
.w16{width:281.250000px;}
.w1b{width:347.610000px;}
.w9{width:430.890000px;}
.w5{width:588.480000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:6.660000px;}
.x3{left:8.640000px;}
.x32{left:10.560000px;}
.x33{left:11.610000px;}
.x3f{left:12.780000px;}
.x1c{left:14.940000px;}
.x41{left:16.020000px;}
.x22{left:18.000000px;}
.x12{left:20.160000px;}
.x45{left:23.220000px;}
.x40{left:24.660000px;}
.x24{left:26.460000px;}
.x16{left:27.630000px;}
.x27{left:29.970000px;}
.x28{left:31.590000px;}
.x2e{left:32.670000px;}
.x14{left:34.110000px;}
.x15{left:36.090000px;}
.x38{left:37.980000px;}
.x2a{left:39.240000px;}
.x26{left:40.860000px;}
.x37{left:42.780000px;}
.x2b{left:43.920000px;}
.x6{left:45.540000px;}
.x2d{left:47.880000px;}
.x2c{left:49.410000px;}
.x39{left:52.650000px;}
.x2{left:53.999986px;}
.x9{left:57.149986px;}
.x42{left:58.320000px;}
.x18{left:59.669986px;}
.x1{left:60.749986px;}
.x17{left:65.429986px;}
.x36{left:73.440000px;}
.x1e{left:78.030000px;}
.x47{left:80.820000px;}
.x43{left:82.800000px;}
.xf{left:86.669986px;}
.x1a{left:88.199986px;}
.x4c{left:89.280000px;}
.x3a{left:99.539986px;}
.x4{left:100.890000px;}
.x44{left:104.760000px;}
.x5{left:107.999986px;}
.x46{left:127.980000px;}
.x30{left:130.589986px;}
.x31{left:148.860000px;}
.x20{left:158.520000px;}
.x1b{left:162.389986px;}
.x1d{left:164.280000px;}
.xe{left:167.609986px;}
.xa{left:173.189986px;}
.xd{left:232.049986px;}
.x29{left:279.390000px;}
.xc{left:317.729986px;}
.x1f{left:386.940000px;}
.x3b{left:441.300000px;}
.x8{left:459.029986px;}
.xb{left:464.159986px;}
.x10{left:465.239986px;}
.x19{left:478.229986px;}
.x48{left:479.759986px;}
.x2f{left:481.829986px;}
.x4b{left:491.730000px;}
.x21{left:494.880000px;}
.x49{left:506.759986px;}
.x4a{left:526.559986px;}
.x3c{left:551.490000px;}
.x34{left:575.880000px;}
.x3d{left:590.460000px;}
.x23{left:608.010000px;}
.x11{left:642.210000px;}
.x35{left:680.100000px;}
.x25{left:710.700000px;}
.x3e{left:752.910000px;}
.x7{left:812.430000px;}
@media print{
.v3{vertical-align:-24.000000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:21.440000pt;}
.ls8{letter-spacing:-0.456533pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls1b{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.163733pt;}
.ls1c{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.138133pt;}
.lse{letter-spacing:-0.136533pt;}
.lsb{letter-spacing:-0.080000pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls19{letter-spacing:-0.008320pt;}
.lsa{letter-spacing:-0.003840pt;}
.ls17{letter-spacing:-0.002240pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.008320pt;}
.ls13{letter-spacing:0.016640pt;}
.ls1{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.096640pt;}
.ls14{letter-spacing:0.115520pt;}
.ls18{letter-spacing:0.122133pt;}
.ls5{letter-spacing:0.124267pt;}
.ls12{letter-spacing:0.124480pt;}
.ls15{letter-spacing:0.127680pt;}
.ls1a{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.lsf{letter-spacing:19.063680pt;}
.ls11{letter-spacing:24.648320pt;}
.ls3{letter-spacing:32.823680pt;}
.ls2{letter-spacing:36.576000pt;}
.ls9{letter-spacing:41.143680pt;}
.ws3{word-spacing:-53.440000pt;}
.ws6{word-spacing:-13.520000pt;}
.ws12{word-spacing:-13.496533pt;}
.ws7{word-spacing:-13.484267pt;}
.ws0{word-spacing:-13.360000pt;}
.wsd{word-spacing:-13.223467pt;}
.ws15{word-spacing:-13.200000pt;}
.ws13{word-spacing:-13.176533pt;}
.ws5{word-spacing:-12.903467pt;}
.ws2{word-spacing:-12.000000pt;}
.wsa{word-spacing:-10.800000pt;}
.ws1{word-spacing:-10.640000pt;}
.wse{word-spacing:-9.618560pt;}
.ws10{word-spacing:-9.616320pt;}
.wsc{word-spacing:-9.480427pt;}
.wsb{word-spacing:-9.454827pt;}
.ws9{word-spacing:-8.640000pt;}
.ws8{word-spacing:-8.636160pt;}
.ws14{word-spacing:-6.640000pt;}
.ws11{word-spacing:-6.124693pt;}
.wsf{word-spacing:-6.002560pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.068800pt;}
._3{width:0.922560pt;}
._8{width:1.977280pt;}
._7{width:2.992640pt;}
._e{width:4.239147pt;}
._f{width:5.557760pt;}
._23{width:6.573120pt;}
._14{width:7.488000pt;}
._9{width:8.871040pt;}
._a{width:9.779520pt;}
._10{width:10.688000pt;}
._d{width:11.810240pt;}
._12{width:13.296000pt;}
._1b{width:14.321920pt;}
._1e{width:16.085440pt;}
._18{width:17.190187pt;}
._17{width:18.223040pt;}
._1f{width:19.131520pt;}
._22{width:20.520960pt;}
._11{width:21.963840pt;}
._c{width:23.567040pt;}
._b{width:24.582400pt;}
._16{width:26.345920pt;}
._25{width:28.109120pt;}
._13{width:29.232000pt;}
._1d{width:30.300160pt;}
._26{width:31.210560pt;}
._24{width:33.025920pt;}
._20{width:34.682560pt;}
._19{width:38.102720pt;}
._1a{width:39.064640pt;}
._1c{width:40.828160pt;}
._27{width:42.377920pt;}
._28{width:43.820800pt;}
._21{width:49.592320pt;}
._29{width:50.821440pt;}
._5{width:55.572587pt;}
._4{width:57.201920pt;}
._2{width:115.960427pt;}
._15{width:118.656000pt;}
._1{width:303.598827pt;}
._6{width:773.626667pt;}
.fs3{font-size:26.560000pt;}
.fsa{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:2.320000pt;}
.y6{bottom:2.400000pt;}
.y3b{bottom:2.640000pt;}
.y16{bottom:2.880000pt;}
.y9b{bottom:3.760000pt;}
.y92{bottom:4.480000pt;}
.y8b{bottom:4.880000pt;}
.y34{bottom:5.360000pt;}
.y86{bottom:5.440000pt;}
.y8d{bottom:5.600000pt;}
.y97{bottom:5.920000pt;}
.y9d{bottom:6.000000pt;}
.y87{bottom:6.480000pt;}
.y4{bottom:7.520000pt;}
.ydd{bottom:8.480000pt;}
.y9{bottom:12.480000pt;}
.y5{bottom:14.640000pt;}
.ye0{bottom:14.666667pt;}
.y83{bottom:15.920000pt;}
.y3a{bottom:16.400000pt;}
.y32{bottom:17.200000pt;}
.y94{bottom:19.600000pt;}
.y99{bottom:20.560000pt;}
.y8f{bottom:20.880000pt;}
.y89{bottom:21.280000pt;}
.yef{bottom:26.880000pt;}
.y84{bottom:28.906667pt;}
.y39{bottom:30.240000pt;}
.y7{bottom:31.600000pt;}
.y31{bottom:31.760000pt;}
.yee{bottom:39.120000pt;}
.y38{bottom:44.000000pt;}
.y2a{bottom:45.600000pt;}
.yed{bottom:51.440000pt;}
.y3{bottom:51.680000pt;}
.y37{bottom:57.840000pt;}
.y30{bottom:59.386667pt;}
.y29{bottom:60.880000pt;}
.y36{bottom:71.600000pt;}
.y2f{bottom:73.226667pt;}
.y28{bottom:76.240000pt;}
.y2e{bottom:86.986667pt;}
.y27{bottom:91.600000pt;}
.y3c{bottom:94.400000pt;}
.yaa{bottom:100.320000pt;}
.y2d{bottom:100.826667pt;}
.y46{bottom:101.600000pt;}
.y26{bottom:106.880000pt;}
.ydb{bottom:107.600000pt;}
.y7e{bottom:110.240000pt;}
.y2c{bottom:114.586667pt;}
.ya9{bottom:115.600000pt;}
.y45{bottom:116.960000pt;}
.y25{bottom:122.240000pt;}
.yda{bottom:122.880000pt;}
.y7d{bottom:125.520000pt;}
.ya8{bottom:130.960000pt;}
.y44{bottom:132.320000pt;}
.y24{bottom:137.600000pt;}
.yd9{bottom:138.240000pt;}
.y7c{bottom:140.906667pt;}
.ya7{bottom:146.346667pt;}
.y43{bottom:147.626667pt;}
.y23{bottom:152.880000pt;}
.yd8{bottom:153.626667pt;}
.y7b{bottom:156.266667pt;}
.ya6{bottom:161.626667pt;}
.y42{bottom:162.986667pt;}
.y22{bottom:168.240000pt;}
.yd7{bottom:168.906667pt;}
.y7a{bottom:171.546667pt;}
.ya5{bottom:176.986667pt;}
.y41{bottom:178.346667pt;}
.y21{bottom:183.600000pt;}
.yd6{bottom:184.266667pt;}
.y79{bottom:186.906667pt;}
.ya4{bottom:192.266667pt;}
.y40{bottom:193.626667pt;}
.y20{bottom:198.880000pt;}
.yd5{bottom:199.626667pt;}
.y78{bottom:202.186667pt;}
.ya3{bottom:207.626667pt;}
.y3f{bottom:208.986667pt;}
.yea{bottom:213.626667pt;}
.y1f{bottom:214.240000pt;}
.yd4{bottom:214.906667pt;}
.y77{bottom:217.546667pt;}
.ya2{bottom:222.986667pt;}
.y3e{bottom:224.346667pt;}
.ye9{bottom:228.986667pt;}
.y1e{bottom:229.520000pt;}
.yd3{bottom:230.266667pt;}
.y76{bottom:232.906667pt;}
.ya1{bottom:238.266667pt;}
.y3d{bottom:239.386667pt;}
.ye8{bottom:244.266667pt;}
.y1d{bottom:244.880000pt;}
.yd2{bottom:245.626667pt;}
.y75{bottom:248.186667pt;}
.y17{bottom:251.226667pt;}
.ya0{bottom:253.626667pt;}
.ye7{bottom:259.626667pt;}
.y1c{bottom:260.266667pt;}
.yd1{bottom:260.906667pt;}
.y74{bottom:263.546667pt;}
.y9f{bottom:268.986667pt;}
.ye6{bottom:274.986667pt;}
.y1b{bottom:275.546667pt;}
.yd0{bottom:276.266667pt;}
.y73{bottom:278.906667pt;}
.y9e{bottom:284.266667pt;}
.ye5{bottom:290.266667pt;}
.y1a{bottom:290.906667pt;}
.ycf{bottom:291.626667pt;}
.y72{bottom:294.186667pt;}
.y98{bottom:297.386667pt;}
.yec{bottom:303.386667pt;}
.y19{bottom:306.266667pt;}
.yce{bottom:306.906667pt;}
.y71{bottom:309.546667pt;}
.y9c{bottom:311.066667pt;}
.y18{bottom:321.546667pt;}
.ycd{bottom:322.266667pt;}
.y70{bottom:324.906667pt;}
.y9a{bottom:330.986667pt;}
.ycc{bottom:337.626667pt;}
.y6f{bottom:340.186667pt;}
.y93{bottom:346.426667pt;}
.ycb{bottom:352.906667pt;}
.y6e{bottom:355.546667pt;}
.y35{bottom:357.466667pt;}
.yeb{bottom:365.386667pt;}
.y96{bottom:366.266667pt;}
.yca{bottom:368.266667pt;}
.y6d{bottom:370.906667pt;}
.y95{bottom:379.946667pt;}
.yc9{bottom:383.546667pt;}
.y6c{bottom:386.186667pt;}
.y8e{bottom:393.626667pt;}
.yc8{bottom:398.906667pt;}
.y6b{bottom:401.546667pt;}
.y91{bottom:407.306667pt;}
.yc7{bottom:414.266667pt;}
.y6a{bottom:416.906667pt;}
.y90{bottom:424.266667pt;}
.yc6{bottom:429.546667pt;}
.y69{bottom:432.186667pt;}
.y33{bottom:440.986667pt;}
.y88{bottom:443.386667pt;}
.yc5{bottom:444.906667pt;}
.y68{bottom:447.546667pt;}
.y8c{bottom:457.066667pt;}
.y2b{bottom:459.466667pt;}
.yc4{bottom:460.266667pt;}
.y67{bottom:462.906667pt;}
.yc3{bottom:475.546667pt;}
.y8a{bottom:476.186667pt;}
.y66{bottom:478.186667pt;}
.yc2{bottom:490.906667pt;}
.y65{bottom:493.546667pt;}
.y82{bottom:493.866667pt;}
.yc1{bottom:506.266667pt;}
.y64{bottom:508.826667pt;}
.y85{bottom:514.773333pt;}
.yc0{bottom:521.093333pt;}
.y63{bottom:524.213333pt;}
.ybf{bottom:531.653333pt;}
.y81{bottom:535.333333pt;}
.y62{bottom:539.573333pt;}
.y80{bottom:545.173333pt;}
.ybe{bottom:545.333333pt;}
.y61{bottom:554.853333pt;}
.y7f{bottom:557.413333pt;}
.ybd{bottom:559.013333pt;}
.y60{bottom:570.213333pt;}
.ybc{bottom:572.693333pt;}
.y5f{bottom:585.573333pt;}
.y15{bottom:585.893333pt;}
.ybb{bottom:588.133333pt;}
.yba{bottom:597.973333pt;}
.y5e{bottom:600.853333pt;}
.yb9{bottom:610.213333pt;}
.y5d{bottom:616.213333pt;}
.y14{bottom:616.693333pt;}
.yb8{bottom:622.453333pt;}
.y5c{bottom:631.573333pt;}
.yb7{bottom:635.253333pt;}
.y13{bottom:635.493333pt;}
.y5b{bottom:646.853333pt;}
.yb6{bottom:650.613333pt;}
.y12{bottom:650.853333pt;}
.y5a{bottom:662.213333pt;}
.yb5{bottom:665.973333pt;}
.y11{bottom:672.453333pt;}
.y59{bottom:677.573333pt;}
.yb4{bottom:681.253333pt;}
.y10{bottom:689.333333pt;}
.y58{bottom:692.853333pt;}
.yb3{bottom:696.613333pt;}
.yf{bottom:700.133333pt;}
.y57{bottom:708.213333pt;}
.yb2{bottom:711.973333pt;}
.ye{bottom:720.933333pt;}
.y56{bottom:723.573333pt;}
.yb1{bottom:727.253333pt;}
.y55{bottom:738.853333pt;}
.yb0{bottom:742.613333pt;}
.yd{bottom:746.053333pt;}
.y54{bottom:754.213333pt;}
.yaf{bottom:757.973333pt;}
.y53{bottom:769.573333pt;}
.yae{bottom:773.253333pt;}
.yc{bottom:773.653333pt;}
.y52{bottom:784.853333pt;}
.yad{bottom:788.613333pt;}
.y51{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.yac{bottom:803.893333pt;}
.y50{bottom:815.493333pt;}
.ye4{bottom:817.013333pt;}
.ya{bottom:826.853333pt;}
.ye3{bottom:829.973333pt;}
.y4f{bottom:830.853333pt;}
.y8{bottom:840.533333pt;}
.ye2{bottom:842.933333pt;}
.y4e{bottom:846.213333pt;}
.ye1{bottom:855.813333pt;}
.y4d{bottom:861.493333pt;}
.ydf{bottom:868.773333pt;}
.y4c{bottom:876.853333pt;}
.y4b{bottom:892.240000pt;}
.ydc{bottom:894.000000pt;}
.y4a{bottom:907.520000pt;}
.y49{bottom:922.880000pt;}
.yab{bottom:926.640000pt;}
.y48{bottom:938.240000pt;}
.y47{bottom:953.520000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h34{height:12.240000pt;}
.h32{height:12.320000pt;}
.h2a{height:12.960000pt;}
.h25{height:13.040000pt;}
.h2d{height:14.800000pt;}
.hf{height:15.360000pt;}
.h28{height:16.240000pt;}
.h22{height:17.040000pt;}
.h14{height:17.760000pt;}
.h1f{height:18.160000pt;}
.h27{height:18.400000pt;}
.h24{height:18.480000pt;}
.h2b{height:19.120000pt;}
.h2e{height:19.200000pt;}
.h20{height:20.186667pt;}
.h1c{height:22.343750pt;}
.h3{height:24.560000pt;}
.h31{height:24.586667pt;}
.hd{height:26.142187pt;}
.h2f{height:26.416406pt;}
.h5{height:29.717188pt;}
.h1b{height:30.028906pt;}
.h16{height:33.515625pt;}
.h17{height:33.867188pt;}
.h33{height:34.545312pt;}
.h6{height:34.739844pt;}
.h12{height:35.554688pt;}
.h4{height:37.314062pt;}
.he{height:37.705469pt;}
.h19{height:38.905781pt;}
.h1d{height:39.066667pt;}
.h13{height:39.584219pt;}
.h2{height:40.262656pt;}
.h8{height:40.889062pt;}
.h23{height:42.331406pt;}
.h30{height:42.417344pt;}
.h1a{height:42.691250pt;}
.h1e{height:43.578281pt;}
.h9{height:44.120156pt;}
.h1{height:45.156250pt;}
.h29{height:46.480000pt;}
.hc{height:47.856406pt;}
.h2c{height:48.400000pt;}
.h26{height:49.040000pt;}
.h21{height:49.840000pt;}
.hb{height:60.283594pt;}
.h35{height:61.360000pt;}
.ha{height:67.734375pt;}
.h15{height:82.800000pt;}
.h18{height:105.600000pt;}
.h11{height:125.786667pt;}
.h7{height:136.826667pt;}
.h10{height:334.026667pt;}
.h0{height:1056.000000pt;}
.w18{width:34.000000pt;}
.w2{width:34.720000pt;}
.wf{width:42.560000pt;}
.w15{width:51.866667pt;}
.w7{width:56.266667pt;}
.w1a{width:57.706667pt;}
.wc{width:90.640000pt;}
.w13{width:92.000000pt;}
.we{width:94.960000pt;}
.wa{width:95.226667pt;}
.w17{width:97.306667pt;}
.wb{width:99.920000pt;}
.wd{width:101.680000pt;}
.w12{width:102.586667pt;}
.w10{width:114.586667pt;}
.w14{width:122.426667pt;}
.w19{width:143.760000pt;}
.w11{width:160.320000pt;}
.w6{width:195.866667pt;}
.w8{width:197.280000pt;}
.w16{width:250.000000pt;}
.w1b{width:308.986667pt;}
.w9{width:383.013333pt;}
.w5{width:523.093333pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:5.920000pt;}
.x3{left:7.680000pt;}
.x32{left:9.386667pt;}
.x33{left:10.320000pt;}
.x3f{left:11.360000pt;}
.x1c{left:13.280000pt;}
.x41{left:14.240000pt;}
.x22{left:16.000000pt;}
.x12{left:17.920000pt;}
.x45{left:20.640000pt;}
.x40{left:21.920000pt;}
.x24{left:23.520000pt;}
.x16{left:24.560000pt;}
.x27{left:26.640000pt;}
.x28{left:28.080000pt;}
.x2e{left:29.040000pt;}
.x14{left:30.320000pt;}
.x15{left:32.080000pt;}
.x38{left:33.760000pt;}
.x2a{left:34.880000pt;}
.x26{left:36.320000pt;}
.x37{left:38.026667pt;}
.x2b{left:39.040000pt;}
.x6{left:40.480000pt;}
.x2d{left:42.560000pt;}
.x2c{left:43.920000pt;}
.x39{left:46.800000pt;}
.x2{left:47.999988pt;}
.x9{left:50.799988pt;}
.x42{left:51.840000pt;}
.x18{left:53.039988pt;}
.x1{left:53.999988pt;}
.x17{left:58.159988pt;}
.x36{left:65.280000pt;}
.x1e{left:69.360000pt;}
.x47{left:71.840000pt;}
.x43{left:73.600000pt;}
.xf{left:77.039988pt;}
.x1a{left:78.399988pt;}
.x4c{left:79.360000pt;}
.x3a{left:88.479988pt;}
.x4{left:89.680000pt;}
.x44{left:93.120000pt;}
.x5{left:95.999988pt;}
.x46{left:113.760000pt;}
.x30{left:116.079988pt;}
.x31{left:132.320000pt;}
.x20{left:140.906667pt;}
.x1b{left:144.346655pt;}
.x1d{left:146.026667pt;}
.xe{left:148.986655pt;}
.xa{left:153.946655pt;}
.xd{left:206.266655pt;}
.x29{left:248.346667pt;}
.xc{left:282.426655pt;}
.x1f{left:343.946667pt;}
.x3b{left:392.266667pt;}
.x8{left:408.026655pt;}
.xb{left:412.586655pt;}
.x10{left:413.546655pt;}
.x19{left:425.093321pt;}
.x48{left:426.453321pt;}
.x2f{left:428.293321pt;}
.x4b{left:437.093333pt;}
.x21{left:439.893333pt;}
.x49{left:450.453321pt;}
.x4a{left:468.053321pt;}
.x3c{left:490.213333pt;}
.x34{left:511.893333pt;}
.x3d{left:524.853333pt;}
.x23{left:540.453333pt;}
.x11{left:570.853333pt;}
.x35{left:604.533333pt;}
.x25{left:631.733333pt;}
.x3e{left:669.253333pt;}
.x7{left:722.160000pt;}
}




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