
    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_6b6c3789db983e36ff3201fa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_40a7b38f5d210f3508cb3ce0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.923340;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_7e8ccb71428dc25ecfd92cd1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_fe8cde13aa607211c6bd95b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.738770;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_fec21eae30a1130420d101e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_d88b4cb7bd77159d575f8a9a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_026bec894f04182640af63ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_b05f9c9f192e3707ae57f77f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_6fdb03942ba1d9d44fd35c98.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a438e24105640ed255365229.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_2dc71a8a7eb3f2e5f87c4347.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.112305;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);}
.v1{vertical-align:-71.280000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.864000px;}
.ls6{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.109200px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.259920px;}
.lse{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.900000px;}
.lsc{letter-spacing:11.664000px;}
.ls10{letter-spacing:41.904000px;}
.lsf{letter-spacing:44.064000px;}
.lsb{letter-spacing:54.864000px;}
.ls9{letter-spacing:74.304000px;}
.ls2{letter-spacing:694.620000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.wsb{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.136000px;}
.ws5{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.450800px;}
.ws3{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.220000px;}
.ws0{word-spacing:-12.060000px;}
.ws7{word-spacing:0.000000px;}
._1b{margin-left:-4.752000px;}
._d{margin-left:-3.532320px;}
._b{margin-left:-2.276640px;}
._2{margin-left:-1.075680px;}
._3{width:1.613520px;}
._12{width:3.384000px;}
._13{width:4.392000px;}
._4{width:6.048000px;}
._1f{width:7.234560px;}
._14{width:8.275680px;}
._10{width:9.360000px;}
._11{width:11.168640px;}
._a{width:12.235680px;}
._9{width:13.320000px;}
._26{width:14.362560px;}
._25{width:15.403680px;}
._21{width:16.682400px;}
._1{width:17.688960px;}
._0{width:18.884160px;}
._e{width:20.376000px;}
._f{width:21.638160px;}
._29{width:22.968000px;}
._2a{width:24.526800px;}
._5{width:25.632000px;}
._20{width:26.762400px;}
._19{width:28.368000px;}
._1a{width:29.808000px;}
._6{width:30.816000px;}
._1c{width:31.819680px;}
._7{width:32.832000px;}
._c{width:34.632000px;}
._28{width:35.856000px;}
._27{width:38.283840px;}
._15{width:39.523680px;}
._1d{width:40.569840px;}
._1e{width:41.706480px;}
._22{width:45.074880px;}
._24{width:46.075680px;}
._23{width:47.509920px;}
._17{width:51.696000px;}
._16{width:55.584000px;}
._8{width:76.680000px;}
._18{width:153.648000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(128,0,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs7{font-size:33.120000px;}
.fs1{font-size:48.240000px;}
.fs8{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs5{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y73{bottom:5.040000px;}
.y41{bottom:5.220000px;}
.y47{bottom:14.940000px;}
.y7{bottom:15.300000px;}
.y46{bottom:32.040000px;}
.y6{bottom:33.300000px;}
.y48{bottom:42.876000px;}
.y44{bottom:44.136000px;}
.y45{bottom:49.320000px;}
.y4{bottom:60.480000px;}
.y3{bottom:80.316000px;}
.y71{bottom:148.536000px;}
.yc1{bottom:150.150000px;}
.y99{bottom:152.130000px;}
.ye1{bottom:159.150000px;}
.y12c{bottom:165.090000px;}
.y70{bottom:172.290000px;}
.yc0{bottom:173.910000px;}
.y98{bottom:175.890000px;}
.ye0{bottom:182.910000px;}
.y12b{bottom:189.210000px;}
.y6f{bottom:196.050000px;}
.ybf{bottom:197.670000px;}
.y97{bottom:201.090000px;}
.ydf{bottom:206.850000px;}
.y103{bottom:209.910000px;}
.y12a{bottom:212.970000px;}
.y6e{bottom:219.810000px;}
.ybe{bottom:221.610000px;}
.y96{bottom:226.110000px;}
.yde{bottom:230.610000px;}
.y102{bottom:233.670000px;}
.y129{bottom:236.910000px;}
.y6d{bottom:243.750000px;}
.ybd{bottom:246.630000px;}
.y95{bottom:249.870000px;}
.ydd{bottom:254.370000px;}
.y101{bottom:257.610000px;}
.y128{bottom:260.670000px;}
.y6c{bottom:267.510000px;}
.ybc{bottom:270.390000px;}
.y94{bottom:273.855000px;}
.ydc{bottom:278.175000px;}
.y100{bottom:281.775000px;}
.y127{bottom:284.475000px;}
.y6b{bottom:291.315000px;}
.ybb{bottom:294.375000px;}
.y93{bottom:298.875000px;}
.y3e{bottom:301.350000px;}
.ydb{bottom:302.115000px;}
.yff{bottom:305.535000px;}
.y126{bottom:308.235000px;}
.y6a{bottom:315.075000px;}
.yba{bottom:319.395000px;}
.y92{bottom:322.635000px;}
.y3d{bottom:325.110000px;}
.yda{bottom:325.875000px;}
.yfe{bottom:329.295000px;}
.y125{bottom:332.175000px;}
.y69{bottom:339.015000px;}
.yb9{bottom:342.795000px;}
.y91{bottom:347.835000px;}
.y3c{bottom:348.915000px;}
.yd9{bottom:349.635000px;}
.yfd{bottom:353.055000px;}
.y124{bottom:355.935000px;}
.y68{bottom:362.775000px;}
.yb8{bottom:366.555000px;}
.y90{bottom:371.595000px;}
.y3b{bottom:372.855000px;}
.yd8{bottom:373.395000px;}
.yfc{bottom:377.355000px;}
.y123{bottom:379.695000px;}
.y144{bottom:383.295000px;}
.y67{bottom:386.535000px;}
.yb7{bottom:390.855000px;}
.y3a{bottom:396.615000px;}
.yd7{bottom:397.335000px;}
.yfb{bottom:401.115000px;}
.y122{bottom:403.455000px;}
.y143{bottom:407.055000px;}
.y66{bottom:410.295000px;}
.yb6{bottom:414.615000px;}
.y8f{bottom:420.015000px;}
.y39{bottom:420.375000px;}
.yd6{bottom:421.095000px;}
.yfa{bottom:424.875000px;}
.y121{bottom:427.395000px;}
.y142{bottom:430.995000px;}
.y65{bottom:434.235000px;}
.yb5{bottom:439.635000px;}
.y38{bottom:444.135000px;}
.y8e{bottom:444.315000px;}
.yd5{bottom:444.855000px;}
.yf9{bottom:448.635000px;}
.y120{bottom:451.155000px;}
.y64{bottom:457.995000px;}
.yb4{bottom:463.575000px;}
.y37{bottom:468.075000px;}
.yd4{bottom:468.615000px;}
.y141{bottom:469.695000px;}
.yf8{bottom:472.395000px;}
.y11f{bottom:474.915000px;}
.y63{bottom:481.755000px;}
.yb3{bottom:488.595000px;}
.y36{bottom:491.835000px;}
.yd3{bottom:492.375000px;}
.yf7{bottom:496.695000px;}
.y11e{bottom:498.315000px;}
.y62{bottom:505.515000px;}
.y140{bottom:508.575000px;}
.yb2{bottom:512.355000px;}
.y35{bottom:515.595000px;}
.yd2{bottom:516.315000px;}
.y8d{bottom:517.035000px;}
.y11d{bottom:519.195000px;}
.yf6{bottom:520.455000px;}
.y61{bottom:529.455000px;}
.y13f{bottom:532.335000px;}
.yb1{bottom:536.115000px;}
.y34{bottom:539.355000px;}
.yd1{bottom:540.075000px;}
.y8c{bottom:542.055000px;}
.y11c{bottom:543.315000px;}
.yf5{bottom:544.215000px;}
.y60{bottom:553.215000px;}
.y13e{bottom:556.125000px;}
.yb0{bottom:560.085000px;}
.y33{bottom:563.115000px;}
.yd0{bottom:563.865000px;}
.y8b{bottom:565.845000px;}
.y11b{bottom:567.105000px;}
.yf4{bottom:568.005000px;}
.y5f{bottom:577.005000px;}
.yaf{bottom:583.845000px;}
.y32{bottom:587.055000px;}
.ycf{bottom:587.625000px;}
.y8a{bottom:589.785000px;}
.y11a{bottom:591.225000px;}
.yf3{bottom:591.945000px;}
.y13d{bottom:595.005000px;}
.y5e{bottom:600.765000px;}
.yae{bottom:608.865000px;}
.y31{bottom:610.845000px;}
.yce{bottom:611.565000px;}
.y89{bottom:614.805000px;}
.y119{bottom:615.345000px;}
.yf2{bottom:615.705000px;}
.y5d{bottom:624.525000px;}
.yad{bottom:632.805000px;}
.y13c{bottom:633.885000px;}
.y30{bottom:634.605000px;}
.ycd{bottom:635.325000px;}
.y118{bottom:639.105000px;}
.yf1{bottom:639.465000px;}
.y88{bottom:639.825000px;}
.y5c{bottom:648.465000px;}
.yac{bottom:656.565000px;}
.y13b{bottom:657.645000px;}
.y2f{bottom:658.365000px;}
.ycc{bottom:658.725000px;}
.y117{bottom:662.865000px;}
.yf0{bottom:663.225000px;}
.y87{bottom:663.765000px;}
.y5b{bottom:672.225000px;}
.y13a{bottom:681.405000px;}
.yab{bottom:681.585000px;}
.y2e{bottom:682.305000px;}
.ycb{bottom:682.485000px;}
.y116{bottom:686.805000px;}
.yef{bottom:686.985000px;}
.y86{bottom:688.785000px;}
.y5a{bottom:695.985000px;}
.yaa{bottom:705.525000px;}
.y2d{bottom:706.065000px;}
.yca{bottom:706.785000px;}
.y115{bottom:710.565000px;}
.yee{bottom:711.285000px;}
.y85{bottom:713.805000px;}
.y26{bottom:719.205000px;}
.y59{bottom:719.745000px;}
.y139{bottom:720.285000px;}
.y2c{bottom:729.825000px;}
.ya9{bottom:730.545000px;}
.y114{bottom:734.325000px;}
.yed{bottom:735.045000px;}
.y84{bottom:737.385000px;}
.y25{bottom:738.105000px;}
.y58{bottom:743.685000px;}
.y138{bottom:744.045000px;}
.y2b{bottom:753.585000px;}
.ya8{bottom:754.305000px;}
.y24{bottom:757.185000px;}
.y113{bottom:758.445000px;}
.yec{bottom:758.805000px;}
.y83{bottom:761.505000px;}
.y57{bottom:767.445000px;}
.y23{bottom:775.905000px;}
.y2a{bottom:777.525000px;}
.yc9{bottom:778.065000px;}
.ya7{bottom:778.245000px;}
.y112{bottom:782.385000px;}
.y137{bottom:782.745000px;}
.yeb{bottom:782.925000px;}
.y82{bottom:785.265000px;}
.y56{bottom:791.205000px;}
.y22{bottom:793.005000px;}
.y29{bottom:801.285000px;}
.yc8{bottom:802.005000px;}
.ya6{bottom:803.265000px;}
.y111{bottom:806.145000px;}
.yea{bottom:806.685000px;}
.y81{bottom:809.025000px;}
.y21{bottom:812.445000px;}
.y55{bottom:814.965000px;}
.y28{bottom:825.045000px;}
.yc7{bottom:825.765000px;}
.ya5{bottom:827.025000px;}
.y110{bottom:829.905000px;}
.ye9{bottom:830.625000px;}
.y20{bottom:831.345000px;}
.y80{bottom:832.965000px;}
.y54{bottom:838.950000px;}
.y136{bottom:845.430000px;}
.y27{bottom:848.445000px;}
.y3f{bottom:848.805000px;}
.yc6{bottom:849.570000px;}
.y1f{bottom:850.245000px;}
.ya4{bottom:850.830000px;}
.y10f{bottom:853.710000px;}
.ye8{bottom:854.430000px;}
.y7f{bottom:856.770000px;}
.y53{bottom:862.710000px;}
.yc5{bottom:873.330000px;}
.ya3{bottom:874.770000px;}
.y10e{bottom:877.470000px;}
.ye7{bottom:878.550000px;}
.y7e{bottom:880.530000px;}
.y135{bottom:884.310000px;}
.y52{bottom:886.470000px;}
.y17{bottom:888.810000px;}
.yc4{bottom:898.530000px;}
.ya2{bottom:899.790000px;}
.y10d{bottom:901.410000px;}
.ye6{bottom:902.310000px;}
.y7d{bottom:904.290000px;}
.y16{bottom:907.710000px;}
.y51{bottom:910.230000px;}
.yc3{bottom:922.290000px;}
.y134{bottom:923.010000px;}
.ya1{bottom:923.190000px;}
.y10c{bottom:925.530000px;}
.ye5{bottom:926.070000px;}
.y15{bottom:926.790000px;}
.y7c{bottom:928.230000px;}
.y50{bottom:934.170000px;}
.y14{bottom:945.690000px;}
.y133{bottom:946.950000px;}
.ya0{bottom:947.310000px;}
.y10b{bottom:949.290000px;}
.ye4{bottom:950.010000px;}
.y7b{bottom:951.990000px;}
.y4f{bottom:957.930000px;}
.y13{bottom:964.770000px;}
.y132{bottom:970.710000px;}
.y9f{bottom:970.890000px;}
.yc2{bottom:971.250000px;}
.y10a{bottom:973.050000px;}
.ye3{bottom:973.770000px;}
.y1e{bottom:974.490000px;}
.y7a{bottom:975.750000px;}
.y4e{bottom:981.690000px;}
.y12{bottom:983.670000px;}
.y5{bottom:992.670000px;}
.y9e{bottom:995.010000px;}
.y109{bottom:996.810000px;}
.ye2{bottom:997.530000px;}
.y79{bottom:999.150000px;}
.y11{bottom:1005.450000px;}
.y131{bottom:1009.410000px;}
.y1d{bottom:1010.670000px;}
.y9d{bottom:1018.770000px;}
.y108{bottom:1020.750000px;}
.y1c{bottom:1021.290000px;}
.y78{bottom:1022.730000px;}
.y10{bottom:1027.230000px;}
.y4d{bottom:1029.390000px;}
.y130{bottom:1033.350000px;}
.y1b{bottom:1041.990000px;}
.y9c{bottom:1043.970000px;}
.y107{bottom:1044.870000px;}
.y77{bottom:1045.230000px;}
.yf{bottom:1046.850000px;}
.y4c{bottom:1053.150000px;}
.y12f{bottom:1057.110000px;}
.y1a{bottom:1061.790000px;}
.ye{bottom:1067.730000px;}
.y106{bottom:1068.630000px;}
.y76{bottom:1068.990000px;}
.y4b{bottom:1076.910000px;}
.yd{bottom:1082.850000px;}
.y19{bottom:1085.190000px;}
.y9b{bottom:1091.490000px;}
.y105{bottom:1092.390000px;}
.y75{bottom:1092.750000px;}
.y12e{bottom:1095.810000px;}
.y4a{bottom:1096.890000px;}
.yc{bottom:1097.790000px;}
.yb{bottom:1112.730000px;}
.y9a{bottom:1115.250000px;}
.y104{bottom:1116.150000px;}
.y49{bottom:1116.330000px;}
.y74{bottom:1116.510000px;}
.y12d{bottom:1116.690000px;}
.ya{bottom:1127.850000px;}
.y18{bottom:1141.200000px;}
.y9{bottom:1142.820000px;}
.y43{bottom:1155.420000px;}
.y8{bottom:1157.760000px;}
.y40{bottom:1170.720000px;}
.y72{bottom:1171.980000px;}
.y42{bottom:1174.860000px;}
.y2{bottom:1202.580000px;}
.y1{bottom:1219.860000px;}
.h13{height:5.163750px;}
.h14{height:19.440000px;}
.h10{height:19.620000px;}
.hd{height:29.691562px;}
.h3{height:42.281367px;}
.h8{height:44.860781px;}
.h4{height:47.700000px;}
.h11{height:50.229844px;}
.hb{height:53.077852px;}
.h2{height:53.573906px;}
.h5{height:58.833281px;}
.h15{height:59.343750px;}
.h6{height:59.383125px;}
.h12{height:62.820000px;}
.hc{height:63.949219px;}
.he{height:64.546875px;}
.h7{height:75.519844px;}
.h9{height:85.052461px;}
.ha{height:90.807891px;}
.hf{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:163.290000px;}
.w9{width:201.450000px;}
.wb{width:201.630000px;}
.w8{width:435.495000px;}
.wa{width:623.085000px;}
.w6{width:623.265000px;}
.w7{width:892.979987px;}
.w4{width:892.980000px;}
.w5{width:893.250000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x1e{left:8.100000px;}
.x16{left:13.500000px;}
.x19{left:15.840000px;}
.x6{left:25.559987px;}
.x7{left:34.019987px;}
.x10{left:36.179987px;}
.x5{left:37.620000px;}
.x17{left:40.134000px;}
.x20{left:42.120000px;}
.x1a{left:95.940000px;}
.x15{left:127.655987px;}
.x13{left:129.276000px;}
.x1c{left:143.676000px;}
.x23{left:154.649987px;}
.x21{left:159.689987px;}
.x1b{left:180.749987px;}
.x22{left:191.549987px;}
.x11{left:224.129987px;}
.x1{left:227.729987px;}
.xf{left:239.609987px;}
.xe{left:260.849987px;}
.x8{left:269.309987px;}
.x2{left:280.874987px;}
.x1d{left:300.099000px;}
.xa{left:305.714987px;}
.x1f{left:330.015000px;}
.x9{left:411.914987px;}
.xc{left:430.814987px;}
.xd{left:435.674987px;}
.x12{left:514.004987px;}
.xb{left:519.584987px;}
.x18{left:564.045000px;}
.x4{left:664.349987px;}
.x3{left:667.589987px;}
.x14{left:750.569987px;}
@media print{
.v1{vertical-align:-63.360000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.768000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.800000pt;}
.lsc{letter-spacing:10.368000pt;}
.ls10{letter-spacing:37.248000pt;}
.lsf{letter-spacing:39.168000pt;}
.lsb{letter-spacing:48.768000pt;}
.ls9{letter-spacing:66.048000pt;}
.ls2{letter-spacing:617.440000pt;}
.wsa{word-spacing:-64.000000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.232000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.622933pt;}
.ws3{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.640000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws7{word-spacing:0.000000pt;}
._1b{margin-left:-4.224000pt;}
._d{margin-left:-3.139840pt;}
._b{margin-left:-2.023680pt;}
._2{margin-left:-0.956160pt;}
._3{width:1.434240pt;}
._12{width:3.008000pt;}
._13{width:3.904000pt;}
._4{width:5.376000pt;}
._1f{width:6.430720pt;}
._14{width:7.356160pt;}
._10{width:8.320000pt;}
._11{width:9.927680pt;}
._a{width:10.876160pt;}
._9{width:11.840000pt;}
._26{width:12.766720pt;}
._25{width:13.692160pt;}
._21{width:14.828800pt;}
._1{width:15.723520pt;}
._0{width:16.785920pt;}
._e{width:18.112000pt;}
._f{width:19.233920pt;}
._29{width:20.416000pt;}
._2a{width:21.801600pt;}
._5{width:22.784000pt;}
._20{width:23.788800pt;}
._19{width:25.216000pt;}
._1a{width:26.496000pt;}
._6{width:27.392000pt;}
._1c{width:28.284160pt;}
._7{width:29.184000pt;}
._c{width:30.784000pt;}
._28{width:31.872000pt;}
._27{width:34.030080pt;}
._15{width:35.132160pt;}
._1d{width:36.062080pt;}
._1e{width:37.072427pt;}
._22{width:40.066560pt;}
._24{width:40.956160pt;}
._23{width:42.231040pt;}
._17{width:45.952000pt;}
._16{width:49.408000pt;}
._8{width:68.160000pt;}
._18{width:136.576000pt;}
.fs9{font-size:5.120000pt;}
.fs7{font-size:29.440000pt;}
.fs1{font-size:42.880000pt;}
.fs8{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs5{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:4.480000pt;}
.y41{bottom:4.640000pt;}
.y47{bottom:13.280000pt;}
.y7{bottom:13.600000pt;}
.y46{bottom:28.480000pt;}
.y6{bottom:29.600000pt;}
.y48{bottom:38.112000pt;}
.y44{bottom:39.232000pt;}
.y45{bottom:43.840000pt;}
.y4{bottom:53.760000pt;}
.y3{bottom:71.392000pt;}
.y71{bottom:132.032000pt;}
.yc1{bottom:133.466667pt;}
.y99{bottom:135.226667pt;}
.ye1{bottom:141.466667pt;}
.y12c{bottom:146.746667pt;}
.y70{bottom:153.146667pt;}
.yc0{bottom:154.586667pt;}
.y98{bottom:156.346667pt;}
.ye0{bottom:162.586667pt;}
.y12b{bottom:168.186667pt;}
.y6f{bottom:174.266667pt;}
.ybf{bottom:175.706667pt;}
.y97{bottom:178.746667pt;}
.ydf{bottom:183.866667pt;}
.y103{bottom:186.586667pt;}
.y12a{bottom:189.306667pt;}
.y6e{bottom:195.386667pt;}
.ybe{bottom:196.986667pt;}
.y96{bottom:200.986667pt;}
.yde{bottom:204.986667pt;}
.y102{bottom:207.706667pt;}
.y129{bottom:210.586667pt;}
.y6d{bottom:216.666667pt;}
.ybd{bottom:219.226667pt;}
.y95{bottom:222.106667pt;}
.ydd{bottom:226.106667pt;}
.y101{bottom:228.986667pt;}
.y128{bottom:231.706667pt;}
.y6c{bottom:237.786667pt;}
.ybc{bottom:240.346667pt;}
.y94{bottom:243.426667pt;}
.ydc{bottom:247.266667pt;}
.y100{bottom:250.466667pt;}
.y127{bottom:252.866667pt;}
.y6b{bottom:258.946667pt;}
.ybb{bottom:261.666667pt;}
.y93{bottom:265.666667pt;}
.y3e{bottom:267.866667pt;}
.ydb{bottom:268.546667pt;}
.yff{bottom:271.586667pt;}
.y126{bottom:273.986667pt;}
.y6a{bottom:280.066667pt;}
.yba{bottom:283.906667pt;}
.y92{bottom:286.786667pt;}
.y3d{bottom:288.986667pt;}
.yda{bottom:289.666667pt;}
.yfe{bottom:292.706667pt;}
.y125{bottom:295.266667pt;}
.y69{bottom:301.346667pt;}
.yb9{bottom:304.706667pt;}
.y91{bottom:309.186667pt;}
.y3c{bottom:310.146667pt;}
.yd9{bottom:310.786667pt;}
.yfd{bottom:313.826667pt;}
.y124{bottom:316.386667pt;}
.y68{bottom:322.466667pt;}
.yb8{bottom:325.826667pt;}
.y90{bottom:330.306667pt;}
.y3b{bottom:331.426667pt;}
.yd8{bottom:331.906667pt;}
.yfc{bottom:335.426667pt;}
.y123{bottom:337.506667pt;}
.y144{bottom:340.706667pt;}
.y67{bottom:343.586667pt;}
.yb7{bottom:347.426667pt;}
.y3a{bottom:352.546667pt;}
.yd7{bottom:353.186667pt;}
.yfb{bottom:356.546667pt;}
.y122{bottom:358.626667pt;}
.y143{bottom:361.826667pt;}
.y66{bottom:364.706667pt;}
.yb6{bottom:368.546667pt;}
.y8f{bottom:373.346667pt;}
.y39{bottom:373.666667pt;}
.yd6{bottom:374.306667pt;}
.yfa{bottom:377.666667pt;}
.y121{bottom:379.906667pt;}
.y142{bottom:383.106667pt;}
.y65{bottom:385.986667pt;}
.yb5{bottom:390.786667pt;}
.y38{bottom:394.786667pt;}
.y8e{bottom:394.946667pt;}
.yd5{bottom:395.426667pt;}
.yf9{bottom:398.786667pt;}
.y120{bottom:401.026667pt;}
.y64{bottom:407.106667pt;}
.yb4{bottom:412.066667pt;}
.y37{bottom:416.066667pt;}
.yd4{bottom:416.546667pt;}
.y141{bottom:417.506667pt;}
.yf8{bottom:419.906667pt;}
.y11f{bottom:422.146667pt;}
.y63{bottom:428.226667pt;}
.yb3{bottom:434.306667pt;}
.y36{bottom:437.186667pt;}
.yd3{bottom:437.666667pt;}
.yf7{bottom:441.506667pt;}
.y11e{bottom:442.946667pt;}
.y62{bottom:449.346667pt;}
.y140{bottom:452.066667pt;}
.yb2{bottom:455.426667pt;}
.y35{bottom:458.306667pt;}
.yd2{bottom:458.946667pt;}
.y8d{bottom:459.586667pt;}
.y11d{bottom:461.506667pt;}
.yf6{bottom:462.626667pt;}
.y61{bottom:470.626667pt;}
.y13f{bottom:473.186667pt;}
.yb1{bottom:476.546667pt;}
.y34{bottom:479.426667pt;}
.yd1{bottom:480.066667pt;}
.y8c{bottom:481.826667pt;}
.y11c{bottom:482.946667pt;}
.yf5{bottom:483.746667pt;}
.y60{bottom:491.746667pt;}
.y13e{bottom:494.333333pt;}
.yb0{bottom:497.853333pt;}
.y33{bottom:500.546667pt;}
.yd0{bottom:501.213333pt;}
.y8b{bottom:502.973333pt;}
.y11b{bottom:504.093333pt;}
.yf4{bottom:504.893333pt;}
.y5f{bottom:512.893333pt;}
.yaf{bottom:518.973333pt;}
.y32{bottom:521.826667pt;}
.ycf{bottom:522.333333pt;}
.y8a{bottom:524.253333pt;}
.y11a{bottom:525.533333pt;}
.yf3{bottom:526.173333pt;}
.y13d{bottom:528.893333pt;}
.y5e{bottom:534.013333pt;}
.yae{bottom:541.213333pt;}
.y31{bottom:542.973333pt;}
.yce{bottom:543.613333pt;}
.y89{bottom:546.493333pt;}
.y119{bottom:546.973333pt;}
.yf2{bottom:547.293333pt;}
.y5d{bottom:555.133333pt;}
.yad{bottom:562.493333pt;}
.y13c{bottom:563.453333pt;}
.y30{bottom:564.093333pt;}
.ycd{bottom:564.733333pt;}
.y118{bottom:568.093333pt;}
.yf1{bottom:568.413333pt;}
.y88{bottom:568.733333pt;}
.y5c{bottom:576.413333pt;}
.yac{bottom:583.613333pt;}
.y13b{bottom:584.573333pt;}
.y2f{bottom:585.213333pt;}
.ycc{bottom:585.533333pt;}
.y117{bottom:589.213333pt;}
.yf0{bottom:589.533333pt;}
.y87{bottom:590.013333pt;}
.y5b{bottom:597.533333pt;}
.y13a{bottom:605.693333pt;}
.yab{bottom:605.853333pt;}
.y2e{bottom:606.493333pt;}
.ycb{bottom:606.653333pt;}
.y116{bottom:610.493333pt;}
.yef{bottom:610.653333pt;}
.y86{bottom:612.253333pt;}
.y5a{bottom:618.653333pt;}
.yaa{bottom:627.133333pt;}
.y2d{bottom:627.613333pt;}
.yca{bottom:628.253333pt;}
.y115{bottom:631.613333pt;}
.yee{bottom:632.253333pt;}
.y85{bottom:634.493333pt;}
.y26{bottom:639.293333pt;}
.y59{bottom:639.773333pt;}
.y139{bottom:640.253333pt;}
.y2c{bottom:648.733333pt;}
.ya9{bottom:649.373333pt;}
.y114{bottom:652.733333pt;}
.yed{bottom:653.373333pt;}
.y84{bottom:655.453333pt;}
.y25{bottom:656.093333pt;}
.y58{bottom:661.053333pt;}
.y138{bottom:661.373333pt;}
.y2b{bottom:669.853333pt;}
.ya8{bottom:670.493333pt;}
.y24{bottom:673.053333pt;}
.y113{bottom:674.173333pt;}
.yec{bottom:674.493333pt;}
.y83{bottom:676.893333pt;}
.y57{bottom:682.173333pt;}
.y23{bottom:689.693333pt;}
.y2a{bottom:691.133333pt;}
.yc9{bottom:691.613333pt;}
.ya7{bottom:691.773333pt;}
.y112{bottom:695.453333pt;}
.y137{bottom:695.773333pt;}
.yeb{bottom:695.933333pt;}
.y82{bottom:698.013333pt;}
.y56{bottom:703.293333pt;}
.y22{bottom:704.893333pt;}
.y29{bottom:712.253333pt;}
.yc8{bottom:712.893333pt;}
.ya6{bottom:714.013333pt;}
.y111{bottom:716.573333pt;}
.yea{bottom:717.053333pt;}
.y81{bottom:719.133333pt;}
.y21{bottom:722.173333pt;}
.y55{bottom:724.413333pt;}
.y28{bottom:733.373333pt;}
.yc7{bottom:734.013333pt;}
.ya5{bottom:735.133333pt;}
.y110{bottom:737.693333pt;}
.ye9{bottom:738.333333pt;}
.y20{bottom:738.973333pt;}
.y80{bottom:740.413333pt;}
.y54{bottom:745.733333pt;}
.y136{bottom:751.493333pt;}
.y27{bottom:754.173333pt;}
.y3f{bottom:754.493333pt;}
.yc6{bottom:755.173333pt;}
.y1f{bottom:755.773333pt;}
.ya4{bottom:756.293333pt;}
.y10f{bottom:758.853333pt;}
.ye8{bottom:759.493333pt;}
.y7f{bottom:761.573333pt;}
.y53{bottom:766.853333pt;}
.yc5{bottom:776.293333pt;}
.ya3{bottom:777.573333pt;}
.y10e{bottom:779.973333pt;}
.ye7{bottom:780.933333pt;}
.y7e{bottom:782.693333pt;}
.y135{bottom:786.053333pt;}
.y52{bottom:787.973333pt;}
.y17{bottom:790.053333pt;}
.yc4{bottom:798.693333pt;}
.ya2{bottom:799.813333pt;}
.y10d{bottom:801.253333pt;}
.ye6{bottom:802.053333pt;}
.y7d{bottom:803.813333pt;}
.y16{bottom:806.853333pt;}
.y51{bottom:809.093333pt;}
.yc3{bottom:819.813333pt;}
.y134{bottom:820.453333pt;}
.ya1{bottom:820.613333pt;}
.y10c{bottom:822.693333pt;}
.ye5{bottom:823.173333pt;}
.y15{bottom:823.813333pt;}
.y7c{bottom:825.093333pt;}
.y50{bottom:830.373333pt;}
.y14{bottom:840.613333pt;}
.y133{bottom:841.733333pt;}
.ya0{bottom:842.053333pt;}
.y10b{bottom:843.813333pt;}
.ye4{bottom:844.453333pt;}
.y7b{bottom:846.213333pt;}
.y4f{bottom:851.493333pt;}
.y13{bottom:857.573333pt;}
.y132{bottom:862.853333pt;}
.y9f{bottom:863.013333pt;}
.yc2{bottom:863.333333pt;}
.y10a{bottom:864.933333pt;}
.ye3{bottom:865.573333pt;}
.y1e{bottom:866.213333pt;}
.y7a{bottom:867.333333pt;}
.y4e{bottom:872.613333pt;}
.y12{bottom:874.373333pt;}
.y5{bottom:882.373333pt;}
.y9e{bottom:884.453333pt;}
.y109{bottom:886.053333pt;}
.ye2{bottom:886.693333pt;}
.y79{bottom:888.133333pt;}
.y11{bottom:893.733333pt;}
.y131{bottom:897.253333pt;}
.y1d{bottom:898.373333pt;}
.y9d{bottom:905.573333pt;}
.y108{bottom:907.333333pt;}
.y1c{bottom:907.813333pt;}
.y78{bottom:909.093333pt;}
.y10{bottom:913.093333pt;}
.y4d{bottom:915.013333pt;}
.y130{bottom:918.533333pt;}
.y1b{bottom:926.213333pt;}
.y9c{bottom:927.973333pt;}
.y107{bottom:928.773333pt;}
.y77{bottom:929.093333pt;}
.yf{bottom:930.533333pt;}
.y4c{bottom:936.133333pt;}
.y12f{bottom:939.653333pt;}
.y1a{bottom:943.813333pt;}
.ye{bottom:949.093333pt;}
.y106{bottom:949.893333pt;}
.y76{bottom:950.213333pt;}
.y4b{bottom:957.253333pt;}
.yd{bottom:962.533333pt;}
.y19{bottom:964.613333pt;}
.y9b{bottom:970.213333pt;}
.y105{bottom:971.013333pt;}
.y75{bottom:971.333333pt;}
.y12e{bottom:974.053333pt;}
.y4a{bottom:975.013333pt;}
.yc{bottom:975.813333pt;}
.yb{bottom:989.093333pt;}
.y9a{bottom:991.333333pt;}
.y104{bottom:992.133333pt;}
.y49{bottom:992.293333pt;}
.y74{bottom:992.453333pt;}
.y12d{bottom:992.613333pt;}
.ya{bottom:1002.533333pt;}
.y18{bottom:1014.400000pt;}
.y9{bottom:1015.840000pt;}
.y43{bottom:1027.040000pt;}
.y8{bottom:1029.120000pt;}
.y40{bottom:1040.640000pt;}
.y72{bottom:1041.760000pt;}
.y42{bottom:1044.320000pt;}
.y2{bottom:1068.960000pt;}
.y1{bottom:1084.320000pt;}
.h13{height:4.590000pt;}
.h14{height:17.280000pt;}
.h10{height:17.440000pt;}
.hd{height:26.392500pt;}
.h3{height:37.583438pt;}
.h8{height:39.876250pt;}
.h4{height:42.400000pt;}
.h11{height:44.648750pt;}
.hb{height:47.180312pt;}
.h2{height:47.621250pt;}
.h5{height:52.296250pt;}
.h15{height:52.750000pt;}
.h6{height:52.785000pt;}
.h12{height:55.840000pt;}
.hc{height:56.843750pt;}
.he{height:57.375000pt;}
.h7{height:67.128750pt;}
.h9{height:75.602187pt;}
.ha{height:80.718125pt;}
.hf{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:145.146667pt;}
.w9{width:179.066667pt;}
.wb{width:179.226667pt;}
.w8{width:387.106667pt;}
.wa{width:553.853333pt;}
.w6{width:554.013333pt;}
.w7{width:793.759988pt;}
.w4{width:793.760000pt;}
.w5{width:794.000000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x1e{left:7.200000pt;}
.x16{left:12.000000pt;}
.x19{left:14.080000pt;}
.x6{left:22.719988pt;}
.x7{left:30.239988pt;}
.x10{left:32.159988pt;}
.x5{left:33.440000pt;}
.x17{left:35.674667pt;}
.x20{left:37.440000pt;}
.x1a{left:85.280000pt;}
.x15{left:113.471988pt;}
.x13{left:114.912000pt;}
.x1c{left:127.712000pt;}
.x23{left:137.466655pt;}
.x21{left:141.946655pt;}
.x1b{left:160.666655pt;}
.x22{left:170.266655pt;}
.x11{left:199.226655pt;}
.x1{left:202.426655pt;}
.xf{left:212.986655pt;}
.xe{left:231.866655pt;}
.x8{left:239.386655pt;}
.x2{left:249.666655pt;}
.x1d{left:266.754667pt;}
.xa{left:271.746655pt;}
.x1f{left:293.346667pt;}
.x9{left:366.146655pt;}
.xc{left:382.946655pt;}
.xd{left:387.266655pt;}
.x12{left:456.893321pt;}
.xb{left:461.853321pt;}
.x18{left:501.373333pt;}
.x4{left:590.533321pt;}
.x3{left:593.413321pt;}
.x14{left:667.173322pt;}
}




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