
    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_090819961fac2d8c11c79de4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8c3e92c1f9d2c8127cfb3dfd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1117ef4b489562e63147e1b0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.687500;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_e251a82c66cfba77f3a07e01.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a6a66e8f91af3102810610bc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fa6eda2e40f580b385078291.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_af5370b15494b5909e5088d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911133;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_af5370b15494b5909e5088d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.911133;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_ea7486f57c6b35050d7cb90a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4a9797f16010c3b0a03ff29e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ea7486f57c6b35050d7cb90a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4a9797f16010c3b0a03ff29e.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4db83d2711f798469d71cff0.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_80316cd9af6241697516e221.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.980000px;}
.v1{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v4{vertical-align:30.000000px;}
.ls2{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000600px;}
.ls5{letter-spacing:2.520000px;}
.ls0{letter-spacing:14.988600px;}
.ls4{letter-spacing:81.057600px;}
.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;}
}
.ws8{word-spacing:-16.500000px;}
.ws6{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.wsa{word-spacing:-12.000000px;}
.ws3{word-spacing:-11.856000px;}
.ws0{word-spacing:-7.870500px;}
.wsd{word-spacing:-2.520000px;}
.ws5{word-spacing:-0.034980px;}
.ws1{word-spacing:-0.031482px;}
.ws7{word-spacing:0.000000px;}
.wse{word-spacing:25.740000px;}
.wsc{word-spacing:57.057600px;}
.ws4{word-spacing:315.023220px;}
.ws9{word-spacing:394.217400px;}
.wsb{word-spacing:532.599000px;}
._2{margin-left:-2187.444000px;}
._1f{margin-left:-8.025600px;}
._8{margin-left:-6.816000px;}
._3{margin-left:-5.508000px;}
._4{margin-left:-4.048200px;}
._0{margin-left:-2.951400px;}
._1{margin-left:-1.724400px;}
._5{width:1.734000px;}
._a{width:3.069000px;}
._9{width:4.446000px;}
._7{width:5.466000px;}
._19{width:6.870600px;}
._f{width:8.144400px;}
._e{width:9.457800px;}
._d{width:11.266200px;}
._c{width:12.639600px;}
._6{width:13.734000px;}
._b{width:15.028200px;}
._35{width:16.502400px;}
._10{width:17.892600px;}
._18{width:19.569000px;}
._1d{width:21.278400px;}
._15{width:22.380600px;}
._20{width:24.314400px;}
._17{width:25.370400px;}
._11{width:26.862000px;}
._1b{width:28.043400px;}
._1c{width:29.693400px;}
._26{width:31.198200px;}
._14{width:32.221200px;}
._16{width:33.825000px;}
._1a{width:34.927200px;}
._27{width:35.996400px;}
._24{width:38.253600px;}
._25{width:41.811000px;}
._22{width:43.645800px;}
._28{width:45.005400px;}
._1e{width:46.629000px;}
._13{width:49.150200px;}
._23{width:56.832600px;}
._21{width:57.941400px;}
._34{width:60.000000px;}
._33{width:65.498400px;}
._2d{width:89.134800px;}
._2b{width:140.727000px;}
._2a{width:147.934800px;}
._31{width:156.410400px;}
._2c{width:200.474400px;}
._2f{width:202.071000px;}
._29{width:243.652200px;}
._32{width:255.351000px;}
._2e{width:328.695000px;}
._30{width:331.822800px;}
._12{width:1592.755200px;}
.fc6{color:rgb(0,173,239);}
.fc5{color:transparent;}
.fc4{color:rgb(24,23,23);}
.fc2{color:rgb(48,88,159);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:31.482000px;}
.fs5{font-size:34.980000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y13{bottom:20.907750px;}
.y14{bottom:30.289950px;}
.yd{bottom:30.301800px;}
.y42{bottom:30.906150px;}
.y41{bottom:33.478950px;}
.y8e{bottom:33.490650px;}
.y11{bottom:33.691200px;}
.y78{bottom:66.583200px;}
.yd8{bottom:66.583350px;}
.y15e{bottom:72.595050px;}
.yc4{bottom:76.829250px;}
.y3f{bottom:77.429100px;}
.y10a{bottom:78.925800px;}
.y33{bottom:80.514300px;}
.yf5{bottom:81.417900px;}
.y77{bottom:86.083200px;}
.yd7{bottom:86.083350px;}
.yc3{bottom:96.329250px;}
.y3e{bottom:96.929100px;}
.y109{bottom:98.425800px;}
.y32{bottom:100.014300px;}
.yf4{bottom:100.917900px;}
.y8d{bottom:105.583200px;}
.yd6{bottom:105.583350px;}
.y15d{bottom:111.595050px;}
.y76{bottom:114.087150px;}
.yc2{bottom:115.829250px;}
.y3d{bottom:116.429100px;}
.y108{bottom:117.925800px;}
.y31{bottom:119.514300px;}
.y8c{bottom:125.083200px;}
.yd5{bottom:125.083350px;}
.yf3{bottom:128.921700px;}
.y15c{bottom:131.095050px;}
.y75{bottom:133.587150px;}
.yc1{bottom:135.329250px;}
.y3c{bottom:135.929100px;}
.y107{bottom:137.425800px;}
.y30{bottom:139.014300px;}
.y8b{bottom:144.583200px;}
.yd4{bottom:144.583350px;}
.yf2{bottom:148.421700px;}
.y15b{bottom:150.595050px;}
.y74{bottom:153.087150px;}
.yc0{bottom:154.829250px;}
.y3b{bottom:155.429100px;}
.y2f{bottom:158.514300px;}
.y8a{bottom:164.083200px;}
.yd3{bottom:164.083350px;}
.yf1{bottom:167.921700px;}
.y15a{bottom:170.095050px;}
.y73{bottom:172.587150px;}
.y3a{bottom:174.929100px;}
.y106{bottom:176.425800px;}
.y2e{bottom:178.014300px;}
.ybf{bottom:182.833200px;}
.y89{bottom:183.583200px;}
.yd2{bottom:183.583350px;}
.yf0{bottom:187.421700px;}
.y159{bottom:189.595050px;}
.y72{bottom:192.087150px;}
.y39{bottom:194.429100px;}
.y105{bottom:195.925800px;}
.y2d{bottom:197.514300px;}
.ybe{bottom:202.333200px;}
.y88{bottom:203.083200px;}
.yd1{bottom:203.083350px;}
.yef{bottom:206.921700px;}
.y158{bottom:209.095050px;}
.y71{bottom:211.587150px;}
.y38{bottom:213.929100px;}
.y104{bottom:215.425800px;}
.y2c{bottom:217.014300px;}
.ybd{bottom:221.833200px;}
.y87{bottom:222.583200px;}
.yd0{bottom:222.583350px;}
.yee{bottom:226.421700px;}
.y157{bottom:228.595050px;}
.y70{bottom:231.087150px;}
.y37{bottom:233.429100px;}
.y103{bottom:234.925800px;}
.y2b{bottom:236.514300px;}
.ybc{bottom:241.333200px;}
.y86{bottom:242.083200px;}
.ycf{bottom:242.083350px;}
.yed{bottom:245.921700px;}
.y156{bottom:248.095050px;}
.y6f{bottom:250.587150px;}
.y36{bottom:252.929100px;}
.y102{bottom:254.425800px;}
.y2a{bottom:256.014300px;}
.ybb{bottom:260.833200px;}
.yce{bottom:261.583350px;}
.yec{bottom:265.421700px;}
.y155{bottom:267.595050px;}
.y6e{bottom:270.087150px;}
.y35{bottom:272.429100px;}
.y101{bottom:273.925800px;}
.y29{bottom:275.514300px;}
.yba{bottom:280.333200px;}
.y85{bottom:281.083200px;}
.ycd{bottom:281.083350px;}
.yeb{bottom:284.921850px;}
.y154{bottom:287.095050px;}
.y6d{bottom:289.587150px;}
.y34{bottom:291.929100px;}
.y28{bottom:295.014300px;}
.yb9{bottom:299.833200px;}
.y84{bottom:300.583200px;}
.ycc{bottom:300.583350px;}
.y100{bottom:301.929600px;}
.yea{bottom:304.421850px;}
.y153{bottom:306.595050px;}
.y6c{bottom:309.087150px;}
.yb8{bottom:319.333200px;}
.y83{bottom:320.083200px;}
.ycb{bottom:320.083350px;}
.yff{bottom:321.429600px;}
.ye9{bottom:323.921850px;}
.y152{bottom:326.095050px;}
.y6b{bottom:328.587150px;}
.yb7{bottom:338.833200px;}
.y82{bottom:339.583200px;}
.yca{bottom:339.583350px;}
.yfe{bottom:340.929600px;}
.ye8{bottom:343.421850px;}
.y151{bottom:345.595050px;}
.yb6{bottom:358.333200px;}
.y81{bottom:359.083200px;}
.yfd{bottom:360.429600px;}
.y27{bottom:364.746600px;}
.y150{bottom:365.095050px;}
.y6a{bottom:367.587150px;}
.yc9{bottom:367.587300px;}
.ye7{bottom:371.425650px;}
.yb5{bottom:377.833200px;}
.y80{bottom:378.583200px;}
.yfc{bottom:379.929600px;}
.y14f{bottom:384.595050px;}
.y69{bottom:387.087150px;}
.yc8{bottom:387.087300px;}
.y26{bottom:389.750550px;}
.ye6{bottom:390.925650px;}
.yb4{bottom:397.333200px;}
.y7f{bottom:398.083200px;}
.yfb{bottom:399.429600px;}
.y14e{bottom:404.095050px;}
.y25{bottom:406.250550px;}
.y68{bottom:406.587150px;}
.ye5{bottom:410.425650px;}
.yb3{bottom:416.833200px;}
.y7e{bottom:417.583200px;}
.yfa{bottom:418.929600px;}
.y24{bottom:422.750550px;}
.y14d{bottom:423.595050px;}
.y67{bottom:426.087150px;}
.ye4{bottom:429.925650px;}
.yf9{bottom:438.429600px;}
.y23{bottom:439.250550px;}
.y14c{bottom:443.095050px;}
.yb2{bottom:444.837150px;}
.y66{bottom:445.587150px;}
.ye3{bottom:449.425650px;}
.yf8{bottom:457.929600px;}
.y14b{bottom:462.595050px;}
.y22{bottom:464.254500px;}
.yb1{bottom:464.337150px;}
.y65{bottom:465.087150px;}
.ye2{bottom:468.925650px;}
.y196{bottom:476.215050px;}
.yf7{bottom:477.429600px;}
.y21{bottom:480.754500px;}
.y14a{bottom:482.095050px;}
.yb0{bottom:483.837150px;}
.y64{bottom:484.587150px;}
.y195{bottom:488.215050px;}
.ye1{bottom:488.425800px;}
.yf6{bottom:496.929600px;}
.y20{bottom:497.254500px;}
.y194{bottom:500.215050px;}
.y149{bottom:501.595050px;}
.yaf{bottom:503.337150px;}
.y63{bottom:504.087150px;}
.y193{bottom:512.215050px;}
.y1f{bottom:513.754500px;}
.ye0{bottom:516.429600px;}
.y148{bottom:521.095050px;}
.yae{bottom:522.837150px;}
.y62{bottom:523.587150px;}
.y192{bottom:524.215050px;}
.y1e{bottom:530.254500px;}
.ydf{bottom:535.929600px;}
.y191{bottom:536.215050px;}
.y147{bottom:540.595050px;}
.yad{bottom:542.337150px;}
.y61{bottom:543.087150px;}
.y1d{bottom:546.754500px;}
.y190{bottom:548.215050px;}
.yde{bottom:555.429600px;}
.y146{bottom:560.095050px;}
.y18f{bottom:560.215050px;}
.yac{bottom:561.837150px;}
.y60{bottom:562.587150px;}
.y1c{bottom:571.758450px;}
.y18e{bottom:572.215050px;}
.ydd{bottom:574.929600px;}
.y145{bottom:579.595050px;}
.yab{bottom:581.337150px;}
.y5f{bottom:582.087150px;}
.y18d{bottom:584.215050px;}
.y1b{bottom:588.258450px;}
.ydc{bottom:594.429600px;}
.y18c{bottom:596.215050px;}
.y144{bottom:599.095050px;}
.yaa{bottom:600.837150px;}
.y5e{bottom:601.587150px;}
.y1a{bottom:604.758450px;}
.y18b{bottom:608.215050px;}
.ydb{bottom:613.929600px;}
.y143{bottom:618.595050px;}
.y18a{bottom:620.215050px;}
.ya9{bottom:620.337150px;}
.y5d{bottom:621.087150px;}
.y19{bottom:621.258450px;}
.y189{bottom:632.215050px;}
.yda{bottom:633.429600px;}
.y142{bottom:638.095050px;}
.ya8{bottom:639.837150px;}
.y5c{bottom:640.587150px;}
.y188{bottom:644.215050px;}
.y18{bottom:646.262400px;}
.yd9{bottom:652.929600px;}
.y187{bottom:656.215050px;}
.y141{bottom:657.595050px;}
.ya7{bottom:659.337150px;}
.y5b{bottom:660.087150px;}
.y17{bottom:662.762400px;}
.y186{bottom:668.215050px;}
.y140{bottom:677.095050px;}
.ya6{bottom:678.837150px;}
.y16{bottom:679.262400px;}
.y5a{bottom:679.587150px;}
.y185{bottom:680.215050px;}
.y12f{bottom:686.068650px;}
.y184{bottom:692.215050px;}
.y13f{bottom:696.595050px;}
.ya5{bottom:698.337150px;}
.y59{bottom:699.087150px;}
.y12e{bottom:701.068650px;}
.y15{bottom:701.266350px;}
.y183{bottom:704.215050px;}
.y13e{bottom:716.095050px;}
.y182{bottom:716.215050px;}
.y12d{bottom:717.160950px;}
.y58{bottom:718.587150px;}
.ya4{bottom:726.341100px;}
.y181{bottom:728.215050px;}
.y12c{bottom:732.160950px;}
.y12a{bottom:732.257700px;}
.y13d{bottom:735.595050px;}
.y57{bottom:738.087150px;}
.y180{bottom:740.215050px;}
.yb{bottom:745.104900px;}
.ya3{bottom:745.841100px;}
.y12b{bottom:747.160950px;}
.y17f{bottom:752.215050px;}
.y13c{bottom:755.095050px;}
.y7d{bottom:757.587150px;}
.ya{bottom:758.604900px;}
.y129{bottom:763.985250px;}
.y17e{bottom:764.215050px;}
.ya2{bottom:765.341100px;}
.y56{bottom:766.091100px;}
.y9{bottom:772.104900px;}
.y13b{bottom:774.595050px;}
.y17d{bottom:776.215050px;}
.y7c{bottom:777.087150px;}
.yc7{bottom:777.087300px;}
.y128{bottom:778.985250px;}
.y126{bottom:779.081850px;}
.ya1{bottom:784.841100px;}
.y55{bottom:785.591100px;}
.y17c{bottom:788.215050px;}
.y127{bottom:793.985250px;}
.y13a{bottom:794.095050px;}
.y7b{bottom:796.587150px;}
.yc6{bottom:796.587300px;}
.y8{bottom:799.104900px;}
.y17b{bottom:800.215050px;}
.ya0{bottom:804.341100px;}
.y54{bottom:805.091100px;}
.y125{bottom:810.809550px;}
.y17a{bottom:812.215050px;}
.y7{bottom:812.604900px;}
.y9f{bottom:823.841100px;}
.y179{bottom:824.215050px;}
.y53{bottom:824.591100px;}
.y124{bottom:825.809550px;}
.y122{bottom:825.906150px;}
.y139{bottom:833.095050px;}
.y178{bottom:836.215050px;}
.y123{bottom:840.809550px;}
.y9e{bottom:843.341100px;}
.y52{bottom:844.091100px;}
.y6{bottom:844.100400px;}
.y177{bottom:848.215050px;}
.y138{bottom:852.595050px;}
.y5{bottom:857.600400px;}
.y121{bottom:857.633700px;}
.y176{bottom:860.215050px;}
.y9d{bottom:862.841100px;}
.y51{bottom:863.591100px;}
.y120{bottom:865.230450px;}
.y4{bottom:871.100400px;}
.y137{bottom:872.095050px;}
.y175{bottom:872.215050px;}
.y3{bottom:880.104900px;}
.y9c{bottom:882.341100px;}
.y50{bottom:883.091100px;}
.y174{bottom:884.215050px;}
.y11e{bottom:889.458000px;}
.y136{bottom:891.595050px;}
.y173{bottom:896.215050px;}
.y9b{bottom:901.841100px;}
.y4f{bottom:902.591100px;}
.y11b{bottom:904.458000px;}
.y2{bottom:907.104900px;}
.y172{bottom:908.215050px;}
.y135{bottom:911.095050px;}
.y11f{bottom:911.958000px;}
.y11a{bottom:912.054600px;}
.yc{bottom:912.864300px;}
.y11c{bottom:919.458000px;}
.y171{bottom:920.215050px;}
.y1{bottom:920.604900px;}
.y9a{bottom:921.341100px;}
.y4e{bottom:922.091100px;}
.y134{bottom:930.595050px;}
.y170{bottom:932.215050px;}
.y11d{bottom:934.458000px;}
.y99{bottom:940.841100px;}
.y4d{bottom:941.591100px;}
.y16f{bottom:944.215050px;}
.y133{bottom:950.095050px;}
.y118{bottom:951.282150px;}
.y16e{bottom:956.215050px;}
.y117{bottom:958.878900px;}
.y98{bottom:960.341100px;}
.y4c{bottom:961.091100px;}
.y119{bottom:966.282150px;}
.y16d{bottom:968.215050px;}
.y132{bottom:969.595050px;}
.y12{bottom:972.985500px;}
.y97{bottom:979.841100px;}
.y16c{bottom:980.215050px;}
.y4b{bottom:980.591100px;}
.y116{bottom:983.106450px;}
.y131{bottom:989.095050px;}
.y115{bottom:990.703050px;}
.y16b{bottom:992.215050px;}
.y4a{bottom:1000.091100px;}
.y16a{bottom:1004.215050px;}
.y96{bottom:1007.845050px;}
.y130{bottom:1008.595050px;}
.y114{bottom:1014.930750px;}
.y169{bottom:1016.215050px;}
.y49{bottom:1019.591100px;}
.y111{bottom:1022.430750px;}
.y95{bottom:1027.345050px;}
.yc5{bottom:1028.095050px;}
.y168{bottom:1028.215050px;}
.yf{bottom:1029.889650px;}
.y113{bottom:1029.930750px;}
.y110{bottom:1030.027350px;}
.y48{bottom:1039.091100px;}
.y167{bottom:1040.215050px;}
.y112{bottom:1044.930750px;}
.y94{bottom:1046.845050px;}
.y7a{bottom:1047.595050px;}
.ye{bottom:1047.889650px;}
.y166{bottom:1052.215050px;}
.y47{bottom:1058.591100px;}
.y10f{bottom:1061.755050px;}
.y165{bottom:1064.215050px;}
.y93{bottom:1066.345050px;}
.y79{bottom:1067.095050px;}
.y10e{bottom:1069.351650px;}
.y164{bottom:1076.215050px;}
.y10{bottom:1083.927000px;}
.y92{bottom:1085.845050px;}
.y46{bottom:1086.595050px;}
.y163{bottom:1088.215050px;}
.y10d{bottom:1093.675800px;}
.y162{bottom:1100.215050px;}
.y91{bottom:1105.345050px;}
.y45{bottom:1106.095050px;}
.y10c{bottom:1112.151450px;}
.y161{bottom:1112.215050px;}
.y160{bottom:1124.215050px;}
.y90{bottom:1124.845050px;}
.y44{bottom:1125.595050px;}
.y10b{bottom:1127.151450px;}
.y15f{bottom:1136.215050px;}
.y8f{bottom:1144.345050px;}
.y43{bottom:1145.095050px;}
.y40{bottom:1187.880600px;}
.h5{height:21.274945px;}
.h4{height:21.874456px;}
.hc{height:23.690068px;}
.h2{height:32.507812px;}
.h13{height:32.531250px;}
.h19{height:32.964562px;}
.h15{height:32.965162px;}
.h7{height:33.351562px;}
.hb{height:34.500000px;}
.h6{height:37.494141px;}
.h3{height:37.520508px;}
.hd{height:41.689453px;}
.h11{height:42.000000px;}
.h10{height:44.730469px;}
.h12{height:45.826172px;}
.hf{height:45.858398px;}
.he{height:48.761719px;}
.h8{height:48.796875px;}
.ha{height:58.898438px;}
.h14{height:62.531250px;}
.h18{height:62.964563px;}
.h16{height:62.965163px;}
.h17{height:63.351562px;}
.h9{height:84.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:597.000000px;}
.w2{width:702.000300px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:63.779550px;}
.xd{left:70.157400px;}
.x2{left:73.783500px;}
.x1{left:75.283500px;}
.x1c{left:77.917050px;}
.x17{left:80.917050px;}
.x8{left:87.412950px;}
.xc{left:95.409450px;}
.x10{left:112.163400px;}
.xf{left:116.141850px;}
.xa{left:121.675500px;}
.x7{left:128.945700px;}
.x18{left:204.094500px;}
.x9{left:215.536500px;}
.x11{left:226.555500px;}
.x5{left:230.520450px;}
.x12{left:258.275250px;}
.x1b{left:377.362200px;}
.x13{left:383.604900px;}
.x14{left:430.140150px;}
.x6{left:434.211300px;}
.xe{left:459.212550px;}
.x1d{left:486.212550px;}
.x19{left:548.503950px;}
.x15{left:565.200600px;}
.x16{left:618.922200px;}
.xb{left:638.165100px;}
.x3{left:692.175750px;}
.x1a{left:735.590550px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v1{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v4{vertical-align:26.666667pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000533pt;}
.ls5{letter-spacing:2.240000pt;}
.ls0{letter-spacing:13.323200pt;}
.ls4{letter-spacing:72.051200pt;}
.ws8{word-spacing:-14.666667pt;}
.ws6{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.wsa{word-spacing:-10.666667pt;}
.ws3{word-spacing:-10.538667pt;}
.ws0{word-spacing:-6.996000pt;}
.wsd{word-spacing:-2.240000pt;}
.ws5{word-spacing:-0.031093pt;}
.ws1{word-spacing:-0.027984pt;}
.ws7{word-spacing:0.000000pt;}
.wse{word-spacing:22.880000pt;}
.wsc{word-spacing:50.717867pt;}
.ws4{word-spacing:280.020640pt;}
.ws9{word-spacing:350.415467pt;}
.wsb{word-spacing:473.421333pt;}
._2{margin-left:-1944.394667pt;}
._1f{margin-left:-7.133867pt;}
._8{margin-left:-6.058667pt;}
._3{margin-left:-4.896000pt;}
._4{margin-left:-3.598400pt;}
._0{margin-left:-2.623467pt;}
._1{margin-left:-1.532800pt;}
._5{width:1.541333pt;}
._a{width:2.728000pt;}
._9{width:3.952000pt;}
._7{width:4.858667pt;}
._19{width:6.107200pt;}
._f{width:7.239467pt;}
._e{width:8.406933pt;}
._d{width:10.014400pt;}
._c{width:11.235200pt;}
._6{width:12.208000pt;}
._b{width:13.358400pt;}
._35{width:14.668800pt;}
._10{width:15.904533pt;}
._18{width:17.394667pt;}
._1d{width:18.914133pt;}
._15{width:19.893867pt;}
._20{width:21.612800pt;}
._17{width:22.551467pt;}
._11{width:23.877333pt;}
._1b{width:24.927467pt;}
._1c{width:26.394133pt;}
._26{width:27.731733pt;}
._14{width:28.641067pt;}
._16{width:30.066667pt;}
._1a{width:31.046400pt;}
._27{width:31.996800pt;}
._24{width:34.003200pt;}
._25{width:37.165333pt;}
._22{width:38.796267pt;}
._28{width:40.004800pt;}
._1e{width:41.448000pt;}
._13{width:43.689067pt;}
._23{width:50.517867pt;}
._21{width:51.503467pt;}
._34{width:53.333333pt;}
._33{width:58.220800pt;}
._2d{width:79.230933pt;}
._2b{width:125.090667pt;}
._2a{width:131.497600pt;}
._31{width:139.031467pt;}
._2c{width:178.199467pt;}
._2f{width:179.618667pt;}
._29{width:216.579733pt;}
._32{width:226.978667pt;}
._2e{width:292.173333pt;}
._30{width:294.953600pt;}
._12{width:1415.782400pt;}
.fs2{font-size:27.984000pt;}
.fs5{font-size:31.093333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:18.584667pt;}
.y14{bottom:26.924400pt;}
.yd{bottom:26.934933pt;}
.y42{bottom:27.472133pt;}
.y41{bottom:29.759067pt;}
.y8e{bottom:29.769467pt;}
.y11{bottom:29.947733pt;}
.y78{bottom:59.185067pt;}
.yd8{bottom:59.185200pt;}
.y15e{bottom:64.528933pt;}
.yc4{bottom:68.292667pt;}
.y3f{bottom:68.825867pt;}
.y10a{bottom:70.156267pt;}
.y33{bottom:71.568267pt;}
.yf5{bottom:72.371467pt;}
.y77{bottom:76.518400pt;}
.yd7{bottom:76.518533pt;}
.yc3{bottom:85.626000pt;}
.y3e{bottom:86.159200pt;}
.y109{bottom:87.489600pt;}
.y32{bottom:88.901600pt;}
.yf4{bottom:89.704800pt;}
.y8d{bottom:93.851733pt;}
.yd6{bottom:93.851867pt;}
.y15d{bottom:99.195600pt;}
.y76{bottom:101.410800pt;}
.yc2{bottom:102.959333pt;}
.y3d{bottom:103.492533pt;}
.y108{bottom:104.822933pt;}
.y31{bottom:106.234933pt;}
.y8c{bottom:111.185067pt;}
.yd5{bottom:111.185200pt;}
.yf3{bottom:114.597067pt;}
.y15c{bottom:116.528933pt;}
.y75{bottom:118.744133pt;}
.yc1{bottom:120.292667pt;}
.y3c{bottom:120.825867pt;}
.y107{bottom:122.156267pt;}
.y30{bottom:123.568267pt;}
.y8b{bottom:128.518400pt;}
.yd4{bottom:128.518533pt;}
.yf2{bottom:131.930400pt;}
.y15b{bottom:133.862267pt;}
.y74{bottom:136.077467pt;}
.yc0{bottom:137.626000pt;}
.y3b{bottom:138.159200pt;}
.y2f{bottom:140.901600pt;}
.y8a{bottom:145.851733pt;}
.yd3{bottom:145.851867pt;}
.yf1{bottom:149.263733pt;}
.y15a{bottom:151.195600pt;}
.y73{bottom:153.410800pt;}
.y3a{bottom:155.492533pt;}
.y106{bottom:156.822933pt;}
.y2e{bottom:158.234933pt;}
.ybf{bottom:162.518400pt;}
.y89{bottom:163.185067pt;}
.yd2{bottom:163.185200pt;}
.yf0{bottom:166.597067pt;}
.y159{bottom:168.528933pt;}
.y72{bottom:170.744133pt;}
.y39{bottom:172.825867pt;}
.y105{bottom:174.156267pt;}
.y2d{bottom:175.568267pt;}
.ybe{bottom:179.851733pt;}
.y88{bottom:180.518400pt;}
.yd1{bottom:180.518533pt;}
.yef{bottom:183.930400pt;}
.y158{bottom:185.862267pt;}
.y71{bottom:188.077467pt;}
.y38{bottom:190.159200pt;}
.y104{bottom:191.489600pt;}
.y2c{bottom:192.901600pt;}
.ybd{bottom:197.185067pt;}
.y87{bottom:197.851733pt;}
.yd0{bottom:197.851867pt;}
.yee{bottom:201.263733pt;}
.y157{bottom:203.195600pt;}
.y70{bottom:205.410800pt;}
.y37{bottom:207.492533pt;}
.y103{bottom:208.822933pt;}
.y2b{bottom:210.234933pt;}
.ybc{bottom:214.518400pt;}
.y86{bottom:215.185067pt;}
.ycf{bottom:215.185200pt;}
.yed{bottom:218.597067pt;}
.y156{bottom:220.528933pt;}
.y6f{bottom:222.744133pt;}
.y36{bottom:224.825867pt;}
.y102{bottom:226.156267pt;}
.y2a{bottom:227.568267pt;}
.ybb{bottom:231.851733pt;}
.yce{bottom:232.518533pt;}
.yec{bottom:235.930400pt;}
.y155{bottom:237.862267pt;}
.y6e{bottom:240.077467pt;}
.y35{bottom:242.159200pt;}
.y101{bottom:243.489600pt;}
.y29{bottom:244.901600pt;}
.yba{bottom:249.185067pt;}
.y85{bottom:249.851733pt;}
.ycd{bottom:249.851867pt;}
.yeb{bottom:253.263867pt;}
.y154{bottom:255.195600pt;}
.y6d{bottom:257.410800pt;}
.y34{bottom:259.492533pt;}
.y28{bottom:262.234933pt;}
.yb9{bottom:266.518400pt;}
.y84{bottom:267.185067pt;}
.ycc{bottom:267.185200pt;}
.y100{bottom:268.381867pt;}
.yea{bottom:270.597200pt;}
.y153{bottom:272.528933pt;}
.y6c{bottom:274.744133pt;}
.yb8{bottom:283.851733pt;}
.y83{bottom:284.518400pt;}
.ycb{bottom:284.518533pt;}
.yff{bottom:285.715200pt;}
.ye9{bottom:287.930533pt;}
.y152{bottom:289.862267pt;}
.y6b{bottom:292.077467pt;}
.yb7{bottom:301.185067pt;}
.y82{bottom:301.851733pt;}
.yca{bottom:301.851867pt;}
.yfe{bottom:303.048533pt;}
.ye8{bottom:305.263867pt;}
.y151{bottom:307.195600pt;}
.yb6{bottom:318.518400pt;}
.y81{bottom:319.185067pt;}
.yfd{bottom:320.381867pt;}
.y27{bottom:324.219200pt;}
.y150{bottom:324.528933pt;}
.y6a{bottom:326.744133pt;}
.yc9{bottom:326.744267pt;}
.ye7{bottom:330.156133pt;}
.yb5{bottom:335.851733pt;}
.y80{bottom:336.518400pt;}
.yfc{bottom:337.715200pt;}
.y14f{bottom:341.862267pt;}
.y69{bottom:344.077467pt;}
.yc8{bottom:344.077600pt;}
.y26{bottom:346.444933pt;}
.ye6{bottom:347.489467pt;}
.yb4{bottom:353.185067pt;}
.y7f{bottom:353.851733pt;}
.yfb{bottom:355.048533pt;}
.y14e{bottom:359.195600pt;}
.y25{bottom:361.111600pt;}
.y68{bottom:361.410800pt;}
.ye5{bottom:364.822800pt;}
.yb3{bottom:370.518400pt;}
.y7e{bottom:371.185067pt;}
.yfa{bottom:372.381867pt;}
.y24{bottom:375.778267pt;}
.y14d{bottom:376.528933pt;}
.y67{bottom:378.744133pt;}
.ye4{bottom:382.156133pt;}
.yf9{bottom:389.715200pt;}
.y23{bottom:390.444933pt;}
.y14c{bottom:393.862267pt;}
.yb2{bottom:395.410800pt;}
.y66{bottom:396.077467pt;}
.ye3{bottom:399.489467pt;}
.yf8{bottom:407.048533pt;}
.y14b{bottom:411.195600pt;}
.y22{bottom:412.670667pt;}
.yb1{bottom:412.744133pt;}
.y65{bottom:413.410800pt;}
.ye2{bottom:416.822800pt;}
.y196{bottom:423.302267pt;}
.yf7{bottom:424.381867pt;}
.y21{bottom:427.337333pt;}
.y14a{bottom:428.528933pt;}
.yb0{bottom:430.077467pt;}
.y64{bottom:430.744133pt;}
.y195{bottom:433.968933pt;}
.ye1{bottom:434.156267pt;}
.yf6{bottom:441.715200pt;}
.y20{bottom:442.004000pt;}
.y194{bottom:444.635600pt;}
.y149{bottom:445.862267pt;}
.yaf{bottom:447.410800pt;}
.y63{bottom:448.077467pt;}
.y193{bottom:455.302267pt;}
.y1f{bottom:456.670667pt;}
.ye0{bottom:459.048533pt;}
.y148{bottom:463.195600pt;}
.yae{bottom:464.744133pt;}
.y62{bottom:465.410800pt;}
.y192{bottom:465.968933pt;}
.y1e{bottom:471.337333pt;}
.ydf{bottom:476.381867pt;}
.y191{bottom:476.635600pt;}
.y147{bottom:480.528933pt;}
.yad{bottom:482.077467pt;}
.y61{bottom:482.744133pt;}
.y1d{bottom:486.004000pt;}
.y190{bottom:487.302267pt;}
.yde{bottom:493.715200pt;}
.y146{bottom:497.862267pt;}
.y18f{bottom:497.968933pt;}
.yac{bottom:499.410800pt;}
.y60{bottom:500.077467pt;}
.y1c{bottom:508.229733pt;}
.y18e{bottom:508.635600pt;}
.ydd{bottom:511.048533pt;}
.y145{bottom:515.195600pt;}
.yab{bottom:516.744133pt;}
.y5f{bottom:517.410800pt;}
.y18d{bottom:519.302267pt;}
.y1b{bottom:522.896400pt;}
.ydc{bottom:528.381867pt;}
.y18c{bottom:529.968933pt;}
.y144{bottom:532.528933pt;}
.yaa{bottom:534.077467pt;}
.y5e{bottom:534.744133pt;}
.y1a{bottom:537.563067pt;}
.y18b{bottom:540.635600pt;}
.ydb{bottom:545.715200pt;}
.y143{bottom:549.862267pt;}
.y18a{bottom:551.302267pt;}
.ya9{bottom:551.410800pt;}
.y5d{bottom:552.077467pt;}
.y19{bottom:552.229733pt;}
.y189{bottom:561.968933pt;}
.yda{bottom:563.048533pt;}
.y142{bottom:567.195600pt;}
.ya8{bottom:568.744133pt;}
.y5c{bottom:569.410800pt;}
.y188{bottom:572.635600pt;}
.y18{bottom:574.455467pt;}
.yd9{bottom:580.381867pt;}
.y187{bottom:583.302267pt;}
.y141{bottom:584.528933pt;}
.ya7{bottom:586.077467pt;}
.y5b{bottom:586.744133pt;}
.y17{bottom:589.122133pt;}
.y186{bottom:593.968933pt;}
.y140{bottom:601.862267pt;}
.ya6{bottom:603.410800pt;}
.y16{bottom:603.788800pt;}
.y5a{bottom:604.077467pt;}
.y185{bottom:604.635600pt;}
.y12f{bottom:609.838800pt;}
.y184{bottom:615.302267pt;}
.y13f{bottom:619.195600pt;}
.ya5{bottom:620.744133pt;}
.y59{bottom:621.410800pt;}
.y12e{bottom:623.172133pt;}
.y15{bottom:623.347867pt;}
.y183{bottom:625.968933pt;}
.y13e{bottom:636.528933pt;}
.y182{bottom:636.635600pt;}
.y12d{bottom:637.476400pt;}
.y58{bottom:638.744133pt;}
.ya4{bottom:645.636533pt;}
.y181{bottom:647.302267pt;}
.y12c{bottom:650.809733pt;}
.y12a{bottom:650.895733pt;}
.y13d{bottom:653.862267pt;}
.y57{bottom:656.077467pt;}
.y180{bottom:657.968933pt;}
.yb{bottom:662.315467pt;}
.ya3{bottom:662.969867pt;}
.y12b{bottom:664.143067pt;}
.y17f{bottom:668.635600pt;}
.y13c{bottom:671.195600pt;}
.y7d{bottom:673.410800pt;}
.ya{bottom:674.315467pt;}
.y129{bottom:679.098000pt;}
.y17e{bottom:679.302267pt;}
.ya2{bottom:680.303200pt;}
.y56{bottom:680.969867pt;}
.y9{bottom:686.315467pt;}
.y13b{bottom:688.528933pt;}
.y17d{bottom:689.968933pt;}
.y7c{bottom:690.744133pt;}
.yc7{bottom:690.744267pt;}
.y128{bottom:692.431333pt;}
.y126{bottom:692.517200pt;}
.ya1{bottom:697.636533pt;}
.y55{bottom:698.303200pt;}
.y17c{bottom:700.635600pt;}
.y127{bottom:705.764667pt;}
.y13a{bottom:705.862267pt;}
.y7b{bottom:708.077467pt;}
.yc6{bottom:708.077600pt;}
.y8{bottom:710.315467pt;}
.y17b{bottom:711.302267pt;}
.ya0{bottom:714.969867pt;}
.y54{bottom:715.636533pt;}
.y125{bottom:720.719600pt;}
.y17a{bottom:721.968933pt;}
.y7{bottom:722.315467pt;}
.y9f{bottom:732.303200pt;}
.y179{bottom:732.635600pt;}
.y53{bottom:732.969867pt;}
.y124{bottom:734.052933pt;}
.y122{bottom:734.138800pt;}
.y139{bottom:740.528933pt;}
.y178{bottom:743.302267pt;}
.y123{bottom:747.386267pt;}
.y9e{bottom:749.636533pt;}
.y52{bottom:750.303200pt;}
.y6{bottom:750.311467pt;}
.y177{bottom:753.968933pt;}
.y138{bottom:757.862267pt;}
.y5{bottom:762.311467pt;}
.y121{bottom:762.341067pt;}
.y176{bottom:764.635600pt;}
.y9d{bottom:766.969867pt;}
.y51{bottom:767.636533pt;}
.y120{bottom:769.093733pt;}
.y4{bottom:774.311467pt;}
.y137{bottom:775.195600pt;}
.y175{bottom:775.302267pt;}
.y3{bottom:782.315467pt;}
.y9c{bottom:784.303200pt;}
.y50{bottom:784.969867pt;}
.y174{bottom:785.968933pt;}
.y11e{bottom:790.629333pt;}
.y136{bottom:792.528933pt;}
.y173{bottom:796.635600pt;}
.y9b{bottom:801.636533pt;}
.y4f{bottom:802.303200pt;}
.y11b{bottom:803.962667pt;}
.y2{bottom:806.315467pt;}
.y172{bottom:807.302267pt;}
.y135{bottom:809.862267pt;}
.y11f{bottom:810.629333pt;}
.y11a{bottom:810.715200pt;}
.yc{bottom:811.434933pt;}
.y11c{bottom:817.296000pt;}
.y171{bottom:817.968933pt;}
.y1{bottom:818.315467pt;}
.y9a{bottom:818.969867pt;}
.y4e{bottom:819.636533pt;}
.y134{bottom:827.195600pt;}
.y170{bottom:828.635600pt;}
.y11d{bottom:830.629333pt;}
.y99{bottom:836.303200pt;}
.y4d{bottom:836.969867pt;}
.y16f{bottom:839.302267pt;}
.y133{bottom:844.528933pt;}
.y118{bottom:845.584133pt;}
.y16e{bottom:849.968933pt;}
.y117{bottom:852.336800pt;}
.y98{bottom:853.636533pt;}
.y4c{bottom:854.303200pt;}
.y119{bottom:858.917467pt;}
.y16d{bottom:860.635600pt;}
.y132{bottom:861.862267pt;}
.y12{bottom:864.876000pt;}
.y97{bottom:870.969867pt;}
.y16c{bottom:871.302267pt;}
.y4b{bottom:871.636533pt;}
.y116{bottom:873.872400pt;}
.y131{bottom:879.195600pt;}
.y115{bottom:880.624933pt;}
.y16b{bottom:881.968933pt;}
.y4a{bottom:888.969867pt;}
.y16a{bottom:892.635600pt;}
.y96{bottom:895.862267pt;}
.y130{bottom:896.528933pt;}
.y114{bottom:902.160667pt;}
.y169{bottom:903.302267pt;}
.y49{bottom:906.303200pt;}
.y111{bottom:908.827333pt;}
.y95{bottom:913.195600pt;}
.yc5{bottom:913.862267pt;}
.y168{bottom:913.968933pt;}
.yf{bottom:915.457467pt;}
.y113{bottom:915.494000pt;}
.y110{bottom:915.579867pt;}
.y48{bottom:923.636533pt;}
.y167{bottom:924.635600pt;}
.y112{bottom:928.827333pt;}
.y94{bottom:930.528933pt;}
.y7a{bottom:931.195600pt;}
.ye{bottom:931.457467pt;}
.y166{bottom:935.302267pt;}
.y47{bottom:940.969867pt;}
.y10f{bottom:943.782267pt;}
.y165{bottom:945.968933pt;}
.y93{bottom:947.862267pt;}
.y79{bottom:948.528933pt;}
.y10e{bottom:950.534800pt;}
.y164{bottom:956.635600pt;}
.y10{bottom:963.490667pt;}
.y92{bottom:965.195600pt;}
.y46{bottom:965.862267pt;}
.y163{bottom:967.302267pt;}
.y10d{bottom:972.156267pt;}
.y162{bottom:977.968933pt;}
.y91{bottom:982.528933pt;}
.y45{bottom:983.195600pt;}
.y10c{bottom:988.579067pt;}
.y161{bottom:988.635600pt;}
.y160{bottom:999.302267pt;}
.y90{bottom:999.862267pt;}
.y44{bottom:1000.528933pt;}
.y10b{bottom:1001.912400pt;}
.y15f{bottom:1009.968933pt;}
.y8f{bottom:1017.195600pt;}
.y43{bottom:1017.862267pt;}
.y40{bottom:1055.893867pt;}
.h5{height:18.911062pt;}
.h4{height:19.443961pt;}
.hc{height:21.057839pt;}
.h2{height:28.895833pt;}
.h13{height:28.916667pt;}
.h19{height:29.301833pt;}
.h15{height:29.302367pt;}
.h7{height:29.645833pt;}
.hb{height:30.666667pt;}
.h6{height:33.328125pt;}
.h3{height:33.351562pt;}
.hd{height:37.057292pt;}
.h11{height:37.333333pt;}
.h10{height:39.760417pt;}
.h12{height:40.734375pt;}
.hf{height:40.763021pt;}
.he{height:43.343750pt;}
.h8{height:43.375000pt;}
.ha{height:52.354167pt;}
.h14{height:55.583333pt;}
.h18{height:55.968500pt;}
.h16{height:55.969033pt;}
.h17{height:56.312500pt;}
.h9{height:74.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:530.666667pt;}
.w2{width:624.000267pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:56.692933pt;}
.xd{left:62.362133pt;}
.x2{left:65.585333pt;}
.x1{left:66.918667pt;}
.x1c{left:69.259600pt;}
.x17{left:71.926267pt;}
.x8{left:77.700400pt;}
.xc{left:84.808400pt;}
.x10{left:99.700800pt;}
.xf{left:103.237200pt;}
.xa{left:108.156000pt;}
.x7{left:114.618400pt;}
.x18{left:181.417333pt;}
.x9{left:191.588000pt;}
.x11{left:201.382667pt;}
.x5{left:204.907067pt;}
.x12{left:229.578000pt;}
.x1b{left:335.433067pt;}
.x13{left:340.982133pt;}
.x14{left:382.346800pt;}
.x6{left:385.965600pt;}
.xe{left:408.188933pt;}
.x1d{left:432.188933pt;}
.x19{left:487.559067pt;}
.x15{left:502.400533pt;}
.x16{left:550.153067pt;}
.xb{left:567.257867pt;}
.x3{left:615.267333pt;}
.x1a{left:653.858267pt;}
}




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