
    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_adc40b7bc884ebce56e18b08.woff2')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_f8b3231241ca35d525f1f4bf.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_5e05b17405ba786533c35498.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3bbdc42d3ff39b4b0267a76c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_517fe3ea4def671ef2927955.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3ab8988ab083c96ff6d85308.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3ab8988ab083c96ff6d85308.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_9f07eed16cae7e83f5a182bb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_71d517d1d176f9942f9b69ee.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.833008;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_9f07eed16cae7e83f5a182bb.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_71d517d1d176f9942f9b69ee.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.833008;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_a83bb2cf6e84cbd57cd37b16.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_65392c9de6e06a9b4ee10c27.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ce4ff34de1fc1abcdb175aac.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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;}
.v4{vertical-align:3.555000px;}
.v3{vertical-align:17.982000px;}
.v1{vertical-align:21.978000px;}
.v5{vertical-align:27.000000px;}
.v2{vertical-align:30.000000px;}
.ls2{letter-spacing:-0.096000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:2.520000px;}
.ls0{letter-spacing:15.000000px;}
.ls7{letter-spacing:96.354600px;}
.ls8{letter-spacing:105.318600px;}
.ls6{letter-spacing:108.342600px;}
.ls5{letter-spacing:111.312600px;}
.ls4{letter-spacing:153.595800px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.000000px;}
.ws2{word-spacing:-9.619500px;}
.ws9{word-spacing:-7.870500px;}
.ws8{word-spacing:-2.520000px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:0.096000px;}
.ws5{word-spacing:290.156400px;}
.wsa{word-spacing:319.819800px;}
.ws7{word-spacing:333.240600px;}
.ws6{word-spacing:607.728000px;}
._3{margin-left:-2187.444000px;}
._4{margin-left:-1252.794600px;}
._2{margin-left:-5.972400px;}
._5{margin-left:-4.471800px;}
._0{margin-left:-3.040200px;}
._1{margin-left:-1.053000px;}
._6{width:1.140000px;}
._11{width:2.435400px;}
._17{width:3.768600px;}
._7{width:5.232000px;}
._d{width:6.242400px;}
._c{width:7.385400px;}
._13{width:8.679000px;}
._f{width:10.401600px;}
._10{width:11.444400px;}
._1b{width:12.454200px;}
._19{width:13.886400px;}
._8{width:15.206400px;}
._21{width:16.710000px;}
._16{width:18.011400px;}
._9{width:19.054200px;}
._15{width:20.242200px;}
._b{width:21.648000px;}
._14{width:23.410200px;}
._12{width:24.512400px;}
._e{width:25.779600px;}
._18{width:27.218400px;}
._1f{width:29.033400px;}
._1d{width:31.191600px;}
._35{width:33.059400px;}
._a{width:34.749000px;}
._1c{width:36.240600px;}
._20{width:38.596800px;}
._36{width:40.108200px;}
._37{width:41.375400px;}
._1e{width:46.833600px;}
._3f{width:51.343200px;}
._34{width:54.238800px;}
._40{width:60.000000px;}
._22{width:72.040200px;}
._3e{width:96.421800px;}
._33{width:130.361400px;}
._39{width:175.124400px;}
._24{width:242.197200px;}
._26{width:296.197200px;}
._28{width:309.697200px;}
._3b{width:316.903800px;}
._30{width:319.204800px;}
._2a{width:328.619400px;}
._29{width:337.434600px;}
._32{width:355.218000px;}
._2b{width:367.264800px;}
._3a{width:373.873800px;}
._2e{width:376.770000px;}
._38{width:390.417600px;}
._3c{width:405.301800px;}
._27{width:415.270800px;}
._2d{width:418.026000px;}
._25{width:445.510800px;}
._3d{width:450.283800px;}
._2f{width:469.216800px;}
._2c{width:492.976800px;}
._31{width:563.502000px;}
._23{width:656.704800px;}
._1a{width:1589.674200px;}
.fc5{color:rgb(0,173,239);}
.fc4{color:transparent;}
.fc7{color:rgb(24,23,23);}
.fc6{color:rgb(236,0,140);}
.fc2{color:rgb(48,88,159);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fs6{font-size:38.478000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y10{bottom:14.170950px;}
.y11{bottom:30.289950px;}
.yb{bottom:30.301800px;}
.y48{bottom:30.906150px;}
.y47{bottom:33.478950px;}
.yac{bottom:33.490650px;}
.ye{bottom:33.691200px;}
.y10a{bottom:68.031450px;}
.yf6{bottom:70.315500px;}
.y92{bottom:81.223050px;}
.y109{bottom:81.531450px;}
.y45{bottom:83.077350px;}
.yf5{bottom:89.815500px;}
.y108{bottom:99.395850px;}
.y91{bottom:100.723050px;}
.y44{bottom:102.577350px;}
.y2e{bottom:105.069300px;}
.y68{bottom:106.894200px;}
.yf4{bottom:109.315500px;}
.y107{bottom:112.895850px;}
.y90{bottom:120.223050px;}
.y43{bottom:122.077350px;}
.y2d{bottom:124.569300px;}
.y67{bottom:126.394200px;}
.yf3{bottom:128.815500px;}
.y106{bottom:130.760100px;}
.y8f{bottom:139.723050px;}
.y42{bottom:141.577350px;}
.y2c{bottom:144.069300px;}
.y66{bottom:145.894200px;}
.yf2{bottom:148.315500px;}
.y105{bottom:148.624350px;}
.y8e{bottom:159.223050px;}
.y41{bottom:161.077350px;}
.y2b{bottom:163.569300px;}
.y65{bottom:165.394200px;}
.y104{bottom:166.488600px;}
.yf1{bottom:167.815500px;}
.y8d{bottom:178.723050px;}
.y40{bottom:180.577350px;}
.y103{bottom:184.353000px;}
.y64{bottom:184.894200px;}
.yf0{bottom:187.315500px;}
.y2a{bottom:191.573250px;}
.y102{bottom:197.853000px;}
.y8c{bottom:198.223050px;}
.y3f{bottom:200.077350px;}
.y63{bottom:204.394200px;}
.yef{bottom:206.815500px;}
.y29{bottom:211.073250px;}
.yf9{bottom:211.149450px;}
.y101{bottom:215.717250px;}
.y8b{bottom:217.723050px;}
.y3e{bottom:219.577350px;}
.y62{bottom:223.894200px;}
.yf8{bottom:224.649450px;}
.yee{bottom:226.315500px;}
.y28{bottom:230.573250px;}
.y100{bottom:233.581500px;}
.y8a{bottom:237.223050px;}
.y3d{bottom:239.077350px;}
.y61{bottom:243.394200px;}
.yed{bottom:245.815500px;}
.y27{bottom:250.073250px;}
.yff{bottom:251.445900px;}
.y89{bottom:256.723050px;}
.y3c{bottom:258.577350px;}
.y60{bottom:262.894200px;}
.yec{bottom:265.315500px;}
.yfe{bottom:269.310150px;}
.y26{bottom:269.573250px;}
.y88{bottom:276.223050px;}
.y3b{bottom:278.077350px;}
.y5f{bottom:282.394200px;}
.yeb{bottom:284.815500px;}
.yfd{bottom:287.174400px;}
.y25{bottom:289.073250px;}
.y87{bottom:295.723050px;}
.y3a{bottom:297.577350px;}
.y5e{bottom:301.894200px;}
.yea{bottom:304.315500px;}
.yfc{bottom:305.038650px;}
.y24{bottom:308.573250px;}
.y86{bottom:315.223050px;}
.y39{bottom:317.077350px;}
.y5d{bottom:321.394200px;}
.yfb{bottom:322.902900px;}
.y23{bottom:328.073250px;}
.y85{bottom:334.723050px;}
.yfa{bottom:336.402900px;}
.y38{bottom:336.577350px;}
.y5c{bottom:340.894200px;}
.ye9{bottom:343.315500px;}
.y84{bottom:354.223050px;}
.yf7{bottom:354.267300px;}
.y22{bottom:356.077200px;}
.y37{bottom:356.077350px;}
.y5b{bottom:360.394200px;}
.ye8{bottom:362.815500px;}
.y10c{bottom:372.054600px;}
.y83{bottom:373.723050px;}
.y21{bottom:375.577200px;}
.y36{bottom:375.577350px;}
.y5a{bottom:379.894200px;}
.ye7{bottom:382.315500px;}
.y10b{bottom:387.054600px;}
.y82{bottom:393.223050px;}
.y20{bottom:395.077200px;}
.y35{bottom:395.077350px;}
.y59{bottom:399.394200px;}
.ye6{bottom:401.815500px;}
.y81{bottom:412.723050px;}
.y1f{bottom:414.577200px;}
.y34{bottom:414.577350px;}
.y58{bottom:418.894200px;}
.ye5{bottom:421.315500px;}
.y80{bottom:432.223050px;}
.y1e{bottom:434.077200px;}
.y33{bottom:434.077350px;}
.yd0{bottom:436.333200px;}
.y57{bottom:438.394200px;}
.ye4{bottom:440.815500px;}
.y7f{bottom:451.723050px;}
.y1d{bottom:453.577200px;}
.y32{bottom:453.577350px;}
.ycf{bottom:455.833200px;}
.y56{bottom:457.894200px;}
.ye3{bottom:468.819450px;}
.y7e{bottom:471.223050px;}
.y1c{bottom:473.077200px;}
.y31{bottom:473.077350px;}
.yce{bottom:475.333200px;}
.y55{bottom:477.394200px;}
.ye2{bottom:488.319450px;}
.y7d{bottom:490.723050px;}
.y1b{bottom:492.577200px;}
.y30{bottom:492.577350px;}
.ycd{bottom:494.833200px;}
.y54{bottom:496.894200px;}
.ye1{bottom:507.819450px;}
.y7c{bottom:510.223050px;}
.y1a{bottom:512.077200px;}
.y2f{bottom:512.077350px;}
.ycc{bottom:514.333200px;}
.y53{bottom:516.394200px;}
.ye0{bottom:527.319450px;}
.y7b{bottom:529.723050px;}
.ycb{bottom:533.833200px;}
.y52{bottom:535.894200px;}
.ydf{bottom:546.819450px;}
.y7a{bottom:549.223050px;}
.y51{bottom:555.394200px;}
.yca{bottom:561.837150px;}
.yde{bottom:566.319450px;}
.y79{bottom:568.723050px;}
.y50{bottom:574.894200px;}
.y19{bottom:575.077350px;}
.yc9{bottom:581.337150px;}
.ydd{bottom:585.819450px;}
.y78{bottom:588.223050px;}
.yc8{bottom:600.837150px;}
.y18{bottom:601.581300px;}
.y4f{bottom:602.898150px;}
.ydc{bottom:605.319450px;}
.y77{bottom:607.723050px;}
.y17{bottom:619.581300px;}
.yc7{bottom:620.337150px;}
.y4e{bottom:622.398150px;}
.ydb{bottom:624.819450px;}
.y76{bottom:627.223050px;}
.y16{bottom:637.581300px;}
.yc6{bottom:639.837150px;}
.y4d{bottom:641.898150px;}
.y75{bottom:646.723050px;}
.yda{bottom:652.823400px;}
.y15{bottom:655.581300px;}
.yc5{bottom:659.337150px;}
.y4c{bottom:661.398150px;}
.y74{bottom:666.223050px;}
.yd9{bottom:672.323400px;}
.y14{bottom:673.581300px;}
.yc4{bottom:678.837150px;}
.y4b{bottom:680.898150px;}
.y73{bottom:685.723050px;}
.y13{bottom:691.581300px;}
.yd8{bottom:691.823400px;}
.yc3{bottom:698.337150px;}
.y4a{bottom:700.398150px;}
.y72{bottom:705.223050px;}
.yd7{bottom:711.323400px;}
.y12{bottom:715.085100px;}
.yc2{bottom:717.837150px;}
.y49{bottom:719.898150px;}
.y71{bottom:724.723050px;}
.yd6{bottom:730.823400px;}
.y70{bottom:744.223050px;}
.yc1{bottom:745.841100px;}
.yd5{bottom:750.323400px;}
.yaa{bottom:754.907400px;}
.y6f{bottom:763.723050px;}
.yc0{bottom:765.341100px;}
.yd4{bottom:769.823400px;}
.ya9{bottom:769.907400px;}
.y9{bottom:772.104900px;}
.y6e{bottom:783.223050px;}
.ybf{bottom:784.841100px;}
.ya8{bottom:784.907400px;}
.y8{bottom:785.604900px;}
.yd3{bottom:789.323400px;}
.y7{bottom:799.104900px;}
.ya7{bottom:799.907400px;}
.y6d{bottom:802.723050px;}
.ybe{bottom:804.341100px;}
.yd2{bottom:808.823400px;}
.ya6{bottom:814.942950px;}
.y6c{bottom:822.223050px;}
.ybd{bottom:823.841100px;}
.y6{bottom:826.104900px;}
.yd1{bottom:828.323400px;}
.ya5{bottom:829.942950px;}
.y13a{bottom:834.595050px;}
.y5{bottom:839.604900px;}
.y6b{bottom:841.723050px;}
.ybc{bottom:843.341100px;}
.y139{bottom:846.595050px;}
.ya4{bottom:847.807200px;}
.y138{bottom:858.595050px;}
.y6a{bottom:861.223050px;}
.ybb{bottom:862.841100px;}
.ya3{bottom:865.671600px;}
.y4{bottom:866.604900px;}
.y121{bottom:867.996150px;}
.y137{bottom:870.595050px;}
.y120{bottom:874.854900px;}
.y3{bottom:880.104900px;}
.y69{bottom:880.723050px;}
.yba{bottom:882.341100px;}
.y136{bottom:882.595050px;}
.ya2{bottom:883.535850px;}
.y135{bottom:894.595050px;}
.y11f{bottom:899.360400px;}
.ya1{bottom:901.400100px;}
.yb9{bottom:901.841100px;}
.y11e{bottom:906.219150px;}
.y134{bottom:906.595050px;}
.y2{bottom:907.104900px;}
.ya{bottom:912.864300px;}
.y133{bottom:918.595050px;}
.ya0{bottom:919.264350px;}
.y1{bottom:920.604900px;}
.yb8{bottom:921.341100px;}
.yab{bottom:928.009050px;}
.y132{bottom:930.595050px;}
.y11d{bottom:932.472750px;}
.y9f{bottom:937.128600px;}
.y131{bottom:942.595050px;}
.y14c{bottom:944.215050px;}
.yb7{bottom:949.345050px;}
.y11c{bottom:953.615550px;}
.y130{bottom:954.595050px;}
.y9e{bottom:954.993000px;}
.y14b{bottom:956.215050px;}
.y12f{bottom:966.595050px;}
.y14a{bottom:968.215050px;}
.yb6{bottom:968.845050px;}
.y9d{bottom:972.857250px;}
.y11b{bottom:974.758350px;}
.yf{bottom:977.674500px;}
.y12e{bottom:978.595050px;}
.y149{bottom:980.215050px;}
.yb5{bottom:988.345050px;}
.y12d{bottom:990.595050px;}
.y9c{bottom:990.721500px;}
.y148{bottom:992.215050px;}
.y11a{bottom:995.901150px;}
.y12c{bottom:1002.595050px;}
.y147{bottom:1004.215050px;}
.yb4{bottom:1007.845050px;}
.y9b{bottom:1008.585900px;}
.y12b{bottom:1014.595050px;}
.y117{bottom:1015.296000px;}
.y146{bottom:1016.215050px;}
.y119{bottom:1022.046000px;}
.y9a{bottom:1026.450000px;}
.y12a{bottom:1026.595050px;}
.yb3{bottom:1027.345050px;}
.y145{bottom:1028.215050px;}
.y116{bottom:1028.796000px;}
.y114{bottom:1028.904750px;}
.yc{bottom:1029.889650px;}
.y118{bottom:1035.546000px;}
.y129{bottom:1038.595050px;}
.y144{bottom:1040.215050px;}
.y115{bottom:1042.296000px;}
.y99{bottom:1044.314400px;}
.yb2{bottom:1046.845050px;}
.y128{bottom:1050.595050px;}
.y143{bottom:1052.215050px;}
.y111{bottom:1060.160250px;}
.y98{bottom:1062.178650px;}
.y127{bottom:1062.595050px;}
.y142{bottom:1064.215050px;}
.yb1{bottom:1066.345050px;}
.y113{bottom:1066.910250px;}
.y110{bottom:1073.660250px;}
.y10e{bottom:1073.769000px;}
.y141{bottom:1076.215050px;}
.y97{bottom:1080.043050px;}
.y112{bottom:1080.410250px;}
.yd{bottom:1083.927000px;}
.yb0{bottom:1085.845050px;}
.y126{bottom:1086.595050px;}
.y10f{bottom:1087.160250px;}
.y140{bottom:1088.215050px;}
.y96{bottom:1097.907300px;}
.y13f{bottom:1100.215050px;}
.yaf{bottom:1105.345050px;}
.y10d{bottom:1106.772600px;}
.y13e{bottom:1112.215050px;}
.y95{bottom:1116.135000px;}
.y13d{bottom:1124.215050px;}
.yae{bottom:1124.845050px;}
.y125{bottom:1125.595050px;}
.y123{bottom:1130.360850px;}
.y94{bottom:1131.135000px;}
.y13c{bottom:1136.215050px;}
.yad{bottom:1144.345050px;}
.y124{bottom:1145.095050px;}
.y122{bottom:1145.360850px;}
.y93{bottom:1146.135000px;}
.y13b{bottom:1148.215050px;}
.y46{bottom:1187.880600px;}
.h2{height:32.531250px;}
.h9{height:33.000000px;}
.h5{height:33.351562px;}
.hf{height:36.597656px;}
.h13{height:37.085508px;}
.h4{height:37.494141px;}
.h3{height:37.520508px;}
.h11{height:39.856456px;}
.h12{height:40.957031px;}
.ha{height:41.689453px;}
.he{height:42.000000px;}
.hd{height:44.730469px;}
.hb{height:45.858398px;}
.hc{height:48.713446px;}
.h6{height:48.796875px;}
.h8{height:58.898438px;}
.h14{height:64.085508px;}
.h10{height:67.520508px;}
.h7{height:84.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:600.000000px;}
.w2{width:702.000300px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:9.026100px;}
.x4{left:63.779550px;}
.xf{left:69.156450px;}
.xc{left:70.157400px;}
.x2{left:73.783500px;}
.x1{left:75.283500px;}
.x10{left:80.496900px;}
.x7{left:87.412950px;}
.x15{left:90.779550px;}
.xb{left:95.409450px;}
.x6{left:128.945700px;}
.xe{left:130.630650px;}
.x11{left:163.700700px;}
.x8{left:212.536500px;}
.x5{left:220.804200px;}
.xd{left:459.212550px;}
.x12{left:465.962550px;}
.x16{left:486.212550px;}
.x13{left:502.795200px;}
.xa{left:638.165100px;}
.x14{left:655.866150px;}
.x3{left:688.791000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.160000pt;}
.v3{vertical-align:15.984000pt;}
.v1{vertical-align:19.536000pt;}
.v5{vertical-align:24.000000pt;}
.v2{vertical-align:26.666667pt;}
.ls2{letter-spacing:-0.085333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:2.240000pt;}
.ls0{letter-spacing:13.333333pt;}
.ls7{letter-spacing:85.648533pt;}
.ls8{letter-spacing:93.616533pt;}
.ls6{letter-spacing:96.304533pt;}
.ls5{letter-spacing:98.944533pt;}
.ls4{letter-spacing:136.529600pt;}
.ws1{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.000000pt;}
.wsb{word-spacing:-10.666667pt;}
.ws2{word-spacing:-8.550667pt;}
.ws9{word-spacing:-6.996000pt;}
.ws8{word-spacing:-2.240000pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:0.085333pt;}
.ws5{word-spacing:257.916800pt;}
.wsa{word-spacing:284.284267pt;}
.ws7{word-spacing:296.213867pt;}
.ws6{word-spacing:540.202667pt;}
._3{margin-left:-1944.394667pt;}
._4{margin-left:-1113.595200pt;}
._2{margin-left:-5.308800pt;}
._5{margin-left:-3.974933pt;}
._0{margin-left:-2.702400pt;}
._1{margin-left:-0.936000pt;}
._6{width:1.013333pt;}
._11{width:2.164800pt;}
._17{width:3.349867pt;}
._7{width:4.650667pt;}
._d{width:5.548800pt;}
._c{width:6.564800pt;}
._13{width:7.714667pt;}
._f{width:9.245867pt;}
._10{width:10.172800pt;}
._1b{width:11.070400pt;}
._19{width:12.343467pt;}
._8{width:13.516800pt;}
._21{width:14.853333pt;}
._16{width:16.010133pt;}
._9{width:16.937067pt;}
._15{width:17.993067pt;}
._b{width:19.242667pt;}
._14{width:20.809067pt;}
._12{width:21.788800pt;}
._e{width:22.915200pt;}
._18{width:24.194133pt;}
._1f{width:25.807467pt;}
._1d{width:27.725867pt;}
._35{width:29.386133pt;}
._a{width:30.888000pt;}
._1c{width:32.213867pt;}
._20{width:34.308267pt;}
._36{width:35.651733pt;}
._37{width:36.778133pt;}
._1e{width:41.629867pt;}
._3f{width:45.638400pt;}
._34{width:48.212267pt;}
._40{width:53.333333pt;}
._22{width:64.035733pt;}
._3e{width:85.708267pt;}
._33{width:115.876800pt;}
._39{width:155.666133pt;}
._24{width:215.286400pt;}
._26{width:263.286400pt;}
._28{width:275.286400pt;}
._3b{width:281.692267pt;}
._30{width:283.737600pt;}
._2a{width:292.106133pt;}
._29{width:299.941867pt;}
._32{width:315.749333pt;}
._2b{width:326.457600pt;}
._3a{width:332.332267pt;}
._2e{width:334.906667pt;}
._38{width:347.037867pt;}
._3c{width:360.268267pt;}
._27{width:369.129600pt;}
._2d{width:371.578667pt;}
._25{width:396.009600pt;}
._3d{width:400.252267pt;}
._2f{width:417.081600pt;}
._2c{width:438.201600pt;}
._31{width:500.890667pt;}
._23{width:583.737600pt;}
._1a{width:1413.043733pt;}
.fs7{font-size:27.984000pt;}
.fs6{font-size:34.202667pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:12.596400pt;}
.y11{bottom:26.924400pt;}
.yb{bottom:26.934933pt;}
.y48{bottom:27.472133pt;}
.y47{bottom:29.759067pt;}
.yac{bottom:29.769467pt;}
.ye{bottom:29.947733pt;}
.y10a{bottom:60.472400pt;}
.yf6{bottom:62.502667pt;}
.y92{bottom:72.198267pt;}
.y109{bottom:72.472400pt;}
.y45{bottom:73.846533pt;}
.yf5{bottom:79.836000pt;}
.y108{bottom:88.351867pt;}
.y91{bottom:89.531600pt;}
.y44{bottom:91.179867pt;}
.y2e{bottom:93.394933pt;}
.y68{bottom:95.017067pt;}
.yf4{bottom:97.169333pt;}
.y107{bottom:100.351867pt;}
.y90{bottom:106.864933pt;}
.y43{bottom:108.513200pt;}
.y2d{bottom:110.728267pt;}
.y67{bottom:112.350400pt;}
.yf3{bottom:114.502667pt;}
.y106{bottom:116.231200pt;}
.y8f{bottom:124.198267pt;}
.y42{bottom:125.846533pt;}
.y2c{bottom:128.061600pt;}
.y66{bottom:129.683733pt;}
.yf2{bottom:131.836000pt;}
.y105{bottom:132.110533pt;}
.y8e{bottom:141.531600pt;}
.y41{bottom:143.179867pt;}
.y2b{bottom:145.394933pt;}
.y65{bottom:147.017067pt;}
.y104{bottom:147.989867pt;}
.yf1{bottom:149.169333pt;}
.y8d{bottom:158.864933pt;}
.y40{bottom:160.513200pt;}
.y103{bottom:163.869333pt;}
.y64{bottom:164.350400pt;}
.yf0{bottom:166.502667pt;}
.y2a{bottom:170.287333pt;}
.y102{bottom:175.869333pt;}
.y8c{bottom:176.198267pt;}
.y3f{bottom:177.846533pt;}
.y63{bottom:181.683733pt;}
.yef{bottom:183.836000pt;}
.y29{bottom:187.620667pt;}
.yf9{bottom:187.688400pt;}
.y101{bottom:191.748667pt;}
.y8b{bottom:193.531600pt;}
.y3e{bottom:195.179867pt;}
.y62{bottom:199.017067pt;}
.yf8{bottom:199.688400pt;}
.yee{bottom:201.169333pt;}
.y28{bottom:204.954000pt;}
.y100{bottom:207.628000pt;}
.y8a{bottom:210.864933pt;}
.y3d{bottom:212.513200pt;}
.y61{bottom:216.350400pt;}
.yed{bottom:218.502667pt;}
.y27{bottom:222.287333pt;}
.yff{bottom:223.507467pt;}
.y89{bottom:228.198267pt;}
.y3c{bottom:229.846533pt;}
.y60{bottom:233.683733pt;}
.yec{bottom:235.836000pt;}
.yfe{bottom:239.386800pt;}
.y26{bottom:239.620667pt;}
.y88{bottom:245.531600pt;}
.y3b{bottom:247.179867pt;}
.y5f{bottom:251.017067pt;}
.yeb{bottom:253.169333pt;}
.yfd{bottom:255.266133pt;}
.y25{bottom:256.954000pt;}
.y87{bottom:262.864933pt;}
.y3a{bottom:264.513200pt;}
.y5e{bottom:268.350400pt;}
.yea{bottom:270.502667pt;}
.yfc{bottom:271.145467pt;}
.y24{bottom:274.287333pt;}
.y86{bottom:280.198267pt;}
.y39{bottom:281.846533pt;}
.y5d{bottom:285.683733pt;}
.yfb{bottom:287.024800pt;}
.y23{bottom:291.620667pt;}
.y85{bottom:297.531600pt;}
.yfa{bottom:299.024800pt;}
.y38{bottom:299.179867pt;}
.y5c{bottom:303.017067pt;}
.ye9{bottom:305.169333pt;}
.y84{bottom:314.864933pt;}
.yf7{bottom:314.904267pt;}
.y22{bottom:316.513067pt;}
.y37{bottom:316.513200pt;}
.y5b{bottom:320.350400pt;}
.ye8{bottom:322.502667pt;}
.y10c{bottom:330.715200pt;}
.y83{bottom:332.198267pt;}
.y21{bottom:333.846400pt;}
.y36{bottom:333.846533pt;}
.y5a{bottom:337.683733pt;}
.ye7{bottom:339.836000pt;}
.y10b{bottom:344.048533pt;}
.y82{bottom:349.531600pt;}
.y20{bottom:351.179733pt;}
.y35{bottom:351.179867pt;}
.y59{bottom:355.017067pt;}
.ye6{bottom:357.169333pt;}
.y81{bottom:366.864933pt;}
.y1f{bottom:368.513067pt;}
.y34{bottom:368.513200pt;}
.y58{bottom:372.350400pt;}
.ye5{bottom:374.502667pt;}
.y80{bottom:384.198267pt;}
.y1e{bottom:385.846400pt;}
.y33{bottom:385.846533pt;}
.yd0{bottom:387.851733pt;}
.y57{bottom:389.683733pt;}
.ye4{bottom:391.836000pt;}
.y7f{bottom:401.531600pt;}
.y1d{bottom:403.179733pt;}
.y32{bottom:403.179867pt;}
.ycf{bottom:405.185067pt;}
.y56{bottom:407.017067pt;}
.ye3{bottom:416.728400pt;}
.y7e{bottom:418.864933pt;}
.y1c{bottom:420.513067pt;}
.y31{bottom:420.513200pt;}
.yce{bottom:422.518400pt;}
.y55{bottom:424.350400pt;}
.ye2{bottom:434.061733pt;}
.y7d{bottom:436.198267pt;}
.y1b{bottom:437.846400pt;}
.y30{bottom:437.846533pt;}
.ycd{bottom:439.851733pt;}
.y54{bottom:441.683733pt;}
.ye1{bottom:451.395067pt;}
.y7c{bottom:453.531600pt;}
.y1a{bottom:455.179733pt;}
.y2f{bottom:455.179867pt;}
.ycc{bottom:457.185067pt;}
.y53{bottom:459.017067pt;}
.ye0{bottom:468.728400pt;}
.y7b{bottom:470.864933pt;}
.ycb{bottom:474.518400pt;}
.y52{bottom:476.350400pt;}
.ydf{bottom:486.061733pt;}
.y7a{bottom:488.198267pt;}
.y51{bottom:493.683733pt;}
.yca{bottom:499.410800pt;}
.yde{bottom:503.395067pt;}
.y79{bottom:505.531600pt;}
.y50{bottom:511.017067pt;}
.y19{bottom:511.179867pt;}
.yc9{bottom:516.744133pt;}
.ydd{bottom:520.728400pt;}
.y78{bottom:522.864933pt;}
.yc8{bottom:534.077467pt;}
.y18{bottom:534.738933pt;}
.y4f{bottom:535.909467pt;}
.ydc{bottom:538.061733pt;}
.y77{bottom:540.198267pt;}
.y17{bottom:550.738933pt;}
.yc7{bottom:551.410800pt;}
.y4e{bottom:553.242800pt;}
.ydb{bottom:555.395067pt;}
.y76{bottom:557.531600pt;}
.y16{bottom:566.738933pt;}
.yc6{bottom:568.744133pt;}
.y4d{bottom:570.576133pt;}
.y75{bottom:574.864933pt;}
.yda{bottom:580.287467pt;}
.y15{bottom:582.738933pt;}
.yc5{bottom:586.077467pt;}
.y4c{bottom:587.909467pt;}
.y74{bottom:592.198267pt;}
.yd9{bottom:597.620800pt;}
.y14{bottom:598.738933pt;}
.yc4{bottom:603.410800pt;}
.y4b{bottom:605.242800pt;}
.y73{bottom:609.531600pt;}
.y13{bottom:614.738933pt;}
.yd8{bottom:614.954133pt;}
.yc3{bottom:620.744133pt;}
.y4a{bottom:622.576133pt;}
.y72{bottom:626.864933pt;}
.yd7{bottom:632.287467pt;}
.y12{bottom:635.631200pt;}
.yc2{bottom:638.077467pt;}
.y49{bottom:639.909467pt;}
.y71{bottom:644.198267pt;}
.yd6{bottom:649.620800pt;}
.y70{bottom:661.531600pt;}
.yc1{bottom:662.969867pt;}
.yd5{bottom:666.954133pt;}
.yaa{bottom:671.028800pt;}
.y6f{bottom:678.864933pt;}
.yc0{bottom:680.303200pt;}
.yd4{bottom:684.287467pt;}
.ya9{bottom:684.362133pt;}
.y9{bottom:686.315467pt;}
.y6e{bottom:696.198267pt;}
.ybf{bottom:697.636533pt;}
.ya8{bottom:697.695467pt;}
.y8{bottom:698.315467pt;}
.yd3{bottom:701.620800pt;}
.y7{bottom:710.315467pt;}
.ya7{bottom:711.028800pt;}
.y6d{bottom:713.531600pt;}
.ybe{bottom:714.969867pt;}
.yd2{bottom:718.954133pt;}
.ya6{bottom:724.393733pt;}
.y6c{bottom:730.864933pt;}
.ybd{bottom:732.303200pt;}
.y6{bottom:734.315467pt;}
.yd1{bottom:736.287467pt;}
.ya5{bottom:737.727067pt;}
.y13a{bottom:741.862267pt;}
.y5{bottom:746.315467pt;}
.y6b{bottom:748.198267pt;}
.ybc{bottom:749.636533pt;}
.y139{bottom:752.528933pt;}
.ya4{bottom:753.606400pt;}
.y138{bottom:763.195600pt;}
.y6a{bottom:765.531600pt;}
.ybb{bottom:766.969867pt;}
.ya3{bottom:769.485867pt;}
.y4{bottom:770.315467pt;}
.y121{bottom:771.552133pt;}
.y137{bottom:773.862267pt;}
.y120{bottom:777.648800pt;}
.y3{bottom:782.315467pt;}
.y69{bottom:782.864933pt;}
.yba{bottom:784.303200pt;}
.y136{bottom:784.528933pt;}
.ya2{bottom:785.365200pt;}
.y135{bottom:795.195600pt;}
.y11f{bottom:799.431467pt;}
.ya1{bottom:801.244533pt;}
.yb9{bottom:801.636533pt;}
.y11e{bottom:805.528133pt;}
.y134{bottom:805.862267pt;}
.y2{bottom:806.315467pt;}
.ya{bottom:811.434933pt;}
.y133{bottom:816.528933pt;}
.ya0{bottom:817.123867pt;}
.y1{bottom:818.315467pt;}
.yb8{bottom:818.969867pt;}
.yab{bottom:824.896933pt;}
.y132{bottom:827.195600pt;}
.y11d{bottom:828.864667pt;}
.y9f{bottom:833.003200pt;}
.y131{bottom:837.862267pt;}
.y14c{bottom:839.302267pt;}
.yb7{bottom:843.862267pt;}
.y11c{bottom:847.658267pt;}
.y130{bottom:848.528933pt;}
.y9e{bottom:848.882667pt;}
.y14b{bottom:849.968933pt;}
.y12f{bottom:859.195600pt;}
.y14a{bottom:860.635600pt;}
.yb6{bottom:861.195600pt;}
.y9d{bottom:864.762000pt;}
.y11b{bottom:866.451867pt;}
.yf{bottom:869.044000pt;}
.y12e{bottom:869.862267pt;}
.y149{bottom:871.302267pt;}
.yb5{bottom:878.528933pt;}
.y12d{bottom:880.528933pt;}
.y9c{bottom:880.641333pt;}
.y148{bottom:881.968933pt;}
.y11a{bottom:885.245467pt;}
.y12c{bottom:891.195600pt;}
.y147{bottom:892.635600pt;}
.yb4{bottom:895.862267pt;}
.y9b{bottom:896.520800pt;}
.y12b{bottom:901.862267pt;}
.y117{bottom:902.485333pt;}
.y146{bottom:903.302267pt;}
.y119{bottom:908.485333pt;}
.y9a{bottom:912.400000pt;}
.y12a{bottom:912.528933pt;}
.yb3{bottom:913.195600pt;}
.y145{bottom:913.968933pt;}
.y116{bottom:914.485333pt;}
.y114{bottom:914.582000pt;}
.yc{bottom:915.457467pt;}
.y118{bottom:920.485333pt;}
.y129{bottom:923.195600pt;}
.y144{bottom:924.635600pt;}
.y115{bottom:926.485333pt;}
.y99{bottom:928.279467pt;}
.yb2{bottom:930.528933pt;}
.y128{bottom:933.862267pt;}
.y143{bottom:935.302267pt;}
.y111{bottom:942.364667pt;}
.y98{bottom:944.158800pt;}
.y127{bottom:944.528933pt;}
.y142{bottom:945.968933pt;}
.yb1{bottom:947.862267pt;}
.y113{bottom:948.364667pt;}
.y110{bottom:954.364667pt;}
.y10e{bottom:954.461333pt;}
.y141{bottom:956.635600pt;}
.y97{bottom:960.038267pt;}
.y112{bottom:960.364667pt;}
.yd{bottom:963.490667pt;}
.yb0{bottom:965.195600pt;}
.y126{bottom:965.862267pt;}
.y10f{bottom:966.364667pt;}
.y140{bottom:967.302267pt;}
.y96{bottom:975.917600pt;}
.y13f{bottom:977.968933pt;}
.yaf{bottom:982.528933pt;}
.y10d{bottom:983.797867pt;}
.y13e{bottom:988.635600pt;}
.y95{bottom:992.120000pt;}
.y13d{bottom:999.302267pt;}
.yae{bottom:999.862267pt;}
.y125{bottom:1000.528933pt;}
.y123{bottom:1004.765200pt;}
.y94{bottom:1005.453333pt;}
.y13c{bottom:1009.968933pt;}
.yad{bottom:1017.195600pt;}
.y124{bottom:1017.862267pt;}
.y122{bottom:1018.098533pt;}
.y93{bottom:1018.786667pt;}
.y13b{bottom:1020.635600pt;}
.y46{bottom:1055.893867pt;}
.h2{height:28.916667pt;}
.h9{height:29.333333pt;}
.h5{height:29.645833pt;}
.hf{height:32.531250pt;}
.h13{height:32.964896pt;}
.h4{height:33.328125pt;}
.h3{height:33.351562pt;}
.h11{height:35.427961pt;}
.h12{height:36.406250pt;}
.ha{height:37.057292pt;}
.he{height:37.333333pt;}
.hd{height:39.760417pt;}
.hb{height:40.763021pt;}
.hc{height:43.300841pt;}
.h6{height:43.375000pt;}
.h8{height:52.354167pt;}
.h14{height:56.964896pt;}
.h10{height:60.018229pt;}
.h7{height:74.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:533.333333pt;}
.w2{width:624.000267pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:8.023200pt;}
.x4{left:56.692933pt;}
.xf{left:61.472400pt;}
.xc{left:62.362133pt;}
.x2{left:65.585333pt;}
.x1{left:66.918667pt;}
.x10{left:71.552800pt;}
.x7{left:77.700400pt;}
.x15{left:80.692933pt;}
.xb{left:84.808400pt;}
.x6{left:114.618400pt;}
.xe{left:116.116133pt;}
.x11{left:145.511733pt;}
.x8{left:188.921333pt;}
.x5{left:196.270400pt;}
.xd{left:408.188933pt;}
.x12{left:414.188933pt;}
.x16{left:432.188933pt;}
.x13{left:446.929067pt;}
.xa{left:567.257867pt;}
.x14{left:582.992133pt;}
.x3{left:612.258667pt;}
}




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