
    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_15d96df13872d6a4c6743529.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.913000;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_46f54f9e0d621f9e779a6659.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_47a14327299a8465e1c81808.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_7e15d8061a8b87e5fe79859b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_9b03f098df482d7816a0575b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.699167;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_86f39c45d6273ed4ba1d6107.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.953125;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_baf406ccf71a9f84a4fe05cd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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_08be84126941cc53cb78e304.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.127930;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_f165e4c2c97e0a2118020fa8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_35ec6b2f4204c314bfb113a4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_296ed92fc16e4de3d2e2fe9d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_f9e579f6c054a6c4353172ac.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_8f0ac123eaf63919d7a7bff8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_e952d698d61981e3d9fcc273.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.948242;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_619592ccd1893d9d96d194a2.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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_794557d6a2b9f115318ba736.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;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);}
.m2{transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250191,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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v1{vertical-align:29.698200px;}
.lsf{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.306600px;}
.ls9{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.100200px;}
.ls6{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.216000px;}
.lse{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.311760px;}
.lsc{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.372584px;}
.ls15{letter-spacing:0.413400px;}
.ls8{letter-spacing:0.612000px;}
.ls10{letter-spacing:0.666000px;}
.ls13{letter-spacing:0.666720px;}
.ls3{letter-spacing:0.702720px;}
.lsa{letter-spacing:0.793440px;}
.ls14{letter-spacing:1.386720px;}
.ls17{letter-spacing:4.986720px;}
.lsb{letter-spacing:12.906720px;}
.ls1{letter-spacing:725.266500px;}
.ls2{letter-spacing:1412.764500px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-20.304000px;}
.ws8{word-spacing:-17.225280px;}
.wse{word-spacing:-17.026680px;}
.ws9{word-spacing:-16.973280px;}
.wsb{word-spacing:-16.873080px;}
.ws10{word-spacing:-16.819680px;}
.ws6{word-spacing:-16.613280px;}
.ws11{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.513080px;}
.wsa{word-spacing:-16.506480px;}
.wsc{word-spacing:-16.306680px;}
.wsf{word-spacing:-15.012000px;}
.ws1{word-spacing:-13.761000px;}
.ws5{word-spacing:-10.808640px;}
.ws12{word-spacing:-8.806540px;}
.ws2{word-spacing:-1.831500px;}
.ws4{word-spacing:-0.462000px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:1.344000px;}
._0{margin-left:-13.932000px;}
._5{margin-left:-4.975350px;}
._3{margin-left:-3.165600px;}
._2{margin-left:-1.846350px;}
._1{width:1.080000px;}
._4{width:2.558250px;}
._6{width:4.320000px;}
._12{width:5.378400px;}
._b{width:6.552720px;}
._c{width:7.909200px;}
._d{width:9.488400px;}
._9{width:11.294640px;}
._a{width:12.385200px;}
._17{width:13.386240px;}
._18{width:14.402160px;}
._14{width:15.597360px;}
._f{width:17.684640px;}
._13{width:18.732000px;}
._16{width:20.559510px;}
._11{width:22.947840px;}
._7{width:24.002640px;}
._8{width:25.092000px;}
._19{width:26.177760px;}
._1a{width:27.310320px;}
._10{width:35.851680px;}
._15{width:56.396640px;}
._e{width:58.266720px;}
.fc5{color:rgb(5,99,193);}
.fc3{color:rgb(99,141,130);}
.fc1{color:rgb(34,30,48);}
.fc6{color:rgb(64,64,64);}
.fc4{color:rgb(67,67,67);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:33.871307px;}
.fs8{font-size:38.880000px;}
.fs3{font-size:42.000000px;}
.fsb{font-size:45.048838px;}
.fsc{font-size:45.116581px;}
.fs4{font-size:48.000000px;}
.fs2{font-size:49.500000px;}
.fsa{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs9{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs5{font-size:98.883600px;}
.fs0{font-size:108.000000px;}
.fs7{font-size:149.760000px;}
.y0{bottom:0.000000px;}
.y107{bottom:9.628329px;}
.y105{bottom:9.797685px;}
.y103{bottom:10.000913px;}
.y106{bottom:23.176852px;}
.y104{bottom:23.363144px;}
.y102{bottom:23.549436px;}
.y2a{bottom:53.956350px;}
.y5{bottom:64.728450px;}
.y29{bottom:70.451850px;}
.y28{bottom:86.947350px;}
.y10c{bottom:90.985091px;}
.y111{bottom:91.041543px;}
.y10e{bottom:95.324852px;}
.y10b{bottom:101.146483px;}
.y110{bottom:101.202935px;}
.y27{bottom:103.442850px;}
.y10d{bottom:105.486244px;}
.y10a{bottom:111.307875px;}
.y10f{bottom:111.364327px;}
.yc0{bottom:113.976000px;}
.y7f{bottom:118.116000px;}
.y58{bottom:118.296000px;}
.y57{bottom:122.796000px;}
.y26{bottom:125.824950px;}
.y7e{bottom:133.596000px;}
.ydf{bottom:133.956000px;}
.y9e{bottom:136.296000px;}
.y4{bottom:138.420150px;}
.yde{bottom:138.456000px;}
.ybf{bottom:142.776000px;}
.y56{bottom:145.296000px;}
.y7d{bottom:149.436000px;}
.ydd{bottom:151.950000px;}
.y7c{bottom:153.930000px;}
.y9d{bottom:154.470000px;}
.ybe{bottom:160.950000px;}
.y109{bottom:162.827544px;}
.y3{bottom:163.620150px;}
.y7b{bottom:167.430000px;}
.y9c{bottom:172.650000px;}
.y108{bottom:173.073614px;}
.ydc{bottom:179.850000px;}
.ybd{bottom:180.030000px;}
.y2{bottom:188.819850px;}
.y9b{bottom:190.650000px;}
.ydb{bottom:198.030000px;}
.ybc{bottom:198.210000px;}
.y1d{bottom:205.393050px;}
.y55{bottom:207.030000px;}
.y9a{bottom:208.830000px;}
.ybb{bottom:216.210000px;}
.y7a{bottom:218.910000px;}
.y54{bottom:225.030000px;}
.yda{bottom:226.830000px;}
.y79{bottom:237.090000px;}
.y99{bottom:237.630000px;}
.y100{bottom:242.490000px;}
.y52{bottom:243.210000px;}
.yd9{bottom:245.010000px;}
.yba{bottom:246.270000px;}
.y53{bottom:247.710000px;}
.y1e{bottom:248.338650px;}
.y1{bottom:250.141050px;}
.y23{bottom:250.554450px;}
.y78{bottom:255.090000px;}
.y98{bottom:255.810000px;}
.yff{bottom:260.670000px;}
.y51{bottom:261.390000px;}
.yd8{bottom:263.190000px;}
.y77{bottom:273.270000px;}
.y97{bottom:273.990000px;}
.yb9{bottom:275.070000px;}
.yfe{bottom:278.670000px;}
.y50{bottom:279.390000px;}
.yd7{bottom:281.190000px;}
.y20{bottom:284.283600px;}
.y76{bottom:291.270000px;}
.y96{bottom:291.990000px;}
.y22{bottom:293.074950px;}
.yb8{bottom:293.250000px;}
.yfd{bottom:296.850000px;}
.y1f{bottom:299.133600px;}
.y4f{bottom:309.090000px;}
.y75{bottom:309.450000px;}
.y95{bottom:310.170000px;}
.yb7{bottom:311.430000px;}
.yfc{bottom:314.850000px;}
.yd6{bottom:317.010000px;}
.y74{bottom:327.675000px;}
.y94{bottom:328.215000px;}
.yb6{bottom:329.475000px;}
.yfb{bottom:333.075000px;}
.y24{bottom:334.320600px;}
.y21{bottom:335.078550px;}
.y4e{bottom:340.995000px;}
.y73{bottom:345.675000px;}
.y93{bottom:346.395000px;}
.yb5{bottom:347.655000px;}
.yd5{bottom:348.915000px;}
.yfa{bottom:351.255000px;}
.y71{bottom:363.855000px;}
.y92{bottom:364.575000px;}
.yb4{bottom:365.655000px;}
.y72{bottom:368.355000px;}
.yf9{bottom:369.255000px;}
.y4d{bottom:369.795000px;}
.yd4{bottom:377.715000px;}
.y70{bottom:382.035000px;}
.yb3{bottom:383.835000px;}
.yf8{bottom:387.435000px;}
.y91{bottom:393.375000px;}
.yd3{bottom:395.895000px;}
.y4c{bottom:398.595000px;}
.yb2{bottom:402.015000px;}
.y6f{bottom:410.835000px;}
.yd2{bottom:414.075000px;}
.yf7{bottom:416.235000px;}
.y4b{bottom:417.855000px;}
.y90{bottom:421.815000px;}
.y6e{bottom:429.015000px;}
.yb1{bottom:430.815000px;}
.yd1{bottom:432.075000px;}
.yf6{bottom:434.415000px;}
.y4a{bottom:436.935000px;}
.y8f{bottom:438.015000px;}
.y6d{bottom:447.015000px;}
.yb0{bottom:448.995000px;}
.yd0{bottom:450.255000px;}
.yf5{bottom:452.595000px;}
.y8e{bottom:454.395000px;}
.y49{bottom:456.015000px;}
.y6c{bottom:465.195000px;}
.yaf{bottom:467.175000px;}
.yce{bottom:468.435000px;}
.yf4{bottom:470.595000px;}
.y8d{bottom:470.775000px;}
.ycf{bottom:472.935000px;}
.y48{bottom:475.095000px;}
.y6b{bottom:483.375000px;}
.ycd{bottom:486.435000px;}
.y8c{bottom:486.975000px;}
.yf3{bottom:488.775000px;}
.y47{bottom:494.355000px;}
.y16{bottom:495.244500px;}
.yae{bottom:495.975000px;}
.yf2{bottom:506.955000px;}
.y15{bottom:510.091500px;}
.y8b{bottom:511.455000px;}
.yad{bottom:515.055000px;}
.ycc{bottom:515.415000px;}
.y6a{bottom:519.195000px;}
.y46{bottom:524.235000px;}
.yf1{bottom:524.955000px;}
.yac{bottom:533.235000px;}
.ycb{bottom:533.415000px;}
.y18{bottom:538.611150px;}
.y45{bottom:542.415000px;}
.yf0{bottom:543.135000px;}
.y10{bottom:546.035850px;}
.y69{bottom:550.875000px;}
.yca{bottom:551.595000px;}
.yab{bottom:552.315000px;}
.y17{bottom:553.461150px;}
.yef{bottom:561.135000px;}
.yc9{bottom:569.775000px;}
.yaa{bottom:570.495000px;}
.y44{bottom:571.215000px;}
.y68{bottom:579.315000px;}
.yc8{bottom:587.775000px;}
.ya9{bottom:588.495000px;}
.y43{bottom:589.395000px;}
.y19{bottom:589.407000px;}
.y11{bottom:589.540950px;}
.yee{bottom:597.525000px;}
.y67{bottom:603.825000px;}
.yc7{bottom:605.985000px;}
.y42{bottom:607.605000px;}
.ya8{bottom:607.785000px;}
.yed{bottom:615.525000px;}
.yc6{bottom:623.985000px;}
.y41{bottom:625.605000px;}
.y13{bottom:625.711050px;}
.ya7{bottom:625.785000px;}
.y1a{bottom:632.776650px;}
.y12{bottom:640.111050px;}
.yc5{bottom:642.165000px;}
.y40{bottom:643.785000px;}
.yec{bottom:644.505000px;}
.ya6{bottom:655.845000px;}
.y3f{bottom:661.965000px;}
.yeb{bottom:662.505000px;}
.y1c{bottom:668.721600px;}
.yc4{bottom:671.145000px;}
.ya5{bottom:673.845000px;}
.y14{bottom:676.146900px;}
.y3e{bottom:679.965000px;}
.yea{bottom:680.685000px;}
.y1b{bottom:683.571600px;}
.y3d{bottom:698.145000px;}
.ye9{bottom:698.865000px;}
.yc3{bottom:699.405000px;}
.ya4{bottom:702.825000px;}
.yc2{bottom:715.785000px;}
.ye8{bottom:716.865000px;}
.y3c{bottom:726.945000px;}
.ya3{bottom:731.085000px;}
.ye7{bottom:735.045000px;}
.yc1{bottom:740.265000px;}
.y3b{bottom:745.125000px;}
.ya2{bottom:747.465000px;}
.ye6{bottom:753.225000px;}
.y3a{bottom:763.305000px;}
.ya1{bottom:763.665000px;}
.ye5{bottom:771.225000px;}
.ya0{bottom:780.045000px;}
.y39{bottom:781.305000px;}
.ye4{bottom:789.405000px;}
.y38{bottom:799.485000px;}
.y9f{bottom:803.625000px;}
.ye3{bottom:817.665000px;}
.ye2{bottom:834.045000px;}
.y37{bottom:835.305000px;}
.yb{bottom:837.181500px;}
.ye1{bottom:850.245000px;}
.ya{bottom:852.031500px;}
.y36{bottom:864.510000px;}
.y66{bottom:867.930000px;}
.y8a{bottom:872.970000px;}
.ye0{bottom:874.770000px;}
.y101{bottom:874.874933px;}
.yd{bottom:880.551150px;}
.y35{bottom:884.670000px;}
.y6{bottom:887.975850px;}
.yc{bottom:895.401150px;}
.y65{bottom:896.730000px;}
.y89{bottom:901.770000px;}
.y34{bottom:901.950000px;}
.y64{bottom:915.990000px;}
.y33{bottom:919.230000px;}
.y88{bottom:919.950000px;}
.y7{bottom:931.345500px;}
.y63{bottom:933.990000px;}
.y87{bottom:938.130000px;}
.y32{bottom:939.390000px;}
.y62{bottom:953.070000px;}
.y86{bottom:956.130000px;}
.y31{bottom:960.630000px;}
.y61{bottom:971.250000px;}
.y8{bottom:974.716500px;}
.y85{bottom:985.110000px;}
.y60{bottom:990.330000px;}
.y30{bottom:993.210000px;}
.y84{bottom:1003.290000px;}
.y5f{bottom:1008.510000px;}
.yf{bottom:1010.661450px;}
.y9{bottom:1018.086150px;}
.y83{bottom:1021.290000px;}
.ye{bottom:1025.511450px;}
.y5e{bottom:1026.510000px;}
.y2f{bottom:1038.210000px;}
.y82{bottom:1039.470000px;}
.y5d{bottom:1045.770000px;}
.y81{bottom:1057.470000px;}
.y5c{bottom:1063.770000px;}
.y80{bottom:1075.650000px;}
.y2e{bottom:1083.210000px;}
.y5b{bottom:1093.830000px;}
.y5a{bottom:1122.630000px;}
.y59{bottom:1140.840000px;}
.y2d{bottom:1158.840000px;}
.y2c{bottom:1177.200000px;}
.y25{bottom:1182.175800px;}
.y2b{bottom:1195.380000px;}
.h16{height:25.949258px;}
.h14{height:34.226559px;}
.h15{height:34.278027px;}
.h7{height:34.945312px;}
.h4{height:36.037354px;}
.ha{height:37.652344px;}
.h11{height:40.550625px;}
.h6{height:44.375977px;}
.hd{height:45.316055px;}
.hc{height:46.308164px;}
.h12{height:56.320312px;}
.h3{height:61.404000px;}
.hf{height:62.327813px;}
.h8{height:65.724154px;}
.h5{height:65.736154px;}
.h9{height:69.053714px;}
.h10{height:75.093750px;}
.h2{height:78.948000px;}
.he{height:136.890000px;}
.h13{height:203.989945px;}
.h0{height:1262.835000px;}
.hb{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:552.608126px;}
.w0{width:892.914000px;}
.w4{width:892.979973px;}
.w3{width:892.979987px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:49.048800px;}
.xb{left:56.751000px;}
.x29{left:58.649780px;}
.x2b{left:63.700454px;}
.x3{left:76.070850px;}
.x8{left:114.269550px;}
.x1{left:118.228200px;}
.x6{left:122.137200px;}
.xc{left:127.655987px;}
.x26{left:131.255987px;}
.x13{left:133.235987px;}
.x1e{left:134.315987px;}
.x22{left:137.915987px;}
.x12{left:140.255987px;}
.x1b{left:142.595987px;}
.x1f{left:147.455987px;}
.x20{left:148.895987px;}
.x15{left:154.649987px;}
.x28{left:169.785066px;}
.x2{left:174.116400px;}
.x19{left:181.649987px;}
.x5{left:189.452700px;}
.x24{left:192.629973px;}
.xd{left:194.249987px;}
.x25{left:198.029987px;}
.xe{left:201.629987px;}
.x14{left:207.389987px;}
.x4{left:233.633850px;}
.x21{left:249.194987px;}
.x11{left:264.674987px;}
.x23{left:281.054987px;}
.x2c{left:309.095975px;}
.x27{left:328.754987px;}
.x18{left:343.694987px;}
.xf{left:370.154987px;}
.x16{left:372.134973px;}
.x1c{left:376.454973px;}
.x17{left:377.534987px;}
.x1d{left:381.854987px;}
.x10{left:446.504987px;}
.x2d{left:472.346014px;}
.x2a{left:482.479846px;}
.x9{left:530.337900px;}
.x7{left:538.207050px;}
.x1a{left:723.419987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v1{vertical-align:26.398400pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.272533pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.089067pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.277120pt;}
.lsc{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.331186pt;}
.ls15{letter-spacing:0.367467pt;}
.ls8{letter-spacing:0.544000pt;}
.ls10{letter-spacing:0.592000pt;}
.ls13{letter-spacing:0.592640pt;}
.ls3{letter-spacing:0.624640pt;}
.lsa{letter-spacing:0.705280pt;}
.ls14{letter-spacing:1.232640pt;}
.ls17{letter-spacing:4.432640pt;}
.lsb{letter-spacing:11.472640pt;}
.ls1{letter-spacing:644.681333pt;}
.ls2{letter-spacing:1255.790667pt;}
.ws7{word-spacing:-18.048000pt;}
.ws8{word-spacing:-15.311360pt;}
.wse{word-spacing:-15.134827pt;}
.ws9{word-spacing:-15.087360pt;}
.wsb{word-spacing:-14.998293pt;}
.ws10{word-spacing:-14.950827pt;}
.ws6{word-spacing:-14.767360pt;}
.ws11{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.678293pt;}
.wsa{word-spacing:-14.672427pt;}
.wsc{word-spacing:-14.494827pt;}
.wsf{word-spacing:-13.344000pt;}
.ws1{word-spacing:-12.232000pt;}
.ws5{word-spacing:-9.607680pt;}
.ws12{word-spacing:-7.828035pt;}
.ws2{word-spacing:-1.628000pt;}
.ws4{word-spacing:-0.410667pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:1.194667pt;}
._0{margin-left:-12.384000pt;}
._5{margin-left:-4.422533pt;}
._3{margin-left:-2.813867pt;}
._2{margin-left:-1.641200pt;}
._1{width:0.960000pt;}
._4{width:2.274000pt;}
._6{width:3.840000pt;}
._12{width:4.780800pt;}
._b{width:5.824640pt;}
._c{width:7.030400pt;}
._d{width:8.434133pt;}
._9{width:10.039680pt;}
._a{width:11.009067pt;}
._17{width:11.898880pt;}
._18{width:12.801920pt;}
._14{width:13.864320pt;}
._f{width:15.719680pt;}
._13{width:16.650667pt;}
._16{width:18.275120pt;}
._11{width:20.398080pt;}
._7{width:21.335680pt;}
._8{width:22.304000pt;}
._19{width:23.269120pt;}
._1a{width:24.275840pt;}
._10{width:31.868160pt;}
._15{width:50.130347pt;}
._e{width:51.792640pt;}
.fsd{font-size:30.107828pt;}
.fs8{font-size:34.560000pt;}
.fs3{font-size:37.333333pt;}
.fsb{font-size:40.043412pt;}
.fsc{font-size:40.103627pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:44.000000pt;}
.fsa{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs5{font-size:87.896533pt;}
.fs0{font-size:96.000000pt;}
.fs7{font-size:133.120000pt;}
.y0{bottom:0.000000pt;}
.y107{bottom:8.558515pt;}
.y105{bottom:8.709054pt;}
.y103{bottom:8.889701pt;}
.y106{bottom:20.601646pt;}
.y104{bottom:20.767239pt;}
.y102{bottom:20.932832pt;}
.y2a{bottom:47.961200pt;}
.y5{bottom:57.536400pt;}
.y29{bottom:62.623867pt;}
.y28{bottom:77.286533pt;}
.y10c{bottom:80.875636pt;}
.y111{bottom:80.925816pt;}
.y10e{bottom:84.733202pt;}
.y10b{bottom:89.907985pt;}
.y110{bottom:89.958164pt;}
.y27{bottom:91.949200pt;}
.y10d{bottom:93.765550pt;}
.y10a{bottom:98.940333pt;}
.y10f{bottom:98.990513pt;}
.yc0{bottom:101.312000pt;}
.y7f{bottom:104.992000pt;}
.y58{bottom:105.152000pt;}
.y57{bottom:109.152000pt;}
.y26{bottom:111.844400pt;}
.y7e{bottom:118.752000pt;}
.ydf{bottom:119.072000pt;}
.y9e{bottom:121.152000pt;}
.y4{bottom:123.040133pt;}
.yde{bottom:123.072000pt;}
.ybf{bottom:126.912000pt;}
.y56{bottom:129.152000pt;}
.y7d{bottom:132.832000pt;}
.ydd{bottom:135.066667pt;}
.y7c{bottom:136.826667pt;}
.y9d{bottom:137.306667pt;}
.ybe{bottom:143.066667pt;}
.y109{bottom:144.735594pt;}
.y3{bottom:145.440133pt;}
.y7b{bottom:148.826667pt;}
.y9c{bottom:153.466667pt;}
.y108{bottom:153.843212pt;}
.ydc{bottom:159.866667pt;}
.ybd{bottom:160.026667pt;}
.y2{bottom:167.839867pt;}
.y9b{bottom:169.466667pt;}
.ydb{bottom:176.026667pt;}
.ybc{bottom:176.186667pt;}
.y1d{bottom:182.571600pt;}
.y55{bottom:184.026667pt;}
.y9a{bottom:185.626667pt;}
.ybb{bottom:192.186667pt;}
.y7a{bottom:194.586667pt;}
.y54{bottom:200.026667pt;}
.yda{bottom:201.626667pt;}
.y79{bottom:210.746667pt;}
.y99{bottom:211.226667pt;}
.y100{bottom:215.546667pt;}
.y52{bottom:216.186667pt;}
.yd9{bottom:217.786667pt;}
.yba{bottom:218.906667pt;}
.y53{bottom:220.186667pt;}
.y1e{bottom:220.745467pt;}
.y1{bottom:222.347600pt;}
.y23{bottom:222.715067pt;}
.y78{bottom:226.746667pt;}
.y98{bottom:227.386667pt;}
.yff{bottom:231.706667pt;}
.y51{bottom:232.346667pt;}
.yd8{bottom:233.946667pt;}
.y77{bottom:242.906667pt;}
.y97{bottom:243.546667pt;}
.yb9{bottom:244.506667pt;}
.yfe{bottom:247.706667pt;}
.y50{bottom:248.346667pt;}
.yd7{bottom:249.946667pt;}
.y20{bottom:252.696533pt;}
.y76{bottom:258.906667pt;}
.y96{bottom:259.546667pt;}
.y22{bottom:260.511067pt;}
.yb8{bottom:260.666667pt;}
.yfd{bottom:263.866667pt;}
.y1f{bottom:265.896533pt;}
.y4f{bottom:274.746667pt;}
.y75{bottom:275.066667pt;}
.y95{bottom:275.706667pt;}
.yb7{bottom:276.826667pt;}
.yfc{bottom:279.866667pt;}
.yd6{bottom:281.786667pt;}
.y74{bottom:291.266667pt;}
.y94{bottom:291.746667pt;}
.yb6{bottom:292.866667pt;}
.yfb{bottom:296.066667pt;}
.y24{bottom:297.173867pt;}
.y21{bottom:297.847600pt;}
.y4e{bottom:303.106667pt;}
.y73{bottom:307.266667pt;}
.y93{bottom:307.906667pt;}
.yb5{bottom:309.026667pt;}
.yd5{bottom:310.146667pt;}
.yfa{bottom:312.226667pt;}
.y71{bottom:323.426667pt;}
.y92{bottom:324.066667pt;}
.yb4{bottom:325.026667pt;}
.y72{bottom:327.426667pt;}
.yf9{bottom:328.226667pt;}
.y4d{bottom:328.706667pt;}
.yd4{bottom:335.746667pt;}
.y70{bottom:339.586667pt;}
.yb3{bottom:341.186667pt;}
.yf8{bottom:344.386667pt;}
.y91{bottom:349.666667pt;}
.yd3{bottom:351.906667pt;}
.y4c{bottom:354.306667pt;}
.yb2{bottom:357.346667pt;}
.y6f{bottom:365.186667pt;}
.yd2{bottom:368.066667pt;}
.yf7{bottom:369.986667pt;}
.y4b{bottom:371.426667pt;}
.y90{bottom:374.946667pt;}
.y6e{bottom:381.346667pt;}
.yb1{bottom:382.946667pt;}
.yd1{bottom:384.066667pt;}
.yf6{bottom:386.146667pt;}
.y4a{bottom:388.386667pt;}
.y8f{bottom:389.346667pt;}
.y6d{bottom:397.346667pt;}
.yb0{bottom:399.106667pt;}
.yd0{bottom:400.226667pt;}
.yf5{bottom:402.306667pt;}
.y8e{bottom:403.906667pt;}
.y49{bottom:405.346667pt;}
.y6c{bottom:413.506667pt;}
.yaf{bottom:415.266667pt;}
.yce{bottom:416.386667pt;}
.yf4{bottom:418.306667pt;}
.y8d{bottom:418.466667pt;}
.ycf{bottom:420.386667pt;}
.y48{bottom:422.306667pt;}
.y6b{bottom:429.666667pt;}
.ycd{bottom:432.386667pt;}
.y8c{bottom:432.866667pt;}
.yf3{bottom:434.466667pt;}
.y47{bottom:439.426667pt;}
.y16{bottom:440.217333pt;}
.yae{bottom:440.866667pt;}
.yf2{bottom:450.626667pt;}
.y15{bottom:453.414667pt;}
.y8b{bottom:454.626667pt;}
.yad{bottom:457.826667pt;}
.ycc{bottom:458.146667pt;}
.y6a{bottom:461.506667pt;}
.y46{bottom:465.986667pt;}
.yf1{bottom:466.626667pt;}
.yac{bottom:473.986667pt;}
.ycb{bottom:474.146667pt;}
.y18{bottom:478.765467pt;}
.y45{bottom:482.146667pt;}
.yf0{bottom:482.786667pt;}
.y10{bottom:485.365200pt;}
.y69{bottom:489.666667pt;}
.yca{bottom:490.306667pt;}
.yab{bottom:490.946667pt;}
.y17{bottom:491.965467pt;}
.yef{bottom:498.786667pt;}
.yc9{bottom:506.466667pt;}
.yaa{bottom:507.106667pt;}
.y44{bottom:507.746667pt;}
.y68{bottom:514.946667pt;}
.yc8{bottom:522.466667pt;}
.ya9{bottom:523.106667pt;}
.y43{bottom:523.906667pt;}
.y19{bottom:523.917333pt;}
.y11{bottom:524.036400pt;}
.yee{bottom:531.133333pt;}
.y67{bottom:536.733333pt;}
.yc7{bottom:538.653333pt;}
.y42{bottom:540.093333pt;}
.ya8{bottom:540.253333pt;}
.yed{bottom:547.133333pt;}
.yc6{bottom:554.653333pt;}
.y41{bottom:556.093333pt;}
.y13{bottom:556.187600pt;}
.ya7{bottom:556.253333pt;}
.y1a{bottom:562.468133pt;}
.y12{bottom:568.987600pt;}
.yc5{bottom:570.813333pt;}
.y40{bottom:572.253333pt;}
.yec{bottom:572.893333pt;}
.ya6{bottom:582.973333pt;}
.y3f{bottom:588.413333pt;}
.yeb{bottom:588.893333pt;}
.y1c{bottom:594.419200pt;}
.yc4{bottom:596.573333pt;}
.ya5{bottom:598.973333pt;}
.y14{bottom:601.019467pt;}
.y3e{bottom:604.413333pt;}
.yea{bottom:605.053333pt;}
.y1b{bottom:607.619200pt;}
.y3d{bottom:620.573333pt;}
.ye9{bottom:621.213333pt;}
.yc3{bottom:621.693333pt;}
.ya4{bottom:624.733333pt;}
.yc2{bottom:636.253333pt;}
.ye8{bottom:637.213333pt;}
.y3c{bottom:646.173333pt;}
.ya3{bottom:649.853333pt;}
.ye7{bottom:653.373333pt;}
.yc1{bottom:658.013333pt;}
.y3b{bottom:662.333333pt;}
.ya2{bottom:664.413333pt;}
.ye6{bottom:669.533333pt;}
.y3a{bottom:678.493333pt;}
.ya1{bottom:678.813333pt;}
.ye5{bottom:685.533333pt;}
.ya0{bottom:693.373333pt;}
.y39{bottom:694.493333pt;}
.ye4{bottom:701.693333pt;}
.y38{bottom:710.653333pt;}
.y9f{bottom:714.333333pt;}
.ye3{bottom:726.813333pt;}
.ye2{bottom:741.373333pt;}
.y37{bottom:742.493333pt;}
.yb{bottom:744.161333pt;}
.ye1{bottom:755.773333pt;}
.ya{bottom:757.361333pt;}
.y36{bottom:768.453333pt;}
.y66{bottom:771.493333pt;}
.y8a{bottom:775.973333pt;}
.ye0{bottom:777.573333pt;}
.y101{bottom:777.666607pt;}
.yd{bottom:782.712133pt;}
.y35{bottom:786.373333pt;}
.y6{bottom:789.311867pt;}
.yc{bottom:795.912133pt;}
.y65{bottom:797.093333pt;}
.y89{bottom:801.573333pt;}
.y34{bottom:801.733333pt;}
.y64{bottom:814.213333pt;}
.y33{bottom:817.093333pt;}
.y88{bottom:817.733333pt;}
.y7{bottom:827.862667pt;}
.y63{bottom:830.213333pt;}
.y87{bottom:833.893333pt;}
.y32{bottom:835.013333pt;}
.y62{bottom:847.173333pt;}
.y86{bottom:849.893333pt;}
.y31{bottom:853.893333pt;}
.y61{bottom:863.333333pt;}
.y8{bottom:866.414667pt;}
.y85{bottom:875.653333pt;}
.y60{bottom:880.293333pt;}
.y30{bottom:882.853333pt;}
.y84{bottom:891.813333pt;}
.y5f{bottom:896.453333pt;}
.yf{bottom:898.365733pt;}
.y9{bottom:904.965467pt;}
.y83{bottom:907.813333pt;}
.ye{bottom:911.565733pt;}
.y5e{bottom:912.453333pt;}
.y2f{bottom:922.853333pt;}
.y82{bottom:923.973333pt;}
.y5d{bottom:929.573333pt;}
.y81{bottom:939.973333pt;}
.y5c{bottom:945.573333pt;}
.y80{bottom:956.133333pt;}
.y2e{bottom:962.853333pt;}
.y5b{bottom:972.293333pt;}
.y5a{bottom:997.893333pt;}
.y59{bottom:1014.080000pt;}
.y2d{bottom:1030.080000pt;}
.y2c{bottom:1046.400000pt;}
.y25{bottom:1050.822933pt;}
.y2b{bottom:1062.560000pt;}
.h16{height:23.066007pt;}
.h14{height:30.423608pt;}
.h15{height:30.469357pt;}
.h7{height:31.062500pt;}
.h4{height:32.033203pt;}
.ha{height:33.468750pt;}
.h11{height:36.045000pt;}
.h6{height:39.445312pt;}
.hd{height:40.280938pt;}
.hc{height:41.162813pt;}
.h12{height:50.062500pt;}
.h3{height:54.581333pt;}
.hf{height:55.402500pt;}
.h8{height:58.421470pt;}
.h5{height:58.432136pt;}
.h9{height:61.381079pt;}
.h10{height:66.750000pt;}
.h2{height:70.176000pt;}
.he{height:121.680000pt;}
.h13{height:181.324395pt;}
.h0{height:1122.520000pt;}
.hb{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:491.207223pt;}
.w0{width:793.701333pt;}
.w4{width:793.759976pt;}
.w3{width:793.759988pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:43.598933pt;}
.xb{left:50.445333pt;}
.x29{left:52.133138pt;}
.x2b{left:56.622626pt;}
.x3{left:67.618533pt;}
.x8{left:101.572933pt;}
.x1{left:105.091733pt;}
.x6{left:108.566400pt;}
.xc{left:113.471988pt;}
.x26{left:116.671988pt;}
.x13{left:118.431988pt;}
.x1e{left:119.391988pt;}
.x22{left:122.591988pt;}
.x12{left:124.671988pt;}
.x1b{left:126.751988pt;}
.x1f{left:131.071988pt;}
.x20{left:132.351988pt;}
.x15{left:137.466655pt;}
.x28{left:150.920059pt;}
.x2{left:154.770133pt;}
.x19{left:161.466655pt;}
.x5{left:168.402400pt;}
.x24{left:171.226643pt;}
.xd{left:172.666655pt;}
.x25{left:176.026655pt;}
.xe{left:179.226655pt;}
.x14{left:184.346655pt;}
.x4{left:207.674533pt;}
.x21{left:221.506655pt;}
.x11{left:235.266655pt;}
.x23{left:249.826655pt;}
.x2c{left:274.751978pt;}
.x27{left:292.226655pt;}
.x18{left:305.506655pt;}
.xf{left:329.026655pt;}
.x16{left:330.786643pt;}
.x1c{left:334.626643pt;}
.x17{left:335.586655pt;}
.x1d{left:339.426655pt;}
.x10{left:396.893322pt;}
.x2d{left:419.863123pt;}
.x2a{left:428.870974pt;}
.x9{left:471.411467pt;}
.x7{left:478.406267pt;}
.x1a{left:643.039988pt;}
}




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