
    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_4fabb91fbb98fc0dcc789bc0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_83d1a5d797cf6e0c334f03ab.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_e596ef339a0a3b6186f2f49c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.131836;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_6702e3ae7c71fe077a6dcd21.woff')format("woff");}.ff4{font-family:ff4;line-height:1.146973;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_f3f73677135eef90de74bd71.woff')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_4137baca6aba699fed0cc5ba.woff')format("woff");}.ff6{font-family:ff6;line-height:0.982442;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_87d9651daa2b6fa033ed6edc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.132812;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_09d60bb172f9803af4372dda.woff')format("woff");}.ff8{font-family:ff8;line-height:0.963379;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_4ca1925f2e46e4e047f741e5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.710938;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_e5c02c92d60b50128e9fab7a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.140625;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_cb60c0e991d2c504ff28cf2f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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_3a9d36d16f3bfbcf6d7f76d4.woff')format("woff");}.ffc{font-family:ffc;line-height:0.832031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_06ff75c76dcc96d64e508bb3.woff')format("woff");}.ffd{font-family:ffd;line-height:0.771570;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e18d5833104c2b83dc3aa9f5.woff')format("woff");}.ffe{font-family:ffe;line-height:0.968262;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:fff;src:url('chunks/assets/font_d8450ca004a7c029facd1a3b.woff')format("woff");}.fff{font-family:fff;line-height:0.953125;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v6{vertical-align:-8.409600px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.640400px;}
.v3{vertical-align:17.982000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v4{vertical-align:38.409600px;}
.lsa{letter-spacing:-1.200000px;}
.lsb{letter-spacing:-0.900000px;}
.ls5{letter-spacing:-0.691200px;}
.lsc{letter-spacing:-0.600000px;}
.ls15{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.162000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012000px;}
.ls13{letter-spacing:0.013800px;}
.ls3{letter-spacing:0.025800px;}
.ls6{letter-spacing:0.420000px;}
.ls7{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.699600px;}
.ls8{letter-spacing:1.200000px;}
.ls0{letter-spacing:43.181364px;}
.ls1{letter-spacing:43.181964px;}
.ls12{letter-spacing:120.438600px;}
.lse{letter-spacing:133.903800px;}
.ls11{letter-spacing:147.379800px;}
.lsd{letter-spacing:147.380400px;}
.lsf{letter-spacing:147.391800px;}
.ls10{letter-spacing:147.403800px;}
.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;}
}
.ws2c{word-spacing:-60.000000px;}
.ws3{word-spacing:-48.000000px;}
.ws10{word-spacing:-17.928000px;}
.ws2f{word-spacing:-16.434000px;}
.ws13{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.880000px;}
.ws2b{word-spacing:-14.700000px;}
.ws4d{word-spacing:-13.446000px;}
.ws55{word-spacing:-13.392000px;}
.ws58{word-spacing:-13.230000px;}
.ws7{word-spacing:-12.150000px;}
.ws36{word-spacing:-11.904000px;}
.ws6{word-spacing:-11.772000px;}
.ws2{word-spacing:-11.371200px;}
.ws4{word-spacing:-9.417600px;}
.ws21{word-spacing:-9.374640px;}
.ws12{word-spacing:-8.675040px;}
.ws22{word-spacing:-7.807536px;}
.ws50{word-spacing:-2.484000px;}
.ws53{word-spacing:-2.160000px;}
.ws33{word-spacing:-1.980000px;}
.ws32{word-spacing:-1.800000px;}
.ws9{word-spacing:-1.254000px;}
.ws1d{word-spacing:-1.200000px;}
.ws31{word-spacing:-1.080000px;}
.wsf{word-spacing:-1.026000px;}
.ws4e{word-spacing:-1.020000px;}
.ws2a{word-spacing:-0.810000px;}
.ws1b{word-spacing:-0.540000px;}
.ws16{word-spacing:-0.420000px;}
.ws4f{word-spacing:-0.378000px;}
.ws1f{word-spacing:-0.300000px;}
.wsd{word-spacing:-0.270000px;}
.wsa{word-spacing:-0.216000px;}
.ws8{word-spacing:0.000000px;}
.ws59{word-spacing:0.162000px;}
.ws4b{word-spacing:0.240000px;}
.ws5a{word-spacing:0.540000px;}
.ws2e{word-spacing:0.600000px;}
.wsb{word-spacing:0.691200px;}
.ws1c{word-spacing:0.780000px;}
.ws1e{word-spacing:0.900000px;}
.ws51{word-spacing:1.020000px;}
.ws4c{word-spacing:1.080000px;}
.ws56{word-spacing:1.134000px;}
.ws24{word-spacing:1.200000px;}
.ws30{word-spacing:1.242000px;}
.ws5b{word-spacing:1.782000px;}
.ws18{word-spacing:2.040000px;}
.ws57{word-spacing:2.268000px;}
.ws52{word-spacing:2.820000px;}
.ws2d{word-spacing:3.840000px;}
.wsc{word-spacing:4.968000px;}
.ws14{word-spacing:5.340000px;}
.ws1a{word-spacing:5.760000px;}
.ws34{word-spacing:5.940000px;}
.ws54{word-spacing:6.480000px;}
.ws23{word-spacing:7.884000px;}
.wse{word-spacing:8.154000px;}
.ws19{word-spacing:8.400000px;}
.ws20{word-spacing:9.180000px;}
.ws17{word-spacing:12.120000px;}
.ws15{word-spacing:12.840000px;}
.ws1{word-spacing:33.650535px;}
.ws0{word-spacing:33.651135px;}
.ws48{word-spacing:41.692200px;}
.ws3c{word-spacing:55.155000px;}
.ws44{word-spacing:68.691000px;}
.ws4a{word-spacing:82.154400px;}
.ws46{word-spacing:86.842200px;}
.ws38{word-spacing:88.669800px;}
.ws3a{word-spacing:88.671000px;}
.ws41{word-spacing:88.681800px;}
.ws3b{word-spacing:88.682400px;}
.ws40{word-spacing:88.707000px;}
.ws43{word-spacing:88.718400px;}
.ws45{word-spacing:88.742400px;}
.ws3e{word-spacing:102.147000px;}
.ws39{word-spacing:121.976400px;}
.ws42{word-spacing:121.988400px;}
.ws26{word-spacing:132.494400px;}
.ws47{word-spacing:133.548600px;}
.ws49{word-spacing:135.453000px;}
.ws3f{word-spacing:135.476400px;}
.ws28{word-spacing:136.539600px;}
.ws27{word-spacing:136.540200px;}
.ws37{word-spacing:155.223600px;}
.ws3d{word-spacing:168.723000px;}
.ws29{word-spacing:181.598400px;}
.ws35{word-spacing:619.003800px;}
.ws25{word-spacing:1211.449200px;}
._d{margin-left:-10.845600px;}
._32{margin-left:-9.510000px;}
._a{margin-left:-7.743600px;}
._c{margin-left:-5.784600px;}
._5{margin-left:-4.622400px;}
._2{margin-left:-3.121200px;}
._0{margin-left:-1.897200px;}
._1{width:1.009800px;}
._6{width:2.111400px;}
._3{width:3.355800px;}
._7{width:4.837200px;}
._9{width:5.907600px;}
._8{width:6.949800px;}
._e{width:7.993200px;}
._b{width:9.031800px;}
._f{width:10.088400px;}
._11{width:11.922000px;}
._12{width:13.410000px;}
._43{width:15.001200px;}
._42{width:16.099200px;}
._13{width:17.424000px;}
._31{width:18.546000px;}
._10{width:20.418000px;}
._46{width:21.606600px;}
._47{width:23.294400px;}
._44{width:29.337600px;}
._45{width:30.915000px;}
._4{width:36.624000px;}
._40{width:42.381600px;}
._41{width:44.035800px;}
._3f{width:67.896000px;}
._34{width:70.719600px;}
._33{width:71.900400px;}
._16{width:75.259200px;}
._3c{width:80.836800px;}
._15{width:90.237000px;}
._18{width:94.383000px;}
._37{width:114.604200px;}
._17{width:119.410800px;}
._2c{width:126.102600px;}
._14{width:128.125200px;}
._24{width:134.490600px;}
._3a{width:137.220600px;}
._27{width:145.508400px;}
._38{width:147.332400px;}
._35{width:166.351200px;}
._1b{width:171.990600px;}
._20{width:176.076600px;}
._3b{width:180.627000px;}
._2f{width:185.046000px;}
._1a{width:188.998200px;}
._29{width:193.084800px;}
._25{width:197.153400px;}
._1c{width:199.203000px;}
._2e{width:202.054800px;}
._21{width:203.269800px;}
._26{width:207.295800px;}
._30{width:212.259000px;}
._39{width:302.247000px;}
._1f{width:323.718600px;}
._3d{width:326.089200px;}
._19{width:331.986600px;}
._36{width:454.260600px;}
._1d{width:466.747200px;}
._23{width:514.507200px;}
._3e{width:543.588600px;}
._28{width:569.453400px;}
._22{width:679.533600px;}
._2d{width:680.598000px;}
._2b{width:693.965400px;}
._1e{width:831.547200px;}
._2a{width:920.875200px;}
.fc1{color:rgb(151,22,52);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y40{bottom:71.212050px;}
.y41{bottom:75.036150px;}
.y72{bottom:113.078700px;}
.ya3{bottom:113.078850px;}
.y12{bottom:117.875550px;}
.y11{bottom:132.275550px;}
.y71{bottom:134.078700px;}
.ya2{bottom:134.078850px;}
.y10{bottom:146.675550px;}
.y70{bottom:155.078700px;}
.ya1{bottom:155.078850px;}
.y10a{bottom:160.529400px;}
.yf{bottom:161.075550px;}
.y6f{bottom:176.078700px;}
.ya0{bottom:176.078850px;}
.y2c{bottom:176.827950px;}
.y2b{bottom:196.627950px;}
.y6e{bottom:197.078700px;}
.y9f{bottom:197.078850px;}
.y3d{bottom:199.392600px;}
.y3c{bottom:217.392600px;}
.y6d{bottom:218.078700px;}
.y9e{bottom:218.078850px;}
.y109{bottom:223.529400px;}
.ya8{bottom:232.441050px;}
.y3b{bottom:235.392600px;}
.y2a{bottom:237.687900px;}
.y6c{bottom:239.078700px;}
.y9d{bottom:239.078850px;}
.y3a{bottom:253.392600px;}
.y29{bottom:257.487750px;}
.yd1{bottom:258.616500px;}
.y6b{bottom:260.078700px;}
.y9c{bottom:260.078850px;}
.yd8{bottom:269.809500px;}
.y39{bottom:271.392600px;}
.yad{bottom:274.441050px;}
.y28{bottom:277.287900px;}
.yd0{bottom:278.416500px;}
.y6a{bottom:281.078700px;}
.y9b{bottom:281.078850px;}
.y108{bottom:286.529400px;}
.y38{bottom:289.392600px;}
.yd7{bottom:289.609500px;}
.y27{bottom:297.087750px;}
.y69{bottom:302.078700px;}
.y9a{bottom:302.078850px;}
.y37{bottom:307.392600px;}
.yd6{bottom:309.409500px;}
.ycd{bottom:316.440900px;}
.y26{bottom:316.887750px;}
.y68{bottom:323.078700px;}
.y99{bottom:323.078850px;}
.y36{bottom:325.392600px;}
.yd5{bottom:329.209500px;}
.y25{bottom:336.687750px;}
.ycc{bottom:337.440900px;}
.y35{bottom:343.392600px;}
.y67{bottom:344.078700px;}
.y98{bottom:344.078850px;}
.y107{bottom:349.937100px;}
.y24{bottom:356.487750px;}
.yb1{bottom:357.513600px;}
.y34{bottom:361.392600px;}
.y66{bottom:365.078700px;}
.y97{bottom:365.078850px;}
.y23{bottom:376.287900px;}
.yb0{bottom:378.513600px;}
.y33{bottom:379.392600px;}
.y106{bottom:379.441050px;}
.y65{bottom:386.078700px;}
.y96{bottom:386.078850px;}
.y22{bottom:396.087750px;}
.y32{bottom:397.392600px;}
.y64{bottom:407.078700px;}
.y95{bottom:407.078850px;}
.yac{bottom:408.074100px;}
.yaf{bottom:410.811000px;}
.y31{bottom:415.392600px;}
.y21{bottom:415.887750px;}
.yfe{bottom:421.440900px;}
.yab{bottom:427.874100px;}
.y63{bottom:428.078700px;}
.y94{bottom:428.078850px;}
.yfc{bottom:431.886000px;}
.y20{bottom:435.687900px;}
.yfd{bottom:442.440900px;}
.yfb{bottom:446.886000px;}
.yaa{bottom:447.674100px;}
.y62{bottom:449.078700px;}
.y93{bottom:449.078850px;}
.y30{bottom:450.400500px;}
.y1f{bottom:455.487750px;}
.yfa{bottom:461.886000px;}
.yd4{bottom:462.513600px;}
.ya9{bottom:467.474100px;}
.y2f{bottom:468.400500px;}
.y61{bottom:470.078700px;}
.y92{bottom:470.078850px;}
.y1e{bottom:475.287900px;}
.yf9{bottom:476.886000px;}
.yd3{bottom:483.513600px;}
.ycb{bottom:484.441050px;}
.y2e{bottom:486.400500px;}
.y60{bottom:491.078700px;}
.y91{bottom:491.078850px;}
.yf8{bottom:491.886000px;}
.y1d{bottom:495.087750px;}
.y2d{bottom:504.400500px;}
.yca{bottom:505.441050px;}
.yf7{bottom:506.886000px;}
.y5f{bottom:512.078700px;}
.y90{bottom:512.078850px;}
.y1c{bottom:514.887750px;}
.yd2{bottom:515.811150px;}
.yf6{bottom:521.886000px;}
.y5e{bottom:533.078700px;}
.y8f{bottom:533.078850px;}
.y1b{bottom:534.687900px;}
.yf5{bottom:542.791500px;}
.y5d{bottom:554.078700px;}
.y8e{bottom:554.078850px;}
.y1a{bottom:554.487750px;}
.yf4{bottom:563.697000px;}
.y19{bottom:574.287900px;}
.y5c{bottom:575.078700px;}
.y8d{bottom:575.078850px;}
.yf3{bottom:584.602500px;}
.y18{bottom:594.087750px;}
.y5b{bottom:596.078700px;}
.y8c{bottom:596.078850px;}
.yf2{bottom:599.602500px;}
.y17{bottom:613.887750px;}
.y5a{bottom:617.078700px;}
.y8b{bottom:617.078850px;}
.yf1{bottom:620.508000px;}
.yc9{bottom:631.686000px;}
.y16{bottom:633.687900px;}
.y59{bottom:638.078700px;}
.y8a{bottom:638.078850px;}
.yf0{bottom:641.413500px;}
.yc8{bottom:652.591500px;}
.y15{bottom:653.487750px;}
.yef{bottom:656.413500px;}
.y58{bottom:659.078700px;}
.y89{bottom:659.078850px;}
.y10e{bottom:673.440900px;}
.yc7{bottom:673.497000px;}
.yee{bottom:677.319000px;}
.y57{bottom:680.078700px;}
.y88{bottom:680.078850px;}
.y14{bottom:684.585300px;}
.yc6{bottom:694.402650px;}
.yed{bottom:698.224500px;}
.y56{bottom:701.078700px;}
.y87{bottom:701.078850px;}
.yec{bottom:713.224500px;}
.yc5{bottom:715.308150px;}
.y55{bottom:722.078700px;}
.y86{bottom:722.078850px;}
.y103{bottom:725.879100px;}
.yeb{bottom:734.130000px;}
.yc4{bottom:736.213650px;}
.ycf{bottom:741.798150px;}
.y54{bottom:743.078700px;}
.y85{bottom:743.078850px;}
.y102{bottom:745.679100px;}
.yea{bottom:755.035650px;}
.yc3{bottom:757.119150px;}
.yce{bottom:761.598150px;}
.ye{bottom:763.866900px;}
.y53{bottom:764.078700px;}
.y84{bottom:764.078850px;}
.y101{bottom:765.479100px;}
.y10d{bottom:769.529250px;}
.ye9{bottom:770.035650px;}
.yc2{bottom:778.024650px;}
.yd{bottom:781.866900px;}
.y52{bottom:785.078700px;}
.y83{bottom:785.078850px;}
.y100{bottom:785.278950px;}
.ye8{bottom:790.941150px;}
.yc1{bottom:798.930150px;}
.yc{bottom:799.866900px;}
.yff{bottom:805.079100px;}
.y51{bottom:806.078700px;}
.y82{bottom:806.078850px;}
.ye7{bottom:811.846500px;}
.yb{bottom:817.866900px;}
.yc0{bottom:819.835650px;}
.y50{bottom:827.078700px;}
.y81{bottom:827.078850px;}
.ye6{bottom:832.752000px;}
.ya{bottom:835.866900px;}
.ybf{bottom:840.741150px;}
.y4f{bottom:848.078700px;}
.y80{bottom:848.078850px;}
.ye5{bottom:853.657500px;}
.y9{bottom:853.866900px;}
.ybe{bottom:861.646650px;}
.ye4{bottom:868.657500px;}
.y4e{bottom:869.078700px;}
.y7f{bottom:869.078850px;}
.y8{bottom:871.866900px;}
.ybd{bottom:882.552150px;}
.ye3{bottom:889.563150px;}
.y4d{bottom:890.078700px;}
.y7e{bottom:890.078850px;}
.ybc{bottom:903.457650px;}
.y7{bottom:906.874650px;}
.ye2{bottom:910.468650px;}
.y4c{bottom:911.078700px;}
.y7d{bottom:911.078850px;}
.ybb{bottom:924.363150px;}
.y6{bottom:926.674650px;}
.ye1{bottom:931.374150px;}
.y4b{bottom:932.078700px;}
.y7c{bottom:932.078850px;}
.yba{bottom:945.268650px;}
.ya7{bottom:945.513600px;}
.y105{bottom:946.441050px;}
.y5{bottom:946.474800px;}
.ye0{bottom:952.279650px;}
.y4a{bottom:953.078700px;}
.y7b{bottom:953.078850px;}
.yb9{bottom:966.174150px;}
.y104{bottom:967.441050px;}
.ydf{bottom:973.185150px;}
.y49{bottom:974.078700px;}
.y7a{bottom:974.078850px;}
.ya6{bottom:977.811000px;}
.y4{bottom:983.282550px;}
.yb8{bottom:987.079800px;}
.yde{bottom:988.185150px;}
.yae{bottom:988.441050px;}
.y48{bottom:995.078700px;}
.y79{bottom:995.078850px;}
.y10c{bottom:1000.529250px;}
.yb7{bottom:1007.985300px;}
.ydd{bottom:1009.090650px;}
.y47{bottom:1016.078700px;}
.y78{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.yb6{bottom:1028.890800px;}
.ydc{bottom:1029.996150px;}
.ydb{bottom:1032.098550px;}
.y46{bottom:1037.078700px;}
.y77{bottom:1037.078850px;}
.yda{bottom:1039.598550px;}
.y2{bottom:1049.282550px;}
.yb5{bottom:1049.796300px;}
.y45{bottom:1058.078700px;}
.y76{bottom:1058.078850px;}
.yb4{bottom:1059.398700px;}
.y44{bottom:1079.078700px;}
.y75{bottom:1079.078850px;}
.yd9{bottom:1079.682900px;}
.yb3{bottom:1099.482900px;}
.ya5{bottom:1100.078700px;}
.y74{bottom:1100.078850px;}
.y13{bottom:1109.815500px;}
.y43{bottom:1111.570800px;}
.yb2{bottom:1119.282900px;}
.ya4{bottom:1121.078700px;}
.y73{bottom:1121.078850px;}
.y10b{bottom:1125.451800px;}
.y3f{bottom:1155.615300px;}
.y3e{bottom:1175.115300px;}
.y42{bottom:1178.691750px;}
.h18{height:36.000000px;}
.h16{height:36.492188px;}
.h6{height:36.540019px;}
.h2{height:38.039062px;}
.h15{height:38.226562px;}
.h5{height:38.531250px;}
.h7{height:39.023438px;}
.hc{height:42.793945px;}
.h8{height:43.004883px;}
.h19{height:43.312500px;}
.he{height:43.734375px;}
.h17{height:44.039062px;}
.h9{height:45.000000px;}
.h1b{height:48.726562px;}
.hb{height:48.779297px;}
.hd{height:49.201172px;}
.h12{height:49.500000px;}
.ha{height:49.543945px;}
.h13{height:50.176758px;}
.hf{height:54.000000px;}
.h11{height:54.140625px;}
.h1a{height:54.738281px;}
.h10{height:55.048828px;}
.h4{height:60.553711px;}
.h14{height:76.636162px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.992100px;}
.xb{left:107.068950px;}
.xd{left:108.286950px;}
.x10{left:112.251900px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.x11{left:175.789350px;}
.xe{left:220.435050px;}
.x13{left:287.098350px;}
.x14{left:295.609050px;}
.x15{left:298.978200px;}
.x5{left:300.189000px;}
.xc{left:317.196900px;}
.xf{left:382.562550px;}
.x4{left:396.050700px;}
.x9{left:568.512600px;}
.x19{left:672.962550px;}
.x17{left:674.424450px;}
.xa{left:678.252900px;}
.x16{left:680.398200px;}
.x1a{left:684.610950px;}
.x18{left:689.650050px;}
.x12{left:716.439150px;}
.x1{left:801.350850px;}
@media print{
.v6{vertical-align:-7.475200pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.458133pt;}
.v3{vertical-align:15.984000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v4{vertical-align:34.141867pt;}
.lsa{letter-spacing:-1.066667pt;}
.lsb{letter-spacing:-0.800000pt;}
.ls5{letter-spacing:-0.614400pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.144000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010667pt;}
.ls13{letter-spacing:0.012267pt;}
.ls3{letter-spacing:0.022933pt;}
.ls6{letter-spacing:0.373333pt;}
.ls7{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.621867pt;}
.ls8{letter-spacing:1.066667pt;}
.ls0{letter-spacing:38.383435pt;}
.ls1{letter-spacing:38.383968pt;}
.ls12{letter-spacing:107.056533pt;}
.lse{letter-spacing:119.025600pt;}
.ls11{letter-spacing:131.004267pt;}
.lsd{letter-spacing:131.004800pt;}
.lsf{letter-spacing:131.014933pt;}
.ls10{letter-spacing:131.025600pt;}
.ws2c{word-spacing:-53.333333pt;}
.ws3{word-spacing:-42.666667pt;}
.ws10{word-spacing:-15.936000pt;}
.ws2f{word-spacing:-14.608000pt;}
.ws13{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.226667pt;}
.ws2b{word-spacing:-13.066667pt;}
.ws4d{word-spacing:-11.952000pt;}
.ws55{word-spacing:-11.904000pt;}
.ws58{word-spacing:-11.760000pt;}
.ws7{word-spacing:-10.800000pt;}
.ws36{word-spacing:-10.581333pt;}
.ws6{word-spacing:-10.464000pt;}
.ws2{word-spacing:-10.107733pt;}
.ws4{word-spacing:-8.371200pt;}
.ws21{word-spacing:-8.333013pt;}
.ws12{word-spacing:-7.711147pt;}
.ws22{word-spacing:-6.940032pt;}
.ws50{word-spacing:-2.208000pt;}
.ws53{word-spacing:-1.920000pt;}
.ws33{word-spacing:-1.760000pt;}
.ws32{word-spacing:-1.600000pt;}
.ws9{word-spacing:-1.114667pt;}
.ws1d{word-spacing:-1.066667pt;}
.ws31{word-spacing:-0.960000pt;}
.wsf{word-spacing:-0.912000pt;}
.ws4e{word-spacing:-0.906667pt;}
.ws2a{word-spacing:-0.720000pt;}
.ws1b{word-spacing:-0.480000pt;}
.ws16{word-spacing:-0.373333pt;}
.ws4f{word-spacing:-0.336000pt;}
.ws1f{word-spacing:-0.266667pt;}
.wsd{word-spacing:-0.240000pt;}
.wsa{word-spacing:-0.192000pt;}
.ws8{word-spacing:0.000000pt;}
.ws59{word-spacing:0.144000pt;}
.ws4b{word-spacing:0.213333pt;}
.ws5a{word-spacing:0.480000pt;}
.ws2e{word-spacing:0.533333pt;}
.wsb{word-spacing:0.614400pt;}
.ws1c{word-spacing:0.693333pt;}
.ws1e{word-spacing:0.800000pt;}
.ws51{word-spacing:0.906667pt;}
.ws4c{word-spacing:0.960000pt;}
.ws56{word-spacing:1.008000pt;}
.ws24{word-spacing:1.066667pt;}
.ws30{word-spacing:1.104000pt;}
.ws5b{word-spacing:1.584000pt;}
.ws18{word-spacing:1.813333pt;}
.ws57{word-spacing:2.016000pt;}
.ws52{word-spacing:2.506667pt;}
.ws2d{word-spacing:3.413333pt;}
.wsc{word-spacing:4.416000pt;}
.ws14{word-spacing:4.746667pt;}
.ws1a{word-spacing:5.120000pt;}
.ws34{word-spacing:5.280000pt;}
.ws54{word-spacing:5.760000pt;}
.ws23{word-spacing:7.008000pt;}
.wse{word-spacing:7.248000pt;}
.ws19{word-spacing:7.466667pt;}
.ws20{word-spacing:8.160000pt;}
.ws17{word-spacing:10.773333pt;}
.ws15{word-spacing:11.413333pt;}
.ws1{word-spacing:29.911587pt;}
.ws0{word-spacing:29.912120pt;}
.ws48{word-spacing:37.059733pt;}
.ws3c{word-spacing:49.026667pt;}
.ws44{word-spacing:61.058667pt;}
.ws4a{word-spacing:73.026133pt;}
.ws46{word-spacing:77.193067pt;}
.ws38{word-spacing:78.817600pt;}
.ws3a{word-spacing:78.818667pt;}
.ws41{word-spacing:78.828267pt;}
.ws3b{word-spacing:78.828800pt;}
.ws40{word-spacing:78.850667pt;}
.ws43{word-spacing:78.860800pt;}
.ws45{word-spacing:78.882133pt;}
.ws3e{word-spacing:90.797333pt;}
.ws39{word-spacing:108.423467pt;}
.ws42{word-spacing:108.434133pt;}
.ws26{word-spacing:117.772800pt;}
.ws47{word-spacing:118.709867pt;}
.ws49{word-spacing:120.402667pt;}
.ws3f{word-spacing:120.423467pt;}
.ws28{word-spacing:121.368533pt;}
.ws27{word-spacing:121.369067pt;}
.ws37{word-spacing:137.976533pt;}
.ws3d{word-spacing:149.976000pt;}
.ws29{word-spacing:161.420800pt;}
.ws35{word-spacing:550.225600pt;}
.ws25{word-spacing:1076.843733pt;}
._d{margin-left:-9.640533pt;}
._32{margin-left:-8.453333pt;}
._a{margin-left:-6.883200pt;}
._c{margin-left:-5.141867pt;}
._5{margin-left:-4.108800pt;}
._2{margin-left:-2.774400pt;}
._0{margin-left:-1.686400pt;}
._1{width:0.897600pt;}
._6{width:1.876800pt;}
._3{width:2.982933pt;}
._7{width:4.299733pt;}
._9{width:5.251200pt;}
._8{width:6.177600pt;}
._e{width:7.105067pt;}
._b{width:8.028267pt;}
._f{width:8.967467pt;}
._11{width:10.597333pt;}
._12{width:11.920000pt;}
._43{width:13.334400pt;}
._42{width:14.310400pt;}
._13{width:15.488000pt;}
._31{width:16.485333pt;}
._10{width:18.149333pt;}
._46{width:19.205867pt;}
._47{width:20.706133pt;}
._44{width:26.077867pt;}
._45{width:27.480000pt;}
._4{width:32.554667pt;}
._40{width:37.672533pt;}
._41{width:39.142933pt;}
._3f{width:60.352000pt;}
._34{width:62.861867pt;}
._33{width:63.911467pt;}
._16{width:66.897067pt;}
._3c{width:71.854933pt;}
._15{width:80.210667pt;}
._18{width:83.896000pt;}
._37{width:101.870400pt;}
._17{width:106.142933pt;}
._2c{width:112.091200pt;}
._14{width:113.889067pt;}
._24{width:119.547200pt;}
._3a{width:121.973867pt;}
._27{width:129.340800pt;}
._38{width:130.962133pt;}
._35{width:147.867733pt;}
._1b{width:152.880533pt;}
._20{width:156.512533pt;}
._3b{width:160.557333pt;}
._2f{width:164.485333pt;}
._1a{width:167.998400pt;}
._29{width:171.630933pt;}
._25{width:175.247467pt;}
._1c{width:177.069333pt;}
._2e{width:179.604267pt;}
._21{width:180.684267pt;}
._26{width:184.262933pt;}
._30{width:188.674667pt;}
._39{width:268.664000pt;}
._1f{width:287.749867pt;}
._3d{width:289.857067pt;}
._19{width:295.099200pt;}
._36{width:403.787200pt;}
._1d{width:414.886400pt;}
._23{width:457.339733pt;}
._3e{width:483.189867pt;}
._28{width:506.180800pt;}
._22{width:604.029867pt;}
._2d{width:604.976000pt;}
._2b{width:616.858133pt;}
._1e{width:739.153067pt;}
._2a{width:818.555733pt;}
.fsa{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y40{bottom:63.299600pt;}
.y41{bottom:66.698800pt;}
.y72{bottom:100.514400pt;}
.ya3{bottom:100.514533pt;}
.y12{bottom:104.778267pt;}
.y11{bottom:117.578267pt;}
.y71{bottom:119.181067pt;}
.ya2{bottom:119.181200pt;}
.y10{bottom:130.378267pt;}
.y70{bottom:137.847733pt;}
.ya1{bottom:137.847867pt;}
.y10a{bottom:142.692800pt;}
.yf{bottom:143.178267pt;}
.y6f{bottom:156.514400pt;}
.ya0{bottom:156.514533pt;}
.y2c{bottom:157.180400pt;}
.y2b{bottom:174.780400pt;}
.y6e{bottom:175.181067pt;}
.y9f{bottom:175.181200pt;}
.y3d{bottom:177.237867pt;}
.y3c{bottom:193.237867pt;}
.y6d{bottom:193.847733pt;}
.y9e{bottom:193.847867pt;}
.y109{bottom:198.692800pt;}
.ya8{bottom:206.614267pt;}
.y3b{bottom:209.237867pt;}
.y2a{bottom:211.278133pt;}
.y6c{bottom:212.514400pt;}
.y9d{bottom:212.514533pt;}
.y3a{bottom:225.237867pt;}
.y29{bottom:228.878000pt;}
.yd1{bottom:229.881333pt;}
.y6b{bottom:231.181067pt;}
.y9c{bottom:231.181200pt;}
.yd8{bottom:239.830667pt;}
.y39{bottom:241.237867pt;}
.yad{bottom:243.947600pt;}
.y28{bottom:246.478133pt;}
.yd0{bottom:247.481333pt;}
.y6a{bottom:249.847733pt;}
.y9b{bottom:249.847867pt;}
.y108{bottom:254.692800pt;}
.y38{bottom:257.237867pt;}
.yd7{bottom:257.430667pt;}
.y27{bottom:264.078000pt;}
.y69{bottom:268.514400pt;}
.y9a{bottom:268.514533pt;}
.y37{bottom:273.237867pt;}
.yd6{bottom:275.030667pt;}
.ycd{bottom:281.280800pt;}
.y26{bottom:281.678000pt;}
.y68{bottom:287.181067pt;}
.y99{bottom:287.181200pt;}
.y36{bottom:289.237867pt;}
.yd5{bottom:292.630667pt;}
.y25{bottom:299.278000pt;}
.ycc{bottom:299.947467pt;}
.y35{bottom:305.237867pt;}
.y67{bottom:305.847733pt;}
.y98{bottom:305.847867pt;}
.y107{bottom:311.055200pt;}
.y24{bottom:316.878000pt;}
.yb1{bottom:317.789867pt;}
.y34{bottom:321.237867pt;}
.y66{bottom:324.514400pt;}
.y97{bottom:324.514533pt;}
.y23{bottom:334.478133pt;}
.yb0{bottom:336.456533pt;}
.y33{bottom:337.237867pt;}
.y106{bottom:337.280933pt;}
.y65{bottom:343.181067pt;}
.y96{bottom:343.181200pt;}
.y22{bottom:352.078000pt;}
.y32{bottom:353.237867pt;}
.y64{bottom:361.847733pt;}
.y95{bottom:361.847867pt;}
.yac{bottom:362.732533pt;}
.yaf{bottom:365.165333pt;}
.y31{bottom:369.237867pt;}
.y21{bottom:369.678000pt;}
.yfe{bottom:374.614133pt;}
.yab{bottom:380.332533pt;}
.y63{bottom:380.514400pt;}
.y94{bottom:380.514533pt;}
.yfc{bottom:383.898667pt;}
.y20{bottom:387.278133pt;}
.yfd{bottom:393.280800pt;}
.yfb{bottom:397.232000pt;}
.yaa{bottom:397.932533pt;}
.y62{bottom:399.181067pt;}
.y93{bottom:399.181200pt;}
.y30{bottom:400.356000pt;}
.y1f{bottom:404.878000pt;}
.yfa{bottom:410.565333pt;}
.yd4{bottom:411.123200pt;}
.ya9{bottom:415.532533pt;}
.y2f{bottom:416.356000pt;}
.y61{bottom:417.847733pt;}
.y92{bottom:417.847867pt;}
.y1e{bottom:422.478133pt;}
.yf9{bottom:423.898667pt;}
.yd3{bottom:429.789867pt;}
.ycb{bottom:430.614267pt;}
.y2e{bottom:432.356000pt;}
.y60{bottom:436.514400pt;}
.y91{bottom:436.514533pt;}
.yf8{bottom:437.232000pt;}
.y1d{bottom:440.078000pt;}
.y2d{bottom:448.356000pt;}
.yca{bottom:449.280933pt;}
.yf7{bottom:450.565333pt;}
.y5f{bottom:455.181067pt;}
.y90{bottom:455.181200pt;}
.y1c{bottom:457.678000pt;}
.yd2{bottom:458.498800pt;}
.yf6{bottom:463.898667pt;}
.y5e{bottom:473.847733pt;}
.y8f{bottom:473.847867pt;}
.y1b{bottom:475.278133pt;}
.yf5{bottom:482.481333pt;}
.y5d{bottom:492.514400pt;}
.y8e{bottom:492.514533pt;}
.y1a{bottom:492.878000pt;}
.yf4{bottom:501.064000pt;}
.y19{bottom:510.478133pt;}
.y5c{bottom:511.181067pt;}
.y8d{bottom:511.181200pt;}
.yf3{bottom:519.646667pt;}
.y18{bottom:528.078000pt;}
.y5b{bottom:529.847733pt;}
.y8c{bottom:529.847867pt;}
.yf2{bottom:532.980000pt;}
.y17{bottom:545.678000pt;}
.y5a{bottom:548.514400pt;}
.y8b{bottom:548.514533pt;}
.yf1{bottom:551.562667pt;}
.yc9{bottom:561.498667pt;}
.y16{bottom:563.278133pt;}
.y59{bottom:567.181067pt;}
.y8a{bottom:567.181200pt;}
.yf0{bottom:570.145333pt;}
.yc8{bottom:580.081333pt;}
.y15{bottom:580.878000pt;}
.yef{bottom:583.478667pt;}
.y58{bottom:585.847733pt;}
.y89{bottom:585.847867pt;}
.y10e{bottom:598.614133pt;}
.yc7{bottom:598.664000pt;}
.yee{bottom:602.061333pt;}
.y57{bottom:604.514400pt;}
.y88{bottom:604.514533pt;}
.y14{bottom:608.520267pt;}
.yc6{bottom:617.246800pt;}
.yed{bottom:620.644000pt;}
.y56{bottom:623.181067pt;}
.y87{bottom:623.181200pt;}
.yec{bottom:633.977333pt;}
.yc5{bottom:635.829467pt;}
.y55{bottom:641.847733pt;}
.y86{bottom:641.847867pt;}
.y103{bottom:645.225867pt;}
.yeb{bottom:652.560000pt;}
.yc4{bottom:654.412133pt;}
.ycf{bottom:659.376133pt;}
.y54{bottom:660.514400pt;}
.y85{bottom:660.514533pt;}
.y102{bottom:662.825867pt;}
.yea{bottom:671.142800pt;}
.yc3{bottom:672.994800pt;}
.yce{bottom:676.976133pt;}
.ye{bottom:678.992800pt;}
.y53{bottom:679.181067pt;}
.y84{bottom:679.181200pt;}
.y101{bottom:680.425867pt;}
.y10d{bottom:684.026000pt;}
.ye9{bottom:684.476133pt;}
.yc2{bottom:691.577467pt;}
.yd{bottom:694.992800pt;}
.y52{bottom:697.847733pt;}
.y83{bottom:697.847867pt;}
.y100{bottom:698.025733pt;}
.ye8{bottom:703.058800pt;}
.yc1{bottom:710.160133pt;}
.yc{bottom:710.992800pt;}
.yff{bottom:715.625867pt;}
.y51{bottom:716.514400pt;}
.y82{bottom:716.514533pt;}
.ye7{bottom:721.641333pt;}
.yb{bottom:726.992800pt;}
.yc0{bottom:728.742800pt;}
.y50{bottom:735.181067pt;}
.y81{bottom:735.181200pt;}
.ye6{bottom:740.224000pt;}
.ya{bottom:742.992800pt;}
.ybf{bottom:747.325467pt;}
.y4f{bottom:753.847733pt;}
.y80{bottom:753.847867pt;}
.ye5{bottom:758.806667pt;}
.y9{bottom:758.992800pt;}
.ybe{bottom:765.908133pt;}
.ye4{bottom:772.140000pt;}
.y4e{bottom:772.514400pt;}
.y7f{bottom:772.514533pt;}
.y8{bottom:774.992800pt;}
.ybd{bottom:784.490800pt;}
.ye3{bottom:790.722800pt;}
.y4d{bottom:791.181067pt;}
.y7e{bottom:791.181200pt;}
.ybc{bottom:803.073467pt;}
.y7{bottom:806.110800pt;}
.ye2{bottom:809.305467pt;}
.y4c{bottom:809.847733pt;}
.y7d{bottom:809.847867pt;}
.ybb{bottom:821.656133pt;}
.y6{bottom:823.710800pt;}
.ye1{bottom:827.888133pt;}
.y4b{bottom:828.514400pt;}
.y7c{bottom:828.514533pt;}
.yba{bottom:840.238800pt;}
.ya7{bottom:840.456533pt;}
.y105{bottom:841.280933pt;}
.y5{bottom:841.310933pt;}
.ye0{bottom:846.470800pt;}
.y4a{bottom:847.181067pt;}
.y7b{bottom:847.181200pt;}
.yb9{bottom:858.821467pt;}
.y104{bottom:859.947600pt;}
.ydf{bottom:865.053467pt;}
.y49{bottom:865.847733pt;}
.y7a{bottom:865.847867pt;}
.ya6{bottom:869.165333pt;}
.y4{bottom:874.028933pt;}
.yb8{bottom:877.404267pt;}
.yde{bottom:878.386800pt;}
.yae{bottom:878.614267pt;}
.y48{bottom:884.514400pt;}
.y79{bottom:884.514533pt;}
.y10c{bottom:889.359333pt;}
.yb7{bottom:895.986933pt;}
.ydd{bottom:896.969467pt;}
.y47{bottom:903.181067pt;}
.y78{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.yb6{bottom:914.569600pt;}
.ydc{bottom:915.552133pt;}
.ydb{bottom:917.420933pt;}
.y46{bottom:921.847733pt;}
.y77{bottom:921.847867pt;}
.yda{bottom:924.087600pt;}
.y2{bottom:932.695600pt;}
.yb5{bottom:933.152267pt;}
.y45{bottom:940.514400pt;}
.y76{bottom:940.514533pt;}
.yb4{bottom:941.687733pt;}
.y44{bottom:959.181067pt;}
.y75{bottom:959.181200pt;}
.yd9{bottom:959.718133pt;}
.yb3{bottom:977.318133pt;}
.ya5{bottom:977.847733pt;}
.y74{bottom:977.847867pt;}
.y13{bottom:986.502667pt;}
.y43{bottom:988.062933pt;}
.yb2{bottom:994.918133pt;}
.ya4{bottom:996.514400pt;}
.y73{bottom:996.514533pt;}
.y10b{bottom:1000.401600pt;}
.y3f{bottom:1027.213600pt;}
.y3e{bottom:1044.546933pt;}
.y42{bottom:1047.726000pt;}
.h18{height:32.000000pt;}
.h16{height:32.437500pt;}
.h6{height:32.480017pt;}
.h2{height:33.812500pt;}
.h15{height:33.979167pt;}
.h5{height:34.250000pt;}
.h7{height:34.687500pt;}
.hc{height:38.039062pt;}
.h8{height:38.226562pt;}
.h19{height:38.500000pt;}
.he{height:38.875000pt;}
.h17{height:39.145833pt;}
.h9{height:40.000000pt;}
.h1b{height:43.312500pt;}
.hb{height:43.359375pt;}
.hd{height:43.734375pt;}
.h12{height:44.000000pt;}
.ha{height:44.039062pt;}
.h13{height:44.601562pt;}
.hf{height:48.000000pt;}
.h11{height:48.125000pt;}
.h1a{height:48.656250pt;}
.h10{height:48.932292pt;}
.h4{height:53.825521pt;}
.h14{height:68.121033pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.881867pt;}
.xb{left:95.172400pt;}
.xd{left:96.255067pt;}
.x10{left:99.779467pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.x11{left:156.257200pt;}
.xe{left:195.942267pt;}
.x13{left:255.198533pt;}
.x14{left:262.763600pt;}
.x15{left:265.758400pt;}
.x5{left:266.834667pt;}
.xc{left:281.952800pt;}
.xf{left:340.055600pt;}
.x4{left:352.045067pt;}
.x9{left:505.344533pt;}
.x19{left:598.188933pt;}
.x17{left:599.488400pt;}
.xa{left:602.891467pt;}
.x16{left:604.798400pt;}
.x1a{left:608.543067pt;}
.x18{left:613.022267pt;}
.x12{left:636.834800pt;}
.x1{left:712.311867pt;}
}




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