
    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_d2e7908a47c3e2a4979ccfe1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_5414b5daf45951f8b2491f3a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_d27080e24cbb7acdc62f45cb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_3faf06c17a69c98081ec2905.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:94.650000px;}
.ls1{letter-spacing:97.344000px;}
.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;}
}
.ws4f{word-spacing:-38.871000px;}
.ws27{word-spacing:-38.867400px;}
.ws4e{word-spacing:-38.659200px;}
.ws2c{word-spacing:-38.655600px;}
.wsbe{word-spacing:-38.653200px;}
.ws3a{word-spacing:-38.651400px;}
.ws54{word-spacing:-38.651100px;}
.ws81{word-spacing:-38.649600px;}
.ws5a{word-spacing:-38.647800px;}
.ws58{word-spacing:-38.645400px;}
.ws10{word-spacing:-38.644200px;}
.wsb7{word-spacing:-38.639700px;}
.ws65{word-spacing:-38.637900px;}
.wsd{word-spacing:-38.637600px;}
.ws6f{word-spacing:-38.626200px;}
.ws17{word-spacing:-38.585400px;}
.ws69{word-spacing:-38.445000px;}
.ws5{word-spacing:-38.440800px;}
.ws2e{word-spacing:-38.435400px;}
.ws8c{word-spacing:-38.434800px;}
.ws41{word-spacing:-38.430900px;}
.ws4d{word-spacing:-38.428200px;}
.ws82{word-spacing:-38.373900px;}
.ws42{word-spacing:-38.352600px;}
.ws2d{word-spacing:-38.166000px;}
.wsa8{word-spacing:-38.164200px;}
.ws76{word-spacing:-38.160600px;}
.ws23{word-spacing:-38.160000px;}
.ws56{word-spacing:-38.157000px;}
.ws1f{word-spacing:-38.156400px;}
.ws99{word-spacing:-38.155200px;}
.ws63{word-spacing:-38.154600px;}
.ws3{word-spacing:-38.148300px;}
.ws40{word-spacing:-38.145000px;}
.ws43{word-spacing:-38.137800px;}
.ws6{word-spacing:-38.084400px;}
.ws2{word-spacing:-38.081700px;}
.wsbc{word-spacing:-38.075400px;}
.ws0{word-spacing:-37.944000px;}
.ws9e{word-spacing:-37.942200px;}
.ws60{word-spacing:-37.937700px;}
.ws4{word-spacing:-37.935900px;}
.ws33{word-spacing:-37.935000px;}
.wsae{word-spacing:-37.932900px;}
.wsf{word-spacing:-37.929600px;}
.wsb2{word-spacing:-37.927200px;}
.ws7e{word-spacing:-37.926000px;}
.ws7{word-spacing:-37.864500px;}
.ws7a{word-spacing:-37.734000px;}
.ws38{word-spacing:-37.726200px;}
.ws91{word-spacing:-37.725000px;}
.wsa2{word-spacing:-37.723200px;}
.ws64{word-spacing:-37.719000px;}
.ws3d{word-spacing:-37.716000px;}
.wsb4{word-spacing:-37.715400px;}
.ws2a{word-spacing:-37.713600px;}
.ws9a{word-spacing:-37.709700px;}
.ws4c{word-spacing:-37.703700px;}
.wse{word-spacing:-37.432800px;}
.ws22{word-spacing:-37.431000px;}
.ws46{word-spacing:-37.217700px;}
.ws97{word-spacing:-37.211400px;}
.ws52{word-spacing:-37.207800px;}
.ws5b{word-spacing:-37.000800px;}
.ws6c{word-spacing:-36.502800px;}
.ws83{word-spacing:-36.491400px;}
.ws74{word-spacing:-36.279000px;}
.ws87{word-spacing:-36.271800px;}
.ws9f{word-spacing:-36.261000px;}
.wsac{word-spacing:-35.998800px;}
.ws98{word-spacing:-35.998200px;}
.ws8d{word-spacing:-35.988300px;}
.ws4b{word-spacing:-35.985000px;}
.ws7d{word-spacing:-35.286000px;}
.ws13{word-spacing:-35.274300px;}
.ws3b{word-spacing:-35.057400px;}
.wsb{word-spacing:-34.835400px;}
.wsa4{word-spacing:-34.331400px;}
.wsb0{word-spacing:-34.327800px;}
.ws47{word-spacing:-34.310700px;}
.ws48{word-spacing:-33.840000px;}
.wsa1{word-spacing:-33.831000px;}
.wsa5{word-spacing:-33.618600px;}
.ws30{word-spacing:-33.616800px;}
.ws59{word-spacing:-33.613200px;}
.ws57{word-spacing:-33.395400px;}
.wsaf{word-spacing:-33.111000px;}
.ws89{word-spacing:-33.109200px;}
.ws68{word-spacing:-32.889000px;}
.ws94{word-spacing:-32.887800px;}
.ws6e{word-spacing:-32.680800px;}
.ws1e{word-spacing:-32.396400px;}
.ws7b{word-spacing:-32.391000px;}
.wsb3{word-spacing:-32.169600px;}
.wsb1{word-spacing:-32.144400px;}
.ws93{word-spacing:-31.970400px;}
.ws49{word-spacing:-31.671000px;}
.ws5e{word-spacing:-31.670100px;}
.ws31{word-spacing:-31.455000px;}
.wsb5{word-spacing:-31.453200px;}
.ws5d{word-spacing:-31.446000px;}
.wsa0{word-spacing:-31.433400px;}
.ws9c{word-spacing:-31.230000px;}
.ws80{word-spacing:-30.951000px;}
.wsbf{word-spacing:-30.943500px;}
.ws6a{word-spacing:-30.024000px;}
.ws35{word-spacing:-29.512800px;}
.ws96{word-spacing:-29.298600px;}
.ws73{word-spacing:-29.293200px;}
.wsab{word-spacing:-28.791000px;}
.ws44{word-spacing:-28.565100px;}
.ws6d{word-spacing:-28.074600px;}
.ws16{word-spacing:-28.008000px;}
.ws86{word-spacing:-27.856800px;}
.ws45{word-spacing:-27.847800px;}
.wsb9{word-spacing:-27.844200px;}
.wsa6{word-spacing:-27.364200px;}
.ws3f{word-spacing:-27.357000px;}
.ws39{word-spacing:-27.356400px;}
.wsad{word-spacing:-27.146400px;}
.ws25{word-spacing:-27.133200px;}
.ws88{word-spacing:-26.421000px;}
.ws6b{word-spacing:-26.402400px;}
.wsb8{word-spacing:-25.920000px;}
.ws1a{word-spacing:-25.704000px;}
.ws85{word-spacing:-25.702800px;}
.ws70{word-spacing:-25.200000px;}
.ws28{word-spacing:-25.183800px;}
.wsbb{word-spacing:-24.751800px;}
.wsc0{word-spacing:-24.264000px;}
.ws9d{word-spacing:-24.039900px;}
.ws1d{word-spacing:-23.751000px;}
.ws8e{word-spacing:-23.319300px;}
.ws55{word-spacing:-23.300100px;}
.ws3e{word-spacing:-23.032800px;}
.ws78{word-spacing:-22.816800px;}
.ws9b{word-spacing:-22.809000px;}
.ws75{word-spacing:-22.100400px;}
.ws2f{word-spacing:-22.091400px;}
.ws72{word-spacing:-22.029000px;}
.ws34{word-spacing:-21.600000px;}
.wsaa{word-spacing:-21.596400px;}
.ws79{word-spacing:-21.376800px;}
.ws90{word-spacing:-21.375000px;}
.ws95{word-spacing:-21.369600px;}
.ws5c{word-spacing:-21.159000px;}
.ws1b{word-spacing:-20.650200px;}
.wsa{word-spacing:-20.636400px;}
.ws1c{word-spacing:-20.582700px;}
.ws8f{word-spacing:-19.935000px;}
.wsba{word-spacing:-19.440000px;}
.ws18{word-spacing:-19.434000px;}
.ws19{word-spacing:-19.230000px;}
.ws5f{word-spacing:-19.013100px;}
.ws71{word-spacing:-18.719100px;}
.ws61{word-spacing:-18.716400px;}
.ws53{word-spacing:-17.555400px;}
.ws12{word-spacing:-16.776000px;}
.ws51{word-spacing:-16.545000px;}
.ws11{word-spacing:-16.344000px;}
.wsa7{word-spacing:-14.675400px;}
.ws24{word-spacing:-14.396400px;}
.ws4a{word-spacing:-13.676400px;}
.wsa9{word-spacing:-13.671000px;}
.ws26{word-spacing:-12.517200px;}
.ws8a{word-spacing:-12.234600px;}
.ws3c{word-spacing:-12.231000px;}
.ws29{word-spacing:-11.520000px;}
.ws14{word-spacing:-11.440800px;}
.ws77{word-spacing:-10.794000px;}
.wsb6{word-spacing:-10.086000px;}
.ws8b{word-spacing:-10.074600px;}
.wsa3{word-spacing:-10.071000px;}
.ws36{word-spacing:-9.846000px;}
.ws67{word-spacing:-8.404200px;}
.ws66{word-spacing:-7.693200px;}
.ws9{word-spacing:-7.191000px;}
.ws20{word-spacing:-7.189200px;}
.ws21{word-spacing:-6.973200px;}
.ws92{word-spacing:-6.759000px;}
.ws8{word-spacing:-6.480000px;}
.ws7c{word-spacing:-4.307400px;}
.ws62{word-spacing:-3.600000px;}
.ws84{word-spacing:-2.879100px;}
.ws50{word-spacing:0.000000px;}
.ws37{word-spacing:3.103200px;}
.ws2b{word-spacing:3.826800px;}
.wsc{word-spacing:4.341600px;}
.ws15{word-spacing:7.497900px;}
.wsbd{word-spacing:7.745700px;}
.ws32{word-spacing:11.026800px;}
.ws7f{word-spacing:14.619000px;}
.ws1{word-spacing:1037.484900px;}
._4{margin-left:-1.312200px;}
._0{width:1.076400px;}
._1{width:18.968400px;}
._e{width:20.151000px;}
._3{width:22.248000px;}
._13{width:23.468400px;}
._d{width:24.696000px;}
._18{width:25.767000px;}
._15{width:27.576000px;}
._9{width:29.016000px;}
._f{width:30.664800px;}
._11{width:32.038200px;}
._c{width:33.316200px;}
._12{width:35.064000px;}
._14{width:36.091800px;}
._a{width:37.512000px;}
._b{width:38.746200px;}
._6{width:40.536000px;}
._19{width:43.272000px;}
._10{width:44.557200px;}
._7{width:45.720000px;}
._16{width:47.304000px;}
._1b{width:48.796200px;}
._2{width:49.896000px;}
._1a{width:53.787600px;}
._17{width:60.264000px;}
._5{width:61.322400px;}
._8{width:64.584000px;}
._1d{width:70.617600px;}
._1c{width:71.631600px;}
._1e{width:93.065400px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y4d{bottom:113.115000px;}
.y74{bottom:128.955000px;}
.y4c{bottom:135.075000px;}
.y28{bottom:141.375000px;}
.y9b{bottom:142.996500px;}
.y73{bottom:149.655000px;}
.y4b{bottom:157.036500px;}
.y27{bottom:162.075000px;}
.y9a{bottom:163.696500px;}
.y72{bottom:170.355000px;}
.yb7{bottom:179.536500px;}
.y26{bottom:182.775000px;}
.y99{bottom:184.396500px;}
.y71{bottom:191.055000px;}
.y4a{bottom:200.055000px;}
.yb6{bottom:200.236500px;}
.y70{bottom:211.755000px;}
.yb5{bottom:220.936500px;}
.y25{bottom:224.536500px;}
.y98{bottom:225.975000px;}
.yb4{bottom:241.636500px;}
.y49{bottom:241.815000px;}
.y24{bottom:245.236500px;}
.y97{bottom:246.675000px;}
.y6f{bottom:253.515000px;}
.y48{bottom:262.515000px;}
.y23{bottom:265.936500px;}
.y96{bottom:267.375000px;}
.y6e{bottom:274.215000px;}
.y47{bottom:283.215000px;}
.y22{bottom:286.636500px;}
.y95{bottom:288.075000px;}
.y6d{bottom:294.915000px;}
.y46{bottom:303.915000px;}
.yb3{bottom:304.096500px;}
.y94{bottom:308.775000px;}
.yb2{bottom:326.055000px;}
.y21{bottom:328.215000px;}
.y93{bottom:329.475000px;}
.y6c{bottom:336.675000px;}
.y45{bottom:345.496500px;}
.yb1{bottom:346.755000px;}
.y20{bottom:348.915000px;}
.y92{bottom:350.175000px;}
.y6b{bottom:357.375000px;}
.y44{bottom:366.196500px;}
.yb0{bottom:368.715000px;}
.y1f{bottom:369.615000px;}
.y6a{bottom:378.075000px;}
.y43{bottom:388.155000px;}
.yaf{bottom:389.415000px;}
.y91{bottom:391.936500px;}
.y69{bottom:398.596500px;}
.y42{bottom:408.855000px;}
.y1e{bottom:411.375000px;}
.y68{bottom:419.295000px;}
.y41{bottom:430.815000px;}
.y1d{bottom:432.075000px;}
.y90{bottom:433.696500px;}
.y1c{bottom:452.775000px;}
.y8f{bottom:454.396500px;}
.y67{bottom:461.055000px;}
.y1b{bottom:473.475000px;}
.y40{bottom:473.836500px;}
.y8e{bottom:475.096500px;}
.y66{bottom:481.755000px;}
.y1a{bottom:494.175000px;}
.y8d{bottom:495.796500px;}
.y65{bottom:502.455000px;}
.y3f{bottom:515.596500px;}
.y8c{bottom:516.496500px;}
.y64{bottom:523.155000px;}
.y19{bottom:535.936500px;}
.y3e{bottom:536.296500px;}
.yae{bottom:537.375000px;}
.y18{bottom:556.636500px;}
.y3d{bottom:556.996500px;}
.y8b{bottom:558.075000px;}
.y63{bottom:564.915000px;}
.y17{bottom:577.336500px;}
.y8a{bottom:578.775000px;}
.y3c{bottom:598.575000px;}
.y89{bottom:599.475000px;}
.y62{bottom:606.496500px;}
.y16{bottom:618.915000px;}
.y3b{bottom:619.275000px;}
.y88{bottom:620.175000px;}
.yad{bottom:620.536500px;}
.y61{bottom:627.195000px;}
.y15{bottom:639.615000px;}
.y3a{bottom:639.975000px;}
.y87{bottom:640.875000px;}
.yac{bottom:641.236500px;}
.y60{bottom:647.896500px;}
.y14{bottom:660.315000px;}
.y86{bottom:661.575000px;}
.yab{bottom:661.936500px;}
.y5f{bottom:668.596500px;}
.y13{bottom:681.015000px;}
.y39{bottom:681.736500px;}
.y85{bottom:682.275000px;}
.yaa{bottom:682.636500px;}
.y5e{bottom:689.295000px;}
.y12{bottom:701.715000px;}
.y38{bottom:702.436500px;}
.y84{bottom:702.975000px;}
.ya9{bottom:703.336500px;}
.y5d{bottom:709.996500px;}
.y11{bottom:722.415000px;}
.y37{bottom:723.136500px;}
.y83{bottom:723.675000px;}
.ya8{bottom:724.036500px;}
.y5c{bottom:730.695000px;}
.y36{bottom:743.836500px;}
.y82{bottom:744.375000px;}
.y5b{bottom:751.395000px;}
.y10{bottom:764.175000px;}
.y35{bottom:764.536500px;}
.ya7{bottom:765.795000px;}
.y5a{bottom:772.096500px;}
.yf{bottom:784.875000px;}
.y34{bottom:785.236500px;}
.y81{bottom:786.136500px;}
.ya6{bottom:786.496500px;}
.y59{bottom:792.795000px;}
.y33{bottom:805.936500px;}
.ya5{bottom:807.195000px;}
.y58{bottom:813.496500px;}
.ye{bottom:826.636500px;}
.y80{bottom:827.895000px;}
.yd{bottom:847.336500px;}
.y32{bottom:847.695000px;}
.y7f{bottom:848.596500px;}
.y57{bottom:855.255000px;}
.yc{bottom:868.036500px;}
.y31{bottom:868.395000px;}
.y7e{bottom:869.295000px;}
.y56{bottom:875.955000px;}
.yb{bottom:888.736500px;}
.y30{bottom:889.095000px;}
.y7d{bottom:889.995000px;}
.y55{bottom:899.355000px;}
.yc1{bottom:909.255000px;}
.ya{bottom:909.436500px;}
.y2f{bottom:909.795000px;}
.y7c{bottom:910.695000px;}
.y54{bottom:920.236500px;}
.yc0{bottom:929.955000px;}
.y7b{bottom:931.395000px;}
.ya4{bottom:931.575000px;}
.y53{bottom:943.636500px;}
.y9{bottom:951.015000px;}
.y2e{bottom:951.375000px;}
.y7a{bottom:952.095000px;}
.ybf{bottom:953.536500px;}
.y52{bottom:964.336500px;}
.y8{bottom:971.715000px;}
.y2d{bottom:972.075000px;}
.y79{bottom:972.795000px;}
.ya3{bottom:973.336500px;}
.ybe{bottom:976.936500px;}
.y51{bottom:987.915000px;}
.y78{bottom:993.495000px;}
.ya2{bottom:994.036500px;}
.ybd{bottom:1000.515000px;}
.y50{bottom:1008.615000px;}
.y2c{bottom:1013.836500px;}
.ya1{bottom:1014.736500px;}
.ybc{bottom:1023.915000px;}
.y4f{bottom:1032.015000px;}
.y77{bottom:1035.075000px;}
.ya0{bottom:1035.436500px;}
.ybb{bottom:1047.495000px;}
.y4e{bottom:1052.715000px;}
.y2b{bottom:1055.595000px;}
.y76{bottom:1055.775000px;}
.y9f{bottom:1056.136500px;}
.yba{bottom:1068.195000px;}
.y7{bottom:1076.295000px;}
.y75{bottom:1076.475000px;}
.y9e{bottom:1076.836500px;}
.yb9{bottom:1091.595000px;}
.y2a{bottom:1097.175000px;}
.y9d{bottom:1097.536500px;}
.yb8{bottom:1115.175000px;}
.y6{bottom:1117.875000px;}
.y9c{bottom:1118.236500px;}
.y29{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h6{height:58.573682px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x2{left:160.560000px;}
.x8{left:170.638500px;}
.xa{left:239.220000px;}
.x9{left:257.580000px;}
.x6{left:280.438500px;}
.x7{left:305.460000px;}
.x5{left:310.138500px;}
.xb{left:380.700000px;}
.xc{left:387.720000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:84.133333pt;}
.ls1{letter-spacing:86.528000pt;}
.ws4f{word-spacing:-34.552000pt;}
.ws27{word-spacing:-34.548800pt;}
.ws4e{word-spacing:-34.363733pt;}
.ws2c{word-spacing:-34.360533pt;}
.wsbe{word-spacing:-34.358400pt;}
.ws3a{word-spacing:-34.356800pt;}
.ws54{word-spacing:-34.356533pt;}
.ws81{word-spacing:-34.355200pt;}
.ws5a{word-spacing:-34.353600pt;}
.ws58{word-spacing:-34.351467pt;}
.ws10{word-spacing:-34.350400pt;}
.wsb7{word-spacing:-34.346400pt;}
.ws65{word-spacing:-34.344800pt;}
.wsd{word-spacing:-34.344533pt;}
.ws6f{word-spacing:-34.334400pt;}
.ws17{word-spacing:-34.298133pt;}
.ws69{word-spacing:-34.173333pt;}
.ws5{word-spacing:-34.169600pt;}
.ws2e{word-spacing:-34.164800pt;}
.ws8c{word-spacing:-34.164267pt;}
.ws41{word-spacing:-34.160800pt;}
.ws4d{word-spacing:-34.158400pt;}
.ws82{word-spacing:-34.110133pt;}
.ws42{word-spacing:-34.091200pt;}
.ws2d{word-spacing:-33.925333pt;}
.wsa8{word-spacing:-33.923733pt;}
.ws76{word-spacing:-33.920533pt;}
.ws23{word-spacing:-33.920000pt;}
.ws56{word-spacing:-33.917333pt;}
.ws1f{word-spacing:-33.916800pt;}
.ws99{word-spacing:-33.915733pt;}
.ws63{word-spacing:-33.915200pt;}
.ws3{word-spacing:-33.909600pt;}
.ws40{word-spacing:-33.906667pt;}
.ws43{word-spacing:-33.900267pt;}
.ws6{word-spacing:-33.852800pt;}
.ws2{word-spacing:-33.850400pt;}
.wsbc{word-spacing:-33.844800pt;}
.ws0{word-spacing:-33.728000pt;}
.ws9e{word-spacing:-33.726400pt;}
.ws60{word-spacing:-33.722400pt;}
.ws4{word-spacing:-33.720800pt;}
.ws33{word-spacing:-33.720000pt;}
.wsae{word-spacing:-33.718133pt;}
.wsf{word-spacing:-33.715200pt;}
.wsb2{word-spacing:-33.713067pt;}
.ws7e{word-spacing:-33.712000pt;}
.ws7{word-spacing:-33.657333pt;}
.ws7a{word-spacing:-33.541333pt;}
.ws38{word-spacing:-33.534400pt;}
.ws91{word-spacing:-33.533333pt;}
.wsa2{word-spacing:-33.531733pt;}
.ws64{word-spacing:-33.528000pt;}
.ws3d{word-spacing:-33.525333pt;}
.wsb4{word-spacing:-33.524800pt;}
.ws2a{word-spacing:-33.523200pt;}
.ws9a{word-spacing:-33.519733pt;}
.ws4c{word-spacing:-33.514400pt;}
.wse{word-spacing:-33.273600pt;}
.ws22{word-spacing:-33.272000pt;}
.ws46{word-spacing:-33.082400pt;}
.ws97{word-spacing:-33.076800pt;}
.ws52{word-spacing:-33.073600pt;}
.ws5b{word-spacing:-32.889600pt;}
.ws6c{word-spacing:-32.446933pt;}
.ws83{word-spacing:-32.436800pt;}
.ws74{word-spacing:-32.248000pt;}
.ws87{word-spacing:-32.241600pt;}
.ws9f{word-spacing:-32.232000pt;}
.wsac{word-spacing:-31.998933pt;}
.ws98{word-spacing:-31.998400pt;}
.ws8d{word-spacing:-31.989600pt;}
.ws4b{word-spacing:-31.986667pt;}
.ws7d{word-spacing:-31.365333pt;}
.ws13{word-spacing:-31.354933pt;}
.ws3b{word-spacing:-31.162133pt;}
.wsb{word-spacing:-30.964800pt;}
.wsa4{word-spacing:-30.516800pt;}
.wsb0{word-spacing:-30.513600pt;}
.ws47{word-spacing:-30.498400pt;}
.ws48{word-spacing:-30.080000pt;}
.wsa1{word-spacing:-30.072000pt;}
.wsa5{word-spacing:-29.883200pt;}
.ws30{word-spacing:-29.881600pt;}
.ws59{word-spacing:-29.878400pt;}
.ws57{word-spacing:-29.684800pt;}
.wsaf{word-spacing:-29.432000pt;}
.ws89{word-spacing:-29.430400pt;}
.ws68{word-spacing:-29.234667pt;}
.ws94{word-spacing:-29.233600pt;}
.ws6e{word-spacing:-29.049600pt;}
.ws1e{word-spacing:-28.796800pt;}
.ws7b{word-spacing:-28.792000pt;}
.wsb3{word-spacing:-28.595200pt;}
.wsb1{word-spacing:-28.572800pt;}
.ws93{word-spacing:-28.418133pt;}
.ws49{word-spacing:-28.152000pt;}
.ws5e{word-spacing:-28.151200pt;}
.ws31{word-spacing:-27.960000pt;}
.wsb5{word-spacing:-27.958400pt;}
.ws5d{word-spacing:-27.952000pt;}
.wsa0{word-spacing:-27.940800pt;}
.ws9c{word-spacing:-27.760000pt;}
.ws80{word-spacing:-27.512000pt;}
.wsbf{word-spacing:-27.505333pt;}
.ws6a{word-spacing:-26.688000pt;}
.ws35{word-spacing:-26.233600pt;}
.ws96{word-spacing:-26.043200pt;}
.ws73{word-spacing:-26.038400pt;}
.wsab{word-spacing:-25.592000pt;}
.ws44{word-spacing:-25.391200pt;}
.ws6d{word-spacing:-24.955200pt;}
.ws16{word-spacing:-24.896000pt;}
.ws86{word-spacing:-24.761600pt;}
.ws45{word-spacing:-24.753600pt;}
.wsb9{word-spacing:-24.750400pt;}
.wsa6{word-spacing:-24.323733pt;}
.ws3f{word-spacing:-24.317333pt;}
.ws39{word-spacing:-24.316800pt;}
.wsad{word-spacing:-24.130133pt;}
.ws25{word-spacing:-24.118400pt;}
.ws88{word-spacing:-23.485333pt;}
.ws6b{word-spacing:-23.468800pt;}
.wsb8{word-spacing:-23.040000pt;}
.ws1a{word-spacing:-22.848000pt;}
.ws85{word-spacing:-22.846933pt;}
.ws70{word-spacing:-22.400000pt;}
.ws28{word-spacing:-22.385600pt;}
.wsbb{word-spacing:-22.001600pt;}
.wsc0{word-spacing:-21.568000pt;}
.ws9d{word-spacing:-21.368800pt;}
.ws1d{word-spacing:-21.112000pt;}
.ws8e{word-spacing:-20.728267pt;}
.ws55{word-spacing:-20.711200pt;}
.ws3e{word-spacing:-20.473600pt;}
.ws78{word-spacing:-20.281600pt;}
.ws9b{word-spacing:-20.274667pt;}
.ws75{word-spacing:-19.644800pt;}
.ws2f{word-spacing:-19.636800pt;}
.ws72{word-spacing:-19.581333pt;}
.ws34{word-spacing:-19.200000pt;}
.wsaa{word-spacing:-19.196800pt;}
.ws79{word-spacing:-19.001600pt;}
.ws90{word-spacing:-19.000000pt;}
.ws95{word-spacing:-18.995200pt;}
.ws5c{word-spacing:-18.808000pt;}
.ws1b{word-spacing:-18.355733pt;}
.wsa{word-spacing:-18.343467pt;}
.ws1c{word-spacing:-18.295733pt;}
.ws8f{word-spacing:-17.720000pt;}
.wsba{word-spacing:-17.280000pt;}
.ws18{word-spacing:-17.274667pt;}
.ws19{word-spacing:-17.093333pt;}
.ws5f{word-spacing:-16.900533pt;}
.ws71{word-spacing:-16.639200pt;}
.ws61{word-spacing:-16.636800pt;}
.ws53{word-spacing:-15.604800pt;}
.ws12{word-spacing:-14.912000pt;}
.ws51{word-spacing:-14.706667pt;}
.ws11{word-spacing:-14.528000pt;}
.wsa7{word-spacing:-13.044800pt;}
.ws24{word-spacing:-12.796800pt;}
.ws4a{word-spacing:-12.156800pt;}
.wsa9{word-spacing:-12.152000pt;}
.ws26{word-spacing:-11.126400pt;}
.ws8a{word-spacing:-10.875200pt;}
.ws3c{word-spacing:-10.872000pt;}
.ws29{word-spacing:-10.240000pt;}
.ws14{word-spacing:-10.169600pt;}
.ws77{word-spacing:-9.594667pt;}
.wsb6{word-spacing:-8.965333pt;}
.ws8b{word-spacing:-8.955200pt;}
.wsa3{word-spacing:-8.952000pt;}
.ws36{word-spacing:-8.752000pt;}
.ws67{word-spacing:-7.470400pt;}
.ws66{word-spacing:-6.838400pt;}
.ws9{word-spacing:-6.392000pt;}
.ws20{word-spacing:-6.390400pt;}
.ws21{word-spacing:-6.198400pt;}
.ws92{word-spacing:-6.008000pt;}
.ws8{word-spacing:-5.760000pt;}
.ws7c{word-spacing:-3.828800pt;}
.ws62{word-spacing:-3.200000pt;}
.ws84{word-spacing:-2.559200pt;}
.ws50{word-spacing:0.000000pt;}
.ws37{word-spacing:2.758400pt;}
.ws2b{word-spacing:3.401600pt;}
.wsc{word-spacing:3.859200pt;}
.ws15{word-spacing:6.664800pt;}
.wsbd{word-spacing:6.885067pt;}
.ws32{word-spacing:9.801600pt;}
.ws7f{word-spacing:12.994667pt;}
.ws1{word-spacing:922.208800pt;}
._4{margin-left:-1.166400pt;}
._0{width:0.956800pt;}
._1{width:16.860800pt;}
._e{width:17.912000pt;}
._3{width:19.776000pt;}
._13{width:20.860800pt;}
._d{width:21.952000pt;}
._18{width:22.904000pt;}
._15{width:24.512000pt;}
._9{width:25.792000pt;}
._f{width:27.257600pt;}
._11{width:28.478400pt;}
._c{width:29.614400pt;}
._12{width:31.168000pt;}
._14{width:32.081600pt;}
._a{width:33.344000pt;}
._b{width:34.441067pt;}
._6{width:36.032000pt;}
._19{width:38.464000pt;}
._10{width:39.606400pt;}
._7{width:40.640000pt;}
._16{width:42.048000pt;}
._1b{width:43.374400pt;}
._2{width:44.352000pt;}
._1a{width:47.811200pt;}
._17{width:53.568000pt;}
._5{width:54.508800pt;}
._8{width:57.408000pt;}
._1d{width:62.771200pt;}
._1c{width:63.672533pt;}
._1e{width:82.724800pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y4d{bottom:100.546667pt;}
.y74{bottom:114.626667pt;}
.y4c{bottom:120.066667pt;}
.y28{bottom:125.666667pt;}
.y9b{bottom:127.108000pt;}
.y73{bottom:133.026667pt;}
.y4b{bottom:139.588000pt;}
.y27{bottom:144.066667pt;}
.y9a{bottom:145.508000pt;}
.y72{bottom:151.426667pt;}
.yb7{bottom:159.588000pt;}
.y26{bottom:162.466667pt;}
.y99{bottom:163.908000pt;}
.y71{bottom:169.826667pt;}
.y4a{bottom:177.826667pt;}
.yb6{bottom:177.988000pt;}
.y70{bottom:188.226667pt;}
.yb5{bottom:196.388000pt;}
.y25{bottom:199.588000pt;}
.y98{bottom:200.866667pt;}
.yb4{bottom:214.788000pt;}
.y49{bottom:214.946667pt;}
.y24{bottom:217.988000pt;}
.y97{bottom:219.266667pt;}
.y6f{bottom:225.346667pt;}
.y48{bottom:233.346667pt;}
.y23{bottom:236.388000pt;}
.y96{bottom:237.666667pt;}
.y6e{bottom:243.746667pt;}
.y47{bottom:251.746667pt;}
.y22{bottom:254.788000pt;}
.y95{bottom:256.066667pt;}
.y6d{bottom:262.146667pt;}
.y46{bottom:270.146667pt;}
.yb3{bottom:270.308000pt;}
.y94{bottom:274.466667pt;}
.yb2{bottom:289.826667pt;}
.y21{bottom:291.746667pt;}
.y93{bottom:292.866667pt;}
.y6c{bottom:299.266667pt;}
.y45{bottom:307.108000pt;}
.yb1{bottom:308.226667pt;}
.y20{bottom:310.146667pt;}
.y92{bottom:311.266667pt;}
.y6b{bottom:317.666667pt;}
.y44{bottom:325.508000pt;}
.yb0{bottom:327.746667pt;}
.y1f{bottom:328.546667pt;}
.y6a{bottom:336.066667pt;}
.y43{bottom:345.026667pt;}
.yaf{bottom:346.146667pt;}
.y91{bottom:348.388000pt;}
.y69{bottom:354.308000pt;}
.y42{bottom:363.426667pt;}
.y1e{bottom:365.666667pt;}
.y68{bottom:372.706667pt;}
.y41{bottom:382.946667pt;}
.y1d{bottom:384.066667pt;}
.y90{bottom:385.508000pt;}
.y1c{bottom:402.466667pt;}
.y8f{bottom:403.908000pt;}
.y67{bottom:409.826667pt;}
.y1b{bottom:420.866667pt;}
.y40{bottom:421.188000pt;}
.y8e{bottom:422.308000pt;}
.y66{bottom:428.226667pt;}
.y1a{bottom:439.266667pt;}
.y8d{bottom:440.708000pt;}
.y65{bottom:446.626667pt;}
.y3f{bottom:458.308000pt;}
.y8c{bottom:459.108000pt;}
.y64{bottom:465.026667pt;}
.y19{bottom:476.388000pt;}
.y3e{bottom:476.708000pt;}
.yae{bottom:477.666667pt;}
.y18{bottom:494.788000pt;}
.y3d{bottom:495.108000pt;}
.y8b{bottom:496.066667pt;}
.y63{bottom:502.146667pt;}
.y17{bottom:513.188000pt;}
.y8a{bottom:514.466667pt;}
.y3c{bottom:532.066667pt;}
.y89{bottom:532.866667pt;}
.y62{bottom:539.108000pt;}
.y16{bottom:550.146667pt;}
.y3b{bottom:550.466667pt;}
.y88{bottom:551.266667pt;}
.yad{bottom:551.588000pt;}
.y61{bottom:557.506667pt;}
.y15{bottom:568.546667pt;}
.y3a{bottom:568.866667pt;}
.y87{bottom:569.666667pt;}
.yac{bottom:569.988000pt;}
.y60{bottom:575.908000pt;}
.y14{bottom:586.946667pt;}
.y86{bottom:588.066667pt;}
.yab{bottom:588.388000pt;}
.y5f{bottom:594.308000pt;}
.y13{bottom:605.346667pt;}
.y39{bottom:605.988000pt;}
.y85{bottom:606.466667pt;}
.yaa{bottom:606.788000pt;}
.y5e{bottom:612.706667pt;}
.y12{bottom:623.746667pt;}
.y38{bottom:624.388000pt;}
.y84{bottom:624.866667pt;}
.ya9{bottom:625.188000pt;}
.y5d{bottom:631.108000pt;}
.y11{bottom:642.146667pt;}
.y37{bottom:642.788000pt;}
.y83{bottom:643.266667pt;}
.ya8{bottom:643.588000pt;}
.y5c{bottom:649.506667pt;}
.y36{bottom:661.188000pt;}
.y82{bottom:661.666667pt;}
.y5b{bottom:667.906667pt;}
.y10{bottom:679.266667pt;}
.y35{bottom:679.588000pt;}
.ya7{bottom:680.706667pt;}
.y5a{bottom:686.308000pt;}
.yf{bottom:697.666667pt;}
.y34{bottom:697.988000pt;}
.y81{bottom:698.788000pt;}
.ya6{bottom:699.108000pt;}
.y59{bottom:704.706667pt;}
.y33{bottom:716.388000pt;}
.ya5{bottom:717.506667pt;}
.y58{bottom:723.108000pt;}
.ye{bottom:734.788000pt;}
.y80{bottom:735.906667pt;}
.yd{bottom:753.188000pt;}
.y32{bottom:753.506667pt;}
.y7f{bottom:754.308000pt;}
.y57{bottom:760.226667pt;}
.yc{bottom:771.588000pt;}
.y31{bottom:771.906667pt;}
.y7e{bottom:772.706667pt;}
.y56{bottom:778.626667pt;}
.yb{bottom:789.988000pt;}
.y30{bottom:790.306667pt;}
.y7d{bottom:791.106667pt;}
.y55{bottom:799.426667pt;}
.yc1{bottom:808.226667pt;}
.ya{bottom:808.388000pt;}
.y2f{bottom:808.706667pt;}
.y7c{bottom:809.506667pt;}
.y54{bottom:817.988000pt;}
.yc0{bottom:826.626667pt;}
.y7b{bottom:827.906667pt;}
.ya4{bottom:828.066667pt;}
.y53{bottom:838.788000pt;}
.y9{bottom:845.346667pt;}
.y2e{bottom:845.666667pt;}
.y7a{bottom:846.306667pt;}
.ybf{bottom:847.588000pt;}
.y52{bottom:857.188000pt;}
.y8{bottom:863.746667pt;}
.y2d{bottom:864.066667pt;}
.y79{bottom:864.706667pt;}
.ya3{bottom:865.188000pt;}
.ybe{bottom:868.388000pt;}
.y51{bottom:878.146667pt;}
.y78{bottom:883.106667pt;}
.ya2{bottom:883.588000pt;}
.ybd{bottom:889.346667pt;}
.y50{bottom:896.546667pt;}
.y2c{bottom:901.188000pt;}
.ya1{bottom:901.988000pt;}
.ybc{bottom:910.146667pt;}
.y4f{bottom:917.346667pt;}
.y77{bottom:920.066667pt;}
.ya0{bottom:920.388000pt;}
.ybb{bottom:931.106667pt;}
.y4e{bottom:935.746667pt;}
.y2b{bottom:938.306667pt;}
.y76{bottom:938.466667pt;}
.y9f{bottom:938.788000pt;}
.yba{bottom:949.506667pt;}
.y7{bottom:956.706667pt;}
.y75{bottom:956.866667pt;}
.y9e{bottom:957.188000pt;}
.yb9{bottom:970.306667pt;}
.y2a{bottom:975.266667pt;}
.y9d{bottom:975.588000pt;}
.yb8{bottom:991.266667pt;}
.y6{bottom:993.666667pt;}
.y9c{bottom:993.988000pt;}
.y29{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h6{height:52.065495pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x2{left:142.720000pt;}
.x8{left:151.678667pt;}
.xa{left:212.640000pt;}
.x9{left:228.960000pt;}
.x6{left:249.278667pt;}
.x7{left:271.520000pt;}
.x5{left:275.678667pt;}
.xb{left:338.400000pt;}
.xc{left:344.640000pt;}
}




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