
    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_b32de0081c4a41e912f9f273.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_1ba311b7383712d82e76f780.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_0f13d45945bb94a2afd54d18.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_d77d53b84a6189e04764be11.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_aa13ceba7aef6f3362751b96.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_70ffda6324dd6f4e742222b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_2571a2e6b8772cc294f3c019.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_7ef300316267327d18e8a001.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-87.840000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls6{letter-spacing:-1.008000px;}
.ls9{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.053280px;}
.lse{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.lsc{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.234000px;}
.ls2{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.426240px;}
.ls7{letter-spacing:0.828000px;}
.ls10{letter-spacing:25.308000px;}
.lsa{letter-spacing:52.668000px;}
.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;}
}
.ws5{word-spacing:-19.457280px;}
.ws7{word-spacing:-19.431360px;}
.ws1{word-spacing:-16.560000px;}
.ws2{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.734000px;}
.wsa{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.392000px;}
.ws4{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-2.092320px;}
._0{margin-left:-1.026000px;}
._1{width:1.866000px;}
._5{width:2.887920px;}
._4{width:4.003920px;}
._8{width:5.353920px;}
._17{width:6.387360px;}
._6{width:7.390320px;}
._a{width:8.891520px;}
._7{width:10.338480px;}
._14{width:11.639520px;}
._9{width:13.850880px;}
._1d{width:15.012000px;}
._d{width:16.092000px;}
._15{width:17.820000px;}
._16{width:18.900000px;}
._c{width:20.541360px;}
._b{width:21.573360px;}
._e{width:22.788000px;}
._1c{width:24.678000px;}
._1e{width:26.008320px;}
._10{width:27.594000px;}
._18{width:28.630320px;}
._12{width:29.862000px;}
._11{width:30.996000px;}
._1f{width:32.238000px;}
._13{width:33.480000px;}
._20{width:34.614000px;}
._21{width:35.734320px;}
._27{width:36.889680px;}
._24{width:38.124000px;}
._22{width:39.676320px;}
._f{width:40.878000px;}
._1b{width:42.768000px;}
._19{width:44.010000px;}
._1a{width:45.468000px;}
._28{width:47.746320px;}
._2c{width:49.258320px;}
._2b{width:50.652000px;}
._2a{width:52.336320px;}
._29{width:53.632320px;}
._32{width:54.688320px;}
._31{width:55.782000px;}
._25{width:56.808000px;}
._26{width:58.212000px;}
._2d{width:59.562000px;}
._30{width:60.750000px;}
._35{width:62.964000px;}
._2f{width:65.826000px;}
._33{width:72.468000px;}
._34{width:73.602000px;}
._23{width:75.384000px;}
._2e{width:96.350640px;}
._2{width:1169.580000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc8{color:rgb(34,34,34);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:102.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y49{bottom:3.240000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y5{bottom:39.780000px;}
.y1{bottom:60.660000px;}
.y46{bottom:70.380000px;}
.y45{bottom:90.210000px;}
.y16d{bottom:107.460000px;}
.y44{bottom:110.010000px;}
.y35{bottom:113.760000px;}
.y1b1{bottom:115.200000px;}
.y137{bottom:116.100000px;}
.y1e6{bottom:116.460000px;}
.y1bd{bottom:117.000000px;}
.y186{bottom:124.560000px;}
.y210{bottom:125.280000px;}
.y14f{bottom:125.460000px;}
.y111{bottom:125.820000px;}
.yb9{bottom:126.000000px;}
.y43{bottom:129.990000px;}
.y34{bottom:131.580000px;}
.y1b0{bottom:133.200000px;}
.y136{bottom:133.920000px;}
.y1e5{bottom:134.280000px;}
.y16c{bottom:134.640000px;}
.y83{bottom:135.000000px;}
.ye0{bottom:135.180000px;}
.y36{bottom:141.120000px;}
.y185{bottom:142.380000px;}
.y20f{bottom:143.100000px;}
.y110{bottom:143.640000px;}
.yb8{bottom:143.820000px;}
.y33{bottom:149.400000px;}
.y42{bottom:149.790000px;}
.y1af{bottom:151.020000px;}
.y135{bottom:151.380000px;}
.y143{bottom:151.740000px;}
.y1e4{bottom:152.280000px;}
.y16b{bottom:152.460000px;}
.y14e{bottom:152.640000px;}
.y82{bottom:152.820000px;}
.ydf{bottom:153.000000px;}
.y184{bottom:160.200000px;}
.y20e{bottom:161.100000px;}
.y10f{bottom:161.460000px;}
.yb7{bottom:161.640000px;}
.y48{bottom:162.900000px;}
.y32{bottom:167.220000px;}
.y1ae{bottom:168.840000px;}
.y134{bottom:169.200000px;}
.y142{bottom:169.560000px;}
.y41{bottom:169.590000px;}
.y1e3{bottom:170.100000px;}
.y16a{bottom:170.280000px;}
.y14d{bottom:170.460000px;}
.y81{bottom:170.640000px;}
.y183{bottom:178.200000px;}
.y20d{bottom:178.920000px;}
.y10e{bottom:179.280000px;}
.yb6{bottom:179.460000px;}
.yde{bottom:180.180000px;}
.y31{bottom:185.040000px;}
.y1ad{bottom:186.660000px;}
.y141{bottom:187.380000px;}
.y1e2{bottom:187.920000px;}
.y14c{bottom:188.280000px;}
.y80{bottom:188.460000px;}
.y40{bottom:189.390000px;}
.y47{bottom:191.700000px;}
.y182{bottom:195.660000px;}
.y133{bottom:196.380000px;}
.y20c{bottom:196.740000px;}
.yb5{bottom:197.280000px;}
.ydd{bottom:198.180000px;}
.y30{bottom:203.040000px;}
.y1ac{bottom:204.120000px;}
.y140{bottom:204.840000px;}
.y1e1{bottom:205.770000px;}
.y169{bottom:206.130000px;}
.y7f{bottom:206.310000px;}
.y3f{bottom:209.190000px;}
.y132{bottom:214.230000px;}
.y20b{bottom:214.590000px;}
.y10d{bottom:215.130000px;}
.yb4{bottom:215.310000px;}
.ydc{bottom:216.030000px;}
.y2f{bottom:220.890000px;}
.y13f{bottom:222.870000px;}
.y1e0{bottom:223.590000px;}
.y168{bottom:223.950000px;}
.y14b{bottom:224.130000px;}
.y7e{bottom:224.310000px;}
.y3e{bottom:229.170000px;}
.y1ab{bottom:231.510000px;}
.y131{bottom:232.230000px;}
.y20a{bottom:232.410000px;}
.y10c{bottom:232.950000px;}
.yb3{bottom:233.130000px;}
.ydb{bottom:233.850000px;}
.y2e{bottom:238.710000px;}
.y181{bottom:240.690000px;}
.y167{bottom:241.410000px;}
.y14a{bottom:241.590000px;}
.y7d{bottom:242.130000px;}
.y3d{bottom:248.970000px;}
.y1aa{bottom:249.330000px;}
.y130{bottom:250.050000px;}
.y209{bottom:250.230000px;}
.y10b{bottom:250.770000px;}
.yb2{bottom:250.950000px;}
.yda{bottom:251.310000px;}
.y2d{bottom:256.530000px;}
.y180{bottom:258.510000px;}
.y1df{bottom:259.410000px;}
.y7c{bottom:259.950000px;}
.y1a9{bottom:267.150000px;}
.y12f{bottom:267.870000px;}
.y208{bottom:268.230000px;}
.y10a{bottom:268.590000px;}
.y3c{bottom:268.770000px;}
.y2c{bottom:274.350000px;}
.y1de{bottom:277.230000px;}
.y7b{bottom:277.770000px;}
.yd9{bottom:278.490000px;}
.y1bc{bottom:279.750000px;}
.y17f{bottom:285.510000px;}
.y12e{bottom:285.690000px;}
.y207{bottom:286.050000px;}
.y109{bottom:286.410000px;}
.yb1{bottom:286.590000px;}
.y3b{bottom:288.570000px;}
.y2b{bottom:292.350000px;}
.y1a8{bottom:293.970000px;}
.y1dd{bottom:295.050000px;}
.y7a{bottom:295.590000px;}
.yd8{bottom:296.490000px;}
.y17e{bottom:303.330000px;}
.y12d{bottom:303.510000px;}
.y206{bottom:303.870000px;}
.y108{bottom:304.050000px;}
.y149{bottom:304.410000px;}
.y3a{bottom:308.415000px;}
.y2a{bottom:310.170000px;}
.y1a7{bottom:311.790000px;}
.y1bb{bottom:312.510000px;}
.y1dc{bottom:312.870000px;}
.y79{bottom:313.410000px;}
.yd7{bottom:314.310000px;}
.y17d{bottom:321.150000px;}
.y12c{bottom:321.510000px;}
.y205{bottom:321.690000px;}
.y148{bottom:322.410000px;}
.y166{bottom:324.210000px;}
.y29{bottom:327.990000px;}
.y39{bottom:328.395000px;}
.y1a6{bottom:329.610000px;}
.y1ba{bottom:330.510000px;}
.y1db{bottom:330.690000px;}
.y107{bottom:331.230000px;}
.y78{bottom:331.410000px;}
.yd6{bottom:332.130000px;}
.y17c{bottom:338.970000px;}
.y12b{bottom:339.330000px;}
.y204{bottom:339.510000px;}
.y147{bottom:339.870000px;}
.y28{bottom:345.810000px;}
.y1a5{bottom:347.610000px;}
.y38{bottom:348.195000px;}
.y1b9{bottom:348.330000px;}
.y1da{bottom:348.690000px;}
.y106{bottom:349.050000px;}
.yb0{bottom:349.230000px;}
.yd5{bottom:349.950000px;}
.y17b{bottom:356.790000px;}
.y165{bottom:356.970000px;}
.y12a{bottom:357.150000px;}
.y203{bottom:357.510000px;}
.y77{bottom:358.230000px;}
.y27{bottom:363.630000px;}
.y1b8{bottom:366.150000px;}
.y1d9{bottom:366.510000px;}
.y105{bottom:366.870000px;}
.yaf{bottom:367.050000px;}
.yd4{bottom:367.410000px;}
.y1a4{bottom:374.430000px;}
.y129{bottom:374.610000px;}
.y164{bottom:374.790000px;}
.y13e{bottom:374.970000px;}
.y202{bottom:375.330000px;}
.y76{bottom:376.050000px;}
.y37{bottom:378.435000px;}
.y26{bottom:381.450000px;}
.y1b7{bottom:383.970000px;}
.y1d8{bottom:384.330000px;}
.y104{bottom:384.690000px;}
.yae{bottom:384.870000px;}
.y1a3{bottom:392.250000px;}
.y128{bottom:392.430000px;}
.y163{bottom:392.610000px;}
.y13d{bottom:392.790000px;}
.y201{bottom:393.150000px;}
.y75{bottom:393.870000px;}
.yd3{bottom:394.230000px;}
.y25{bottom:399.450000px;}
.y1b6{bottom:401.790000px;}
.y1d7{bottom:402.150000px;}
.yad{bottom:402.690000px;}
.y1a2{bottom:410.070000px;}
.y13c{bottom:410.610000px;}
.y200{bottom:410.970000px;}
.y74{bottom:411.690000px;}
.y24{bottom:417.270000px;}
.y17a{bottom:419.430000px;}
.y127{bottom:419.610000px;}
.y1d6{bottom:419.970000px;}
.y103{bottom:420.510000px;}
.yac{bottom:420.690000px;}
.yd2{bottom:421.590000px;}
.y13b{bottom:428.250000px;}
.y162{bottom:428.430000px;}
.y1ff{bottom:428.790000px;}
.y73{bottom:429.690000px;}
.y23{bottom:435.090000px;}
.y1a1{bottom:436.890000px;}
.y179{bottom:437.250000px;}
.y126{bottom:437.610000px;}
.y1d5{bottom:437.790000px;}
.y102{bottom:438.330000px;}
.yab{bottom:438.510000px;}
.yd1{bottom:439.410000px;}
.y161{bottom:446.295000px;}
.y1fe{bottom:446.655000px;}
.y72{bottom:447.555000px;}
.y22{bottom:452.955000px;}
.y1a0{bottom:454.935000px;}
.y178{bottom:455.115000px;}
.y125{bottom:455.475000px;}
.y1d4{bottom:455.835000px;}
.y146{bottom:456.015000px;}
.y101{bottom:456.195000px;}
.yaa{bottom:456.375000px;}
.yd0{bottom:457.275000px;}
.y160{bottom:463.755000px;}
.y1fd{bottom:464.655000px;}
.y71{bottom:465.375000px;}
.y21{bottom:470.775000px;}
.y19f{bottom:472.755000px;}
.y177{bottom:472.935000px;}
.y124{bottom:473.295000px;}
.y1d3{bottom:473.655000px;}
.y100{bottom:474.015000px;}
.ya9{bottom:474.195000px;}
.ycf{bottom:475.095000px;}
.y1fc{bottom:482.475000px;}
.y70{bottom:483.195000px;}
.y20{bottom:488.235000px;}
.y176{bottom:490.575000px;}
.y15f{bottom:490.935000px;}
.y123{bottom:491.115000px;}
.y1d2{bottom:491.475000px;}
.yff{bottom:491.835000px;}
.ya8{bottom:492.015000px;}
.yce{bottom:494.895000px;}
.y19e{bottom:499.575000px;}
.y1fb{bottom:500.295000px;}
.y6f{bottom:501.015000px;}
.y1f{bottom:508.035000px;}
.y122{bottom:508.935000px;}
.y1d1{bottom:509.295000px;}
.yfe{bottom:509.475000px;}
.ya7{bottom:511.995000px;}
.y19d{bottom:517.395000px;}
.y175{bottom:517.755000px;}
.y1fa{bottom:518.115000px;}
.y6e{bottom:518.835000px;}
.y15e{bottom:526.755000px;}
.y121{bottom:526.935000px;}
.ycd{bottom:527.835000px;}
.y1d0{bottom:529.095000px;}
.yfd{bottom:529.635000px;}
.y1e{bottom:531.795000px;}
.y19c{bottom:535.215000px;}
.y174{bottom:535.575000px;}
.y1f9{bottom:535.935000px;}
.y6d{bottom:536.835000px;}
.y15d{bottom:544.575000px;}
.ya6{bottom:544.755000px;}
.ycc{bottom:545.655000px;}
.y173{bottom:553.395000px;}
.y1f8{bottom:553.935000px;}
.y6c{bottom:554.655000px;}
.y1d{bottom:555.555000px;}
.y19b{bottom:562.035000px;}
.yfc{bottom:562.395000px;}
.ya5{bottom:562.575000px;}
.ycb{bottom:563.475000px;}
.y172{bottom:571.215000px;}
.y1f7{bottom:571.755000px;}
.y145{bottom:574.455000px;}
.y1c{bottom:579.135000px;}
.y1cf{bottom:579.855000px;}
.y120{bottom:580.035000px;}
.yfb{bottom:580.215000px;}
.ya4{bottom:580.395000px;}
.yca{bottom:581.295000px;}
.y6b{bottom:581.475000px;}
.y171{bottom:588.675000px;}
.y1f6{bottom:589.575000px;}
.y1ce{bottom:597.675000px;}
.yfa{bottom:598.035000px;}
.ya3{bottom:598.215000px;}
.yc9{bottom:598.755000px;}
.y6a{bottom:599.295000px;}
.y19a{bottom:606.495000px;}
.y11f{bottom:607.215000px;}
.y1f5{bottom:607.395000px;}
.y1b{bottom:610.095000px;}
.y1cd{bottom:615.495000px;}
.ya2{bottom:616.035000px;}
.yc8{bottom:616.755000px;}
.y69{bottom:617.115000px;}
.y11e{bottom:625.035000px;}
.y1f4{bottom:625.215000px;}
.y15c{bottom:633.495000px;}
.y13a{bottom:633.675000px;}
.yf9{bottom:633.855000px;}
.ya1{bottom:634.035000px;}
.y68{bottom:635.115000px;}
.y1a{bottom:636.375000px;}
.y1cc{bottom:641.955000px;}
.y11d{bottom:643.035000px;}
.yc7{bottom:643.935000px;}
.y199{bottom:651.495000px;}
.yf8{bottom:651.675000px;}
.ya0{bottom:651.855000px;}
.y67{bottom:652.935000px;}
.y19{bottom:658.155000px;}
.y1cb{bottom:659.775000px;}
.y15b{bottom:660.675000px;}
.y11c{bottom:660.855000px;}
.y1f3{bottom:661.035000px;}
.yc6{bottom:661.755000px;}
.y198{bottom:669.315000px;}
.yf7{bottom:669.495000px;}
.y9f{bottom:669.675000px;}
.y66{bottom:670.755000px;}
.y15a{bottom:678.525000px;}
.y11b{bottom:678.705000px;}
.y1f2{bottom:678.885000px;}
.yc5{bottom:679.605000px;}
.y170{bottom:686.985000px;}
.y197{bottom:687.165000px;}
.yf6{bottom:687.345000px;}
.y18{bottom:687.525000px;}
.y65{bottom:688.605000px;}
.y159{bottom:696.345000px;}
.y11a{bottom:696.525000px;}
.y1f1{bottom:696.705000px;}
.yc4{bottom:697.425000px;}
.y1ca{bottom:704.985000px;}
.yf5{bottom:705.165000px;}
.y9e{bottom:705.345000px;}
.y64{bottom:706.425000px;}
.y17{bottom:709.485000px;}
.y158{bottom:714.165000px;}
.y119{bottom:714.345000px;}
.y1f0{bottom:714.525000px;}
.yc3{bottom:714.885000px;}
.y1c9{bottom:722.805000px;}
.y9d{bottom:723.165000px;}
.y63{bottom:724.245000px;}
.y196{bottom:731.985000px;}
.y118{bottom:732.165000px;}
.y1ef{bottom:732.345000px;}
.yc2{bottom:732.885000px;}
.y1c8{bottom:740.625000px;}
.yf4{bottom:740.985000px;}
.y62{bottom:742.245000px;}
.y16{bottom:745.665000px;}
.y195{bottom:749.805000px;}
.y157{bottom:749.985000px;}
.y9c{bottom:750.165000px;}
.yf3{bottom:758.805000px;}
.y61{bottom:760.065000px;}
.y1c7{bottom:767.085000px;}
.y156{bottom:767.445000px;}
.y194{bottom:767.625000px;}
.y16f{bottom:767.805000px;}
.y9b{bottom:767.985000px;}
.y1ee{bottom:768.165000px;}
.yf2{bottom:776.625000px;}
.yc1{bottom:777.885000px;}
.y16e{bottom:785.265000px;}
.y117{bottom:785.445000px;}
.y9a{bottom:785.805000px;}
.y1ed{bottom:785.985000px;}
.y60{bottom:786.885000px;}
.y15{bottom:791.925000px;}
.yf1{bottom:794.445000px;}
.y155{bottom:794.625000px;}
.yc0{bottom:795.705000px;}
.y99{bottom:803.625000px;}
.y1ec{bottom:803.805000px;}
.y5f{bottom:804.705000px;}
.y1c6{bottom:812.265000px;}
.y154{bottom:812.445000px;}
.y116{bottom:812.625000px;}
.ybf{bottom:813.165000px;}
.yf0{bottom:821.085000px;}
.y98{bottom:821.445000px;}
.y1eb{bottom:821.625000px;}
.y5e{bottom:822.525000px;}
.y1c5{bottom:830.085000px;}
.y193{bottom:830.265000px;}
.y115{bottom:830.445000px;}
.ybe{bottom:833.505000px;}
.y14{bottom:835.125000px;}
.y139{bottom:839.085000px;}
.y97{bottom:839.445000px;}
.y5d{bottom:840.345000px;}
.y192{bottom:848.085000px;}
.yef{bottom:848.265000px;}
.y114{bottom:848.445000px;}
.y1c4{bottom:856.545000px;}
.y96{bottom:857.265000px;}
.y1ea{bottom:857.445000px;}
.y5c{bottom:858.345000px;}
.y13{bottom:860.325000px;}
.yee{bottom:866.085000px;}
.ybd{bottom:866.265000px;}
.y191{bottom:874.905000px;}
.y95{bottom:875.085000px;}
.y1e9{bottom:875.265000px;}
.y5b{bottom:876.165000px;}
.y12{bottom:880.125000px;}
.y1c3{bottom:883.725000px;}
.yed{bottom:883.905000px;}
.ybc{bottom:884.085000px;}
.y190{bottom:892.725000px;}
.y1e8{bottom:893.085000px;}
.y5a{bottom:893.985000px;}
.y11{bottom:900.645000px;}
.y153{bottom:901.365000px;}
.y1c2{bottom:901.545000px;}
.yec{bottom:901.725000px;}
.y94{bottom:901.905000px;}
.y18f{bottom:910.590000px;}
.y1e7{bottom:910.950000px;}
.y59{bottom:911.850000px;}
.yeb{bottom:919.230000px;}
.y1c1{bottom:919.590000px;}
.y93{bottom:919.770000px;}
.y10{bottom:921.390000px;}
.y152{bottom:928.590000px;}
.y1b5{bottom:928.770000px;}
.y58{bottom:929.670000px;}
.y92{bottom:937.590000px;}
.yf{bottom:941.730000px;}
.y1c0{bottom:946.050000px;}
.yea{bottom:946.590000px;}
.y57{bottom:947.670000px;}
.y18e{bottom:955.410000px;}
.y91{bottom:955.590000px;}
.ye9{bottom:964.410000px;}
.y1b4{bottom:964.590000px;}
.y18d{bottom:973.230000px;}
.y90{bottom:973.410000px;}
.y56{bottom:974.490000px;}
.ye8{bottom:982.230000px;}
.y1b3{bottom:982.410000px;}
.ye{bottom:985.650000px;}
.y113{bottom:990.870000px;}
.y18c{bottom:991.050000px;}
.y8f{bottom:991.230000px;}
.y55{bottom:992.310000px;}
.yd{bottom:997.710000px;}
.ye7{bottom:1000.050000px;}
.y1b2{bottom:1000.230000px;}
.y18b{bottom:1008.870000px;}
.y8e{bottom:1009.050000px;}
.yc{bottom:1009.770000px;}
.y54{bottom:1010.130000px;}
.ye6{bottom:1017.510000px;}
.y151{bottom:1017.870000px;}
.ybb{bottom:1018.050000px;}
.yb{bottom:1021.830000px;}
.y8d{bottom:1026.870000px;}
.y53{bottom:1027.950000px;}
.y18a{bottom:1035.510000px;}
.yba{bottom:1035.870000px;}
.ya{bottom:1036.410000px;}
.y138{bottom:1044.510000px;}
.ye5{bottom:1044.870000px;}
.y52{bottom:1045.770000px;}
.y150{bottom:1053.330000px;}
.y8c{bottom:1053.870000px;}
.y9{bottom:1061.970000px;}
.y144{bottom:1062.330000px;}
.ye4{bottom:1062.690000px;}
.y51{bottom:1063.770000px;}
.y8b{bottom:1071.690000px;}
.ye3{bottom:1080.510000px;}
.y50{bottom:1081.590000px;}
.y8{bottom:1087.170000px;}
.y8a{bottom:1089.510000px;}
.ye2{bottom:1098.330000px;}
.y4f{bottom:1099.410000px;}
.y89{bottom:1107.330000px;}
.ye1{bottom:1115.790000px;}
.y189{bottom:1116.150000px;}
.y7{bottom:1116.870000px;}
.y4e{bottom:1117.230000px;}
.y88{bottom:1125.150000px;}
.y188{bottom:1133.970000px;}
.y4d{bottom:1135.050000px;}
.y87{bottom:1142.970000px;}
.y187{bottom:1152.000000px;}
.y4c{bottom:1153.080000px;}
.y1bf{bottom:1160.640000px;}
.y86{bottom:1161.000000px;}
.y6{bottom:1165.860000px;}
.y4b{bottom:1170.900000px;}
.y1be{bottom:1178.460000px;}
.y85{bottom:1178.820000px;}
.y4a{bottom:1190.700000px;}
.y112{bottom:1196.280000px;}
.y84{bottom:1196.640000px;}
.h2{height:31.135500px;}
.h18{height:37.705078px;}
.h9{height:40.985156px;}
.h17{height:52.971680px;}
.h3{height:52.998047px;}
.h12{height:54.421875px;}
.h1a{height:55.503491px;}
.h19{height:56.214844px;}
.h15{height:58.621992px;}
.hc{height:58.651172px;}
.h16{height:58.763250px;}
.hb{height:60.226875px;}
.hf{height:65.010937px;}
.h4{height:65.884219px;}
.h10{height:66.757500px;}
.he{height:72.326250px;}
.h11{height:72.562500px;}
.h14{height:78.367500px;}
.ha{height:79.620469px;}
.hd{height:82.676953px;}
.h7{height:84.898125px;}
.h8{height:90.703125px;}
.h6{height:103.038750px;}
.h5{height:108.843750px;}
.h13{height:405.720000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x15{left:10.800000px;}
.x14{left:38.340000px;}
.x1{left:45.364500px;}
.x16{left:49.140000px;}
.x7{left:54.000000px;}
.x17{left:81.000000px;}
.x10{left:93.816000px;}
.x18{left:108.036000px;}
.xd{left:116.316000px;}
.xf{left:155.550000px;}
.x2{left:222.370500px;}
.xe{left:226.290000px;}
.x11{left:246.630000px;}
.x3{left:271.330500px;}
.xa{left:273.315000px;}
.x8{left:303.015000px;}
.x12{left:314.355000px;}
.xb{left:317.055000px;}
.x9{left:364.395000px;}
.xc{left:385.095000px;}
.x6{left:446.505000px;}
.x13{left:473.505000px;}
.x19{left:500.505000px;}
.x1a{left:527.505000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-78.080000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.lsc{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.208000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.378880pt;}
.ls7{letter-spacing:0.736000pt;}
.ls10{letter-spacing:22.496000pt;}
.lsa{letter-spacing:46.816000pt;}
.ws5{word-spacing:-17.295360pt;}
.ws7{word-spacing:-17.272320pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.208000pt;}
.wsa{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.904000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-1.859840pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.658667pt;}
._5{width:2.567040pt;}
._4{width:3.559040pt;}
._8{width:4.759040pt;}
._17{width:5.677653pt;}
._6{width:6.569173pt;}
._a{width:7.903573pt;}
._7{width:9.189760pt;}
._14{width:10.346240pt;}
._9{width:12.311893pt;}
._1d{width:13.344000pt;}
._d{width:14.304000pt;}
._15{width:15.840000pt;}
._16{width:16.800000pt;}
._c{width:18.258987pt;}
._b{width:19.176320pt;}
._e{width:20.256000pt;}
._1c{width:21.936000pt;}
._1e{width:23.118507pt;}
._10{width:24.528000pt;}
._18{width:25.449173pt;}
._12{width:26.544000pt;}
._11{width:27.552000pt;}
._1f{width:28.656000pt;}
._13{width:29.760000pt;}
._20{width:30.768000pt;}
._21{width:31.763840pt;}
._27{width:32.790827pt;}
._24{width:33.888000pt;}
._22{width:35.267840pt;}
._f{width:36.336000pt;}
._1b{width:38.016000pt;}
._19{width:39.120000pt;}
._1a{width:40.416000pt;}
._28{width:42.441173pt;}
._2c{width:43.785173pt;}
._2b{width:45.024000pt;}
._2a{width:46.521173pt;}
._29{width:47.673173pt;}
._32{width:48.611840pt;}
._31{width:49.584000pt;}
._25{width:50.496000pt;}
._26{width:51.744000pt;}
._2d{width:52.944000pt;}
._30{width:54.000000pt;}
._35{width:55.968000pt;}
._2f{width:58.512000pt;}
._33{width:64.416000pt;}
._34{width:65.424000pt;}
._23{width:67.008000pt;}
._2e{width:85.645013pt;}
._2{width:1039.626667pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:90.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y49{bottom:2.880000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y5{bottom:35.360000pt;}
.y1{bottom:53.920000pt;}
.y46{bottom:62.560000pt;}
.y45{bottom:80.186667pt;}
.y16d{bottom:95.520000pt;}
.y44{bottom:97.786667pt;}
.y35{bottom:101.120000pt;}
.y1b1{bottom:102.400000pt;}
.y137{bottom:103.200000pt;}
.y1e6{bottom:103.520000pt;}
.y1bd{bottom:104.000000pt;}
.y186{bottom:110.720000pt;}
.y210{bottom:111.360000pt;}
.y14f{bottom:111.520000pt;}
.y111{bottom:111.840000pt;}
.yb9{bottom:112.000000pt;}
.y43{bottom:115.546667pt;}
.y34{bottom:116.960000pt;}
.y1b0{bottom:118.400000pt;}
.y136{bottom:119.040000pt;}
.y1e5{bottom:119.360000pt;}
.y16c{bottom:119.680000pt;}
.y83{bottom:120.000000pt;}
.ye0{bottom:120.160000pt;}
.y36{bottom:125.440000pt;}
.y185{bottom:126.560000pt;}
.y20f{bottom:127.200000pt;}
.y110{bottom:127.680000pt;}
.yb8{bottom:127.840000pt;}
.y33{bottom:132.800000pt;}
.y42{bottom:133.146667pt;}
.y1af{bottom:134.240000pt;}
.y135{bottom:134.560000pt;}
.y143{bottom:134.880000pt;}
.y1e4{bottom:135.360000pt;}
.y16b{bottom:135.520000pt;}
.y14e{bottom:135.680000pt;}
.y82{bottom:135.840000pt;}
.ydf{bottom:136.000000pt;}
.y184{bottom:142.400000pt;}
.y20e{bottom:143.200000pt;}
.y10f{bottom:143.520000pt;}
.yb7{bottom:143.680000pt;}
.y48{bottom:144.800000pt;}
.y32{bottom:148.640000pt;}
.y1ae{bottom:150.080000pt;}
.y134{bottom:150.400000pt;}
.y142{bottom:150.720000pt;}
.y41{bottom:150.746667pt;}
.y1e3{bottom:151.200000pt;}
.y16a{bottom:151.360000pt;}
.y14d{bottom:151.520000pt;}
.y81{bottom:151.680000pt;}
.y183{bottom:158.400000pt;}
.y20d{bottom:159.040000pt;}
.y10e{bottom:159.360000pt;}
.yb6{bottom:159.520000pt;}
.yde{bottom:160.160000pt;}
.y31{bottom:164.480000pt;}
.y1ad{bottom:165.920000pt;}
.y141{bottom:166.560000pt;}
.y1e2{bottom:167.040000pt;}
.y14c{bottom:167.360000pt;}
.y80{bottom:167.520000pt;}
.y40{bottom:168.346667pt;}
.y47{bottom:170.400000pt;}
.y182{bottom:173.920000pt;}
.y133{bottom:174.560000pt;}
.y20c{bottom:174.880000pt;}
.yb5{bottom:175.360000pt;}
.ydd{bottom:176.160000pt;}
.y30{bottom:180.480000pt;}
.y1ac{bottom:181.440000pt;}
.y140{bottom:182.080000pt;}
.y1e1{bottom:182.906667pt;}
.y169{bottom:183.226667pt;}
.y7f{bottom:183.386667pt;}
.y3f{bottom:185.946667pt;}
.y132{bottom:190.426667pt;}
.y20b{bottom:190.746667pt;}
.y10d{bottom:191.226667pt;}
.yb4{bottom:191.386667pt;}
.ydc{bottom:192.026667pt;}
.y2f{bottom:196.346667pt;}
.y13f{bottom:198.106667pt;}
.y1e0{bottom:198.746667pt;}
.y168{bottom:199.066667pt;}
.y14b{bottom:199.226667pt;}
.y7e{bottom:199.386667pt;}
.y3e{bottom:203.706667pt;}
.y1ab{bottom:205.786667pt;}
.y131{bottom:206.426667pt;}
.y20a{bottom:206.586667pt;}
.y10c{bottom:207.066667pt;}
.yb3{bottom:207.226667pt;}
.ydb{bottom:207.866667pt;}
.y2e{bottom:212.186667pt;}
.y181{bottom:213.946667pt;}
.y167{bottom:214.586667pt;}
.y14a{bottom:214.746667pt;}
.y7d{bottom:215.226667pt;}
.y3d{bottom:221.306667pt;}
.y1aa{bottom:221.626667pt;}
.y130{bottom:222.266667pt;}
.y209{bottom:222.426667pt;}
.y10b{bottom:222.906667pt;}
.yb2{bottom:223.066667pt;}
.yda{bottom:223.386667pt;}
.y2d{bottom:228.026667pt;}
.y180{bottom:229.786667pt;}
.y1df{bottom:230.586667pt;}
.y7c{bottom:231.066667pt;}
.y1a9{bottom:237.466667pt;}
.y12f{bottom:238.106667pt;}
.y208{bottom:238.426667pt;}
.y10a{bottom:238.746667pt;}
.y3c{bottom:238.906667pt;}
.y2c{bottom:243.866667pt;}
.y1de{bottom:246.426667pt;}
.y7b{bottom:246.906667pt;}
.yd9{bottom:247.546667pt;}
.y1bc{bottom:248.666667pt;}
.y17f{bottom:253.786667pt;}
.y12e{bottom:253.946667pt;}
.y207{bottom:254.266667pt;}
.y109{bottom:254.586667pt;}
.yb1{bottom:254.746667pt;}
.y3b{bottom:256.506667pt;}
.y2b{bottom:259.866667pt;}
.y1a8{bottom:261.306667pt;}
.y1dd{bottom:262.266667pt;}
.y7a{bottom:262.746667pt;}
.yd8{bottom:263.546667pt;}
.y17e{bottom:269.626667pt;}
.y12d{bottom:269.786667pt;}
.y206{bottom:270.106667pt;}
.y108{bottom:270.266667pt;}
.y149{bottom:270.586667pt;}
.y3a{bottom:274.146667pt;}
.y2a{bottom:275.706667pt;}
.y1a7{bottom:277.146667pt;}
.y1bb{bottom:277.786667pt;}
.y1dc{bottom:278.106667pt;}
.y79{bottom:278.586667pt;}
.yd7{bottom:279.386667pt;}
.y17d{bottom:285.466667pt;}
.y12c{bottom:285.786667pt;}
.y205{bottom:285.946667pt;}
.y148{bottom:286.586667pt;}
.y166{bottom:288.186667pt;}
.y29{bottom:291.546667pt;}
.y39{bottom:291.906667pt;}
.y1a6{bottom:292.986667pt;}
.y1ba{bottom:293.786667pt;}
.y1db{bottom:293.946667pt;}
.y107{bottom:294.426667pt;}
.y78{bottom:294.586667pt;}
.yd6{bottom:295.226667pt;}
.y17c{bottom:301.306667pt;}
.y12b{bottom:301.626667pt;}
.y204{bottom:301.786667pt;}
.y147{bottom:302.106667pt;}
.y28{bottom:307.386667pt;}
.y1a5{bottom:308.986667pt;}
.y38{bottom:309.506667pt;}
.y1b9{bottom:309.626667pt;}
.y1da{bottom:309.946667pt;}
.y106{bottom:310.266667pt;}
.yb0{bottom:310.426667pt;}
.yd5{bottom:311.066667pt;}
.y17b{bottom:317.146667pt;}
.y165{bottom:317.306667pt;}
.y12a{bottom:317.466667pt;}
.y203{bottom:317.786667pt;}
.y77{bottom:318.426667pt;}
.y27{bottom:323.226667pt;}
.y1b8{bottom:325.466667pt;}
.y1d9{bottom:325.786667pt;}
.y105{bottom:326.106667pt;}
.yaf{bottom:326.266667pt;}
.yd4{bottom:326.586667pt;}
.y1a4{bottom:332.826667pt;}
.y129{bottom:332.986667pt;}
.y164{bottom:333.146667pt;}
.y13e{bottom:333.306667pt;}
.y202{bottom:333.626667pt;}
.y76{bottom:334.266667pt;}
.y37{bottom:336.386667pt;}
.y26{bottom:339.066667pt;}
.y1b7{bottom:341.306667pt;}
.y1d8{bottom:341.626667pt;}
.y104{bottom:341.946667pt;}
.yae{bottom:342.106667pt;}
.y1a3{bottom:348.666667pt;}
.y128{bottom:348.826667pt;}
.y163{bottom:348.986667pt;}
.y13d{bottom:349.146667pt;}
.y201{bottom:349.466667pt;}
.y75{bottom:350.106667pt;}
.yd3{bottom:350.426667pt;}
.y25{bottom:355.066667pt;}
.y1b6{bottom:357.146667pt;}
.y1d7{bottom:357.466667pt;}
.yad{bottom:357.946667pt;}
.y1a2{bottom:364.506667pt;}
.y13c{bottom:364.986667pt;}
.y200{bottom:365.306667pt;}
.y74{bottom:365.946667pt;}
.y24{bottom:370.906667pt;}
.y17a{bottom:372.826667pt;}
.y127{bottom:372.986667pt;}
.y1d6{bottom:373.306667pt;}
.y103{bottom:373.786667pt;}
.yac{bottom:373.946667pt;}
.yd2{bottom:374.746667pt;}
.y13b{bottom:380.666667pt;}
.y162{bottom:380.826667pt;}
.y1ff{bottom:381.146667pt;}
.y73{bottom:381.946667pt;}
.y23{bottom:386.746667pt;}
.y1a1{bottom:388.346667pt;}
.y179{bottom:388.666667pt;}
.y126{bottom:388.986667pt;}
.y1d5{bottom:389.146667pt;}
.y102{bottom:389.626667pt;}
.yab{bottom:389.786667pt;}
.yd1{bottom:390.586667pt;}
.y161{bottom:396.706667pt;}
.y1fe{bottom:397.026667pt;}
.y72{bottom:397.826667pt;}
.y22{bottom:402.626667pt;}
.y1a0{bottom:404.386667pt;}
.y178{bottom:404.546667pt;}
.y125{bottom:404.866667pt;}
.y1d4{bottom:405.186667pt;}
.y146{bottom:405.346667pt;}
.y101{bottom:405.506667pt;}
.yaa{bottom:405.666667pt;}
.yd0{bottom:406.466667pt;}
.y160{bottom:412.226667pt;}
.y1fd{bottom:413.026667pt;}
.y71{bottom:413.666667pt;}
.y21{bottom:418.466667pt;}
.y19f{bottom:420.226667pt;}
.y177{bottom:420.386667pt;}
.y124{bottom:420.706667pt;}
.y1d3{bottom:421.026667pt;}
.y100{bottom:421.346667pt;}
.ya9{bottom:421.506667pt;}
.ycf{bottom:422.306667pt;}
.y1fc{bottom:428.866667pt;}
.y70{bottom:429.506667pt;}
.y20{bottom:433.986667pt;}
.y176{bottom:436.066667pt;}
.y15f{bottom:436.386667pt;}
.y123{bottom:436.546667pt;}
.y1d2{bottom:436.866667pt;}
.yff{bottom:437.186667pt;}
.ya8{bottom:437.346667pt;}
.yce{bottom:439.906667pt;}
.y19e{bottom:444.066667pt;}
.y1fb{bottom:444.706667pt;}
.y6f{bottom:445.346667pt;}
.y1f{bottom:451.586667pt;}
.y122{bottom:452.386667pt;}
.y1d1{bottom:452.706667pt;}
.yfe{bottom:452.866667pt;}
.ya7{bottom:455.106667pt;}
.y19d{bottom:459.906667pt;}
.y175{bottom:460.226667pt;}
.y1fa{bottom:460.546667pt;}
.y6e{bottom:461.186667pt;}
.y15e{bottom:468.226667pt;}
.y121{bottom:468.386667pt;}
.ycd{bottom:469.186667pt;}
.y1d0{bottom:470.306667pt;}
.yfd{bottom:470.786667pt;}
.y1e{bottom:472.706667pt;}
.y19c{bottom:475.746667pt;}
.y174{bottom:476.066667pt;}
.y1f9{bottom:476.386667pt;}
.y6d{bottom:477.186667pt;}
.y15d{bottom:484.066667pt;}
.ya6{bottom:484.226667pt;}
.ycc{bottom:485.026667pt;}
.y173{bottom:491.906667pt;}
.y1f8{bottom:492.386667pt;}
.y6c{bottom:493.026667pt;}
.y1d{bottom:493.826667pt;}
.y19b{bottom:499.586667pt;}
.yfc{bottom:499.906667pt;}
.ya5{bottom:500.066667pt;}
.ycb{bottom:500.866667pt;}
.y172{bottom:507.746667pt;}
.y1f7{bottom:508.226667pt;}
.y145{bottom:510.626667pt;}
.y1c{bottom:514.786667pt;}
.y1cf{bottom:515.426667pt;}
.y120{bottom:515.586667pt;}
.yfb{bottom:515.746667pt;}
.ya4{bottom:515.906667pt;}
.yca{bottom:516.706667pt;}
.y6b{bottom:516.866667pt;}
.y171{bottom:523.266667pt;}
.y1f6{bottom:524.066667pt;}
.y1ce{bottom:531.266667pt;}
.yfa{bottom:531.586667pt;}
.ya3{bottom:531.746667pt;}
.yc9{bottom:532.226667pt;}
.y6a{bottom:532.706667pt;}
.y19a{bottom:539.106667pt;}
.y11f{bottom:539.746667pt;}
.y1f5{bottom:539.906667pt;}
.y1b{bottom:542.306667pt;}
.y1cd{bottom:547.106667pt;}
.ya2{bottom:547.586667pt;}
.yc8{bottom:548.226667pt;}
.y69{bottom:548.546667pt;}
.y11e{bottom:555.586667pt;}
.y1f4{bottom:555.746667pt;}
.y15c{bottom:563.106667pt;}
.y13a{bottom:563.266667pt;}
.yf9{bottom:563.426667pt;}
.ya1{bottom:563.586667pt;}
.y68{bottom:564.546667pt;}
.y1a{bottom:565.666667pt;}
.y1cc{bottom:570.626667pt;}
.y11d{bottom:571.586667pt;}
.yc7{bottom:572.386667pt;}
.y199{bottom:579.106667pt;}
.yf8{bottom:579.266667pt;}
.ya0{bottom:579.426667pt;}
.y67{bottom:580.386667pt;}
.y19{bottom:585.026667pt;}
.y1cb{bottom:586.466667pt;}
.y15b{bottom:587.266667pt;}
.y11c{bottom:587.426667pt;}
.y1f3{bottom:587.586667pt;}
.yc6{bottom:588.226667pt;}
.y198{bottom:594.946667pt;}
.yf7{bottom:595.106667pt;}
.y9f{bottom:595.266667pt;}
.y66{bottom:596.226667pt;}
.y15a{bottom:603.133333pt;}
.y11b{bottom:603.293333pt;}
.y1f2{bottom:603.453333pt;}
.yc5{bottom:604.093333pt;}
.y170{bottom:610.653333pt;}
.y197{bottom:610.813333pt;}
.yf6{bottom:610.973333pt;}
.y18{bottom:611.133333pt;}
.y65{bottom:612.093333pt;}
.y159{bottom:618.973333pt;}
.y11a{bottom:619.133333pt;}
.y1f1{bottom:619.293333pt;}
.yc4{bottom:619.933333pt;}
.y1ca{bottom:626.653333pt;}
.yf5{bottom:626.813333pt;}
.y9e{bottom:626.973333pt;}
.y64{bottom:627.933333pt;}
.y17{bottom:630.653333pt;}
.y158{bottom:634.813333pt;}
.y119{bottom:634.973333pt;}
.y1f0{bottom:635.133333pt;}
.yc3{bottom:635.453333pt;}
.y1c9{bottom:642.493333pt;}
.y9d{bottom:642.813333pt;}
.y63{bottom:643.773333pt;}
.y196{bottom:650.653333pt;}
.y118{bottom:650.813333pt;}
.y1ef{bottom:650.973333pt;}
.yc2{bottom:651.453333pt;}
.y1c8{bottom:658.333333pt;}
.yf4{bottom:658.653333pt;}
.y62{bottom:659.773333pt;}
.y16{bottom:662.813333pt;}
.y195{bottom:666.493333pt;}
.y157{bottom:666.653333pt;}
.y9c{bottom:666.813333pt;}
.yf3{bottom:674.493333pt;}
.y61{bottom:675.613333pt;}
.y1c7{bottom:681.853333pt;}
.y156{bottom:682.173333pt;}
.y194{bottom:682.333333pt;}
.y16f{bottom:682.493333pt;}
.y9b{bottom:682.653333pt;}
.y1ee{bottom:682.813333pt;}
.yf2{bottom:690.333333pt;}
.yc1{bottom:691.453333pt;}
.y16e{bottom:698.013333pt;}
.y117{bottom:698.173333pt;}
.y9a{bottom:698.493333pt;}
.y1ed{bottom:698.653333pt;}
.y60{bottom:699.453333pt;}
.y15{bottom:703.933333pt;}
.yf1{bottom:706.173333pt;}
.y155{bottom:706.333333pt;}
.yc0{bottom:707.293333pt;}
.y99{bottom:714.333333pt;}
.y1ec{bottom:714.493333pt;}
.y5f{bottom:715.293333pt;}
.y1c6{bottom:722.013333pt;}
.y154{bottom:722.173333pt;}
.y116{bottom:722.333333pt;}
.ybf{bottom:722.813333pt;}
.yf0{bottom:729.853333pt;}
.y98{bottom:730.173333pt;}
.y1eb{bottom:730.333333pt;}
.y5e{bottom:731.133333pt;}
.y1c5{bottom:737.853333pt;}
.y193{bottom:738.013333pt;}
.y115{bottom:738.173333pt;}
.ybe{bottom:740.893333pt;}
.y14{bottom:742.333333pt;}
.y139{bottom:745.853333pt;}
.y97{bottom:746.173333pt;}
.y5d{bottom:746.973333pt;}
.y192{bottom:753.853333pt;}
.yef{bottom:754.013333pt;}
.y114{bottom:754.173333pt;}
.y1c4{bottom:761.373333pt;}
.y96{bottom:762.013333pt;}
.y1ea{bottom:762.173333pt;}
.y5c{bottom:762.973333pt;}
.y13{bottom:764.733333pt;}
.yee{bottom:769.853333pt;}
.ybd{bottom:770.013333pt;}
.y191{bottom:777.693333pt;}
.y95{bottom:777.853333pt;}
.y1e9{bottom:778.013333pt;}
.y5b{bottom:778.813333pt;}
.y12{bottom:782.333333pt;}
.y1c3{bottom:785.533333pt;}
.yed{bottom:785.693333pt;}
.ybc{bottom:785.853333pt;}
.y190{bottom:793.533333pt;}
.y1e8{bottom:793.853333pt;}
.y5a{bottom:794.653333pt;}
.y11{bottom:800.573333pt;}
.y153{bottom:801.213333pt;}
.y1c2{bottom:801.373333pt;}
.yec{bottom:801.533333pt;}
.y94{bottom:801.693333pt;}
.y18f{bottom:809.413333pt;}
.y1e7{bottom:809.733333pt;}
.y59{bottom:810.533333pt;}
.yeb{bottom:817.093333pt;}
.y1c1{bottom:817.413333pt;}
.y93{bottom:817.573333pt;}
.y10{bottom:819.013333pt;}
.y152{bottom:825.413333pt;}
.y1b5{bottom:825.573333pt;}
.y58{bottom:826.373333pt;}
.y92{bottom:833.413333pt;}
.yf{bottom:837.093333pt;}
.y1c0{bottom:840.933333pt;}
.yea{bottom:841.413333pt;}
.y57{bottom:842.373333pt;}
.y18e{bottom:849.253333pt;}
.y91{bottom:849.413333pt;}
.ye9{bottom:857.253333pt;}
.y1b4{bottom:857.413333pt;}
.y18d{bottom:865.093333pt;}
.y90{bottom:865.253333pt;}
.y56{bottom:866.213333pt;}
.ye8{bottom:873.093333pt;}
.y1b3{bottom:873.253333pt;}
.ye{bottom:876.133333pt;}
.y113{bottom:880.773333pt;}
.y18c{bottom:880.933333pt;}
.y8f{bottom:881.093333pt;}
.y55{bottom:882.053333pt;}
.yd{bottom:886.853333pt;}
.ye7{bottom:888.933333pt;}
.y1b2{bottom:889.093333pt;}
.y18b{bottom:896.773333pt;}
.y8e{bottom:896.933333pt;}
.yc{bottom:897.573333pt;}
.y54{bottom:897.893333pt;}
.ye6{bottom:904.453333pt;}
.y151{bottom:904.773333pt;}
.ybb{bottom:904.933333pt;}
.yb{bottom:908.293333pt;}
.y8d{bottom:912.773333pt;}
.y53{bottom:913.733333pt;}
.y18a{bottom:920.453333pt;}
.yba{bottom:920.773333pt;}
.ya{bottom:921.253333pt;}
.y138{bottom:928.453333pt;}
.ye5{bottom:928.773333pt;}
.y52{bottom:929.573333pt;}
.y150{bottom:936.293333pt;}
.y8c{bottom:936.773333pt;}
.y9{bottom:943.973333pt;}
.y144{bottom:944.293333pt;}
.ye4{bottom:944.613333pt;}
.y51{bottom:945.573333pt;}
.y8b{bottom:952.613333pt;}
.ye3{bottom:960.453333pt;}
.y50{bottom:961.413333pt;}
.y8{bottom:966.373333pt;}
.y8a{bottom:968.453333pt;}
.ye2{bottom:976.293333pt;}
.y4f{bottom:977.253333pt;}
.y89{bottom:984.293333pt;}
.ye1{bottom:991.813333pt;}
.y189{bottom:992.133333pt;}
.y7{bottom:992.773333pt;}
.y4e{bottom:993.093333pt;}
.y88{bottom:1000.133333pt;}
.y188{bottom:1007.973333pt;}
.y4d{bottom:1008.933333pt;}
.y87{bottom:1015.973333pt;}
.y187{bottom:1024.000000pt;}
.y4c{bottom:1024.960000pt;}
.y1bf{bottom:1031.680000pt;}
.y86{bottom:1032.000000pt;}
.y6{bottom:1036.320000pt;}
.y4b{bottom:1040.800000pt;}
.y1be{bottom:1047.520000pt;}
.y85{bottom:1047.840000pt;}
.y4a{bottom:1058.400000pt;}
.y112{bottom:1063.360000pt;}
.y84{bottom:1063.680000pt;}
.h2{height:27.676000pt;}
.h18{height:33.515625pt;}
.h9{height:36.431250pt;}
.h17{height:47.085938pt;}
.h3{height:47.109375pt;}
.h12{height:48.375000pt;}
.h1a{height:49.336436pt;}
.h19{height:49.968750pt;}
.h15{height:52.108438pt;}
.hc{height:52.134375pt;}
.h16{height:52.234000pt;}
.hb{height:53.535000pt;}
.hf{height:57.787500pt;}
.h4{height:58.563750pt;}
.h10{height:59.340000pt;}
.he{height:64.290000pt;}
.h11{height:64.500000pt;}
.h14{height:69.660000pt;}
.ha{height:70.773750pt;}
.hd{height:73.490625pt;}
.h7{height:75.465000pt;}
.h8{height:80.625000pt;}
.h6{height:91.590000pt;}
.h5{height:96.750000pt;}
.h13{height:360.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x15{left:9.600000pt;}
.x14{left:34.080000pt;}
.x1{left:40.324000pt;}
.x16{left:43.680000pt;}
.x7{left:48.000000pt;}
.x17{left:72.000000pt;}
.x10{left:83.392000pt;}
.x18{left:96.032000pt;}
.xd{left:103.392000pt;}
.xf{left:138.266667pt;}
.x2{left:197.662667pt;}
.xe{left:201.146667pt;}
.x11{left:219.226667pt;}
.x3{left:241.182667pt;}
.xa{left:242.946667pt;}
.x8{left:269.346667pt;}
.x12{left:279.426667pt;}
.xb{left:281.826667pt;}
.x9{left:323.906667pt;}
.xc{left:342.306667pt;}
.x6{left:396.893333pt;}
.x13{left:420.893333pt;}
.x19{left:444.893333pt;}
.x1a{left:468.893333pt;}
.x4{left:682.213333pt;}
}




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