
    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_43ff103e10c90971896425fa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.944824;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_cf541b60524e0845c143f3dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_571aba009a4a0109e952d899.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_17ff72f179d36cd7791e5bca.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_31d3bb7feb0a9d7b06d42e08.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.877000;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_641f21fb5447b6984264595f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_82e8effa9202eb9df58c2e4b.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m1{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);}
.m0{transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285714,0.000000,0.000000,0.250000,0,0);}
.m2{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:-63.177600px;}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.337400px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:767.073000px;}
.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;}
}
.ws0{word-spacing:-16.500000px;}
.ws17{word-spacing:-15.000000px;}
.ws11{word-spacing:-13.500000px;}
.ws1{word-spacing:-9.619500px;}
.ws10{word-spacing:-6.930000px;}
.ws7{word-spacing:-2.880000px;}
.ws5{word-spacing:-2.820000px;}
.ws26{word-spacing:-2.460000px;}
.ws4{word-spacing:-2.400000px;}
.ws2a{word-spacing:-1.620000px;}
.ws6{word-spacing:-1.380000px;}
.ws3{word-spacing:-1.056000px;}
.ws3a{word-spacing:-0.840000px;}
.ws28{word-spacing:-0.660000px;}
.ws29{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.wse{word-spacing:0.120000px;}
.ws16{word-spacing:0.540000px;}
.ws13{word-spacing:0.600000px;}
.ws36{word-spacing:0.660000px;}
.ws12{word-spacing:0.780000px;}
.ws27{word-spacing:1.020000px;}
.ws9{word-spacing:1.080000px;}
.ws14{word-spacing:1.200000px;}
.ws39{word-spacing:1.320000px;}
.ws37{word-spacing:1.380000px;}
.ws8{word-spacing:2.400000px;}
.ws38{word-spacing:2.640000px;}
.wsc{word-spacing:3.840000px;}
.wsd{word-spacing:4.080000px;}
.ws15{word-spacing:5.100000px;}
.wsb{word-spacing:5.340000px;}
.wsf{word-spacing:28.476000px;}
.ws22{word-spacing:78.872400px;}
.wsa{word-spacing:202.500000px;}
.ws1d{word-spacing:205.524000px;}
.ws20{word-spacing:211.572000px;}
.ws1c{word-spacing:253.638000px;}
.ws2f{word-spacing:283.500000px;}
.ws31{word-spacing:299.376000px;}
.ws1f{word-spacing:389.664000px;}
.ws18{word-spacing:395.334000px;}
.ws2d{word-spacing:398.466000px;}
.ws32{word-spacing:401.328000px;}
.ws34{word-spacing:416.448000px;}
.ws1e{word-spacing:416.502000px;}
.ws23{word-spacing:421.642800px;}
.ws21{word-spacing:440.478000px;}
.ws2e{word-spacing:446.418000px;}
.ws1b{word-spacing:455.706000px;}
.ws25{word-spacing:461.700000px;}
.ws35{word-spacing:464.400000px;}
.ws19{word-spacing:511.342200px;}
.ws2b{word-spacing:524.394000px;}
.ws2c{word-spacing:535.248000px;}
.ws33{word-spacing:562.248000px;}
.ws24{word-spacing:616.248000px;}
.ws1a{word-spacing:619.218000px;}
.ws30{word-spacing:658.470600px;}
._9{margin-left:-206.463600px;}
._b{margin-left:-202.500000px;}
._a{margin-left:-165.380400px;}
._c{margin-left:-40.500000px;}
._6c{margin-left:-8.700000px;}
._d{margin-left:-6.780000px;}
._14{margin-left:-5.240400px;}
._3{margin-left:-4.170000px;}
._2{margin-left:-3.018000px;}
._0{margin-left:-1.181400px;}
._7{width:1.368000px;}
._6{width:3.156000px;}
._12{width:5.130000px;}
._10{width:6.384000px;}
._11{width:7.620000px;}
._e{width:10.878000px;}
._f{width:12.942000px;}
._5a{width:24.607800px;}
._41{width:49.626000px;}
._15{width:52.004400px;}
._38{width:56.862000px;}
._34{width:66.953400px;}
._16{width:84.078000px;}
._5f{width:85.320000px;}
._47{width:89.706000px;}
._26{width:100.733400px;}
._69{width:103.302000px;}
._1b{width:107.328000px;}
._67{width:112.428000px;}
._66{width:117.072000px;}
._45{width:119.556000px;}
._4b{width:131.814000px;}
._8{width:138.076800px;}
._4a{width:140.069400px;}
._58{width:146.286000px;}
._64{width:149.364000px;}
._65{width:152.820000px;}
._2e{width:165.881400px;}
._5b{width:174.906000px;}
._48{width:188.136000px;}
._4c{width:191.376000px;}
._13{width:195.900000px;}
._4{width:198.600000px;}
._5{width:201.000000px;}
._1{width:203.400000px;}
._39{width:205.254000px;}
._5e{width:215.352000px;}
._60{width:217.350000px;}
._36{width:219.024000px;}
._53{width:225.072000px;}
._23{width:227.718000px;}
._1d{width:229.284000px;}
._2b{width:233.820000px;}
._68{width:244.134000px;}
._30{width:246.601200px;}
._3b{width:257.742000px;}
._63{width:267.941400px;}
._1e{width:270.918000px;}
._5d{width:275.718000px;}
._28{width:293.544000px;}
._46{width:304.894800px;}
._22{width:317.736000px;}
._61{width:320.490000px;}
._4d{width:328.266000px;}
._29{width:332.532000px;}
._37{width:336.906000px;}
._1f{width:356.724000px;}
._3f{width:359.748000px;}
._50{width:363.906000px;}
._3d{width:368.658000px;}
._59{width:371.736000px;}
._2c{width:374.382000px;}
._1c{width:393.984000px;}
._31{width:395.388000px;}
._56{width:399.870000px;}
._2f{width:404.730000px;}
._5c{width:406.242000px;}
._25{width:407.646000px;}
._19{width:418.500000px;}
._2a{width:421.362000px;}
._4e{width:427.952400px;}
._27{width:436.266000px;}
._1a{width:438.457200px;}
._57{width:440.694000px;}
._55{width:451.278000px;}
._21{width:456.948000px;}
._44{width:469.314000px;}
._6a{width:475.308000px;}
._3c{width:481.248000px;}
._24{width:486.864000px;}
._42{width:489.942000px;}
._33{width:492.912000px;}
._40{width:496.314000px;}
._49{width:499.284000px;}
._20{width:508.248000px;}
._4f{width:521.471400px;}
._17{width:526.284000px;}
._3e{width:530.435400px;}
._32{width:536.706000px;}
._35{width:538.272000px;}
._3a{width:541.242000px;}
._2d{width:542.754000px;}
._52{width:562.248000px;}
._43{width:596.754000px;}
._54{width:638.658000px;}
._62{width:644.706000px;}
._51{width:653.724000px;}
._6b{width:656.748000px;}
._18{width:713.718000px;}
.fc2{color:rgb(33,94,158);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(71,150,207);}
.fs6{font-size:38.478000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:126.000000px;}
.fs0{font-size:151.200000px;}
.y0{bottom:0.000000px;}
.y39{bottom:40.914150px;}
.y75{bottom:40.936200px;}
.ye7{bottom:41.365050px;}
.y73{bottom:41.478450px;}
.ye6{bottom:41.885100px;}
.y3{bottom:41.998500px;}
.y12{bottom:56.708550px;}
.yea{bottom:68.023500px;}
.ye5{bottom:73.694700px;}
.y11{bottom:74.708550px;}
.y72{bottom:77.934300px;}
.yae{bottom:79.047900px;}
.ye9{bottom:84.223500px;}
.ye4{bottom:91.694700px;}
.y71{bottom:95.934300px;}
.yad{bottom:100.418400px;}
.ye8{bottom:100.423500px;}
.y10{bottom:109.230000px;}
.ye3{bottom:109.694700px;}
.y70{bottom:113.934300px;}
.yac{bottom:121.788900px;}
.yf{bottom:127.230000px;}
.ye2{bottom:127.694700px;}
.y120{bottom:129.518850px;}
.y6f{bottom:131.934300px;}
.yab{bottom:143.159400px;}
.ye{bottom:145.230000px;}
.ye1{bottom:145.694700px;}
.y11f{bottom:147.518850px;}
.y6e{bottom:149.934300px;}
.yd{bottom:163.230000px;}
.ye0{bottom:163.694700px;}
.yaa{bottom:164.529900px;}
.y11e{bottom:165.518850px;}
.y6d{bottom:167.934300px;}
.yc{bottom:181.230000px;}
.ydf{bottom:181.694700px;}
.y11d{bottom:183.518850px;}
.ya9{bottom:185.900400px;}
.y6c{bottom:185.934300px;}
.yb{bottom:199.230000px;}
.yde{bottom:199.694700px;}
.y11c{bottom:201.518850px;}
.ya8{bottom:207.270900px;}
.ya{bottom:217.230000px;}
.ydd{bottom:217.694700px;}
.y11b{bottom:219.518850px;}
.y6b{bottom:221.934300px;}
.ya7{bottom:228.641400px;}
.y9{bottom:235.230000px;}
.ydc{bottom:235.694700px;}
.y11a{bottom:237.518850px;}
.y6a{bottom:239.934300px;}
.ya6{bottom:250.011900px;}
.y8{bottom:253.230000px;}
.ydb{bottom:253.694700px;}
.y119{bottom:255.518850px;}
.y69{bottom:257.934300px;}
.y7{bottom:271.230000px;}
.ya5{bottom:271.382400px;}
.y118{bottom:273.518850px;}
.y68{bottom:275.934300px;}
.y6{bottom:289.230000px;}
.yda{bottom:289.694700px;}
.y117{bottom:291.518850px;}
.ya4{bottom:292.739400px;}
.y67{bottom:293.934300px;}
.y5{bottom:307.230000px;}
.yd9{bottom:307.694700px;}
.y116{bottom:309.518850px;}
.y66{bottom:311.934300px;}
.ya3{bottom:314.109900px;}
.yd8{bottom:325.694700px;}
.y115{bottom:327.518850px;}
.y65{bottom:329.934300px;}
.ya2{bottom:335.480400px;}
.y4{bottom:343.230000px;}
.yd7{bottom:343.694700px;}
.y114{bottom:345.518850px;}
.y64{bottom:347.934300px;}
.ya1{bottom:356.837400px;}
.yd6{bottom:361.694700px;}
.y113{bottom:363.518850px;}
.y63{bottom:365.934300px;}
.y9f{bottom:377.978400px;}
.yd5{bottom:379.694700px;}
.y112{bottom:381.518850px;}
.y62{bottom:383.934300px;}
.y9e{bottom:394.178400px;}
.yd4{bottom:397.694700px;}
.ya0{bottom:399.119400px;}
.y111{bottom:399.518850px;}
.y2a{bottom:401.195400px;}
.y61{bottom:401.934300px;}
.yd3{bottom:415.694700px;}
.y110{bottom:417.518850px;}
.y29{bottom:419.195400px;}
.y60{bottom:419.934300px;}
.y9d{bottom:420.451500px;}
.yd2{bottom:433.694700px;}
.y10f{bottom:435.518850px;}
.y28{bottom:437.195400px;}
.y5f{bottom:437.934300px;}
.yd1{bottom:451.694700px;}
.y10e{bottom:453.518850px;}
.y27{bottom:455.195400px;}
.y5e{bottom:455.934300px;}
.y9c{bottom:456.451500px;}
.yd0{bottom:469.694700px;}
.y10d{bottom:471.518850px;}
.y26{bottom:473.195400px;}
.y5d{bottom:473.934300px;}
.y9b{bottom:474.451500px;}
.y10c{bottom:489.518850px;}
.y25{bottom:491.195400px;}
.y5c{bottom:491.934300px;}
.y9a{bottom:492.451500px;}
.ycf{bottom:505.694700px;}
.y10b{bottom:507.518850px;}
.y24{bottom:509.195400px;}
.y5b{bottom:509.934300px;}
.y99{bottom:510.451500px;}
.yce{bottom:523.694700px;}
.y10a{bottom:525.518850px;}
.y23{bottom:527.195400px;}
.y5a{bottom:527.934300px;}
.y98{bottom:528.451500px;}
.ycd{bottom:541.694700px;}
.y109{bottom:543.518850px;}
.y22{bottom:545.195400px;}
.y59{bottom:545.934300px;}
.y97{bottom:546.451500px;}
.y38{bottom:552.097800px;}
.ycc{bottom:559.694700px;}
.y108{bottom:561.518850px;}
.y21{bottom:563.195400px;}
.y58{bottom:563.934300px;}
.y96{bottom:564.451500px;}
.y107{bottom:579.518850px;}
.y20{bottom:581.195400px;}
.y57{bottom:581.934300px;}
.y95{bottom:582.451500px;}
.ycb{bottom:595.954950px;}
.y106{bottom:597.518850px;}
.y1f{bottom:599.195400px;}
.y56{bottom:599.934300px;}
.y94{bottom:600.451500px;}
.y105{bottom:615.518850px;}
.y1e{bottom:617.195400px;}
.yca{bottom:617.325450px;}
.y55{bottom:617.934300px;}
.y93{bottom:618.451500px;}
.y31{bottom:625.441200px;}
.y104{bottom:633.518850px;}
.y1d{bottom:635.195400px;}
.y54{bottom:635.934300px;}
.y92{bottom:636.451500px;}
.yc9{bottom:638.682450px;}
.y30{bottom:643.441200px;}
.y103{bottom:651.518850px;}
.y1c{bottom:653.195400px;}
.y53{bottom:653.934300px;}
.y91{bottom:654.451500px;}
.yc8{bottom:660.039450px;}
.y2f{bottom:661.441200px;}
.y102{bottom:669.518850px;}
.y1b{bottom:671.195400px;}
.y52{bottom:671.934300px;}
.y90{bottom:672.451500px;}
.y2e{bottom:679.441200px;}
.yc7{bottom:681.396450px;}
.y101{bottom:687.518850px;}
.y1a{bottom:689.195400px;}
.y51{bottom:689.934300px;}
.y8f{bottom:690.451500px;}
.yc6{bottom:697.609950px;}
.y100{bottom:705.518850px;}
.y19{bottom:707.195400px;}
.y50{bottom:707.934300px;}
.y8e{bottom:708.451500px;}
.yc5{bottom:718.980450px;}
.yff{bottom:723.518850px;}
.y18{bottom:725.195400px;}
.y4f{bottom:725.934300px;}
.y8d{bottom:726.451500px;}
.yc4{bottom:740.337450px;}
.yfe{bottom:741.518850px;}
.y17{bottom:743.195400px;}
.y4e{bottom:743.934300px;}
.y8c{bottom:744.451500px;}
.y37{bottom:756.040650px;}
.yfd{bottom:759.518850px;}
.y16{bottom:761.195400px;}
.yc3{bottom:761.707950px;}
.y4d{bottom:761.934300px;}
.y8b{bottom:762.451500px;}
.y36{bottom:775.840650px;}
.yfc{bottom:777.518850px;}
.y4c{bottom:779.934300px;}
.y8a{bottom:780.451500px;}
.yc2{bottom:783.064950px;}
.yfb{bottom:795.518850px;}
.y35{bottom:795.640650px;}
.y15{bottom:797.195400px;}
.y4b{bottom:797.934300px;}
.y89{bottom:798.451500px;}
.yc1{bottom:799.264950px;}
.yfa{bottom:813.518850px;}
.y4a{bottom:815.934300px;}
.y88{bottom:816.451500px;}
.yc0{bottom:820.621950px;}
.yf9{bottom:831.518850px;}
.y49{bottom:833.934300px;}
.y87{bottom:834.451500px;}
.y2d{bottom:838.885950px;}
.ybf{bottom:841.978950px;}
.y86{bottom:852.451500px;}
.y2c{bottom:856.885950px;}
.ybe{bottom:863.551950px;}
.yf8{bottom:867.518850px;}
.y48{bottom:869.934300px;}
.y85{bottom:870.451500px;}
.y2b{bottom:880.380450px;}
.ybd{bottom:884.692950px;}
.y47{bottom:887.934300px;}
.y84{bottom:888.451500px;}
.yf7{bottom:905.318850px;}
.y46{bottom:905.934300px;}
.ybc{bottom:906.049950px;}
.y83{bottom:906.451500px;}
.y14{bottom:919.899750px;}
.yf6{bottom:923.318850px;}
.y45{bottom:923.934300px;}
.y82{bottom:924.451500px;}
.ybb{bottom:927.406950px;}
.y44{bottom:941.934300px;}
.y81{bottom:942.451500px;}
.yba{bottom:948.547950px;}
.yf5{bottom:959.318850px;}
.y43{bottom:959.934300px;}
.y80{bottom:960.451500px;}
.yb9{bottom:964.761450px;}
.y34{bottom:971.806800px;}
.yf4{bottom:977.318850px;}
.y42{bottom:977.934300px;}
.y7f{bottom:978.451500px;}
.yb8{bottom:986.131950px;}
.yf3{bottom:995.318850px;}
.y41{bottom:995.934300px;}
.y7e{bottom:996.451500px;}
.yb7{bottom:1007.502450px;}
.yf2{bottom:1013.318850px;}
.y40{bottom:1013.934300px;}
.y7d{bottom:1014.451500px;}
.y33{bottom:1015.859100px;}
.yb6{bottom:1028.859450px;}
.yf1{bottom:1031.318850px;}
.y3f{bottom:1031.934300px;}
.y7c{bottom:1032.451500px;}
.yf0{bottom:1049.318850px;}
.y3e{bottom:1049.934300px;}
.yb5{bottom:1050.216450px;}
.y7b{bottom:1050.451500px;}
.y32{bottom:1053.659100px;}
.yef{bottom:1067.318850px;}
.y3d{bottom:1067.934300px;}
.y7a{bottom:1068.451500px;}
.yb4{bottom:1071.573450px;}
.yee{bottom:1085.318850px;}
.y3c{bottom:1085.934300px;}
.y79{bottom:1086.451500px;}
.y13{bottom:1091.633100px;}
.yb3{bottom:1092.943950px;}
.yed{bottom:1103.318850px;}
.y3b{bottom:1103.934300px;}
.y78{bottom:1104.451500px;}
.yb2{bottom:1114.300950px;}
.yec{bottom:1121.318850px;}
.y77{bottom:1122.451500px;}
.y2{bottom:1129.936500px;}
.yb1{bottom:1135.671450px;}
.yeb{bottom:1139.318850px;}
.y3a{bottom:1139.934300px;}
.y76{bottom:1140.451500px;}
.yaf{bottom:1166.620350px;}
.y74{bottom:1166.622450px;}
.yb0{bottom:1167.693000px;}
.y1{bottom:1173.141900px;}
.h9{height:30.668484px;}
.h3{height:33.351562px;}
.h10{height:36.597656px;}
.h8{height:36.966797px;}
.h11{height:37.494141px;}
.he{height:37.520508px;}
.h12{height:38.448000px;}
.hd{height:40.664062px;}
.h5{height:41.689453px;}
.h7{height:42.117188px;}
.h4{height:45.181641px;}
.hf{height:47.381836px;}
.hb{height:49.289062px;}
.hc{height:51.264000px;}
.h6{height:52.646484px;}
.ha{height:86.255859px;}
.h2{height:104.171484px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.000000px;}
.xe{left:55.629900px;}
.x9{left:60.187500px;}
.x3{left:144.000000px;}
.xf{left:207.283500px;}
.xa{left:223.915500px;}
.x5{left:296.203500px;}
.xb{left:420.340500px;}
.x8{left:436.641750px;}
.x10{left:437.850000px;}
.x11{left:455.449500px;}
.xd{left:602.145000px;}
.x6{left:603.525000px;}
.x7{left:604.940850px;}
.x4{left:605.962500px;}
.xc{left:617.332500px;}
.x2{left:636.300000px;}
@media print{
.v1{vertical-align:-56.157867pt;}
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.855467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:681.842667pt;}
.ws0{word-spacing:-14.666667pt;}
.ws17{word-spacing:-13.333333pt;}
.ws11{word-spacing:-12.000000pt;}
.ws1{word-spacing:-8.550667pt;}
.ws10{word-spacing:-6.160000pt;}
.ws7{word-spacing:-2.560000pt;}
.ws5{word-spacing:-2.506667pt;}
.ws26{word-spacing:-2.186667pt;}
.ws4{word-spacing:-2.133333pt;}
.ws2a{word-spacing:-1.440000pt;}
.ws6{word-spacing:-1.226667pt;}
.ws3{word-spacing:-0.938667pt;}
.ws3a{word-spacing:-0.746667pt;}
.ws28{word-spacing:-0.586667pt;}
.ws29{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.wse{word-spacing:0.106667pt;}
.ws16{word-spacing:0.480000pt;}
.ws13{word-spacing:0.533333pt;}
.ws36{word-spacing:0.586667pt;}
.ws12{word-spacing:0.693333pt;}
.ws27{word-spacing:0.906667pt;}
.ws9{word-spacing:0.960000pt;}
.ws14{word-spacing:1.066667pt;}
.ws39{word-spacing:1.173333pt;}
.ws37{word-spacing:1.226667pt;}
.ws8{word-spacing:2.133333pt;}
.ws38{word-spacing:2.346667pt;}
.wsc{word-spacing:3.413333pt;}
.wsd{word-spacing:3.626667pt;}
.ws15{word-spacing:4.533333pt;}
.wsb{word-spacing:4.746667pt;}
.wsf{word-spacing:25.312000pt;}
.ws22{word-spacing:70.108800pt;}
.wsa{word-spacing:180.000000pt;}
.ws1d{word-spacing:182.688000pt;}
.ws20{word-spacing:188.064000pt;}
.ws1c{word-spacing:225.456000pt;}
.ws2f{word-spacing:252.000000pt;}
.ws31{word-spacing:266.112000pt;}
.ws1f{word-spacing:346.368000pt;}
.ws18{word-spacing:351.408000pt;}
.ws2d{word-spacing:354.192000pt;}
.ws32{word-spacing:356.736000pt;}
.ws34{word-spacing:370.176000pt;}
.ws1e{word-spacing:370.224000pt;}
.ws23{word-spacing:374.793600pt;}
.ws21{word-spacing:391.536000pt;}
.ws2e{word-spacing:396.816000pt;}
.ws1b{word-spacing:405.072000pt;}
.ws25{word-spacing:410.400000pt;}
.ws35{word-spacing:412.800000pt;}
.ws19{word-spacing:454.526400pt;}
.ws2b{word-spacing:466.128000pt;}
.ws2c{word-spacing:475.776000pt;}
.ws33{word-spacing:499.776000pt;}
.ws24{word-spacing:547.776000pt;}
.ws1a{word-spacing:550.416000pt;}
.ws30{word-spacing:585.307200pt;}
._9{margin-left:-183.523200pt;}
._b{margin-left:-180.000000pt;}
._a{margin-left:-147.004800pt;}
._c{margin-left:-36.000000pt;}
._6c{margin-left:-7.733333pt;}
._d{margin-left:-6.026667pt;}
._14{margin-left:-4.658133pt;}
._3{margin-left:-3.706667pt;}
._2{margin-left:-2.682667pt;}
._0{margin-left:-1.050133pt;}
._7{width:1.216000pt;}
._6{width:2.805333pt;}
._12{width:4.560000pt;}
._10{width:5.674667pt;}
._11{width:6.773333pt;}
._e{width:9.669333pt;}
._f{width:11.504000pt;}
._5a{width:21.873600pt;}
._41{width:44.112000pt;}
._15{width:46.226133pt;}
._38{width:50.544000pt;}
._34{width:59.514133pt;}
._16{width:74.736000pt;}
._5f{width:75.840000pt;}
._47{width:79.738667pt;}
._26{width:89.540800pt;}
._69{width:91.824000pt;}
._1b{width:95.402667pt;}
._67{width:99.936000pt;}
._66{width:104.064000pt;}
._45{width:106.272000pt;}
._4b{width:117.168000pt;}
._8{width:122.734933pt;}
._4a{width:124.506133pt;}
._58{width:130.032000pt;}
._64{width:132.768000pt;}
._65{width:135.840000pt;}
._2e{width:147.450133pt;}
._5b{width:155.472000pt;}
._48{width:167.232000pt;}
._4c{width:170.112000pt;}
._13{width:174.133333pt;}
._4{width:176.533333pt;}
._5{width:178.666667pt;}
._1{width:180.800000pt;}
._39{width:182.448000pt;}
._5e{width:191.424000pt;}
._60{width:193.200000pt;}
._36{width:194.688000pt;}
._53{width:200.064000pt;}
._23{width:202.416000pt;}
._1d{width:203.808000pt;}
._2b{width:207.840000pt;}
._68{width:217.008000pt;}
._30{width:219.201067pt;}
._3b{width:229.104000pt;}
._63{width:238.170133pt;}
._1e{width:240.816000pt;}
._5d{width:245.082667pt;}
._28{width:260.928000pt;}
._46{width:271.017600pt;}
._22{width:282.432000pt;}
._61{width:284.880000pt;}
._4d{width:291.792000pt;}
._29{width:295.584000pt;}
._37{width:299.472000pt;}
._1f{width:317.088000pt;}
._3f{width:319.776000pt;}
._50{width:323.472000pt;}
._3d{width:327.696000pt;}
._59{width:330.432000pt;}
._2c{width:332.784000pt;}
._1c{width:350.208000pt;}
._31{width:351.456000pt;}
._56{width:355.440000pt;}
._2f{width:359.760000pt;}
._5c{width:361.104000pt;}
._25{width:362.352000pt;}
._19{width:372.000000pt;}
._2a{width:374.544000pt;}
._4e{width:380.402133pt;}
._27{width:387.792000pt;}
._1a{width:389.739733pt;}
._57{width:391.728000pt;}
._55{width:401.136000pt;}
._21{width:406.176000pt;}
._44{width:417.168000pt;}
._6a{width:422.496000pt;}
._3c{width:427.776000pt;}
._24{width:432.768000pt;}
._42{width:435.504000pt;}
._33{width:438.144000pt;}
._40{width:441.168000pt;}
._49{width:443.808000pt;}
._20{width:451.776000pt;}
._4f{width:463.530133pt;}
._17{width:467.808000pt;}
._3e{width:471.498133pt;}
._32{width:477.072000pt;}
._35{width:478.464000pt;}
._3a{width:481.104000pt;}
._2d{width:482.448000pt;}
._52{width:499.776000pt;}
._43{width:530.448000pt;}
._54{width:567.696000pt;}
._62{width:573.072000pt;}
._51{width:581.088000pt;}
._6b{width:583.776000pt;}
._18{width:634.416000pt;}
.fs6{font-size:34.202667pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:112.000000pt;}
.fs0{font-size:134.400000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:36.368133pt;}
.y75{bottom:36.387733pt;}
.ye7{bottom:36.768933pt;}
.y73{bottom:36.869733pt;}
.ye6{bottom:37.231200pt;}
.y3{bottom:37.332000pt;}
.y12{bottom:50.407600pt;}
.yea{bottom:60.465333pt;}
.ye5{bottom:65.506400pt;}
.y11{bottom:66.407600pt;}
.y72{bottom:69.274933pt;}
.yae{bottom:70.264800pt;}
.ye9{bottom:74.865333pt;}
.ye4{bottom:81.506400pt;}
.y71{bottom:85.274933pt;}
.yad{bottom:89.260800pt;}
.ye8{bottom:89.265333pt;}
.y10{bottom:97.093333pt;}
.ye3{bottom:97.506400pt;}
.y70{bottom:101.274933pt;}
.yac{bottom:108.256800pt;}
.yf{bottom:113.093333pt;}
.ye2{bottom:113.506400pt;}
.y120{bottom:115.127867pt;}
.y6f{bottom:117.274933pt;}
.yab{bottom:127.252800pt;}
.ye{bottom:129.093333pt;}
.ye1{bottom:129.506400pt;}
.y11f{bottom:131.127867pt;}
.y6e{bottom:133.274933pt;}
.yd{bottom:145.093333pt;}
.ye0{bottom:145.506400pt;}
.yaa{bottom:146.248800pt;}
.y11e{bottom:147.127867pt;}
.y6d{bottom:149.274933pt;}
.yc{bottom:161.093333pt;}
.ydf{bottom:161.506400pt;}
.y11d{bottom:163.127867pt;}
.ya9{bottom:165.244800pt;}
.y6c{bottom:165.274933pt;}
.yb{bottom:177.093333pt;}
.yde{bottom:177.506400pt;}
.y11c{bottom:179.127867pt;}
.ya8{bottom:184.240800pt;}
.ya{bottom:193.093333pt;}
.ydd{bottom:193.506400pt;}
.y11b{bottom:195.127867pt;}
.y6b{bottom:197.274933pt;}
.ya7{bottom:203.236800pt;}
.y9{bottom:209.093333pt;}
.ydc{bottom:209.506400pt;}
.y11a{bottom:211.127867pt;}
.y6a{bottom:213.274933pt;}
.ya6{bottom:222.232800pt;}
.y8{bottom:225.093333pt;}
.ydb{bottom:225.506400pt;}
.y119{bottom:227.127867pt;}
.y69{bottom:229.274933pt;}
.y7{bottom:241.093333pt;}
.ya5{bottom:241.228800pt;}
.y118{bottom:243.127867pt;}
.y68{bottom:245.274933pt;}
.y6{bottom:257.093333pt;}
.yda{bottom:257.506400pt;}
.y117{bottom:259.127867pt;}
.ya4{bottom:260.212800pt;}
.y67{bottom:261.274933pt;}
.y5{bottom:273.093333pt;}
.yd9{bottom:273.506400pt;}
.y116{bottom:275.127867pt;}
.y66{bottom:277.274933pt;}
.ya3{bottom:279.208800pt;}
.yd8{bottom:289.506400pt;}
.y115{bottom:291.127867pt;}
.y65{bottom:293.274933pt;}
.ya2{bottom:298.204800pt;}
.y4{bottom:305.093333pt;}
.yd7{bottom:305.506400pt;}
.y114{bottom:307.127867pt;}
.y64{bottom:309.274933pt;}
.ya1{bottom:317.188800pt;}
.yd6{bottom:321.506400pt;}
.y113{bottom:323.127867pt;}
.y63{bottom:325.274933pt;}
.y9f{bottom:335.980800pt;}
.yd5{bottom:337.506400pt;}
.y112{bottom:339.127867pt;}
.y62{bottom:341.274933pt;}
.y9e{bottom:350.380800pt;}
.yd4{bottom:353.506400pt;}
.ya0{bottom:354.772800pt;}
.y111{bottom:355.127867pt;}
.y2a{bottom:356.618133pt;}
.y61{bottom:357.274933pt;}
.yd3{bottom:369.506400pt;}
.y110{bottom:371.127867pt;}
.y29{bottom:372.618133pt;}
.y60{bottom:373.274933pt;}
.y9d{bottom:373.734667pt;}
.yd2{bottom:385.506400pt;}
.y10f{bottom:387.127867pt;}
.y28{bottom:388.618133pt;}
.y5f{bottom:389.274933pt;}
.yd1{bottom:401.506400pt;}
.y10e{bottom:403.127867pt;}
.y27{bottom:404.618133pt;}
.y5e{bottom:405.274933pt;}
.y9c{bottom:405.734667pt;}
.yd0{bottom:417.506400pt;}
.y10d{bottom:419.127867pt;}
.y26{bottom:420.618133pt;}
.y5d{bottom:421.274933pt;}
.y9b{bottom:421.734667pt;}
.y10c{bottom:435.127867pt;}
.y25{bottom:436.618133pt;}
.y5c{bottom:437.274933pt;}
.y9a{bottom:437.734667pt;}
.ycf{bottom:449.506400pt;}
.y10b{bottom:451.127867pt;}
.y24{bottom:452.618133pt;}
.y5b{bottom:453.274933pt;}
.y99{bottom:453.734667pt;}
.yce{bottom:465.506400pt;}
.y10a{bottom:467.127867pt;}
.y23{bottom:468.618133pt;}
.y5a{bottom:469.274933pt;}
.y98{bottom:469.734667pt;}
.ycd{bottom:481.506400pt;}
.y109{bottom:483.127867pt;}
.y22{bottom:484.618133pt;}
.y59{bottom:485.274933pt;}
.y97{bottom:485.734667pt;}
.y38{bottom:490.753600pt;}
.ycc{bottom:497.506400pt;}
.y108{bottom:499.127867pt;}
.y21{bottom:500.618133pt;}
.y58{bottom:501.274933pt;}
.y96{bottom:501.734667pt;}
.y107{bottom:515.127867pt;}
.y20{bottom:516.618133pt;}
.y57{bottom:517.274933pt;}
.y95{bottom:517.734667pt;}
.ycb{bottom:529.737733pt;}
.y106{bottom:531.127867pt;}
.y1f{bottom:532.618133pt;}
.y56{bottom:533.274933pt;}
.y94{bottom:533.734667pt;}
.y105{bottom:547.127867pt;}
.y1e{bottom:548.618133pt;}
.yca{bottom:548.733733pt;}
.y55{bottom:549.274933pt;}
.y93{bottom:549.734667pt;}
.y31{bottom:555.947733pt;}
.y104{bottom:563.127867pt;}
.y1d{bottom:564.618133pt;}
.y54{bottom:565.274933pt;}
.y92{bottom:565.734667pt;}
.yc9{bottom:567.717733pt;}
.y30{bottom:571.947733pt;}
.y103{bottom:579.127867pt;}
.y1c{bottom:580.618133pt;}
.y53{bottom:581.274933pt;}
.y91{bottom:581.734667pt;}
.yc8{bottom:586.701733pt;}
.y2f{bottom:587.947733pt;}
.y102{bottom:595.127867pt;}
.y1b{bottom:596.618133pt;}
.y52{bottom:597.274933pt;}
.y90{bottom:597.734667pt;}
.y2e{bottom:603.947733pt;}
.yc7{bottom:605.685733pt;}
.y101{bottom:611.127867pt;}
.y1a{bottom:612.618133pt;}
.y51{bottom:613.274933pt;}
.y8f{bottom:613.734667pt;}
.yc6{bottom:620.097733pt;}
.y100{bottom:627.127867pt;}
.y19{bottom:628.618133pt;}
.y50{bottom:629.274933pt;}
.y8e{bottom:629.734667pt;}
.yc5{bottom:639.093733pt;}
.yff{bottom:643.127867pt;}
.y18{bottom:644.618133pt;}
.y4f{bottom:645.274933pt;}
.y8d{bottom:645.734667pt;}
.yc4{bottom:658.077733pt;}
.yfe{bottom:659.127867pt;}
.y17{bottom:660.618133pt;}
.y4e{bottom:661.274933pt;}
.y8c{bottom:661.734667pt;}
.y37{bottom:672.036133pt;}
.yfd{bottom:675.127867pt;}
.y16{bottom:676.618133pt;}
.yc3{bottom:677.073733pt;}
.y4d{bottom:677.274933pt;}
.y8b{bottom:677.734667pt;}
.y36{bottom:689.636133pt;}
.yfc{bottom:691.127867pt;}
.y4c{bottom:693.274933pt;}
.y8a{bottom:693.734667pt;}
.yc2{bottom:696.057733pt;}
.yfb{bottom:707.127867pt;}
.y35{bottom:707.236133pt;}
.y15{bottom:708.618133pt;}
.y4b{bottom:709.274933pt;}
.y89{bottom:709.734667pt;}
.yc1{bottom:710.457733pt;}
.yfa{bottom:723.127867pt;}
.y4a{bottom:725.274933pt;}
.y88{bottom:725.734667pt;}
.yc0{bottom:729.441733pt;}
.yf9{bottom:739.127867pt;}
.y49{bottom:741.274933pt;}
.y87{bottom:741.734667pt;}
.y2d{bottom:745.676400pt;}
.ybf{bottom:748.425733pt;}
.y86{bottom:757.734667pt;}
.y2c{bottom:761.676400pt;}
.ybe{bottom:767.601733pt;}
.yf8{bottom:771.127867pt;}
.y48{bottom:773.274933pt;}
.y85{bottom:773.734667pt;}
.y2b{bottom:782.560400pt;}
.ybd{bottom:786.393733pt;}
.y47{bottom:789.274933pt;}
.y84{bottom:789.734667pt;}
.yf7{bottom:804.727867pt;}
.y46{bottom:805.274933pt;}
.ybc{bottom:805.377733pt;}
.y83{bottom:805.734667pt;}
.y14{bottom:817.688667pt;}
.yf6{bottom:820.727867pt;}
.y45{bottom:821.274933pt;}
.y82{bottom:821.734667pt;}
.ybb{bottom:824.361733pt;}
.y44{bottom:837.274933pt;}
.y81{bottom:837.734667pt;}
.yba{bottom:843.153733pt;}
.yf5{bottom:852.727867pt;}
.y43{bottom:853.274933pt;}
.y80{bottom:853.734667pt;}
.yb9{bottom:857.565733pt;}
.y34{bottom:863.828267pt;}
.yf4{bottom:868.727867pt;}
.y42{bottom:869.274933pt;}
.y7f{bottom:869.734667pt;}
.yb8{bottom:876.561733pt;}
.yf3{bottom:884.727867pt;}
.y41{bottom:885.274933pt;}
.y7e{bottom:885.734667pt;}
.yb7{bottom:895.557733pt;}
.yf2{bottom:900.727867pt;}
.y40{bottom:901.274933pt;}
.y7d{bottom:901.734667pt;}
.y33{bottom:902.985867pt;}
.yb6{bottom:914.541733pt;}
.yf1{bottom:916.727867pt;}
.y3f{bottom:917.274933pt;}
.y7c{bottom:917.734667pt;}
.yf0{bottom:932.727867pt;}
.y3e{bottom:933.274933pt;}
.yb5{bottom:933.525733pt;}
.y7b{bottom:933.734667pt;}
.y32{bottom:936.585867pt;}
.yef{bottom:948.727867pt;}
.y3d{bottom:949.274933pt;}
.y7a{bottom:949.734667pt;}
.yb4{bottom:952.509733pt;}
.yee{bottom:964.727867pt;}
.y3c{bottom:965.274933pt;}
.y79{bottom:965.734667pt;}
.y13{bottom:970.340533pt;}
.yb3{bottom:971.505733pt;}
.yed{bottom:980.727867pt;}
.y3b{bottom:981.274933pt;}
.y78{bottom:981.734667pt;}
.yb2{bottom:990.489733pt;}
.yec{bottom:996.727867pt;}
.y77{bottom:997.734667pt;}
.y2{bottom:1004.388000pt;}
.yb1{bottom:1009.485733pt;}
.yeb{bottom:1012.727867pt;}
.y3a{bottom:1013.274933pt;}
.y76{bottom:1013.734667pt;}
.yaf{bottom:1036.995867pt;}
.y74{bottom:1036.997733pt;}
.yb0{bottom:1037.949333pt;}
.y1{bottom:1042.792800pt;}
.h9{height:27.260875pt;}
.h3{height:29.645833pt;}
.h10{height:32.531250pt;}
.h8{height:32.859375pt;}
.h11{height:33.328125pt;}
.he{height:33.351562pt;}
.h12{height:34.176000pt;}
.hd{height:36.145833pt;}
.h5{height:37.057292pt;}
.h7{height:37.437500pt;}
.h4{height:40.161458pt;}
.hf{height:42.117188pt;}
.hb{height:43.812500pt;}
.hc{height:45.568000pt;}
.h6{height:46.796875pt;}
.ha{height:76.671875pt;}
.h2{height:92.596875pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.000000pt;}
.xe{left:49.448800pt;}
.x9{left:53.500000pt;}
.x3{left:128.000000pt;}
.xf{left:184.252000pt;}
.xa{left:199.036000pt;}
.x5{left:263.292000pt;}
.xb{left:373.636000pt;}
.x8{left:388.126000pt;}
.x10{left:389.200000pt;}
.x11{left:404.844000pt;}
.xd{left:535.240000pt;}
.x6{left:536.466667pt;}
.x7{left:537.725200pt;}
.x4{left:538.633333pt;}
.xc{left:548.740000pt;}
.x2{left:565.600000pt;}
}




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