
    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_95979b5cf39d9fd7e94cfa21.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_54d584ef13ddafb5db962f78.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e3ba59f44c1ee73286e76aad.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_2be2f2a43e72a56831e96070.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_d21fb039b3d8f259075480c1.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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c6523c096f2a10fd304ad4cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.440000px;}
.ls16{letter-spacing:-0.954000px;}
.ls8{letter-spacing:-0.942000px;}
.ls11{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.486600px;}
.lse{letter-spacing:-0.466800px;}
.ls1a{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.020160px;}
.lsb{letter-spacing:-0.015600px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.015840px;}
.ls4{letter-spacing:0.020160px;}
.ls17{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.250800px;}
.ls15{letter-spacing:0.466800px;}
.lsa{letter-spacing:0.486600px;}
.ls1b{letter-spacing:0.501000px;}
.lsd{letter-spacing:0.507000px;}
.ls1{letter-spacing:0.519840px;}
.ls0{letter-spacing:0.720000px;}
.ls10{letter-spacing:9.106560px;}
.lsf{letter-spacing:13.426560px;}
.ls2{letter-spacing:14.400000px;}
.ls13{letter-spacing:16.306560px;}
.ls14{letter-spacing:26.386560px;}
.ls19{letter-spacing:35.749440px;}
.ls18{letter-spacing:40.786560px;}
.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;}
}
.ws11{word-spacing:-60.480000px;}
.wsc{word-spacing:-15.627000px;}
.ws6{word-spacing:-15.606600px;}
.wsf{word-spacing:-15.586800px;}
.ws1{word-spacing:-15.120000px;}
.wsd{word-spacing:-15.099840px;}
.wse{word-spacing:-14.653200px;}
.ws0{word-spacing:-14.633400px;}
.ws10{word-spacing:-14.166000px;}
.ws4{word-spacing:-13.680000px;}
.ws12{word-spacing:-12.600000px;}
.ws7{word-spacing:-12.240000px;}
.ws9{word-spacing:-12.130800px;}
.ws2{word-spacing:-11.880000px;}
.ws8{word-spacing:-11.864400px;}
.ws3{word-spacing:-11.160000px;}
.wsb{word-spacing:0.000000px;}
.wsa{word-spacing:12.453840px;}
.ws5{word-spacing:29.773080px;}
._1e{margin-left:-2.519021px;}
._0{margin-left:-1.451399px;}
._1{width:1.148999px;}
._2{width:2.607364px;}
._f{width:3.877381px;}
._5{width:4.923645px;}
._4{width:6.004023px;}
._3{width:7.707239px;}
._1b{width:9.555828px;}
._22{width:11.258488px;}
._12{width:12.640211px;}
._1c{width:13.775036px;}
._13{width:15.468465px;}
._1d{width:16.813198px;}
._24{width:18.515407px;}
._d{width:19.550205px;}
._3c{width:20.577780px;}
._c{width:21.605877px;}
._10{width:23.230233px;}
._11{width:25.129988px;}
._7{width:26.487009px;}
._6{width:28.264254px;}
._9{width:30.062701px;}
._3e{width:31.082458px;}
._8{width:32.097073px;}
._e{width:33.502260px;}
._19{width:35.441401px;}
._1a{width:37.012792px;}
._a{width:39.015688px;}
._23{width:40.071133px;}
._b{width:41.401173px;}
._27{width:42.490312px;}
._29{width:43.703879px;}
._25{width:44.755200px;}
._2a{width:46.270919px;}
._3b{width:47.668606px;}
._43{width:48.942104px;}
._36{width:50.158696px;}
._32{width:51.426323px;}
._31{width:52.617479px;}
._14{width:53.766685px;}
._15{width:55.759242px;}
._2e{width:57.071879px;}
._42{width:59.088960px;}
._37{width:60.172940px;}
._26{width:61.918900px;}
._20{width:63.072121px;}
._18{width:65.318400px;}
._16{width:66.769799px;}
._2c{width:68.212641px;}
._2b{width:69.227161px;}
._3d{width:70.569241px;}
._1f{width:73.410119px;}
._21{width:75.194326px;}
._17{width:81.103801px;}
._2d{width:83.220359px;}
._44{width:84.771700px;}
._34{width:86.123520px;}
._33{width:87.454080px;}
._3a{width:92.231758px;}
._39{width:93.985920px;}
._38{width:95.558279px;}
._45{width:100.661760px;}
._46{width:101.964321px;}
._30{width:104.388359px;}
._2f{width:105.965620px;}
._40{width:129.185038px;}
._3f{width:130.334400px;}
._28{width:152.712000px;}
._41{width:161.058119px;}
._35{width:298.105799px;}
.fc6{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,255);}
.fc1{color:rgb(0,0,204);}
.fc5{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:119.520000px;}
.fs2{font-size:144.000000px;}
.y7a{bottom:-13.356000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.680000px;}
.y8{bottom:6.516000px;}
.y4{bottom:7.236000px;}
.yb{bottom:12.600000px;}
.y6{bottom:18.360000px;}
.y3{bottom:19.116000px;}
.ya{bottom:26.280000px;}
.y5{bottom:32.400000px;}
.y9{bottom:40.320000px;}
.y139{bottom:79.956000px;}
.y11b{bottom:82.476000px;}
.y18e{bottom:90.756000px;}
.yb2{bottom:92.556000px;}
.y1d1{bottom:94.716000px;}
.y44{bottom:95.436000px;}
.y173{bottom:97.236000px;}
.y15f{bottom:97.596000px;}
.y138{bottom:97.956000px;}
.y11a{bottom:100.836000px;}
.y43{bottom:109.116000px;}
.yb1{bottom:110.556000px;}
.y1d0{bottom:112.716000px;}
.y77{bottom:113.796000px;}
.y172{bottom:115.236000px;}
.y15e{bottom:115.596000px;}
.y137{bottom:116.316000px;}
.y119{bottom:118.836000px;}
.y1a1{bottom:120.636000px;}
.y42{bottom:122.796000px;}
.y18d{bottom:127.116000px;}
.yb0{bottom:128.916000px;}
.y1cf{bottom:130.716000px;}
.y76{bottom:131.832000px;}
.y15d{bottom:133.632000px;}
.ye2{bottom:134.352000px;}
.y118{bottom:136.872000px;}
.y1a0{bottom:140.472000px;}
.y18c{bottom:145.152000px;}
.yaf{bottom:146.952000px;}
.y1ce{bottom:149.112000px;}
.y75{bottom:149.832000px;}
.y171{bottom:151.635000px;}
.y15c{bottom:151.995000px;}
.y41{bottom:152.355000px;}
.y117{bottom:155.235000px;}
.y19f{bottom:160.275000px;}
.yae{bottom:164.955000px;}
.y40{bottom:166.035000px;}
.y18b{bottom:167.115000px;}
.y74{bottom:168.195000px;}
.y170{bottom:169.635000px;}
.y15b{bottom:169.995000px;}
.ye1{bottom:170.715000px;}
.y19e{bottom:180.075000px;}
.y3f{bottom:180.435000px;}
.y116{bottom:181.515000px;}
.yad{bottom:183.315000px;}
.y1cd{bottom:185.115000px;}
.y73{bottom:186.195000px;}
.y16f{bottom:187.635000px;}
.y15a{bottom:187.995000px;}
.ye0{bottom:188.715000px;}
.y18a{bottom:194.115000px;}
.y3e{bottom:197.355000px;}
.y115{bottom:198.795000px;}
.y19d{bottom:199.875000px;}
.yac{bottom:201.315000px;}
.y1cc{bottom:203.475000px;}
.y72{bottom:204.195000px;}
.y16e{bottom:205.995000px;}
.y159{bottom:206.355000px;}
.ydf{bottom:206.715000px;}
.y189{bottom:212.115000px;}
.y3d{bottom:212.835000px;}
.yab{bottom:219.315000px;}
.y19c{bottom:219.675000px;}
.y1cb{bottom:221.475000px;}
.y71{bottom:222.555000px;}
.y16d{bottom:223.995000px;}
.y158{bottom:224.355000px;}
.yde{bottom:224.715000px;}
.y3c{bottom:228.315000px;}
.y188{bottom:230.475000px;}
.y114{bottom:234.795000px;}
.yaa{bottom:237.675000px;}
.y19b{bottom:239.475000px;}
.y70{bottom:240.555000px;}
.y16c{bottom:241.995000px;}
.y157{bottom:242.355000px;}
.ydd{bottom:243.075000px;}
.y3b{bottom:243.795000px;}
.y187{bottom:248.475000px;}
.y113{bottom:252.795000px;}
.ya9{bottom:255.675000px;}
.y1ca{bottom:257.835000px;}
.y6f{bottom:258.555000px;}
.y19a{bottom:259.275000px;}
.y3a{bottom:259.635000px;}
.y16b{bottom:260.355000px;}
.y156{bottom:260.715000px;}
.ydc{bottom:261.075000px;}
.y186{bottom:266.505000px;}
.y112{bottom:270.825000px;}
.ya8{bottom:273.705000px;}
.y39{bottom:275.145000px;}
.y1c9{bottom:275.865000px;}
.y6e{bottom:276.585000px;}
.y16a{bottom:278.385000px;}
.y155{bottom:278.745000px;}
.ydb{bottom:279.105000px;}
.y185{bottom:284.865000px;}
.y111{bottom:289.185000px;}
.ya7{bottom:291.705000px;}
.y1c8{bottom:293.865000px;}
.y6d{bottom:294.945000px;}
.y169{bottom:296.385000px;}
.y154{bottom:296.745000px;}
.yda{bottom:297.465000px;}
.y199{bottom:298.905000px;}
.y184{bottom:302.865000px;}
.y110{bottom:307.185000px;}
.ya6{bottom:310.065000px;}
.y1c7{bottom:312.225000px;}
.y6c{bottom:312.945000px;}
.y168{bottom:314.745000px;}
.yd9{bottom:315.465000px;}
.y153{bottom:318.705000px;}
.y136{bottom:319.065000px;}
.y183{bottom:320.865000px;}
.y38{bottom:321.945000px;}
.y10f{bottom:325.185000px;}
.y6b{bottom:330.945000px;}
.ya5{bottom:331.665000px;}
.y167{bottom:332.745000px;}
.yd8{bottom:333.465000px;}
.y135{bottom:336.345000px;}
.y1c6{bottom:338.145000px;}
.y198{bottom:338.865000px;}
.y182{bottom:339.225000px;}
.y37{bottom:339.945000px;}
.y10e{bottom:343.545000px;}
.y152{bottom:347.505000px;}
.ya4{bottom:348.945000px;}
.y6a{bottom:349.305000px;}
.y166{bottom:350.745000px;}
.yd7{bottom:351.825000px;}
.y181{bottom:357.225000px;}
.y36{bottom:357.945000px;}
.y197{bottom:358.665000px;}
.y10d{bottom:361.545000px;}
.y134{bottom:363.345000px;}
.y69{bottom:367.305000px;}
.y165{bottom:369.105000px;}
.yd6{bottom:369.825000px;}
.y180{bottom:375.225000px;}
.ya3{bottom:375.945000px;}
.y35{bottom:376.305000px;}
.y196{bottom:378.465000px;}
.y10c{bottom:379.545000px;}
.y133{bottom:381.705000px;}
.y68{bottom:385.305000px;}
.y151{bottom:387.105000px;}
.yd5{bottom:387.825000px;}
.y164{bottom:390.705000px;}
.y17f{bottom:393.225000px;}
.y34{bottom:394.305000px;}
.y1c5{bottom:396.105000px;}
.y10b{bottom:397.905000px;}
.y195{bottom:398.265000px;}
.y132{bottom:399.750000px;}
.y67{bottom:403.710000px;}
.yd4{bottom:406.230000px;}
.y150{bottom:406.950000px;}
.y17e{bottom:411.630000px;}
.y33{bottom:412.350000px;}
.y10a{bottom:415.950000px;}
.y131{bottom:417.750000px;}
.y194{bottom:418.110000px;}
.y66{bottom:421.710000px;}
.yd3{bottom:424.230000px;}
.y14f{bottom:426.750000px;}
.y17d{bottom:429.630000px;}
.ya2{bottom:430.350000px;}
.y32{bottom:430.710000px;}
.y109{bottom:433.950000px;}
.y1c4{bottom:435.750000px;}
.y130{bottom:436.110000px;}
.y193{bottom:437.910000px;}
.y65{bottom:439.710000px;}
.yd2{bottom:442.230000px;}
.y14e{bottom:446.550000px;}
.y17c{bottom:447.630000px;}
.y31{bottom:448.710000px;}
.y108{bottom:452.310000px;}
.y12f{bottom:454.110000px;}
.y1c3{bottom:455.550000px;}
.y192{bottom:457.710000px;}
.y64{bottom:458.070000px;}
.yd1{bottom:460.230000px;}
.y17b{bottom:465.990000px;}
.y14d{bottom:466.350000px;}
.y30{bottom:466.710000px;}
.y107{bottom:470.310000px;}
.y12e{bottom:472.110000px;}
.y1c2{bottom:475.350000px;}
.y63{bottom:476.070000px;}
.y191{bottom:477.510000px;}
.yd0{bottom:478.590000px;}
.y17a{bottom:483.990000px;}
.ya1{bottom:484.710000px;}
.y2f{bottom:485.070000px;}
.y14c{bottom:486.150000px;}
.y106{bottom:488.310000px;}
.y12d{bottom:490.110000px;}
.y1ed{bottom:492.630000px;}
.y62{bottom:494.070000px;}
.y1c1{bottom:495.150000px;}
.ycf{bottom:496.590000px;}
.y190{bottom:499.470000px;}
.ya0{bottom:503.070000px;}
.y14b{bottom:505.950000px;}
.y105{bottom:506.310000px;}
.y2e{bottom:507.030000px;}
.y12c{bottom:508.470000px;}
.y179{bottom:510.270000px;}
.y1ec{bottom:510.990000px;}
.yce{bottom:514.590000px;}
.y1c0{bottom:514.950000px;}
.y61{bottom:516.030000px;}
.y9f{bottom:521.070000px;}
.y104{bottom:524.670000px;}
.y14a{bottom:526.110000px;}
.y12b{bottom:526.470000px;}
.y178{bottom:527.550000px;}
.y1eb{bottom:528.270000px;}
.ycd{bottom:532.980000px;}
.y60{bottom:533.340000px;}
.y1bf{bottom:534.780000px;}
.y9e{bottom:539.100000px;}
.y103{bottom:542.700000px;}
.y12a{bottom:544.500000px;}
.y149{bottom:545.940000px;}
.y2d{bottom:547.380000px;}
.ycc{bottom:550.980000px;}
.y1be{bottom:554.580000px;}
.y9d{bottom:557.460000px;}
.y1ea{bottom:559.980000px;}
.y5f{bottom:560.340000px;}
.y102{bottom:560.700000px;}
.y129{bottom:562.860000px;}
.y177{bottom:563.580000px;}
.y148{bottom:565.740000px;}
.ycb{bottom:572.580000px;}
.y1bd{bottom:574.740000px;}
.y9c{bottom:575.460000px;}
.y1e9{bottom:577.260000px;}
.y5e{bottom:578.340000px;}
.y101{bottom:579.060000px;}
.y128{bottom:580.860000px;}
.y176{bottom:581.580000px;}
.y2c{bottom:582.300000px;}
.y147{bottom:585.540000px;}
.y9b{bottom:593.460000px;}
.y1bc{bottom:594.540000px;}
.y5d{bottom:596.340000px;}
.y100{bottom:597.060000px;}
.y2b{bottom:597.780000px;}
.y127{bottom:598.860000px;}
.yca{bottom:599.940000px;}
.y146{bottom:605.340000px;}
.y9a{bottom:611.460000px;}
.y1e8{bottom:611.820000px;}
.y2a{bottom:613.620000px;}
.y1bb{bottom:614.340000px;}
.y5c{bottom:614.700000px;}
.yff{bottom:615.060000px;}
.y126{bottom:617.220000px;}
.yc9{bottom:617.940000px;}
.y145{bottom:625.140000px;}
.y29{bottom:629.100000px;}
.y99{bottom:629.820000px;}
.y5b{bottom:632.700000px;}
.yfe{bottom:633.420000px;}
.y1ba{bottom:634.140000px;}
.y125{bottom:635.220000px;}
.yc8{bottom:635.940000px;}
.y28{bottom:644.580000px;}
.y144{bottom:644.940000px;}
.y1e7{bottom:646.380000px;}
.y98{bottom:647.820000px;}
.y5a{bottom:650.700000px;}
.yfd{bottom:651.420000px;}
.y124{bottom:653.220000px;}
.y1b9{bottom:653.940000px;}
.yc7{bottom:654.300000px;}
.y27{bottom:660.060000px;}
.y1e6{bottom:663.660000px;}
.y143{bottom:664.740000px;}
.y97{bottom:665.850000px;}
.y59{bottom:669.090000px;}
.y123{bottom:671.610000px;}
.yc6{bottom:672.330000px;}
.yfc{bottom:673.050000px;}
.y1b8{bottom:673.770000px;}
.y26{bottom:675.570000px;}
.y1e5{bottom:677.730000px;}
.y96{bottom:684.210000px;}
.y142{bottom:684.570000px;}
.y58{bottom:687.090000px;}
.y122{bottom:689.610000px;}
.yc5{bottom:690.330000px;}
.y25{bottom:691.050000px;}
.y1b7{bottom:693.570000px;}
.y1e4{bottom:698.250000px;}
.y95{bottom:702.210000px;}
.y141{bottom:704.370000px;}
.y57{bottom:705.090000px;}
.y24{bottom:706.530000px;}
.y121{bottom:707.610000px;}
.yc4{bottom:708.690000px;}
.y1e3{bottom:711.930000px;}
.y1b6{bottom:713.370000px;}
.yfb{bottom:717.690000px;}
.y94{bottom:720.210000px;}
.y23{bottom:722.010000px;}
.y56{bottom:723.450000px;}
.y140{bottom:724.530000px;}
.y120{bottom:725.610000px;}
.yc3{bottom:726.690000px;}
.y1b5{bottom:733.170000px;}
.yfa{bottom:735.690000px;}
.y22{bottom:737.850000px;}
.y93{bottom:738.570000px;}
.y1e2{bottom:739.650000px;}
.y55{bottom:741.450000px;}
.y11f{bottom:743.970000px;}
.y13f{bottom:744.330000px;}
.yc2{bottom:744.690000px;}
.y1b4{bottom:752.970000px;}
.y21{bottom:753.330000px;}
.yf9{bottom:753.690000px;}
.y92{bottom:756.570000px;}
.y54{bottom:759.450000px;}
.y11e{bottom:761.970000px;}
.yc1{bottom:763.050000px;}
.y13e{bottom:764.130000px;}
.y1e1{bottom:767.010000px;}
.y20{bottom:768.810000px;}
.yf8{bottom:772.050000px;}
.y91{bottom:774.570000px;}
.y53{bottom:777.810000px;}
.y1b3{bottom:779.250000px;}
.y11d{bottom:779.970000px;}
.yc0{bottom:781.050000px;}
.y13d{bottom:783.930000px;}
.y1f{bottom:784.290000px;}
.yf7{bottom:790.050000px;}
.y90{bottom:792.930000px;}
.y1e0{bottom:794.730000px;}
.y52{bottom:795.810000px;}
.y163{bottom:798.330000px;}
.ybf{bottom:799.050000px;}
.y1e{bottom:799.815000px;}
.y11c{bottom:801.975000px;}
.y13c{bottom:803.775000px;}
.yf6{bottom:808.095000px;}
.y1df{bottom:808.455000px;}
.y8f{bottom:810.975000px;}
.y51{bottom:813.855000px;}
.y1d{bottom:815.295000px;}
.y1b2{bottom:815.655000px;}
.y162{bottom:816.375000px;}
.ybe{bottom:817.095000px;}
.yf5{bottom:826.095000px;}
.y8e{bottom:828.975000px;}
.y13b{bottom:830.055000px;}
.y1c{bottom:830.775000px;}
.y50{bottom:831.855000px;}
.y1b1{bottom:833.655000px;}
.y161{bottom:834.375000px;}
.ybd{bottom:835.455000px;}
.yf4{bottom:844.455000px;}
.y1b{bottom:846.255000px;}
.y8d{bottom:846.975000px;}
.y13a{bottom:847.335000px;}
.y4f{bottom:850.215000px;}
.y1b0{bottom:851.655000px;}
.y18f{bottom:852.735000px;}
.ybc{bottom:853.455000px;}
.y160{bottom:856.335000px;}
.y175{bottom:857.055000px;}
.y1a{bottom:861.735000px;}
.yf3{bottom:862.455000px;}
.y8c{bottom:865.335000px;}
.y1de{bottom:867.495000px;}
.y4e{bottom:868.215000px;}
.y1af{bottom:870.015000px;}
.ybb{bottom:871.455000px;}
.y174{bottom:874.335000px;}
.y19{bottom:877.575000px;}
.yf2{bottom:880.455000px;}
.y1dd{bottom:881.895000px;}
.y8b{bottom:883.335000px;}
.y4d{bottom:886.215000px;}
.y1ae{bottom:888.015000px;}
.yba{bottom:889.815000px;}
.y18{bottom:893.055000px;}
.y1dc{bottom:896.295000px;}
.yf1{bottom:898.815000px;}
.y8a{bottom:901.335000px;}
.y4c{bottom:904.575000px;}
.y1ad{bottom:906.015000px;}
.yb9{bottom:907.815000px;}
.y17{bottom:908.535000px;}
.y1db{bottom:910.695000px;}
.yf0{bottom:916.815000px;}
.y89{bottom:919.695000px;}
.y4b{bottom:922.575000px;}
.y16{bottom:924.015000px;}
.y1da{bottom:925.455000px;}
.yb8{bottom:925.815000px;}
.yef{bottom:934.845000px;}
.y88{bottom:937.725000px;}
.y15{bottom:939.525000px;}
.y1d9{bottom:939.885000px;}
.y4a{bottom:940.605000px;}
.y1ac{bottom:942.405000px;}
.yb7{bottom:944.205000px;}
.yee{bottom:953.205000px;}
.y1d8{bottom:954.285000px;}
.y14{bottom:955.005000px;}
.y87{bottom:955.725000px;}
.y49{bottom:958.965000px;}
.y1ab{bottom:960.405000px;}
.yb6{bottom:962.205000px;}
.y1d7{bottom:968.685000px;}
.y13{bottom:970.485000px;}
.yed{bottom:971.205000px;}
.y86{bottom:974.085000px;}
.y48{bottom:976.965000px;}
.y1aa{bottom:978.405000px;}
.yb5{bottom:980.205000px;}
.y1d6{bottom:983.445000px;}
.y12{bottom:985.965000px;}
.yec{bottom:989.205000px;}
.y85{bottom:992.085000px;}
.y47{bottom:994.965000px;}
.y1a9{bottom:996.765000px;}
.y1d5{bottom:997.845000px;}
.y11{bottom:1001.805000px;}
.yb4{bottom:1002.165000px;}
.yeb{bottom:1007.565000px;}
.y84{bottom:1010.085000px;}
.y1d4{bottom:1012.245000px;}
.y46{bottom:1013.325000px;}
.y1a8{bottom:1014.765000px;}
.y10{bottom:1017.285000px;}
.yb3{bottom:1019.445000px;}
.yea{bottom:1025.565000px;}
.y1d3{bottom:1026.645000px;}
.y83{bottom:1028.445000px;}
.y45{bottom:1031.325000px;}
.yf{bottom:1032.765000px;}
.y1d2{bottom:1041.405000px;}
.ye9{bottom:1043.565000px;}
.y82{bottom:1046.445000px;}
.y1a7{bottom:1051.125000px;}
.ye8{bottom:1061.565000px;}
.y81{bottom:1064.445000px;}
.ye{bottom:1067.010000px;}
.y1a6{bottom:1069.170000px;}
.ye7{bottom:1079.970000px;}
.y80{bottom:1082.490000px;}
.y1a5{bottom:1087.170000px;}
.ye6{bottom:1097.970000px;}
.y7f{bottom:1100.850000px;}
.y1a4{bottom:1105.530000px;}
.yd{bottom:1110.210000px;}
.ye5{bottom:1115.970000px;}
.y7e{bottom:1118.850000px;}
.y1a3{bottom:1127.130000px;}
.ye4{bottom:1134.330000px;}
.y7d{bottom:1136.850000px;}
.y1a2{bottom:1144.410000px;}
.yc{bottom:1153.770000px;}
.y7c{bottom:1155.210000px;}
.ye3{bottom:1155.930000px;}
.y7b{bottom:1173.210000px;}
.y79{bottom:1213.560000px;}
.y2{bottom:1217.520000px;}
.y78{bottom:1233.360000px;}
.y1{bottom:1234.800000px;}
.hc{height:33.180469px;}
.h11{height:33.528516px;}
.h10{height:34.595859px;}
.hb{height:38.608594px;}
.h5{height:39.166875px;}
.h3{height:42.229688px;}
.h2{height:42.672656px;}
.h4{height:43.560000px;}
.he{height:44.031094px;}
.h9{height:44.406562px;}
.hf{height:44.798906px;}
.hd{height:46.251562px;}
.h8{height:46.736719px;}
.h6{height:51.480000px;}
.h12{height:60.155156px;}
.ha{height:83.453906px;}
.h7{height:100.546875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:185.835000px;}
.w3{width:267.945000px;}
.w1{width:892.500000px;}
.w4{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x5{left:10.800000px;}
.x6{left:64.116000px;}
.x13{left:67.715987px;}
.xb{left:70.236000px;}
.x11{left:76.355987px;}
.xa{left:81.036000px;}
.x17{left:102.275987px;}
.x8{left:119.556000px;}
.x7{left:122.436000px;}
.x10{left:124.955987px;}
.x16{left:147.671987px;}
.xc{left:177.915000px;}
.x14{left:181.154987px;}
.x15{left:185.834987px;}
.x12{left:213.914987px;}
.x9{left:390.750000px;}
.x1{left:399.030000px;}
.x2{left:426.780000px;}
.x3{left:442.620000px;}
.xf{left:446.579987px;}
.xd{left:457.380000px;}
.xe{left:468.180000px;}
.x4{left:473.580000px;}
.x19{left:478.619987px;}
.x18{left:489.419987px;}
.x1b{left:544.889987px;}
.x1a{left:565.409987px;}
.x1c{left:822.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls16{letter-spacing:-0.848000pt;}
.ls8{letter-spacing:-0.837333pt;}
.ls11{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.432533pt;}
.lse{letter-spacing:-0.414933pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.017920pt;}
.lsb{letter-spacing:-0.013867pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.014080pt;}
.ls4{letter-spacing:0.017920pt;}
.ls17{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.222933pt;}
.ls15{letter-spacing:0.414933pt;}
.lsa{letter-spacing:0.432533pt;}
.ls1b{letter-spacing:0.445333pt;}
.lsd{letter-spacing:0.450667pt;}
.ls1{letter-spacing:0.462080pt;}
.ls0{letter-spacing:0.640000pt;}
.ls10{letter-spacing:8.094720pt;}
.lsf{letter-spacing:11.934720pt;}
.ls2{letter-spacing:12.800000pt;}
.ls13{letter-spacing:14.494720pt;}
.ls14{letter-spacing:23.454720pt;}
.ls19{letter-spacing:31.777280pt;}
.ls18{letter-spacing:36.254720pt;}
.ws11{word-spacing:-53.760000pt;}
.wsc{word-spacing:-13.890667pt;}
.ws6{word-spacing:-13.872533pt;}
.wsf{word-spacing:-13.854933pt;}
.ws1{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.422080pt;}
.wse{word-spacing:-13.025067pt;}
.ws0{word-spacing:-13.007467pt;}
.ws10{word-spacing:-12.592000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws12{word-spacing:-11.200000pt;}
.ws7{word-spacing:-10.880000pt;}
.ws9{word-spacing:-10.782933pt;}
.ws2{word-spacing:-10.560000pt;}
.ws8{word-spacing:-10.546133pt;}
.ws3{word-spacing:-9.920000pt;}
.wsb{word-spacing:0.000000pt;}
.wsa{word-spacing:11.070080pt;}
.ws5{word-spacing:26.464960pt;}
._1e{margin-left:-2.239130pt;}
._0{margin-left:-1.290132pt;}
._1{width:1.021332pt;}
._2{width:2.317657pt;}
._f{width:3.446561pt;}
._5{width:4.376573pt;}
._4{width:5.336910pt;}
._3{width:6.850879pt;}
._1b{width:8.494070pt;}
._22{width:10.007545pt;}
._12{width:11.235743pt;}
._1c{width:12.244477pt;}
._13{width:13.749746pt;}
._1d{width:14.945065pt;}
._24{width:16.458139pt;}
._d{width:17.377960pt;}
._3c{width:18.291360pt;}
._c{width:19.205224pt;}
._10{width:20.649096pt;}
._11{width:22.337767pt;}
._7{width:23.544008pt;}
._6{width:25.123781pt;}
._9{width:26.722401pt;}
._3e{width:27.628851pt;}
._8{width:28.530732pt;}
._e{width:29.779787pt;}
._19{width:31.503468pt;}
._1a{width:32.900260pt;}
._a{width:34.680612pt;}
._23{width:35.618785pt;}
._b{width:36.801043pt;}
._27{width:37.769167pt;}
._29{width:38.847892pt;}
._25{width:39.782400pt;}
._2a{width:41.129706pt;}
._3b{width:42.372094pt;}
._43{width:43.504092pt;}
._36{width:44.585508pt;}
._32{width:45.712287pt;}
._31{width:46.771092pt;}
._14{width:47.792609pt;}
._15{width:49.563771pt;}
._2e{width:50.730559pt;}
._42{width:52.523520pt;}
._37{width:53.487058pt;}
._26{width:55.039022pt;}
._20{width:56.064108pt;}
._18{width:58.060800pt;}
._16{width:59.350932pt;}
._2c{width:60.633458pt;}
._2b{width:61.535254pt;}
._3d{width:62.728214pt;}
._1f{width:65.253439pt;}
._21{width:66.839401pt;}
._17{width:72.092268pt;}
._2d{width:73.973652pt;}
._44{width:75.352622pt;}
._34{width:76.554240pt;}
._33{width:77.736960pt;}
._3a{width:81.983785pt;}
._39{width:83.543040pt;}
._38{width:84.940692pt;}
._45{width:89.477120pt;}
._46{width:90.634952pt;}
._30{width:92.789652pt;}
._2f{width:94.191662pt;}
._40{width:114.831145pt;}
._3f{width:115.852800pt;}
._28{width:135.744000pt;}
._41{width:143.162772pt;}
._35{width:264.982932pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:106.240000pt;}
.fs2{font-size:128.000000pt;}
.y7a{bottom:-11.872000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.160000pt;}
.y8{bottom:5.792000pt;}
.y4{bottom:6.432000pt;}
.yb{bottom:11.200000pt;}
.y6{bottom:16.320000pt;}
.y3{bottom:16.992000pt;}
.ya{bottom:23.360000pt;}
.y5{bottom:28.800000pt;}
.y9{bottom:35.840000pt;}
.y139{bottom:71.072000pt;}
.y11b{bottom:73.312000pt;}
.y18e{bottom:80.672000pt;}
.yb2{bottom:82.272000pt;}
.y1d1{bottom:84.192000pt;}
.y44{bottom:84.832000pt;}
.y173{bottom:86.432000pt;}
.y15f{bottom:86.752000pt;}
.y138{bottom:87.072000pt;}
.y11a{bottom:89.632000pt;}
.y43{bottom:96.992000pt;}
.yb1{bottom:98.272000pt;}
.y1d0{bottom:100.192000pt;}
.y77{bottom:101.152000pt;}
.y172{bottom:102.432000pt;}
.y15e{bottom:102.752000pt;}
.y137{bottom:103.392000pt;}
.y119{bottom:105.632000pt;}
.y1a1{bottom:107.232000pt;}
.y42{bottom:109.152000pt;}
.y18d{bottom:112.992000pt;}
.yb0{bottom:114.592000pt;}
.y1cf{bottom:116.192000pt;}
.y76{bottom:117.184000pt;}
.y15d{bottom:118.784000pt;}
.ye2{bottom:119.424000pt;}
.y118{bottom:121.664000pt;}
.y1a0{bottom:124.864000pt;}
.y18c{bottom:129.024000pt;}
.yaf{bottom:130.624000pt;}
.y1ce{bottom:132.544000pt;}
.y75{bottom:133.184000pt;}
.y171{bottom:134.786667pt;}
.y15c{bottom:135.106667pt;}
.y41{bottom:135.426667pt;}
.y117{bottom:137.986667pt;}
.y19f{bottom:142.466667pt;}
.yae{bottom:146.626667pt;}
.y40{bottom:147.586667pt;}
.y18b{bottom:148.546667pt;}
.y74{bottom:149.506667pt;}
.y170{bottom:150.786667pt;}
.y15b{bottom:151.106667pt;}
.ye1{bottom:151.746667pt;}
.y19e{bottom:160.066667pt;}
.y3f{bottom:160.386667pt;}
.y116{bottom:161.346667pt;}
.yad{bottom:162.946667pt;}
.y1cd{bottom:164.546667pt;}
.y73{bottom:165.506667pt;}
.y16f{bottom:166.786667pt;}
.y15a{bottom:167.106667pt;}
.ye0{bottom:167.746667pt;}
.y18a{bottom:172.546667pt;}
.y3e{bottom:175.426667pt;}
.y115{bottom:176.706667pt;}
.y19d{bottom:177.666667pt;}
.yac{bottom:178.946667pt;}
.y1cc{bottom:180.866667pt;}
.y72{bottom:181.506667pt;}
.y16e{bottom:183.106667pt;}
.y159{bottom:183.426667pt;}
.ydf{bottom:183.746667pt;}
.y189{bottom:188.546667pt;}
.y3d{bottom:189.186667pt;}
.yab{bottom:194.946667pt;}
.y19c{bottom:195.266667pt;}
.y1cb{bottom:196.866667pt;}
.y71{bottom:197.826667pt;}
.y16d{bottom:199.106667pt;}
.y158{bottom:199.426667pt;}
.yde{bottom:199.746667pt;}
.y3c{bottom:202.946667pt;}
.y188{bottom:204.866667pt;}
.y114{bottom:208.706667pt;}
.yaa{bottom:211.266667pt;}
.y19b{bottom:212.866667pt;}
.y70{bottom:213.826667pt;}
.y16c{bottom:215.106667pt;}
.y157{bottom:215.426667pt;}
.ydd{bottom:216.066667pt;}
.y3b{bottom:216.706667pt;}
.y187{bottom:220.866667pt;}
.y113{bottom:224.706667pt;}
.ya9{bottom:227.266667pt;}
.y1ca{bottom:229.186667pt;}
.y6f{bottom:229.826667pt;}
.y19a{bottom:230.466667pt;}
.y3a{bottom:230.786667pt;}
.y16b{bottom:231.426667pt;}
.y156{bottom:231.746667pt;}
.ydc{bottom:232.066667pt;}
.y186{bottom:236.893333pt;}
.y112{bottom:240.733333pt;}
.ya8{bottom:243.293333pt;}
.y39{bottom:244.573333pt;}
.y1c9{bottom:245.213333pt;}
.y6e{bottom:245.853333pt;}
.y16a{bottom:247.453333pt;}
.y155{bottom:247.773333pt;}
.ydb{bottom:248.093333pt;}
.y185{bottom:253.213333pt;}
.y111{bottom:257.053333pt;}
.ya7{bottom:259.293333pt;}
.y1c8{bottom:261.213333pt;}
.y6d{bottom:262.173333pt;}
.y169{bottom:263.453333pt;}
.y154{bottom:263.773333pt;}
.yda{bottom:264.413333pt;}
.y199{bottom:265.693333pt;}
.y184{bottom:269.213333pt;}
.y110{bottom:273.053333pt;}
.ya6{bottom:275.613333pt;}
.y1c7{bottom:277.533333pt;}
.y6c{bottom:278.173333pt;}
.y168{bottom:279.773333pt;}
.yd9{bottom:280.413333pt;}
.y153{bottom:283.293333pt;}
.y136{bottom:283.613333pt;}
.y183{bottom:285.213333pt;}
.y38{bottom:286.173333pt;}
.y10f{bottom:289.053333pt;}
.y6b{bottom:294.173333pt;}
.ya5{bottom:294.813333pt;}
.y167{bottom:295.773333pt;}
.yd8{bottom:296.413333pt;}
.y135{bottom:298.973333pt;}
.y1c6{bottom:300.573333pt;}
.y198{bottom:301.213333pt;}
.y182{bottom:301.533333pt;}
.y37{bottom:302.173333pt;}
.y10e{bottom:305.373333pt;}
.y152{bottom:308.893333pt;}
.ya4{bottom:310.173333pt;}
.y6a{bottom:310.493333pt;}
.y166{bottom:311.773333pt;}
.yd7{bottom:312.733333pt;}
.y181{bottom:317.533333pt;}
.y36{bottom:318.173333pt;}
.y197{bottom:318.813333pt;}
.y10d{bottom:321.373333pt;}
.y134{bottom:322.973333pt;}
.y69{bottom:326.493333pt;}
.y165{bottom:328.093333pt;}
.yd6{bottom:328.733333pt;}
.y180{bottom:333.533333pt;}
.ya3{bottom:334.173333pt;}
.y35{bottom:334.493333pt;}
.y196{bottom:336.413333pt;}
.y10c{bottom:337.373333pt;}
.y133{bottom:339.293333pt;}
.y68{bottom:342.493333pt;}
.y151{bottom:344.093333pt;}
.yd5{bottom:344.733333pt;}
.y164{bottom:347.293333pt;}
.y17f{bottom:349.533333pt;}
.y34{bottom:350.493333pt;}
.y1c5{bottom:352.093333pt;}
.y10b{bottom:353.693333pt;}
.y195{bottom:354.013333pt;}
.y132{bottom:355.333333pt;}
.y67{bottom:358.853333pt;}
.yd4{bottom:361.093333pt;}
.y150{bottom:361.733333pt;}
.y17e{bottom:365.893333pt;}
.y33{bottom:366.533333pt;}
.y10a{bottom:369.733333pt;}
.y131{bottom:371.333333pt;}
.y194{bottom:371.653333pt;}
.y66{bottom:374.853333pt;}
.yd3{bottom:377.093333pt;}
.y14f{bottom:379.333333pt;}
.y17d{bottom:381.893333pt;}
.ya2{bottom:382.533333pt;}
.y32{bottom:382.853333pt;}
.y109{bottom:385.733333pt;}
.y1c4{bottom:387.333333pt;}
.y130{bottom:387.653333pt;}
.y193{bottom:389.253333pt;}
.y65{bottom:390.853333pt;}
.yd2{bottom:393.093333pt;}
.y14e{bottom:396.933333pt;}
.y17c{bottom:397.893333pt;}
.y31{bottom:398.853333pt;}
.y108{bottom:402.053333pt;}
.y12f{bottom:403.653333pt;}
.y1c3{bottom:404.933333pt;}
.y192{bottom:406.853333pt;}
.y64{bottom:407.173333pt;}
.yd1{bottom:409.093333pt;}
.y17b{bottom:414.213333pt;}
.y14d{bottom:414.533333pt;}
.y30{bottom:414.853333pt;}
.y107{bottom:418.053333pt;}
.y12e{bottom:419.653333pt;}
.y1c2{bottom:422.533333pt;}
.y63{bottom:423.173333pt;}
.y191{bottom:424.453333pt;}
.yd0{bottom:425.413333pt;}
.y17a{bottom:430.213333pt;}
.ya1{bottom:430.853333pt;}
.y2f{bottom:431.173333pt;}
.y14c{bottom:432.133333pt;}
.y106{bottom:434.053333pt;}
.y12d{bottom:435.653333pt;}
.y1ed{bottom:437.893333pt;}
.y62{bottom:439.173333pt;}
.y1c1{bottom:440.133333pt;}
.ycf{bottom:441.413333pt;}
.y190{bottom:443.973333pt;}
.ya0{bottom:447.173333pt;}
.y14b{bottom:449.733333pt;}
.y105{bottom:450.053333pt;}
.y2e{bottom:450.693333pt;}
.y12c{bottom:451.973333pt;}
.y179{bottom:453.573333pt;}
.y1ec{bottom:454.213333pt;}
.yce{bottom:457.413333pt;}
.y1c0{bottom:457.733333pt;}
.y61{bottom:458.693333pt;}
.y9f{bottom:463.173333pt;}
.y104{bottom:466.373333pt;}
.y14a{bottom:467.653333pt;}
.y12b{bottom:467.973333pt;}
.y178{bottom:468.933333pt;}
.y1eb{bottom:469.573333pt;}
.ycd{bottom:473.760000pt;}
.y60{bottom:474.080000pt;}
.y1bf{bottom:475.360000pt;}
.y9e{bottom:479.200000pt;}
.y103{bottom:482.400000pt;}
.y12a{bottom:484.000000pt;}
.y149{bottom:485.280000pt;}
.y2d{bottom:486.560000pt;}
.ycc{bottom:489.760000pt;}
.y1be{bottom:492.960000pt;}
.y9d{bottom:495.520000pt;}
.y1ea{bottom:497.760000pt;}
.y5f{bottom:498.080000pt;}
.y102{bottom:498.400000pt;}
.y129{bottom:500.320000pt;}
.y177{bottom:500.960000pt;}
.y148{bottom:502.880000pt;}
.ycb{bottom:508.960000pt;}
.y1bd{bottom:510.880000pt;}
.y9c{bottom:511.520000pt;}
.y1e9{bottom:513.120000pt;}
.y5e{bottom:514.080000pt;}
.y101{bottom:514.720000pt;}
.y128{bottom:516.320000pt;}
.y176{bottom:516.960000pt;}
.y2c{bottom:517.600000pt;}
.y147{bottom:520.480000pt;}
.y9b{bottom:527.520000pt;}
.y1bc{bottom:528.480000pt;}
.y5d{bottom:530.080000pt;}
.y100{bottom:530.720000pt;}
.y2b{bottom:531.360000pt;}
.y127{bottom:532.320000pt;}
.yca{bottom:533.280000pt;}
.y146{bottom:538.080000pt;}
.y9a{bottom:543.520000pt;}
.y1e8{bottom:543.840000pt;}
.y2a{bottom:545.440000pt;}
.y1bb{bottom:546.080000pt;}
.y5c{bottom:546.400000pt;}
.yff{bottom:546.720000pt;}
.y126{bottom:548.640000pt;}
.yc9{bottom:549.280000pt;}
.y145{bottom:555.680000pt;}
.y29{bottom:559.200000pt;}
.y99{bottom:559.840000pt;}
.y5b{bottom:562.400000pt;}
.yfe{bottom:563.040000pt;}
.y1ba{bottom:563.680000pt;}
.y125{bottom:564.640000pt;}
.yc8{bottom:565.280000pt;}
.y28{bottom:572.960000pt;}
.y144{bottom:573.280000pt;}
.y1e7{bottom:574.560000pt;}
.y98{bottom:575.840000pt;}
.y5a{bottom:578.400000pt;}
.yfd{bottom:579.040000pt;}
.y124{bottom:580.640000pt;}
.y1b9{bottom:581.280000pt;}
.yc7{bottom:581.600000pt;}
.y27{bottom:586.720000pt;}
.y1e6{bottom:589.920000pt;}
.y143{bottom:590.880000pt;}
.y97{bottom:591.866667pt;}
.y59{bottom:594.746667pt;}
.y123{bottom:596.986667pt;}
.yc6{bottom:597.626667pt;}
.yfc{bottom:598.266667pt;}
.y1b8{bottom:598.906667pt;}
.y26{bottom:600.506667pt;}
.y1e5{bottom:602.426667pt;}
.y96{bottom:608.186667pt;}
.y142{bottom:608.506667pt;}
.y58{bottom:610.746667pt;}
.y122{bottom:612.986667pt;}
.yc5{bottom:613.626667pt;}
.y25{bottom:614.266667pt;}
.y1b7{bottom:616.506667pt;}
.y1e4{bottom:620.666667pt;}
.y95{bottom:624.186667pt;}
.y141{bottom:626.106667pt;}
.y57{bottom:626.746667pt;}
.y24{bottom:628.026667pt;}
.y121{bottom:628.986667pt;}
.yc4{bottom:629.946667pt;}
.y1e3{bottom:632.826667pt;}
.y1b6{bottom:634.106667pt;}
.yfb{bottom:637.946667pt;}
.y94{bottom:640.186667pt;}
.y23{bottom:641.786667pt;}
.y56{bottom:643.066667pt;}
.y140{bottom:644.026667pt;}
.y120{bottom:644.986667pt;}
.yc3{bottom:645.946667pt;}
.y1b5{bottom:651.706667pt;}
.yfa{bottom:653.946667pt;}
.y22{bottom:655.866667pt;}
.y93{bottom:656.506667pt;}
.y1e2{bottom:657.466667pt;}
.y55{bottom:659.066667pt;}
.y11f{bottom:661.306667pt;}
.y13f{bottom:661.626667pt;}
.yc2{bottom:661.946667pt;}
.y1b4{bottom:669.306667pt;}
.y21{bottom:669.626667pt;}
.yf9{bottom:669.946667pt;}
.y92{bottom:672.506667pt;}
.y54{bottom:675.066667pt;}
.y11e{bottom:677.306667pt;}
.yc1{bottom:678.266667pt;}
.y13e{bottom:679.226667pt;}
.y1e1{bottom:681.786667pt;}
.y20{bottom:683.386667pt;}
.yf8{bottom:686.266667pt;}
.y91{bottom:688.506667pt;}
.y53{bottom:691.386667pt;}
.y1b3{bottom:692.666667pt;}
.y11d{bottom:693.306667pt;}
.yc0{bottom:694.266667pt;}
.y13d{bottom:696.826667pt;}
.y1f{bottom:697.146667pt;}
.yf7{bottom:702.266667pt;}
.y90{bottom:704.826667pt;}
.y1e0{bottom:706.426667pt;}
.y52{bottom:707.386667pt;}
.y163{bottom:709.626667pt;}
.ybf{bottom:710.266667pt;}
.y1e{bottom:710.946667pt;}
.y11c{bottom:712.866667pt;}
.y13c{bottom:714.466667pt;}
.yf6{bottom:718.306667pt;}
.y1df{bottom:718.626667pt;}
.y8f{bottom:720.866667pt;}
.y51{bottom:723.426667pt;}
.y1d{bottom:724.706667pt;}
.y1b2{bottom:725.026667pt;}
.y162{bottom:725.666667pt;}
.ybe{bottom:726.306667pt;}
.yf5{bottom:734.306667pt;}
.y8e{bottom:736.866667pt;}
.y13b{bottom:737.826667pt;}
.y1c{bottom:738.466667pt;}
.y50{bottom:739.426667pt;}
.y1b1{bottom:741.026667pt;}
.y161{bottom:741.666667pt;}
.ybd{bottom:742.626667pt;}
.yf4{bottom:750.626667pt;}
.y1b{bottom:752.226667pt;}
.y8d{bottom:752.866667pt;}
.y13a{bottom:753.186667pt;}
.y4f{bottom:755.746667pt;}
.y1b0{bottom:757.026667pt;}
.y18f{bottom:757.986667pt;}
.ybc{bottom:758.626667pt;}
.y160{bottom:761.186667pt;}
.y175{bottom:761.826667pt;}
.y1a{bottom:765.986667pt;}
.yf3{bottom:766.626667pt;}
.y8c{bottom:769.186667pt;}
.y1de{bottom:771.106667pt;}
.y4e{bottom:771.746667pt;}
.y1af{bottom:773.346667pt;}
.ybb{bottom:774.626667pt;}
.y174{bottom:777.186667pt;}
.y19{bottom:780.066667pt;}
.yf2{bottom:782.626667pt;}
.y1dd{bottom:783.906667pt;}
.y8b{bottom:785.186667pt;}
.y4d{bottom:787.746667pt;}
.y1ae{bottom:789.346667pt;}
.yba{bottom:790.946667pt;}
.y18{bottom:793.826667pt;}
.y1dc{bottom:796.706667pt;}
.yf1{bottom:798.946667pt;}
.y8a{bottom:801.186667pt;}
.y4c{bottom:804.066667pt;}
.y1ad{bottom:805.346667pt;}
.yb9{bottom:806.946667pt;}
.y17{bottom:807.586667pt;}
.y1db{bottom:809.506667pt;}
.yf0{bottom:814.946667pt;}
.y89{bottom:817.506667pt;}
.y4b{bottom:820.066667pt;}
.y16{bottom:821.346667pt;}
.y1da{bottom:822.626667pt;}
.yb8{bottom:822.946667pt;}
.yef{bottom:830.973333pt;}
.y88{bottom:833.533333pt;}
.y15{bottom:835.133333pt;}
.y1d9{bottom:835.453333pt;}
.y4a{bottom:836.093333pt;}
.y1ac{bottom:837.693333pt;}
.yb7{bottom:839.293333pt;}
.yee{bottom:847.293333pt;}
.y1d8{bottom:848.253333pt;}
.y14{bottom:848.893333pt;}
.y87{bottom:849.533333pt;}
.y49{bottom:852.413333pt;}
.y1ab{bottom:853.693333pt;}
.yb6{bottom:855.293333pt;}
.y1d7{bottom:861.053333pt;}
.y13{bottom:862.653333pt;}
.yed{bottom:863.293333pt;}
.y86{bottom:865.853333pt;}
.y48{bottom:868.413333pt;}
.y1aa{bottom:869.693333pt;}
.yb5{bottom:871.293333pt;}
.y1d6{bottom:874.173333pt;}
.y12{bottom:876.413333pt;}
.yec{bottom:879.293333pt;}
.y85{bottom:881.853333pt;}
.y47{bottom:884.413333pt;}
.y1a9{bottom:886.013333pt;}
.y1d5{bottom:886.973333pt;}
.y11{bottom:890.493333pt;}
.yb4{bottom:890.813333pt;}
.yeb{bottom:895.613333pt;}
.y84{bottom:897.853333pt;}
.y1d4{bottom:899.773333pt;}
.y46{bottom:900.733333pt;}
.y1a8{bottom:902.013333pt;}
.y10{bottom:904.253333pt;}
.yb3{bottom:906.173333pt;}
.yea{bottom:911.613333pt;}
.y1d3{bottom:912.573333pt;}
.y83{bottom:914.173333pt;}
.y45{bottom:916.733333pt;}
.yf{bottom:918.013333pt;}
.y1d2{bottom:925.693333pt;}
.ye9{bottom:927.613333pt;}
.y82{bottom:930.173333pt;}
.y1a7{bottom:934.333333pt;}
.ye8{bottom:943.613333pt;}
.y81{bottom:946.173333pt;}
.ye{bottom:948.453333pt;}
.y1a6{bottom:950.373333pt;}
.ye7{bottom:959.973333pt;}
.y80{bottom:962.213333pt;}
.y1a5{bottom:966.373333pt;}
.ye6{bottom:975.973333pt;}
.y7f{bottom:978.533333pt;}
.y1a4{bottom:982.693333pt;}
.yd{bottom:986.853333pt;}
.ye5{bottom:991.973333pt;}
.y7e{bottom:994.533333pt;}
.y1a3{bottom:1001.893333pt;}
.ye4{bottom:1008.293333pt;}
.y7d{bottom:1010.533333pt;}
.y1a2{bottom:1017.253333pt;}
.yc{bottom:1025.573333pt;}
.y7c{bottom:1026.853333pt;}
.ye3{bottom:1027.493333pt;}
.y7b{bottom:1042.853333pt;}
.y79{bottom:1078.720000pt;}
.y2{bottom:1082.240000pt;}
.y78{bottom:1096.320000pt;}
.y1{bottom:1097.600000pt;}
.hc{height:29.493750pt;}
.h11{height:29.803125pt;}
.h10{height:30.751875pt;}
.hb{height:34.318750pt;}
.h5{height:34.815000pt;}
.h3{height:37.537500pt;}
.h2{height:37.931250pt;}
.h4{height:38.720000pt;}
.he{height:39.138750pt;}
.h9{height:39.472500pt;}
.hf{height:39.821250pt;}
.hd{height:41.112500pt;}
.h8{height:41.543750pt;}
.h6{height:45.760000pt;}
.h12{height:53.471250pt;}
.ha{height:74.181250pt;}
.h7{height:89.375000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:165.186667pt;}
.w3{width:238.173333pt;}
.w1{width:793.333333pt;}
.w4{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600000pt;}
.x6{left:56.992000pt;}
.x13{left:60.191988pt;}
.xb{left:62.432000pt;}
.x11{left:67.871988pt;}
.xa{left:72.032000pt;}
.x17{left:90.911988pt;}
.x8{left:106.272000pt;}
.x7{left:108.832000pt;}
.x10{left:111.071988pt;}
.x16{left:131.263988pt;}
.xc{left:158.146667pt;}
.x14{left:161.026655pt;}
.x15{left:165.186655pt;}
.x12{left:190.146655pt;}
.x9{left:347.333333pt;}
.x1{left:354.693333pt;}
.x2{left:379.360000pt;}
.x3{left:393.440000pt;}
.xf{left:396.959988pt;}
.xd{left:406.560000pt;}
.xe{left:416.160000pt;}
.x4{left:420.960000pt;}
.x19{left:425.439988pt;}
.x18{left:435.039988pt;}
.x1b{left:484.346655pt;}
.x1a{left:502.586655pt;}
.x1c{left:731.493322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  