
    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_35f726cd10f55bb62a2061c7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_2ba5a8997d14db7381547805.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_ed2cc8e3d4df92c7b2edda90.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_e348dd69b6a944d314206e5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_160da5dcff15af9e196fd514.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952148;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_1924d13e0f41cfcf97f029f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.776000;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);}
.v2{vertical-align:-28.200000px;}
.v4{vertical-align:-25.800000px;}
.v6{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:9.000000px;}
.v8{vertical-align:21.300000px;}
.v5{vertical-align:25.800000px;}
.v3{vertical-align:28.200000px;}
.v1{vertical-align:33.300000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.024000px;}
.ls7{letter-spacing:0.043200px;}
.ls0{letter-spacing:0.070200px;}
.lsd{letter-spacing:0.074400px;}
.ls11{letter-spacing:0.093600px;}
.ls2{letter-spacing:0.112800px;}
.ls12{letter-spacing:0.156000px;}
.ls10{letter-spacing:1.800000px;}
.ls14{letter-spacing:2.700000px;}
.ls13{letter-spacing:3.000000px;}
.lsa{letter-spacing:4.500000px;}
.ls5{letter-spacing:5.400000px;}
.ls6{letter-spacing:9.000000px;}
.lsc{letter-spacing:9.600000px;}
.lsf{letter-spacing:12.600000px;}
.ls15{letter-spacing:15.600000px;}
.ls9{letter-spacing:16.500000px;}
.ls8{letter-spacing:27.900000px;}
.ls4{letter-spacing:39.600000px;}
.lse{letter-spacing:40.200000px;}
.lsb{letter-spacing:86.700000px;}
.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:-43.200000px;}
.ws7{word-spacing:-39.600000px;}
.ws1{word-spacing:-21.000000px;}
.ws4{word-spacing:-18.000000px;}
.wsa{word-spacing:-16.500000px;}
.ws8{word-spacing:-14.400000px;}
.ws9{word-spacing:-13.200000px;}
.ws0{word-spacing:-12.150000px;}
.wsd{word-spacing:-10.800000px;}
.ws2{word-spacing:-10.500000px;}
.ws6{word-spacing:-9.600000px;}
.ws11{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws12{word-spacing:73.722000px;}
.wsb{word-spacing:101.154000px;}
.wsc{word-spacing:113.568000px;}
.ws13{word-spacing:125.256000px;}
.ws10{word-spacing:139.221600px;}
.wse{word-spacing:162.900000px;}
.ws21{word-spacing:173.004000px;}
.wsf{word-spacing:179.239200px;}
.ws1a{word-spacing:180.396000px;}
.ws1f{word-spacing:195.180000px;}
.ws14{word-spacing:197.850000px;}
.ws17{word-spacing:202.572000px;}
.ws1d{word-spacing:209.766000px;}
.ws20{word-spacing:217.158000px;}
.ws1c{word-spacing:242.700000px;}
.ws22{word-spacing:250.002000px;}
.ws1b{word-spacing:253.722000px;}
.ws19{word-spacing:264.678000px;}
.ws16{word-spacing:268.440000px;}
.ws15{word-spacing:268.548000px;}
.ws1e{word-spacing:272.046000px;}
.ws23{word-spacing:275.610000px;}
.ws18{word-spacing:315.960000px;}
.ws24{word-spacing:622.920000px;}
.ws26{word-spacing:678.114000px;}
.ws25{word-spacing:714.942000px;}
._e{margin-left:-4.176000px;}
._9{margin-left:-3.024000px;}
._8{margin-left:-1.152000px;}
._1{width:1.164000px;}
._2{width:2.280000px;}
._6{width:4.008000px;}
._5{width:5.208000px;}
._7{width:6.552000px;}
._0{width:8.088000px;}
._a{width:9.144000px;}
._d{width:10.224000px;}
._3{width:11.592000px;}
._4{width:12.816000px;}
._b{width:14.592000px;}
._c{width:16.464000px;}
._27{width:19.080000px;}
._1b{width:20.354400px;}
._52{width:21.792000px;}
._54{width:26.304000px;}
._28{width:27.804000px;}
._2e{width:29.016000px;}
._41{width:38.676000px;}
._1a{width:40.360800px;}
._29{width:43.200000px;}
._12{width:52.540800px;}
._13{width:54.040800px;}
._f{width:55.704000px;}
._10{width:56.760000px;}
._2c{width:62.928000px;}
._2a{width:86.904000px;}
._20{width:103.086000px;}
._11{width:105.974400px;}
._2d{width:108.156000px;}
._1c{width:109.902000px;}
._1d{width:122.520000px;}
._14{width:126.306000px;}
._15{width:129.936000px;}
._50{width:156.366000px;}
._17{width:172.698000px;}
._51{width:186.666000px;}
._22{width:194.428800px;}
._18{width:195.936000px;}
._4f{width:198.366000px;}
._23{width:205.384800px;}
._26{width:208.554000px;}
._16{width:246.684000px;}
._1e{width:248.112000px;}
._25{width:267.228000px;}
._19{width:279.684000px;}
._3e{width:281.046000px;}
._1f{width:282.498000px;}
._35{width:288.546000px;}
._43{width:310.350000px;}
._4e{width:316.380000px;}
._24{width:318.144000px;}
._2b{width:319.380000px;}
._38{width:328.764000px;}
._3d{width:339.720000px;}
._53{width:347.094000px;}
._2f{width:350.742000px;}
._30{width:354.612000px;}
._44{width:368.958000px;}
._42{width:387.306000px;}
._4d{width:408.504000px;}
._21{width:422.622000px;}
._46{width:639.420000px;}
._34{width:690.918000px;}
._4a{width:694.680000px;}
._3c{width:697.818000px;}
._49{width:699.546000px;}
._3a{width:705.210000px;}
._47{width:709.266000px;}
._33{width:712.962000px;}
._4b{width:716.526000px;}
._32{width:720.486000px;}
._3b{width:723.492000px;}
._31{width:727.680000px;}
._48{width:731.244000px;}
._45{width:734.940000px;}
._3f{width:749.526000px;}
._37{width:756.918000px;}
._39{width:775.200000px;}
._36{width:786.222000px;}
._4c{width:818.742000px;}
._40{width:2401.110000px;}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(54,96,145);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:31.200000px;}
.fs4{font-size:38.400000px;}
.fs2{font-size:42.000000px;}
.fs9{font-size:43.200000px;}
.fs1{font-size:48.600000px;}
.fs7{font-size:52.800000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:57.600000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.yc9{bottom:125.116500px;}
.y125{bottom:126.466500px;}
.y3b{bottom:131.566500px;}
.y59{bottom:132.916500px;}
.yd9{bottom:138.241500px;}
.y181{bottom:141.091500px;}
.y95{bottom:144.091500px;}
.y124{bottom:145.441500px;}
.y188{bottom:146.041500px;}
.y147{bottom:146.941500px;}
.y3a{bottom:150.541500px;}
.ye7{bottom:151.891500px;}
.y66{bottom:153.241500px;}
.y94{bottom:163.066500px;}
.y65{bottom:167.116500px;}
.yd8{bottom:169.291500px;}
.yf1{bottom:169.591500px;}
.y123{bottom:170.866500px;}
.y180{bottom:172.141500px;}
.y103{bottom:173.041500px;}
.y109{bottom:173.566500px;}
.y187{bottom:177.091500px;}
.y146{bottom:177.991500px;}
.y58{bottom:181.141500px;}
.y93{bottom:182.041500px;}
.y122{bottom:183.391500px;}
.y64{bottom:186.091500px;}
.yb6{bottom:187.441500px;}
.y108{bottom:193.891500px;}
.y7a{bottom:194.191500px;}
.y39{bottom:198.691500px;}
.yf0{bottom:200.641500px;}
.y92{bottom:201.016500px;}
.y121{bottom:202.366500px;}
.y17f{bottom:203.191500px;}
.yb5{bottom:206.116500px;}
.y186{bottom:208.141500px;}
.y145{bottom:209.041500px;}
.yd7{bottom:211.741500px;}
.y57{bottom:212.191500px;}
.y63{bottom:212.866500px;}
.y102{bottom:213.091500px;}
.y163{bottom:214.216500px;}
.yc8{bottom:219.991500px;}
.y150{bottom:221.191500px;}
.y16a{bottom:221.341500px;}
.y120{bottom:222.691500px;}
.y91{bottom:226.441500px;}
.yd6{bottom:228.691500px;}
.y38{bottom:229.741500px;}
.yef{bottom:231.691500px;}
.y79{bottom:234.241500px;}
.y162{bottom:234.541500px;}
.y185{bottom:239.191500px;}
.y144{bottom:240.091500px;}
.y11f{bottom:243.016500px;}
.y56{bottom:243.241500px;}
.yc7{bottom:245.416500px;}
.y169{bottom:246.766500px;}
.yd5{bottom:247.666500px;}
.yb4{bottom:250.216500px;}
.y14f{bottom:252.241500px;}
.y101{bottom:253.141500px;}
.y37{bottom:260.791500px;}
.y90{bottom:261.841500px;}
.yee{bottom:262.741500px;}
.y17e{bottom:265.291500px;}
.y11e{bottom:266.791500px;}
.ye6{bottom:268.741500px;}
.y161{bottom:269.341500px;}
.y184{bottom:270.241500px;}
.yd2{bottom:273.391500px;}
.y55{bottom:274.291500px;}
.yd4{bottom:279.391500px;}
.y78{bottom:283.291500px;}
.y100{bottom:284.191500px;}
.y143{bottom:285.541500px;}
.y11d{bottom:288.691500px;}
.y36{bottom:291.841500px;}
.y8f{bottom:292.891500px;}
.yb3{bottom:294.016500px;}
.y17d{bottom:296.341500px;}
.yd3{bottom:298.366500px;}
.ye5{bottom:299.791500px;}
.y160{bottom:300.391500px;}
.y183{bottom:301.291500px;}
.yc6{bottom:301.666500px;}
.y142{bottom:302.491500px;}
.y10a{bottom:303.241500px;}
.y54{bottom:305.341500px;}
.y11c{bottom:313.666500px;}
.y77{bottom:314.341500px;}
.yff{bottom:315.241500px;}
.y35{bottom:322.891500px;}
.y8e{bottom:323.941500px;}
.yd1{bottom:324.091500px;}
.y168{bottom:324.766500px;}
.yb2{bottom:325.066500px;}
.y17c{bottom:327.391500px;}
.y141{bottom:327.466500px;}
.ye9{bottom:328.816500px;}
.ye4{bottom:330.841500px;}
.y15f{bottom:331.441500px;}
.y182{bottom:332.341500px;}
.yc5{bottom:332.716500px;}
.y53{bottom:336.391500px;}
.y11b{bottom:338.641500px;}
.yed{bottom:338.866500px;}
.y76{bottom:345.391500px;}
.yfe{bottom:346.291500px;}
.yd0{bottom:349.066500px;}
.y140{bottom:353.191500px;}
.y34{bottom:353.941500px;}
.y8d{bottom:354.991500px;}
.yb1{bottom:356.116500px;}
.y17b{bottom:358.441500px;}
.y13f{bottom:359.941500px;}
.y167{bottom:361.741500px;}
.y15e{bottom:362.491500px;}
.ye3{bottom:363.391500px;}
.y11a{bottom:363.616500px;}
.yc4{bottom:363.766500px;}
.y52{bottom:367.441500px;}
.y75{bottom:376.441500px;}
.yfd{bottom:377.341500px;}
.y13e{bottom:378.916500px;}
.y33{bottom:384.991500px;}
.y8c{bottom:386.041500px;}
.yb0{bottom:387.166500px;}
.y119{bottom:388.591500px;}
.y17a{bottom:389.491500px;}
.y166{bottom:389.716500px;}
.y15d{bottom:393.541500px;}
.ye2{bottom:394.441500px;}
.yc3{bottom:394.816500px;}
.y51{bottom:398.491500px;}
.y74{bottom:407.491500px;}
.yfc{bottom:408.391500px;}
.y118{bottom:413.566500px;}
.y32{bottom:416.041500px;}
.ycf{bottom:416.491500px;}
.y8b{bottom:417.091500px;}
.yaf{bottom:418.216500px;}
.y179{bottom:420.541500px;}
.y15c{bottom:424.591500px;}
.ye1{bottom:425.491500px;}
.yc2{bottom:425.866500px;}
.yeb{bottom:426.316500px;}
.y165{bottom:426.691500px;}
.y50{bottom:429.541500px;}
.y73{bottom:438.541500px;}
.yfb{bottom:439.441500px;}
.y31{bottom:447.091500px;}
.yce{bottom:447.541500px;}
.y8a{bottom:448.141500px;}
.yae{bottom:450.766500px;}
.y178{bottom:451.591500px;}
.y15b{bottom:455.641500px;}
.ye0{bottom:456.541500px;}
.y13d{bottom:456.691500px;}
.y4f{bottom:460.591500px;}
.y117{bottom:463.516500px;}
.y164{bottom:463.666500px;}
.yc1{bottom:468.316500px;}
.y14e{bottom:469.591500px;}
.yfa{bottom:470.491500px;}
.y30{bottom:478.141500px;}
.y72{bottom:478.591500px;}
.y89{bottom:479.191500px;}
.y10{bottom:479.641500px;}
.yad{bottom:481.816500px;}
.y177{bottom:482.641500px;}
.y15a{bottom:486.691500px;}
.ydf{bottom:487.591500px;}
.y13c{bottom:487.741500px;}
.y116{bottom:488.491500px;}
.y4e{bottom:491.641500px;}
.ybf{bottom:495.541500px;}
.y14d{bottom:500.641500px;}
.yf9{bottom:501.541500px;}
.y2f{bottom:509.191500px;}
.y71{bottom:509.641500px;}
.y88{bottom:510.241500px;}
.yac{bottom:512.866500px;}
.y115{bottom:513.466500px;}
.y176{bottom:513.691500px;}
.y159{bottom:517.741500px;}
.yde{bottom:518.641500px;}
.y13b{bottom:518.791500px;}
.yf{bottom:519.691500px;}
.yc0{bottom:521.716500px;}
.y4d{bottom:522.691500px;}
.ybe{bottom:523.966500px;}
.y62{bottom:531.691500px;}
.yf8{bottom:532.591500px;}
.y114{bottom:538.441500px;}
.y2e{bottom:540.241500px;}
.y70{bottom:540.691500px;}
.y87{bottom:541.291500px;}
.yab{bottom:543.916500px;}
.y175{bottom:544.741500px;}
.y158{bottom:548.791500px;}
.ydd{bottom:549.691500px;}
.y13a{bottom:549.841500px;}
.ybc{bottom:553.216500px;}
.y4c{bottom:553.741500px;}
.ye{bottom:559.741500px;}
.y14c{bottom:562.741500px;}
.y113{bottom:563.416500px;}
.yf7{bottom:563.641500px;}
.y61{bottom:571.741500px;}
.y86{bottom:572.341500px;}
.yaa{bottom:574.966500px;}
.y174{bottom:575.791500px;}
.ybd{bottom:579.391500px;}
.y157{bottom:579.841500px;}
.y2d{bottom:580.291500px;}
.ydc{bottom:580.741500px;}
.y139{bottom:580.891500px;}
.ybb{bottom:581.641500px;}
.y4b{bottom:584.791500px;}
.y112{bottom:588.391500px;}
.yd{bottom:590.791500px;}
.y14b{bottom:593.791500px;}
.yf6{bottom:594.691500px;}
.y60{bottom:602.791500px;}
.y85{bottom:603.391500px;}
.ya9{bottom:606.016500px;}
.y173{bottom:606.841500px;}
.y156{bottom:610.891500px;}
.y2c{bottom:611.341500px;}
.ydb{bottom:611.791500px;}
.y138{bottom:611.941500px;}
.y111{bottom:613.366500px;}
.yba{bottom:614.416500px;}
.y4a{bottom:615.841500px;}
.y20{bottom:624.391500px;}
.y14a{bottom:624.841500px;}
.yc{bottom:630.841500px;}
.y5f{bottom:633.841500px;}
.yf5{bottom:634.741500px;}
.ya8{bottom:637.066500px;}
.y172{bottom:637.891500px;}
.y110{bottom:639.091500px;}
.yda{bottom:642.841500px;}
.y2b{bottom:643.891500px;}
.y49{bottom:646.891500px;}
.yb9{bottom:647.191500px;}
.y155{bottom:650.941500px;}
.y84{bottom:652.441500px;}
.y1f{bottom:655.441500px;}
.y149{bottom:655.891500px;}
.y10f{bottom:658.066500px;}
.y137{bottom:660.991500px;}
.yb{bottom:661.891500px;}
.y5e{bottom:664.891500px;}
.ya7{bottom:668.116500px;}
.y171{bottom:668.941500px;}
.y6f{bottom:673.891500px;}
.y2a{bottom:676.441500px;}
.yb8{bottom:677.191500px;}
.y48{bottom:677.941500px;}
.y148{bottom:686.941500px;}
.y83{bottom:692.491500px;}
.y5d{bottom:695.941500px;}
.ya6{bottom:699.166500px;}
.y154{bottom:699.991500px;}
.ya{bottom:701.941500px;}
.y107{bottom:703.441500px;}
.y6e{bottom:704.941500px;}
.yb7{bottom:705.616500px;}
.y1e{bottom:708.991500px;}
.yf4{bottom:717.241500px;}
.y10e{bottom:725.491500px;}
.yec{bottom:726.241500px;}
.y5c{bottom:726.991500px;}
.ya5{bottom:730.216500px;}
.y153{bottom:731.041500px;}
.y106{bottom:734.491500px;}
.y6d{bottom:735.991500px;}
.y1d{bottom:740.041500px;}
.y136{bottom:743.491500px;}
.ye8{bottom:748.816500px;}
.y47{bottom:749.041500px;}
.y10d{bottom:756.541500px;}
.y5b{bottom:758.041500px;}
.y135{bottom:760.441500px;}
.ya4{bottom:761.266500px;}
.y152{bottom:762.091500px;}
.y105{bottom:765.541500px;}
.y6c{bottom:767.041500px;}
.y1c{bottom:771.091500px;}
.y9{bottom:782.041500px;}
.y82{bottom:784.291500px;}
.y134{bottom:785.416500px;}
.y10c{bottom:787.591500px;}
.y46{bottom:789.091500px;}
.ya3{bottom:792.316500px;}
.y151{bottom:793.141500px;}
.y104{bottom:796.591500px;}
.y6b{bottom:798.091500px;}
.yea{bottom:800.491500px;}
.y1b{bottom:802.141500px;}
.y133{bottom:810.391500px;}
.y10b{bottom:818.641500px;}
.y45{bottom:820.141500px;}
.ya2{bottom:823.366500px;}
.y170{bottom:824.191500px;}
.y81{bottom:825.691500px;}
.y6a{bottom:829.141500px;}
.y1a{bottom:833.191500px;}
.y132{bottom:835.366500px;}
.y29{bottom:842.191500px;}
.y44{bottom:851.191500px;}
.ya1{bottom:854.416500px;}
.y16f{bottom:855.241500px;}
.y69{bottom:860.191500px;}
.y131{bottom:860.341500px;}
.y8{bottom:862.141500px;}
.y19{bottom:864.241500px;}
.y80{bottom:867.091500px;}
.y28{bottom:873.241500px;}
.y43{bottom:882.241500px;}
.y130{bottom:885.316500px;}
.ya0{bottom:885.466500px;}
.y16e{bottom:886.291500px;}
.y68{bottom:891.241500px;}
.y18{bottom:895.291500px;}
.y7{bottom:900.241500px;}
.y27{bottom:904.291500px;}
.y7f{bottom:908.491500px;}
.y12f{bottom:910.291500px;}
.y42{bottom:913.291500px;}
.y16d{bottom:917.341500px;}
.y67{bottom:922.291500px;}
.y17{bottom:926.341500px;}
.y9f{bottom:927.916500px;}
.y12e{bottom:935.266500px;}
.y26{bottom:935.341500px;}
.y5a{bottom:944.341500px;}
.y9e{bottom:944.866500px;}
.y16c{bottom:948.391500px;}
.y7e{bottom:949.891500px;}
.y41{bottom:953.341500px;}
.y16{bottom:957.391500px;}
.y12d{bottom:960.241500px;}
.y9d{bottom:963.841500px;}
.y6{bottom:964.891500px;}
.y25{bottom:966.391500px;}
.ycd{bottom:975.391500px;}
.y16b{bottom:979.441500px;}
.yf3{bottom:982.891500px;}
.y9a{bottom:983.566500px;}
.y40{bottom:984.391500px;}
.y12c{bottom:985.216500px;}
.y15{bottom:988.441500px;}
.y9c{bottom:989.566500px;}
.y7d{bottom:991.291500px;}
.y24{bottom:997.441500px;}
.y5{bottom:1001.116500px;}
.ycc{bottom:1006.441500px;}
.y9b{bottom:1008.541500px;}
.y12b{bottom:1010.191500px;}
.yf2{bottom:1013.941500px;}
.y3f{bottom:1015.441500px;}
.y14{bottom:1019.491500px;}
.y23{bottom:1028.491500px;}
.y7c{bottom:1032.691500px;}
.y98{bottom:1034.266500px;}
.y12a{bottom:1035.166500px;}
.ycb{bottom:1037.491500px;}
.y4{bottom:1046.341500px;}
.y3e{bottom:1046.491500px;}
.y99{bottom:1047.241500px;}
.y13{bottom:1050.541500px;}
.y97{bottom:1053.241500px;}
.y22{bottom:1059.541500px;}
.y129{bottom:1060.141500px;}
.yca{bottom:1068.541500px;}
.y96{bottom:1072.216500px;}
.y3d{bottom:1077.541500px;}
.y12{bottom:1081.591500px;}
.y3{bottom:1082.566500px;}
.y128{bottom:1085.116500px;}
.y7b{bottom:1098.241500px;}
.y21{bottom:1099.591500px;}
.y3c{bottom:1108.591500px;}
.y127{bottom:1110.091500px;}
.y2{bottom:1127.791500px;}
.y126{bottom:1135.066500px;}
.y11{bottom:1139.641500px;}
.hc{height:27.562500px;}
.h6{height:36.955078px;}
.he{height:37.898438px;}
.h12{height:44.762695px;}
.hd{height:47.373047px;}
.h11{height:47.513672px;}
.h14{height:48.752344px;}
.h9{height:48.796875px;}
.h8{height:51.679688px;}
.hf{height:53.362500px;}
.h4{height:56.929688px;}
.h10{height:58.072266px;}
.hb{height:58.346484px;}
.ha{height:63.351562px;}
.h7{height:65.155078px;}
.h13{height:67.072266px;}
.h5{height:68.183789px;}
.h3{height:73.910156px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.725000px;}
.x3{left:135.825000px;}
.x1b{left:140.250000px;}
.x1a{left:145.200000px;}
.x2{left:149.025000px;}
.x23{left:150.375000px;}
.x22{left:173.325000px;}
.x14{left:181.725000px;}
.x4{left:198.975000px;}
.xe{left:205.950000px;}
.x24{left:214.425000px;}
.x1f{left:221.775000px;}
.x5{left:267.450000px;}
.x16{left:269.775000px;}
.x19{left:271.650000px;}
.xf{left:282.225000px;}
.x17{left:287.850000px;}
.x15{left:291.150000px;}
.x18{left:293.025000px;}
.x1c{left:296.400000px;}
.xb{left:316.575000px;}
.x6{left:342.075000px;}
.x10{left:365.250000px;}
.x1d{left:376.200000px;}
.x20{left:412.275000px;}
.x7{left:418.200000px;}
.xc{left:444.075000px;}
.x11{left:449.700000px;}
.x8{left:492.825000px;}
.x12{left:532.575000px;}
.x21{left:557.700000px;}
.x1e{left:578.250000px;}
.xd{left:593.025000px;}
.x9{left:608.550000px;}
.x13{left:657.300000px;}
.xa{left:699.300000px;}
@media print{
.v2{vertical-align:-25.066667pt;}
.v4{vertical-align:-22.933333pt;}
.v6{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:8.000000pt;}
.v8{vertical-align:18.933333pt;}
.v5{vertical-align:22.933333pt;}
.v3{vertical-align:25.066667pt;}
.v1{vertical-align:29.600000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.021333pt;}
.ls7{letter-spacing:0.038400pt;}
.ls0{letter-spacing:0.062400pt;}
.lsd{letter-spacing:0.066133pt;}
.ls11{letter-spacing:0.083200pt;}
.ls2{letter-spacing:0.100267pt;}
.ls12{letter-spacing:0.138667pt;}
.ls10{letter-spacing:1.600000pt;}
.ls14{letter-spacing:2.400000pt;}
.ls13{letter-spacing:2.666667pt;}
.lsa{letter-spacing:4.000000pt;}
.ls5{letter-spacing:4.800000pt;}
.ls6{letter-spacing:8.000000pt;}
.lsc{letter-spacing:8.533333pt;}
.lsf{letter-spacing:11.200000pt;}
.ls15{letter-spacing:13.866667pt;}
.ls9{letter-spacing:14.666667pt;}
.ls8{letter-spacing:24.800000pt;}
.ls4{letter-spacing:35.200000pt;}
.lse{letter-spacing:35.733333pt;}
.lsb{letter-spacing:77.066667pt;}
.ws5{word-spacing:-38.400000pt;}
.ws7{word-spacing:-35.200000pt;}
.ws1{word-spacing:-18.666667pt;}
.ws4{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.666667pt;}
.ws8{word-spacing:-12.800000pt;}
.ws9{word-spacing:-11.733333pt;}
.ws0{word-spacing:-10.800000pt;}
.wsd{word-spacing:-9.600000pt;}
.ws2{word-spacing:-9.333333pt;}
.ws6{word-spacing:-8.533333pt;}
.ws11{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws12{word-spacing:65.530667pt;}
.wsb{word-spacing:89.914667pt;}
.wsc{word-spacing:100.949333pt;}
.ws13{word-spacing:111.338667pt;}
.ws10{word-spacing:123.752533pt;}
.wse{word-spacing:144.800000pt;}
.ws21{word-spacing:153.781333pt;}
.wsf{word-spacing:159.323733pt;}
.ws1a{word-spacing:160.352000pt;}
.ws1f{word-spacing:173.493333pt;}
.ws14{word-spacing:175.866667pt;}
.ws17{word-spacing:180.064000pt;}
.ws1d{word-spacing:186.458667pt;}
.ws20{word-spacing:193.029333pt;}
.ws1c{word-spacing:215.733333pt;}
.ws22{word-spacing:222.224000pt;}
.ws1b{word-spacing:225.530667pt;}
.ws19{word-spacing:235.269333pt;}
.ws16{word-spacing:238.613333pt;}
.ws15{word-spacing:238.709333pt;}
.ws1e{word-spacing:241.818667pt;}
.ws23{word-spacing:244.986667pt;}
.ws18{word-spacing:280.853333pt;}
.ws24{word-spacing:553.706667pt;}
.ws26{word-spacing:602.768000pt;}
.ws25{word-spacing:635.504000pt;}
._e{margin-left:-3.712000pt;}
._9{margin-left:-2.688000pt;}
._8{margin-left:-1.024000pt;}
._1{width:1.034667pt;}
._2{width:2.026667pt;}
._6{width:3.562667pt;}
._5{width:4.629333pt;}
._7{width:5.824000pt;}
._0{width:7.189333pt;}
._a{width:8.128000pt;}
._d{width:9.088000pt;}
._3{width:10.304000pt;}
._4{width:11.392000pt;}
._b{width:12.970667pt;}
._c{width:14.634667pt;}
._27{width:16.960000pt;}
._1b{width:18.092800pt;}
._52{width:19.370667pt;}
._54{width:23.381333pt;}
._28{width:24.714667pt;}
._2e{width:25.792000pt;}
._41{width:34.378667pt;}
._1a{width:35.876267pt;}
._29{width:38.400000pt;}
._12{width:46.702933pt;}
._13{width:48.036267pt;}
._f{width:49.514667pt;}
._10{width:50.453333pt;}
._2c{width:55.936000pt;}
._2a{width:77.248000pt;}
._20{width:91.632000pt;}
._11{width:94.199467pt;}
._2d{width:96.138667pt;}
._1c{width:97.690667pt;}
._1d{width:108.906667pt;}
._14{width:112.272000pt;}
._15{width:115.498667pt;}
._50{width:138.992000pt;}
._17{width:153.509333pt;}
._51{width:165.925333pt;}
._22{width:172.825600pt;}
._18{width:174.165333pt;}
._4f{width:176.325333pt;}
._23{width:182.564267pt;}
._26{width:185.381333pt;}
._16{width:219.274667pt;}
._1e{width:220.544000pt;}
._25{width:237.536000pt;}
._19{width:248.608000pt;}
._3e{width:249.818667pt;}
._1f{width:251.109333pt;}
._35{width:256.485333pt;}
._43{width:275.866667pt;}
._4e{width:281.226667pt;}
._24{width:282.794667pt;}
._2b{width:283.893333pt;}
._38{width:292.234667pt;}
._3d{width:301.973333pt;}
._53{width:308.528000pt;}
._2f{width:311.770667pt;}
._30{width:315.210667pt;}
._44{width:327.962667pt;}
._42{width:344.272000pt;}
._4d{width:363.114667pt;}
._21{width:375.664000pt;}
._46{width:568.373333pt;}
._34{width:614.149333pt;}
._4a{width:617.493333pt;}
._3c{width:620.282667pt;}
._49{width:621.818667pt;}
._3a{width:626.853333pt;}
._47{width:630.458667pt;}
._33{width:633.744000pt;}
._4b{width:636.912000pt;}
._32{width:640.432000pt;}
._3b{width:643.104000pt;}
._31{width:646.826667pt;}
._48{width:649.994667pt;}
._45{width:653.280000pt;}
._3f{width:666.245333pt;}
._37{width:672.816000pt;}
._39{width:689.066667pt;}
._36{width:698.864000pt;}
._4c{width:727.770667pt;}
._40{width:2134.320000pt;}
.fsa{font-size:27.733333pt;}
.fs4{font-size:34.133333pt;}
.fs2{font-size:37.333333pt;}
.fs9{font-size:38.400000pt;}
.fs1{font-size:43.200000pt;}
.fs7{font-size:46.933333pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:51.200000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.yc9{bottom:111.214667pt;}
.y125{bottom:112.414667pt;}
.y3b{bottom:116.948000pt;}
.y59{bottom:118.148000pt;}
.yd9{bottom:122.881333pt;}
.y181{bottom:125.414667pt;}
.y95{bottom:128.081333pt;}
.y124{bottom:129.281333pt;}
.y188{bottom:129.814667pt;}
.y147{bottom:130.614667pt;}
.y3a{bottom:133.814667pt;}
.ye7{bottom:135.014667pt;}
.y66{bottom:136.214667pt;}
.y94{bottom:144.948000pt;}
.y65{bottom:148.548000pt;}
.yd8{bottom:150.481333pt;}
.yf1{bottom:150.748000pt;}
.y123{bottom:151.881333pt;}
.y180{bottom:153.014667pt;}
.y103{bottom:153.814667pt;}
.y109{bottom:154.281333pt;}
.y187{bottom:157.414667pt;}
.y146{bottom:158.214667pt;}
.y58{bottom:161.014667pt;}
.y93{bottom:161.814667pt;}
.y122{bottom:163.014667pt;}
.y64{bottom:165.414667pt;}
.yb6{bottom:166.614667pt;}
.y108{bottom:172.348000pt;}
.y7a{bottom:172.614667pt;}
.y39{bottom:176.614667pt;}
.yf0{bottom:178.348000pt;}
.y92{bottom:178.681333pt;}
.y121{bottom:179.881333pt;}
.y17f{bottom:180.614667pt;}
.yb5{bottom:183.214667pt;}
.y186{bottom:185.014667pt;}
.y145{bottom:185.814667pt;}
.yd7{bottom:188.214667pt;}
.y57{bottom:188.614667pt;}
.y63{bottom:189.214667pt;}
.y102{bottom:189.414667pt;}
.y163{bottom:190.414667pt;}
.yc8{bottom:195.548000pt;}
.y150{bottom:196.614667pt;}
.y16a{bottom:196.748000pt;}
.y120{bottom:197.948000pt;}
.y91{bottom:201.281333pt;}
.yd6{bottom:203.281333pt;}
.y38{bottom:204.214667pt;}
.yef{bottom:205.948000pt;}
.y79{bottom:208.214667pt;}
.y162{bottom:208.481333pt;}
.y185{bottom:212.614667pt;}
.y144{bottom:213.414667pt;}
.y11f{bottom:216.014667pt;}
.y56{bottom:216.214667pt;}
.yc7{bottom:218.148000pt;}
.y169{bottom:219.348000pt;}
.yd5{bottom:220.148000pt;}
.yb4{bottom:222.414667pt;}
.y14f{bottom:224.214667pt;}
.y101{bottom:225.014667pt;}
.y37{bottom:231.814667pt;}
.y90{bottom:232.748000pt;}
.yee{bottom:233.548000pt;}
.y17e{bottom:235.814667pt;}
.y11e{bottom:237.148000pt;}
.ye6{bottom:238.881333pt;}
.y161{bottom:239.414667pt;}
.y184{bottom:240.214667pt;}
.yd2{bottom:243.014667pt;}
.y55{bottom:243.814667pt;}
.yd4{bottom:248.348000pt;}
.y78{bottom:251.814667pt;}
.y100{bottom:252.614667pt;}
.y143{bottom:253.814667pt;}
.y11d{bottom:256.614667pt;}
.y36{bottom:259.414667pt;}
.y8f{bottom:260.348000pt;}
.yb3{bottom:261.348000pt;}
.y17d{bottom:263.414667pt;}
.yd3{bottom:265.214667pt;}
.ye5{bottom:266.481333pt;}
.y160{bottom:267.014667pt;}
.y183{bottom:267.814667pt;}
.yc6{bottom:268.148000pt;}
.y142{bottom:268.881333pt;}
.y10a{bottom:269.548000pt;}
.y54{bottom:271.414667pt;}
.y11c{bottom:278.814667pt;}
.y77{bottom:279.414667pt;}
.yff{bottom:280.214667pt;}
.y35{bottom:287.014667pt;}
.y8e{bottom:287.948000pt;}
.yd1{bottom:288.081333pt;}
.y168{bottom:288.681333pt;}
.yb2{bottom:288.948000pt;}
.y17c{bottom:291.014667pt;}
.y141{bottom:291.081333pt;}
.ye9{bottom:292.281333pt;}
.ye4{bottom:294.081333pt;}
.y15f{bottom:294.614667pt;}
.y182{bottom:295.414667pt;}
.yc5{bottom:295.748000pt;}
.y53{bottom:299.014667pt;}
.y11b{bottom:301.014667pt;}
.yed{bottom:301.214667pt;}
.y76{bottom:307.014667pt;}
.yfe{bottom:307.814667pt;}
.yd0{bottom:310.281333pt;}
.y140{bottom:313.948000pt;}
.y34{bottom:314.614667pt;}
.y8d{bottom:315.548000pt;}
.yb1{bottom:316.548000pt;}
.y17b{bottom:318.614667pt;}
.y13f{bottom:319.948000pt;}
.y167{bottom:321.548000pt;}
.y15e{bottom:322.214667pt;}
.ye3{bottom:323.014667pt;}
.y11a{bottom:323.214667pt;}
.yc4{bottom:323.348000pt;}
.y52{bottom:326.614667pt;}
.y75{bottom:334.614667pt;}
.yfd{bottom:335.414667pt;}
.y13e{bottom:336.814667pt;}
.y33{bottom:342.214667pt;}
.y8c{bottom:343.148000pt;}
.yb0{bottom:344.148000pt;}
.y119{bottom:345.414667pt;}
.y17a{bottom:346.214667pt;}
.y166{bottom:346.414667pt;}
.y15d{bottom:349.814667pt;}
.ye2{bottom:350.614667pt;}
.yc3{bottom:350.948000pt;}
.y51{bottom:354.214667pt;}
.y74{bottom:362.214667pt;}
.yfc{bottom:363.014667pt;}
.y118{bottom:367.614667pt;}
.y32{bottom:369.814667pt;}
.ycf{bottom:370.214667pt;}
.y8b{bottom:370.748000pt;}
.yaf{bottom:371.748000pt;}
.y179{bottom:373.814667pt;}
.y15c{bottom:377.414667pt;}
.ye1{bottom:378.214667pt;}
.yc2{bottom:378.548000pt;}
.yeb{bottom:378.948000pt;}
.y165{bottom:379.281333pt;}
.y50{bottom:381.814667pt;}
.y73{bottom:389.814667pt;}
.yfb{bottom:390.614667pt;}
.y31{bottom:397.414667pt;}
.yce{bottom:397.814667pt;}
.y8a{bottom:398.348000pt;}
.yae{bottom:400.681333pt;}
.y178{bottom:401.414667pt;}
.y15b{bottom:405.014667pt;}
.ye0{bottom:405.814667pt;}
.y13d{bottom:405.948000pt;}
.y4f{bottom:409.414667pt;}
.y117{bottom:412.014667pt;}
.y164{bottom:412.148000pt;}
.yc1{bottom:416.281333pt;}
.y14e{bottom:417.414667pt;}
.yfa{bottom:418.214667pt;}
.y30{bottom:425.014667pt;}
.y72{bottom:425.414667pt;}
.y89{bottom:425.948000pt;}
.y10{bottom:426.348000pt;}
.yad{bottom:428.281333pt;}
.y177{bottom:429.014667pt;}
.y15a{bottom:432.614667pt;}
.ydf{bottom:433.414667pt;}
.y13c{bottom:433.548000pt;}
.y116{bottom:434.214667pt;}
.y4e{bottom:437.014667pt;}
.ybf{bottom:440.481333pt;}
.y14d{bottom:445.014667pt;}
.yf9{bottom:445.814667pt;}
.y2f{bottom:452.614667pt;}
.y71{bottom:453.014667pt;}
.y88{bottom:453.548000pt;}
.yac{bottom:455.881333pt;}
.y115{bottom:456.414667pt;}
.y176{bottom:456.614667pt;}
.y159{bottom:460.214667pt;}
.yde{bottom:461.014667pt;}
.y13b{bottom:461.148000pt;}
.yf{bottom:461.948000pt;}
.yc0{bottom:463.748000pt;}
.y4d{bottom:464.614667pt;}
.ybe{bottom:465.748000pt;}
.y62{bottom:472.614667pt;}
.yf8{bottom:473.414667pt;}
.y114{bottom:478.614667pt;}
.y2e{bottom:480.214667pt;}
.y70{bottom:480.614667pt;}
.y87{bottom:481.148000pt;}
.yab{bottom:483.481333pt;}
.y175{bottom:484.214667pt;}
.y158{bottom:487.814667pt;}
.ydd{bottom:488.614667pt;}
.y13a{bottom:488.748000pt;}
.ybc{bottom:491.748000pt;}
.y4c{bottom:492.214667pt;}
.ye{bottom:497.548000pt;}
.y14c{bottom:500.214667pt;}
.y113{bottom:500.814667pt;}
.yf7{bottom:501.014667pt;}
.y61{bottom:508.214667pt;}
.y86{bottom:508.748000pt;}
.yaa{bottom:511.081333pt;}
.y174{bottom:511.814667pt;}
.ybd{bottom:515.014667pt;}
.y157{bottom:515.414667pt;}
.y2d{bottom:515.814667pt;}
.ydc{bottom:516.214667pt;}
.y139{bottom:516.348000pt;}
.ybb{bottom:517.014667pt;}
.y4b{bottom:519.814667pt;}
.y112{bottom:523.014667pt;}
.yd{bottom:525.148000pt;}
.y14b{bottom:527.814667pt;}
.yf6{bottom:528.614667pt;}
.y60{bottom:535.814667pt;}
.y85{bottom:536.348000pt;}
.ya9{bottom:538.681333pt;}
.y173{bottom:539.414667pt;}
.y156{bottom:543.014667pt;}
.y2c{bottom:543.414667pt;}
.ydb{bottom:543.814667pt;}
.y138{bottom:543.948000pt;}
.y111{bottom:545.214667pt;}
.yba{bottom:546.148000pt;}
.y4a{bottom:547.414667pt;}
.y20{bottom:555.014667pt;}
.y14a{bottom:555.414667pt;}
.yc{bottom:560.748000pt;}
.y5f{bottom:563.414667pt;}
.yf5{bottom:564.214667pt;}
.ya8{bottom:566.281333pt;}
.y172{bottom:567.014667pt;}
.y110{bottom:568.081333pt;}
.yda{bottom:571.414667pt;}
.y2b{bottom:572.348000pt;}
.y49{bottom:575.014667pt;}
.yb9{bottom:575.281333pt;}
.y155{bottom:578.614667pt;}
.y84{bottom:579.948000pt;}
.y1f{bottom:582.614667pt;}
.y149{bottom:583.014667pt;}
.y10f{bottom:584.948000pt;}
.y137{bottom:587.548000pt;}
.yb{bottom:588.348000pt;}
.y5e{bottom:591.014667pt;}
.ya7{bottom:593.881333pt;}
.y171{bottom:594.614667pt;}
.y6f{bottom:599.014667pt;}
.y2a{bottom:601.281333pt;}
.yb8{bottom:601.948000pt;}
.y48{bottom:602.614667pt;}
.y148{bottom:610.614667pt;}
.y83{bottom:615.548000pt;}
.y5d{bottom:618.614667pt;}
.ya6{bottom:621.481333pt;}
.y154{bottom:622.214667pt;}
.ya{bottom:623.948000pt;}
.y107{bottom:625.281333pt;}
.y6e{bottom:626.614667pt;}
.yb7{bottom:627.214667pt;}
.y1e{bottom:630.214667pt;}
.yf4{bottom:637.548000pt;}
.y10e{bottom:644.881333pt;}
.yec{bottom:645.548000pt;}
.y5c{bottom:646.214667pt;}
.ya5{bottom:649.081333pt;}
.y153{bottom:649.814667pt;}
.y106{bottom:652.881333pt;}
.y6d{bottom:654.214667pt;}
.y1d{bottom:657.814667pt;}
.y136{bottom:660.881333pt;}
.ye8{bottom:665.614667pt;}
.y47{bottom:665.814667pt;}
.y10d{bottom:672.481333pt;}
.y5b{bottom:673.814667pt;}
.y135{bottom:675.948000pt;}
.ya4{bottom:676.681333pt;}
.y152{bottom:677.414667pt;}
.y105{bottom:680.481333pt;}
.y6c{bottom:681.814667pt;}
.y1c{bottom:685.414667pt;}
.y9{bottom:695.148000pt;}
.y82{bottom:697.148000pt;}
.y134{bottom:698.148000pt;}
.y10c{bottom:700.081333pt;}
.y46{bottom:701.414667pt;}
.ya3{bottom:704.281333pt;}
.y151{bottom:705.014667pt;}
.y104{bottom:708.081333pt;}
.y6b{bottom:709.414667pt;}
.yea{bottom:711.548000pt;}
.y1b{bottom:713.014667pt;}
.y133{bottom:720.348000pt;}
.y10b{bottom:727.681333pt;}
.y45{bottom:729.014667pt;}
.ya2{bottom:731.881333pt;}
.y170{bottom:732.614667pt;}
.y81{bottom:733.948000pt;}
.y6a{bottom:737.014667pt;}
.y1a{bottom:740.614667pt;}
.y132{bottom:742.548000pt;}
.y29{bottom:748.614667pt;}
.y44{bottom:756.614667pt;}
.ya1{bottom:759.481333pt;}
.y16f{bottom:760.214667pt;}
.y69{bottom:764.614667pt;}
.y131{bottom:764.748000pt;}
.y8{bottom:766.348000pt;}
.y19{bottom:768.214667pt;}
.y80{bottom:770.748000pt;}
.y28{bottom:776.214667pt;}
.y43{bottom:784.214667pt;}
.y130{bottom:786.948000pt;}
.ya0{bottom:787.081333pt;}
.y16e{bottom:787.814667pt;}
.y68{bottom:792.214667pt;}
.y18{bottom:795.814667pt;}
.y7{bottom:800.214667pt;}
.y27{bottom:803.814667pt;}
.y7f{bottom:807.548000pt;}
.y12f{bottom:809.148000pt;}
.y42{bottom:811.814667pt;}
.y16d{bottom:815.414667pt;}
.y67{bottom:819.814667pt;}
.y17{bottom:823.414667pt;}
.y9f{bottom:824.814667pt;}
.y12e{bottom:831.348000pt;}
.y26{bottom:831.414667pt;}
.y5a{bottom:839.414667pt;}
.y9e{bottom:839.881333pt;}
.y16c{bottom:843.014667pt;}
.y7e{bottom:844.348000pt;}
.y41{bottom:847.414667pt;}
.y16{bottom:851.014667pt;}
.y12d{bottom:853.548000pt;}
.y9d{bottom:856.748000pt;}
.y6{bottom:857.681333pt;}
.y25{bottom:859.014667pt;}
.ycd{bottom:867.014667pt;}
.y16b{bottom:870.614667pt;}
.yf3{bottom:873.681333pt;}
.y9a{bottom:874.281333pt;}
.y40{bottom:875.014667pt;}
.y12c{bottom:875.748000pt;}
.y15{bottom:878.614667pt;}
.y9c{bottom:879.614667pt;}
.y7d{bottom:881.148000pt;}
.y24{bottom:886.614667pt;}
.y5{bottom:889.881333pt;}
.ycc{bottom:894.614667pt;}
.y9b{bottom:896.481333pt;}
.y12b{bottom:897.948000pt;}
.yf2{bottom:901.281333pt;}
.y3f{bottom:902.614667pt;}
.y14{bottom:906.214667pt;}
.y23{bottom:914.214667pt;}
.y7c{bottom:917.948000pt;}
.y98{bottom:919.348000pt;}
.y12a{bottom:920.148000pt;}
.ycb{bottom:922.214667pt;}
.y4{bottom:930.081333pt;}
.y3e{bottom:930.214667pt;}
.y99{bottom:930.881333pt;}
.y13{bottom:933.814667pt;}
.y97{bottom:936.214667pt;}
.y22{bottom:941.814667pt;}
.y129{bottom:942.348000pt;}
.yca{bottom:949.814667pt;}
.y96{bottom:953.081333pt;}
.y3d{bottom:957.814667pt;}
.y12{bottom:961.414667pt;}
.y3{bottom:962.281333pt;}
.y128{bottom:964.548000pt;}
.y7b{bottom:976.214667pt;}
.y21{bottom:977.414667pt;}
.y3c{bottom:985.414667pt;}
.y127{bottom:986.748000pt;}
.y2{bottom:1002.481333pt;}
.y126{bottom:1008.948000pt;}
.y11{bottom:1013.014667pt;}
.hc{height:24.500000pt;}
.h6{height:32.848958pt;}
.he{height:33.687500pt;}
.h12{height:39.789062pt;}
.hd{height:42.109375pt;}
.h11{height:42.234375pt;}
.h14{height:43.335417pt;}
.h9{height:43.375000pt;}
.h8{height:45.937500pt;}
.hf{height:47.433333pt;}
.h4{height:50.604167pt;}
.h10{height:51.619792pt;}
.hb{height:51.863542pt;}
.ha{height:56.312500pt;}
.h7{height:57.915625pt;}
.h13{height:59.619792pt;}
.h5{height:60.607813pt;}
.h3{height:65.697917pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.533333pt;}
.x3{left:120.733333pt;}
.x1b{left:124.666667pt;}
.x1a{left:129.066667pt;}
.x2{left:132.466667pt;}
.x23{left:133.666667pt;}
.x22{left:154.066667pt;}
.x14{left:161.533333pt;}
.x4{left:176.866667pt;}
.xe{left:183.066667pt;}
.x24{left:190.600000pt;}
.x1f{left:197.133333pt;}
.x5{left:237.733333pt;}
.x16{left:239.800000pt;}
.x19{left:241.466667pt;}
.xf{left:250.866667pt;}
.x17{left:255.866667pt;}
.x15{left:258.800000pt;}
.x18{left:260.466667pt;}
.x1c{left:263.466667pt;}
.xb{left:281.400000pt;}
.x6{left:304.066667pt;}
.x10{left:324.666667pt;}
.x1d{left:334.400000pt;}
.x20{left:366.466667pt;}
.x7{left:371.733333pt;}
.xc{left:394.733333pt;}
.x11{left:399.733333pt;}
.x8{left:438.066667pt;}
.x12{left:473.400000pt;}
.x21{left:495.733333pt;}
.x1e{left:514.000000pt;}
.xd{left:527.133333pt;}
.x9{left:540.933333pt;}
.x13{left:584.266667pt;}
.xa{left:621.600000pt;}
}




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