
    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_1aec11ec5c30573a202368ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_ea50a4b85775134ee4eaac16.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_042228c236625c385d7bb306.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_2dec65e233b4596035e97ade.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_a1da2a0731d6aab178d0ebef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693359;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_39dc3046455b300a9defc5ef.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_15c520a5be75f484bbd21ab4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.692383;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_f2ab434d94d91b363f01f7f2.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m4{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-42.519600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:9.027000px;}
.v2{vertical-align:39.600000px;}
.v4{vertical-align:42.519600px;}
.v3{vertical-align:88.119600px;}
.ls11{letter-spacing:-2.553000px;}
.lsa{letter-spacing:-2.442000px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000291px;}
.ls8{letter-spacing:0.000670px;}
.ls2{letter-spacing:0.009600px;}
.lsb{letter-spacing:0.011126px;}
.ls7{letter-spacing:0.011400px;}
.ls10{letter-spacing:0.011703px;}
.lse{letter-spacing:0.012000px;}
.ls12{letter-spacing:0.316800px;}
.ls0{letter-spacing:2.781600px;}
.ls5{letter-spacing:10.418400px;}
.lsd{letter-spacing:10.484400px;}
.ls3{letter-spacing:12.668400px;}
.lsf{letter-spacing:15.453564px;}
.ls1{letter-spacing:19.502400px;}
.ls6{letter-spacing:27.673200px;}
.ls9{letter-spacing:43.884000px;}
.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;}
}
.wse{word-spacing:-43.884000px;}
.ws2{word-spacing:-17.250000px;}
.ws1{word-spacing:-15.000000px;}
.ws3{word-spacing:-0.069000px;}
.ws6{word-spacing:-0.066000px;}
.ws0{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.wsf{word-spacing:2.553000px;}
.wsa{word-spacing:72.628200px;}
.ws9{word-spacing:77.988000px;}
.wsb{word-spacing:115.435800px;}
.wsc{word-spacing:184.101000px;}
.wsd{word-spacing:194.464200px;}
.ws7{word-spacing:250.227600px;}
.ws8{word-spacing:802.257600px;}
.ws5{word-spacing:1508.274600px;}
._24{margin-left:-43.498200px;}
._16{margin-left:-17.262000px;}
._5{margin-left:-11.136600px;}
._19{margin-left:-9.223200px;}
._9{margin-left:-7.668000px;}
._2{margin-left:-6.388200px;}
._4{margin-left:-4.771200px;}
._7{margin-left:-3.658800px;}
._0{margin-left:-2.501400px;}
._3{margin-left:-1.014000px;}
._1{width:1.663200px;}
._14{width:2.743800px;}
._6{width:3.754800px;}
._18{width:4.785900px;}
._1b{width:5.861700px;}
._f{width:7.320600px;}
._a{width:9.213600px;}
._8{width:10.512000px;}
._21{width:11.558100px;}
._15{width:12.668400px;}
._13{width:14.036100px;}
._12{width:15.737400px;}
._c{width:16.986000px;}
._10{width:18.690000px;}
._11{width:19.888800px;}
._17{width:20.907900px;}
._e{width:21.936000px;}
._d{width:23.124000px;}
._1a{width:24.567600px;}
._1c{width:26.613300px;}
._1d{width:28.510800px;}
._1f{width:29.856300px;}
._34{width:33.023400px;}
._25{width:34.105200px;}
._1e{width:35.183100px;}
._b{width:36.468000px;}
._26{width:37.500600px;}
._20{width:40.020000px;}
._23{width:44.053200px;}
._33{width:45.119100px;}
._22{width:85.677000px;}
._28{width:122.247600px;}
._27{width:142.473000px;}
._2a{width:166.886400px;}
._2d{width:185.398200px;}
._2b{width:194.488200px;}
._31{width:210.952800px;}
._29{width:238.902000px;}
._2f{width:297.297000px;}
._2c{width:311.564400px;}
._2e{width:358.498200px;}
._32{width:619.518600px;}
._30{width:672.120600px;}
.fc1{color:rgb(20,20,20);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:110.975700px;}
.y1{bottom:111.082050px;}
.ye8{bottom:111.531600px;}
.y2{bottom:111.637950px;}
.ycd{bottom:112.488300px;}
.y118{bottom:145.280700px;}
.y94{bottom:152.476350px;}
.y66{bottom:152.754150px;}
.ye3{bottom:153.801000px;}
.y33{bottom:160.466100px;}
.y26{bottom:160.744050px;}
.ycb{bottom:161.804850px;}
.y117{bottom:165.980700px;}
.y93{bottom:173.176350px;}
.y65{bottom:173.454150px;}
.ye2{bottom:174.501000px;}
.y32{bottom:181.165950px;}
.y25{bottom:181.443900px;}
.yca{bottom:185.887950px;}
.y116{bottom:186.680700px;}
.y92{bottom:193.876350px;}
.y64{bottom:194.154150px;}
.ye1{bottom:195.201000px;}
.y31{bottom:201.865950px;}
.y24{bottom:202.143900px;}
.yc9{bottom:205.687950px;}
.y115{bottom:207.380700px;}
.y91{bottom:214.576350px;}
.y63{bottom:214.854150px;}
.ye0{bottom:215.901000px;}
.y30{bottom:222.565950px;}
.y23{bottom:222.844050px;}
.yc8{bottom:225.268500px;}
.y114{bottom:228.080700px;}
.y90{bottom:235.276500px;}
.y62{bottom:235.554150px;}
.ydf{bottom:236.601000px;}
.y2f{bottom:243.266100px;}
.y22{bottom:243.544050px;}
.yc6{bottom:246.528300px;}
.y113{bottom:248.780700px;}
.y8f{bottom:255.976350px;}
.y61{bottom:256.254150px;}
.yde{bottom:257.301000px;}
.y2e{bottom:263.966100px;}
.y21{bottom:264.244050px;}
.yc7{bottom:267.788250px;}
.y112{bottom:269.480700px;}
.y8e{bottom:276.676350px;}
.y60{bottom:276.954150px;}
.ydd{bottom:278.001000px;}
.y2d{bottom:284.665950px;}
.y20{bottom:284.943900px;}
.yc5{bottom:289.048050px;}
.y111{bottom:290.180700px;}
.y8d{bottom:297.376350px;}
.y5f{bottom:297.654150px;}
.ydc{bottom:298.701000px;}
.yc4{bottom:299.677950px;}
.y2c{bottom:305.365950px;}
.y1f{bottom:305.643900px;}
.y110{bottom:310.880700px;}
.y8c{bottom:318.076350px;}
.y5e{bottom:318.354150px;}
.ydb{bottom:319.401000px;}
.y2b{bottom:326.065950px;}
.y1e{bottom:326.344050px;}
.yc3{bottom:331.567650px;}
.y10f{bottom:331.580700px;}
.yc2{bottom:331.684650px;}
.y8b{bottom:338.776500px;}
.y5d{bottom:339.054150px;}
.yda{bottom:340.101000px;}
.y2a{bottom:346.766100px;}
.y1d{bottom:347.044050px;}
.yc1{bottom:351.484650px;}
.y10e{bottom:352.280700px;}
.y8a{bottom:359.476350px;}
.y5c{bottom:359.754150px;}
.yd9{bottom:360.801000px;}
.y1c{bottom:367.744050px;}
.y10d{bottom:372.980700px;}
.y89{bottom:380.176350px;}
.y5b{bottom:380.454150px;}
.yc0{bottom:380.479950px;}
.yd8{bottom:381.501000px;}
.y29{bottom:388.165950px;}
.y1b{bottom:388.443900px;}
.y10c{bottom:393.680700px;}
.y88{bottom:400.876350px;}
.y5a{bottom:401.154150px;}
.yd7{bottom:402.201000px;}
.y28{bottom:408.866100px;}
.y1a{bottom:409.144050px;}
.y10b{bottom:414.380700px;}
.yb7{bottom:415.553700px;}
.y87{bottom:421.576350px;}
.y59{bottom:421.854150px;}
.yd6{bottom:422.901000px;}
.y27{bottom:429.565950px;}
.y19{bottom:429.844050px;}
.y10a{bottom:435.080700px;}
.yb6{bottom:436.253700px;}
.y86{bottom:442.276350px;}
.y58{bottom:442.554150px;}
.yd5{bottom:443.601000px;}
.y109{bottom:455.780700px;}
.yb5{bottom:456.953700px;}
.y85{bottom:462.976350px;}
.y57{bottom:463.254150px;}
.yd4{bottom:464.301000px;}
.y108{bottom:476.480700px;}
.yb4{bottom:477.653700px;}
.y84{bottom:483.676350px;}
.y56{bottom:483.954150px;}
.yd3{bottom:485.001000px;}
.y107{bottom:497.180700px;}
.yb3{bottom:498.353700px;}
.y18{bottom:503.981850px;}
.y83{bottom:504.376350px;}
.y55{bottom:504.654150px;}
.yd2{bottom:505.701000px;}
.y106{bottom:517.880700px;}
.yb2{bottom:519.053700px;}
.y17{bottom:521.981850px;}
.y82{bottom:525.076350px;}
.y54{bottom:525.354150px;}
.yd1{bottom:526.401000px;}
.y105{bottom:538.580700px;}
.yb1{bottom:539.753700px;}
.y16{bottom:539.981850px;}
.y81{bottom:545.776350px;}
.y53{bottom:546.054150px;}
.yd0{bottom:547.101000px;}
.y12d{bottom:559.263900px;}
.y104{bottom:559.280700px;}
.yb0{bottom:560.453700px;}
.y80{bottom:566.476350px;}
.y52{bottom:566.754150px;}
.ycf{bottom:567.801000px;}
.y15{bottom:575.981850px;}
.y12c{bottom:579.963900px;}
.y103{bottom:579.980700px;}
.yaf{bottom:581.153700px;}
.y7f{bottom:587.176350px;}
.y51{bottom:587.454150px;}
.yce{bottom:588.501000px;}
.y14{bottom:593.981850px;}
.y12b{bottom:600.663900px;}
.y102{bottom:600.680700px;}
.yae{bottom:601.853700px;}
.y7e{bottom:607.876350px;}
.y50{bottom:608.154150px;}
.ye7{bottom:621.215400px;}
.y101{bottom:621.380700px;}
.yad{bottom:622.553700px;}
.y7d{bottom:628.576350px;}
.y4f{bottom:628.854150px;}
.y13{bottom:629.981850px;}
.ye6{bottom:639.215400px;}
.y12a{bottom:642.063900px;}
.y100{bottom:642.080700px;}
.yac{bottom:643.253700px;}
.y12{bottom:647.981850px;}
.y7c{bottom:649.276350px;}
.y4e{bottom:649.554150px;}
.ye5{bottom:657.215400px;}
.y129{bottom:662.763900px;}
.yff{bottom:662.780700px;}
.yab{bottom:663.953700px;}
.y11{bottom:665.981850px;}
.y7b{bottom:669.976350px;}
.y4d{bottom:670.254150px;}
.ye4{bottom:675.215400px;}
.yfe{bottom:683.480700px;}
.y10{bottom:683.981850px;}
.yaa{bottom:684.653700px;}
.y7a{bottom:690.676350px;}
.y4c{bottom:690.954150px;}
.yf{bottom:701.981850px;}
.y128{bottom:704.163900px;}
.yfd{bottom:704.180700px;}
.ya9{bottom:705.353700px;}
.y79{bottom:711.376350px;}
.y4b{bottom:711.654150px;}
.ye{bottom:719.981850px;}
.y127{bottom:724.863900px;}
.yfc{bottom:724.880700px;}
.ya8{bottom:726.053700px;}
.y78{bottom:732.076350px;}
.y4a{bottom:732.354150px;}
.yd{bottom:737.981850px;}
.y126{bottom:745.563900px;}
.yfb{bottom:745.580700px;}
.ya7{bottom:746.753700px;}
.y77{bottom:752.776350px;}
.y49{bottom:753.054150px;}
.yc{bottom:755.981850px;}
.y125{bottom:766.263900px;}
.yfa{bottom:766.280700px;}
.ya6{bottom:767.453700px;}
.y76{bottom:773.476350px;}
.y48{bottom:773.754150px;}
.yb{bottom:773.981850px;}
.y124{bottom:786.963900px;}
.yf9{bottom:786.980700px;}
.ya5{bottom:788.153700px;}
.ya{bottom:791.981850px;}
.y75{bottom:794.176350px;}
.y47{bottom:794.454150px;}
.y123{bottom:807.663900px;}
.yf8{bottom:807.680700px;}
.ya4{bottom:808.853700px;}
.y74{bottom:814.876350px;}
.y46{bottom:815.154150px;}
.y122{bottom:828.363900px;}
.yf7{bottom:828.380700px;}
.ya3{bottom:829.553700px;}
.y73{bottom:835.576350px;}
.y45{bottom:835.854150px;}
.y9{bottom:837.528450px;}
.y121{bottom:849.063900px;}
.yf6{bottom:849.080700px;}
.ya2{bottom:850.253700px;}
.y44{bottom:856.554150px;}
.y8{bottom:858.228450px;}
.y120{bottom:869.763900px;}
.yf5{bottom:869.780700px;}
.ybf{bottom:870.953700px;}
.ya1{bottom:870.953850px;}
.y72{bottom:876.976350px;}
.y43{bottom:877.254300px;}
.y11f{bottom:890.463900px;}
.yf4{bottom:890.480700px;}
.ybe{bottom:891.653700px;}
.ya0{bottom:891.653850px;}
.y71{bottom:897.676350px;}
.y42{bottom:897.954300px;}
.y7{bottom:904.128450px;}
.yf3{bottom:911.180700px;}
.y9f{bottom:912.353700px;}
.y70{bottom:918.376350px;}
.y41{bottom:918.654300px;}
.y6{bottom:929.328300px;}
.y11e{bottom:931.863900px;}
.yf2{bottom:931.880700px;}
.y9e{bottom:933.053700px;}
.y6f{bottom:939.076350px;}
.y40{bottom:939.354150px;}
.yf1{bottom:952.580700px;}
.ybd{bottom:953.753700px;}
.y9d{bottom:953.753850px;}
.y5{bottom:954.528450px;}
.y6e{bottom:959.776500px;}
.y3f{bottom:960.054300px;}
.y11d{bottom:973.263900px;}
.yf0{bottom:973.280700px;}
.ybc{bottom:974.453700px;}
.y9c{bottom:974.453850px;}
.y6d{bottom:980.476350px;}
.y3e{bottom:980.754300px;}
.yef{bottom:993.980700px;}
.ybb{bottom:995.153700px;}
.y9b{bottom:995.153850px;}
.y6c{bottom:1001.176350px;}
.y3d{bottom:1001.454300px;}
.y4{bottom:1004.928450px;}
.y11c{bottom:1014.663900px;}
.yee{bottom:1014.680700px;}
.y9a{bottom:1015.853700px;}
.y6b{bottom:1021.876350px;}
.y3c{bottom:1022.154300px;}
.y11b{bottom:1035.363900px;}
.yed{bottom:1035.380700px;}
.y99{bottom:1036.553700px;}
.y6a{bottom:1042.576350px;}
.y3b{bottom:1042.854150px;}
.y36{bottom:1055.267250px;}
.y11a{bottom:1056.063900px;}
.yec{bottom:1056.080700px;}
.yba{bottom:1057.253700px;}
.y98{bottom:1057.253850px;}
.y69{bottom:1063.276500px;}
.y3a{bottom:1063.554300px;}
.yeb{bottom:1076.780700px;}
.yb9{bottom:1077.953700px;}
.y97{bottom:1077.953850px;}
.y68{bottom:1083.976350px;}
.y39{bottom:1084.254300px;}
.y35{bottom:1086.178050px;}
.y119{bottom:1097.463900px;}
.yea{bottom:1097.480700px;}
.yb8{bottom:1098.653700px;}
.y96{bottom:1098.653850px;}
.y67{bottom:1104.676350px;}
.y38{bottom:1104.954300px;}
.y34{bottom:1107.778050px;}
.y95{bottom:1131.897750px;}
.ycc{bottom:1133.601750px;}
.ye9{bottom:1134.880500px;}
.y3{bottom:1140.826950px;}
.h3{height:45.826172px;}
.h2{height:47.437500px;}
.h7{height:47.909180px;}
.h8{height:52.880859px;}
.hc{height:54.853172px;}
.h4{height:58.168945px;}
.h9{height:59.667480px;}
.ha{height:60.812988px;}
.hb{height:62.261719px;}
.h5{height:67.450195px;}
.h6{height:72.638672px;}
.hf{height:97.768945px;}
.he{height:100.688545px;}
.hd{height:146.288545px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:63.779550px;}
.x16{left:65.857800px;}
.x3{left:68.669250px;}
.x1a{left:72.254550px;}
.x18{left:76.518900px;}
.x17{left:87.774000px;}
.xd{left:89.291400px;}
.xc{left:105.661500px;}
.x1e{left:123.139950px;}
.x7{left:130.699650px;}
.x13{left:131.811000px;}
.xa{left:151.711050px;}
.x1b{left:160.904550px;}
.x23{left:178.137750px;}
.x10{left:186.664650px;}
.xb{left:223.094850px;}
.x11{left:227.938050px;}
.x8{left:241.708350px;}
.x24{left:247.403100px;}
.x9{left:265.558950px;}
.x25{left:297.717000px;}
.x6{left:312.348300px;}
.x26{left:315.939900px;}
.x19{left:338.052750px;}
.x12{left:376.615950px;}
.x1f{left:425.203050px;}
.x4{left:434.593800px;}
.xe{left:435.826800px;}
.x5{left:442.513800px;}
.xf{left:461.338650px;}
.x1c{left:476.501250px;}
.x14{left:478.346400px;}
.x1d{left:501.732300px;}
.x15{left:503.858250px;}
.x20{left:505.176450px;}
.x22{left:573.584550px;}
.x1{left:766.985550px;}
.x21{left:829.133850px;}
@media print{
.v5{vertical-align:-37.795200pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:8.024000pt;}
.v2{vertical-align:35.200000pt;}
.v4{vertical-align:37.795200pt;}
.v3{vertical-align:78.328533pt;}
.ls11{letter-spacing:-2.269333pt;}
.lsa{letter-spacing:-2.170667pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000259pt;}
.ls8{letter-spacing:0.000595pt;}
.ls2{letter-spacing:0.008533pt;}
.lsb{letter-spacing:0.009890pt;}
.ls7{letter-spacing:0.010133pt;}
.ls10{letter-spacing:0.010403pt;}
.lse{letter-spacing:0.010667pt;}
.ls12{letter-spacing:0.281600pt;}
.ls0{letter-spacing:2.472533pt;}
.ls5{letter-spacing:9.260800pt;}
.lsd{letter-spacing:9.319467pt;}
.ls3{letter-spacing:11.260800pt;}
.lsf{letter-spacing:13.736502pt;}
.ls1{letter-spacing:17.335467pt;}
.ls6{letter-spacing:24.598400pt;}
.ls9{letter-spacing:39.008000pt;}
.wse{word-spacing:-39.008000pt;}
.ws2{word-spacing:-15.333333pt;}
.ws1{word-spacing:-13.333333pt;}
.ws3{word-spacing:-0.061333pt;}
.ws6{word-spacing:-0.058667pt;}
.ws0{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.wsf{word-spacing:2.269333pt;}
.wsa{word-spacing:64.558400pt;}
.ws9{word-spacing:69.322667pt;}
.wsb{word-spacing:102.609600pt;}
.wsc{word-spacing:163.645333pt;}
.wsd{word-spacing:172.857067pt;}
.ws7{word-spacing:222.424533pt;}
.ws8{word-spacing:713.117867pt;}
.ws5{word-spacing:1340.688533pt;}
._24{margin-left:-38.665067pt;}
._16{margin-left:-15.344000pt;}
._5{margin-left:-9.899200pt;}
._19{margin-left:-8.198400pt;}
._9{margin-left:-6.816000pt;}
._2{margin-left:-5.678400pt;}
._4{margin-left:-4.241067pt;}
._7{margin-left:-3.252267pt;}
._0{margin-left:-2.223467pt;}
._3{margin-left:-0.901333pt;}
._1{width:1.478400pt;}
._14{width:2.438933pt;}
._6{width:3.337600pt;}
._18{width:4.254133pt;}
._1b{width:5.210400pt;}
._f{width:6.507200pt;}
._a{width:8.189867pt;}
._8{width:9.344000pt;}
._21{width:10.273867pt;}
._15{width:11.260800pt;}
._13{width:12.476533pt;}
._12{width:13.988800pt;}
._c{width:15.098667pt;}
._10{width:16.613333pt;}
._11{width:17.678933pt;}
._17{width:18.584800pt;}
._e{width:19.498667pt;}
._d{width:20.554667pt;}
._1a{width:21.837867pt;}
._1c{width:23.656267pt;}
._1d{width:25.342933pt;}
._1f{width:26.538933pt;}
._34{width:29.354133pt;}
._25{width:30.315733pt;}
._1e{width:31.273867pt;}
._b{width:32.416000pt;}
._26{width:33.333867pt;}
._20{width:35.573333pt;}
._23{width:39.158400pt;}
._33{width:40.105867pt;}
._22{width:76.157333pt;}
._28{width:108.664533pt;}
._27{width:126.642667pt;}
._2a{width:148.343467pt;}
._2d{width:164.798400pt;}
._2b{width:172.878400pt;}
._31{width:187.513600pt;}
._29{width:212.357333pt;}
._2f{width:264.264000pt;}
._2c{width:276.946133pt;}
._2e{width:318.665067pt;}
._32{width:550.683200pt;}
._30{width:597.440533pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:98.645067pt;}
.y1{bottom:98.739600pt;}
.ye8{bottom:99.139200pt;}
.y2{bottom:99.233733pt;}
.ycd{bottom:99.989600pt;}
.y118{bottom:129.138400pt;}
.y94{bottom:135.534533pt;}
.y66{bottom:135.781467pt;}
.ye3{bottom:136.712000pt;}
.y33{bottom:142.636533pt;}
.y26{bottom:142.883600pt;}
.ycb{bottom:143.826533pt;}
.y117{bottom:147.538400pt;}
.y93{bottom:153.934533pt;}
.y65{bottom:154.181467pt;}
.ye2{bottom:155.112000pt;}
.y32{bottom:161.036400pt;}
.y25{bottom:161.283467pt;}
.yca{bottom:165.233733pt;}
.y116{bottom:165.938400pt;}
.y92{bottom:172.334533pt;}
.y64{bottom:172.581467pt;}
.ye1{bottom:173.512000pt;}
.y31{bottom:179.436400pt;}
.y24{bottom:179.683467pt;}
.yc9{bottom:182.833733pt;}
.y115{bottom:184.338400pt;}
.y91{bottom:190.734533pt;}
.y63{bottom:190.981467pt;}
.ye0{bottom:191.912000pt;}
.y30{bottom:197.836400pt;}
.y23{bottom:198.083600pt;}
.yc8{bottom:200.238667pt;}
.y114{bottom:202.738400pt;}
.y90{bottom:209.134667pt;}
.y62{bottom:209.381467pt;}
.ydf{bottom:210.312000pt;}
.y2f{bottom:216.236533pt;}
.y22{bottom:216.483600pt;}
.yc6{bottom:219.136267pt;}
.y113{bottom:221.138400pt;}
.y8f{bottom:227.534533pt;}
.y61{bottom:227.781467pt;}
.yde{bottom:228.712000pt;}
.y2e{bottom:234.636533pt;}
.y21{bottom:234.883600pt;}
.yc7{bottom:238.034000pt;}
.y112{bottom:239.538400pt;}
.y8e{bottom:245.934533pt;}
.y60{bottom:246.181467pt;}
.ydd{bottom:247.112000pt;}
.y2d{bottom:253.036400pt;}
.y20{bottom:253.283467pt;}
.yc5{bottom:256.931600pt;}
.y111{bottom:257.938400pt;}
.y8d{bottom:264.334533pt;}
.y5f{bottom:264.581467pt;}
.ydc{bottom:265.512000pt;}
.yc4{bottom:266.380400pt;}
.y2c{bottom:271.436400pt;}
.y1f{bottom:271.683467pt;}
.y110{bottom:276.338400pt;}
.y8c{bottom:282.734533pt;}
.y5e{bottom:282.981467pt;}
.ydb{bottom:283.912000pt;}
.y2b{bottom:289.836400pt;}
.y1e{bottom:290.083600pt;}
.yc3{bottom:294.726800pt;}
.y10f{bottom:294.738400pt;}
.yc2{bottom:294.830800pt;}
.y8b{bottom:301.134667pt;}
.y5d{bottom:301.381467pt;}
.yda{bottom:302.312000pt;}
.y2a{bottom:308.236533pt;}
.y1d{bottom:308.483600pt;}
.yc1{bottom:312.430800pt;}
.y10e{bottom:313.138400pt;}
.y8a{bottom:319.534533pt;}
.y5c{bottom:319.781467pt;}
.yd9{bottom:320.712000pt;}
.y1c{bottom:326.883600pt;}
.y10d{bottom:331.538400pt;}
.y89{bottom:337.934533pt;}
.y5b{bottom:338.181467pt;}
.yc0{bottom:338.204400pt;}
.yd8{bottom:339.112000pt;}
.y29{bottom:345.036400pt;}
.y1b{bottom:345.283467pt;}
.y10c{bottom:349.938400pt;}
.y88{bottom:356.334533pt;}
.y5a{bottom:356.581467pt;}
.yd7{bottom:357.512000pt;}
.y28{bottom:363.436533pt;}
.y1a{bottom:363.683600pt;}
.y10b{bottom:368.338400pt;}
.yb7{bottom:369.381067pt;}
.y87{bottom:374.734533pt;}
.y59{bottom:374.981467pt;}
.yd6{bottom:375.912000pt;}
.y27{bottom:381.836400pt;}
.y19{bottom:382.083600pt;}
.y10a{bottom:386.738400pt;}
.yb6{bottom:387.781067pt;}
.y86{bottom:393.134533pt;}
.y58{bottom:393.381467pt;}
.yd5{bottom:394.312000pt;}
.y109{bottom:405.138400pt;}
.yb5{bottom:406.181067pt;}
.y85{bottom:411.534533pt;}
.y57{bottom:411.781467pt;}
.yd4{bottom:412.712000pt;}
.y108{bottom:423.538400pt;}
.yb4{bottom:424.581067pt;}
.y84{bottom:429.934533pt;}
.y56{bottom:430.181467pt;}
.yd3{bottom:431.112000pt;}
.y107{bottom:441.938400pt;}
.yb3{bottom:442.981067pt;}
.y18{bottom:447.983867pt;}
.y83{bottom:448.334533pt;}
.y55{bottom:448.581467pt;}
.yd2{bottom:449.512000pt;}
.y106{bottom:460.338400pt;}
.yb2{bottom:461.381067pt;}
.y17{bottom:463.983867pt;}
.y82{bottom:466.734533pt;}
.y54{bottom:466.981467pt;}
.yd1{bottom:467.912000pt;}
.y105{bottom:478.738400pt;}
.yb1{bottom:479.781067pt;}
.y16{bottom:479.983867pt;}
.y81{bottom:485.134533pt;}
.y53{bottom:485.381467pt;}
.yd0{bottom:486.312000pt;}
.y12d{bottom:497.123467pt;}
.y104{bottom:497.138400pt;}
.yb0{bottom:498.181067pt;}
.y80{bottom:503.534533pt;}
.y52{bottom:503.781467pt;}
.ycf{bottom:504.712000pt;}
.y15{bottom:511.983867pt;}
.y12c{bottom:515.523467pt;}
.y103{bottom:515.538400pt;}
.yaf{bottom:516.581067pt;}
.y7f{bottom:521.934533pt;}
.y51{bottom:522.181467pt;}
.yce{bottom:523.112000pt;}
.y14{bottom:527.983867pt;}
.y12b{bottom:533.923467pt;}
.y102{bottom:533.938400pt;}
.yae{bottom:534.981067pt;}
.y7e{bottom:540.334533pt;}
.y50{bottom:540.581467pt;}
.ye7{bottom:552.191467pt;}
.y101{bottom:552.338400pt;}
.yad{bottom:553.381067pt;}
.y7d{bottom:558.734533pt;}
.y4f{bottom:558.981467pt;}
.y13{bottom:559.983867pt;}
.ye6{bottom:568.191467pt;}
.y12a{bottom:570.723467pt;}
.y100{bottom:570.738400pt;}
.yac{bottom:571.781067pt;}
.y12{bottom:575.983867pt;}
.y7c{bottom:577.134533pt;}
.y4e{bottom:577.381467pt;}
.ye5{bottom:584.191467pt;}
.y129{bottom:589.123467pt;}
.yff{bottom:589.138400pt;}
.yab{bottom:590.181067pt;}
.y11{bottom:591.983867pt;}
.y7b{bottom:595.534533pt;}
.y4d{bottom:595.781467pt;}
.ye4{bottom:600.191467pt;}
.yfe{bottom:607.538400pt;}
.y10{bottom:607.983867pt;}
.yaa{bottom:608.581067pt;}
.y7a{bottom:613.934533pt;}
.y4c{bottom:614.181467pt;}
.yf{bottom:623.983867pt;}
.y128{bottom:625.923467pt;}
.yfd{bottom:625.938400pt;}
.ya9{bottom:626.981067pt;}
.y79{bottom:632.334533pt;}
.y4b{bottom:632.581467pt;}
.ye{bottom:639.983867pt;}
.y127{bottom:644.323467pt;}
.yfc{bottom:644.338400pt;}
.ya8{bottom:645.381067pt;}
.y78{bottom:650.734533pt;}
.y4a{bottom:650.981467pt;}
.yd{bottom:655.983867pt;}
.y126{bottom:662.723467pt;}
.yfb{bottom:662.738400pt;}
.ya7{bottom:663.781067pt;}
.y77{bottom:669.134533pt;}
.y49{bottom:669.381467pt;}
.yc{bottom:671.983867pt;}
.y125{bottom:681.123467pt;}
.yfa{bottom:681.138400pt;}
.ya6{bottom:682.181067pt;}
.y76{bottom:687.534533pt;}
.y48{bottom:687.781467pt;}
.yb{bottom:687.983867pt;}
.y124{bottom:699.523467pt;}
.yf9{bottom:699.538400pt;}
.ya5{bottom:700.581067pt;}
.ya{bottom:703.983867pt;}
.y75{bottom:705.934533pt;}
.y47{bottom:706.181467pt;}
.y123{bottom:717.923467pt;}
.yf8{bottom:717.938400pt;}
.ya4{bottom:718.981067pt;}
.y74{bottom:724.334533pt;}
.y46{bottom:724.581467pt;}
.y122{bottom:736.323467pt;}
.yf7{bottom:736.338400pt;}
.ya3{bottom:737.381067pt;}
.y73{bottom:742.734533pt;}
.y45{bottom:742.981467pt;}
.y9{bottom:744.469733pt;}
.y121{bottom:754.723467pt;}
.yf6{bottom:754.738400pt;}
.ya2{bottom:755.781067pt;}
.y44{bottom:761.381467pt;}
.y8{bottom:762.869733pt;}
.y120{bottom:773.123467pt;}
.yf5{bottom:773.138400pt;}
.ybf{bottom:774.181067pt;}
.ya1{bottom:774.181200pt;}
.y72{bottom:779.534533pt;}
.y43{bottom:779.781600pt;}
.y11f{bottom:791.523467pt;}
.yf4{bottom:791.538400pt;}
.ybe{bottom:792.581067pt;}
.ya0{bottom:792.581200pt;}
.y71{bottom:797.934533pt;}
.y42{bottom:798.181600pt;}
.y7{bottom:803.669733pt;}
.yf3{bottom:809.938400pt;}
.y9f{bottom:810.981067pt;}
.y70{bottom:816.334533pt;}
.y41{bottom:816.581600pt;}
.y6{bottom:826.069600pt;}
.y11e{bottom:828.323467pt;}
.yf2{bottom:828.338400pt;}
.y9e{bottom:829.381067pt;}
.y6f{bottom:834.734533pt;}
.y40{bottom:834.981467pt;}
.yf1{bottom:846.738400pt;}
.ybd{bottom:847.781067pt;}
.y9d{bottom:847.781200pt;}
.y5{bottom:848.469733pt;}
.y6e{bottom:853.134667pt;}
.y3f{bottom:853.381600pt;}
.y11d{bottom:865.123467pt;}
.yf0{bottom:865.138400pt;}
.ybc{bottom:866.181067pt;}
.y9c{bottom:866.181200pt;}
.y6d{bottom:871.534533pt;}
.y3e{bottom:871.781600pt;}
.yef{bottom:883.538400pt;}
.ybb{bottom:884.581067pt;}
.y9b{bottom:884.581200pt;}
.y6c{bottom:889.934533pt;}
.y3d{bottom:890.181600pt;}
.y4{bottom:893.269733pt;}
.y11c{bottom:901.923467pt;}
.yee{bottom:901.938400pt;}
.y9a{bottom:902.981067pt;}
.y6b{bottom:908.334533pt;}
.y3c{bottom:908.581600pt;}
.y11b{bottom:920.323467pt;}
.yed{bottom:920.338400pt;}
.y99{bottom:921.381067pt;}
.y6a{bottom:926.734533pt;}
.y3b{bottom:926.981467pt;}
.y36{bottom:938.015333pt;}
.y11a{bottom:938.723467pt;}
.yec{bottom:938.738400pt;}
.yba{bottom:939.781067pt;}
.y98{bottom:939.781200pt;}
.y69{bottom:945.134667pt;}
.y3a{bottom:945.381600pt;}
.yeb{bottom:957.138400pt;}
.yb9{bottom:958.181067pt;}
.y97{bottom:958.181200pt;}
.y68{bottom:963.534533pt;}
.y39{bottom:963.781600pt;}
.y35{bottom:965.491600pt;}
.y119{bottom:975.523467pt;}
.yea{bottom:975.538400pt;}
.yb8{bottom:976.581067pt;}
.y96{bottom:976.581200pt;}
.y67{bottom:981.934533pt;}
.y38{bottom:982.181600pt;}
.y34{bottom:984.691600pt;}
.y95{bottom:1006.131333pt;}
.ycc{bottom:1007.646000pt;}
.ye9{bottom:1008.782667pt;}
.y3{bottom:1014.068400pt;}
.h3{height:40.734375pt;}
.h2{height:42.166667pt;}
.h7{height:42.585938pt;}
.h8{height:47.005208pt;}
.hc{height:48.758375pt;}
.h4{height:51.705729pt;}
.h9{height:53.037760pt;}
.ha{height:54.055990pt;}
.hb{height:55.343750pt;}
.h5{height:59.955729pt;}
.h6{height:64.567708pt;}
.hf{height:86.905729pt;}
.he{height:89.500929pt;}
.hd{height:130.034262pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:56.692933pt;}
.x16{left:58.540267pt;}
.x3{left:61.039333pt;}
.x1a{left:64.226267pt;}
.x18{left:68.016800pt;}
.x17{left:78.021333pt;}
.xd{left:79.370133pt;}
.xc{left:93.921333pt;}
.x1e{left:109.457733pt;}
.x7{left:116.177467pt;}
.x13{left:117.165333pt;}
.xa{left:134.854267pt;}
.x1b{left:143.026267pt;}
.x23{left:158.344667pt;}
.x10{left:165.924133pt;}
.xb{left:198.306533pt;}
.x11{left:202.611600pt;}
.x8{left:214.851867pt;}
.x24{left:219.913867pt;}
.x9{left:236.052400pt;}
.x25{left:264.637333pt;}
.x6{left:277.642933pt;}
.x26{left:280.835467pt;}
.x19{left:300.491333pt;}
.x12{left:334.769733pt;}
.x1f{left:377.958267pt;}
.x4{left:386.305600pt;}
.xe{left:387.401600pt;}
.x5{left:393.345600pt;}
.xf{left:410.078800pt;}
.x1c{left:423.556667pt;}
.x14{left:425.196800pt;}
.x1d{left:445.984267pt;}
.x15{left:447.874000pt;}
.x20{left:449.045733pt;}
.x22{left:509.852933pt;}
.x1{left:681.764933pt;}
.x21{left:737.007867pt;}
}




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