
    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_c6a466dbbd73d683a338f7a1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_db3ca7b12e6fc18a96c21f5c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_85f4bb4b42893b261ed85475.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_491bc48da92e9460836ef742.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_755aa94a532f6de7dd1a853f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896973;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_1e40d4144c5762eb4c1e8530.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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);}
.v9{vertical-align:-47.519991px;}
.v3{vertical-align:-38.159910px;}
.v12{vertical-align:-36.720157px;}
.v13{vertical-align:-30.239865px;}
.v11{vertical-align:-23.759996px;}
.v15{vertical-align:-18.000000px;}
.v5{vertical-align:-11.519991px;}
.vd{vertical-align:-6.480009px;}
.v10{vertical-align:-2.880067px;}
.va{vertical-align:-1.440036px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240000px;}
.ve{vertical-align:23.039977px;}
.v14{vertical-align:24.480013px;}
.vf{vertical-align:28.799838px;}
.vb{vertical-align:30.240009px;}
.v4{vertical-align:38.159910px;}
.v7{vertical-align:41.759995px;}
.v2{vertical-align:43.199888px;}
.v8{vertical-align:47.519991px;}
.vc{vertical-align:81.360009px;}
.v6{vertical-align:84.959987px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.094301px;}
.ls2{letter-spacing:2.851308px;}
.ls3{letter-spacing:12.959118px;}
.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;}
}
.ws1{word-spacing:-79.204500px;}
.ws7{word-spacing:-26.612208px;}
.ws3{word-spacing:-23.855201px;}
.ws0{word-spacing:-23.761125px;}
.ws4{word-spacing:-23.760900px;}
.ws6{word-spacing:-19.800788px;}
.ws9{word-spacing:-15.840563px;}
.ws2{word-spacing:0.000000px;}
.ws2d{word-spacing:56.799016px;}
.wsa{word-spacing:57.717461px;}
.ws32{word-spacing:74.234029px;}
.ws2f{word-spacing:81.102409px;}
.ws2c{word-spacing:104.669648px;}
.ws10{word-spacing:197.215844px;}
.wsd{word-spacing:198.007875px;}
.ws31{word-spacing:199.709698px;}
.ws33{word-spacing:202.487791px;}
.wsb{word-spacing:208.967805px;}
.ws22{word-spacing:217.016631px;}
.ws12{word-spacing:217.808662px;}
.ws1e{word-spacing:226.521009px;}
.ws24{word-spacing:227.313040px;}
.ws37{word-spacing:233.649292px;}
.ws35{word-spacing:257.410238px;}
.ws3a{word-spacing:262.162427px;}
.ws40{word-spacing:262.954458px;}
.wsf{word-spacing:294.814621px;}
.ws8{word-spacing:305.549716px;}
.ws23{word-spacing:314.659682px;}
.ws2e{word-spacing:327.869716px;}
.ws15{word-spacing:328.373243px;}
.ws1d{word-spacing:328.965751px;}
.ws18{word-spacing:333.418707px;}
.wsc{word-spacing:336.857133px;}
.ws16{word-spacing:342.008901px;}
.ws14{word-spacing:347.687365px;}
.ws29{word-spacing:350.427985px;}
.ws28{word-spacing:354.815097px;}
.ws1b{word-spacing:363.061341px;}
.ws38{word-spacing:368.101359px;}
.ws2a{word-spacing:368.157424px;}
.ws2b{word-spacing:384.219216px;}
.ws3d{word-spacing:385.707971px;}
.ws1c{word-spacing:399.169444px;}
.ws13{word-spacing:399.179622px;}
.ws26{word-spacing:408.796377px;}
.ws27{word-spacing:420.220614px;}
.ws30{word-spacing:431.925774px;}
.ws25{word-spacing:438.874973px;}
.ws1a{word-spacing:439.594991px;}
.ws11{word-spacing:447.111450px;}
.ws21{word-spacing:451.442904px;}
.ws17{word-spacing:464.707884px;}
.ws34{word-spacing:482.391504px;}
.ws20{word-spacing:482.648945px;}
.ws3c{word-spacing:486.722926px;}
.ws19{word-spacing:487.102958px;}
.ws3f{word-spacing:492.460075px;}
.ws1f{word-spacing:504.202591px;}
.ws3b{word-spacing:517.928967px;}
.ws3e{word-spacing:520.580726px;}
.ws36{word-spacing:521.662963px;}
.wse{word-spacing:527.589036px;}
.ws39{word-spacing:535.295676px;}
.ws5{word-spacing:843.830360px;}
._4d{margin-left:-22.881183px;}
._7{margin-left:-16.137986px;}
._56{margin-left:-14.678453px;}
._5e{margin-left:-12.943069px;}
._14{margin-left:-11.830247px;}
._c{margin-left:-10.645269px;}
._8{margin-left:-9.592081px;}
._10{margin-left:-8.304039px;}
._4{margin-left:-7.223002px;}
._6{margin-left:-6.179603px;}
._2{margin-left:-4.942409px;}
._11{margin-left:-3.805845px;}
._5{margin-left:-2.803270px;}
._3{margin-left:-1.526859px;}
._0{width:1.048595px;}
._9{width:2.563096px;}
._e{width:3.792178px;}
._17{width:4.983780px;}
._13{width:6.897530px;}
._12{width:8.252086px;}
._15{width:9.311643px;}
._b{width:11.019806px;}
._f{width:12.309403px;}
._d{width:13.594754px;}
._a{width:14.645789px;}
._16{width:16.105082px;}
._18{width:17.148501px;}
._1c{width:19.100325px;}
._1b{width:20.953189px;}
._1a{width:29.205284px;}
._5d{width:30.370015px;}
._2d{width:52.028443px;}
._5f{width:69.408845px;}
._5b{width:72.537200px;}
._1d{width:75.046164px;}
._39{width:77.926088px;}
._61{width:83.120676px;}
._4e{width:87.286169px;}
._60{width:91.322420px;}
._59{width:95.132443px;}
._2e{width:139.255201px;}
._47{width:183.751308px;}
._41{width:194.047717px;}
._3a{width:209.864754px;}
._48{width:216.224600px;}
._3d{width:223.352883px;}
._33{width:224.936946px;}
._3e{width:226.521009px;}
._5c{width:232.684420px;}
._1f{width:236.817419px;}
._24{width:238.401481px;}
._40{width:245.529765px;}
._25{width:247.284300px;}
._2a{width:248.377984px;}
._58{width:251.988129px;}
._37{width:255.034143px;}
._2c{width:256.896345px;}
._42{width:259.206540px;}
._31{width:262.162427px;}
._22{width:266.122584px;}
._29{width:267.417778px;}
._26{width:268.591804px;}
._3c{width:275.626962px;}
._52{width:278.003057px;}
._32{width:280.379151px;}
._50{width:282.755245px;}
._51{width:285.936675px;}
._30{width:293.051655px;}
._20{width:295.427750px;}
._46{width:298.063287px;}
._49{width:300.179939px;}
._2b{width:303.364918px;}
._54{width:308.100254px;}
._36{width:309.684317px;}
._45{width:311.268380px;}
._53{width:314.503643px;}
._4f{width:316.654194px;}
._2f{width:322.170987px;}
._35{width:357.178779px;}
._55{width:368.655781px;}
._34{width:375.219901px;}
._23{width:377.175069px;}
._38{width:392.265774px;}
._21{width:400.767939px;}
._27{width:402.061079px;}
._4a{width:408.076462px;}
._28{width:430.180153px;}
._1e{width:431.328289px;}
._19{width:435.299688px;}
._3b{width:504.625102px;}
._44{width:508.902072px;}
._4c{width:529.323324px;}
._43{width:539.632895px;}
._4b{width:542.469348px;}
._3f{width:544.068271px;}
._57{width:1317.855916px;}
._1{width:1695.543615px;}
._5a{width:1928.787727px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fs4{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fs7{font-size:79.203150px;}
.fs3{font-size:79.204500px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980000px;}
.y17{bottom:37.980011px;}
.y18{bottom:41.040115px;}
.y132{bottom:98.100083px;}
.yae{bottom:108.900055px;}
.y143{bottom:113.940033px;}
.yef{bottom:119.700096px;}
.yb8{bottom:121.320099px;}
.y2e{bottom:121.860077px;}
.yad{bottom:137.520058px;}
.yc7{bottom:138.960091px;}
.yee{bottom:144.360077px;}
.y48{bottom:146.700096px;}
.yb7{bottom:149.940033px;}
.y2d{bottom:150.300041px;}
.y131{bottom:155.160049px;}
.yc6{bottom:160.200096px;}
.yac{bottom:165.960091px;}
.y113{bottom:167.220085px;}
.y89{bottom:168.120072px;}
.yed{bottom:175.140060px;}
.yb6{bottom:178.560036px;}
.y2c{bottom:178.920043px;}
.y88{bottom:189.540047px;}
.yc5{bottom:190.980079px;}
.yec{bottom:196.560036px;}
.y47{bottom:203.760064px;}
.y5e{bottom:207.000068px;}
.y2b{bottom:207.360077px;}
.y87{bottom:210.780052px;}
.y82{bottom:211.500068px;}
.y130{bottom:212.220085px;}
.yeb{bottom:217.980079px;}
.y126{bottom:221.940033px;}
.yab{bottom:223.020058px;}
.yc4{bottom:223.380066px;}
.y142{bottom:228.060036px;}
.y86{bottom:232.200096px;}
.y46{bottom:232.380066px;}
.y81{bottom:232.920043px;}
.y15{bottom:235.620000px;}
.yb5{bottom:235.620072px;}
.y2a{bottom:235.980079px;}
.y12f{bottom:240.840088px;}
.yea{bottom:247.140060px;}
.y125{bottom:250.560036px;}
.yaa{bottom:251.640060px;}
.y80{bottom:252.900055px;}
.y85{bottom:253.620072px;}
.yc3{bottom:255.780052px;}
.y141{bottom:256.500068px;}
.y45{bottom:260.820099px;}
.y14{bottom:264.060000px;}
.y5d{bottom:264.060036px;}
.ye9{bottom:268.560036px;}
.y84{bottom:275.040047px;}
.ya9{bottom:280.080093px;}
.y124{bottom:284.580093px;}
.y140{bottom:285.120072px;}
.yc2{bottom:288.000068px;}
.y44{bottom:289.440033px;}
.ye8{bottom:289.980079px;}
.yb4{bottom:292.680039px;}
.y29{bottom:293.040047px;}
.y83{bottom:296.280052px;}
.y12e{bottom:297.900055px;}
.ya8{bottom:308.700096px;}
.y112{bottom:309.780052px;}
.y43{bottom:317.880066px;}
.y123{bottom:318.240074px;}
.yc1{bottom:320.400055px;}
.ye7{bottom:320.760064px;}
.y13{bottom:321.120000px;}
.y5c{bottom:321.120072px;}
.y7f{bottom:325.980079px;}
.y12d{bottom:326.340088px;}
.ya7{bottom:337.140060px;}
.y122{bottom:339.660049px;}
.y42{bottom:346.500068px;}
.y7e{bottom:347.400055px;}
.y5b{bottom:349.740074px;}
.y28{bottom:350.100083px;}
.ye6{bottom:351.540047px;}
.y12c{bottom:354.960091px;}
.yc0{bottom:356.400055px;}
.ya6{bottom:365.760064px;}
.y111{bottom:366.840088px;}
.y121{bottom:369.000068px;}
.ye5{bottom:372.960091px;}
.y12{bottom:378.180000px;}
.y5a{bottom:378.180039px;}
.y27{bottom:378.540047px;}
.y12b{bottom:383.400055px;}
.y120{bottom:390.420043px;}
.ybf{bottom:390.960091px;}
.ya5{bottom:394.200096px;}
.y110{bottom:395.460091px;}
.y7a{bottom:400.680039px;}
.ye4{bottom:402.120072px;}
.y59{bottom:406.800041px;}
.y26{bottom:407.160049px;}
.ybe{bottom:412.380066px;}
.y11f{bottom:419.580093px;}
.ya4{bottom:422.820099px;}
.ye3{bottom:423.540047px;}
.y13f{bottom:427.680039px;}
.y41{bottom:432.000068px;}
.y7d{bottom:432.900055px;}
.y58{bottom:435.240074px;}
.y12a{bottom:440.460091px;}
.y11e{bottom:441.000068px;}
.y10f{bottom:452.520058px;}
.y7c{bottom:454.140060px;}
.ye2{bottom:454.320099px;}
.ybc{bottom:457.740074px;}
.yfb{bottom:458.100083px;}
.y40{bottom:460.620072px;}
.y57{bottom:463.860077px;}
.y11{bottom:463.860150px;}
.y25{bottom:464.220085px;}
.ybb{bottom:465.840088px;}
.y129{bottom:469.080093px;}
.y7b{bottom:475.560036px;}
.ybd{bottom:476.640060px;}
.y11d{bottom:479.340088px;}
.y10e{bottom:483.480079px;}
.ye1{bottom:485.100083px;}
.ya3{bottom:487.800041px;}
.y56{bottom:492.300041px;}
.y79{bottom:505.260064px;}
.ye0{bottom:506.520058px;}
.y13e{bottom:513.360077px;}
.yfa{bottom:515.160049px;}
.y10d{bottom:519.480079px;}
.y55{bottom:520.920043px;}
.y10{bottom:520.920150px;}
.y11c{bottom:525.420043px;}
.ydf{bottom:527.940033px;}
.y10c{bottom:540.900055px;}
.y3f{bottom:546.300041px;}
.y78{bottom:547.920043px;}
.yb3{bottom:549.360077px;}
.yf{bottom:549.360150px;}
.y24{bottom:549.720085px;}
.y128{bottom:554.580093px;}
.yde{bottom:557.280052px;}
.y74{bottom:558.540047px;}
.y11b{bottom:562.320099px;}
.y77{bottom:569.340088px;}
.y10b{bottom:570.960091px;}
.y3e{bottom:574.740074px;}
.ya2{bottom:576.180039px;}
.y54{bottom:577.980079px;}
.y23{bottom:578.340088px;}
.ydd{bottom:578.520058px;}
.y73{bottom:579.960091px;}
.y127{bottom:583.200096px;}
.y11a{bottom:583.740074px;}
.y76{bottom:590.760064px;}
.y10a{bottom:592.380066px;}
.y13d{bottom:598.860077px;}
.y3d{bottom:603.360077px;}
.ya1{bottom:605.160049px;}
.y9e{bottom:605.880066px;}
.ye{bottom:606.420000px;}
.yba{bottom:606.420043px;}
.ydb{bottom:607.860077px;}
.y119{bottom:622.080093px;}
.y9d{bottom:627.300041px;}
.y109{bottom:627.480079px;}
.yda{bottom:629.280052px;}
.y3c{bottom:631.800041px;}
.y75{bottom:633.420043px;}
.y53{bottom:635.040047px;}
.y22{bottom:635.400055px;}
.ydc{bottom:639.720085px;}
.ya0{bottom:648.000068px;}
.yf9{bottom:648.900055px;}
.yd9{bottom:650.520058px;}
.y13c{bottom:655.920043px;}
.y3b{bottom:660.420043px;}
.y72{bottom:662.940033px;}
.yd{bottom:663.480000px;}
.y52{bottom:663.480079px;}
.y9f{bottom:669.240074px;}
.y118{bottom:669.600083px;}
.yd8{bottom:671.940033px;}
.yf8{bottom:677.520058px;}
.y71{bottom:684.360077px;}
.y108{bottom:686.880066px;}
.y3a{bottom:688.860077px;}
.yb2{bottom:692.100083px;}
.y6e{bottom:695.160049px;}
.y9c{bottom:698.940067px;}
.yd7{bottom:702.720051px;}
.yf7{bottom:706.860077px;}
.y13b{bottom:712.980079px;}
.y117{bottom:713.880066px;}
.y6d{bottom:716.400055px;}
.y39{bottom:717.480079px;}
.y107{bottom:719.280052px;}
.y9b{bottom:720.180073px;}
.y51{bottom:720.540081px;}
.y21{bottom:720.900055px;}
.y70{bottom:727.200061px;}
.yd6{bottom:735.120072px;}
.y9a{bottom:741.600083px;}
.yf6{bottom:741.960056px;}
.y38{bottom:745.920078px;}
.y6f{bottom:748.620072px;}
.yb9{bottom:749.160049px;}
.y20{bottom:749.520058px;}
.y95{bottom:752.220051px;}
.y106{bottom:757.980079px;}
.y116{bottom:758.700061px;}
.y99{bottom:763.020058px;}
.yf5{bottom:763.380066px;}
.y114{bottom:766.800076px;}
.yd5{bottom:767.520058px;}
.y115{bottom:768.240074px;}
.y13a{bottom:770.040081px;}
.y94{bottom:773.640060px;}
.y37{bottom:774.540081px;}
.yc{bottom:777.600000px;}
.y50{bottom:777.600083px;}
.y1f{bottom:777.960056px;}
.y105{bottom:779.400055px;}
.y98{bottom:784.440067px;}
.yf4{bottom:793.080059px;}
.yd4{bottom:798.300076px;}
.y6b{bottom:799.560070px;}
.y36{bottom:802.980079px;}
.y97{bottom:805.680073px;}
.yb{bottom:806.220000px;}
.y4f{bottom:806.220051px;}
.yd3{bottom:819.540081px;}
.y6a{bottom:820.800076px;}
.yf3{bottom:826.560070px;}
.y96{bottom:827.100083px;}
.y35{bottom:831.600083px;}
.y4e{bottom:834.660049px;}
.y69{bottom:842.220051px;}
.yd2{bottom:848.880066px;}
.y139{bottom:855.720051px;}
.y93{bottom:856.800076px;}
.ya{bottom:863.280000px;}
.y4d{bottom:863.280052px;}
.y6c{bottom:863.640060px;}
.yf1{bottom:865.800076px;}
.yd1{bottom:870.300076px;}
.yf0{bottom:877.680073px;}
.y92{bottom:878.040081px;}
.y138{bottom:884.160049px;}
.y34{bottom:888.660049px;}
.yf2{bottom:889.560070px;}
.y9{bottom:891.720000px;}
.y4c{bottom:891.720051px;}
.y1e{bottom:892.080059px;}
.y68{bottom:893.160049px;}
.y91{bottom:899.460056px;}
.y33{bottom:917.100083px;}
.y8{bottom:920.340000px;}
.y4b{bottom:920.340054px;}
.y1d{bottom:920.700061px;}
.y90{bottom:920.880066px;}
.yd0{bottom:922.500068px;}
.y104{bottom:932.220051px;}
.y67{bottom:936.000068px;}
.y137{bottom:941.220051px;}
.y8f{bottom:942.300076px;}
.y7{bottom:948.780000px;}
.y4a{bottom:948.780053px;}
.ycf{bottom:953.280053px;}
.y66{bottom:957.420078px;}
.y8e{bottom:963.540081px;}
.y103{bottom:964.620072px;}
.y136{bottom:969.840054px;}
.yce{bottom:974.700061px;}
.yb1{bottom:977.400072px;}
.y1c{bottom:977.760064px;}
.y61{bottom:978.660067px;}
.y32{bottom:982.080059px;}
.y102{bottom:996.840070px;}
.y135{bottom:998.280069px;}
.y65{bottom:1000.080059px;}
.ycd{bottom:1005.480063px;}
.y6{bottom:1005.840000px;}
.yb0{bottom:1005.840070px;}
.y64{bottom:1021.500068px;}
.y5{bottom:1034.460000px;}
.yaf{bottom:1034.460074px;}
.y1b{bottom:1034.820065px;}
.yff{bottom:1036.080059px;}
.ycc{bottom:1037.700061px;}
.y63{bottom:1042.920061px;}
.y101{bottom:1045.620072px;}
.yfd{bottom:1053.720068px;}
.yfe{bottom:1054.980063px;}
.y134{bottom:1055.340070px;}
.y31{bottom:1062.900072px;}
.y62{bottom:1064.340070px;}
.y100{bottom:1064.520058px;}
.y16{bottom:1069.560000px;}
.ycb{bottom:1070.100065px;}
.y8a{bottom:1078.740074px;}
.y133{bottom:1083.960074px;}
.y4{bottom:1091.520000px;}
.y30{bottom:1091.520058px;}
.y1a{bottom:1091.880066px;}
.y8d{bottom:1100.160067px;}
.yca{bottom:1100.880066px;}
.y60{bottom:1103.040064px;}
.y3{bottom:1119.960000px;}
.y49{bottom:1119.960065px;}
.y8c{bottom:1121.400064px;}
.yc9{bottom:1122.300067px;}
.yfc{bottom:1123.020066px;}
.y8b{bottom:1142.820065px;}
.yc8{bottom:1143.720068px;}
.y2{bottom:1148.580000px;}
.y2f{bottom:1148.580068px;}
.y19{bottom:1148.940067px;}
.y5f{bottom:1151.640069px;}
.h5{height:55.303923px;}
.h7{height:55.596662px;}
.h10{height:56.277311px;}
.h6{height:57.534328px;}
.h8{height:64.739171px;}
.h9{height:65.992187px;}
.hc{height:67.837080px;}
.h2{height:67.838636px;}
.he{height:69.496123px;}
.hd{height:70.346938px;}
.h24{height:81.735993px;}
.hb{height:83.395190px;}
.h4{height:83.395980px;}
.ha{height:84.416166px;}
.h3{height:84.416966px;}
.h1e{height:92.536101px;}
.h1d{height:93.717275px;}
.h11{height:93.717347px;}
.h25{height:93.976137px;}
.h23{height:94.437360px;}
.h12{height:96.429420px;}
.h21{height:98.295961px;}
.hf{height:99.477198px;}
.h1b{height:99.736132px;}
.h26{height:106.936159px;}
.h20{height:110.536101px;}
.h1f{height:111.255979px;}
.h16{height:111.256114px;}
.h14{height:111.256119px;}
.h17{height:111.256254px;}
.h18{height:111.976132px;}
.h1a{height:117.866925px;}
.h19{height:117.866929px;}
.h22{height:137.637248px;}
.h1c{height:137.637320px;}
.h13{height:154.456110px;}
.h15{height:154.456146px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:89.819996px;}
.x22{left:97.200002px;}
.x17{left:98.280001px;}
.x28{left:113.760003px;}
.x1{left:140.940000px;}
.x8{left:147.960000px;}
.x33{left:158.580008px;}
.x15{left:170.819996px;}
.x12{left:174.060001px;}
.x2{left:179.640000px;}
.x3{left:184.320000px;}
.x2f{left:189.719999px;}
.x1a{left:223.560001px;}
.x13{left:224.639992px;}
.x6{left:232.920000px;}
.x14{left:234.900003px;}
.x3b{left:238.139992px;}
.x18{left:252.539996px;}
.x40{left:255.240006px;}
.x25{left:256.319996px;}
.x2a{left:258.120002px;}
.x23{left:262.259994px;}
.x19{left:264.960005px;}
.x41{left:268.740006px;}
.x3f{left:273.240006px;}
.x2b{left:274.500000px;}
.x7{left:282.240000px;}
.x3d{left:284.759994px;}
.x1d{left:286.560001px;}
.x5{left:292.140000px;}
.x29{left:295.199993px;}
.x35{left:300.420010px;}
.x2e{left:301.500000px;}
.x16{left:303.120002px;}
.x20{left:304.560001px;}
.x42{left:305.639992px;}
.xd{left:309.960000px;}
.x30{left:318.600013px;}
.x36{left:324.720017px;}
.xb{left:331.380000px;}
.x3e{left:333.000000px;}
.xa{left:335.520000px;}
.x1b{left:336.959988px;}
.x11{left:338.579990px;}
.x4{left:346.320000px;}
.x38{left:354.600014px;}
.x2c{left:357.480011px;}
.x10{left:360.360008px;}
.x37{left:364.319996px;}
.x39{left:369.360008px;}
.x9{left:371.160000px;}
.x26{left:374.399987px;}
.x31{left:409.860008px;}
.xc{left:419.580000px;}
.x1c{left:425.699993px;}
.x34{left:429.839985px;}
.x1f{left:432.720017px;}
.x3a{left:443.519989px;}
.x1e{left:492.480011px;}
.xe{left:532.800007px;}
.x2d{left:552.240006px;}
.x27{left:603.720017px;}
.x21{left:629.279983px;}
.x32{left:631.799973px;}
.x3c{left:681.299973px;}
.x24{left:795.419975px;}
@media print{
.v9{vertical-align:-42.239992pt;}
.v3{vertical-align:-33.919920pt;}
.v12{vertical-align:-32.640140pt;}
.v13{vertical-align:-26.879880pt;}
.v11{vertical-align:-21.119996pt;}
.v15{vertical-align:-16.000000pt;}
.v5{vertical-align:-10.239992pt;}
.vd{vertical-align:-5.760008pt;}
.v10{vertical-align:-2.560060pt;}
.va{vertical-align:-1.280032pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880000pt;}
.ve{vertical-align:20.479980pt;}
.v14{vertical-align:21.760012pt;}
.vf{vertical-align:25.599856pt;}
.vb{vertical-align:26.880008pt;}
.v4{vertical-align:33.919920pt;}
.v7{vertical-align:37.119996pt;}
.v2{vertical-align:38.399900pt;}
.v8{vertical-align:42.239992pt;}
.vc{vertical-align:72.320008pt;}
.v6{vertical-align:75.519988pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.083823pt;}
.ls2{letter-spacing:2.534496pt;}
.ls3{letter-spacing:11.519216pt;}
.ws1{word-spacing:-70.404000pt;}
.ws7{word-spacing:-23.655296pt;}
.ws3{word-spacing:-21.204623pt;}
.ws0{word-spacing:-21.121000pt;}
.ws4{word-spacing:-21.120800pt;}
.ws6{word-spacing:-17.600700pt;}
.ws9{word-spacing:-14.080500pt;}
.ws2{word-spacing:0.000000pt;}
.ws2d{word-spacing:50.488014pt;}
.wsa{word-spacing:51.304410pt;}
.ws32{word-spacing:65.985803pt;}
.ws2f{word-spacing:72.091030pt;}
.ws2c{word-spacing:93.039687pt;}
.ws10{word-spacing:175.302972pt;}
.wsd{word-spacing:176.007000pt;}
.ws31{word-spacing:177.519731pt;}
.ws33{word-spacing:179.989148pt;}
.wsb{word-spacing:185.749160pt;}
.ws22{word-spacing:192.903672pt;}
.ws12{word-spacing:193.607700pt;}
.ws1e{word-spacing:201.352008pt;}
.ws24{word-spacing:202.056036pt;}
.ws37{word-spacing:207.688260pt;}
.ws35{word-spacing:228.809100pt;}
.ws3a{word-spacing:233.033268pt;}
.ws40{word-spacing:233.737296pt;}
.wsf{word-spacing:262.057441pt;}
.ws8{word-spacing:271.599747pt;}
.ws23{word-spacing:279.697496pt;}
.ws2e{word-spacing:291.439747pt;}
.ws15{word-spacing:291.887327pt;}
.ws1d{word-spacing:292.414001pt;}
.ws18{word-spacing:296.372184pt;}
.wsc{word-spacing:299.428562pt;}
.ws16{word-spacing:304.007912pt;}
.ws14{word-spacing:309.055435pt;}
.ws29{word-spacing:311.491542pt;}
.ws28{word-spacing:315.391197pt;}
.ws1b{word-spacing:322.721192pt;}
.ws38{word-spacing:327.201208pt;}
.ws2a{word-spacing:327.251044pt;}
.ws2b{word-spacing:341.528192pt;}
.ws3d{word-spacing:342.851530pt;}
.ws1c{word-spacing:354.817283pt;}
.ws13{word-spacing:354.826330pt;}
.ws26{word-spacing:363.374557pt;}
.ws27{word-spacing:373.529434pt;}
.ws30{word-spacing:383.934021pt;}
.ws25{word-spacing:390.111087pt;}
.ws1a{word-spacing:390.751103pt;}
.ws11{word-spacing:397.432400pt;}
.ws21{word-spacing:401.282581pt;}
.ws17{word-spacing:413.073675pt;}
.ws34{word-spacing:428.792448pt;}
.ws20{word-spacing:429.021284pt;}
.ws3c{word-spacing:432.642601pt;}
.ws19{word-spacing:432.980407pt;}
.ws3f{word-spacing:437.742289pt;}
.ws1f{word-spacing:448.180081pt;}
.ws3b{word-spacing:460.381304pt;}
.ws3e{word-spacing:462.738423pt;}
.ws36{word-spacing:463.700411pt;}
.wse{word-spacing:468.968032pt;}
.ws39{word-spacing:475.818378pt;}
.ws5{word-spacing:750.071431pt;}
._4d{margin-left:-20.338830pt;}
._7{margin-left:-14.344876pt;}
._56{margin-left:-13.047514pt;}
._5e{margin-left:-11.504950pt;}
._14{margin-left:-10.515776pt;}
._c{margin-left:-9.462461pt;}
._8{margin-left:-8.526294pt;}
._10{margin-left:-7.381368pt;}
._4{margin-left:-6.420446pt;}
._6{margin-left:-5.492981pt;}
._2{margin-left:-4.393252pt;}
._11{margin-left:-3.382974pt;}
._5{margin-left:-2.491796pt;}
._3{margin-left:-1.357208pt;}
._0{width:0.932084pt;}
._9{width:2.278308pt;}
._e{width:3.370825pt;}
._17{width:4.430026pt;}
._13{width:6.131138pt;}
._12{width:7.335188pt;}
._15{width:8.277016pt;}
._b{width:9.795383pt;}
._f{width:10.941692pt;}
._d{width:12.084226pt;}
._a{width:13.018479pt;}
._16{width:14.315628pt;}
._18{width:15.243112pt;}
._1c{width:16.978066pt;}
._1b{width:18.625057pt;}
._1a{width:25.960253pt;}
._5d{width:26.995569pt;}
._2d{width:46.247505pt;}
._5f{width:61.696751pt;}
._5b{width:64.477511pt;}
._1d{width:66.707702pt;}
._39{width:69.267634pt;}
._61{width:73.885045pt;}
._4e{width:77.587706pt;}
._60{width:81.175485pt;}
._59{width:84.562171pt;}
._2e{width:123.782401pt;}
._47{width:163.334496pt;}
._41{width:172.486860pt;}
._3a{width:186.546448pt;}
._48{width:192.199644pt;}
._3d{width:198.535896pt;}
._33{width:199.943952pt;}
._3e{width:201.352008pt;}
._5c{width:206.830596pt;}
._1f{width:210.504372pt;}
._24{width:211.912428pt;}
._40{width:218.248680pt;}
._25{width:219.808267pt;}
._2a{width:220.780431pt;}
._58{width:223.989448pt;}
._37{width:226.697016pt;}
._2c{width:228.352307pt;}
._42{width:230.405813pt;}
._31{width:233.033268pt;}
._22{width:236.553408pt;}
._29{width:237.704691pt;}
._26{width:238.748270pt;}
._3c{width:245.001744pt;}
._52{width:247.113828pt;}
._32{width:249.225912pt;}
._50{width:251.337996pt;}
._51{width:254.165933pt;}
._30{width:260.490360pt;}
._20{width:262.602444pt;}
._46{width:264.945144pt;}
._49{width:266.826612pt;}
._2b{width:269.657705pt;}
._54{width:273.866892pt;}
._36{width:275.274948pt;}
._45{width:276.683004pt;}
._53{width:279.558793pt;}
._4f{width:281.470394pt;}
._2f{width:286.374210pt;}
._35{width:317.492248pt;}
._55{width:327.694027pt;}
._34{width:333.528801pt;}
._23{width:335.266728pt;}
._38{width:348.680688pt;}
._21{width:356.238168pt;}
._27{width:357.387626pt;}
._4a{width:362.734633pt;}
._28{width:382.382358pt;}
._1e{width:383.402923pt;}
._19{width:386.933056pt;}
._3b{width:448.555646pt;}
._44{width:452.357398pt;}
._4c{width:470.509621pt;}
._43{width:479.673684pt;}
._4b{width:482.194976pt;}
._3f{width:483.616241pt;}
._57{width:1171.427481pt;}
._1{width:1507.149880pt;}
._5a{width:1714.477980pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs4{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fs7{font-size:70.402800pt;}
.fs3{font-size:70.404000pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760000pt;}
.y17{bottom:33.760010pt;}
.y18{bottom:36.480103pt;}
.y132{bottom:87.200074pt;}
.yae{bottom:96.800049pt;}
.y143{bottom:101.280030pt;}
.yef{bottom:106.400086pt;}
.yb8{bottom:107.840088pt;}
.y2e{bottom:108.320069pt;}
.yad{bottom:122.240052pt;}
.yc7{bottom:123.520081pt;}
.yee{bottom:128.320069pt;}
.y48{bottom:130.400086pt;}
.yb7{bottom:133.280030pt;}
.y2d{bottom:133.600037pt;}
.y131{bottom:137.920044pt;}
.yc6{bottom:142.400086pt;}
.yac{bottom:147.520081pt;}
.y113{bottom:148.640076pt;}
.y89{bottom:149.440064pt;}
.yed{bottom:155.680054pt;}
.yb6{bottom:158.720032pt;}
.y2c{bottom:159.040039pt;}
.y88{bottom:168.480042pt;}
.yc5{bottom:169.760071pt;}
.yec{bottom:174.720032pt;}
.y47{bottom:181.120057pt;}
.y5e{bottom:184.000061pt;}
.y2b{bottom:184.320069pt;}
.y87{bottom:187.360047pt;}
.y82{bottom:188.000061pt;}
.y130{bottom:188.640076pt;}
.yeb{bottom:193.760071pt;}
.y126{bottom:197.280030pt;}
.yab{bottom:198.240052pt;}
.yc4{bottom:198.560059pt;}
.y142{bottom:202.720032pt;}
.y86{bottom:206.400086pt;}
.y46{bottom:206.560059pt;}
.y81{bottom:207.040039pt;}
.y15{bottom:209.440000pt;}
.yb5{bottom:209.440064pt;}
.y2a{bottom:209.760071pt;}
.y12f{bottom:214.080079pt;}
.yea{bottom:219.680054pt;}
.y125{bottom:222.720032pt;}
.yaa{bottom:223.680054pt;}
.y80{bottom:224.800049pt;}
.y85{bottom:225.440064pt;}
.yc3{bottom:227.360047pt;}
.y141{bottom:228.000061pt;}
.y45{bottom:231.840088pt;}
.y14{bottom:234.720000pt;}
.y5d{bottom:234.720032pt;}
.ye9{bottom:238.720032pt;}
.y84{bottom:244.480042pt;}
.ya9{bottom:248.960083pt;}
.y124{bottom:252.960083pt;}
.y140{bottom:253.440064pt;}
.yc2{bottom:256.000061pt;}
.y44{bottom:257.280030pt;}
.ye8{bottom:257.760071pt;}
.yb4{bottom:260.160035pt;}
.y29{bottom:260.480042pt;}
.y83{bottom:263.360047pt;}
.y12e{bottom:264.800049pt;}
.ya8{bottom:274.400086pt;}
.y112{bottom:275.360047pt;}
.y43{bottom:282.560059pt;}
.y123{bottom:282.880066pt;}
.yc1{bottom:284.800049pt;}
.ye7{bottom:285.120057pt;}
.y13{bottom:285.440000pt;}
.y5c{bottom:285.440064pt;}
.y7f{bottom:289.760071pt;}
.y12d{bottom:290.080079pt;}
.ya7{bottom:299.680054pt;}
.y122{bottom:301.920044pt;}
.y42{bottom:308.000061pt;}
.y7e{bottom:308.800049pt;}
.y5b{bottom:310.880066pt;}
.y28{bottom:311.200074pt;}
.ye6{bottom:312.480042pt;}
.y12c{bottom:315.520081pt;}
.yc0{bottom:316.800049pt;}
.ya6{bottom:325.120057pt;}
.y111{bottom:326.080079pt;}
.y121{bottom:328.000061pt;}
.ye5{bottom:331.520081pt;}
.y12{bottom:336.160000pt;}
.y5a{bottom:336.160035pt;}
.y27{bottom:336.480042pt;}
.y12b{bottom:340.800049pt;}
.y120{bottom:347.040039pt;}
.ybf{bottom:347.520081pt;}
.ya5{bottom:350.400086pt;}
.y110{bottom:351.520081pt;}
.y7a{bottom:356.160035pt;}
.ye4{bottom:357.440064pt;}
.y59{bottom:361.600037pt;}
.y26{bottom:361.920044pt;}
.ybe{bottom:366.560059pt;}
.y11f{bottom:372.960083pt;}
.ya4{bottom:375.840088pt;}
.ye3{bottom:376.480042pt;}
.y13f{bottom:380.160035pt;}
.y41{bottom:384.000061pt;}
.y7d{bottom:384.800049pt;}
.y58{bottom:386.880066pt;}
.y12a{bottom:391.520081pt;}
.y11e{bottom:392.000061pt;}
.y10f{bottom:402.240052pt;}
.y7c{bottom:403.680054pt;}
.ye2{bottom:403.840088pt;}
.ybc{bottom:406.880066pt;}
.yfb{bottom:407.200074pt;}
.y40{bottom:409.440064pt;}
.y57{bottom:412.320069pt;}
.y11{bottom:412.320133pt;}
.y25{bottom:412.640076pt;}
.ybb{bottom:414.080079pt;}
.y129{bottom:416.960083pt;}
.y7b{bottom:422.720032pt;}
.ybd{bottom:423.680054pt;}
.y11d{bottom:426.080079pt;}
.y10e{bottom:429.760071pt;}
.ye1{bottom:431.200074pt;}
.ya3{bottom:433.600037pt;}
.y56{bottom:437.600037pt;}
.y79{bottom:449.120057pt;}
.ye0{bottom:450.240052pt;}
.y13e{bottom:456.320069pt;}
.yfa{bottom:457.920044pt;}
.y10d{bottom:461.760071pt;}
.y55{bottom:463.040039pt;}
.y10{bottom:463.040133pt;}
.y11c{bottom:467.040039pt;}
.ydf{bottom:469.280030pt;}
.y10c{bottom:480.800049pt;}
.y3f{bottom:485.600037pt;}
.y78{bottom:487.040039pt;}
.yb3{bottom:488.320069pt;}
.yf{bottom:488.320133pt;}
.y24{bottom:488.640076pt;}
.y128{bottom:492.960083pt;}
.yde{bottom:495.360047pt;}
.y74{bottom:496.480042pt;}
.y11b{bottom:499.840088pt;}
.y77{bottom:506.080079pt;}
.y10b{bottom:507.520081pt;}
.y3e{bottom:510.880066pt;}
.ya2{bottom:512.160035pt;}
.y54{bottom:513.760071pt;}
.y23{bottom:514.080079pt;}
.ydd{bottom:514.240052pt;}
.y73{bottom:515.520081pt;}
.y127{bottom:518.400086pt;}
.y11a{bottom:518.880066pt;}
.y76{bottom:525.120057pt;}
.y10a{bottom:526.560059pt;}
.y13d{bottom:532.320069pt;}
.y3d{bottom:536.320069pt;}
.ya1{bottom:537.920044pt;}
.y9e{bottom:538.560059pt;}
.ye{bottom:539.040000pt;}
.yba{bottom:539.040039pt;}
.ydb{bottom:540.320069pt;}
.y119{bottom:552.960083pt;}
.y9d{bottom:557.600037pt;}
.y109{bottom:557.760071pt;}
.yda{bottom:559.360047pt;}
.y3c{bottom:561.600037pt;}
.y75{bottom:563.040039pt;}
.y53{bottom:564.480042pt;}
.y22{bottom:564.800049pt;}
.ydc{bottom:568.640076pt;}
.ya0{bottom:576.000061pt;}
.yf9{bottom:576.800049pt;}
.yd9{bottom:578.240052pt;}
.y13c{bottom:583.040039pt;}
.y3b{bottom:587.040039pt;}
.y72{bottom:589.280030pt;}
.yd{bottom:589.760000pt;}
.y52{bottom:589.760071pt;}
.y9f{bottom:594.880066pt;}
.y118{bottom:595.200074pt;}
.yd8{bottom:597.280030pt;}
.yf8{bottom:602.240052pt;}
.y71{bottom:608.320069pt;}
.y108{bottom:610.560059pt;}
.y3a{bottom:612.320069pt;}
.yb2{bottom:615.200074pt;}
.y6e{bottom:617.920044pt;}
.y9c{bottom:621.280060pt;}
.yd7{bottom:624.640046pt;}
.yf7{bottom:628.320069pt;}
.y13b{bottom:633.760071pt;}
.y117{bottom:634.560059pt;}
.y6d{bottom:636.800049pt;}
.y39{bottom:637.760071pt;}
.y107{bottom:639.360047pt;}
.y9b{bottom:640.160065pt;}
.y51{bottom:640.480072pt;}
.y21{bottom:640.800049pt;}
.y70{bottom:646.400055pt;}
.yd6{bottom:653.440064pt;}
.y9a{bottom:659.200074pt;}
.yf6{bottom:659.520050pt;}
.y38{bottom:663.040070pt;}
.y6f{bottom:665.440064pt;}
.yb9{bottom:665.920044pt;}
.y20{bottom:666.240052pt;}
.y95{bottom:668.640046pt;}
.y106{bottom:673.760071pt;}
.y116{bottom:674.400055pt;}
.y99{bottom:678.240052pt;}
.yf5{bottom:678.560059pt;}
.y114{bottom:681.600068pt;}
.yd5{bottom:682.240052pt;}
.y115{bottom:682.880066pt;}
.y13a{bottom:684.480072pt;}
.y94{bottom:687.680054pt;}
.y37{bottom:688.480072pt;}
.yc{bottom:691.200000pt;}
.y50{bottom:691.200074pt;}
.y1f{bottom:691.520050pt;}
.y105{bottom:692.800049pt;}
.y98{bottom:697.280060pt;}
.yf4{bottom:704.960053pt;}
.yd4{bottom:709.600068pt;}
.y6b{bottom:710.720063pt;}
.y36{bottom:713.760071pt;}
.y97{bottom:716.160065pt;}
.yb{bottom:716.640000pt;}
.y4f{bottom:716.640046pt;}
.yd3{bottom:728.480072pt;}
.y6a{bottom:729.600068pt;}
.yf3{bottom:734.720063pt;}
.y96{bottom:735.200074pt;}
.y35{bottom:739.200074pt;}
.y4e{bottom:741.920044pt;}
.y69{bottom:748.640046pt;}
.yd2{bottom:754.560059pt;}
.y139{bottom:760.640046pt;}
.y93{bottom:761.600068pt;}
.ya{bottom:767.360000pt;}
.y4d{bottom:767.360047pt;}
.y6c{bottom:767.680054pt;}
.yf1{bottom:769.600068pt;}
.yd1{bottom:773.600068pt;}
.yf0{bottom:780.160065pt;}
.y92{bottom:780.480072pt;}
.y138{bottom:785.920044pt;}
.y34{bottom:789.920044pt;}
.yf2{bottom:790.720063pt;}
.y9{bottom:792.640000pt;}
.y4c{bottom:792.640046pt;}
.y1e{bottom:792.960053pt;}
.y68{bottom:793.920044pt;}
.y91{bottom:799.520050pt;}
.y33{bottom:815.200074pt;}
.y8{bottom:818.080000pt;}
.y4b{bottom:818.080048pt;}
.y1d{bottom:818.400055pt;}
.y90{bottom:818.560059pt;}
.yd0{bottom:820.000061pt;}
.y104{bottom:828.640046pt;}
.y67{bottom:832.000061pt;}
.y137{bottom:836.640046pt;}
.y8f{bottom:837.600068pt;}
.y7{bottom:843.360000pt;}
.y4a{bottom:843.360047pt;}
.ycf{bottom:847.360047pt;}
.y66{bottom:851.040070pt;}
.y8e{bottom:856.480072pt;}
.y103{bottom:857.440064pt;}
.y136{bottom:862.080048pt;}
.yce{bottom:866.400055pt;}
.yb1{bottom:868.800064pt;}
.y1c{bottom:869.120057pt;}
.y61{bottom:869.920060pt;}
.y32{bottom:872.960053pt;}
.y102{bottom:886.080063pt;}
.y135{bottom:887.360062pt;}
.y65{bottom:888.960053pt;}
.ycd{bottom:893.760056pt;}
.y6{bottom:894.080000pt;}
.yb0{bottom:894.080063pt;}
.y64{bottom:908.000061pt;}
.y5{bottom:919.520000pt;}
.yaf{bottom:919.520066pt;}
.y1b{bottom:919.840058pt;}
.yff{bottom:920.960053pt;}
.ycc{bottom:922.400055pt;}
.y63{bottom:927.040055pt;}
.y101{bottom:929.440064pt;}
.yfd{bottom:936.640061pt;}
.yfe{bottom:937.760056pt;}
.y134{bottom:938.080063pt;}
.y31{bottom:944.800064pt;}
.y62{bottom:946.080063pt;}
.y100{bottom:946.240052pt;}
.y16{bottom:950.720000pt;}
.ycb{bottom:951.200058pt;}
.y8a{bottom:958.880066pt;}
.y133{bottom:963.520066pt;}
.y4{bottom:970.240000pt;}
.y30{bottom:970.240052pt;}
.y1a{bottom:970.560059pt;}
.y8d{bottom:977.920060pt;}
.yca{bottom:978.560059pt;}
.y60{bottom:980.480057pt;}
.y3{bottom:995.520000pt;}
.y49{bottom:995.520058pt;}
.y8c{bottom:996.800057pt;}
.yc9{bottom:997.600060pt;}
.yfc{bottom:998.240059pt;}
.y8b{bottom:1015.840058pt;}
.yc8{bottom:1016.640061pt;}
.y2{bottom:1020.960000pt;}
.y2f{bottom:1020.960061pt;}
.y19{bottom:1021.280060pt;}
.y5f{bottom:1023.680062pt;}
.h5{height:49.159043pt;}
.h7{height:49.419255pt;}
.h10{height:50.024276pt;}
.h6{height:51.141625pt;}
.h8{height:57.545930pt;}
.h9{height:58.659722pt;}
.hc{height:60.299627pt;}
.h2{height:60.301010pt;}
.he{height:61.774332pt;}
.hd{height:62.530612pt;}
.h24{height:72.654216pt;}
.hb{height:74.129058pt;}
.h4{height:74.129760pt;}
.ha{height:75.036592pt;}
.h3{height:75.037303pt;}
.h1e{height:82.254312pt;}
.h1d{height:83.304244pt;}
.h11{height:83.304308pt;}
.h25{height:83.534344pt;}
.h23{height:83.944320pt;}
.h12{height:85.715040pt;}
.h21{height:87.374188pt;}
.hf{height:88.424176pt;}
.h1b{height:88.654340pt;}
.h26{height:95.054364pt;}
.h20{height:98.254312pt;}
.h1f{height:98.894204pt;}
.h16{height:98.894324pt;}
.h14{height:98.894328pt;}
.h17{height:98.894448pt;}
.h18{height:99.534340pt;}
.h1a{height:104.770600pt;}
.h19{height:104.770604pt;}
.h22{height:122.344220pt;}
.h1c{height:122.344284pt;}
.h13{height:137.294320pt;}
.h15{height:137.294352pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:79.839996pt;}
.x22{left:86.400002pt;}
.x17{left:87.360001pt;}
.x28{left:101.120003pt;}
.x1{left:125.280000pt;}
.x8{left:131.520000pt;}
.x33{left:140.960007pt;}
.x15{left:151.839996pt;}
.x12{left:154.720001pt;}
.x2{left:159.680000pt;}
.x3{left:163.840000pt;}
.x2f{left:168.639999pt;}
.x1a{left:198.720001pt;}
.x13{left:199.679993pt;}
.x6{left:207.040000pt;}
.x14{left:208.800003pt;}
.x3b{left:211.679993pt;}
.x18{left:224.479996pt;}
.x40{left:226.880005pt;}
.x25{left:227.839996pt;}
.x2a{left:229.440002pt;}
.x23{left:233.119995pt;}
.x19{left:235.520004pt;}
.x41{left:238.880005pt;}
.x3f{left:242.880005pt;}
.x2b{left:244.000000pt;}
.x7{left:250.880000pt;}
.x3d{left:253.119995pt;}
.x1d{left:254.720001pt;}
.x5{left:259.680000pt;}
.x29{left:262.399994pt;}
.x35{left:267.040009pt;}
.x2e{left:268.000000pt;}
.x16{left:269.440002pt;}
.x20{left:270.720001pt;}
.x42{left:271.679993pt;}
.xd{left:275.520000pt;}
.x30{left:283.200012pt;}
.x36{left:288.640015pt;}
.xb{left:294.560000pt;}
.x3e{left:296.000000pt;}
.xa{left:298.240000pt;}
.x1b{left:299.519989pt;}
.x11{left:300.959991pt;}
.x4{left:307.840000pt;}
.x38{left:315.200012pt;}
.x2c{left:317.760010pt;}
.x10{left:320.320007pt;}
.x37{left:323.839996pt;}
.x39{left:328.320007pt;}
.x9{left:329.920000pt;}
.x26{left:332.799988pt;}
.x31{left:364.320007pt;}
.xc{left:372.960000pt;}
.x1c{left:378.399994pt;}
.x34{left:382.079987pt;}
.x1f{left:384.640015pt;}
.x3a{left:394.239990pt;}
.x1e{left:437.760010pt;}
.xe{left:473.600006pt;}
.x2d{left:490.880005pt;}
.x27{left:536.640015pt;}
.x21{left:559.359985pt;}
.x32{left:561.599976pt;}
.x3c{left:605.599976pt;}
.x24{left:707.039978pt;}
}




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