
    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_3164b761aa8cd46eabc7d3ff.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976562;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_4e999e898694b96808c774d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_ab7f54b857f2c0a84c0b7ae9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_0aceba4044105e808cdb0451.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999512;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_82493ebd0421a0b49d829f7f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_3db61048f564892ce238f9f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-1.440000px;}
.ls17{letter-spacing:-1.422000px;}
.lsb{letter-spacing:-0.972000px;}
.ls7{letter-spacing:-0.942000px;}
.lsc{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.630000px;}
.lsf{letter-spacing:-0.518400px;}
.lsa{letter-spacing:-0.486600px;}
.ls15{letter-spacing:-0.466800px;}
.ls5{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.313800px;}
.ls1b{letter-spacing:-0.020160px;}
.ls12{letter-spacing:-0.015600px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.015600px;}
.ls3{letter-spacing:0.015840px;}
.ls1c{letter-spacing:0.020160px;}
.ls22{letter-spacing:0.032160px;}
.ls13{letter-spacing:0.250800px;}
.ls2{letter-spacing:0.413280px;}
.ls1d{letter-spacing:0.466800px;}
.ls14{letter-spacing:0.486600px;}
.ls20{letter-spacing:0.507000px;}
.ls18{letter-spacing:0.665280px;}
.ls1{letter-spacing:0.720000px;}
.ls11{letter-spacing:1.188000px;}
.ls1a{letter-spacing:9.106560px;}
.ls19{letter-spacing:13.426560px;}
.lse{letter-spacing:15.120000px;}
.lsd{letter-spacing:20.880000px;}
.ls23{letter-spacing:35.749440px;}
.ls21{letter-spacing:40.786560px;}
.ls0{letter-spacing:87.132000px;}
.ls1e{letter-spacing:91.186560px;}
.ls1f{letter-spacing:92.626560px;}
.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;}
}
.ws16{word-spacing:-60.480000px;}
.ws15{word-spacing:-15.627000px;}
.wsc{word-spacing:-15.606600px;}
.ws14{word-spacing:-15.586800px;}
.ws13{word-spacing:-15.140160px;}
.ws6{word-spacing:-15.120000px;}
.ws10{word-spacing:-15.099840px;}
.ws11{word-spacing:-14.653200px;}
.ws12{word-spacing:-14.633400px;}
.ws7{word-spacing:-14.148000px;}
.ws2{word-spacing:-13.680000px;}
.ws3{word-spacing:-13.366200px;}
.ws4{word-spacing:-13.050000px;}
.wsb{word-spacing:-12.600000px;}
.wsf{word-spacing:-12.545280px;}
.wsa{word-spacing:-12.130800px;}
.ws8{word-spacing:-11.895600px;}
.ws0{word-spacing:-11.880000px;}
.ws9{word-spacing:-11.864400px;}
.ws1{word-spacing:-11.520000px;}
.wse{word-spacing:0.000000px;}
.ws5{word-spacing:2.413080px;}
.wsd{word-spacing:12.453840px;}
._2{margin-left:-2.056199px;}
._1{margin-left:-1.011393px;}
._0{width:1.568445px;}
._3{width:3.136225px;}
._a{width:4.564900px;}
._9{width:5.841582px;}
._f{width:7.295498px;}
._8{width:8.718213px;}
._7{width:10.125081px;}
._29{width:11.174698px;}
._e{width:12.188039px;}
._26{width:13.218969px;}
._45{width:14.229634px;}
._5{width:15.494432px;}
._6{width:17.048987px;}
._4{width:18.358626px;}
._b{width:19.575461px;}
._1d{width:20.787859px;}
._c{width:21.864675px;}
._d{width:22.931171px;}
._1c{width:24.131399px;}
._11{width:26.105440px;}
._10{width:27.481873px;}
._28{width:28.612679px;}
._27{width:30.361202px;}
._16{width:31.386064px;}
._17{width:32.488795px;}
._15{width:33.821301px;}
._14{width:34.906141px;}
._12{width:36.087641px;}
._13{width:37.131610px;}
._33{width:38.371746px;}
._18{width:39.813108px;}
._21{width:40.849456px;}
._25{width:42.579485px;}
._24{width:43.814587px;}
._23{width:45.303555px;}
._22{width:46.760977px;}
._41{width:47.973617px;}
._30{width:49.083378px;}
._2b{width:50.121395px;}
._2a{width:51.226197px;}
._2d{width:52.302347px;}
._2f{width:53.403719px;}
._2e{width:54.492359px;}
._35{width:55.589069px;}
._3f{width:59.443022px;}
._3e{width:60.782279px;}
._3d{width:61.859399px;}
._1e{width:63.617425px;}
._1f{width:65.001121px;}
._1b{width:66.301080px;}
._40{width:67.350660px;}
._1a{width:68.515438px;}
._36{width:69.777153px;}
._34{width:74.098179px;}
._39{width:75.422474px;}
._3a{width:77.414400px;}
._42{width:79.293194px;}
._38{width:80.317440px;}
._37{width:81.647879px;}
._19{width:88.565350px;}
._2c{width:90.025883px;}
._3c{width:93.328246px;}
._3b{width:94.344987px;}
._44{width:100.661760px;}
._20{width:107.779153px;}
._43{width:216.582794px;}
._32{width:323.400000px;}
._31{width:1065.336000px;}
.fc4{color:transparent;}
.fc3{color:rgb(51,51,255);}
.fc2{color:rgb(0,0,204);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:119.520000px;}
.fs2{font-size:144.000000px;}
.y7e{bottom:-21.275850px;}
.y7d{bottom:-7.199850px;}
.y0{bottom:0.000000px;}
.yc{bottom:2.520000px;}
.y8{bottom:3.276000px;}
.y4{bottom:6.480000px;}
.y7c{bottom:6.480150px;}
.y79{bottom:10.475850px;}
.y1{bottom:10.476000px;}
.yb{bottom:16.200000px;}
.y7{bottom:19.116000px;}
.y3{bottom:20.160000px;}
.y7b{bottom:20.160150px;}
.ya{bottom:29.880000px;}
.y2{bottom:33.840000px;}
.y7a{bottom:33.840150px;}
.y9{bottom:43.920000px;}
.y15d{bottom:79.956000px;}
.y78{bottom:81.756000px;}
.y149{bottom:83.556000px;}
.y124{bottom:84.636000px;}
.y18e{bottom:86.436000px;}
.yed{bottom:90.036000px;}
.y17e{bottom:92.556000px;}
.y1ba{bottom:94.356000px;}
.yb5{bottom:97.236000px;}
.y15c{bottom:97.956000px;}
.y43{bottom:99.396000px;}
.y77{bottom:99.756000px;}
.y148{bottom:101.916000px;}
.y123{bottom:102.636000px;}
.y18d{bottom:104.436000px;}
.yec{bottom:108.036000px;}
.y17d{bottom:110.556000px;}
.y42{bottom:113.436000px;}
.y13d{bottom:115.236000px;}
.y15b{bottom:116.316000px;}
.yb4{bottom:117.036000px;}
.y76{bottom:117.756000px;}
.y147{bottom:119.916000px;}
.y122{bottom:120.636000px;}
.y1b9{bottom:122.076000px;}
.y18c{bottom:122.436000px;}
.yeb{bottom:126.036000px;}
.y41{bottom:127.116000px;}
.y17c{bottom:128.916000px;}
.y13c{bottom:133.632000px;}
.y15a{bottom:134.352000px;}
.y1b8{bottom:135.792000px;}
.y75{bottom:136.152000px;}
.yb3{bottom:136.872000px;}
.y146{bottom:137.952000px;}
.y121{bottom:139.032000px;}
.y18b{bottom:140.472000px;}
.yea{bottom:144.432000px;}
.y17b{bottom:146.952000px;}
.y1b7{bottom:149.472000px;}
.y13b{bottom:151.635000px;}
.y159{bottom:152.355000px;}
.y74{bottom:154.155000px;}
.y40{bottom:154.875000px;}
.y145{bottom:156.315000px;}
.yb2{bottom:156.675000px;}
.y120{bottom:157.035000px;}
.y18a{bottom:158.835000px;}
.y1b6{bottom:163.515000px;}
.y17a{bottom:164.955000px;}
.ye9{bottom:166.035000px;}
.y3f{bottom:168.555000px;}
.y13a{bottom:169.635000px;}
.y158{bottom:170.715000px;}
.y73{bottom:172.155000px;}
.y144{bottom:174.315000px;}
.y11f{bottom:175.035000px;}
.yb1{bottom:176.475000px;}
.y189{bottom:176.835000px;}
.y1b5{bottom:177.195000px;}
.y3e{bottom:182.955000px;}
.y179{bottom:183.315000px;}
.y139{bottom:187.635000px;}
.y157{bottom:188.715000px;}
.y72{bottom:190.155000px;}
.y1b4{bottom:190.875000px;}
.y143{bottom:192.315000px;}
.ye8{bottom:193.035000px;}
.y11e{bottom:193.395000px;}
.y188{bottom:194.835000px;}
.yb0{bottom:196.275000px;}
.y3d{bottom:199.875000px;}
.y178{bottom:201.315000px;}
.y1b3{bottom:204.915000px;}
.y138{bottom:205.995000px;}
.y156{bottom:206.715000px;}
.y71{bottom:208.515000px;}
.ye7{bottom:211.395000px;}
.y187{bottom:213.195000px;}
.y3c{bottom:215.355000px;}
.yaf{bottom:216.435000px;}
.y142{bottom:218.595000px;}
.y177{bottom:219.315000px;}
.y137{bottom:223.995000px;}
.y155{bottom:224.715000px;}
.y70{bottom:226.515000px;}
.ye6{bottom:229.395000px;}
.y3b{bottom:230.835000px;}
.y186{bottom:231.195000px;}
.y1b2{bottom:232.275000px;}
.yae{bottom:236.235000px;}
.y11d{bottom:237.675000px;}
.y136{bottom:241.995000px;}
.y154{bottom:243.075000px;}
.y6f{bottom:244.515000px;}
.y3a{bottom:246.315000px;}
.ye5{bottom:247.395000px;}
.y185{bottom:249.195000px;}
.y141{bottom:254.595000px;}
.y176{bottom:255.675000px;}
.yad{bottom:256.035000px;}
.y135{bottom:260.355000px;}
.y153{bottom:261.075000px;}
.y39{bottom:261.795000px;}
.y6e{bottom:262.875000px;}
.ye4{bottom:265.785000px;}
.y184{bottom:267.585000px;}
.y1b1{bottom:269.745000px;}
.y140{bottom:272.985000px;}
.y11c{bottom:273.705000px;}
.yac{bottom:275.865000px;}
.y38{bottom:277.665000px;}
.y6d{bottom:280.905000px;}
.y134{bottom:281.985000px;}
.y152{bottom:282.705000px;}
.ye3{bottom:283.785000px;}
.y183{bottom:285.585000px;}
.y13f{bottom:290.985000px;}
.y11b{bottom:291.705000px;}
.yab{bottom:295.665000px;}
.y6c{bottom:298.905000px;}
.ye2{bottom:301.785000px;}
.y182{bottom:303.585000px;}
.y1b0{bottom:305.745000px;}
.y133{bottom:308.985000px;}
.y11a{bottom:310.065000px;}
.yaa{bottom:315.465000px;}
.y6b{bottom:317.265000px;}
.ye1{bottom:320.145000px;}
.y181{bottom:321.945000px;}
.y1af{bottom:323.745000px;}
.y132{bottom:327.345000px;}
.y119{bottom:328.065000px;}
.y175{bottom:331.665000px;}
.y6a{bottom:335.265000px;}
.ye0{bottom:338.145000px;}
.y180{bottom:339.945000px;}
.y1ae{bottom:342.105000px;}
.y131{bottom:345.345000px;}
.y37{bottom:346.065000px;}
.y174{bottom:348.945000px;}
.y69{bottom:353.265000px;}
.ya9{bottom:355.065000px;}
.ydf{bottom:356.145000px;}
.y17f{bottom:357.945000px;}
.y1ad{bottom:360.105000px;}
.y130{bottom:363.345000px;}
.y36{bottom:364.065000px;}
.y118{bottom:364.425000px;}
.y68{bottom:371.625000px;}
.yde{bottom:374.145000px;}
.ya8{bottom:374.865000px;}
.y173{bottom:375.945000px;}
.y1ac{bottom:378.105000px;}
.y12f{bottom:381.705000px;}
.y35{bottom:382.065000px;}
.y117{bottom:382.425000px;}
.y67{bottom:389.625000px;}
.ydd{bottom:392.505000px;}
.y172{bottom:394.305000px;}
.ya7{bottom:394.665000px;}
.y1ab{bottom:396.105000px;}
.y12e{bottom:399.750000px;}
.y34{bottom:400.110000px;}
.y116{bottom:400.470000px;}
.y66{bottom:407.670000px;}
.ydc{bottom:410.550000px;}
.y171{bottom:412.350000px;}
.y1aa{bottom:414.510000px;}
.ya6{bottom:414.870000px;}
.y12d{bottom:417.750000px;}
.y33{bottom:418.470000px;}
.y115{bottom:418.830000px;}
.y65{bottom:425.670000px;}
.ydb{bottom:428.550000px;}
.y170{bottom:430.350000px;}
.y1a9{bottom:432.510000px;}
.ya5{bottom:434.670000px;}
.y12c{bottom:436.110000px;}
.y32{bottom:436.470000px;}
.y114{bottom:436.830000px;}
.y64{bottom:444.030000px;}
.yda{bottom:446.910000px;}
.y16f{bottom:448.710000px;}
.y1a8{bottom:450.510000px;}
.y12b{bottom:454.110000px;}
.y31{bottom:454.470000px;}
.y113{bottom:454.830000px;}
.y63{bottom:462.030000px;}
.yd9{bottom:464.910000px;}
.y16e{bottom:466.710000px;}
.y1a7{bottom:468.870000px;}
.y12a{bottom:472.110000px;}
.y30{bottom:472.830000px;}
.y112{bottom:473.190000px;}
.ya4{bottom:474.270000px;}
.y62{bottom:480.030000px;}
.yd8{bottom:482.910000px;}
.y16d{bottom:484.710000px;}
.y1a6{bottom:486.870000px;}
.y129{bottom:490.110000px;}
.y2f{bottom:490.830000px;}
.y111{bottom:491.190000px;}
.ya3{bottom:494.070000px;}
.y61{bottom:498.390000px;}
.yd7{bottom:501.270000px;}
.y16c{bottom:503.070000px;}
.y1a5{bottom:504.870000px;}
.y128{bottom:508.470000px;}
.y2e{bottom:508.830000px;}
.y110{bottom:509.190000px;}
.ya2{bottom:513.870000px;}
.y60{bottom:516.390000px;}
.yd6{bottom:519.270000px;}
.y16b{bottom:521.070000px;}
.y1a4{bottom:523.230000px;}
.y127{bottom:526.470000px;}
.y2d{bottom:527.190000px;}
.y10f{bottom:527.550000px;}
.y5f{bottom:534.420000px;}
.ya1{bottom:535.500000px;}
.yd5{bottom:537.300000px;}
.y16a{bottom:539.100000px;}
.y1a3{bottom:541.260000px;}
.y126{bottom:544.500000px;}
.y2c{bottom:545.220000px;}
.y10e{bottom:545.580000px;}
.yd4{bottom:555.660000px;}
.y5e{bottom:556.380000px;}
.y169{bottom:557.460000px;}
.y1a2{bottom:559.260000px;}
.ya0{bottom:562.860000px;}
.y10d{bottom:563.580000px;}
.y2b{bottom:567.540000px;}
.y5d{bottom:573.660000px;}
.y168{bottom:575.460000px;}
.y1a1{bottom:577.620000px;}
.y9f{bottom:580.860000px;}
.y10c{bottom:581.580000px;}
.yd3{bottom:591.660000px;}
.y167{bottom:593.460000px;}
.y1a0{bottom:595.620000px;}
.y9e{bottom:598.860000px;}
.y10b{bottom:599.940000px;}
.y5c{bottom:600.660000px;}
.y2a{bottom:607.500000px;}
.yd2{bottom:609.660000px;}
.y166{bottom:611.460000px;}
.y19f{bottom:613.620000px;}
.y9d{bottom:617.220000px;}
.y10a{bottom:617.940000px;}
.y5b{bottom:618.660000px;}
.yd1{bottom:628.020000px;}
.y165{bottom:629.820000px;}
.y9c{bottom:635.220000px;}
.y109{bottom:635.940000px;}
.y5a{bottom:637.020000px;}
.y19e{bottom:639.900000px;}
.y29{bottom:642.780000px;}
.yd0{bottom:646.020000px;}
.y164{bottom:647.820000px;}
.y9b{bottom:653.220000px;}
.y108{bottom:654.300000px;}
.y59{bottom:655.020000px;}
.y28{bottom:658.260000px;}
.y163{bottom:665.850000px;}
.ycf{bottom:667.650000px;}
.y9a{bottom:671.610000px;}
.y107{bottom:672.330000px;}
.y58{bottom:673.050000px;}
.y27{bottom:673.770000px;}
.y19d{bottom:675.930000px;}
.y162{bottom:684.210000px;}
.y99{bottom:689.610000px;}
.y106{bottom:690.330000px;}
.y57{bottom:691.050000px;}
.y19c{bottom:694.290000px;}
.yce{bottom:695.010000px;}
.y26{bottom:695.370000px;}
.y161{bottom:702.210000px;}
.y98{bottom:707.610000px;}
.y105{bottom:708.690000px;}
.y56{bottom:709.410000px;}
.y25{bottom:710.850000px;}
.y19b{bottom:712.290000px;}
.ycd{bottom:713.010000px;}
.y160{bottom:720.210000px;}
.y97{bottom:725.610000px;}
.y24{bottom:726.330000px;}
.y151{bottom:726.690000px;}
.y55{bottom:727.410000px;}
.y104{bottom:730.290000px;}
.ycc{bottom:731.010000px;}
.y15f{bottom:738.570000px;}
.y23{bottom:741.810000px;}
.y96{bottom:743.970000px;}
.y150{bottom:744.690000px;}
.y54{bottom:745.410000px;}
.y103{bottom:747.570000px;}
.y19a{bottom:748.650000px;}
.ycb{bottom:749.370000px;}
.y15e{bottom:756.570000px;}
.y22{bottom:757.290000px;}
.y95{bottom:761.970000px;}
.y14f{bottom:763.050000px;}
.y53{bottom:763.770000px;}
.y125{bottom:765.570000px;}
.y199{bottom:766.650000px;}
.yca{bottom:767.370000px;}
.y21{bottom:772.770000px;}
.y102{bottom:774.570000px;}
.y1cd{bottom:775.290000px;}
.y94{bottom:779.970000px;}
.y14e{bottom:781.050000px;}
.y52{bottom:781.770000px;}
.y13e{bottom:783.930000px;}
.y198{bottom:784.650000px;}
.yc9{bottom:785.370000px;}
.y20{bottom:788.250000px;}
.y101{bottom:792.930000px;}
.y1cc{bottom:793.650000px;}
.y93{bottom:798.330000px;}
.y14d{bottom:799.050000px;}
.y51{bottom:799.815000px;}
.y197{bottom:803.055000px;}
.y1f{bottom:803.775000px;}
.y1cb{bottom:807.375000px;}
.y100{bottom:810.975000px;}
.y92{bottom:816.375000px;}
.y14c{bottom:817.095000px;}
.y50{bottom:818.175000px;}
.y1e{bottom:819.615000px;}
.y196{bottom:821.055000px;}
.yc8{bottom:821.775000px;}
.yff{bottom:828.975000px;}
.y91{bottom:834.375000px;}
.y1d{bottom:835.095000px;}
.y4f{bottom:836.175000px;}
.y14b{bottom:839.055000px;}
.yc7{bottom:839.775000px;}
.yfe{bottom:846.975000px;}
.y1c{bottom:850.575000px;}
.y90{bottom:852.735000px;}
.y4e{bottom:854.175000px;}
.y14a{bottom:856.335000px;}
.y195{bottom:857.055000px;}
.yc6{bottom:858.135000px;}
.yfd{bottom:865.335000px;}
.y1b{bottom:866.055000px;}
.y8f{bottom:870.735000px;}
.y4d{bottom:872.535000px;}
.y1ca{bottom:873.615000px;}
.y194{bottom:875.415000px;}
.yc5{bottom:876.135000px;}
.y1a{bottom:881.535000px;}
.yfc{bottom:883.335000px;}
.y8e{bottom:888.735000px;}
.y4c{bottom:890.535000px;}
.y1c9{bottom:890.895000px;}
.y193{bottom:893.415000px;}
.yc4{bottom:894.135000px;}
.y19{bottom:897.015000px;}
.yfb{bottom:901.335000px;}
.y8d{bottom:907.095000px;}
.y1c8{bottom:908.175000px;}
.y4b{bottom:908.535000px;}
.y192{bottom:911.415000px;}
.yc3{bottom:912.135000px;}
.y18{bottom:912.495000px;}
.yfa{bottom:919.695000px;}
.y8c{bottom:925.095000px;}
.y1c7{bottom:925.455000px;}
.y4a{bottom:926.535000px;}
.y17{bottom:927.975000px;}
.y191{bottom:929.775000px;}
.yc2{bottom:930.495000px;}
.yf9{bottom:937.725000px;}
.y1c6{bottom:942.765000px;}
.y8b{bottom:943.125000px;}
.y16{bottom:943.845000px;}
.y49{bottom:944.925000px;}
.y190{bottom:947.805000px;}
.yc1{bottom:948.525000px;}
.yf8{bottom:955.725000px;}
.y15{bottom:959.325000px;}
.y1c5{bottom:960.045000px;}
.y8a{bottom:961.485000px;}
.y48{bottom:962.925000px;}
.y18f{bottom:965.805000px;}
.yc0{bottom:966.525000px;}
.yf7{bottom:974.085000px;}
.y14{bottom:974.805000px;}
.y89{bottom:979.485000px;}
.y47{bottom:980.925000px;}
.ybf{bottom:984.885000px;}
.y13{bottom:990.285000px;}
.yf6{bottom:992.085000px;}
.y1c4{bottom:993.885000px;}
.y88{bottom:997.485000px;}
.y46{bottom:999.285000px;}
.ybe{bottom:1002.885000px;}
.y12{bottom:1005.765000px;}
.y1c3{bottom:1007.565000px;}
.yf5{bottom:1010.085000px;}
.y87{bottom:1015.485000px;}
.y45{bottom:1017.285000px;}
.ybd{bottom:1020.885000px;}
.y11{bottom:1021.245000px;}
.yf4{bottom:1028.445000px;}
.y86{bottom:1033.845000px;}
.y44{bottom:1035.285000px;}
.y10{bottom:1036.725000px;}
.ybc{bottom:1039.245000px;}
.yf3{bottom:1046.445000px;}
.y1c2{bottom:1048.965000px;}
.y85{bottom:1051.845000px;}
.ybb{bottom:1057.245000px;}
.y1c1{bottom:1062.645000px;}
.yf2{bottom:1064.445000px;}
.y84{bottom:1069.890000px;}
.yf{bottom:1070.970000px;}
.yba{bottom:1075.290000px;}
.y1c0{bottom:1076.730000px;}
.yf1{bottom:1082.490000px;}
.y83{bottom:1088.250000px;}
.y1bf{bottom:1090.410000px;}
.yb9{bottom:1093.650000px;}
.yf0{bottom:1100.850000px;}
.y1be{bottom:1104.090000px;}
.y82{bottom:1109.850000px;}
.yb8{bottom:1111.650000px;}
.ye{bottom:1112.370000px;}
.yef{bottom:1118.850000px;}
.y1bd{bottom:1127.490000px;}
.yb7{bottom:1129.650000px;}
.y81{bottom:1136.850000px;}
.yd{bottom:1153.770000px;}
.y80{bottom:1155.210000px;}
.yb6{bottom:1155.930000px;}
.y1bc{bottom:1162.410000px;}
.y7f{bottom:1173.210000px;}
.y1bb{bottom:1176.090000px;}
.yee{bottom:1199.130000px;}
.y6{bottom:1217.520000px;}
.y5{bottom:1234.800000px;}
.hc{height:33.180469px;}
.h11{height:33.528516px;}
.h10{height:34.595859px;}
.h3{height:36.150469px;}
.hb{height:38.608594px;}
.h9{height:41.227031px;}
.h5{height:42.229688px;}
.h4{height:42.672656px;}
.hd{height:44.031094px;}
.hf{height:44.798906px;}
.h2{height:45.000000px;}
.he{height:46.251562px;}
.h8{height:46.736719px;}
.h6{height:55.080000px;}
.h12{height:65.884219px;}
.ha{height:83.453906px;}
.h7{height:100.546875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:193.395000px;}
.w2{width:274.785000px;}
.w1{width:892.500000px;}
.w4{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:10.800000px;}
.x1b{left:65.195987px;}
.x1a{left:69.155987px;}
.xb{left:70.236000px;}
.x1{left:71.676000px;}
.x18{left:72.755987px;}
.x14{left:76.715987px;}
.x19{left:77.795987px;}
.xa{left:81.036000px;}
.x16{left:84.275987px;}
.x15{left:88.595987px;}
.x7{left:90.396000px;}
.x1f{left:91.475987px;}
.x1e{left:102.275987px;}
.x17{left:123.515987px;}
.x8{left:124.596000px;}
.x13{left:138.671987px;}
.x10{left:144.431987px;}
.x1d{left:147.671987px;}
.xc{left:181.155000px;}
.x1c{left:185.474987px;}
.x9{left:388.590000px;}
.x3{left:424.980000px;}
.x5{left:439.020000px;}
.x4{left:442.260000px;}
.xf{left:446.579987px;}
.xe{left:457.380000px;}
.xd{left:468.180000px;}
.x20{left:478.619987px;}
.x6{left:494.100000px;}
.x11{left:495.899987px;}
.x22{left:545.969987px;}
.x21{left:565.409987px;}
.x12{left:594.569987px;}
.x23{left:822.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-1.280000pt;}
.ls17{letter-spacing:-1.264000pt;}
.lsb{letter-spacing:-0.864000pt;}
.ls7{letter-spacing:-0.837333pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.560000pt;}
.lsf{letter-spacing:-0.460800pt;}
.lsa{letter-spacing:-0.432533pt;}
.ls15{letter-spacing:-0.414933pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.278933pt;}
.ls1b{letter-spacing:-0.017920pt;}
.ls12{letter-spacing:-0.013867pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.013867pt;}
.ls3{letter-spacing:0.014080pt;}
.ls1c{letter-spacing:0.017920pt;}
.ls22{letter-spacing:0.028587pt;}
.ls13{letter-spacing:0.222933pt;}
.ls2{letter-spacing:0.367360pt;}
.ls1d{letter-spacing:0.414933pt;}
.ls14{letter-spacing:0.432533pt;}
.ls20{letter-spacing:0.450667pt;}
.ls18{letter-spacing:0.591360pt;}
.ls1{letter-spacing:0.640000pt;}
.ls11{letter-spacing:1.056000pt;}
.ls1a{letter-spacing:8.094720pt;}
.ls19{letter-spacing:11.934720pt;}
.lse{letter-spacing:13.440000pt;}
.lsd{letter-spacing:18.560000pt;}
.ls23{letter-spacing:31.777280pt;}
.ls21{letter-spacing:36.254720pt;}
.ls0{letter-spacing:77.450667pt;}
.ls1e{letter-spacing:81.054720pt;}
.ls1f{letter-spacing:82.334720pt;}
.ws16{word-spacing:-53.760000pt;}
.ws15{word-spacing:-13.890667pt;}
.wsc{word-spacing:-13.872533pt;}
.ws14{word-spacing:-13.854933pt;}
.ws13{word-spacing:-13.457920pt;}
.ws6{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.422080pt;}
.ws11{word-spacing:-13.025067pt;}
.ws12{word-spacing:-13.007467pt;}
.ws7{word-spacing:-12.576000pt;}
.ws2{word-spacing:-12.160000pt;}
.ws3{word-spacing:-11.881067pt;}
.ws4{word-spacing:-11.600000pt;}
.wsb{word-spacing:-11.200000pt;}
.wsf{word-spacing:-11.151360pt;}
.wsa{word-spacing:-10.782933pt;}
.ws8{word-spacing:-10.573867pt;}
.ws0{word-spacing:-10.560000pt;}
.ws9{word-spacing:-10.546133pt;}
.ws1{word-spacing:-10.240000pt;}
.wse{word-spacing:0.000000pt;}
.ws5{word-spacing:2.144960pt;}
.wsd{word-spacing:11.070080pt;}
._2{margin-left:-1.827732pt;}
._1{margin-left:-0.899016pt;}
._0{width:1.394173pt;}
._3{width:2.787756pt;}
._a{width:4.057689pt;}
._9{width:5.192517pt;}
._f{width:6.484887pt;}
._8{width:7.749523pt;}
._7{width:9.000072pt;}
._29{width:9.933065pt;}
._e{width:10.833812pt;}
._26{width:11.750194pt;}
._45{width:12.648563pt;}
._5{width:13.772828pt;}
._6{width:15.154655pt;}
._4{width:16.318779pt;}
._b{width:17.400410pt;}
._1d{width:18.478097pt;}
._c{width:19.435267pt;}
._d{width:20.383263pt;}
._1c{width:21.450132pt;}
._11{width:23.204836pt;}
._10{width:24.428332pt;}
._28{width:25.433492pt;}
._27{width:26.987735pt;}
._16{width:27.898724pt;}
._17{width:28.878929pt;}
._15{width:30.063379pt;}
._14{width:31.027681pt;}
._12{width:32.077903pt;}
._13{width:33.005875pt;}
._33{width:34.108219pt;}
._18{width:35.389430pt;}
._21{width:36.310628pt;}
._25{width:37.848431pt;}
._24{width:38.946300pt;}
._23{width:40.269827pt;}
._22{width:41.565313pt;}
._41{width:42.643215pt;}
._30{width:43.629669pt;}
._2b{width:44.552351pt;}
._2a{width:45.534397pt;}
._2d{width:46.490975pt;}
._2f{width:47.469972pt;}
._2e{width:48.437652pt;}
._35{width:49.412506pt;}
._3f{width:52.838242pt;}
._3e{width:54.028692pt;}
._3d{width:54.986132pt;}
._1e{width:56.548823pt;}
._1f{width:57.778775pt;}
._1b{width:58.934293pt;}
._40{width:59.867254pt;}
._1a{width:60.902612pt;}
._36{width:62.024136pt;}
._34{width:65.865048pt;}
._39{width:67.042199pt;}
._3a{width:68.812800pt;}
._42{width:70.482839pt;}
._38{width:71.393280pt;}
._37{width:72.575892pt;}
._19{width:78.724756pt;}
._2c{width:80.023007pt;}
._3c{width:82.958441pt;}
._3b{width:83.862211pt;}
._44{width:89.477120pt;}
._20{width:95.803692pt;}
._43{width:192.518039pt;}
._32{width:287.466667pt;}
._31{width:946.965333pt;}
.fs0{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:106.240000pt;}
.fs2{font-size:128.000000pt;}
.y7e{bottom:-18.911867pt;}
.y7d{bottom:-6.399867pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:2.240000pt;}
.y8{bottom:2.912000pt;}
.y4{bottom:5.760000pt;}
.y7c{bottom:5.760133pt;}
.y79{bottom:9.311867pt;}
.y1{bottom:9.312000pt;}
.yb{bottom:14.400000pt;}
.y7{bottom:16.992000pt;}
.y3{bottom:17.920000pt;}
.y7b{bottom:17.920133pt;}
.ya{bottom:26.560000pt;}
.y2{bottom:30.080000pt;}
.y7a{bottom:30.080133pt;}
.y9{bottom:39.040000pt;}
.y15d{bottom:71.072000pt;}
.y78{bottom:72.672000pt;}
.y149{bottom:74.272000pt;}
.y124{bottom:75.232000pt;}
.y18e{bottom:76.832000pt;}
.yed{bottom:80.032000pt;}
.y17e{bottom:82.272000pt;}
.y1ba{bottom:83.872000pt;}
.yb5{bottom:86.432000pt;}
.y15c{bottom:87.072000pt;}
.y43{bottom:88.352000pt;}
.y77{bottom:88.672000pt;}
.y148{bottom:90.592000pt;}
.y123{bottom:91.232000pt;}
.y18d{bottom:92.832000pt;}
.yec{bottom:96.032000pt;}
.y17d{bottom:98.272000pt;}
.y42{bottom:100.832000pt;}
.y13d{bottom:102.432000pt;}
.y15b{bottom:103.392000pt;}
.yb4{bottom:104.032000pt;}
.y76{bottom:104.672000pt;}
.y147{bottom:106.592000pt;}
.y122{bottom:107.232000pt;}
.y1b9{bottom:108.512000pt;}
.y18c{bottom:108.832000pt;}
.yeb{bottom:112.032000pt;}
.y41{bottom:112.992000pt;}
.y17c{bottom:114.592000pt;}
.y13c{bottom:118.784000pt;}
.y15a{bottom:119.424000pt;}
.y1b8{bottom:120.704000pt;}
.y75{bottom:121.024000pt;}
.yb3{bottom:121.664000pt;}
.y146{bottom:122.624000pt;}
.y121{bottom:123.584000pt;}
.y18b{bottom:124.864000pt;}
.yea{bottom:128.384000pt;}
.y17b{bottom:130.624000pt;}
.y1b7{bottom:132.864000pt;}
.y13b{bottom:134.786667pt;}
.y159{bottom:135.426667pt;}
.y74{bottom:137.026667pt;}
.y40{bottom:137.666667pt;}
.y145{bottom:138.946667pt;}
.yb2{bottom:139.266667pt;}
.y120{bottom:139.586667pt;}
.y18a{bottom:141.186667pt;}
.y1b6{bottom:145.346667pt;}
.y17a{bottom:146.626667pt;}
.ye9{bottom:147.586667pt;}
.y3f{bottom:149.826667pt;}
.y13a{bottom:150.786667pt;}
.y158{bottom:151.746667pt;}
.y73{bottom:153.026667pt;}
.y144{bottom:154.946667pt;}
.y11f{bottom:155.586667pt;}
.yb1{bottom:156.866667pt;}
.y189{bottom:157.186667pt;}
.y1b5{bottom:157.506667pt;}
.y3e{bottom:162.626667pt;}
.y179{bottom:162.946667pt;}
.y139{bottom:166.786667pt;}
.y157{bottom:167.746667pt;}
.y72{bottom:169.026667pt;}
.y1b4{bottom:169.666667pt;}
.y143{bottom:170.946667pt;}
.ye8{bottom:171.586667pt;}
.y11e{bottom:171.906667pt;}
.y188{bottom:173.186667pt;}
.yb0{bottom:174.466667pt;}
.y3d{bottom:177.666667pt;}
.y178{bottom:178.946667pt;}
.y1b3{bottom:182.146667pt;}
.y138{bottom:183.106667pt;}
.y156{bottom:183.746667pt;}
.y71{bottom:185.346667pt;}
.ye7{bottom:187.906667pt;}
.y187{bottom:189.506667pt;}
.y3c{bottom:191.426667pt;}
.yaf{bottom:192.386667pt;}
.y142{bottom:194.306667pt;}
.y177{bottom:194.946667pt;}
.y137{bottom:199.106667pt;}
.y155{bottom:199.746667pt;}
.y70{bottom:201.346667pt;}
.ye6{bottom:203.906667pt;}
.y3b{bottom:205.186667pt;}
.y186{bottom:205.506667pt;}
.y1b2{bottom:206.466667pt;}
.yae{bottom:209.986667pt;}
.y11d{bottom:211.266667pt;}
.y136{bottom:215.106667pt;}
.y154{bottom:216.066667pt;}
.y6f{bottom:217.346667pt;}
.y3a{bottom:218.946667pt;}
.ye5{bottom:219.906667pt;}
.y185{bottom:221.506667pt;}
.y141{bottom:226.306667pt;}
.y176{bottom:227.266667pt;}
.yad{bottom:227.586667pt;}
.y135{bottom:231.426667pt;}
.y153{bottom:232.066667pt;}
.y39{bottom:232.706667pt;}
.y6e{bottom:233.666667pt;}
.ye4{bottom:236.253333pt;}
.y184{bottom:237.853333pt;}
.y1b1{bottom:239.773333pt;}
.y140{bottom:242.653333pt;}
.y11c{bottom:243.293333pt;}
.yac{bottom:245.213333pt;}
.y38{bottom:246.813333pt;}
.y6d{bottom:249.693333pt;}
.y134{bottom:250.653333pt;}
.y152{bottom:251.293333pt;}
.ye3{bottom:252.253333pt;}
.y183{bottom:253.853333pt;}
.y13f{bottom:258.653333pt;}
.y11b{bottom:259.293333pt;}
.yab{bottom:262.813333pt;}
.y6c{bottom:265.693333pt;}
.ye2{bottom:268.253333pt;}
.y182{bottom:269.853333pt;}
.y1b0{bottom:271.773333pt;}
.y133{bottom:274.653333pt;}
.y11a{bottom:275.613333pt;}
.yaa{bottom:280.413333pt;}
.y6b{bottom:282.013333pt;}
.ye1{bottom:284.573333pt;}
.y181{bottom:286.173333pt;}
.y1af{bottom:287.773333pt;}
.y132{bottom:290.973333pt;}
.y119{bottom:291.613333pt;}
.y175{bottom:294.813333pt;}
.y6a{bottom:298.013333pt;}
.ye0{bottom:300.573333pt;}
.y180{bottom:302.173333pt;}
.y1ae{bottom:304.093333pt;}
.y131{bottom:306.973333pt;}
.y37{bottom:307.613333pt;}
.y174{bottom:310.173333pt;}
.y69{bottom:314.013333pt;}
.ya9{bottom:315.613333pt;}
.ydf{bottom:316.573333pt;}
.y17f{bottom:318.173333pt;}
.y1ad{bottom:320.093333pt;}
.y130{bottom:322.973333pt;}
.y36{bottom:323.613333pt;}
.y118{bottom:323.933333pt;}
.y68{bottom:330.333333pt;}
.yde{bottom:332.573333pt;}
.ya8{bottom:333.213333pt;}
.y173{bottom:334.173333pt;}
.y1ac{bottom:336.093333pt;}
.y12f{bottom:339.293333pt;}
.y35{bottom:339.613333pt;}
.y117{bottom:339.933333pt;}
.y67{bottom:346.333333pt;}
.ydd{bottom:348.893333pt;}
.y172{bottom:350.493333pt;}
.ya7{bottom:350.813333pt;}
.y1ab{bottom:352.093333pt;}
.y12e{bottom:355.333333pt;}
.y34{bottom:355.653333pt;}
.y116{bottom:355.973333pt;}
.y66{bottom:362.373333pt;}
.ydc{bottom:364.933333pt;}
.y171{bottom:366.533333pt;}
.y1aa{bottom:368.453333pt;}
.ya6{bottom:368.773333pt;}
.y12d{bottom:371.333333pt;}
.y33{bottom:371.973333pt;}
.y115{bottom:372.293333pt;}
.y65{bottom:378.373333pt;}
.ydb{bottom:380.933333pt;}
.y170{bottom:382.533333pt;}
.y1a9{bottom:384.453333pt;}
.ya5{bottom:386.373333pt;}
.y12c{bottom:387.653333pt;}
.y32{bottom:387.973333pt;}
.y114{bottom:388.293333pt;}
.y64{bottom:394.693333pt;}
.yda{bottom:397.253333pt;}
.y16f{bottom:398.853333pt;}
.y1a8{bottom:400.453333pt;}
.y12b{bottom:403.653333pt;}
.y31{bottom:403.973333pt;}
.y113{bottom:404.293333pt;}
.y63{bottom:410.693333pt;}
.yd9{bottom:413.253333pt;}
.y16e{bottom:414.853333pt;}
.y1a7{bottom:416.773333pt;}
.y12a{bottom:419.653333pt;}
.y30{bottom:420.293333pt;}
.y112{bottom:420.613333pt;}
.ya4{bottom:421.573333pt;}
.y62{bottom:426.693333pt;}
.yd8{bottom:429.253333pt;}
.y16d{bottom:430.853333pt;}
.y1a6{bottom:432.773333pt;}
.y129{bottom:435.653333pt;}
.y2f{bottom:436.293333pt;}
.y111{bottom:436.613333pt;}
.ya3{bottom:439.173333pt;}
.y61{bottom:443.013333pt;}
.yd7{bottom:445.573333pt;}
.y16c{bottom:447.173333pt;}
.y1a5{bottom:448.773333pt;}
.y128{bottom:451.973333pt;}
.y2e{bottom:452.293333pt;}
.y110{bottom:452.613333pt;}
.ya2{bottom:456.773333pt;}
.y60{bottom:459.013333pt;}
.yd6{bottom:461.573333pt;}
.y16b{bottom:463.173333pt;}
.y1a4{bottom:465.093333pt;}
.y127{bottom:467.973333pt;}
.y2d{bottom:468.613333pt;}
.y10f{bottom:468.933333pt;}
.y5f{bottom:475.040000pt;}
.ya1{bottom:476.000000pt;}
.yd5{bottom:477.600000pt;}
.y16a{bottom:479.200000pt;}
.y1a3{bottom:481.120000pt;}
.y126{bottom:484.000000pt;}
.y2c{bottom:484.640000pt;}
.y10e{bottom:484.960000pt;}
.yd4{bottom:493.920000pt;}
.y5e{bottom:494.560000pt;}
.y169{bottom:495.520000pt;}
.y1a2{bottom:497.120000pt;}
.ya0{bottom:500.320000pt;}
.y10d{bottom:500.960000pt;}
.y2b{bottom:504.480000pt;}
.y5d{bottom:509.920000pt;}
.y168{bottom:511.520000pt;}
.y1a1{bottom:513.440000pt;}
.y9f{bottom:516.320000pt;}
.y10c{bottom:516.960000pt;}
.yd3{bottom:525.920000pt;}
.y167{bottom:527.520000pt;}
.y1a0{bottom:529.440000pt;}
.y9e{bottom:532.320000pt;}
.y10b{bottom:533.280000pt;}
.y5c{bottom:533.920000pt;}
.y2a{bottom:540.000000pt;}
.yd2{bottom:541.920000pt;}
.y166{bottom:543.520000pt;}
.y19f{bottom:545.440000pt;}
.y9d{bottom:548.640000pt;}
.y10a{bottom:549.280000pt;}
.y5b{bottom:549.920000pt;}
.yd1{bottom:558.240000pt;}
.y165{bottom:559.840000pt;}
.y9c{bottom:564.640000pt;}
.y109{bottom:565.280000pt;}
.y5a{bottom:566.240000pt;}
.y19e{bottom:568.800000pt;}
.y29{bottom:571.360000pt;}
.yd0{bottom:574.240000pt;}
.y164{bottom:575.840000pt;}
.y9b{bottom:580.640000pt;}
.y108{bottom:581.600000pt;}
.y59{bottom:582.240000pt;}
.y28{bottom:585.120000pt;}
.y163{bottom:591.866667pt;}
.ycf{bottom:593.466667pt;}
.y9a{bottom:596.986667pt;}
.y107{bottom:597.626667pt;}
.y58{bottom:598.266667pt;}
.y27{bottom:598.906667pt;}
.y19d{bottom:600.826667pt;}
.y162{bottom:608.186667pt;}
.y99{bottom:612.986667pt;}
.y106{bottom:613.626667pt;}
.y57{bottom:614.266667pt;}
.y19c{bottom:617.146667pt;}
.yce{bottom:617.786667pt;}
.y26{bottom:618.106667pt;}
.y161{bottom:624.186667pt;}
.y98{bottom:628.986667pt;}
.y105{bottom:629.946667pt;}
.y56{bottom:630.586667pt;}
.y25{bottom:631.866667pt;}
.y19b{bottom:633.146667pt;}
.ycd{bottom:633.786667pt;}
.y160{bottom:640.186667pt;}
.y97{bottom:644.986667pt;}
.y24{bottom:645.626667pt;}
.y151{bottom:645.946667pt;}
.y55{bottom:646.586667pt;}
.y104{bottom:649.146667pt;}
.ycc{bottom:649.786667pt;}
.y15f{bottom:656.506667pt;}
.y23{bottom:659.386667pt;}
.y96{bottom:661.306667pt;}
.y150{bottom:661.946667pt;}
.y54{bottom:662.586667pt;}
.y103{bottom:664.506667pt;}
.y19a{bottom:665.466667pt;}
.ycb{bottom:666.106667pt;}
.y15e{bottom:672.506667pt;}
.y22{bottom:673.146667pt;}
.y95{bottom:677.306667pt;}
.y14f{bottom:678.266667pt;}
.y53{bottom:678.906667pt;}
.y125{bottom:680.506667pt;}
.y199{bottom:681.466667pt;}
.yca{bottom:682.106667pt;}
.y21{bottom:686.906667pt;}
.y102{bottom:688.506667pt;}
.y1cd{bottom:689.146667pt;}
.y94{bottom:693.306667pt;}
.y14e{bottom:694.266667pt;}
.y52{bottom:694.906667pt;}
.y13e{bottom:696.826667pt;}
.y198{bottom:697.466667pt;}
.yc9{bottom:698.106667pt;}
.y20{bottom:700.666667pt;}
.y101{bottom:704.826667pt;}
.y1cc{bottom:705.466667pt;}
.y93{bottom:709.626667pt;}
.y14d{bottom:710.266667pt;}
.y51{bottom:710.946667pt;}
.y197{bottom:713.826667pt;}
.y1f{bottom:714.466667pt;}
.y1cb{bottom:717.666667pt;}
.y100{bottom:720.866667pt;}
.y92{bottom:725.666667pt;}
.y14c{bottom:726.306667pt;}
.y50{bottom:727.266667pt;}
.y1e{bottom:728.546667pt;}
.y196{bottom:729.826667pt;}
.yc8{bottom:730.466667pt;}
.yff{bottom:736.866667pt;}
.y91{bottom:741.666667pt;}
.y1d{bottom:742.306667pt;}
.y4f{bottom:743.266667pt;}
.y14b{bottom:745.826667pt;}
.yc7{bottom:746.466667pt;}
.yfe{bottom:752.866667pt;}
.y1c{bottom:756.066667pt;}
.y90{bottom:757.986667pt;}
.y4e{bottom:759.266667pt;}
.y14a{bottom:761.186667pt;}
.y195{bottom:761.826667pt;}
.yc6{bottom:762.786667pt;}
.yfd{bottom:769.186667pt;}
.y1b{bottom:769.826667pt;}
.y8f{bottom:773.986667pt;}
.y4d{bottom:775.586667pt;}
.y1ca{bottom:776.546667pt;}
.y194{bottom:778.146667pt;}
.yc5{bottom:778.786667pt;}
.y1a{bottom:783.586667pt;}
.yfc{bottom:785.186667pt;}
.y8e{bottom:789.986667pt;}
.y4c{bottom:791.586667pt;}
.y1c9{bottom:791.906667pt;}
.y193{bottom:794.146667pt;}
.yc4{bottom:794.786667pt;}
.y19{bottom:797.346667pt;}
.yfb{bottom:801.186667pt;}
.y8d{bottom:806.306667pt;}
.y1c8{bottom:807.266667pt;}
.y4b{bottom:807.586667pt;}
.y192{bottom:810.146667pt;}
.yc3{bottom:810.786667pt;}
.y18{bottom:811.106667pt;}
.yfa{bottom:817.506667pt;}
.y8c{bottom:822.306667pt;}
.y1c7{bottom:822.626667pt;}
.y4a{bottom:823.586667pt;}
.y17{bottom:824.866667pt;}
.y191{bottom:826.466667pt;}
.yc2{bottom:827.106667pt;}
.yf9{bottom:833.533333pt;}
.y1c6{bottom:838.013333pt;}
.y8b{bottom:838.333333pt;}
.y16{bottom:838.973333pt;}
.y49{bottom:839.933333pt;}
.y190{bottom:842.493333pt;}
.yc1{bottom:843.133333pt;}
.yf8{bottom:849.533333pt;}
.y15{bottom:852.733333pt;}
.y1c5{bottom:853.373333pt;}
.y8a{bottom:854.653333pt;}
.y48{bottom:855.933333pt;}
.y18f{bottom:858.493333pt;}
.yc0{bottom:859.133333pt;}
.yf7{bottom:865.853333pt;}
.y14{bottom:866.493333pt;}
.y89{bottom:870.653333pt;}
.y47{bottom:871.933333pt;}
.ybf{bottom:875.453333pt;}
.y13{bottom:880.253333pt;}
.yf6{bottom:881.853333pt;}
.y1c4{bottom:883.453333pt;}
.y88{bottom:886.653333pt;}
.y46{bottom:888.253333pt;}
.ybe{bottom:891.453333pt;}
.y12{bottom:894.013333pt;}
.y1c3{bottom:895.613333pt;}
.yf5{bottom:897.853333pt;}
.y87{bottom:902.653333pt;}
.y45{bottom:904.253333pt;}
.ybd{bottom:907.453333pt;}
.y11{bottom:907.773333pt;}
.yf4{bottom:914.173333pt;}
.y86{bottom:918.973333pt;}
.y44{bottom:920.253333pt;}
.y10{bottom:921.533333pt;}
.ybc{bottom:923.773333pt;}
.yf3{bottom:930.173333pt;}
.y1c2{bottom:932.413333pt;}
.y85{bottom:934.973333pt;}
.ybb{bottom:939.773333pt;}
.y1c1{bottom:944.573333pt;}
.yf2{bottom:946.173333pt;}
.y84{bottom:951.013333pt;}
.yf{bottom:951.973333pt;}
.yba{bottom:955.813333pt;}
.y1c0{bottom:957.093333pt;}
.yf1{bottom:962.213333pt;}
.y83{bottom:967.333333pt;}
.y1bf{bottom:969.253333pt;}
.yb9{bottom:972.133333pt;}
.yf0{bottom:978.533333pt;}
.y1be{bottom:981.413333pt;}
.y82{bottom:986.533333pt;}
.yb8{bottom:988.133333pt;}
.ye{bottom:988.773333pt;}
.yef{bottom:994.533333pt;}
.y1bd{bottom:1002.213333pt;}
.yb7{bottom:1004.133333pt;}
.y81{bottom:1010.533333pt;}
.yd{bottom:1025.573333pt;}
.y80{bottom:1026.853333pt;}
.yb6{bottom:1027.493333pt;}
.y1bc{bottom:1033.253333pt;}
.y7f{bottom:1042.853333pt;}
.y1bb{bottom:1045.413333pt;}
.yee{bottom:1065.893333pt;}
.y6{bottom:1082.240000pt;}
.y5{bottom:1097.600000pt;}
.hc{height:29.493750pt;}
.h11{height:29.803125pt;}
.h10{height:30.751875pt;}
.h3{height:32.133750pt;}
.hb{height:34.318750pt;}
.h9{height:36.646250pt;}
.h5{height:37.537500pt;}
.h4{height:37.931250pt;}
.hd{height:39.138750pt;}
.hf{height:39.821250pt;}
.h2{height:40.000000pt;}
.he{height:41.112500pt;}
.h8{height:41.543750pt;}
.h6{height:48.960000pt;}
.h12{height:58.563750pt;}
.ha{height:74.181250pt;}
.h7{height:89.375000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:171.906667pt;}
.w2{width:244.253333pt;}
.w1{width:793.333333pt;}
.w4{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:9.600000pt;}
.x1b{left:57.951988pt;}
.x1a{left:61.471988pt;}
.xb{left:62.432000pt;}
.x1{left:63.712000pt;}
.x18{left:64.671988pt;}
.x14{left:68.191988pt;}
.x19{left:69.151988pt;}
.xa{left:72.032000pt;}
.x16{left:74.911988pt;}
.x15{left:78.751988pt;}
.x7{left:80.352000pt;}
.x1f{left:81.311988pt;}
.x1e{left:90.911988pt;}
.x17{left:109.791988pt;}
.x8{left:110.752000pt;}
.x13{left:123.263988pt;}
.x10{left:128.383988pt;}
.x1d{left:131.263988pt;}
.xc{left:161.026667pt;}
.x1c{left:164.866655pt;}
.x9{left:345.413333pt;}
.x3{left:377.760000pt;}
.x5{left:390.240000pt;}
.x4{left:393.120000pt;}
.xf{left:396.959988pt;}
.xe{left:406.560000pt;}
.xd{left:416.160000pt;}
.x20{left:425.439988pt;}
.x6{left:439.200000pt;}
.x11{left:440.799988pt;}
.x22{left:485.306655pt;}
.x21{left:502.586655pt;}
.x12{left:528.506655pt;}
.x23{left:731.493322pt;}
}




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