
    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_9c327cfeae55d37f3d112bd2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_100b67550f836602cc922c1c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_680e1c9329bf0a0ecd7bb7ef.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_cfb3266d5973e73a7f167707.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.811035;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_fc25a7ec46b2803b84d9e25c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_b5c2f58820f95abc92e97dd1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.731445;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);}
.v2{vertical-align:-13.821922px;}
.v1{vertical-align:-4.076541px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:4.348307px;}
.ls4{letter-spacing:4.355211px;}
.ls7{letter-spacing:4.383058px;}
.ls8{letter-spacing:4.383078px;}
.ls6{letter-spacing:4.383099px;}
.lsd{letter-spacing:4.387059px;}
.lse{letter-spacing:4.398982px;}
.lsf{letter-spacing:4.399023px;}
.ls10{letter-spacing:4.817027px;}
.ls3{letter-spacing:4.856797px;}
.ls5{letter-spacing:4.856817px;}
.ls1{letter-spacing:4.856838px;}
.lsc{letter-spacing:6.727866px;}
.ls9{letter-spacing:8.829853px;}
.lsb{letter-spacing:9.848988px;}
.lsa{letter-spacing:18.702726px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-17.939433px;}
.ws0{word-spacing:-15.002929px;}
.ws4{word-spacing:-13.591126px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:16.027498px;}
.ws7{word-spacing:34.992970px;}
.ws2{word-spacing:67.525681px;}
.ws1{word-spacing:102.876939px;}
.ws8{word-spacing:156.469128px;}
._1f{margin-left:-7.147916px;}
._14{margin-left:-4.514519px;}
._1{margin-left:-2.699115px;}
._0{margin-left:-1.178375px;}
._6{width:1.576475px;}
._1d{width:2.625071px;}
._5{width:4.108391px;}
._7{width:5.453970px;}
._9{width:6.799099px;}
._a{width:7.904763px;}
._d{width:9.517185px;}
._18{width:11.313172px;}
._b{width:12.392437px;}
._25{width:13.412949px;}
._26{width:14.586375px;}
._8{width:15.600155px;}
._f{width:16.742371px;}
._c{width:18.744763px;}
._21{width:20.057817px;}
._17{width:21.119362px;}
._15{width:22.858817px;}
._16{width:23.988274px;}
._1a{width:24.992253px;}
._19{width:26.016935px;}
._e{width:27.839361px;}
._1e{width:28.972497px;}
._27{width:30.420280px;}
._10{width:31.628695px;}
._11{width:33.524225px;}
._34{width:35.046361px;}
._22{width:36.805164px;}
._12{width:38.069949px;}
._13{width:39.081699px;}
._23{width:40.926122px;}
._1c{width:44.975023px;}
._1b{width:46.129990px;}
._38{width:47.860038px;}
._29{width:49.190747px;}
._39{width:52.054953px;}
._2c{width:56.676207px;}
._24{width:67.012866px;}
._30{width:68.430168px;}
._28{width:70.277854px;}
._37{width:71.794730px;}
._20{width:88.924485px;}
._33{width:90.999248px;}
._36{width:133.497658px;}
._35{width:134.635140px;}
._2a{width:136.647788px;}
._2b{width:138.375666px;}
._2d{width:168.199757px;}
._2f{width:174.240302px;}
._2e{width:176.055635px;}
._31{width:290.274107px;}
._32{width:291.431852px;}
._3a{width:400.577484px;}
._2{width:535.014243px;}
._3{width:665.065451px;}
._4{width:1733.390046px;}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:40.765415px;}
.fs4{font-size:44.841956px;}
.fs2{font-size:48.918498px;}
.fs0{font-size:53.999998px;}
.fs1{font-size:65.224664px;}
.fs3{font-size:97.836995px;}
.y0{bottom:0.000000px;}
.y108{bottom:2.706192px;}
.y4c{bottom:12.842802px;}
.y1a2{bottom:12.897497px;}
.y4d{bottom:16.380022px;}
.y107{bottom:16.974087px;}
.y8a{bottom:17.993363px;}
.y4b{bottom:27.110697px;}
.y1a1{bottom:29.203662px;}
.y1{bottom:31.005021px;}
.y106{bottom:31.241982px;}
.y89{bottom:32.261258px;}
.yc9{bottom:36.337819px;}
.y152{bottom:40.413916px;}
.y4e{bottom:42.360501px;}
.y1a0{bottom:43.471558px;}
.y105{bottom:45.509877px;}
.y88{bottom:46.529153px;}
.y4a{bottom:47.493405px;}
.y151{bottom:54.681811px;}
.y19f{bottom:57.739453px;}
.y104{bottom:59.777772px;}
.y49{bottom:62.780435px;}
.yc8{bottom:62.835339px;}
.y48{bottom:64.818706px;}
.y150{bottom:68.949706px;}
.y2{bottom:71.997212px;}
.y19e{bottom:72.007348px;}
.y87{bottom:73.026673px;}
.y103{bottom:74.045668px;}
.y47{bottom:79.086601px;}
.y19d{bottom:86.275243px;}
.y86{bottom:87.294568px;}
.y102{bottom:88.313563px;}
.yc7{bottom:89.332858px;}
.y46{bottom:97.431038px;}
.y19c{bottom:100.543138px;}
.y101{bottom:102.581458px;}
.y85{bottom:102.581598px;}
.y45{bottom:111.698933px;}
.y19b{bottom:114.811033px;}
.y100{bottom:116.849353px;}
.y84{bottom:116.849494px;}
.yc6{bottom:118.887784px;}
.y14d{bottom:125.002636px;}
.y44{bottom:125.966828px;}
.y19a{bottom:129.078929px;}
.yff{bottom:131.117248px;}
.y83{bottom:131.117389px;}
.y14c{bottom:139.270531px;}
.y43{bottom:140.234723px;}
.y199{bottom:143.346824px;}
.yfe{bottom:145.385143px;}
.y82{bottom:145.385284px;}
.yc5{bottom:145.385304px;}
.y14b{bottom:153.538426px;}
.y42{bottom:154.502619px;}
.y198{bottom:157.614719px;}
.yfd{bottom:159.653039px;}
.y14a{bottom:167.806321px;}
.y41{bottom:168.770514px;}
.y197{bottom:171.882614px;}
.y81{bottom:171.882804px;}
.yc4{bottom:173.921094px;}
.y149{bottom:182.074216px;}
.y40{bottom:183.038409px;}
.y196{bottom:186.150509px;}
.yfc{bottom:186.150558px;}
.y80{bottom:186.150699px;}
.y148{bottom:196.342112px;}
.y3f{bottom:197.306304px;}
.y195{bottom:200.418405px;}
.y7f{bottom:200.418594px;}
.yc3{bottom:203.476020px;}
.y147{bottom:210.610007px;}
.y3e{bottom:212.593335px;}
.yfb{bottom:212.648078px;}
.y1e5{bottom:214.686283px;}
.y194{bottom:214.686300px;}
.y7e{bottom:214.686489px;}
.y146{bottom:224.877902px;}
.y3d{bottom:226.861230px;}
.yfa{bottom:226.915973px;}
.y1e4{bottom:228.954179px;}
.y193{bottom:228.954195px;}
.y7d{bottom:228.954384px;}
.yc2{bottom:232.011810px;}
.y145{bottom:239.145797px;}
.y3c{bottom:241.129125px;}
.yf9{bottom:241.183868px;}
.y1e3{bottom:243.222074px;}
.y192{bottom:243.222090px;}
.y7c{bottom:243.222279px;}
.y144{bottom:253.413692px;}
.y3b{bottom:255.397020px;}
.yf8{bottom:255.451763px;}
.y1e2{bottom:257.489969px;}
.y191{bottom:257.489985px;}
.y7b{bottom:257.490175px;}
.yc1{bottom:258.509330px;}
.y143{bottom:267.681587px;}
.y3a{bottom:269.664915px;}
.yf7{bottom:269.719658px;}
.y1e1{bottom:271.757864px;}
.y190{bottom:271.757880px;}
.y7a{bottom:271.758070px;}
.y142{bottom:281.949483px;}
.y39{bottom:283.932810px;}
.yf6{bottom:283.987554px;}
.yc0{bottom:285.006849px;}
.y1e0{bottom:286.025759px;}
.y18f{bottom:286.025776px;}
.y141{bottom:296.217378px;}
.y38{bottom:298.200706px;}
.yf5{bottom:298.255449px;}
.y79{bottom:298.255589px;}
.ybf{bottom:299.274744px;}
.y1df{bottom:300.293654px;}
.y18e{bottom:300.293671px;}
.y37{bottom:312.468601px;}
.yf4{bottom:312.523344px;}
.ybe{bottom:313.542640px;}
.y1de{bottom:314.561550px;}
.y18d{bottom:314.561566px;}
.y140{bottom:314.561814px;}
.y78{bottom:324.753109px;}
.y36{bottom:326.736496px;}
.yf3{bottom:326.791239px;}
.ybd{bottom:327.810535px;}
.y1dd{bottom:328.829445px;}
.y18c{bottom:328.829461px;}
.y13f{bottom:328.829710px;}
.y35{bottom:341.004391px;}
.yf2{bottom:341.059134px;}
.y1dc{bottom:343.097340px;}
.y18b{bottom:343.097356px;}
.ybc{bottom:343.097565px;}
.y13e{bottom:343.097605px;}
.y34{bottom:355.272286px;}
.yf1{bottom:355.327029px;}
.y1db{bottom:357.365235px;}
.y18a{bottom:357.365251px;}
.ybb{bottom:357.365461px;}
.y13d{bottom:357.365500px;}
.y33{bottom:369.540181px;}
.y1da{bottom:371.633130px;}
.y189{bottom:371.633147px;}
.yba{bottom:371.633356px;}
.yf0{bottom:381.824549px;}
.y32{bottom:383.808077px;}
.y13c{bottom:383.863020px;}
.y1d9{bottom:385.901025px;}
.y188{bottom:385.901042px;}
.yb9{bottom:385.901251px;}
.yef{bottom:396.092444px;}
.y13b{bottom:398.130915px;}
.y31{bottom:399.095107px;}
.y1d8{bottom:400.168921px;}
.y187{bottom:400.168937px;}
.yb8{bottom:400.169146px;}
.yee{bottom:410.360339px;}
.y13a{bottom:412.398810px;}
.y30{bottom:413.363002px;}
.y1d7{bottom:414.436816px;}
.y186{bottom:414.436832px;}
.yed{bottom:424.628235px;}
.yb7{bottom:426.666666px;}
.y139{bottom:426.666705px;}
.y2f{bottom:427.630898px;}
.y1d6{bottom:428.704711px;}
.y185{bottom:428.704727px;}
.yec{bottom:438.896130px;}
.yb6{bottom:440.934561px;}
.y138{bottom:440.934600px;}
.y1d5{bottom:442.972606px;}
.y184{bottom:442.972622px;}
.y2e{bottom:448.013605px;}
.yeb{bottom:453.164025px;}
.yb5{bottom:455.202456px;}
.y137{bottom:455.202495px;}
.y1d4{bottom:457.240501px;}
.y183{bottom:457.240518px;}
.y2d{bottom:463.300635px;}
.yea{bottom:467.431920px;}
.yb4{bottom:469.470351px;}
.y136{bottom:469.470391px;}
.y1d3{bottom:471.508397px;}
.y182{bottom:471.508413px;}
.y2c{bottom:479.606801px;}
.ye9{bottom:481.699815px;}
.yb3{bottom:483.738246px;}
.y135{bottom:483.738286px;}
.y1d2{bottom:485.776292px;}
.y181{bottom:485.776308px;}
.y2b{bottom:494.893832px;}
.ye8{bottom:495.967710px;}
.y134{bottom:498.006181px;}
.y1d1{bottom:500.044187px;}
.y180{bottom:500.044203px;}
.ye7{bottom:510.235606px;}
.yb2{bottom:510.235766px;}
.y133{bottom:512.274076px;}
.y2a{bottom:513.238269px;}
.y1d0{bottom:514.312082px;}
.y17f{bottom:514.312098px;}
.ye6{bottom:524.503501px;}
.y132{bottom:526.541971px;}
.y29{bottom:527.506164px;}
.y1cf{bottom:528.579977px;}
.y17e{bottom:528.579993px;}
.yb1{bottom:536.733286px;}
.ye5{bottom:538.771396px;}
.y131{bottom:540.809866px;}
.y28{bottom:541.774059px;}
.y1ce{bottom:542.847872px;}
.y17d{bottom:542.847889px;}
.y77{bottom:546.924620px;}
.yb0{bottom:551.001181px;}
.y130{bottom:555.077762px;}
.y27{bottom:556.041954px;}
.y1cd{bottom:557.115768px;}
.y17c{bottom:557.115784px;}
.y76{bottom:561.192515px;}
.ye4{bottom:565.268916px;}
.yaf{bottom:565.269076px;}
.y26{bottom:570.309849px;}
.y1cc{bottom:571.383663px;}
.y17b{bottom:571.383679px;}
.y75{bottom:575.460410px;}
.y12f{bottom:581.575281px;}
.y25{bottom:584.577744px;}
.y1cb{bottom:585.651558px;}
.y17a{bottom:585.651574px;}
.y74{bottom:589.728305px;}
.ye3{bottom:591.766435px;}
.yae{bottom:591.766595px;}
.y24{bottom:598.845640px;}
.y1ca{bottom:599.919453px;}
.y179{bottom:599.919469px;}
.y73{bottom:603.996200px;}
.ye2{bottom:606.034330px;}
.yad{bottom:607.053626px;}
.y12e{bottom:609.091936px;}
.y23{bottom:613.113535px;}
.y1c9{bottom:614.187348px;}
.y178{bottom:614.187365px;}
.y72{bottom:618.264095px;}
.ye1{bottom:620.302226px;}
.yac{bottom:621.321521px;}
.y12d{bottom:623.359831px;}
.y22{bottom:627.381430px;}
.y1c8{bottom:628.455243px;}
.y177{bottom:628.455260px;}
.ye0{bottom:634.570121px;}
.yab{bottom:635.589416px;}
.y12c{bottom:637.627727px;}
.y21{bottom:641.649325px;}
.y1c7{bottom:642.723139px;}
.y176{bottom:642.723155px;}
.y71{bottom:644.761615px;}
.yaa{bottom:649.857312px;}
.y12b{bottom:651.895622px;}
.y20{bottom:655.917220px;}
.y1c6{bottom:656.991034px;}
.y175{bottom:656.991050px;}
.y70{bottom:659.029510px;}
.ydf{bottom:661.067640px;}
.ya9{bottom:664.125207px;}
.y12a{bottom:665.144382px;}
.y1f{bottom:670.185115px;}
.y1c5{bottom:671.258929px;}
.y174{bottom:671.258945px;}
.y6f{bottom:673.297405px;}
.ya8{bottom:678.393102px;}
.y129{bottom:679.412277px;}
.y1e{bottom:684.453011px;}
.y1c4{bottom:685.526824px;}
.y173{bottom:685.526840px;}
.yde{bottom:687.565160px;}
.y6e{bottom:687.565301px;}
.y128{bottom:693.680172px;}
.y1d{bottom:698.720906px;}
.y1c3{bottom:699.794719px;}
.y172{bottom:699.794736px;}
.y6d{bottom:701.833196px;}
.ya7{bottom:704.890622px;}
.y127{bottom:707.948067px;}
.y1c{bottom:712.988801px;}
.y1c2{bottom:714.062614px;}
.y171{bottom:714.062631px;}
.y6c{bottom:716.101091px;}
.ya6{bottom:719.158517px;}
.y126{bottom:722.215962px;}
.y1b{bottom:727.256696px;}
.y1c1{bottom:728.330510px;}
.y170{bottom:728.330526px;}
.ya5{bottom:733.426412px;}
.y125{bottom:735.464722px;}
.y1a{bottom:741.524591px;}
.y1c0{bottom:742.598405px;}
.y16f{bottom:742.598421px;}
.y6b{bottom:742.598610px;}
.ya4{bottom:748.713442px;}
.y124{bottom:749.732617px;}
.y19{bottom:755.792487px;}
.y1bf{bottom:756.866300px;}
.y16e{bottom:756.866316px;}
.y6a{bottom:756.866506px;}
.ya3{bottom:762.981338px;}
.y123{bottom:764.000512px;}
.y18{bottom:770.060382px;}
.y1be{bottom:771.134195px;}
.y16d{bottom:771.134211px;}
.y69{bottom:771.134401px;}
.ydd{bottom:776.229937px;}
.ya2{bottom:777.249233px;}
.y1bd{bottom:785.402090px;}
.y16c{bottom:785.402107px;}
.y68{bottom:785.402296px;}
.y122{bottom:789.478897px;}
.ya1{bottom:791.517128px;}
.y9{bottom:793.500495px;}
.y1bc{bottom:799.669986px;}
.y16b{bottom:799.670002px;}
.y67{bottom:799.670191px;}
.ydc{bottom:802.727457px;}
.y121{bottom:803.746792px;}
.y8{bottom:807.768390px;}
.ye{bottom:811.844932px;}
.y1bb{bottom:813.937881px;}
.y16a{bottom:813.937897px;}
.y66{bottom:813.938086px;}
.ydb{bottom:816.995352px;}
.y120{bottom:818.014687px;}
.ya0{bottom:819.033783px;}
.y7{bottom:822.036286px;}
.yd{bottom:826.112827px;}
.y1ba{bottom:828.205776px;}
.y169{bottom:828.205792px;}
.y65{bottom:828.205982px;}
.yda{bottom:832.282382px;}
.y11f{bottom:832.282582px;}
.y9f{bottom:833.301678px;}
.y6{bottom:836.304181px;}
.yc{bottom:840.380722px;}
.y1b9{bottom:842.473671px;}
.y168{bottom:842.473687px;}
.yd9{bottom:846.550278px;}
.y11e{bottom:846.550477px;}
.y9e{bottom:848.588709px;}
.y5{bottom:850.572076px;}
.yb{bottom:854.648617px;}
.y64{bottom:854.703501px;}
.y1b8{bottom:856.741566px;}
.y167{bottom:856.741582px;}
.yd8{bottom:860.818173px;}
.y11d{bottom:860.818373px;}
.y9d{bottom:862.856604px;}
.y4{bottom:865.859106px;}
.ya{bottom:868.916513px;}
.y1b7{bottom:871.009461px;}
.y166{bottom:871.009478px;}
.y63{bottom:873.047938px;}
.y11c{bottom:875.086268px;}
.y9c{bottom:877.124499px;}
.y3{bottom:884.203543px;}
.y1b6{bottom:885.277357px;}
.y165{bottom:885.277373px;}
.yd7{bottom:887.315692px;}
.y62{bottom:887.315833px;}
.y11b{bottom:889.354163px;}
.y9b{bottom:891.392394px;}
.y1b5{bottom:899.545252px;}
.y164{bottom:899.545268px;}
.yd6{bottom:901.583588px;}
.y61{bottom:901.583728px;}
.y11a{bottom:903.622058px;}
.y9a{bottom:905.660289px;}
.y17{bottom:906.624521px;}
.y1b4{bottom:913.813147px;}
.y163{bottom:913.813163px;}
.yd5{bottom:915.851483px;}
.y60{bottom:915.851623px;}
.y119{bottom:917.889953px;}
.y99{bottom:919.928184px;}
.y16{bottom:920.892416px;}
.y1b3{bottom:928.081042px;}
.y162{bottom:928.081058px;}
.yd4{bottom:930.119378px;}
.y5f{bottom:930.119518px;}
.y118{bottom:932.157848px;}
.y15{bottom:934.141176px;}
.y1b2{bottom:942.348937px;}
.y161{bottom:942.348954px;}
.yd3{bottom:944.387273px;}
.y5e{bottom:944.387414px;}
.y14{bottom:946.370801px;}
.y98{bottom:946.425704px;}
.y117{bottom:946.425744px;}
.y1b1{bottom:956.616832px;}
.y160{bottom:956.616849px;}
.y13{bottom:958.600425px;}
.yd2{bottom:958.655168px;}
.y5d{bottom:958.655309px;}
.y97{bottom:961.712735px;}
.y1b0{bottom:970.884728px;}
.yd1{bottom:972.923063px;}
.y5c{bottom:972.923204px;}
.y116{bottom:972.923263px;}
.y15f{bottom:974.961285px;}
.y96{bottom:975.980630px;}
.y1af{bottom:985.152623px;}
.y5b{bottom:987.191099px;}
.y115{bottom:987.191158px;}
.y15e{bottom:989.229181px;}
.y95{bottom:990.248525px;}
.y1ae{bottom:999.420518px;}
.y5a{bottom:1001.458994px;}
.y114{bottom:1001.459054px;}
.y12{bottom:1003.442381px;}
.y1ad{bottom:1015.726684px;}
.y15d{bottom:1015.726700px;}
.y59{bottom:1015.726889px;}
.y113{bottom:1015.726949px;}
.y94{bottom:1017.765180px;}
.y1ac{bottom:1029.994579px;}
.y15c{bottom:1029.994595px;}
.y58{bottom:1029.994785px;}
.y112{bottom:1029.994844px;}
.y93{bottom:1032.033075px;}
.y11{bottom:1037.073849px;}
.y1ab{bottom:1044.262474px;}
.y15b{bottom:1044.262490px;}
.y57{bottom:1044.262680px;}
.y111{bottom:1044.262739px;}
.y92{bottom:1046.300970px;}
.y1aa{bottom:1058.530369px;}
.y15a{bottom:1058.530386px;}
.y56{bottom:1058.530575px;}
.y110{bottom:1058.530634px;}
.y91{bottom:1060.568865px;}
.yd0{bottom:1071.779194px;}
.y1a9{bottom:1072.798265px;}
.y159{bottom:1072.798281px;}
.y55{bottom:1072.798470px;}
.y10f{bottom:1072.798529px;}
.y90{bottom:1074.836761px;}
.y10{bottom:1076.820128px;}
.y1a8{bottom:1087.066160px;}
.y158{bottom:1087.066176px;}
.ycf{bottom:1087.066225px;}
.y54{bottom:1087.066365px;}
.y10e{bottom:1087.066425px;}
.y8f{bottom:1089.104656px;}
.yf{bottom:1093.126294px;}
.y1a7{bottom:1101.334055px;}
.y157{bottom:1101.334071px;}
.yce{bottom:1101.334120px;}
.y53{bottom:1101.334261px;}
.y10d{bottom:1101.334320px;}
.y1a6{bottom:1115.601950px;}
.y156{bottom:1115.601966px;}
.ycd{bottom:1115.602015px;}
.y52{bottom:1115.602156px;}
.y8e{bottom:1115.602175px;}
.y10c{bottom:1115.602215px;}
.y1a5{bottom:1129.869845px;}
.y155{bottom:1129.869862px;}
.ycc{bottom:1129.869910px;}
.y51{bottom:1129.870051px;}
.y8d{bottom:1129.870071px;}
.y10b{bottom:1129.870110px;}
.y14f{bottom:1149.233198px;}
.y1a4{bottom:1149.233417px;}
.y154{bottom:1149.233434px;}
.ycb{bottom:1149.233482px;}
.y50{bottom:1149.233623px;}
.y8c{bottom:1149.233643px;}
.y10a{bottom:1149.233682px;}
.y14e{bottom:1165.539364px;}
.y1a3{bottom:1165.539583px;}
.y153{bottom:1165.539599px;}
.yca{bottom:1165.539648px;}
.y4f{bottom:1165.539789px;}
.y8b{bottom:1165.539809px;}
.y109{bottom:1165.539848px;}
.h9{height:32.668066px;}
.h6{height:35.614004px;}
.h5{height:35.637890px;}
.h2{height:39.313475px;}
.h7{height:43.408797px;}
.h4{height:47.485339px;}
.h8{height:71.228008px;}
.h3{height:1126.757761px;}
.ha{height:1177.769471px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w2{width:807.855446px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:22.309510px;}
.x7{left:32.867116px;}
.x2{left:42.749998px;}
.x9{left:52.374004px;}
.x6{left:82.215561px;}
.xc{left:101.037717px;}
.x8{left:117.105024px;}
.x11{left:122.869508px;}
.xd{left:124.939627px;}
.xb{left:126.739038px;}
.xf{left:130.767807px;}
.xe{left:141.803132px;}
.x10{left:147.631313px;}
.x3{left:165.959825px;}
.xa{left:317.412901px;}
.x4{left:418.705397px;}
.x1{left:436.552722px;}
@media print{
.v2{vertical-align:-12.286152pt;}
.v1{vertical-align:-3.623592pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:3.865162pt;}
.ls4{letter-spacing:3.871299pt;}
.ls7{letter-spacing:3.896051pt;}
.ls8{letter-spacing:3.896070pt;}
.ls6{letter-spacing:3.896088pt;}
.lsd{letter-spacing:3.899608pt;}
.lse{letter-spacing:3.910206pt;}
.lsf{letter-spacing:3.910243pt;}
.ls10{letter-spacing:4.281802pt;}
.ls3{letter-spacing:4.317153pt;}
.ls5{letter-spacing:4.317171pt;}
.ls1{letter-spacing:4.317189pt;}
.lsc{letter-spacing:5.980325pt;}
.ls9{letter-spacing:7.848758pt;}
.lsb{letter-spacing:8.754656pt;}
.lsa{letter-spacing:16.624646pt;}
.ws6{word-spacing:-15.946162pt;}
.ws0{word-spacing:-13.335937pt;}
.ws4{word-spacing:-12.081000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:14.246665pt;}
.ws7{word-spacing:31.104862pt;}
.ws2{word-spacing:60.022828pt;}
.ws1{word-spacing:91.446168pt;}
.ws8{word-spacing:139.083670pt;}
._1f{margin-left:-6.353703pt;}
._14{margin-left:-4.012906pt;}
._1{margin-left:-2.399213pt;}
._0{margin-left:-1.047445pt;}
._6{width:1.401311pt;}
._1d{width:2.333396pt;}
._5{width:3.651903pt;}
._7{width:4.847974pt;}
._9{width:6.043643pt;}
._a{width:7.026456pt;}
._d{width:8.459720pt;}
._18{width:10.056153pt;}
._b{width:11.015499pt;}
._25{width:11.922621pt;}
._26{width:12.965666pt;}
._8{width:13.866805pt;}
._f{width:14.882108pt;}
._c{width:16.662012pt;}
._21{width:17.829170pt;}
._17{width:18.772766pt;}
._15{width:20.318948pt;}
._16{width:21.322911pt;}
._1a{width:22.215336pt;}
._19{width:23.126164pt;}
._e{width:24.746098pt;}
._1e{width:25.753330pt;}
._27{width:27.040249pt;}
._10{width:28.114396pt;}
._11{width:29.799312pt;}
._34{width:31.152321pt;}
._22{width:32.715701pt;}
._12{width:33.839955pt;}
._13{width:34.739288pt;}
._23{width:36.378775pt;}
._1c{width:39.977798pt;}
._1b{width:41.004436pt;}
._38{width:42.542256pt;}
._29{width:43.725109pt;}
._39{width:46.271069pt;}
._2c{width:50.378850pt;}
._24{width:59.566992pt;}
._30{width:60.826816pt;}
._28{width:62.469204pt;}
._37{width:63.817538pt;}
._20{width:79.043987pt;}
._33{width:80.888220pt;}
._36{width:118.664585pt;}
._35{width:119.675680pt;}
._2a{width:121.464700pt;}
._2b{width:123.000592pt;}
._2d{width:149.510895pt;}
._2f{width:154.880268pt;}
._2e{width:156.493898pt;}
._31{width:258.021429pt;}
._32{width:259.050535pt;}
._3a{width:356.068875pt;}
._2{width:475.568216pt;}
._3{width:591.169289pt;}
._4{width:1540.791152pt;}
.fs5{font-size:36.235924pt;}
.fs4{font-size:39.859517pt;}
.fs2{font-size:43.483109pt;}
.fs0{font-size:47.999998pt;}
.fs1{font-size:57.977479pt;}
.fs3{font-size:86.966218pt;}
.y0{bottom:0.000000pt;}
.y108{bottom:2.405504pt;}
.y4c{bottom:11.415824pt;}
.y1a2{bottom:11.464441pt;}
.y4d{bottom:14.560019pt;}
.y107{bottom:15.088077pt;}
.y8a{bottom:15.994100pt;}
.y4b{bottom:24.098398pt;}
.y1a1{bottom:25.958811pt;}
.y1{bottom:27.560019pt;}
.y106{bottom:27.770651pt;}
.y89{bottom:28.676674pt;}
.yc9{bottom:32.300284pt;}
.y152{bottom:35.923481pt;}
.y4e{bottom:37.653779pt;}
.y1a0{bottom:38.641385pt;}
.y105{bottom:40.453224pt;}
.y88{bottom:41.359247pt;}
.y4a{bottom:42.216360pt;}
.y151{bottom:48.606054pt;}
.y19f{bottom:51.323958pt;}
.y104{bottom:53.135798pt;}
.y49{bottom:55.804831pt;}
.yc8{bottom:55.853634pt;}
.y48{bottom:57.616628pt;}
.y150{bottom:61.288628pt;}
.y2{bottom:63.997521pt;}
.y19e{bottom:64.006532pt;}
.y87{bottom:64.912598pt;}
.y103{bottom:65.818371pt;}
.y47{bottom:70.299201pt;}
.y19d{bottom:76.689105pt;}
.y86{bottom:77.595171pt;}
.y102{bottom:78.500945pt;}
.yc7{bottom:79.406985pt;}
.y46{bottom:86.605367pt;}
.y19c{bottom:89.371678pt;}
.y101{bottom:91.183518pt;}
.y85{bottom:91.183643pt;}
.y45{bottom:99.287940pt;}
.y19b{bottom:102.054252pt;}
.y100{bottom:103.866092pt;}
.y84{bottom:103.866217pt;}
.yc6{bottom:105.678030pt;}
.y14d{bottom:111.113454pt;}
.y44{bottom:111.970514pt;}
.y19a{bottom:114.736825pt;}
.yff{bottom:116.548665pt;}
.y83{bottom:116.548790pt;}
.y14c{bottom:123.796027pt;}
.y43{bottom:124.653087pt;}
.y199{bottom:127.419399pt;}
.yfe{bottom:129.231239pt;}
.y82{bottom:129.231363pt;}
.yc5{bottom:129.231381pt;}
.y14b{bottom:136.478601pt;}
.y42{bottom:137.335661pt;}
.y198{bottom:140.101972pt;}
.yfd{bottom:141.913812pt;}
.y14a{bottom:149.161174pt;}
.y41{bottom:150.018234pt;}
.y197{bottom:152.784546pt;}
.y81{bottom:152.784714pt;}
.yc4{bottom:154.596528pt;}
.y149{bottom:161.843748pt;}
.y40{bottom:162.700808pt;}
.y196{bottom:165.467119pt;}
.yfc{bottom:165.467163pt;}
.y80{bottom:165.467288pt;}
.y148{bottom:174.526321pt;}
.y3f{bottom:175.383381pt;}
.y195{bottom:178.149693pt;}
.y7f{bottom:178.149861pt;}
.yc3{bottom:180.867573pt;}
.y147{bottom:187.208895pt;}
.y3e{bottom:188.971853pt;}
.yfb{bottom:189.020514pt;}
.y1e5{bottom:190.832252pt;}
.y194{bottom:190.832266pt;}
.y7e{bottom:190.832435pt;}
.y146{bottom:199.891468pt;}
.y3d{bottom:201.654426pt;}
.yfa{bottom:201.703087pt;}
.y1e4{bottom:203.514825pt;}
.y193{bottom:203.514840pt;}
.y7d{bottom:203.515008pt;}
.yc2{bottom:206.232720pt;}
.y145{bottom:212.574042pt;}
.y3c{bottom:214.337000pt;}
.yf9{bottom:214.385661pt;}
.y1e3{bottom:216.197399pt;}
.y192{bottom:216.197413pt;}
.y7c{bottom:216.197582pt;}
.y144{bottom:225.256615pt;}
.y3b{bottom:227.019573pt;}
.yf8{bottom:227.068234pt;}
.y1e2{bottom:228.879972pt;}
.y191{bottom:228.879987pt;}
.y7b{bottom:228.880155pt;}
.yc1{bottom:229.786071pt;}
.y143{bottom:237.939189pt;}
.y3a{bottom:239.702147pt;}
.yf7{bottom:239.750808pt;}
.y1e1{bottom:241.562546pt;}
.y190{bottom:241.562560pt;}
.y7a{bottom:241.562729pt;}
.y142{bottom:250.621762pt;}
.y39{bottom:252.384720pt;}
.yf6{bottom:252.433381pt;}
.yc0{bottom:253.339422pt;}
.y1e0{bottom:254.245119pt;}
.y18f{bottom:254.245134pt;}
.y141{bottom:263.304336pt;}
.y38{bottom:265.067294pt;}
.yf5{bottom:265.115954pt;}
.y79{bottom:265.116079pt;}
.ybf{bottom:266.021995pt;}
.y1df{bottom:266.927693pt;}
.y18e{bottom:266.927707pt;}
.y37{bottom:277.749867pt;}
.yf4{bottom:277.798528pt;}
.ybe{bottom:278.704569pt;}
.y1de{bottom:279.610266pt;}
.y18d{bottom:279.610281pt;}
.y140{bottom:279.610502pt;}
.y78{bottom:288.669430pt;}
.y36{bottom:290.432441pt;}
.yf3{bottom:290.481101pt;}
.ybd{bottom:291.387142pt;}
.y1dd{bottom:292.292840pt;}
.y18c{bottom:292.292854pt;}
.y13f{bottom:292.293075pt;}
.y35{bottom:303.115014pt;}
.yf2{bottom:303.163675pt;}
.y1dc{bottom:304.975413pt;}
.y18b{bottom:304.975428pt;}
.ybc{bottom:304.975614pt;}
.y13e{bottom:304.975649pt;}
.y34{bottom:315.797588pt;}
.yf1{bottom:315.846248pt;}
.y1db{bottom:317.657987pt;}
.y18a{bottom:317.658001pt;}
.ybb{bottom:317.658187pt;}
.y13d{bottom:317.658222pt;}
.y33{bottom:328.480161pt;}
.y1da{bottom:330.340560pt;}
.y189{bottom:330.340575pt;}
.yba{bottom:330.340761pt;}
.yf0{bottom:339.399599pt;}
.y32{bottom:341.162735pt;}
.y13c{bottom:341.211573pt;}
.y1d9{bottom:343.023134pt;}
.y188{bottom:343.023148pt;}
.yb9{bottom:343.023334pt;}
.yef{bottom:352.082173pt;}
.y13b{bottom:353.894146pt;}
.y31{bottom:354.751206pt;}
.y1d8{bottom:355.705707pt;}
.y187{bottom:355.705722pt;}
.yb8{bottom:355.705908pt;}
.yee{bottom:364.764746pt;}
.y13a{bottom:366.576720pt;}
.y30{bottom:367.433780pt;}
.y1d7{bottom:368.388281pt;}
.y186{bottom:368.388295pt;}
.yed{bottom:377.447320pt;}
.yb7{bottom:379.259258pt;}
.y139{bottom:379.259293pt;}
.y2f{bottom:380.116353pt;}
.y1d6{bottom:381.070854pt;}
.y185{bottom:381.070869pt;}
.yec{bottom:390.129893pt;}
.yb6{bottom:391.941832pt;}
.y138{bottom:391.941867pt;}
.y1d5{bottom:393.753428pt;}
.y184{bottom:393.753442pt;}
.y2e{bottom:398.234316pt;}
.yeb{bottom:402.812467pt;}
.yb5{bottom:404.624405pt;}
.y137{bottom:404.624440pt;}
.y1d4{bottom:406.436001pt;}
.y183{bottom:406.436016pt;}
.y2d{bottom:411.822787pt;}
.yea{bottom:415.495040pt;}
.yb4{bottom:417.306979pt;}
.y136{bottom:417.307014pt;}
.y1d3{bottom:419.118575pt;}
.y182{bottom:419.118589pt;}
.y2c{bottom:426.317157pt;}
.ye9{bottom:428.177614pt;}
.yb3{bottom:429.989552pt;}
.y135{bottom:429.989587pt;}
.y1d2{bottom:431.801148pt;}
.y181{bottom:431.801163pt;}
.y2b{bottom:439.905628pt;}
.ye8{bottom:440.860187pt;}
.y134{bottom:442.672161pt;}
.y1d1{bottom:444.483722pt;}
.y180{bottom:444.483736pt;}
.ye7{bottom:453.542761pt;}
.yb2{bottom:453.542903pt;}
.y133{bottom:455.354734pt;}
.y2a{bottom:456.211794pt;}
.y1d0{bottom:457.166295pt;}
.y17f{bottom:457.166310pt;}
.ye6{bottom:466.225334pt;}
.y132{bottom:468.037308pt;}
.y29{bottom:468.894368pt;}
.y1cf{bottom:469.848869pt;}
.y17e{bottom:469.848883pt;}
.yb1{bottom:477.096254pt;}
.ye5{bottom:478.907908pt;}
.y131{bottom:480.719881pt;}
.y28{bottom:481.576941pt;}
.y1ce{bottom:482.531442pt;}
.y17d{bottom:482.531457pt;}
.y77{bottom:486.155217pt;}
.yb0{bottom:489.778827pt;}
.y130{bottom:493.402455pt;}
.y27{bottom:494.259515pt;}
.y1cd{bottom:495.214016pt;}
.y17c{bottom:495.214030pt;}
.y76{bottom:498.837791pt;}
.ye4{bottom:502.461258pt;}
.yaf{bottom:502.461401pt;}
.y26{bottom:506.942088pt;}
.y1cc{bottom:507.896589pt;}
.y17b{bottom:507.896604pt;}
.y75{bottom:511.520364pt;}
.y12f{bottom:516.955806pt;}
.y25{bottom:519.624662pt;}
.y1cb{bottom:520.579163pt;}
.y17a{bottom:520.579177pt;}
.y74{bottom:524.202938pt;}
.ye3{bottom:526.014609pt;}
.yae{bottom:526.014752pt;}
.y24{bottom:532.307235pt;}
.y1ca{bottom:533.261736pt;}
.y179{bottom:533.261751pt;}
.y73{bottom:536.885511pt;}
.ye2{bottom:538.697183pt;}
.yad{bottom:539.603223pt;}
.y12e{bottom:541.415054pt;}
.y23{bottom:544.989809pt;}
.y1c9{bottom:545.944310pt;}
.y178{bottom:545.944324pt;}
.y72{bottom:549.568085pt;}
.ye1{bottom:551.379756pt;}
.yac{bottom:552.285797pt;}
.y12d{bottom:554.097628pt;}
.y22{bottom:557.672382pt;}
.y1c8{bottom:558.626883pt;}
.y177{bottom:558.626898pt;}
.ye0{bottom:564.062330pt;}
.yab{bottom:564.968370pt;}
.y12c{bottom:566.780201pt;}
.y21{bottom:570.354956pt;}
.y1c7{bottom:571.309457pt;}
.y176{bottom:571.309471pt;}
.y71{bottom:573.121436pt;}
.yaa{bottom:577.650944pt;}
.y12b{bottom:579.462775pt;}
.y20{bottom:583.037529pt;}
.y1c6{bottom:583.992030pt;}
.y175{bottom:583.992044pt;}
.y70{bottom:585.804009pt;}
.ydf{bottom:587.615680pt;}
.ya9{bottom:590.333517pt;}
.y12a{bottom:591.239450pt;}
.y1f{bottom:595.720103pt;}
.y1c5{bottom:596.674604pt;}
.y174{bottom:596.674618pt;}
.y6f{bottom:598.486583pt;}
.ya8{bottom:603.016091pt;}
.y129{bottom:603.922024pt;}
.y1e{bottom:608.402676pt;}
.y1c4{bottom:609.357177pt;}
.y173{bottom:609.357191pt;}
.yde{bottom:611.169031pt;}
.y6e{bottom:611.169156pt;}
.y128{bottom:616.604597pt;}
.y1d{bottom:621.085250pt;}
.y1c3{bottom:622.039750pt;}
.y172{bottom:622.039765pt;}
.y6d{bottom:623.851729pt;}
.ya7{bottom:626.569441pt;}
.y127{bottom:629.287171pt;}
.y1c{bottom:633.767823pt;}
.y1c2{bottom:634.722324pt;}
.y171{bottom:634.722338pt;}
.y6c{bottom:636.534303pt;}
.ya6{bottom:639.252015pt;}
.y126{bottom:641.969744pt;}
.y1b{bottom:646.450397pt;}
.y1c1{bottom:647.404897pt;}
.y170{bottom:647.404912pt;}
.ya5{bottom:651.934588pt;}
.y125{bottom:653.746420pt;}
.y1a{bottom:659.132970pt;}
.y1c0{bottom:660.087471pt;}
.y16f{bottom:660.087485pt;}
.y6b{bottom:660.087654pt;}
.ya4{bottom:665.523060pt;}
.y124{bottom:666.428993pt;}
.y19{bottom:671.815544pt;}
.y1bf{bottom:672.770044pt;}
.y16e{bottom:672.770059pt;}
.y6a{bottom:672.770227pt;}
.ya3{bottom:678.205633pt;}
.y123{bottom:679.111567pt;}
.y18{bottom:684.498117pt;}
.y1be{bottom:685.452618pt;}
.y16d{bottom:685.452632pt;}
.y69{bottom:685.452801pt;}
.ydd{bottom:689.982166pt;}
.ya2{bottom:690.888207pt;}
.y1bd{bottom:698.135191pt;}
.y16c{bottom:698.135206pt;}
.y68{bottom:698.135374pt;}
.y122{bottom:701.759019pt;}
.ya1{bottom:703.570780pt;}
.y9{bottom:705.333774pt;}
.y1bc{bottom:710.817765pt;}
.y16b{bottom:710.817779pt;}
.y67{bottom:710.817948pt;}
.ydc{bottom:713.535517pt;}
.y121{bottom:714.441593pt;}
.y8{bottom:718.016347pt;}
.ye{bottom:721.639939pt;}
.y1bb{bottom:723.500338pt;}
.y16a{bottom:723.500353pt;}
.y66{bottom:723.500521pt;}
.ydb{bottom:726.218091pt;}
.y120{bottom:727.124166pt;}
.ya0{bottom:728.030029pt;}
.y7{bottom:730.698920pt;}
.yd{bottom:734.322513pt;}
.y1ba{bottom:736.182912pt;}
.y169{bottom:736.182926pt;}
.y65{bottom:736.183095pt;}
.yda{bottom:739.806562pt;}
.y11f{bottom:739.806740pt;}
.y9f{bottom:740.712603pt;}
.y6{bottom:743.381494pt;}
.yc{bottom:747.005086pt;}
.y1b9{bottom:748.865485pt;}
.y168{bottom:748.865500pt;}
.yd9{bottom:752.489136pt;}
.y11e{bottom:752.489313pt;}
.y9e{bottom:754.301074pt;}
.y5{bottom:756.064067pt;}
.yb{bottom:759.687660pt;}
.y64{bottom:759.736445pt;}
.y1b8{bottom:761.548059pt;}
.y167{bottom:761.548073pt;}
.yd8{bottom:765.171709pt;}
.y11d{bottom:765.171887pt;}
.y9d{bottom:766.983648pt;}
.y4{bottom:769.652539pt;}
.ya{bottom:772.370233pt;}
.y1b7{bottom:774.230632pt;}
.y166{bottom:774.230647pt;}
.y63{bottom:776.042611pt;}
.y11c{bottom:777.854460pt;}
.y9c{bottom:779.666221pt;}
.y3{bottom:785.958705pt;}
.y1b6{bottom:786.913206pt;}
.y165{bottom:786.913220pt;}
.yd7{bottom:788.725060pt;}
.y62{bottom:788.725185pt;}
.y11b{bottom:790.537034pt;}
.y9b{bottom:792.348795pt;}
.y1b5{bottom:799.595779pt;}
.y164{bottom:799.595794pt;}
.yd6{bottom:801.407633pt;}
.y61{bottom:801.407758pt;}
.y11a{bottom:803.219607pt;}
.y9a{bottom:805.031368pt;}
.y17{bottom:805.888463pt;}
.y1b4{bottom:812.278353pt;}
.y163{bottom:812.278367pt;}
.yd5{bottom:814.090207pt;}
.y60{bottom:814.090332pt;}
.y119{bottom:815.902181pt;}
.y99{bottom:817.713942pt;}
.y16{bottom:818.571037pt;}
.y1b3{bottom:824.960926pt;}
.y162{bottom:824.960941pt;}
.yd4{bottom:826.772780pt;}
.y5f{bottom:826.772905pt;}
.y118{bottom:828.584754pt;}
.y15{bottom:830.347712pt;}
.y1b2{bottom:837.643500pt;}
.y161{bottom:837.643514pt;}
.yd3{bottom:839.455354pt;}
.y5e{bottom:839.455479pt;}
.y14{bottom:841.218489pt;}
.y98{bottom:841.267293pt;}
.y117{bottom:841.267328pt;}
.y1b1{bottom:850.326073pt;}
.y160{bottom:850.326088pt;}
.y13{bottom:852.089267pt;}
.yd2{bottom:852.137927pt;}
.y5d{bottom:852.138052pt;}
.y97{bottom:854.855764pt;}
.y1b0{bottom:863.008647pt;}
.yd1{bottom:864.820501pt;}
.y5c{bottom:864.820626pt;}
.y116{bottom:864.820678pt;}
.y15f{bottom:866.632254pt;}
.y96{bottom:867.538338pt;}
.y1af{bottom:875.691220pt;}
.y5b{bottom:877.503199pt;}
.y115{bottom:877.503252pt;}
.y15e{bottom:879.314827pt;}
.y95{bottom:880.220911pt;}
.y1ae{bottom:888.373794pt;}
.y5a{bottom:890.185773pt;}
.y114{bottom:890.185825pt;}
.y12{bottom:891.948783pt;}
.y1ad{bottom:902.868163pt;}
.y15d{bottom:902.868178pt;}
.y59{bottom:902.868346pt;}
.y113{bottom:902.868399pt;}
.y94{bottom:904.680160pt;}
.y1ac{bottom:915.550737pt;}
.y15c{bottom:915.550751pt;}
.y58{bottom:915.550920pt;}
.y112{bottom:915.550972pt;}
.y93{bottom:917.362733pt;}
.y11{bottom:921.843421pt;}
.y1ab{bottom:928.233310pt;}
.y15b{bottom:928.233325pt;}
.y57{bottom:928.233493pt;}
.y111{bottom:928.233546pt;}
.y92{bottom:930.045307pt;}
.y1aa{bottom:940.915884pt;}
.y15a{bottom:940.915898pt;}
.y56{bottom:940.916067pt;}
.y110{bottom:940.916119pt;}
.y91{bottom:942.727880pt;}
.yd0{bottom:952.692617pt;}
.y1a9{bottom:953.598457pt;}
.y159{bottom:953.598472pt;}
.y55{bottom:953.598640pt;}
.y10f{bottom:953.598693pt;}
.y90{bottom:955.410454pt;}
.y10{bottom:957.173447pt;}
.y1a8{bottom:966.281031pt;}
.y158{bottom:966.281045pt;}
.ycf{bottom:966.281089pt;}
.y54{bottom:966.281214pt;}
.y10e{bottom:966.281266pt;}
.y8f{bottom:968.093027pt;}
.yf{bottom:971.667817pt;}
.y1a7{bottom:978.963604pt;}
.y157{bottom:978.963619pt;}
.yce{bottom:978.963662pt;}
.y53{bottom:978.963787pt;}
.y10d{bottom:978.963840pt;}
.y1a6{bottom:991.646178pt;}
.y156{bottom:991.646192pt;}
.ycd{bottom:991.646236pt;}
.y52{bottom:991.646361pt;}
.y8e{bottom:991.646378pt;}
.y10c{bottom:991.646413pt;}
.y1a5{bottom:1004.328751pt;}
.y155{bottom:1004.328766pt;}
.ycc{bottom:1004.328809pt;}
.y51{bottom:1004.328934pt;}
.y8d{bottom:1004.328952pt;}
.y10b{bottom:1004.328987pt;}
.y14f{bottom:1021.540620pt;}
.y1a4{bottom:1021.540815pt;}
.y154{bottom:1021.540830pt;}
.ycb{bottom:1021.540873pt;}
.y50{bottom:1021.540998pt;}
.y8c{bottom:1021.541016pt;}
.y10a{bottom:1021.541051pt;}
.y14e{bottom:1036.034990pt;}
.y1a3{bottom:1036.035185pt;}
.y153{bottom:1036.035200pt;}
.yca{bottom:1036.035243pt;}
.y4f{bottom:1036.035368pt;}
.y8b{bottom:1036.035385pt;}
.y109{bottom:1036.035420pt;}
.h9{height:29.038281pt;}
.h6{height:31.656892pt;}
.h5{height:31.678124pt;}
.h2{height:34.945311pt;}
.h7{height:38.585597pt;}
.h4{height:42.209190pt;}
.h8{height:63.313785pt;}
.h3{height:1001.562454pt;}
.ha{height:1046.906196pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w2{width:718.093730pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:19.830676pt;}
.x7{left:29.215214pt;}
.x2{left:37.999998pt;}
.x9{left:46.554670pt;}
.x6{left:73.080499pt;}
.xc{left:89.811304pt;}
.x8{left:104.093354pt;}
.x11{left:109.217340pt;}
.xd{left:111.057446pt;}
.xb{left:112.656922pt;}
.xf{left:116.238051pt;}
.xe{left:126.047229pt;}
.x10{left:131.227833pt;}
.x3{left:147.519845pt;}
.xa{left:282.144801pt;}
.x4{left:372.182575pt;}
.x1{left:388.046864pt;}
}




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