
    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_997ca64947e3568ff323215c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_c76240b6b7a4094b6f31e54a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_a6d0ab178ea636cac6495803.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_11e40bbf3b5362e9377087ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.754395;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_edda728a0de7133091ad93da.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.754395;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_60e7b2f5c0cc730d5b1a5b2f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_997ca64947e3568ff323215c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_6c41599018f22831bb17fc11.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-30.959947px;}
.v2{vertical-align:-29.519920px;}
.v3{vertical-align:-2.879873px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880194px;}
.v6{vertical-align:36.719878px;}
.v1{vertical-align:44.639900px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.013149px;}
.ls1{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.221027px;}
.lse{letter-spacing:0.221033px;}
.ls15{letter-spacing:0.287909px;}
.ls10{letter-spacing:0.288059px;}
.ls16{letter-spacing:0.575969px;}
.ls13{letter-spacing:0.657310px;}
.ls12{letter-spacing:0.657490px;}
.ls7{letter-spacing:53.645470px;}
.lsc{letter-spacing:69.485514px;}
.ls5{letter-spacing:98.465364px;}
.ls9{letter-spacing:104.945450px;}
.ls8{letter-spacing:109.985413px;}
.ls4{letter-spacing:124.385341px;}
.lsf{letter-spacing:127.613921px;}
.lsd{letter-spacing:148.145234px;}
.lsa{letter-spacing:167.585305px;}
.ls6{letter-spacing:169.025247px;}
.ls11{letter-spacing:200.225805px;}
.lsb{letter-spacing:246.065031px;}
.ls2{letter-spacing:531.916316px;}
.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;}
}
.ws6{word-spacing:-71.999820px;}
.ws4{word-spacing:-19.871950px;}
.ws5{word-spacing:-16.672998px;}
.ws3{word-spacing:-13.499102px;}
.ws2{word-spacing:-13.458926px;}
.ws1{word-spacing:-13.314207px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-3.828296px;}
._9{margin-left:-2.015995px;}
._1{margin-left:-1.007997px;}
._0{width:1.439996px;}
._6{width:2.735993px;}
._7{width:3.959990px;}
._c{width:5.471986px;}
._d{width:6.551984px;}
._1c{width:7.919980px;}
._20{width:9.827502px;}
._18{width:11.303972px;}
._17{width:12.527969px;}
._26{width:13.679966px;}
._3{width:14.903963px;}
._1a{width:16.199960px;}
._14{width:17.428503px;}
._15{width:18.777883px;}
._f{width:21.743946px;}
._e{width:23.543941px;}
._16{width:24.623938px;}
._2f{width:25.749309px;}
._12{width:26.783933px;}
._8{width:28.007930px;}
._a{width:29.231927px;}
._11{width:30.815923px;}
._19{width:31.895920px;}
._4{width:33.161050px;}
._5{width:34.549659px;}
._32{width:35.855898px;}
._2d{width:37.007919px;}
._2a{width:38.375904px;}
._b{width:39.671901px;}
._24{width:40.823898px;}
._4a{width:41.975895px;}
._37{width:42.983893px;}
._1b{width:44.207889px;}
._4d{width:45.575886px;}
._13{width:46.583884px;}
._23{width:47.879880px;}
._33{width:49.607876px;}
._1d{width:50.831873px;}
._2e{width:52.271869px;}
._57{width:53.783866px;}
._31{width:55.439861px;}
._30{width:56.879858px;}
._4e{width:58.124831px;}
._10{width:59.327852px;}
._52{width:60.407849px;}
._35{width:61.439118px;}
._34{width:63.141708px;}
._4b{width:64.871838px;}
._36{width:67.175832px;}
._22{width:68.399829px;}
._55{width:69.479826px;}
._56{width:72.431819px;}
._28{width:74.207135px;}
._29{width:75.518987px;}
._21{width:76.535809px;}
._27{width:78.191805px;}
._50{width:79.415801px;}
._4f{width:80.423799px;}
._53{width:81.431796px;}
._54{width:82.439794px;}
._2b{width:83.951790px;}
._1f{width:85.751786px;}
._1e{width:87.047782px;}
._2c{width:88.775778px;}
._51{width:90.287774px;}
._25{width:91.367772px;}
._4c{width:93.167767px;}
._41{width:209.526712px;}
._42{width:211.872934px;}
._43{width:226.266628px;}
._39{width:242.633759px;}
._3a{width:244.979712px;}
._44{width:247.437929px;}
._3b{width:259.373586px;}
._3d{width:275.740531px;}
._3e{width:278.086669px;}
._49{width:295.053236px;}
._48{width:308.622872px;}
._3f{width:309.760530px;}
._45{width:312.296855px;}
._46{width:326.307468px;}
._38{width:443.695033px;}
._3c{width:460.255051px;}
._40{width:480.296159px;}
._47{width:541.642892px;}
.fc7{color:rgb(0,128,128);}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(13,119,110);}
.fc4{color:rgb(0,103,120);}
.fc3{color:rgb(33,37,41);}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.239879px;}
.fs5{font-size:48.383879px;}
.fs0{font-size:59.759851px;}
.fs3{font-size:66.239834px;}
.fs1{font-size:71.999820px;}
.fs2{font-size:72.143820px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.498183px;}
.y85{bottom:8.999978px;}
.y3{bottom:23.759890px;}
.y31{bottom:29.879900px;}
.y30{bottom:51.839867px;}
.y4{bottom:54.359849px;}
.y2f{bottom:73.289794px;}
.yb5{bottom:79.409806px;}
.y148{bottom:80.849742px;}
.ye8{bottom:81.209728px;}
.y179{bottom:81.929788px;}
.y11a{bottom:85.169739px;}
.y2e{bottom:95.249762px;}
.yb4{bottom:101.549764px;}
.y82{bottom:101.909750px;}
.y147{bottom:102.989702px;}
.ye7{bottom:103.349686px;}
.y178{bottom:104.069747px;}
.y119{bottom:107.129707px;}
.y81{bottom:116.489668px;}
.y2d{bottom:117.389722px;}
.yb3{bottom:123.509640px;}
.y146{bottom:124.949670px;}
.ye6{bottom:125.309654px;}
.y177{bottom:126.209615px;}
.y118{bottom:129.269666px;}
.y80{bottom:131.249672px;}
.y84{bottom:131.429664px;}
.y2c{bottom:139.529590px;}
.yb2{bottom:145.649600px;}
.y7f{bottom:146.009584px;}
.y145{bottom:147.089629px;}
.ye5{bottom:147.449613px;}
.y176{bottom:148.169582px;}
.y117{bottom:151.229632px;}
.y7e{bottom:160.769588px;}
.y2b{bottom:161.489556px;}
.y83{bottom:164.549607px;}
.yb1{bottom:167.609566px;}
.y144{bottom:169.229587px;}
.ye4{bottom:169.409581px;}
.y175{bottom:170.309541px;}
.y116{bottom:173.369501px;}
.y7c{bottom:181.109532px;}
.y2a{bottom:183.629515px;}
.yb0{bottom:189.749526px;}
.y143{bottom:191.189464px;}
.ye3{bottom:191.549539px;}
.y174{bottom:192.269509px;}
.y115{bottom:195.509460px;}
.y7b{bottom:195.869444px;}
.y29{bottom:205.769475px;}
.y7a{bottom:210.629448px;}
.yaf{bottom:211.889485px;}
.y142{bottom:213.329423px;}
.ye2{bottom:213.689407px;}
.y173{bottom:214.409468px;}
.y114{bottom:217.469428px;}
.y79{bottom:225.389452px;}
.y7d{bottom:225.929428px;}
.y28{bottom:227.729441px;}
.yae{bottom:233.849360px;}
.y141{bottom:235.289389px;}
.ye1{bottom:235.649375px;}
.y172{bottom:236.549427px;}
.y113{bottom:239.609386px;}
.y78{bottom:242.669345px;}
.y27{bottom:249.869309px;}
.y73{bottom:250.049393px;}
.yad{bottom:255.989320px;}
.y77{bottom:257.429349px;}
.ye0{bottom:257.789333px;}
.y171{bottom:258.509303px;}
.y112{bottom:261.569354px;}
.y72{bottom:264.629313px;}
.y26{bottom:271.829277px;}
.y76{bottom:272.009269px;}
.yac{bottom:277.949287px;}
.y71{bottom:279.389317px;}
.y140{bottom:279.569309px;}
.ydf{bottom:279.749301px;}
.y170{bottom:280.649262px;}
.y111{bottom:283.709222px;}
.y75{bottom:286.769273px;}
.y25{bottom:293.969237px;}
.y70{bottom:294.329221px;}
.yab{bottom:300.089247px;}
.y13f{bottom:301.529185px;}
.yde{bottom:301.889260px;}
.y74{bottom:302.249244px;}
.y16f{bottom:302.609228px;}
.y110{bottom:305.849180px;}
.y24{bottom:316.109195px;}
.y6c{bottom:318.629178px;}
.yaa{bottom:322.229205px;}
.y13e{bottom:323.669143px;}
.ydd{bottom:324.029128px;}
.y16e{bottom:324.749188px;}
.y6f{bottom:326.009134px;}
.y10f{bottom:327.809147px;}
.y6b{bottom:333.389182px;}
.y23{bottom:338.069162px;}
.y6e{bottom:340.814089px;}
.ya9{bottom:344.234124px;}
.y13d{bottom:345.674154px;}
.ydc{bottom:346.034139px;}
.y16d{bottom:346.934100px;}
.y6a{bottom:348.194137px;}
.y10e{bottom:349.994059px;}
.y22{bottom:360.254074px;}
.y69{bottom:362.954049px;}
.y6d{bottom:363.494025px;}
.ya8{bottom:366.374084px;}
.y13c{bottom:367.814022px;}
.ydb{bottom:368.174098px;}
.y16c{bottom:368.894067px;}
.y10d{bottom:371.954027px;}
.y21{bottom:382.214041px;}
.y67{bottom:387.433998px;}
.ya7{bottom:388.333960px;}
.y13b{bottom:389.953982px;}
.yda{bottom:390.133974px;}
.y16b{bottom:391.034027px;}
.y10c{bottom:394.093986px;}
.y66{bottom:402.194002px;}
.y20{bottom:404.354000px;}
.ya6{bottom:410.473918px;}
.y13a{bottom:411.913948px;}
.yd9{bottom:412.273933px;}
.y16a{bottom:412.993902px;}
.y10b{bottom:416.233944px;}
.y65{bottom:416.953914px;}
.y68{bottom:424.873938px;}
.y1f{bottom:426.493868px;}
.ya5{bottom:432.613878px;}
.y139{bottom:434.053907px;}
.yd8{bottom:434.413891px;}
.y169{bottom:435.133861px;}
.y10a{bottom:438.193912px;}
.y63{bottom:441.433863px;}
.y1e{bottom:448.453835px;}
.ya4{bottom:454.573846px;}
.y138{bottom:456.013875px;}
.y62{bottom:456.193867px;}
.yd7{bottom:456.373859px;}
.y168{bottom:457.273821px;}
.y109{bottom:460.333780px;}
.y1d{bottom:470.593795px;}
.y61{bottom:470.953779px;}
.ya3{bottom:476.713805px;}
.y137{bottom:478.153743px;}
.yd6{bottom:478.513819px;}
.y167{bottom:479.233787px;}
.y108{bottom:482.293746px;}
.y60{bottom:485.713783px;}
.y64{bottom:486.253759px;}
.y1c{bottom:492.553761px;}
.ya2{bottom:498.853718px;}
.y136{bottom:500.293701px;}
.yd5{bottom:500.473740px;}
.y166{bottom:501.373702px;}
.y5e{bottom:510.193686px;}
.y1b{bottom:514.693674px;}
.ya1{bottom:520.813686px;}
.y135{bottom:522.253669px;}
.yd4{bottom:522.613653px;}
.y165{bottom:523.333668px;}
.y5d{bottom:524.773652px;}
.y107{bottom:535.753635px;}
.y1a{bottom:536.833634px;}
.y5c{bottom:539.533609px;}
.ya0{bottom:542.953599px;}
.y134{bottom:544.393629px;}
.yd3{bottom:544.753613px;}
.y164{bottom:545.473627px;}
.y5b{bottom:554.473605px;}
.y19{bottom:558.793555px;}
.y5f{bottom:562.213591px;}
.y9f{bottom:564.913565px;}
.y106{bottom:565.273551px;}
.y133{bottom:566.533542px;}
.yd2{bottom:566.713580px;}
.y183{bottom:567.433548px;}
.y163{bottom:567.613540px;}
.y59{bottom:578.773517px;}
.y18{bottom:580.933515px;}
.y105{bottom:583.633535px;}
.y9e{bottom:587.053525px;}
.y132{bottom:588.493509px;}
.yd1{bottom:588.853493px;}
.y162{bottom:589.573508px;}
.y58{bottom:593.533474px;}
.y17{bottom:602.893482px;}
.y104{bottom:603.793443px;}
.y57{bottom:608.323461px;}
.yb6{bottom:609.223468px;}
.y9d{bottom:609.943436px;}
.y131{bottom:610.663451px;}
.yd0{bottom:611.023436px;}
.y161{bottom:611.743451px;}
.y56{bottom:623.083418px;}
.y5a{bottom:623.623396px;}
.y103{bottom:623.803433px;}
.y16{bottom:625.063425px;}
.y130{bottom:632.623373px;}
.ycf{bottom:632.983403px;}
.y160{bottom:633.703372px;}
.y54{bottom:640.363359px;}
.y102{bottom:642.163372px;}
.y15{bottom:647.203338px;}
.y9c{bottom:652.963365px;}
.y12f{bottom:654.763332px;}
.y53{bottom:654.943324px;}
.yce{bottom:655.123317px;}
.y15f{bottom:655.843332px;}
.y101{bottom:661.963342px;}
.y52{bottom:669.703282px;}
.y14{bottom:669.883319px;}
.y9b{bottom:675.103278px;}
.y12e{bottom:676.903291px;}
.ycd{bottom:677.083283px;}
.y182{bottom:677.803298px;}
.y15e{bottom:677.983290px;}
.y100{bottom:680.323281px;}
.y51{bottom:684.463286px;}
.y55{bottom:685.183254px;}
.y13{bottom:691.303264px;}
.y9a{bottom:697.063245px;}
.y12d{bottom:698.863212px;}
.ycc{bottom:699.223243px;}
.y15d{bottom:699.943211px;}
.yff{bottom:700.303242px;}
.y4d{bottom:701.383241px;}
.y12{bottom:713.443177px;}
.y4c{bottom:715.963207px;}
.yfe{bottom:718.663181px;}
.y99{bottom:719.203158px;}
.y12c{bottom:721.003172px;}
.ycb{bottom:721.363156px;}
.y15c{bottom:722.083171px;}
.y50{bottom:723.343163px;}
.y4b{bottom:730.723164px;}
.y11{bottom:736.123115px;}
.y4f{bottom:738.103120px;}
.yfc{bottom:739.003127px;}
.y98{bottom:741.343118px;}
.y12b{bottom:742.963140px;}
.yca{bottom:743.323124px;}
.y181{bottom:744.043092px;}
.y15b{bottom:744.223130px;}
.y17a{bottom:744.943099px;}
.y4a{bottom:745.483121px;}
.yfb{bottom:748.183097px;}
.y4e{bottom:752.863077px;}
.yfd{bottom:757.363066px;}
.y10{bottom:757.543058px;}
.y49{bottom:760.243080px;}
.y97{bottom:763.303084px;}
.y12a{bottom:765.103053px;}
.yc9{bottom:765.463083px;}
.y15a{bottom:766.183052px;}
.y48{bottom:775.003037px;}
.yf{bottom:779.503026px;}
.yfa{bottom:784.362999px;}
.y96{bottom:785.442997px;}
.y129{bottom:787.243012px;}
.yc8{bottom:787.423004px;}
.y180{bottom:788.143019px;}
.y159{bottom:788.323011px;}
.y47{bottom:798.402987px;}
.ye{bottom:802.362954px;}
.y42{bottom:805.782944px;}
.yf9{bottom:806.322966px;}
.y95{bottom:807.402965px;}
.y128{bottom:809.202933px;}
.yc7{bottom:809.562964px;}
.y158{bottom:810.282932px;}
.y46{bottom:813.162945px;}
.y41{bottom:820.542901px;}
.yd{bottom:823.782899px;}
.y45{bottom:827.922903px;}
.yf8{bottom:828.462926px;}
.y94{bottom:829.542878px;}
.y127{bottom:831.342893px;}
.yc6{bottom:831.702877px;}
.y157{bottom:832.422892px;}
.y40{bottom:835.482896px;}
.y44{bottom:842.682860px;}
.yc{bottom:846.462881px;}
.y3f{bottom:850.062863px;}
.y93{bottom:851.682838px;}
.y126{bottom:853.302859px;}
.yc5{bottom:853.662843px;}
.y17f{bottom:854.382858px;}
.y156{bottom:854.562852px;}
.yf6{bottom:863.742821px;}
.y43{bottom:864.822820px;}
.yb{bottom:868.602794px;}
.y92{bottom:873.687804px;}
.y125{bottom:875.487771px;}
.yc4{bottom:875.847801px;}
.y155{bottom:876.567770px;}
.y3e{bottom:885.027771px;}
.yf5{bottom:885.927755px;}
.ya{bottom:889.887744px;}
.y91{bottom:895.827739px;}
.y124{bottom:897.627730px;}
.yc3{bottom:897.807722px;}
.y17e{bottom:898.527737px;}
.y154{bottom:898.707729px;}
.y3a{bottom:904.827717px;}
.yf4{bottom:907.887699px;}
.y9{bottom:912.027703px;}
.y3d{bottom:912.207695px;}
.y90{bottom:917.967677px;}
.y39{bottom:919.587674px;}
.yc2{bottom:919.947682px;}
.y153{bottom:920.667674px;}
.y3c{bottom:926.967654px;}
.yf3{bottom:930.027658px;}
.y8{bottom:934.167641px;}
.y38{bottom:934.347633px;}
.y8f{bottom:939.927620px;}
.y3b{bottom:941.727611px;}
.yc1{bottom:942.087618px;}
.y152{bottom:942.807610px;}
.y17d{bottom:943.527625px;}
.y37{bottom:949.107612px;}
.yf2{bottom:952.167596px;}
.y7{bottom:956.127584px;}
.y123{bottom:963.687555px;}
.y36{bottom:963.867571px;}
.yc0{bottom:964.047563px;}
.y17c{bottom:964.767555px;}
.y151{bottom:964.947570px;}
.y8e{bottom:973.947547px;}
.yf1{bottom:974.127539px;}
.y6{bottom:978.267521px;}
.y35{bottom:980.067535px;}
.y122{bottom:985.827514px;}
.ybf{bottom:986.187499px;}
.y150{bottom:986.907513px;}
.yf0{bottom:996.267476px;}
.y5{bottom:1000.947480px;}
.y34{bottom:1003.107477px;}
.y121{bottom:1007.967452px;}
.ybe{bottom:1008.147444px;}
.y8d{bottom:1008.867458px;}
.y14f{bottom:1009.047450px;}
.y33{bottom:1017.867436px;}
.yef{bottom:1018.227420px;}
.yf7{bottom:1018.947435px;}
.y32{bottom:1021.467418px;}
.y120{bottom:1029.927395px;}
.ybd{bottom:1030.287402px;}
.y8c{bottom:1030.827402px;}
.y14e{bottom:1031.007394px;}
.yee{bottom:1040.367380px;}
.y11f{bottom:1052.067355px;}
.ybc{bottom:1052.427339px;}
.y14d{bottom:1053.147331px;}
.yed{bottom:1062.507315px;}
.y8b{bottom:1064.307306px;}
.y11e{bottom:1074.027286px;}
.ybb{bottom:1074.387283px;}
.y17b{bottom:1075.107287px;}
.y14c{bottom:1075.287289px;}
.yec{bottom:1084.467260px;}
.y8a{bottom:1086.267262px;}
.y11d{bottom:1096.167236px;}
.yba{bottom:1096.527230px;}
.y14b{bottom:1097.247234px;}
.yeb{bottom:1106.607208px;}
.y89{bottom:1108.407199px;}
.y11c{bottom:1118.301174px;}
.yb9{bottom:1118.481178px;}
.y14a{bottom:1119.381175px;}
.yea{bottom:1128.561155px;}
.y88{bottom:1130.361146px;}
.y11b{bottom:1140.261119px;}
.yb8{bottom:1140.657118px;}
.y149{bottom:1141.377121px;}
.ye9{bottom:1150.737095px;}
.y87{bottom:1153.257088px;}
.y86{bottom:1217.516931px;}
.yb7{bottom:1219.856925px;}
.y2{bottom:1234.076888px;}
.ha{height:36.179910px;}
.h8{height:36.274128px;}
.h9{height:36.382409px;}
.h12{height:44.819888px;}
.h11{height:44.936606px;}
.hc{height:48.774253px;}
.hd{height:53.015492px;}
.h4{height:53.999865px;}
.he{height:54.107865px;}
.h5{height:54.140490px;}
.h6{height:54.248771px;}
.h3{height:59.438875px;}
.hb{height:69.654447px;}
.hf{height:71.613102px;}
.h7{height:80.914028px;}
.h10{height:81.539766px;}
.h13{height:81.656485px;}
.h2{height:1262.876798px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1{width:892.977765px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:22.679930px;}
.x14{left:24.659926px;}
.x11{left:26.639920px;}
.x15{left:29.339912px;}
.x13{left:30.599910px;}
.x18{left:31.859907px;}
.x10{left:37.439891px;}
.x16{left:44.459874px;}
.x1{left:46.799871px;}
.x12{left:48.599868px;}
.x19{left:55.079850px;}
.x65{left:57.599846px;}
.x6{left:59.219838px;}
.x67{left:60.659833px;}
.x66{left:63.719827px;}
.x1a{left:64.799826px;}
.x55{left:67.499818px;}
.x56{left:68.939813px;}
.x63{left:77.399790px;}
.x5c{left:79.919785px;}
.x4b{left:82.079783px;}
.xd{left:104.615729px;}
.xa{left:108.935716px;}
.x52{left:114.695695px;}
.xb{left:115.775694px;}
.x64{left:121.175679px;}
.xc{left:127.115673px;}
.xf{left:129.815660px;}
.x4{left:134.855648px;}
.x8{left:136.115651px;}
.x68{left:137.195639px;}
.xe{left:139.175634px;}
.x3{left:142.415630px;}
.x9{left:143.675623px;}
.x7{left:151.409611px;}
.x5a{left:171.209557px;}
.x5{left:180.389539px;}
.x54{left:255.809336px;}
.x50{left:257.789344px;}
.x53{left:269.489319px;}
.x5d{left:281.774291px;}
.x4c{left:307.154225px;}
.x4e{left:342.434120px;}
.x5b{left:356.654101px;}
.x42{left:366.914071px;}
.x2e{left:368.714062px;}
.x38{left:370.334059px;}
.x3b{left:372.494058px;}
.x22{left:374.114057px;}
.x45{left:376.094040px;}
.x1f{left:377.354054px;}
.x1b{left:378.614046px;}
.x21{left:380.054029px;}
.x34{left:381.314044px;}
.x48{left:382.934019px;}
.x1d{left:384.554018px;}
.x33{left:386.534023px;}
.x47{left:391.934020px;}
.x29{left:393.733987px;}
.x4f{left:395.713994px;}
.x28{left:396.793993px;}
.x3c{left:399.493968px;}
.x37{left:402.013996px;}
.x2c{left:416.413923px;}
.x5e{left:418.753959px;}
.x49{left:420.733920px;}
.x39{left:422.893919px;}
.x20{left:424.873924px;}
.x2d{left:438.553883px;}
.x5f{left:444.853885px;}
.x57{left:459.973828px;}
.x2f{left:462.313817px;}
.x2{left:471.343825px;}
.x58{left:481.063770px;}
.x4d{left:522.283684px;}
.x60{left:560.263601px;}
.x61{left:572.143546px;}
.x27{left:576.463542px;}
.x1c{left:577.723533px;}
.x51{left:586.363527px;}
.x1e{left:616.963441px;}
.x23{left:627.583440px;}
.x2a{left:644.323358px;}
.x35{left:645.583395px;}
.x3d{left:646.663347px;}
.x2b{left:648.643354px;}
.x31{left:651.343375px;}
.x36{left:652.603365px;}
.x25{left:655.168347px;}
.x3f{left:657.688329px;}
.x43{left:658.768329px;}
.x32{left:663.088326px;}
.x46{left:667.408321px;}
.x30{left:670.288288px;}
.x3e{left:672.448287px;}
.x44{left:678.568298px;}
.x41{left:688.468282px;}
.x24{left:693.868232px;}
.x40{left:707.368199px;}
.x62{left:709.348204px;}
.x26{left:730.588157px;}
.x3a{left:738.868120px;}
.x4a{left:755.428090px;}
.x59{left:770.908062px;}
@media print{
.v4{vertical-align:-27.519953pt;}
.v2{vertical-align:-26.239929pt;}
.v3{vertical-align:-2.559887pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560172pt;}
.v6{vertical-align:32.639892pt;}
.v1{vertical-align:39.679911pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.011688pt;}
.ls1{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.196469pt;}
.lse{letter-spacing:0.196474pt;}
.ls15{letter-spacing:0.255919pt;}
.ls10{letter-spacing:0.256053pt;}
.ls16{letter-spacing:0.511972pt;}
.ls13{letter-spacing:0.584276pt;}
.ls12{letter-spacing:0.584436pt;}
.ls7{letter-spacing:47.684862pt;}
.lsc{letter-spacing:61.764902pt;}
.ls5{letter-spacing:87.524768pt;}
.ls9{letter-spacing:93.284844pt;}
.ls8{letter-spacing:97.764812pt;}
.ls4{letter-spacing:110.564748pt;}
.lsf{letter-spacing:113.434596pt;}
.lsd{letter-spacing:131.684652pt;}
.lsa{letter-spacing:148.964716pt;}
.ls6{letter-spacing:150.244664pt;}
.ls11{letter-spacing:177.978494pt;}
.lsb{letter-spacing:218.724472pt;}
.ls2{letter-spacing:472.814503pt;}
.ws6{word-spacing:-63.999840pt;}
.ws4{word-spacing:-17.663956pt;}
.ws5{word-spacing:-14.820443pt;}
.ws3{word-spacing:-11.999202pt;}
.ws2{word-spacing:-11.963490pt;}
.ws1{word-spacing:-11.834850pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-3.402930pt;}
._9{margin-left:-1.791996pt;}
._1{margin-left:-0.895998pt;}
._0{width:1.279997pt;}
._6{width:2.431994pt;}
._7{width:3.519991pt;}
._c{width:4.863988pt;}
._d{width:5.823985pt;}
._1c{width:7.039982pt;}
._20{width:8.735557pt;}
._18{width:10.047975pt;}
._17{width:11.135972pt;}
._26{width:12.159970pt;}
._3{width:13.247967pt;}
._1a{width:14.399964pt;}
._14{width:15.492003pt;}
._15{width:16.691452pt;}
._f{width:19.327952pt;}
._e{width:20.927948pt;}
._16{width:21.887945pt;}
._2f{width:22.888274pt;}
._12{width:23.807940pt;}
._8{width:24.895938pt;}
._a{width:25.983935pt;}
._11{width:27.391932pt;}
._19{width:28.351929pt;}
._4{width:29.476489pt;}
._5{width:30.710808pt;}
._32{width:31.871910pt;}
._2d{width:32.895928pt;}
._2a{width:34.111915pt;}
._b{width:35.263912pt;}
._24{width:36.287909pt;}
._4a{width:37.311907pt;}
._37{width:38.207904pt;}
._1b{width:39.295902pt;}
._4d{width:40.511899pt;}
._13{width:41.407896pt;}
._23{width:42.559894pt;}
._33{width:44.095890pt;}
._1d{width:45.183887pt;}
._2e{width:46.463884pt;}
._57{width:47.807880pt;}
._31{width:49.279877pt;}
._30{width:50.559874pt;}
._4e{width:51.666516pt;}
._10{width:52.735868pt;}
._52{width:53.695866pt;}
._35{width:54.612550pt;}
._34{width:56.125963pt;}
._4b{width:57.663856pt;}
._36{width:59.711851pt;}
._22{width:60.799848pt;}
._55{width:61.759846pt;}
._56{width:64.383839pt;}
._28{width:65.961898pt;}
._29{width:67.127988pt;}
._21{width:68.031830pt;}
._27{width:69.503826pt;}
._50{width:70.591824pt;}
._4f{width:71.487821pt;}
._53{width:72.383819pt;}
._54{width:73.279817pt;}
._2b{width:74.623813pt;}
._1f{width:76.223809pt;}
._1e{width:77.375807pt;}
._2c{width:78.911803pt;}
._51{width:80.255799pt;}
._25{width:81.215797pt;}
._4c{width:82.815793pt;}
._41{width:186.245966pt;}
._42{width:188.331497pt;}
._43{width:201.125892pt;}
._39{width:215.674453pt;}
._3a{width:217.759744pt;}
._44{width:219.944826pt;}
._3b{width:230.554298pt;}
._3d{width:245.102694pt;}
._3e{width:247.188150pt;}
._49{width:262.269543pt;}
._48{width:274.331441pt;}
._3f{width:275.342693pt;}
._45{width:277.597205pt;}
._46{width:290.051083pt;}
._38{width:394.395585pt;}
._3c{width:409.115601pt;}
._40{width:426.929919pt;}
._47{width:481.460348pt;}
.fs4{font-size:42.879893pt;}
.fs5{font-size:43.007892pt;}
.fs0{font-size:53.119867pt;}
.fs3{font-size:58.879853pt;}
.fs1{font-size:63.999840pt;}
.fs2{font-size:64.127840pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.442829pt;}
.y85{bottom:7.999980pt;}
.y3{bottom:21.119902pt;}
.y31{bottom:26.559911pt;}
.y30{bottom:46.079882pt;}
.y4{bottom:48.319866pt;}
.y2f{bottom:65.146484pt;}
.yb5{bottom:70.586494pt;}
.y148{bottom:71.866438pt;}
.ye8{bottom:72.186425pt;}
.y179{bottom:72.826478pt;}
.y11a{bottom:75.706435pt;}
.y2e{bottom:84.666455pt;}
.yb4{bottom:90.266457pt;}
.y82{bottom:90.586444pt;}
.y147{bottom:91.546402pt;}
.ye7{bottom:91.866388pt;}
.y178{bottom:92.506442pt;}
.y119{bottom:95.226406pt;}
.y81{bottom:103.546372pt;}
.y2d{bottom:104.346419pt;}
.yb3{bottom:109.786347pt;}
.y146{bottom:111.066373pt;}
.ye6{bottom:111.386359pt;}
.y177{bottom:112.186325pt;}
.y118{bottom:114.906370pt;}
.y80{bottom:116.666375pt;}
.y84{bottom:116.826368pt;}
.y2c{bottom:124.026302pt;}
.yb2{bottom:129.466311pt;}
.y7f{bottom:129.786297pt;}
.y145{bottom:130.746337pt;}
.ye5{bottom:131.066323pt;}
.y176{bottom:131.706295pt;}
.y117{bottom:134.426340pt;}
.y7e{bottom:142.906300pt;}
.y2b{bottom:143.546272pt;}
.y83{bottom:146.266317pt;}
.yb1{bottom:148.986281pt;}
.y144{bottom:150.426300pt;}
.ye4{bottom:150.586294pt;}
.y175{bottom:151.386259pt;}
.y116{bottom:154.106223pt;}
.y7c{bottom:160.986251pt;}
.y2a{bottom:163.226236pt;}
.yb0{bottom:168.666245pt;}
.y143{bottom:169.946190pt;}
.ye3{bottom:170.266257pt;}
.y174{bottom:170.906230pt;}
.y115{bottom:173.786187pt;}
.y7b{bottom:174.106173pt;}
.y29{bottom:182.906200pt;}
.y7a{bottom:187.226176pt;}
.yaf{bottom:188.346209pt;}
.y142{bottom:189.626154pt;}
.ye2{bottom:189.946140pt;}
.y173{bottom:190.586194pt;}
.y114{bottom:193.306158pt;}
.y79{bottom:200.346179pt;}
.y7d{bottom:200.826158pt;}
.y28{bottom:202.426170pt;}
.yae{bottom:207.866098pt;}
.y141{bottom:209.146124pt;}
.ye1{bottom:209.466111pt;}
.y172{bottom:210.266157pt;}
.y113{bottom:212.986121pt;}
.y78{bottom:215.706085pt;}
.y27{bottom:222.106053pt;}
.y73{bottom:222.266127pt;}
.yad{bottom:227.546062pt;}
.y77{bottom:228.826088pt;}
.ye0{bottom:229.146074pt;}
.y171{bottom:229.786047pt;}
.y112{bottom:232.506092pt;}
.y72{bottom:235.226056pt;}
.y26{bottom:241.626024pt;}
.y76{bottom:241.786017pt;}
.yac{bottom:247.066033pt;}
.y71{bottom:248.346059pt;}
.y140{bottom:248.506052pt;}
.ydf{bottom:248.666045pt;}
.y170{bottom:249.466011pt;}
.y111{bottom:252.185975pt;}
.y75{bottom:254.906020pt;}
.y25{bottom:261.305988pt;}
.y70{bottom:261.625974pt;}
.yab{bottom:266.745997pt;}
.y13f{bottom:268.025942pt;}
.yde{bottom:268.346009pt;}
.y74{bottom:268.665995pt;}
.y16f{bottom:268.985981pt;}
.y110{bottom:271.865938pt;}
.y24{bottom:280.985951pt;}
.y6c{bottom:283.225936pt;}
.yaa{bottom:286.425960pt;}
.y13e{bottom:287.705905pt;}
.ydd{bottom:288.025892pt;}
.y16e{bottom:288.665945pt;}
.y6f{bottom:289.785897pt;}
.y10f{bottom:291.385909pt;}
.y6b{bottom:296.345939pt;}
.y23{bottom:300.505922pt;}
.y6e{bottom:302.945857pt;}
.ya9{bottom:305.985888pt;}
.y13d{bottom:307.265914pt;}
.ydc{bottom:307.585902pt;}
.y16d{bottom:308.385866pt;}
.y6a{bottom:309.505900pt;}
.y10e{bottom:311.105830pt;}
.y22{bottom:320.225843pt;}
.y69{bottom:322.625821pt;}
.y6d{bottom:323.105800pt;}
.ya8{bottom:325.665853pt;}
.y13c{bottom:326.945797pt;}
.ydb{bottom:327.265864pt;}
.y16c{bottom:327.905838pt;}
.y10d{bottom:330.625801pt;}
.y21{bottom:339.745815pt;}
.y67{bottom:344.385776pt;}
.ya7{bottom:345.185742pt;}
.y13b{bottom:346.625761pt;}
.yda{bottom:346.785754pt;}
.y16b{bottom:347.585802pt;}
.y10c{bottom:350.305766pt;}
.y66{bottom:357.505780pt;}
.y20{bottom:359.425777pt;}
.ya6{bottom:364.865705pt;}
.y13a{bottom:366.145731pt;}
.yd9{bottom:366.465719pt;}
.y16a{bottom:367.105690pt;}
.y10b{bottom:369.985728pt;}
.y65{bottom:370.625701pt;}
.y68{bottom:377.665723pt;}
.y1f{bottom:379.105660pt;}
.ya5{bottom:384.545669pt;}
.y139{bottom:385.825695pt;}
.yd8{bottom:386.145681pt;}
.y169{bottom:386.785654pt;}
.y10a{bottom:389.505700pt;}
.y63{bottom:392.385656pt;}
.y1e{bottom:398.625631pt;}
.ya4{bottom:404.065641pt;}
.y138{bottom:405.345667pt;}
.y62{bottom:405.505660pt;}
.yd7{bottom:405.665653pt;}
.y168{bottom:406.465619pt;}
.y109{bottom:409.185582pt;}
.y1d{bottom:418.305596pt;}
.y61{bottom:418.625581pt;}
.ya3{bottom:423.745605pt;}
.y137{bottom:425.025549pt;}
.yd6{bottom:425.345617pt;}
.y167{bottom:425.985588pt;}
.y108{bottom:428.705552pt;}
.y60{bottom:431.745585pt;}
.y64{bottom:432.225563pt;}
.y1c{bottom:437.825565pt;}
.ya2{bottom:443.425527pt;}
.y136{bottom:444.705512pt;}
.yd5{bottom:444.865547pt;}
.y166{bottom:445.665513pt;}
.y5e{bottom:453.505498pt;}
.y1b{bottom:457.505488pt;}
.ya1{bottom:462.945499pt;}
.y135{bottom:464.225483pt;}
.yd4{bottom:464.545469pt;}
.y165{bottom:465.185482pt;}
.y5d{bottom:466.465469pt;}
.y107{bottom:476.225453pt;}
.y1a{bottom:477.185452pt;}
.y5c{bottom:479.585430pt;}
.ya0{bottom:482.625421pt;}
.y134{bottom:483.905448pt;}
.yd3{bottom:484.225433pt;}
.y164{bottom:484.865447pt;}
.y5b{bottom:492.865427pt;}
.y19{bottom:496.705382pt;}
.y5f{bottom:499.745415pt;}
.y9f{bottom:502.145391pt;}
.y106{bottom:502.465379pt;}
.y133{bottom:503.585370pt;}
.yd2{bottom:503.745405pt;}
.y183{bottom:504.385376pt;}
.y163{bottom:504.545369pt;}
.y59{bottom:514.465349pt;}
.y18{bottom:516.385346pt;}
.y105{bottom:518.785364pt;}
.y9e{bottom:521.825355pt;}
.y132{bottom:523.105342pt;}
.yd1{bottom:523.425327pt;}
.y162{bottom:524.065341pt;}
.y58{bottom:527.585310pt;}
.y17{bottom:535.905318pt;}
.y104{bottom:536.705282pt;}
.y57{bottom:540.731966pt;}
.yb6{bottom:541.531972pt;}
.y9d{bottom:542.171943pt;}
.y131{bottom:542.811956pt;}
.yd0{bottom:543.131944pt;}
.y161{bottom:543.771957pt;}
.y56{bottom:553.851927pt;}
.y5a{bottom:554.331908pt;}
.y103{bottom:554.491940pt;}
.y16{bottom:555.611934pt;}
.y130{bottom:562.331888pt;}
.ycf{bottom:562.651913pt;}
.y160{bottom:563.291886pt;}
.y54{bottom:569.211874pt;}
.y102{bottom:570.811886pt;}
.y15{bottom:575.291856pt;}
.y9c{bottom:580.411880pt;}
.y12f{bottom:582.011850pt;}
.y53{bottom:582.171843pt;}
.yce{bottom:582.331838pt;}
.y15f{bottom:582.971851pt;}
.y101{bottom:588.411860pt;}
.y52{bottom:595.291806pt;}
.y14{bottom:595.451839pt;}
.y9b{bottom:600.091802pt;}
.y12e{bottom:601.691814pt;}
.ycd{bottom:601.851807pt;}
.y182{bottom:602.491820pt;}
.y15e{bottom:602.651813pt;}
.y100{bottom:604.731806pt;}
.y51{bottom:608.411810pt;}
.y55{bottom:609.051781pt;}
.y13{bottom:614.491790pt;}
.y9a{bottom:619.611774pt;}
.y12d{bottom:621.211744pt;}
.ycc{bottom:621.531772pt;}
.y15d{bottom:622.171743pt;}
.yff{bottom:622.491770pt;}
.y4d{bottom:623.451769pt;}
.y12{bottom:634.171713pt;}
.y4c{bottom:636.411740pt;}
.yfe{bottom:638.811716pt;}
.y99{bottom:639.291696pt;}
.y12c{bottom:640.891708pt;}
.ycb{bottom:641.211694pt;}
.y15c{bottom:641.851707pt;}
.y50{bottom:642.971701pt;}
.y4b{bottom:649.531702pt;}
.y11{bottom:654.331658pt;}
.y4f{bottom:656.091662pt;}
.yfc{bottom:656.891668pt;}
.y98{bottom:658.971661pt;}
.y12b{bottom:660.411680pt;}
.yca{bottom:660.731666pt;}
.y181{bottom:661.371637pt;}
.y15b{bottom:661.531672pt;}
.y17a{bottom:662.171643pt;}
.y4a{bottom:662.651663pt;}
.yfb{bottom:665.051641pt;}
.y4e{bottom:669.211624pt;}
.yfd{bottom:673.211614pt;}
.y10{bottom:673.371607pt;}
.y49{bottom:675.771627pt;}
.y97{bottom:678.491630pt;}
.y12a{bottom:680.091602pt;}
.yc9{bottom:680.411630pt;}
.y15a{bottom:681.051601pt;}
.y48{bottom:688.891588pt;}
.yf{bottom:692.891578pt;}
.yfa{bottom:697.211554pt;}
.y96{bottom:698.171553pt;}
.y129{bottom:699.771567pt;}
.yc8{bottom:699.931560pt;}
.y180{bottom:700.571573pt;}
.y159{bottom:700.731566pt;}
.y47{bottom:709.691544pt;}
.ye{bottom:713.211514pt;}
.y42{bottom:716.251505pt;}
.yf9{bottom:716.731526pt;}
.y95{bottom:717.691524pt;}
.y128{bottom:719.291496pt;}
.yc7{bottom:719.611524pt;}
.y158{bottom:720.251495pt;}
.y46{bottom:722.811506pt;}
.y41{bottom:729.371467pt;}
.yd{bottom:732.251465pt;}
.y45{bottom:735.931470pt;}
.yf8{bottom:736.411490pt;}
.y94{bottom:737.371447pt;}
.y127{bottom:738.971461pt;}
.yc6{bottom:739.291446pt;}
.y157{bottom:739.931460pt;}
.y40{bottom:742.651463pt;}
.y44{bottom:749.051431pt;}
.yc{bottom:752.411450pt;}
.y3f{bottom:755.611434pt;}
.y93{bottom:757.051411pt;}
.y126{bottom:758.491430pt;}
.yc5{bottom:758.811416pt;}
.y17f{bottom:759.451429pt;}
.y156{bottom:759.611424pt;}
.yf6{bottom:767.771397pt;}
.y43{bottom:768.731396pt;}
.yb{bottom:772.091372pt;}
.y92{bottom:776.611381pt;}
.y125{bottom:778.211352pt;}
.yc4{bottom:778.531379pt;}
.y155{bottom:779.171351pt;}
.y3e{bottom:786.691352pt;}
.yf5{bottom:787.491338pt;}
.ya{bottom:791.011328pt;}
.y91{bottom:796.291324pt;}
.y124{bottom:797.891316pt;}
.yc3{bottom:798.051309pt;}
.y17e{bottom:798.691322pt;}
.y154{bottom:798.851315pt;}
.y3a{bottom:804.291304pt;}
.yf4{bottom:807.011288pt;}
.y9{bottom:810.691292pt;}
.y3d{bottom:810.851285pt;}
.y90{bottom:815.971268pt;}
.y39{bottom:817.411266pt;}
.yc2{bottom:817.731273pt;}
.y153{bottom:818.371266pt;}
.y3c{bottom:823.971248pt;}
.yf3{bottom:826.691252pt;}
.y8{bottom:830.371236pt;}
.y38{bottom:830.531229pt;}
.y8f{bottom:835.491218pt;}
.y3b{bottom:837.091210pt;}
.yc1{bottom:837.411216pt;}
.y152{bottom:838.051209pt;}
.y17d{bottom:838.691222pt;}
.y37{bottom:843.651211pt;}
.yf2{bottom:846.371196pt;}
.y7{bottom:849.891186pt;}
.y123{bottom:856.611160pt;}
.y36{bottom:856.771174pt;}
.yc0{bottom:856.931167pt;}
.y17c{bottom:857.571160pt;}
.y151{bottom:857.731173pt;}
.y8e{bottom:865.731153pt;}
.yf1{bottom:865.891146pt;}
.y6{bottom:869.571130pt;}
.y35{bottom:871.171142pt;}
.y122{bottom:876.291124pt;}
.ybf{bottom:876.611110pt;}
.y150{bottom:877.251123pt;}
.yf0{bottom:885.571090pt;}
.y5{bottom:889.731093pt;}
.y34{bottom:891.651091pt;}
.y121{bottom:895.971068pt;}
.ybe{bottom:896.131061pt;}
.y8d{bottom:896.771074pt;}
.y14f{bottom:896.931067pt;}
.y33{bottom:904.771054pt;}
.yef{bottom:905.091040pt;}
.yf7{bottom:905.731053pt;}
.y32{bottom:907.971038pt;}
.y120{bottom:915.491018pt;}
.ybd{bottom:915.811024pt;}
.y8c{bottom:916.291024pt;}
.y14e{bottom:916.451017pt;}
.yee{bottom:924.771004pt;}
.y11f{bottom:935.170982pt;}
.ybc{bottom:935.490968pt;}
.y14d{bottom:936.130961pt;}
.yed{bottom:944.450947pt;}
.y8b{bottom:946.050939pt;}
.y11e{bottom:954.690921pt;}
.ybb{bottom:955.010918pt;}
.y17b{bottom:955.650922pt;}
.y14c{bottom:955.810924pt;}
.yec{bottom:963.970898pt;}
.y8a{bottom:965.570899pt;}
.y11d{bottom:974.370876pt;}
.yba{bottom:974.690871pt;}
.y14b{bottom:975.330875pt;}
.yeb{bottom:983.650852pt;}
.y89{bottom:985.250844pt;}
.y11c{bottom:994.045488pt;}
.yb9{bottom:994.205492pt;}
.y14a{bottom:995.005488pt;}
.yea{bottom:1003.165471pt;}
.y88{bottom:1004.765463pt;}
.y11b{bottom:1013.565439pt;}
.yb8{bottom:1013.917439pt;}
.y149{bottom:1014.557441pt;}
.ye9{bottom:1022.877417pt;}
.y87{bottom:1025.117412pt;}
.y86{bottom:1082.237272pt;}
.yb7{bottom:1084.317267pt;}
.y2{bottom:1096.957234pt;}
.ha{height:32.159920pt;}
.h8{height:32.243669pt;}
.h9{height:32.339919pt;}
.h12{height:39.839900pt;}
.h11{height:39.943650pt;}
.hc{height:43.354892pt;}
.hd{height:47.124882pt;}
.h4{height:47.999880pt;}
.he{height:48.095880pt;}
.h5{height:48.124880pt;}
.h6{height:48.221129pt;}
.h3{height:52.834555pt;}
.hb{height:61.915064pt;}
.hf{height:63.656091pt;}
.h7{height:71.923581pt;}
.h10{height:72.479792pt;}
.h13{height:72.583542pt;}
.h2{height:1122.557154pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1{width:793.758013pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:20.159938pt;}
.x14{left:21.919935pt;}
.x11{left:23.679929pt;}
.x15{left:26.079921pt;}
.x13{left:27.199920pt;}
.x18{left:28.319917pt;}
.x10{left:33.279903pt;}
.x16{left:39.519888pt;}
.x1{left:41.599885pt;}
.x12{left:43.199883pt;}
.x19{left:48.959867pt;}
.x65{left:51.199863pt;}
.x6{left:52.639856pt;}
.x67{left:53.919852pt;}
.x66{left:56.639846pt;}
.x1a{left:57.599845pt;}
.x55{left:59.999838pt;}
.x56{left:61.279833pt;}
.x63{left:68.799813pt;}
.x5c{left:71.039809pt;}
.x4b{left:72.959807pt;}
.xd{left:92.991760pt;}
.xa{left:96.831747pt;}
.x52{left:101.951729pt;}
.xb{left:102.911728pt;}
.x64{left:107.711715pt;}
.xc{left:112.991710pt;}
.xf{left:115.391698pt;}
.x4{left:119.871687pt;}
.x8{left:120.991690pt;}
.x68{left:121.951679pt;}
.xe{left:123.711675pt;}
.x3{left:126.591672pt;}
.x9{left:127.711665pt;}
.x7{left:134.586321pt;}
.x5a{left:152.186273pt;}
.x5{left:160.346256pt;}
.x54{left:227.386077pt;}
.x50{left:229.146083pt;}
.x53{left:239.546061pt;}
.x5d{left:250.466037pt;}
.x4c{left:273.025977pt;}
.x4e{left:304.385884pt;}
.x5b{left:317.025867pt;}
.x42{left:326.145841pt;}
.x2e{left:327.745833pt;}
.x38{left:329.185830pt;}
.x3b{left:331.105830pt;}
.x22{left:332.545829pt;}
.x45{left:334.305814pt;}
.x1f{left:335.425825pt;}
.x1b{left:336.545819pt;}
.x21{left:337.825803pt;}
.x34{left:338.945817pt;}
.x48{left:340.385794pt;}
.x1d{left:341.825793pt;}
.x33{left:343.585798pt;}
.x47{left:348.385796pt;}
.x29{left:349.985766pt;}
.x4f{left:351.745773pt;}
.x28{left:352.705772pt;}
.x3c{left:355.105750pt;}
.x37{left:357.345775pt;}
.x2c{left:370.145709pt;}
.x5e{left:372.225741pt;}
.x49{left:373.985706pt;}
.x39{left:375.905706pt;}
.x20{left:377.665711pt;}
.x2d{left:389.825673pt;}
.x5f{left:395.425675pt;}
.x57{left:408.865625pt;}
.x2f{left:410.945615pt;}
.x2{left:418.972289pt;}
.x58{left:427.612240pt;}
.x4d{left:464.252163pt;}
.x60{left:498.012090pt;}
.x61{left:508.572041pt;}
.x27{left:512.412038pt;}
.x1c{left:513.532030pt;}
.x51{left:521.212024pt;}
.x1e{left:548.411948pt;}
.x23{left:557.851947pt;}
.x2a{left:572.731874pt;}
.x35{left:573.851907pt;}
.x3d{left:574.811864pt;}
.x2b{left:576.571871pt;}
.x31{left:578.971889pt;}
.x36{left:580.091880pt;}
.x25{left:582.371864pt;}
.x3f{left:584.611848pt;}
.x43{left:585.571848pt;}
.x32{left:589.411845pt;}
.x46{left:593.251841pt;}
.x30{left:595.811812pt;}
.x3e{left:597.731811pt;}
.x44{left:603.171820pt;}
.x41{left:611.971806pt;}
.x24{left:616.771762pt;}
.x40{left:628.771732pt;}
.x62{left:630.531737pt;}
.x26{left:649.411695pt;}
.x3a{left:656.771662pt;}
.x4a{left:671.491636pt;}
.x59{left:685.251611pt;}
}




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