
    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_e505108292ca49201b910954.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_423bfc8cda12e3163ba2f9e2.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_359c2e8e5b181c14d4459890.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_92199d601237efb8e099941f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_e5670df171fb3b1a5bda01cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_e4184216c184ec8b456510b7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c48f4e70aef0990b7e0f737c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c2b3195af63fbf4ac52e0cb9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_18cc7dc84d0b61398f7a9608.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.862793;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_ed28415a29cf8f052e7dc32f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.861328;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_1430ffb603a3e977670e7247.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_92d26074585e1f41e45b2de0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.908203;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:-75.600000px;}
.v5{vertical-align:-33.120000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:30.240000px;}
.v2{vertical-align:33.120000px;}
.ls35{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.008000px;}
.ls28{letter-spacing:-0.936000px;}
.ls26{letter-spacing:-0.792000px;}
.ls17{letter-spacing:-0.720000px;}
.ls36{letter-spacing:-0.648000px;}
.ls25{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.504000px;}
.ls2a{letter-spacing:-0.432000px;}
.ls2{letter-spacing:-0.288000px;}
.ls21{letter-spacing:-0.272400px;}
.ls30{letter-spacing:-0.268800px;}
.lsf{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.175800px;}
.lsb{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.115200px;}
.ls22{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.048000px;}
.ls2b{letter-spacing:0.060600px;}
.ls6{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.150000px;}
.ls13{letter-spacing:0.174240px;}
.ls15{letter-spacing:0.179280px;}
.ls34{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.192000px;}
.ls11{letter-spacing:0.252000px;}
.ls16{letter-spacing:0.256200px;}
.lsd{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.504000px;}
.ls23{letter-spacing:0.540000px;}
.lse{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.792000px;}
.ls2c{letter-spacing:0.840000px;}
.ls1c{letter-spacing:0.864000px;}
.ls37{letter-spacing:0.900000px;}
.ls1a{letter-spacing:0.972000px;}
.ls33{letter-spacing:1.080000px;}
.ls20{letter-spacing:1.152000px;}
.ls2f{letter-spacing:2.880000px;}
.ls27{letter-spacing:4.320000px;}
.ls1b{letter-spacing:5.160000px;}
.ls2e{letter-spacing:5.760000px;}
.ls1d{letter-spacing:6.480000px;}
.ls29{letter-spacing:9.360000px;}
.ls31{letter-spacing:16.560000px;}
.ls14{letter-spacing:23.040000px;}
.ls24{letter-spacing:24.480000px;}
.ls2d{letter-spacing:25.920000px;}
.ls32{letter-spacing:30.960000px;}
.ls19{letter-spacing:64.224000px;}
.ls3{letter-spacing:192.960000px;}
.ls0{letter-spacing:1258.716000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-21.060000px;}
.ws13{word-spacing:-19.152000px;}
.ws10{word-spacing:-18.864000px;}
.ws19{word-spacing:-18.720000px;}
.ws1c{word-spacing:-18.504000px;}
.ws8{word-spacing:-18.432000px;}
.ws7{word-spacing:-18.288000px;}
.wsf{word-spacing:-18.144000px;}
.ws11{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws1b{word-spacing:-17.568000px;}
.ws4{word-spacing:-17.496000px;}
.wsd{word-spacing:-17.280000px;}
.ws1a{word-spacing:-17.208000px;}
.ws17{word-spacing:-16.560000px;}
.ws18{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.855040px;}
.wse{word-spacing:-13.685040px;}
.wsb{word-spacing:-13.505760px;}
.ws1d{word-spacing:-13.236960px;}
.ws12{word-spacing:-12.420000px;}
.ws16{word-spacing:-10.440000px;}
.wsa{word-spacing:-8.786880px;}
.ws14{word-spacing:-8.514480px;}
.ws1{word-spacing:0.000000px;}
._c{margin-left:-17.532720px;}
._8{margin-left:-16.212000px;}
._9{margin-left:-13.832640px;}
._b{margin-left:-12.352320px;}
._7{margin-left:-10.164000px;}
._d{margin-left:-8.488320px;}
._e{margin-left:-6.432000px;}
._a{margin-left:-4.092000px;}
._6{margin-left:-2.616000px;}
._0{margin-left:-1.432080px;}
._1{width:1.268400px;}
._2{width:2.326800px;}
._16{width:3.800160px;}
._f{width:4.896000px;}
._11{width:6.312000px;}
._1a{width:7.312080px;}
._10{width:8.424000px;}
._31{width:9.432000px;}
._15{width:10.512000px;}
._24{width:12.096000px;}
._25{width:13.119600px;}
._2c{width:14.155680px;}
._2b{width:15.472080px;}
._1c{width:16.488000px;}
._1b{width:19.224000px;}
._18{width:20.520000px;}
._19{width:21.600000px;}
._2e{width:22.680000px;}
._13{width:23.760000px;}
._14{width:25.272000px;}
._1e{width:26.403360px;}
._1d{width:27.640080px;}
._1f{width:29.621280px;}
._38{width:30.666240px;}
._2d{width:31.680000px;}
._26{width:33.120000px;}
._17{width:34.128000px;}
._23{width:35.784000px;}
._29{width:37.552080px;}
._3b{width:38.664000px;}
._2a{width:39.667680px;}
._2f{width:40.916640px;}
._3a{width:41.976000px;}
._36{width:43.003680px;}
._37{width:44.476320px;}
._3c{width:45.779040px;}
._34{width:47.424000px;}
._35{width:49.128000px;}
._32{width:50.400000px;}
._33{width:51.696000px;}
._47{width:52.704000px;}
._30{width:53.856000px;}
._39{width:55.761600px;}
._22{width:56.839680px;}
._4d{width:57.961920px;}
._4b{width:59.328000px;}
._49{width:60.392160px;}
._3d{width:61.488000px;}
._3e{width:62.508000px;}
._43{width:64.872000px;}
._44{width:65.979600px;}
._45{width:67.200480px;}
._48{width:68.257440px;}
._28{width:69.564000px;}
._27{width:70.632000px;}
._12{width:73.728000px;}
._42{width:77.863920px;}
._41{width:79.024080px;}
._4c{width:81.264000px;}
._3f{width:82.728000px;}
._40{width:83.731200px;}
._46{width:116.352000px;}
._3{width:137.623680px;}
._5{width:154.920000px;}
._20{width:162.000000px;}
._21{width:163.584000px;}
._4{width:194.400000px;}
._4a{width:260.640000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(128,100,162);}
.fc4{color:rgb(112,48,160);}
.fc1{color:rgb(54,95,145);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.fs5{font-size:131.760000px;}
.fs4{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.y47{bottom:3.960000px;}
.y14{bottom:4.500000px;}
.y1e{bottom:6.120000px;}
.y1c{bottom:16.740000px;}
.y19{bottom:23.040000px;}
.y13{bottom:28.620000px;}
.y9{bottom:29.385000px;}
.yf{bottom:42.120000px;}
.y12{bottom:52.740000px;}
.y1b{bottom:52.920000px;}
.y2{bottom:57.600000px;}
.y18{bottom:61.020000px;}
.ye{bottom:73.080000px;}
.y23{bottom:75.456000px;}
.y11{bottom:76.890000px;}
.y1{bottom:77.796000px;}
.y8{bottom:78.345000px;}
.y17{bottom:79.920000px;}
.y22{bottom:95.796000px;}
.y16{bottom:99.000000px;}
.yd{bottom:104.220000px;}
.y46{bottom:106.236000px;}
.y99{bottom:115.416000px;}
.ya2{bottom:122.976000px;}
.yaf{bottom:128.376000px;}
.y7{bottom:129.465000px;}
.y9e{bottom:133.776000px;}
.ya1{bottom:134.316000px;}
.yc{bottom:135.180000px;}
.y98{bottom:141.336000px;}
.y7a{bottom:141.696000px;}
.y45{bottom:144.216000px;}
.yb4{bottom:146.196000px;}
.y70{bottom:146.556000px;}
.ydf{bottom:147.456000px;}
.y9d{bottom:151.950000px;}
.y97{bottom:152.490000px;}
.ya0{bottom:159.510000px;}
.yb{bottom:166.320000px;}
.y9f{bottom:170.850000px;}
.y79{bottom:172.650000px;}
.y44{bottom:175.530000px;}
.yb3{bottom:177.330000px;}
.y6f{bottom:177.690000px;}
.y9c{bottom:177.870000px;}
.yde{bottom:178.410000px;}
.y6{bottom:180.405000px;}
.yae{bottom:190.470000px;}
.y9b{bottom:196.230000px;}
.y43{bottom:198.750000px;}
.y78{bottom:203.790000px;}
.y5{bottom:203.805000px;}
.y9a{bottom:207.570000px;}
.yc4{bottom:208.290000px;}
.y6e{bottom:208.650000px;}
.ydd{bottom:209.550000px;}
.y4{bottom:218.925000px;}
.yad{bottom:221.610000px;}
.y96{bottom:223.230000px;}
.y21{bottom:226.290000px;}
.y42{bottom:230.610000px;}
.y77{bottom:234.750000px;}
.yc3{bottom:239.430000px;}
.y6d{bottom:239.790000px;}
.ydc{bottom:240.510000px;}
.yac{bottom:252.570000px;}
.y41{bottom:254.010000px;}
.y95{bottom:254.190000px;}
.y20{bottom:264.450000px;}
.y76{bottom:265.710000px;}
.y6c{bottom:270.750000px;}
.ydb{bottom:271.650000px;}
.yab{bottom:283.710000px;}
.y94{bottom:285.150000px;}
.y40{bottom:285.870000px;}
.y75{bottom:296.850000px;}
.y1f{bottom:301.350000px;}
.y6b{bottom:301.710000px;}
.yda{bottom:302.610000px;}
.yaa{bottom:314.670000px;}
.y1d{bottom:316.290000px;}
.y3f{bottom:317.010000px;}
.y74{bottom:327.855000px;}
.yc2{bottom:332.535000px;}
.y6a{bottom:332.895000px;}
.yd9{bottom:333.795000px;}
.y1a{bottom:343.335000px;}
.ya9{bottom:345.855000px;}
.y93{bottom:347.295000px;}
.y3e{bottom:348.375000px;}
.y73{bottom:358.635000px;}
.yec{bottom:358.995000px;}
.yb8{bottom:363.495000px;}
.y69{bottom:363.855000px;}
.yd8{bottom:364.755000px;}
.ya8{bottom:374.655000px;}
.y92{bottom:378.435000px;}
.y3d{bottom:379.695000px;}
.yeb{bottom:389.955000px;}
.yb7{bottom:394.635000px;}
.y68{bottom:394.995000px;}
.yd7{bottom:395.895000px;}
.ya7{bottom:401.655000px;}
.y3c{bottom:402.915000px;}
.y91{bottom:409.395000px;}
.y15{bottom:415.695000px;}
.yea{bottom:421.095000px;}
.yc1{bottom:425.595000px;}
.y67{bottom:425.955000px;}
.yd6{bottom:426.855000px;}
.ya6{bottom:430.095000px;}
.y3b{bottom:434.775000px;}
.y90{bottom:440.535000px;}
.ye9{bottom:452.055000px;}
.yba{bottom:456.735000px;}
.y66{bottom:457.095000px;}
.yd5{bottom:457.995000px;}
.y3a{bottom:458.175000px;}
.ya5{bottom:458.535000px;}
.y8f{bottom:471.495000px;}
.ye8{bottom:483.195000px;}
.ya4{bottom:487.695000px;}
.y65{bottom:488.055000px;}
.yd4{bottom:488.955000px;}
.y39{bottom:490.035000px;}
.y8e{bottom:502.635000px;}
.y38{bottom:513.255000px;}
.ye7{bottom:514.155000px;}
.yb9{bottom:518.835000px;}
.y64{bottom:519.195000px;}
.yd3{bottom:520.095000px;}
.y10{bottom:529.635000px;}
.y8d{bottom:533.595000px;}
.y37{bottom:545.115000px;}
.ye6{bottom:545.295000px;}
.yc5{bottom:549.795000px;}
.y63{bottom:550.155000px;}
.yd2{bottom:551.055000px;}
.y8c{bottom:564.735000px;}
.y36{bottom:568.335000px;}
.ye5{bottom:576.255000px;}
.ybb{bottom:580.935000px;}
.y62{bottom:581.295000px;}
.yd1{bottom:582.015000px;}
.y35{bottom:592.095000px;}
.y8b{bottom:595.725000px;}
.ye4{bottom:607.425000px;}
.yb6{bottom:611.925000px;}
.y61{bottom:612.285000px;}
.yd0{bottom:613.185000px;}
.y34{bottom:623.985000px;}
.y8a{bottom:626.865000px;}
.ya{bottom:627.045000px;}
.ye3{bottom:638.385000px;}
.yb5{bottom:643.065000px;}
.y60{bottom:643.425000px;}
.ycf{bottom:644.145000px;}
.y33{bottom:647.205000px;}
.y89{bottom:657.825000px;}
.ye2{bottom:669.525000px;}
.yc0{bottom:674.025000px;}
.y5f{bottom:674.385000px;}
.yce{bottom:675.285000px;}
.y32{bottom:679.065000px;}
.y88{bottom:688.965000px;}
.ye1{bottom:700.125000px;}
.ya3{bottom:705.165000px;}
.y5e{bottom:705.525000px;}
.ycd{bottom:706.245000px;}
.y31{bottom:710.385000px;}
.y87{bottom:719.925000px;}
.y30{bottom:733.605000px;}
.yc7{bottom:736.125000px;}
.y5d{bottom:736.485000px;}
.ycc{bottom:737.385000px;}
.y86{bottom:751.065000px;}
.y2f{bottom:765.465000px;}
.ybe{bottom:767.265000px;}
.y5c{bottom:767.625000px;}
.ycb{bottom:768.345000px;}
.y85{bottom:782.025000px;}
.y2e{bottom:796.785000px;}
.ybd{bottom:798.225000px;}
.y5b{bottom:798.585000px;}
.yca{bottom:799.485000px;}
.y84{bottom:813.165000px;}
.y2d{bottom:828.105000px;}
.ybc{bottom:829.365000px;}
.y5a{bottom:829.725000px;}
.yc9{bottom:830.085000px;}
.y83{bottom:844.125000px;}
.y3{bottom:854.385000px;}
.y2c{bottom:859.425000px;}
.ye0{bottom:860.325000px;}
.y59{bottom:860.685000px;}
.yc8{bottom:861.585000px;}
.y82{bottom:875.310000px;}
.y2b{bottom:882.690000px;}
.y50{bottom:891.150000px;}
.y72{bottom:891.510000px;}
.y58{bottom:891.870000px;}
.y81{bottom:906.270000px;}
.y2a{bottom:914.550000px;}
.y4f{bottom:921.210000px;}
.ybf{bottom:922.470000px;}
.y57{bottom:922.830000px;}
.y80{bottom:937.410000px;}
.y29{bottom:945.870000px;}
.y4e{bottom:952.530000px;}
.yb2{bottom:953.610000px;}
.y56{bottom:953.970000px;}
.y7f{bottom:968.370000px;}
.y28{bottom:977.190000px;}
.y4d{bottom:983.850000px;}
.yb1{bottom:984.570000px;}
.y55{bottom:984.930000px;}
.y7e{bottom:999.510000px;}
.y27{bottom:1008.510000px;}
.y4c{bottom:1015.170000px;}
.yb0{bottom:1015.710000px;}
.y54{bottom:1016.070000px;}
.y7d{bottom:1030.470000px;}
.y26{bottom:1039.830000px;}
.y4b{bottom:1046.490000px;}
.yc6{bottom:1046.670000px;}
.y53{bottom:1047.030000px;}
.y7c{bottom:1061.610000px;}
.y25{bottom:1064.310000px;}
.y4a{bottom:1077.810000px;}
.y52{bottom:1078.170000px;}
.y7b{bottom:1085.370000px;}
.y49{bottom:1109.130000px;}
.y51{bottom:1139.940000px;}
.y71{bottom:1140.300000px;}
.y48{bottom:1140.480000px;}
.y24{bottom:1141.740000px;}
.h13{height:18.900000px;}
.h11{height:27.036000px;}
.h18{height:27.907031px;}
.h19{height:42.894141px;}
.h2{height:47.545312px;}
.hc{height:57.051211px;}
.h1e{height:58.651172px;}
.h1c{height:59.383125px;}
.h14{height:64.546875px;}
.h4{height:65.010937px;}
.h15{height:70.628906px;}
.h12{height:70.664062px;}
.h1d{height:71.225156px;}
.h10{height:72.360000px;}
.h7{height:72.562500px;}
.h1b{height:74.004654px;}
.h17{height:80.440922px;}
.h1a{height:80.441367px;}
.h16{height:80.464922px;}
.hd{height:82.635820px;}
.h6{height:82.676953px;}
.h5{height:84.898125px;}
.hb{height:96.516000px;}
.h9{height:108.843750px;}
.hf{height:113.940000px;}
.he{height:129.315234px;}
.h8{height:227.340000px;}
.ha{height:235.311328px;}
.h3{height:302.295000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:654.045000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:8.100000px;}
.x8{left:11.160000px;}
.x9{left:18.540000px;}
.xd{left:19.980000px;}
.xc{left:23.580000px;}
.x7{left:30.420000px;}
.xe{left:33.834000px;}
.xb{left:72.354000px;}
.x6{left:74.514000px;}
.xa{left:110.874000px;}
.x2{left:119.556000px;}
.x14{left:127.656000px;}
.x5{left:144.354000px;}
.x13{left:151.014000px;}
.xf{left:167.979000px;}
.x17{left:180.750000px;}
.x19{left:207.750000px;}
.x1a{left:233.850000px;}
.x11{left:252.579000px;}
.x12{left:282.099000px;}
.x4{left:326.919000px;}
.x18{left:438.195000px;}
.x16{left:442.695000px;}
.x15{left:444.675000px;}
.x1{left:446.475000px;}
.x3{left:512.529000px;}
@media print{
.v1{vertical-align:-67.200000pt;}
.v5{vertical-align:-29.440000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:26.880000pt;}
.v2{vertical-align:29.440000pt;}
.ls35{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-0.896000pt;}
.ls28{letter-spacing:-0.832000pt;}
.ls26{letter-spacing:-0.704000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls36{letter-spacing:-0.576000pt;}
.ls25{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.448000pt;}
.ls2a{letter-spacing:-0.384000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls21{letter-spacing:-0.242133pt;}
.ls30{letter-spacing:-0.238933pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.156267pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.102400pt;}
.ls22{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.042667pt;}
.ls2b{letter-spacing:0.053867pt;}
.ls6{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.133333pt;}
.ls13{letter-spacing:0.154880pt;}
.ls15{letter-spacing:0.159360pt;}
.ls34{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.170667pt;}
.ls11{letter-spacing:0.224000pt;}
.ls16{letter-spacing:0.227733pt;}
.lsd{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.448000pt;}
.ls23{letter-spacing:0.480000pt;}
.lse{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.704000pt;}
.ls2c{letter-spacing:0.746667pt;}
.ls1c{letter-spacing:0.768000pt;}
.ls37{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:0.864000pt;}
.ls33{letter-spacing:0.960000pt;}
.ls20{letter-spacing:1.024000pt;}
.ls2f{letter-spacing:2.560000pt;}
.ls27{letter-spacing:3.840000pt;}
.ls1b{letter-spacing:4.586667pt;}
.ls2e{letter-spacing:5.120000pt;}
.ls1d{letter-spacing:5.760000pt;}
.ls29{letter-spacing:8.320000pt;}
.ls31{letter-spacing:14.720000pt;}
.ls14{letter-spacing:20.480000pt;}
.ls24{letter-spacing:21.760000pt;}
.ls2d{letter-spacing:23.040000pt;}
.ls32{letter-spacing:27.520000pt;}
.ls19{letter-spacing:57.088000pt;}
.ls3{letter-spacing:171.520000pt;}
.ls0{letter-spacing:1118.858667pt;}
.ws0{word-spacing:-18.720000pt;}
.ws13{word-spacing:-17.024000pt;}
.ws10{word-spacing:-16.768000pt;}
.ws19{word-spacing:-16.640000pt;}
.ws1c{word-spacing:-16.448000pt;}
.ws8{word-spacing:-16.384000pt;}
.ws7{word-spacing:-16.256000pt;}
.wsf{word-spacing:-16.128000pt;}
.ws11{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws1b{word-spacing:-15.616000pt;}
.ws4{word-spacing:-15.552000pt;}
.wsd{word-spacing:-15.360000pt;}
.ws1a{word-spacing:-15.296000pt;}
.ws17{word-spacing:-14.720000pt;}
.ws18{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.204480pt;}
.wse{word-spacing:-12.164480pt;}
.wsb{word-spacing:-12.005120pt;}
.ws1d{word-spacing:-11.766187pt;}
.ws12{word-spacing:-11.040000pt;}
.ws16{word-spacing:-9.280000pt;}
.wsa{word-spacing:-7.810560pt;}
.ws14{word-spacing:-7.568427pt;}
.ws1{word-spacing:0.000000pt;}
._c{margin-left:-15.584640pt;}
._8{margin-left:-14.410667pt;}
._9{margin-left:-12.295680pt;}
._b{margin-left:-10.979840pt;}
._7{margin-left:-9.034667pt;}
._d{margin-left:-7.545173pt;}
._e{margin-left:-5.717333pt;}
._a{margin-left:-3.637333pt;}
._6{margin-left:-2.325333pt;}
._0{margin-left:-1.272960pt;}
._1{width:1.127467pt;}
._2{width:2.068267pt;}
._16{width:3.377920pt;}
._f{width:4.352000pt;}
._11{width:5.610667pt;}
._1a{width:6.499627pt;}
._10{width:7.488000pt;}
._31{width:8.384000pt;}
._15{width:9.344000pt;}
._24{width:10.752000pt;}
._25{width:11.661867pt;}
._2c{width:12.582827pt;}
._2b{width:13.752960pt;}
._1c{width:14.656000pt;}
._1b{width:17.088000pt;}
._18{width:18.240000pt;}
._19{width:19.200000pt;}
._2e{width:20.160000pt;}
._13{width:21.120000pt;}
._14{width:22.464000pt;}
._1e{width:23.469653pt;}
._1d{width:24.568960pt;}
._1f{width:26.330027pt;}
._38{width:27.258880pt;}
._2d{width:28.160000pt;}
._26{width:29.440000pt;}
._17{width:30.336000pt;}
._23{width:31.808000pt;}
._29{width:33.379627pt;}
._3b{width:34.368000pt;}
._2a{width:35.260160pt;}
._2f{width:36.370347pt;}
._3a{width:37.312000pt;}
._36{width:38.225493pt;}
._37{width:39.534507pt;}
._3c{width:40.692480pt;}
._34{width:42.154667pt;}
._35{width:43.669333pt;}
._32{width:44.800000pt;}
._33{width:45.952000pt;}
._47{width:46.848000pt;}
._30{width:47.872000pt;}
._39{width:49.565867pt;}
._22{width:50.524160pt;}
._4d{width:51.521707pt;}
._4b{width:52.736000pt;}
._49{width:53.681920pt;}
._3d{width:54.656000pt;}
._3e{width:55.562667pt;}
._43{width:57.664000pt;}
._44{width:58.648533pt;}
._45{width:59.733760pt;}
._48{width:60.673280pt;}
._28{width:61.834667pt;}
._27{width:62.784000pt;}
._12{width:65.536000pt;}
._42{width:69.212373pt;}
._41{width:70.243627pt;}
._4c{width:72.234667pt;}
._3f{width:73.536000pt;}
._40{width:74.427733pt;}
._46{width:103.424000pt;}
._3{width:122.332160pt;}
._5{width:137.706667pt;}
._20{width:144.000000pt;}
._21{width:145.408000pt;}
._4{width:172.800000pt;}
._4a{width:231.680000pt;}
.fs7{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.fs5{font-size:117.120000pt;}
.fs4{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:3.520000pt;}
.y14{bottom:4.000000pt;}
.y1e{bottom:5.440000pt;}
.y1c{bottom:14.880000pt;}
.y19{bottom:20.480000pt;}
.y13{bottom:25.440000pt;}
.y9{bottom:26.120000pt;}
.yf{bottom:37.440000pt;}
.y12{bottom:46.880000pt;}
.y1b{bottom:47.040000pt;}
.y2{bottom:51.200000pt;}
.y18{bottom:54.240000pt;}
.ye{bottom:64.960000pt;}
.y23{bottom:67.072000pt;}
.y11{bottom:68.346667pt;}
.y1{bottom:69.152000pt;}
.y8{bottom:69.640000pt;}
.y17{bottom:71.040000pt;}
.y22{bottom:85.152000pt;}
.y16{bottom:88.000000pt;}
.yd{bottom:92.640000pt;}
.y46{bottom:94.432000pt;}
.y99{bottom:102.592000pt;}
.ya2{bottom:109.312000pt;}
.yaf{bottom:114.112000pt;}
.y7{bottom:115.080000pt;}
.y9e{bottom:118.912000pt;}
.ya1{bottom:119.392000pt;}
.yc{bottom:120.160000pt;}
.y98{bottom:125.632000pt;}
.y7a{bottom:125.952000pt;}
.y45{bottom:128.192000pt;}
.yb4{bottom:129.952000pt;}
.y70{bottom:130.272000pt;}
.ydf{bottom:131.072000pt;}
.y9d{bottom:135.066667pt;}
.y97{bottom:135.546667pt;}
.ya0{bottom:141.786667pt;}
.yb{bottom:147.840000pt;}
.y9f{bottom:151.866667pt;}
.y79{bottom:153.466667pt;}
.y44{bottom:156.026667pt;}
.yb3{bottom:157.626667pt;}
.y6f{bottom:157.946667pt;}
.y9c{bottom:158.106667pt;}
.yde{bottom:158.586667pt;}
.y6{bottom:160.360000pt;}
.yae{bottom:169.306667pt;}
.y9b{bottom:174.426667pt;}
.y43{bottom:176.666667pt;}
.y78{bottom:181.146667pt;}
.y5{bottom:181.160000pt;}
.y9a{bottom:184.506667pt;}
.yc4{bottom:185.146667pt;}
.y6e{bottom:185.466667pt;}
.ydd{bottom:186.266667pt;}
.y4{bottom:194.600000pt;}
.yad{bottom:196.986667pt;}
.y96{bottom:198.426667pt;}
.y21{bottom:201.146667pt;}
.y42{bottom:204.986667pt;}
.y77{bottom:208.666667pt;}
.yc3{bottom:212.826667pt;}
.y6d{bottom:213.146667pt;}
.ydc{bottom:213.786667pt;}
.yac{bottom:224.506667pt;}
.y41{bottom:225.786667pt;}
.y95{bottom:225.946667pt;}
.y20{bottom:235.066667pt;}
.y76{bottom:236.186667pt;}
.y6c{bottom:240.666667pt;}
.ydb{bottom:241.466667pt;}
.yab{bottom:252.186667pt;}
.y94{bottom:253.466667pt;}
.y40{bottom:254.106667pt;}
.y75{bottom:263.866667pt;}
.y1f{bottom:267.866667pt;}
.y6b{bottom:268.186667pt;}
.yda{bottom:268.986667pt;}
.yaa{bottom:279.706667pt;}
.y1d{bottom:281.146667pt;}
.y3f{bottom:281.786667pt;}
.y74{bottom:291.426667pt;}
.yc2{bottom:295.586667pt;}
.y6a{bottom:295.906667pt;}
.yd9{bottom:296.706667pt;}
.y1a{bottom:305.186667pt;}
.ya9{bottom:307.426667pt;}
.y93{bottom:308.706667pt;}
.y3e{bottom:309.666667pt;}
.y73{bottom:318.786667pt;}
.yec{bottom:319.106667pt;}
.yb8{bottom:323.106667pt;}
.y69{bottom:323.426667pt;}
.yd8{bottom:324.226667pt;}
.ya8{bottom:333.026667pt;}
.y92{bottom:336.386667pt;}
.y3d{bottom:337.506667pt;}
.yeb{bottom:346.626667pt;}
.yb7{bottom:350.786667pt;}
.y68{bottom:351.106667pt;}
.yd7{bottom:351.906667pt;}
.ya7{bottom:357.026667pt;}
.y3c{bottom:358.146667pt;}
.y91{bottom:363.906667pt;}
.y15{bottom:369.506667pt;}
.yea{bottom:374.306667pt;}
.yc1{bottom:378.306667pt;}
.y67{bottom:378.626667pt;}
.yd6{bottom:379.426667pt;}
.ya6{bottom:382.306667pt;}
.y3b{bottom:386.466667pt;}
.y90{bottom:391.586667pt;}
.ye9{bottom:401.826667pt;}
.yba{bottom:405.986667pt;}
.y66{bottom:406.306667pt;}
.yd5{bottom:407.106667pt;}
.y3a{bottom:407.266667pt;}
.ya5{bottom:407.586667pt;}
.y8f{bottom:419.106667pt;}
.ye8{bottom:429.506667pt;}
.ya4{bottom:433.506667pt;}
.y65{bottom:433.826667pt;}
.yd4{bottom:434.626667pt;}
.y39{bottom:435.586667pt;}
.y8e{bottom:446.786667pt;}
.y38{bottom:456.226667pt;}
.ye7{bottom:457.026667pt;}
.yb9{bottom:461.186667pt;}
.y64{bottom:461.506667pt;}
.yd3{bottom:462.306667pt;}
.y10{bottom:470.786667pt;}
.y8d{bottom:474.306667pt;}
.y37{bottom:484.546667pt;}
.ye6{bottom:484.706667pt;}
.yc5{bottom:488.706667pt;}
.y63{bottom:489.026667pt;}
.yd2{bottom:489.826667pt;}
.y8c{bottom:501.986667pt;}
.y36{bottom:505.186667pt;}
.ye5{bottom:512.226667pt;}
.ybb{bottom:516.386667pt;}
.y62{bottom:516.706667pt;}
.yd1{bottom:517.346667pt;}
.y35{bottom:526.306667pt;}
.y8b{bottom:529.533333pt;}
.ye4{bottom:539.933333pt;}
.yb6{bottom:543.933333pt;}
.y61{bottom:544.253333pt;}
.yd0{bottom:545.053333pt;}
.y34{bottom:554.653333pt;}
.y8a{bottom:557.213333pt;}
.ya{bottom:557.373333pt;}
.ye3{bottom:567.453333pt;}
.yb5{bottom:571.613333pt;}
.y60{bottom:571.933333pt;}
.ycf{bottom:572.573333pt;}
.y33{bottom:575.293333pt;}
.y89{bottom:584.733333pt;}
.ye2{bottom:595.133333pt;}
.yc0{bottom:599.133333pt;}
.y5f{bottom:599.453333pt;}
.yce{bottom:600.253333pt;}
.y32{bottom:603.613333pt;}
.y88{bottom:612.413333pt;}
.ye1{bottom:622.333333pt;}
.ya3{bottom:626.813333pt;}
.y5e{bottom:627.133333pt;}
.ycd{bottom:627.773333pt;}
.y31{bottom:631.453333pt;}
.y87{bottom:639.933333pt;}
.y30{bottom:652.093333pt;}
.yc7{bottom:654.333333pt;}
.y5d{bottom:654.653333pt;}
.ycc{bottom:655.453333pt;}
.y86{bottom:667.613333pt;}
.y2f{bottom:680.413333pt;}
.ybe{bottom:682.013333pt;}
.y5c{bottom:682.333333pt;}
.ycb{bottom:682.973333pt;}
.y85{bottom:695.133333pt;}
.y2e{bottom:708.253333pt;}
.ybd{bottom:709.533333pt;}
.y5b{bottom:709.853333pt;}
.yca{bottom:710.653333pt;}
.y84{bottom:722.813333pt;}
.y2d{bottom:736.093333pt;}
.ybc{bottom:737.213333pt;}
.y5a{bottom:737.533333pt;}
.yc9{bottom:737.853333pt;}
.y83{bottom:750.333333pt;}
.y3{bottom:759.453333pt;}
.y2c{bottom:763.933333pt;}
.ye0{bottom:764.733333pt;}
.y59{bottom:765.053333pt;}
.yc8{bottom:765.853333pt;}
.y82{bottom:778.053333pt;}
.y2b{bottom:784.613333pt;}
.y50{bottom:792.133333pt;}
.y72{bottom:792.453333pt;}
.y58{bottom:792.773333pt;}
.y81{bottom:805.573333pt;}
.y2a{bottom:812.933333pt;}
.y4f{bottom:818.853333pt;}
.ybf{bottom:819.973333pt;}
.y57{bottom:820.293333pt;}
.y80{bottom:833.253333pt;}
.y29{bottom:840.773333pt;}
.y4e{bottom:846.693333pt;}
.yb2{bottom:847.653333pt;}
.y56{bottom:847.973333pt;}
.y7f{bottom:860.773333pt;}
.y28{bottom:868.613333pt;}
.y4d{bottom:874.533333pt;}
.yb1{bottom:875.173333pt;}
.y55{bottom:875.493333pt;}
.y7e{bottom:888.453333pt;}
.y27{bottom:896.453333pt;}
.y4c{bottom:902.373333pt;}
.yb0{bottom:902.853333pt;}
.y54{bottom:903.173333pt;}
.y7d{bottom:915.973333pt;}
.y26{bottom:924.293333pt;}
.y4b{bottom:930.213333pt;}
.yc6{bottom:930.373333pt;}
.y53{bottom:930.693333pt;}
.y7c{bottom:943.653333pt;}
.y25{bottom:946.053333pt;}
.y4a{bottom:958.053333pt;}
.y52{bottom:958.373333pt;}
.y7b{bottom:964.773333pt;}
.y49{bottom:985.893333pt;}
.y51{bottom:1013.280000pt;}
.y71{bottom:1013.600000pt;}
.y48{bottom:1013.760000pt;}
.y24{bottom:1014.880000pt;}
.h13{height:16.800000pt;}
.h11{height:24.032000pt;}
.h18{height:24.806250pt;}
.h19{height:38.128125pt;}
.h2{height:42.262500pt;}
.hc{height:50.712187pt;}
.h1e{height:52.134375pt;}
.h1c{height:52.785000pt;}
.h14{height:57.375000pt;}
.h4{height:57.787500pt;}
.h15{height:62.781250pt;}
.h12{height:62.812500pt;}
.h1d{height:63.311250pt;}
.h10{height:64.320000pt;}
.h7{height:64.500000pt;}
.h1b{height:65.781915pt;}
.h17{height:71.503042pt;}
.h1a{height:71.503438pt;}
.h16{height:71.524375pt;}
.hd{height:73.454062pt;}
.h6{height:73.490625pt;}
.h5{height:75.465000pt;}
.hb{height:85.792000pt;}
.h9{height:96.750000pt;}
.hf{height:101.280000pt;}
.he{height:114.946875pt;}
.h8{height:202.080000pt;}
.ha{height:209.165625pt;}
.h3{height:268.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:581.373333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.200000pt;}
.x8{left:9.920000pt;}
.x9{left:16.480000pt;}
.xd{left:17.760000pt;}
.xc{left:20.960000pt;}
.x7{left:27.040000pt;}
.xe{left:30.074667pt;}
.xb{left:64.314667pt;}
.x6{left:66.234667pt;}
.xa{left:98.554667pt;}
.x2{left:106.272000pt;}
.x14{left:113.472000pt;}
.x5{left:128.314667pt;}
.x13{left:134.234667pt;}
.xf{left:149.314667pt;}
.x17{left:160.666667pt;}
.x19{left:184.666667pt;}
.x1a{left:207.866667pt;}
.x11{left:224.514667pt;}
.x12{left:250.754667pt;}
.x4{left:290.594667pt;}
.x18{left:389.506667pt;}
.x16{left:393.506667pt;}
.x15{left:395.266667pt;}
.x1{left:396.866667pt;}
.x3{left:455.581333pt;}
}




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