
    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_beafbdcf282378abcdf144a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_cc7caac1c8377e55d6a2e2ca.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.122070;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_2a22c71f95c03f346ca97dfa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_a8eb3465b5249f2dfc432dbc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_feb46e48cea135f41fe93cde.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.575000;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_75d75c666362389ea10ebbc9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.912598;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_80bfa3e3bdacd8c5e82d1b0d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.929688;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_41cd740153478442855346ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_82de82083492a457acfec128.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_dce78100b26cec6facb03722.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002930;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_730c27bfa77a4ee6a6568073.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.862793;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.120960px;}
.lsf{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.355680px;}
.ls15{letter-spacing:1.082880px;}
.lse{letter-spacing:10.617120px;}
.ls13{letter-spacing:13.080960px;}
.ls7{letter-spacing:14.037120px;}
.ls11{letter-spacing:17.071200px;}
.ls14{letter-spacing:19.802880px;}
.ls1{letter-spacing:21.242880px;}
.lsd{letter-spacing:23.577120px;}
.ls9{letter-spacing:25.488000px;}
.lsb{letter-spacing:27.648000px;}
.lsc{letter-spacing:29.520000px;}
.ls10{letter-spacing:30.031200px;}
.ls3{letter-spacing:36.537120px;}
.ls6{letter-spacing:42.840000px;}
.ls5{letter-spacing:46.872000px;}
.ls19{letter-spacing:46.889280px;}
.ls2{letter-spacing:51.408000px;}
.ls4{letter-spacing:55.257120px;}
.lsa{letter-spacing:55.440000px;}
.ls18{letter-spacing:70.128000px;}
.ls16{letter-spacing:73.077120px;}
.ls17{letter-spacing:90.288000px;}
.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;}
}
.ws23{word-spacing:-29.940480px;}
.ws5{word-spacing:-27.011520px;}
.ws1a{word-spacing:-24.408000px;}
.ws2{word-spacing:-21.804480px;}
.ws4{word-spacing:-18.875520px;}
.ws0{word-spacing:-16.272000px;}
.ws19{word-spacing:-15.120000px;}
.ws8{word-spacing:-13.680000px;}
.ws1f{word-spacing:-13.668480px;}
.ws1{word-spacing:-13.436640px;}
.ws22{word-spacing:-12.366720px;}
.wsd{word-spacing:-4.147202px;}
.ws1e{word-spacing:-3.888000px;}
.ws13{word-spacing:-3.191035px;}
.wsb{word-spacing:-2.707202px;}
.ws15{word-spacing:-2.707199px;}
.wse{word-spacing:-1.938240px;}
.ws1b{word-spacing:-0.648000px;}
.ws3{word-spacing:0.000000px;}
.ws1d{word-spacing:0.720000px;}
.ws1c{word-spacing:0.936000px;}
.ws20{word-spacing:2.088000px;}
.ws18{word-spacing:2.347202px;}
.ws21{word-spacing:2.520000px;}
.ws11{word-spacing:3.274560px;}
.ws9{word-spacing:5.074561px;}
.ws16{word-spacing:5.863681px;}
.ws14{word-spacing:9.034560px;}
.ws12{word-spacing:10.252800px;}
.wsa{word-spacing:22.250880px;}
.wsf{word-spacing:25.954561px;}
.ws10{word-spacing:36.941760px;}
.wsc{word-spacing:40.645438px;}
.ws17{word-spacing:49.132798px;}
.ws7{word-spacing:74.450878px;}
.ws6{word-spacing:155.554564px;}
._1b{margin-left:-9.917272px;}
._6{margin-left:-8.511844px;}
._1c{margin-left:-6.986875px;}
._8{margin-left:-5.368321px;}
._2{margin-left:-3.646084px;}
._5{margin-left:-2.119682px;}
._0{margin-left:-1.008000px;}
._1{width:1.494721px;}
._9{width:2.589115px;}
._3{width:3.795845px;}
._7{width:5.520958px;}
._18{width:6.681592px;}
._4{width:7.747200px;}
._e{width:11.652481px;}
._1a{width:16.234562px;}
._16{width:17.452799px;}
._10{width:18.506884px;}
._11{width:19.863362px;}
._14{width:22.124161px;}
._13{width:24.053760px;}
._12{width:25.326721px;}
._b{width:36.944640px;}
._c{width:38.583362px;}
._f{width:41.417284px;}
._d{width:55.477443px;}
._17{width:57.570336px;}
._15{width:64.612800px;}
._19{width:247.294087px;}
._a{width:342.604802px;}
.fcd{color:rgb(31,73,125);}
.fc0{color:rgb(0,0,0);}
.fc2{color:rgb(64,64,64);}
.fc5{color:rgb(0,5,20);}
.fce{color:rgb(210,32,32);}
.fc1{color:rgb(210,32,32);}
.fcc{color:rgb(148,138,84);}
.fc6{color:rgb(5,138,28);}
.fc9{color:rgb(192,80,77);}
.fc4{color:rgb(255,255,255);}
.fc8{color:rgb(255,147,121);}
.fc3{color:transparent;}
.fc7{color:rgb(0,0,255);}
.fca{color:rgb(149,55,53);}
.fcb{color:rgb(217,150,148);}
.fs2{font-size:44.640000px;}
.fsa{font-size:50.400000px;}
.fs7{font-size:54.720000px;}
.fs8{font-size:59.040000px;}
.fs1{font-size:60.480000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:119.520000px;}
.fs5{font-size:132.480000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:2.160000px;}
.yb9{bottom:3.960000px;}
.y101{bottom:5.400000px;}
.y2{bottom:37.440000px;}
.y36{bottom:40.383000px;}
.y35{bottom:61.983000px;}
.y10f{bottom:74.295000px;}
.y34{bottom:83.583000px;}
.y33{bottom:105.183000px;}
.y32{bottom:126.783000px;}
.y31{bottom:148.383000px;}
.yb8{bottom:165.960000px;}
.y30{bottom:169.983000px;}
.y8d{bottom:182.520000px;}
.yb7{bottom:191.520000px;}
.y2f{bottom:191.583000px;}
.y100{bottom:200.160000px;}
.y8c{bottom:200.520000px;}
.y89{bottom:203.400000px;}
.y10e{bottom:209.439000px;}
.y2e{bottom:213.183000px;}
.yb6{bottom:217.440000px;}
.y8b{bottom:218.520000px;}
.y56{bottom:220.680000px;}
.y88{bottom:221.400000px;}
.y61{bottom:228.960000px;}
.y43{bottom:231.480000px;}
.yd{bottom:232.200000px;}
.y2d{bottom:234.783000px;}
.y8a{bottom:236.520000px;}
.yb5{bottom:239.040000px;}
.y55{bottom:245.880000px;}
.y2c{bottom:256.383000px;}
.y42{bottom:256.680000px;}
.ycb{bottom:257.040000px;}
.y60{bottom:257.760000px;}
.yf5{bottom:258.840000px;}
.ya0{bottom:259.920000px;}
.yb4{bottom:260.640000px;}
.y26{bottom:262.080000px;}
.y75{bottom:262.440000px;}
.yef{bottom:262.800000px;}
.yc{bottom:267.840000px;}
.y54{bottom:271.080000px;}
.y25{bottom:278.640000px;}
.y2a{bottom:280.080000px;}
.yca{bottom:282.960000px;}
.y5f{bottom:286.560000px;}
.y41{bottom:286.920000px;}
.yd4{bottom:287.640000px;}
.yff{bottom:292.320000px;}
.y74{bottom:292.680000px;}
.y24{bottom:294.840000px;}
.y53{bottom:296.280000px;}
.yb{bottom:296.640000px;}
.yee{bottom:297.360000px;}
.y87{bottom:304.560000px;}
.y6c{bottom:305.280000px;}
.yc9{bottom:308.880000px;}
.y23{bottom:311.040000px;}
.y40{bottom:312.120000px;}
.yb3{bottom:312.480000px;}
.yd3{bottom:312.840000px;}
.y9f{bottom:317.880000px;}
.y5e{bottom:321.120000px;}
.y52{bottom:321.480000px;}
.yf4{bottom:322.200000px;}
.y86{bottom:322.560000px;}
.y73{bottom:322.920000px;}
.y22{bottom:327.240000px;}
.ya{bottom:329.760000px;}
.yed{bottom:331.920000px;}
.yb2{bottom:334.080000px;}
.yc8{bottom:334.800000px;}
.ydc{bottom:336.240000px;}
.y7d{bottom:337.320000px;}
.y6b{bottom:339.840000px;}
.y3f{bottom:342.360000px;}
.yd2{bottom:343.080000px;}
.y21{bottom:343.440000px;}
.y51{bottom:346.680000px;}
.y9e{bottom:348.120000px;}
.y5d{bottom:349.920000px;}
.yf3{bottom:351.000000px;}
.y72{bottom:353.160000px;}
.y1f{bottom:359.280000px;}
.y20{bottom:359.640000px;}
.yb1{bottom:360.000000px;}
.yc7{bottom:360.720000px;}
.y9{bottom:365.760000px;}
.yec{bottom:366.480000px;}
.y3e{bottom:367.560000px;}
.yd1{bottom:368.280000px;}
.y50{bottom:371.880000px;}
.y7c{bottom:373.320000px;}
.y6a{bottom:374.400000px;}
.y1e{bottom:375.840000px;}
.y9d{bottom:378.360000px;}
.yb0{bottom:381.600000px;}
.y85{bottom:383.760000px;}
.y5c{bottom:384.480000px;}
.yf2{bottom:385.560000px;}
.yc6{bottom:386.640000px;}
.y1d{bottom:392.040000px;}
.ye7{bottom:393.480000px;}
.yeb{bottom:395.280000px;}
.y3d{bottom:397.800000px;}
.yd0{bottom:398.520000px;}
.y10d{bottom:398.880000px;}
.y8{bottom:401.760000px;}
.yaf{bottom:407.520000px;}
.y1c{bottom:408.240000px;}
.y9c{bottom:408.600000px;}
.yc5{bottom:412.560000px;}
.y5b{bottom:413.280000px;}
.ydb{bottom:415.440000px;}
.y84{bottom:419.760000px;}
.yf1{bottom:420.120000px;}
.y3c{bottom:423.000000px;}
.ye6{bottom:423.720000px;}
.yea{bottom:424.080000px;}
.y1b{bottom:424.440000px;}
.ycf{bottom:428.760000px;}
.yae{bottom:433.440000px;}
.y7{bottom:437.760000px;}
.y9b{bottom:438.840000px;}
.y1a{bottom:440.640000px;}
.yfe{bottom:442.080000px;}
.y3b{bottom:448.200000px;}
.y5a{bottom:448.560000px;}
.y4f{bottom:451.440000px;}
.yce{bottom:453.960000px;}
.yad{bottom:459.360000px;}
.y19{bottom:466.560000px;}
.yfd{bottom:470.880000px;}
.yc4{bottom:471.960000px;}
.y9a{bottom:487.800000px;}
.yac{bottom:500.760000px;}
.y10c{bottom:504.360000px;}
.y102{bottom:510.120000px;}
.y18{bottom:523.800000px;}
.yab{bottom:529.560000px;}
.ye5{bottom:545.760000px;}
.y7a{bottom:691.920000px;}
.y81{bottom:716.040000px;}
.yaa{bottom:717.480000px;}
.y4e{bottom:720.360000px;}
.y79{bottom:722.880000px;}
.yfb{bottom:725.760000px;}
.y2b{bottom:726.409500px;}
.y10b{bottom:729.356400px;}
.y71{bottom:729.720000px;}
.y99{bottom:734.400000px;}
.y17{bottom:735.840000px;}
.y4d{bottom:738.360000px;}
.yc3{bottom:751.320000px;}
.y78{bottom:751.680000px;}
.yfa{bottom:754.560000px;}
.y70{bottom:754.920000px;}
.y98{bottom:756.000000px;}
.ye4{bottom:757.800000px;}
.y10a{bottom:758.155680px;}
.y4c{bottom:759.960000px;}
.y69{bottom:760.320000px;}
.y16{bottom:761.040000px;}
.ya9{bottom:764.280000px;}
.yc2{bottom:769.320000px;}
.yda{bottom:776.520000px;}
.y4b{bottom:781.560000px;}
.y97{bottom:781.920000px;}
.ye3{bottom:783.000000px;}
.yf9{bottom:783.360000px;}
.y6f{bottom:785.160000px;}
.ya8{bottom:785.880000px;}
.y15{bottom:786.240000px;}
.y109{bottom:786.954960px;}
.yc1{bottom:787.320000px;}
.y68{bottom:789.120000px;}
.y80{bottom:793.800000px;}
.yd9{bottom:798.120000px;}
.y4a{bottom:803.160000px;}
.y83{bottom:804.600000px;}
.yc0{bottom:805.320000px;}
.ya7{bottom:807.480000px;}
.y96{bottom:807.840000px;}
.ye2{bottom:813.240000px;}
.y6e{bottom:815.400000px;}
.y14{bottom:816.480000px;}
.y67{bottom:817.920000px;}
.y77{bottom:819.720000px;}
.y108{bottom:821.518920px;}
.ye9{bottom:823.680000px;}
.y49{bottom:824.760000px;}
.y95{bottom:829.440000px;}
.ye1{bottom:838.440000px;}
.y13{bottom:841.680000px;}
.y48{bottom:846.360000px;}
.y66{bottom:846.720000px;}
.y76{bottom:849.960000px;}
.y107{bottom:850.318200px;}
.ycd{bottom:854.280000px;}
.y94{bottom:855.360000px;}
.ybd{bottom:862.920000px;}
.ye8{bottom:863.280000px;}
.ye0{bottom:863.640000px;}
.y47{bottom:867.960000px;}
.ya6{bottom:868.320000px;}
.y59{bottom:870.480000px;}
.y7f{bottom:871.560000px;}
.y12{bottom:871.920000px;}
.y6d{bottom:875.520000px;}
.yd8{bottom:875.880000px;}
.y106{bottom:879.117480px;}
.ybc{bottom:880.920000px;}
.y65{bottom:881.280000px;}
.yf0{bottom:881.640000px;}
.y6{bottom:889.200000px;}
.y46{bottom:889.560000px;}
.ya5{bottom:889.920000px;}
.ycc{bottom:890.280000px;}
.y3a{bottom:893.160000px;}
.ydf{bottom:893.880000px;}
.y11{bottom:897.120000px;}
.yd7{bottom:897.480000px;}
.y58{bottom:902.880000px;}
.yf8{bottom:904.320000px;}
.y93{bottom:907.200000px;}
.y64{bottom:910.080000px;}
.y45{bottom:911.160000px;}
.ya4{bottom:911.520000px;}
.y105{bottom:913.681440px;}
.y39{bottom:918.360000px;}
.yde{bottom:919.080000px;}
.yd6{bottom:924.120000px;}
.y10{bottom:927.360000px;}
.y92{bottom:928.800000px;}
.ya3{bottom:933.120000px;}
.y57{bottom:935.280000px;}
.y63{bottom:938.880000px;}
.y44{bottom:941.400000px;}
.y104{bottom:942.480720px;}
.ybb{bottom:945.720000px;}
.y5{bottom:947.520000px;}
.y38{bottom:948.600000px;}
.y7e{bottom:949.320000px;}
.yf{bottom:952.560000px;}
.y29{bottom:954.357840px;}
.yd5{bottom:954.360000px;}
.y91{bottom:954.720000px;}
.y4{bottom:961.200000px;}
.y82{bottom:961.560000px;}
.yba{bottom:963.720000px;}
.ya2{bottom:964.440000px;}
.yf7{bottom:967.680000px;}
.y103{bottom:971.280000px;}
.y37{bottom:973.800000px;}
.y62{bottom:974.160000px;}
.y28{bottom:979.560000px;}
.y90{bottom:980.640000px;}
.yf6{bottom:996.480000px;}
.ya1{bottom:1013.400000px;}
.ybf{bottom:1026.360000px;}
.y8f{bottom:1029.600000px;}
.y3{bottom:1029.960000px;}
.yfc{bottom:1036.080000px;}
.ye{bottom:1046.520000px;}
.y27{bottom:1049.400000px;}
.ybe{bottom:1055.160000px;}
.y8e{bottom:1065.600000px;}
.ydd{bottom:1071.720000px;}
.y1{bottom:1213.560000px;}
.h17{height:21.240000px;}
.h13{height:25.200000px;}
.h19{height:28.440000px;}
.hc{height:36.471094px;}
.hf{height:40.310156px;}
.h4{height:40.934531px;}
.h15{height:45.127969px;}
.h5{height:46.558125px;}
.h16{height:49.878281px;}
.h3{height:55.459688px;}
.h2{height:59.378906px;}
.h18{height:66.047344px;}
.hb{height:68.879531px;}
.he{height:75.093750px;}
.h14{height:76.824000px;}
.h7{height:79.567734px;}
.h11{height:89.068359px;}
.ha{height:89.115840px;}
.h1a{height:89.236650px;}
.h6{height:98.568984px;}
.h8{height:100.625625px;}
.h10{height:102.944160px;}
.h9{height:109.257187px;}
.h12{height:115.236000px;}
.hd{height:271.323900px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:99.055050px;}
.w4{width:144.360000px;}
.w3{width:158.760000px;}
.w5{width:167.400000px;}
.w2{width:224.728200px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4b{left:9.020100px;}
.x19{left:181.800000px;}
.x3b{left:185.040000px;}
.x28{left:189.360000px;}
.xe{left:195.120000px;}
.x1c{left:196.200000px;}
.x37{left:199.080000px;}
.x15{left:209.182800px;}
.x1b{left:211.320000px;}
.x27{left:213.120000px;}
.x3e{left:215.280000px;}
.x3{left:217.800000px;}
.x2e{left:221.760000px;}
.x45{left:222.840000px;}
.x14{left:224.280000px;}
.x1e{left:225.720000px;}
.x36{left:226.800000px;}
.x42{left:227.880000px;}
.x17{left:228.960000px;}
.x16{left:230.760000px;}
.x18{left:232.920000px;}
.xa{left:234.720000px;}
.xb{left:236.520000px;}
.x6{left:237.600000px;}
.x33{left:248.400000px;}
.x1f{left:249.480000px;}
.x1d{left:252.360000px;}
.xc{left:253.440000px;}
.x46{left:254.520000px;}
.x48{left:255.600000px;}
.x20{left:262.800000px;}
.x3d{left:264.960000px;}
.x5{left:268.200000px;}
.x4{left:273.960000px;}
.x3f{left:276.480000px;}
.x9{left:278.280000px;}
.x43{left:283.320000px;}
.x32{left:295.560000px;}
.x35{left:297.720000px;}
.x26{left:299.880000px;}
.x8{left:309.240000px;}
.x22{left:310.320000px;}
.x44{left:317.880000px;}
.x3a{left:325.080000px;}
.x2d{left:327.960000px;}
.x11{left:329.760000px;}
.x40{left:332.280000px;}
.x38{left:333.360000px;}
.xd{left:339.120000px;}
.x3c{left:350.640000px;}
.x39{left:353.880000px;}
.xf{left:366.480000px;}
.x47{left:369.000000px;}
.x49{left:372.960000px;}
.x2c{left:374.760000px;}
.x41{left:379.440000px;}
.x4a{left:390.819900px;}
.x7{left:392.040000px;}
.x31{left:405.360000px;}
.x34{left:407.160000px;}
.x2a{left:439.200000px;}
.x2b{left:444.600000px;}
.x1a{left:451.800000px;}
.x12{left:456.120000px;}
.x2f{left:475.920000px;}
.x30{left:478.080000px;}
.x13{left:486.354240px;}
.x29{left:498.960000px;}
.x23{left:526.320000px;}
.x25{left:535.680000px;}
.x10{left:538.200000px;}
.x24{left:540.720000px;}
.x1{left:769.320000px;}
.x21{left:837.000000px;}
.x2{left:846.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.107520pt;}
.lsf{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.316160pt;}
.ls15{letter-spacing:0.962560pt;}
.lse{letter-spacing:9.437440pt;}
.ls13{letter-spacing:11.627520pt;}
.ls7{letter-spacing:12.477440pt;}
.ls11{letter-spacing:15.174400pt;}
.ls14{letter-spacing:17.602560pt;}
.ls1{letter-spacing:18.882560pt;}
.lsd{letter-spacing:20.957440pt;}
.ls9{letter-spacing:22.656000pt;}
.lsb{letter-spacing:24.576000pt;}
.lsc{letter-spacing:26.240000pt;}
.ls10{letter-spacing:26.694400pt;}
.ls3{letter-spacing:32.477440pt;}
.ls6{letter-spacing:38.080000pt;}
.ls5{letter-spacing:41.664000pt;}
.ls19{letter-spacing:41.679360pt;}
.ls2{letter-spacing:45.696000pt;}
.ls4{letter-spacing:49.117440pt;}
.lsa{letter-spacing:49.280000pt;}
.ls18{letter-spacing:62.336000pt;}
.ls16{letter-spacing:64.957440pt;}
.ls17{letter-spacing:80.256000pt;}
.ws23{word-spacing:-26.613760pt;}
.ws5{word-spacing:-24.010240pt;}
.ws1a{word-spacing:-21.696000pt;}
.ws2{word-spacing:-19.381760pt;}
.ws4{word-spacing:-16.778240pt;}
.ws0{word-spacing:-14.464000pt;}
.ws19{word-spacing:-13.440000pt;}
.ws8{word-spacing:-12.160000pt;}
.ws1f{word-spacing:-12.149760pt;}
.ws1{word-spacing:-11.943680pt;}
.ws22{word-spacing:-10.992640pt;}
.wsd{word-spacing:-3.686402pt;}
.ws1e{word-spacing:-3.456000pt;}
.ws13{word-spacing:-2.836476pt;}
.wsb{word-spacing:-2.406402pt;}
.ws15{word-spacing:-2.406399pt;}
.wse{word-spacing:-1.722880pt;}
.ws1b{word-spacing:-0.576000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.640000pt;}
.ws1c{word-spacing:0.832000pt;}
.ws20{word-spacing:1.856000pt;}
.ws18{word-spacing:2.086402pt;}
.ws21{word-spacing:2.240000pt;}
.ws11{word-spacing:2.910720pt;}
.ws9{word-spacing:4.510721pt;}
.ws16{word-spacing:5.212161pt;}
.ws14{word-spacing:8.030720pt;}
.ws12{word-spacing:9.113600pt;}
.wsa{word-spacing:19.778560pt;}
.wsf{word-spacing:23.070721pt;}
.ws10{word-spacing:32.837120pt;}
.wsc{word-spacing:36.129279pt;}
.ws17{word-spacing:43.673598pt;}
.ws7{word-spacing:66.178559pt;}
.ws6{word-spacing:138.270723pt;}
._1b{margin-left:-8.815353pt;}
._6{margin-left:-7.566083pt;}
._1c{margin-left:-6.210556pt;}
._8{margin-left:-4.771841pt;}
._2{margin-left:-3.240964pt;}
._5{margin-left:-1.884162pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.328641pt;}
._9{width:2.301436pt;}
._3{width:3.374084pt;}
._7{width:4.907518pt;}
._18{width:5.939193pt;}
._4{width:6.886400pt;}
._e{width:10.357761pt;}
._1a{width:14.430722pt;}
._16{width:15.513599pt;}
._10{width:16.450564pt;}
._11{width:17.656322pt;}
._14{width:19.665921pt;}
._13{width:21.381120pt;}
._12{width:22.512641pt;}
._b{width:32.839680pt;}
._c{width:34.296322pt;}
._f{width:36.815364pt;}
._d{width:49.313283pt;}
._17{width:51.173632pt;}
._15{width:57.433600pt;}
._19{width:219.816966pt;}
._a{width:304.537602pt;}
.fs2{font-size:39.680000pt;}
.fsa{font-size:44.800000pt;}
.fs7{font-size:48.640000pt;}
.fs8{font-size:52.480000pt;}
.fs1{font-size:53.760000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:106.240000pt;}
.fs5{font-size:117.760000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:1.920000pt;}
.yb9{bottom:3.520000pt;}
.y101{bottom:4.800000pt;}
.y2{bottom:33.280000pt;}
.y36{bottom:35.896000pt;}
.y35{bottom:55.096000pt;}
.y10f{bottom:66.040000pt;}
.y34{bottom:74.296000pt;}
.y33{bottom:93.496000pt;}
.y32{bottom:112.696000pt;}
.y31{bottom:131.896000pt;}
.yb8{bottom:147.520000pt;}
.y30{bottom:151.096000pt;}
.y8d{bottom:162.240000pt;}
.yb7{bottom:170.240000pt;}
.y2f{bottom:170.296000pt;}
.y100{bottom:177.920000pt;}
.y8c{bottom:178.240000pt;}
.y89{bottom:180.800000pt;}
.y10e{bottom:186.168000pt;}
.y2e{bottom:189.496000pt;}
.yb6{bottom:193.280000pt;}
.y8b{bottom:194.240000pt;}
.y56{bottom:196.160000pt;}
.y88{bottom:196.800000pt;}
.y61{bottom:203.520000pt;}
.y43{bottom:205.760000pt;}
.yd{bottom:206.400000pt;}
.y2d{bottom:208.696000pt;}
.y8a{bottom:210.240000pt;}
.yb5{bottom:212.480000pt;}
.y55{bottom:218.560000pt;}
.y2c{bottom:227.896000pt;}
.y42{bottom:228.160000pt;}
.ycb{bottom:228.480000pt;}
.y60{bottom:229.120000pt;}
.yf5{bottom:230.080000pt;}
.ya0{bottom:231.040000pt;}
.yb4{bottom:231.680000pt;}
.y26{bottom:232.960000pt;}
.y75{bottom:233.280000pt;}
.yef{bottom:233.600000pt;}
.yc{bottom:238.080000pt;}
.y54{bottom:240.960000pt;}
.y25{bottom:247.680000pt;}
.y2a{bottom:248.960000pt;}
.yca{bottom:251.520000pt;}
.y5f{bottom:254.720000pt;}
.y41{bottom:255.040000pt;}
.yd4{bottom:255.680000pt;}
.yff{bottom:259.840000pt;}
.y74{bottom:260.160000pt;}
.y24{bottom:262.080000pt;}
.y53{bottom:263.360000pt;}
.yb{bottom:263.680000pt;}
.yee{bottom:264.320000pt;}
.y87{bottom:270.720000pt;}
.y6c{bottom:271.360000pt;}
.yc9{bottom:274.560000pt;}
.y23{bottom:276.480000pt;}
.y40{bottom:277.440000pt;}
.yb3{bottom:277.760000pt;}
.yd3{bottom:278.080000pt;}
.y9f{bottom:282.560000pt;}
.y5e{bottom:285.440000pt;}
.y52{bottom:285.760000pt;}
.yf4{bottom:286.400000pt;}
.y86{bottom:286.720000pt;}
.y73{bottom:287.040000pt;}
.y22{bottom:290.880000pt;}
.ya{bottom:293.120000pt;}
.yed{bottom:295.040000pt;}
.yb2{bottom:296.960000pt;}
.yc8{bottom:297.600000pt;}
.ydc{bottom:298.880000pt;}
.y7d{bottom:299.840000pt;}
.y6b{bottom:302.080000pt;}
.y3f{bottom:304.320000pt;}
.yd2{bottom:304.960000pt;}
.y21{bottom:305.280000pt;}
.y51{bottom:308.160000pt;}
.y9e{bottom:309.440000pt;}
.y5d{bottom:311.040000pt;}
.yf3{bottom:312.000000pt;}
.y72{bottom:313.920000pt;}
.y1f{bottom:319.360000pt;}
.y20{bottom:319.680000pt;}
.yb1{bottom:320.000000pt;}
.yc7{bottom:320.640000pt;}
.y9{bottom:325.120000pt;}
.yec{bottom:325.760000pt;}
.y3e{bottom:326.720000pt;}
.yd1{bottom:327.360000pt;}
.y50{bottom:330.560000pt;}
.y7c{bottom:331.840000pt;}
.y6a{bottom:332.800000pt;}
.y1e{bottom:334.080000pt;}
.y9d{bottom:336.320000pt;}
.yb0{bottom:339.200000pt;}
.y85{bottom:341.120000pt;}
.y5c{bottom:341.760000pt;}
.yf2{bottom:342.720000pt;}
.yc6{bottom:343.680000pt;}
.y1d{bottom:348.480000pt;}
.ye7{bottom:349.760000pt;}
.yeb{bottom:351.360000pt;}
.y3d{bottom:353.600000pt;}
.yd0{bottom:354.240000pt;}
.y10d{bottom:354.560000pt;}
.y8{bottom:357.120000pt;}
.yaf{bottom:362.240000pt;}
.y1c{bottom:362.880000pt;}
.y9c{bottom:363.200000pt;}
.yc5{bottom:366.720000pt;}
.y5b{bottom:367.360000pt;}
.ydb{bottom:369.280000pt;}
.y84{bottom:373.120000pt;}
.yf1{bottom:373.440000pt;}
.y3c{bottom:376.000000pt;}
.ye6{bottom:376.640000pt;}
.yea{bottom:376.960000pt;}
.y1b{bottom:377.280000pt;}
.ycf{bottom:381.120000pt;}
.yae{bottom:385.280000pt;}
.y7{bottom:389.120000pt;}
.y9b{bottom:390.080000pt;}
.y1a{bottom:391.680000pt;}
.yfe{bottom:392.960000pt;}
.y3b{bottom:398.400000pt;}
.y5a{bottom:398.720000pt;}
.y4f{bottom:401.280000pt;}
.yce{bottom:403.520000pt;}
.yad{bottom:408.320000pt;}
.y19{bottom:414.720000pt;}
.yfd{bottom:418.560000pt;}
.yc4{bottom:419.520000pt;}
.y9a{bottom:433.600000pt;}
.yac{bottom:445.120000pt;}
.y10c{bottom:448.320000pt;}
.y102{bottom:453.440000pt;}
.y18{bottom:465.600000pt;}
.yab{bottom:470.720000pt;}
.ye5{bottom:485.120000pt;}
.y7a{bottom:615.040000pt;}
.y81{bottom:636.480000pt;}
.yaa{bottom:637.760000pt;}
.y4e{bottom:640.320000pt;}
.y79{bottom:642.560000pt;}
.yfb{bottom:645.120000pt;}
.y2b{bottom:645.697333pt;}
.y10b{bottom:648.316800pt;}
.y71{bottom:648.640000pt;}
.y99{bottom:652.800000pt;}
.y17{bottom:654.080000pt;}
.y4d{bottom:656.320000pt;}
.yc3{bottom:667.840000pt;}
.y78{bottom:668.160000pt;}
.yfa{bottom:670.720000pt;}
.y70{bottom:671.040000pt;}
.y98{bottom:672.000000pt;}
.ye4{bottom:673.600000pt;}
.y10a{bottom:673.916160pt;}
.y4c{bottom:675.520000pt;}
.y69{bottom:675.840000pt;}
.y16{bottom:676.480000pt;}
.ya9{bottom:679.360000pt;}
.yc2{bottom:683.840000pt;}
.yda{bottom:690.240000pt;}
.y4b{bottom:694.720000pt;}
.y97{bottom:695.040000pt;}
.ye3{bottom:696.000000pt;}
.yf9{bottom:696.320000pt;}
.y6f{bottom:697.920000pt;}
.ya8{bottom:698.560000pt;}
.y15{bottom:698.880000pt;}
.y109{bottom:699.515520pt;}
.yc1{bottom:699.840000pt;}
.y68{bottom:701.440000pt;}
.y80{bottom:705.600000pt;}
.yd9{bottom:709.440000pt;}
.y4a{bottom:713.920000pt;}
.y83{bottom:715.200000pt;}
.yc0{bottom:715.840000pt;}
.ya7{bottom:717.760000pt;}
.y96{bottom:718.080000pt;}
.ye2{bottom:722.880000pt;}
.y6e{bottom:724.800000pt;}
.y14{bottom:725.760000pt;}
.y67{bottom:727.040000pt;}
.y77{bottom:728.640000pt;}
.y108{bottom:730.239040pt;}
.ye9{bottom:732.160000pt;}
.y49{bottom:733.120000pt;}
.y95{bottom:737.280000pt;}
.ye1{bottom:745.280000pt;}
.y13{bottom:748.160000pt;}
.y48{bottom:752.320000pt;}
.y66{bottom:752.640000pt;}
.y76{bottom:755.520000pt;}
.y107{bottom:755.838400pt;}
.ycd{bottom:759.360000pt;}
.y94{bottom:760.320000pt;}
.ybd{bottom:767.040000pt;}
.ye8{bottom:767.360000pt;}
.ye0{bottom:767.680000pt;}
.y47{bottom:771.520000pt;}
.ya6{bottom:771.840000pt;}
.y59{bottom:773.760000pt;}
.y7f{bottom:774.720000pt;}
.y12{bottom:775.040000pt;}
.y6d{bottom:778.240000pt;}
.yd8{bottom:778.560000pt;}
.y106{bottom:781.437760pt;}
.ybc{bottom:783.040000pt;}
.y65{bottom:783.360000pt;}
.yf0{bottom:783.680000pt;}
.y6{bottom:790.400000pt;}
.y46{bottom:790.720000pt;}
.ya5{bottom:791.040000pt;}
.ycc{bottom:791.360000pt;}
.y3a{bottom:793.920000pt;}
.ydf{bottom:794.560000pt;}
.y11{bottom:797.440000pt;}
.yd7{bottom:797.760000pt;}
.y58{bottom:802.560000pt;}
.yf8{bottom:803.840000pt;}
.y93{bottom:806.400000pt;}
.y64{bottom:808.960000pt;}
.y45{bottom:809.920000pt;}
.ya4{bottom:810.240000pt;}
.y105{bottom:812.161280pt;}
.y39{bottom:816.320000pt;}
.yde{bottom:816.960000pt;}
.yd6{bottom:821.440000pt;}
.y10{bottom:824.320000pt;}
.y92{bottom:825.600000pt;}
.ya3{bottom:829.440000pt;}
.y57{bottom:831.360000pt;}
.y63{bottom:834.560000pt;}
.y44{bottom:836.800000pt;}
.y104{bottom:837.760640pt;}
.ybb{bottom:840.640000pt;}
.y5{bottom:842.240000pt;}
.y38{bottom:843.200000pt;}
.y7e{bottom:843.840000pt;}
.yf{bottom:846.720000pt;}
.y29{bottom:848.318080pt;}
.yd5{bottom:848.320000pt;}
.y91{bottom:848.640000pt;}
.y4{bottom:854.400000pt;}
.y82{bottom:854.720000pt;}
.yba{bottom:856.640000pt;}
.ya2{bottom:857.280000pt;}
.yf7{bottom:860.160000pt;}
.y103{bottom:863.360000pt;}
.y37{bottom:865.600000pt;}
.y62{bottom:865.920000pt;}
.y28{bottom:870.720000pt;}
.y90{bottom:871.680000pt;}
.yf6{bottom:885.760000pt;}
.ya1{bottom:900.800000pt;}
.ybf{bottom:912.320000pt;}
.y8f{bottom:915.200000pt;}
.y3{bottom:915.520000pt;}
.yfc{bottom:920.960000pt;}
.ye{bottom:930.240000pt;}
.y27{bottom:932.800000pt;}
.ybe{bottom:937.920000pt;}
.y8e{bottom:947.200000pt;}
.ydd{bottom:952.640000pt;}
.y1{bottom:1078.720000pt;}
.h17{height:18.880000pt;}
.h13{height:22.400000pt;}
.h19{height:25.280000pt;}
.hc{height:32.418750pt;}
.hf{height:35.831250pt;}
.h4{height:36.386250pt;}
.h15{height:40.113750pt;}
.h5{height:41.385000pt;}
.h16{height:44.336250pt;}
.h3{height:49.297500pt;}
.h2{height:52.781250pt;}
.h18{height:58.708750pt;}
.hb{height:61.226250pt;}
.he{height:66.750000pt;}
.h14{height:68.288000pt;}
.h7{height:70.726875pt;}
.h11{height:79.171875pt;}
.ha{height:79.214080pt;}
.h1a{height:79.321467pt;}
.h6{height:87.616875pt;}
.h8{height:89.445000pt;}
.h10{height:91.505920pt;}
.h9{height:97.117500pt;}
.h12{height:102.432000pt;}
.hd{height:241.176800pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:88.048933pt;}
.w4{width:128.320000pt;}
.w3{width:141.120000pt;}
.w5{width:148.800000pt;}
.w2{width:199.758400pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4b{left:8.017867pt;}
.x19{left:161.600000pt;}
.x3b{left:164.480000pt;}
.x28{left:168.320000pt;}
.xe{left:173.440000pt;}
.x1c{left:174.400000pt;}
.x37{left:176.960000pt;}
.x15{left:185.940267pt;}
.x1b{left:187.840000pt;}
.x27{left:189.440000pt;}
.x3e{left:191.360000pt;}
.x3{left:193.600000pt;}
.x2e{left:197.120000pt;}
.x45{left:198.080000pt;}
.x14{left:199.360000pt;}
.x1e{left:200.640000pt;}
.x36{left:201.600000pt;}
.x42{left:202.560000pt;}
.x17{left:203.520000pt;}
.x16{left:205.120000pt;}
.x18{left:207.040000pt;}
.xa{left:208.640000pt;}
.xb{left:210.240000pt;}
.x6{left:211.200000pt;}
.x33{left:220.800000pt;}
.x1f{left:221.760000pt;}
.x1d{left:224.320000pt;}
.xc{left:225.280000pt;}
.x46{left:226.240000pt;}
.x48{left:227.200000pt;}
.x20{left:233.600000pt;}
.x3d{left:235.520000pt;}
.x5{left:238.400000pt;}
.x4{left:243.520000pt;}
.x3f{left:245.760000pt;}
.x9{left:247.360000pt;}
.x43{left:251.840000pt;}
.x32{left:262.720000pt;}
.x35{left:264.640000pt;}
.x26{left:266.560000pt;}
.x8{left:274.880000pt;}
.x22{left:275.840000pt;}
.x44{left:282.560000pt;}
.x3a{left:288.960000pt;}
.x2d{left:291.520000pt;}
.x11{left:293.120000pt;}
.x40{left:295.360000pt;}
.x38{left:296.320000pt;}
.xd{left:301.440000pt;}
.x3c{left:311.680000pt;}
.x39{left:314.560000pt;}
.xf{left:325.760000pt;}
.x47{left:328.000000pt;}
.x49{left:331.520000pt;}
.x2c{left:333.120000pt;}
.x41{left:337.280000pt;}
.x4a{left:347.395467pt;}
.x7{left:348.480000pt;}
.x31{left:360.320000pt;}
.x34{left:361.920000pt;}
.x2a{left:390.400000pt;}
.x2b{left:395.200000pt;}
.x1a{left:401.600000pt;}
.x12{left:405.440000pt;}
.x2f{left:423.040000pt;}
.x30{left:424.960000pt;}
.x13{left:432.314880pt;}
.x29{left:443.520000pt;}
.x23{left:467.840000pt;}
.x25{left:476.160000pt;}
.x10{left:478.400000pt;}
.x24{left:480.640000pt;}
.x1{left:683.840000pt;}
.x21{left:744.000000pt;}
.x2{left:752.000000pt;}
}




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