
    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_c2a6bf4099fb2c3eb33badbf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.402354;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_264a5c0cddfee4d17031be06.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d1f2f370459cd54b71fa2d89.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_21dd878527f73d72b1876990.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e90ece2cc6eb19c897213d29.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.982910;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_c2b0f238b75fc42c5c30eeac.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.880859;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_1ae6411f3d2b11f91f51c7e3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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;}
.m2{transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249601,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-82.800000px;}
.v2{vertical-align:-30.240000px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.lsb{letter-spacing:-1.224000px;}
.ls10{letter-spacing:-0.576000px;}
.ls8{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.314262px;}
.ls7{letter-spacing:-0.226200px;}
.ls4{letter-spacing:-0.223800px;}
.lsa{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.181200px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.468000px;}
.lse{letter-spacing:0.673431px;}
.lsd{letter-spacing:1.246057px;}
.ls12{letter-spacing:8.040000px;}
.ls9{letter-spacing:64.944000px;}
.ls2{letter-spacing:938.604000px;}
.ls0{letter-spacing:962.364000px;}
.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:-72.000000px;}
.ws6{word-spacing:-20.304000px;}
.wsc{word-spacing:-20.232000px;}
.ws7{word-spacing:-20.016000px;}
.ws9{word-spacing:-19.800000px;}
.ws5{word-spacing:-19.584000px;}
.wsa{word-spacing:-18.792000px;}
.ws4{word-spacing:-18.414720px;}
.ws1{word-spacing:-13.410720px;}
.ws2{word-spacing:-13.229520px;}
.ws0{word-spacing:-13.186920px;}
.ws3{word-spacing:-11.383080px;}
.ws14{word-spacing:-10.507585px;}
.ws2b{word-spacing:-8.467428px;}
.ws15{word-spacing:-7.822469px;}
.wsb{word-spacing:-0.072000px;}
.ws8{word-spacing:0.000000px;}
.ws21{word-spacing:31.854096px;}
.wsd{word-spacing:33.991782px;}
.ws25{word-spacing:80.723895px;}
.ws27{word-spacing:84.846144px;}
.ws22{word-spacing:84.958543px;}
.wse{word-spacing:92.274859px;}
.ws28{word-spacing:93.815996px;}
.ws24{word-spacing:109.709469px;}
.ws13{word-spacing:112.898241px;}
.ws23{word-spacing:113.483414px;}
.ws2a{word-spacing:118.139430px;}
.ws10{word-spacing:118.275588px;}
.ws11{word-spacing:118.502370px;}
.ws26{word-spacing:122.824091px;}
.ws16{word-spacing:134.398904px;}
.ws29{word-spacing:144.619004px;}
.ws18{word-spacing:146.925354px;}
.ws1d{word-spacing:156.453884px;}
.ws1c{word-spacing:162.800660px;}
.ws1e{word-spacing:173.823497px;}
.ws12{word-spacing:174.476972px;}
.ws1a{word-spacing:177.725425px;}
.ws20{word-spacing:186.125540px;}
.ws19{word-spacing:186.146454px;}
.wsf{word-spacing:191.605552px;}
.ws17{word-spacing:195.641417px;}
.ws1f{word-spacing:205.003890px;}
.ws1b{word-spacing:226.227956px;}
._1c{margin-left:-3.928284px;}
._3{margin-left:-2.724000px;}
._1{margin-left:-1.152000px;}
._2{width:1.428000px;}
._10{width:2.880000px;}
._0{width:4.104000px;}
._14{width:5.112000px;}
._c{width:6.264000px;}
._11{width:7.272000px;}
._e{width:8.568000px;}
._d{width:9.720000px;}
._f{width:11.652480px;}
._9{width:13.115520px;}
._a{width:14.333760px;}
._12{width:15.912000px;}
._13{width:16.932960px;}
._b{width:18.864000px;}
._5{width:21.828000px;}
._4{width:23.256000px;}
._1b{width:24.624000px;}
._1a{width:25.632000px;}
._15{width:26.640000px;}
._16{width:28.512000px;}
._25{width:30.096000px;}
._40{width:31.451760px;}
._7{width:32.550120px;}
._6{width:33.912000px;}
._19{width:35.004000px;}
._18{width:36.144000px;}
._3b{width:37.212000px;}
._17{width:38.580000px;}
._3f{width:41.400000px;}
._41{width:44.208000px;}
._42{width:46.068000px;}
._3d{width:52.776000px;}
._3c{width:53.784000px;}
._8{width:59.393160px;}
._2d{width:68.481621px;}
._2e{width:69.724941px;}
._3e{width:77.976000px;}
._34{width:96.176531px;}
._39{width:101.599979px;}
._31{width:102.620768px;}
._37{width:104.723665px;}
._38{width:109.549163px;}
._36{width:120.539258px;}
._3a{width:122.001531px;}
._21{width:126.888527px;}
._32{width:130.662891px;}
._2f{width:135.973481px;}
._33{width:139.662096px;}
._35{width:143.862184px;}
._22{width:145.341028px;}
._30{width:146.441495px;}
._1d{width:147.562786px;}
._23{width:167.220573px;}
._1e{width:184.160883px;}
._24{width:185.500390px;}
._20{width:188.364596px;}
._28{width:198.369079px;}
._1f{width:202.158813px;}
._2c{width:203.989037px;}
._27{width:207.105225px;}
._26{width:213.421258px;}
._2a{width:223.396150px;}
._2b{width:235.311227px;}
._29{width:237.733210px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:34.612696px;}
.fs7{font-size:37.466493px;}
.fs5{font-size:37.797067px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y88{bottom:2.352828px;}
.ya5{bottom:2.352833px;}
.yb2{bottom:2.378976px;}
.yb5{bottom:3.137067px;}
.yb9{bottom:3.137106px;}
.y8e{bottom:3.137108px;}
.y9d{bottom:3.137109px;}
.y96{bottom:3.158022px;}
.ya0{bottom:3.158023px;}
.ybb{bottom:3.168476px;}
.y91{bottom:3.168479px;}
.yb3{bottom:3.921281px;}
.ye8{bottom:4.670307px;}
.yea{bottom:4.701474px;}
.ye6{bottom:5.442397px;}
.y71{bottom:6.023553px;}
.y6d{bottom:6.023593px;}
.y6f{bottom:6.029262px;}
.y85{bottom:8.658410px;}
.y87{bottom:14.148333px;}
.yb0{bottom:15.737805px;}
.yb7{bottom:21.227727px;}
.ye5{bottom:21.840579px;}
.y73{bottom:23.237774px;}
.y6c{bottom:24.094246px;}
.yae{bottom:27.528081px;}
.yec{bottom:28.873071px;}
.ye4{bottom:37.460266px;}
.yac{bottom:39.318358px;}
.y6b{bottom:41.279921px;}
.yaa{bottom:51.134777px;}
.ye3{bottom:53.079954px;}
.y1{bottom:55.980000px;}
.y6a{bottom:59.350573px;}
.ya8{bottom:62.925053px;}
.ye2{bottom:68.673695px;}
.ya6{bottom:74.715330px;}
.ye1{bottom:84.293383px;}
.ya3{bottom:86.531749px;}
.y69{bottom:94.578354px;}
.ya1{bottom:99.106301px;}
.ye0{bottom:99.913071px;}
.y32{bottom:111.816000px;}
.y9e{bottom:112.486042px;}
.y68{bottom:112.649006px;}
.y48{bottom:112.896000px;}
.ydf{bottom:115.533796px;}
.y83{bottom:120.276000px;}
.y10f{bottom:125.316000px;}
.y62{bottom:125.676000px;}
.y9b{bottom:125.850099px;}
.y14d{bottom:126.756000px;}
.y67{bottom:129.839249px;}
.yde{bottom:131.122348px;}
.yd5{bottom:132.336000px;}
.y31{bottom:132.516000px;}
.y47{bottom:133.596000px;}
.y99{bottom:139.235069px;}
.y10e{bottom:146.016000px;}
.y14f{bottom:146.376000px;}
.ydd{bottom:146.742036px;}
.y66{bottom:147.047763px;}
.y14c{bottom:147.456000px;}
.y97{bottom:152.588668px;}
.yd4{bottom:153.030000px;}
.y30{bottom:153.210000px;}
.y46{bottom:154.290000px;}
.y82{bottom:161.670000px;}
.ydc{bottom:162.361724px;}
.y65{bottom:164.233438px;}
.y94{bottom:165.973638px;}
.y10d{bottom:166.710000px;}
.y61{bottom:167.070000px;}
.y14b{bottom:168.150000px;}
.y45{bottom:170.850000px;}
.yd3{bottom:173.730000px;}
.y2f{bottom:173.910000px;}
.ydb{bottom:177.981411px;}
.y92{bottom:179.337694px;}
.y64{bottom:182.309799px;}
.y81{bottom:182.370000px;}
.y10c{bottom:187.410000px;}
.y60{bottom:187.770000px;}
.y14a{bottom:188.850000px;}
.y8f{bottom:192.722665px;}
.yda{bottom:193.580342px;}
.yd2{bottom:194.430000px;}
.y2e{bottom:194.610000px;}
.y123{bottom:201.990000px;}
.y80{bottom:203.070000px;}
.y8c{bottom:206.076264px;}
.y10b{bottom:208.110000px;}
.y5f{bottom:208.470000px;}
.y149{bottom:209.550000px;}
.yd9{bottom:209.978420px;}
.yd1{bottom:215.130000px;}
.y2d{bottom:215.310000px;}
.y122{bottom:222.690000px;}
.y7f{bottom:223.770000px;}
.yd8{bottom:225.598107px;}
.y10a{bottom:228.810000px;}
.y5e{bottom:229.170000px;}
.y148{bottom:230.250000px;}
.yd0{bottom:235.830000px;}
.y2c{bottom:236.010000px;}
.yd7{bottom:241.217795px;}
.y121{bottom:243.390000px;}
.y7e{bottom:244.470000px;}
.y109{bottom:249.510000px;}
.y5d{bottom:249.870000px;}
.y147{bottom:250.950000px;}
.y2b{bottom:256.710000px;}
.y120{bottom:264.090000px;}
.y7d{bottom:265.170000px;}
.y108{bottom:270.210000px;}
.y5c{bottom:270.570000px;}
.y146{bottom:271.650000px;}
.ycf{bottom:277.230000px;}
.y2a{bottom:277.410000px;}
.y11f{bottom:284.790000px;}
.y7c{bottom:285.870000px;}
.y107{bottom:290.910000px;}
.y5b{bottom:291.270000px;}
.y145{bottom:292.350000px;}
.yce{bottom:297.930000px;}
.y29{bottom:298.110000px;}
.y11e{bottom:305.490000px;}
.y7b{bottom:306.570000px;}
.y106{bottom:311.610000px;}
.y5a{bottom:311.970000px;}
.y144{bottom:313.050000px;}
.ycd{bottom:318.630000px;}
.y28{bottom:318.810000px;}
.y11d{bottom:326.190000px;}
.y105{bottom:332.310000px;}
.y59{bottom:332.670000px;}
.y143{bottom:333.750000px;}
.ycc{bottom:339.375000px;}
.y27{bottom:339.555000px;}
.y11c{bottom:346.935000px;}
.y7a{bottom:348.015000px;}
.y104{bottom:353.055000px;}
.y58{bottom:353.415000px;}
.y142{bottom:354.495000px;}
.ycb{bottom:360.075000px;}
.y26{bottom:360.255000px;}
.y11b{bottom:367.635000px;}
.y79{bottom:368.715000px;}
.y103{bottom:373.755000px;}
.y57{bottom:374.115000px;}
.y141{bottom:375.195000px;}
.yca{bottom:376.635000px;}
.y25{bottom:380.955000px;}
.y11a{bottom:388.335000px;}
.y78{bottom:389.415000px;}
.y102{bottom:394.455000px;}
.y56{bottom:394.815000px;}
.y140{bottom:395.895000px;}
.y24{bottom:401.655000px;}
.y119{bottom:409.035000px;}
.y77{bottom:410.115000px;}
.y101{bottom:415.155000px;}
.y55{bottom:415.515000px;}
.y13f{bottom:416.595000px;}
.y23{bottom:422.355000px;}
.y118{bottom:429.735000px;}
.y76{bottom:430.815000px;}
.y100{bottom:435.855000px;}
.y54{bottom:436.035000px;}
.y13e{bottom:437.295000px;}
.y75{bottom:447.375000px;}
.y63{bottom:447.396809px;}
.y117{bottom:450.435000px;}
.yff{bottom:456.555000px;}
.y53{bottom:456.735000px;}
.y13d{bottom:457.995000px;}
.y22{bottom:463.755000px;}
.y116{bottom:471.135000px;}
.yfe{bottom:477.255000px;}
.y52{bottom:477.435000px;}
.y13c{bottom:478.695000px;}
.y74{bottom:483.509608px;}
.y21{bottom:484.455000px;}
.y115{bottom:491.835000px;}
.yfd{bottom:497.955000px;}
.y51{bottom:498.135000px;}
.y13b{bottom:499.395000px;}
.y20{bottom:505.155000px;}
.y114{bottom:512.535000px;}
.yfc{bottom:518.655000px;}
.y70{bottom:518.765932px;}
.y50{bottom:518.835000px;}
.y13a{bottom:520.095000px;}
.y1f{bottom:525.855000px;}
.y113{bottom:533.235000px;}
.yfb{bottom:539.355000px;}
.y4f{bottom:539.535000px;}
.y139{bottom:540.795000px;}
.y1e{bottom:546.555000px;}
.y112{bottom:553.935000px;}
.yfa{bottom:560.055000px;}
.y14e{bottom:560.235000px;}
.y4e{bottom:560.415000px;}
.y138{bottom:561.495000px;}
.y1d{bottom:567.255000px;}
.y111{bottom:574.635000px;}
.yf9{bottom:580.755000px;}
.y4d{bottom:580.935000px;}
.y137{bottom:582.195000px;}
.yc9{bottom:585.795000px;}
.y1c{bottom:587.955000px;}
.y110{bottom:591.195000px;}
.yf8{bottom:601.455000px;}
.y4c{bottom:601.635000px;}
.y136{bottom:602.895000px;}
.y72{bottom:606.468834px;}
.yc8{bottom:606.525000px;}
.y1b{bottom:608.685000px;}
.yf7{bottom:622.185000px;}
.y4b{bottom:622.365000px;}
.y135{bottom:623.625000px;}
.yc7{bottom:627.225000px;}
.y1a{bottom:629.385000px;}
.y6e{bottom:641.719449px;}
.yf6{bottom:642.885000px;}
.y4a{bottom:643.065000px;}
.y134{bottom:644.325000px;}
.yc6{bottom:647.925000px;}
.y19{bottom:650.085000px;}
.yf5{bottom:663.585000px;}
.y44{bottom:663.765000px;}
.y133{bottom:665.025000px;}
.yc5{bottom:668.625000px;}
.y18{bottom:670.785000px;}
.yf4{bottom:684.285000px;}
.y43{bottom:684.465000px;}
.y132{bottom:685.725000px;}
.yc4{bottom:689.325000px;}
.y17{bottom:691.485000px;}
.yf3{bottom:704.985000px;}
.y42{bottom:705.165000px;}
.y131{bottom:706.425000px;}
.yc3{bottom:710.025000px;}
.y16{bottom:712.185000px;}
.yf2{bottom:725.685000px;}
.y49{bottom:725.865000px;}
.y41{bottom:726.045000px;}
.y130{bottom:727.125000px;}
.yc2{bottom:730.725000px;}
.y15{bottom:732.885000px;}
.yf1{bottom:746.385000px;}
.y40{bottom:746.565000px;}
.y12f{bottom:747.825000px;}
.y14{bottom:753.585000px;}
.y3f{bottom:767.265000px;}
.y12e{bottom:768.525000px;}
.yc1{bottom:772.125000px;}
.y13{bottom:774.285000px;}
.yf0{bottom:787.785000px;}
.y3e{bottom:787.965000px;}
.y12d{bottom:789.225000px;}
.yc0{bottom:792.825000px;}
.y12{bottom:794.985000px;}
.yef{bottom:808.485000px;}
.y3d{bottom:808.665000px;}
.y12c{bottom:809.925000px;}
.ybf{bottom:813.525000px;}
.y11{bottom:815.685000px;}
.yee{bottom:829.185000px;}
.y3c{bottom:829.365000px;}
.y12b{bottom:830.625000px;}
.ybe{bottom:834.225000px;}
.y10{bottom:836.385000px;}
.yd6{bottom:845.715000px;}
.yed{bottom:845.745000px;}
.ye7{bottom:846.487090px;}
.y3b{bottom:850.065000px;}
.y8b{bottom:850.739992px;}
.ybd{bottom:850.785000px;}
.y12a{bottom:851.325000px;}
.yb4{bottom:851.524205px;}
.yf{bottom:857.085000px;}
.yb1{bottom:864.098820px;}
.y3a{bottom:870.810000px;}
.y129{bottom:872.070000px;}
.yaf{bottom:875.915239px;}
.ye{bottom:877.830000px;}
.yad{bottom:887.705515px;}
.y39{bottom:891.510000px;}
.y128{bottom:892.770000px;}
.yd{bottom:898.530000px;}
.yab{bottom:899.521934px;}
.ya9{bottom:911.312211px;}
.y38{bottom:912.210000px;}
.y127{bottom:913.470000px;}
.ya7{bottom:923.102487px;}
.y37{bottom:932.910000px;}
.y126{bottom:933.990000px;}
.ya4{bottom:934.918906px;}
.yc{bottom:939.930000px;}
.ya2{bottom:946.709182px;}
.y36{bottom:953.610000px;}
.y125{bottom:954.690000px;}
.y9f{bottom:960.068010px;}
.yb{bottom:967.650000px;}
.y124{bottom:971.250000px;}
.y9c{bottom:973.452980px;}
.y35{bottom:974.310000px;}
.ya{bottom:978.990000px;}
.y9a{bottom:986.806579px;}
.y34{bottom:995.010000px;}
.y9{bottom:998.070000px;}
.y98{bottom:1000.191550px;}
.y95{bottom:1013.555606px;}
.y33{bottom:1015.710000px;}
.y8{bottom:1024.530000px;}
.y93{bottom:1026.940576px;}
.y7{bottom:1036.410000px;}
.y90{bottom:1040.294175px;}
.yeb{bottom:1051.023081px;}
.y8d{bottom:1053.679145px;}
.y6{bottom:1057.110000px;}
.y84{bottom:1067.064116px;}
.y8a{bottom:1067.064117px;}
.y89{bottom:1067.064118px;}
.y86{bottom:1067.064120px;}
.yb6{bottom:1067.064123px;}
.y5{bottom:1077.810000px;}
.yba{bottom:1090.644669px;}
.ybc{bottom:1090.644671px;}
.y4{bottom:1098.510000px;}
.ye9{bottom:1098.629398px;}
.yb8{bottom:1102.461088px;}
.y3{bottom:1119.210000px;}
.y2{bottom:1139.940000px;}
.h15{height:11.006004px;}
.h16{height:11.006005px;}
.h11{height:11.006009px;}
.h12{height:11.032151px;}
.h13{height:11.790285px;}
.hf{height:12.574560px;}
.h10{height:12.600703px;}
.h1a{height:15.619688px;}
.h9{height:17.214227px;}
.hd{height:22.796279px;}
.hb{height:22.796285px;}
.hc{height:27.852404px;}
.h19{height:28.301106px;}
.h18{height:30.148819px;}
.h8{height:39.421160px;}
.h5{height:43.554375px;}
.h14{height:47.187249px;}
.ha{height:52.470552px;}
.h2{height:61.423863px;}
.h1b{height:63.231194px;}
.h6{height:69.086250px;}
.h1c{height:74.004654px;}
.h3{height:75.093750px;}
.h4{height:83.432812px;}
.h7{height:211.537971px;}
.he{height:263.516602px;}
.h17{height:268.538162px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:46.322004px;}
.w4{width:54.837916px;}
.wd{width:69.490524px;}
.w6{width:73.806915px;}
.w7{width:73.833042px;}
.wa{width:148.418522px;}
.wb{width:223.014452px;}
.w3{width:333.359802px;}
.w9{width:372.216764px;}
.w2{width:389.907841px;}
.w5{width:420.111574px;}
.we{width:608.251360px;}
.wc{width:679.306917px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:2.351371px;}
.x15{left:7.085464px;}
.xb{left:9.434174px;}
.x18{left:10.999190px;}
.xa{left:11.999357px;}
.x1e{left:13.350561px;}
.xe{left:14.564540px;}
.x1d{left:15.701931px;}
.x1b{left:17.269512px;}
.x22{left:18.837092px;}
.x2c{left:24.203396px;}
.x2f{left:25.763228px;}
.x25{left:37.695086px;}
.x11{left:56.537403px;}
.x8{left:60.851845px;}
.x9{left:68.547395px;}
.x21{left:70.671754px;}
.x1f{left:73.023125px;}
.x2a{left:74.170021px;}
.x20{left:75.374496px;}
.x29{left:80.435346px;}
.x26{left:84.811330px;}
.x2b{left:87.454592px;}
.x1{left:106.416000px;}
.x2e{left:124.947757px;}
.x4{left:127.656000px;}
.xd{left:134.563808px;}
.x2{left:138.456000px;}
.x1a{left:145.262460px;}
.x19{left:147.634731px;}
.x1c{left:149.986102px;}
.x3{left:160.410000px;}
.x24{left:165.698484px;}
.x2d{left:177.490355px;}
.x10{left:236.823790px;}
.x7{left:252.045059px;}
.x23{left:283.929584px;}
.xc{left:307.738035px;}
.x12{left:358.541191px;}
.x14{left:433.137121px;}
.x6{left:446.505000px;}
.x16{left:507.733052px;}
.x17{left:582.349884px;}
.xf{left:642.030000px;}
.x32{left:655.710000px;}
.x27{left:656.970000px;}
.x31{left:659.310000px;}
.x28{left:726.120000px;}
.x5{left:769.500000px;}
.x30{left:786.600000px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v2{vertical-align:-26.880000pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.lsb{letter-spacing:-1.088000pt;}
.ls10{letter-spacing:-0.512000pt;}
.ls8{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.279344pt;}
.ls7{letter-spacing:-0.201067pt;}
.ls4{letter-spacing:-0.198933pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.161067pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.416000pt;}
.lse{letter-spacing:0.598606pt;}
.lsd{letter-spacing:1.107606pt;}
.ls12{letter-spacing:7.146667pt;}
.ls9{letter-spacing:57.728000pt;}
.ls2{letter-spacing:834.314667pt;}
.ls0{letter-spacing:855.434667pt;}
.ws2c{word-spacing:-64.000000pt;}
.ws6{word-spacing:-18.048000pt;}
.wsc{word-spacing:-17.984000pt;}
.ws7{word-spacing:-17.792000pt;}
.ws9{word-spacing:-17.600000pt;}
.ws5{word-spacing:-17.408000pt;}
.wsa{word-spacing:-16.704000pt;}
.ws4{word-spacing:-16.368640pt;}
.ws1{word-spacing:-11.920640pt;}
.ws2{word-spacing:-11.759573pt;}
.ws0{word-spacing:-11.721707pt;}
.ws3{word-spacing:-10.118293pt;}
.ws14{word-spacing:-9.340075pt;}
.ws2b{word-spacing:-7.526602pt;}
.ws15{word-spacing:-6.953306pt;}
.wsb{word-spacing:-0.064000pt;}
.ws8{word-spacing:0.000000pt;}
.ws21{word-spacing:28.314752pt;}
.wsd{word-spacing:30.214917pt;}
.ws25{word-spacing:71.754574pt;}
.ws27{word-spacing:75.418794pt;}
.ws22{word-spacing:75.518705pt;}
.wse{word-spacing:82.022097pt;}
.ws28{word-spacing:83.391996pt;}
.ws24{word-spacing:97.519528pt;}
.ws13{word-spacing:100.353992pt;}
.ws23{word-spacing:100.874146pt;}
.ws2a{word-spacing:105.012827pt;}
.ws10{word-spacing:105.133856pt;}
.ws11{word-spacing:105.335440pt;}
.ws26{word-spacing:109.176970pt;}
.ws16{word-spacing:119.465692pt;}
.ws29{word-spacing:128.550226pt;}
.ws18{word-spacing:130.600314pt;}
.ws1d{word-spacing:139.070119pt;}
.ws1c{word-spacing:144.711698pt;}
.ws1e{word-spacing:154.509775pt;}
.ws12{word-spacing:155.090642pt;}
.ws1a{word-spacing:157.978156pt;}
.ws20{word-spacing:165.444924pt;}
.ws19{word-spacing:165.463514pt;}
.wsf{word-spacing:170.316046pt;}
.ws17{word-spacing:173.903482pt;}
.ws1f{word-spacing:182.225680pt;}
.ws1b{word-spacing:201.091516pt;}
._1c{margin-left:-3.491808pt;}
._3{margin-left:-2.421333pt;}
._1{margin-left:-1.024000pt;}
._2{width:1.269333pt;}
._10{width:2.560000pt;}
._0{width:3.648000pt;}
._14{width:4.544000pt;}
._c{width:5.568000pt;}
._11{width:6.464000pt;}
._e{width:7.616000pt;}
._d{width:8.640000pt;}
._f{width:10.357760pt;}
._9{width:11.658240pt;}
._a{width:12.741120pt;}
._12{width:14.144000pt;}
._13{width:15.051520pt;}
._b{width:16.768000pt;}
._5{width:19.402667pt;}
._4{width:20.672000pt;}
._1b{width:21.888000pt;}
._1a{width:22.784000pt;}
._15{width:23.680000pt;}
._16{width:25.344000pt;}
._25{width:26.752000pt;}
._40{width:27.957120pt;}
._7{width:28.933440pt;}
._6{width:30.144000pt;}
._19{width:31.114667pt;}
._18{width:32.128000pt;}
._3b{width:33.077333pt;}
._17{width:34.293333pt;}
._3f{width:36.800000pt;}
._41{width:39.296000pt;}
._42{width:40.949333pt;}
._3d{width:46.912000pt;}
._3c{width:47.808000pt;}
._8{width:52.793920pt;}
._2d{width:60.872552pt;}
._2e{width:61.977725pt;}
._3e{width:69.312000pt;}
._34{width:85.490249pt;}
._39{width:90.311092pt;}
._31{width:91.218460pt;}
._37{width:93.087702pt;}
._38{width:97.377034pt;}
._36{width:107.146007pt;}
._3a{width:108.445805pt;}
._21{width:112.789802pt;}
._32{width:116.144792pt;}
._2f{width:120.865316pt;}
._33{width:124.144086pt;}
._35{width:127.877496pt;}
._22{width:129.192025pt;}
._30{width:130.170218pt;}
._1d{width:131.166921pt;}
._23{width:148.640509pt;}
._1e{width:163.698563pt;}
._24{width:164.889236pt;}
._20{width:167.435197pt;}
._28{width:176.328070pt;}
._1f{width:179.696723pt;}
._2c{width:181.323589pt;}
._27{width:184.093534pt;}
._26{width:189.707785pt;}
._2a{width:198.574355pt;}
._2b{width:209.165535pt;}
._29{width:211.318409pt;}
.fs6{font-size:30.766841pt;}
.fs7{font-size:33.303550pt;}
.fs5{font-size:33.597393pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:2.091403pt;}
.ya5{bottom:2.091408pt;}
.yb2{bottom:2.114645pt;}
.yb5{bottom:2.788504pt;}
.yb9{bottom:2.788539pt;}
.y8e{bottom:2.788540pt;}
.y9d{bottom:2.788541pt;}
.y96{bottom:2.807130pt;}
.ya0{bottom:2.807132pt;}
.ybb{bottom:2.816423pt;}
.y91{bottom:2.816426pt;}
.yb3{bottom:3.485583pt;}
.ye8{bottom:4.151384pt;}
.yea{bottom:4.179088pt;}
.ye6{bottom:4.837687pt;}
.y71{bottom:5.354269pt;}
.y6d{bottom:5.354305pt;}
.y6f{bottom:5.359344pt;}
.y85{bottom:7.696364pt;}
.y87{bottom:12.576296pt;}
.yb0{bottom:13.989160pt;}
.yb7{bottom:18.869091pt;}
.ye5{bottom:19.413848pt;}
.y73{bottom:20.655799pt;}
.y6c{bottom:21.417107pt;}
.yae{bottom:24.469406pt;}
.yec{bottom:25.664952pt;}
.ye4{bottom:33.298014pt;}
.yac{bottom:34.949651pt;}
.y6b{bottom:36.693263pt;}
.yaa{bottom:45.453135pt;}
.ye3{bottom:47.182181pt;}
.y1{bottom:49.760000pt;}
.y6a{bottom:52.756065pt;}
.ya8{bottom:55.933381pt;}
.ye2{bottom:61.043285pt;}
.ya6{bottom:66.413626pt;}
.ye1{bottom:74.927452pt;}
.ya3{bottom:76.917110pt;}
.y69{bottom:84.069648pt;}
.ya1{bottom:88.094490pt;}
.ye0{bottom:88.811618pt;}
.y32{bottom:99.392000pt;}
.y9e{bottom:99.987593pt;}
.y68{bottom:100.132450pt;}
.y48{bottom:100.352000pt;}
.ydf{bottom:102.696708pt;}
.y83{bottom:106.912000pt;}
.y10f{bottom:111.392000pt;}
.y62{bottom:111.712000pt;}
.y9b{bottom:111.866754pt;}
.y14d{bottom:112.672000pt;}
.y67{bottom:115.412666pt;}
.yde{bottom:116.553199pt;}
.yd5{bottom:117.632000pt;}
.y31{bottom:117.792000pt;}
.y47{bottom:118.752000pt;}
.y99{bottom:123.764506pt;}
.y10e{bottom:129.792000pt;}
.y14f{bottom:130.112000pt;}
.ydd{bottom:130.437365pt;}
.y66{bottom:130.709122pt;}
.y14c{bottom:131.072000pt;}
.y97{bottom:135.634372pt;}
.yd4{bottom:136.026667pt;}
.y30{bottom:136.186667pt;}
.y46{bottom:137.146667pt;}
.y82{bottom:143.706667pt;}
.ydc{bottom:144.321532pt;}
.y65{bottom:145.985278pt;}
.y94{bottom:147.532123pt;}
.y10d{bottom:148.186667pt;}
.y61{bottom:148.506667pt;}
.y14b{bottom:149.466667pt;}
.y45{bottom:151.866667pt;}
.yd3{bottom:154.426667pt;}
.y2f{bottom:154.586667pt;}
.ydb{bottom:158.205699pt;}
.y92{bottom:159.411284pt;}
.y64{bottom:162.053155pt;}
.y81{bottom:162.106667pt;}
.y10c{bottom:166.586667pt;}
.y60{bottom:166.906667pt;}
.y14a{bottom:167.866667pt;}
.y8f{bottom:171.309035pt;}
.yda{bottom:172.071415pt;}
.yd2{bottom:172.826667pt;}
.y2e{bottom:172.986667pt;}
.y123{bottom:179.546667pt;}
.y80{bottom:180.506667pt;}
.y8c{bottom:183.178901pt;}
.y10b{bottom:184.986667pt;}
.y5f{bottom:185.306667pt;}
.y149{bottom:186.266667pt;}
.yd9{bottom:186.647484pt;}
.yd1{bottom:191.226667pt;}
.y2d{bottom:191.386667pt;}
.y122{bottom:197.946667pt;}
.y7f{bottom:198.906667pt;}
.yd8{bottom:200.531651pt;}
.y10a{bottom:203.386667pt;}
.y5e{bottom:203.706667pt;}
.y148{bottom:204.666667pt;}
.yd0{bottom:209.626667pt;}
.y2c{bottom:209.786667pt;}
.yd7{bottom:214.415818pt;}
.y121{bottom:216.346667pt;}
.y7e{bottom:217.306667pt;}
.y109{bottom:221.786667pt;}
.y5d{bottom:222.106667pt;}
.y147{bottom:223.066667pt;}
.y2b{bottom:228.186667pt;}
.y120{bottom:234.746667pt;}
.y7d{bottom:235.706667pt;}
.y108{bottom:240.186667pt;}
.y5c{bottom:240.506667pt;}
.y146{bottom:241.466667pt;}
.ycf{bottom:246.426667pt;}
.y2a{bottom:246.586667pt;}
.y11f{bottom:253.146667pt;}
.y7c{bottom:254.106667pt;}
.y107{bottom:258.586667pt;}
.y5b{bottom:258.906667pt;}
.y145{bottom:259.866667pt;}
.yce{bottom:264.826667pt;}
.y29{bottom:264.986667pt;}
.y11e{bottom:271.546667pt;}
.y7b{bottom:272.506667pt;}
.y106{bottom:276.986667pt;}
.y5a{bottom:277.306667pt;}
.y144{bottom:278.266667pt;}
.ycd{bottom:283.226667pt;}
.y28{bottom:283.386667pt;}
.y11d{bottom:289.946667pt;}
.y105{bottom:295.386667pt;}
.y59{bottom:295.706667pt;}
.y143{bottom:296.666667pt;}
.ycc{bottom:301.666667pt;}
.y27{bottom:301.826667pt;}
.y11c{bottom:308.386667pt;}
.y7a{bottom:309.346667pt;}
.y104{bottom:313.826667pt;}
.y58{bottom:314.146667pt;}
.y142{bottom:315.106667pt;}
.ycb{bottom:320.066667pt;}
.y26{bottom:320.226667pt;}
.y11b{bottom:326.786667pt;}
.y79{bottom:327.746667pt;}
.y103{bottom:332.226667pt;}
.y57{bottom:332.546667pt;}
.y141{bottom:333.506667pt;}
.yca{bottom:334.786667pt;}
.y25{bottom:338.626667pt;}
.y11a{bottom:345.186667pt;}
.y78{bottom:346.146667pt;}
.y102{bottom:350.626667pt;}
.y56{bottom:350.946667pt;}
.y140{bottom:351.906667pt;}
.y24{bottom:357.026667pt;}
.y119{bottom:363.586667pt;}
.y77{bottom:364.546667pt;}
.y101{bottom:369.026667pt;}
.y55{bottom:369.346667pt;}
.y13f{bottom:370.306667pt;}
.y23{bottom:375.426667pt;}
.y118{bottom:381.986667pt;}
.y76{bottom:382.946667pt;}
.y100{bottom:387.426667pt;}
.y54{bottom:387.586667pt;}
.y13e{bottom:388.706667pt;}
.y75{bottom:397.666667pt;}
.y63{bottom:397.686052pt;}
.y117{bottom:400.386667pt;}
.yff{bottom:405.826667pt;}
.y53{bottom:405.986667pt;}
.y13d{bottom:407.106667pt;}
.y22{bottom:412.226667pt;}
.y116{bottom:418.786667pt;}
.yfe{bottom:424.226667pt;}
.y52{bottom:424.386667pt;}
.y13c{bottom:425.506667pt;}
.y74{bottom:429.786318pt;}
.y21{bottom:430.626667pt;}
.y115{bottom:437.186667pt;}
.yfd{bottom:442.626667pt;}
.y51{bottom:442.786667pt;}
.y13b{bottom:443.906667pt;}
.y20{bottom:449.026667pt;}
.y114{bottom:455.586667pt;}
.yfc{bottom:461.026667pt;}
.y70{bottom:461.125273pt;}
.y50{bottom:461.186667pt;}
.y13a{bottom:462.306667pt;}
.y1f{bottom:467.426667pt;}
.y113{bottom:473.986667pt;}
.yfb{bottom:479.426667pt;}
.y4f{bottom:479.586667pt;}
.y139{bottom:480.706667pt;}
.y1e{bottom:485.826667pt;}
.y112{bottom:492.386667pt;}
.yfa{bottom:497.826667pt;}
.y14e{bottom:497.986667pt;}
.y4e{bottom:498.146667pt;}
.y138{bottom:499.106667pt;}
.y1d{bottom:504.226667pt;}
.y111{bottom:510.786667pt;}
.yf9{bottom:516.226667pt;}
.y4d{bottom:516.386667pt;}
.y137{bottom:517.506667pt;}
.yc9{bottom:520.706667pt;}
.y1c{bottom:522.626667pt;}
.y110{bottom:525.506667pt;}
.yf8{bottom:534.626667pt;}
.y4c{bottom:534.786667pt;}
.y136{bottom:535.906667pt;}
.y72{bottom:539.083408pt;}
.yc8{bottom:539.133333pt;}
.y1b{bottom:541.053333pt;}
.yf7{bottom:553.053333pt;}
.y4b{bottom:553.213333pt;}
.y135{bottom:554.333333pt;}
.yc7{bottom:557.533333pt;}
.y1a{bottom:559.453333pt;}
.y6e{bottom:570.417288pt;}
.yf6{bottom:571.453333pt;}
.y4a{bottom:571.613333pt;}
.y134{bottom:572.733333pt;}
.yc6{bottom:575.933333pt;}
.y19{bottom:577.853333pt;}
.yf5{bottom:589.853333pt;}
.y44{bottom:590.013333pt;}
.y133{bottom:591.133333pt;}
.yc5{bottom:594.333333pt;}
.y18{bottom:596.253333pt;}
.yf4{bottom:608.253333pt;}
.y43{bottom:608.413333pt;}
.y132{bottom:609.533333pt;}
.yc4{bottom:612.733333pt;}
.y17{bottom:614.653333pt;}
.yf3{bottom:626.653333pt;}
.y42{bottom:626.813333pt;}
.y131{bottom:627.933333pt;}
.yc3{bottom:631.133333pt;}
.y16{bottom:633.053333pt;}
.yf2{bottom:645.053333pt;}
.y49{bottom:645.213333pt;}
.y41{bottom:645.373333pt;}
.y130{bottom:646.333333pt;}
.yc2{bottom:649.533333pt;}
.y15{bottom:651.453333pt;}
.yf1{bottom:663.453333pt;}
.y40{bottom:663.613333pt;}
.y12f{bottom:664.733333pt;}
.y14{bottom:669.853333pt;}
.y3f{bottom:682.013333pt;}
.y12e{bottom:683.133333pt;}
.yc1{bottom:686.333333pt;}
.y13{bottom:688.253333pt;}
.yf0{bottom:700.253333pt;}
.y3e{bottom:700.413333pt;}
.y12d{bottom:701.533333pt;}
.yc0{bottom:704.733333pt;}
.y12{bottom:706.653333pt;}
.yef{bottom:718.653333pt;}
.y3d{bottom:718.813333pt;}
.y12c{bottom:719.933333pt;}
.ybf{bottom:723.133333pt;}
.y11{bottom:725.053333pt;}
.yee{bottom:737.053333pt;}
.y3c{bottom:737.213333pt;}
.y12b{bottom:738.333333pt;}
.ybe{bottom:741.533333pt;}
.y10{bottom:743.453333pt;}
.yd6{bottom:751.746667pt;}
.yed{bottom:751.773333pt;}
.ye7{bottom:752.432969pt;}
.y3b{bottom:755.613333pt;}
.y8b{bottom:756.213326pt;}
.ybd{bottom:756.253333pt;}
.y12a{bottom:756.733333pt;}
.yb4{bottom:756.910404pt;}
.yf{bottom:761.853333pt;}
.yb1{bottom:768.087840pt;}
.y3a{bottom:774.053333pt;}
.y129{bottom:775.173333pt;}
.yaf{bottom:778.591323pt;}
.ye{bottom:780.293333pt;}
.yad{bottom:789.071569pt;}
.y39{bottom:792.453333pt;}
.y128{bottom:793.573333pt;}
.yd{bottom:798.693333pt;}
.yab{bottom:799.575052pt;}
.ya9{bottom:810.055298pt;}
.y38{bottom:810.853333pt;}
.y127{bottom:811.973333pt;}
.ya7{bottom:820.535544pt;}
.y37{bottom:829.253333pt;}
.y126{bottom:830.213333pt;}
.ya4{bottom:831.039028pt;}
.yc{bottom:835.493333pt;}
.ya2{bottom:841.519273pt;}
.y36{bottom:847.653333pt;}
.y125{bottom:848.613333pt;}
.y9f{bottom:853.393787pt;}
.yb{bottom:860.133333pt;}
.y124{bottom:863.333333pt;}
.y9c{bottom:865.291538pt;}
.y35{bottom:866.053333pt;}
.ya{bottom:870.213333pt;}
.y9a{bottom:877.161404pt;}
.y34{bottom:884.453333pt;}
.y9{bottom:887.173333pt;}
.y98{bottom:889.059155pt;}
.y95{bottom:900.938316pt;}
.y33{bottom:902.853333pt;}
.y8{bottom:910.693333pt;}
.y93{bottom:912.836068pt;}
.y7{bottom:921.253333pt;}
.y90{bottom:924.705934pt;}
.yeb{bottom:934.242739pt;}
.y8d{bottom:936.603685pt;}
.y6{bottom:939.653333pt;}
.y84{bottom:948.501436pt;}
.y8a{bottom:948.501437pt;}
.y89{bottom:948.501439pt;}
.y86{bottom:948.501440pt;}
.yb6{bottom:948.501442pt;}
.y5{bottom:958.053333pt;}
.yba{bottom:969.461928pt;}
.ybc{bottom:969.461930pt;}
.y4{bottom:976.453333pt;}
.ye9{bottom:976.559465pt;}
.yb8{bottom:979.965411pt;}
.y3{bottom:994.853333pt;}
.y2{bottom:1013.280000pt;}
.h15{height:9.783114pt;}
.h16{height:9.783116pt;}
.h11{height:9.783119pt;}
.h12{height:9.806357pt;}
.h13{height:10.480253pt;}
.hf{height:11.177387pt;}
.h10{height:11.200625pt;}
.h1a{height:13.884167pt;}
.h9{height:15.301535pt;}
.hd{height:20.263359pt;}
.hb{height:20.263365pt;}
.hc{height:24.757693pt;}
.h19{height:25.156539pt;}
.h18{height:26.798950pt;}
.h8{height:35.041031pt;}
.h5{height:38.715000pt;}
.h14{height:41.944222pt;}
.ha{height:46.640490pt;}
.h2{height:54.598989pt;}
.h1b{height:56.205506pt;}
.h6{height:61.410000pt;}
.h1c{height:65.781915pt;}
.h3{height:66.750000pt;}
.h4{height:74.162500pt;}
.h7{height:188.033752pt;}
.he{height:234.236980pt;}
.h17{height:238.700588pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:41.175114pt;}
.w4{width:48.744814pt;}
.wd{width:61.769354pt;}
.w6{width:65.606147pt;}
.w7{width:65.629370pt;}
.wa{width:131.927575pt;}
.wb{width:198.235069pt;}
.w3{width:296.319824pt;}
.w9{width:330.859346pt;}
.w2{width:346.584748pt;}
.w5{width:373.432510pt;}
.we{width:540.667876pt;}
.wc{width:603.828370pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:2.090107pt;}
.x15{left:6.298190pt;}
.xb{left:8.385933pt;}
.x18{left:9.777058pt;}
.xa{left:10.666095pt;}
.x1e{left:11.867165pt;}
.xe{left:12.946258pt;}
.x1d{left:13.957272pt;}
.x1b{left:15.350677pt;}
.x22{left:16.744082pt;}
.x2c{left:21.514130pt;}
.x2f{left:22.900647pt;}
.x25{left:33.506743pt;}
.x11{left:50.255470pt;}
.x8{left:54.090529pt;}
.x9{left:60.931017pt;}
.x21{left:62.819337pt;}
.x1f{left:64.909444pt;}
.x2a{left:65.928907pt;}
.x20{left:66.999552pt;}
.x29{left:71.498086pt;}
.x26{left:75.387849pt;}
.x2b{left:77.737415pt;}
.x1{left:94.592000pt;}
.x2e{left:111.064673pt;}
.x4{left:113.472000pt;}
.xd{left:119.612274pt;}
.x2{left:123.072000pt;}
.x1a{left:129.122186pt;}
.x19{left:131.230872pt;}
.x1c{left:133.320980pt;}
.x3{left:142.586667pt;}
.x24{left:147.287541pt;}
.x2d{left:157.769204pt;}
.x10{left:210.510036pt;}
.x7{left:224.040052pt;}
.x23{left:252.381853pt;}
.xc{left:273.544920pt;}
.x12{left:318.703281pt;}
.x14{left:385.010775pt;}
.x6{left:396.893333pt;}
.x16{left:451.318269pt;}
.x17{left:517.644341pt;}
.xf{left:570.693333pt;}
.x32{left:582.853333pt;}
.x27{left:583.973333pt;}
.x31{left:586.053333pt;}
.x28{left:645.440000pt;}
.x5{left:684.000000pt;}
.x30{left:699.200000pt;}
}




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