
    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_d28c1c66fda7251492de7aa7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_163b3d7ebb2837c0fc9a982e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969238;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_85911623fd1688163ad0cdaf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972168;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_41ec3c14dda064e943fa44b2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_380e19d558fce87ee3a0d3f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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_ffaf37b9cc7e2c972c3dcf3b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c22c199fac6ab8dac6a744ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_68a137631a04d4682fe8c7e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c034670e51ea121dbdc78798.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c421e82736a056a82a12453a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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:ffb;src:url('chunks/assets/font_89cfdff9b5ca9a5f683d556a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740234;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:ffc;src:url('chunks/assets/font_537e89882ae2392b793aed42.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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:ffd;src:url('chunks/assets/font_9ac75505d75d18b9b40f1827.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.918945;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:ffe;src:url('chunks/assets/font_5122160959f99187c587bd9a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017976px;}
.ls1{letter-spacing:0.018012px;}
.lsf{letter-spacing:0.144004px;}
.ls6{letter-spacing:0.288009px;}
.ls10{letter-spacing:0.336010px;}
.lsb{letter-spacing:0.816025px;}
.lsc{letter-spacing:0.864026px;}
.ls16{letter-spacing:0.872130px;}
.ls15{letter-spacing:0.923432px;}
.ls9{letter-spacing:1.296040px;}
.ls8{letter-spacing:1.344041px;}
.ls13{letter-spacing:1.458000px;}
.ls4{letter-spacing:1.476000px;}
.ls5{letter-spacing:1.728000px;}
.ls14{letter-spacing:1.812954px;}
.ls12{letter-spacing:1.824056px;}
.ls7{letter-spacing:1.968060px;}
.ls11{letter-spacing:2.160066px;}
.lsd{letter-spacing:2.208067px;}
.lse{letter-spacing:3.600110px;}
.lsa{letter-spacing:4.512138px;}
.ls3{letter-spacing:922.319000px;}
.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;}
}
.ws1a{word-spacing:-51.301758px;}
.ws9{word-spacing:-48.001464px;}
.ws2{word-spacing:-27.632329px;}
.ws3{word-spacing:-21.129671px;}
.ws4{word-spacing:-18.854533px;}
.ws16{word-spacing:-16.416000px;}
.wsb{word-spacing:-16.254000px;}
.ws8{word-spacing:-14.958000px;}
.ws18{word-spacing:-14.210587px;}
.wsd{word-spacing:-13.584414px;}
.ws19{word-spacing:-13.344407px;}
.wse{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.ws6{word-spacing:-10.508889px;}
.ws1{word-spacing:-0.091802px;}
.wsa{word-spacing:-0.062640px;}
.ws12{word-spacing:-0.048001px;}
.ws7{word-spacing:0.000000px;}
.ws10{word-spacing:100.894517px;}
.wsc{word-spacing:100.930366px;}
.wsf{word-spacing:100.930374px;}
.ws11{word-spacing:100.966759px;}
.ws14{word-spacing:182.736000px;}
.ws15{word-spacing:193.671000px;}
.ws5{word-spacing:199.512000px;}
.ws13{word-spacing:225.585000px;}
.ws17{word-spacing:881.997770px;}
._27{margin-left:-9.585780px;}
._7{margin-left:-8.411906px;}
._28{margin-left:-7.052431px;}
._3{margin-left:-5.994000px;}
._9{margin-left:-3.450502px;}
._4{margin-left:-2.135826px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._8{width:3.653873px;}
._d{width:4.836590px;}
._b{width:6.048000px;}
._c{width:7.062170px;}
._a{width:8.495917px;}
._13{width:9.524618px;}
._12{width:10.767671px;}
._14{width:12.530859px;}
._17{width:13.902135px;}
._16{width:16.350288px;}
._18{width:18.119865px;}
._5{width:19.327765px;}
._15{width:21.984244px;}
._21{width:23.216120px;}
._e{width:24.799266px;}
._1a{width:25.972602px;}
._22{width:31.106069px;}
._19{width:34.592049px;}
._6{width:36.518152px;}
._20{width:89.990827px;}
._25{width:115.685464px;}
._26{width:218.419753px;}
._1b{width:245.419753px;}
._1e{width:278.654187px;}
._1d{width:290.068384px;}
._1c{width:326.574516px;}
._11{width:336.168000px;}
._f{width:420.984000px;}
._24{width:426.644820px;}
._10{width:457.823826px;}
._23{width:510.488609px;}
._1f{width:626.410959px;}
.fc3{color:rgb(10,84,44);}
.fc1{color:rgb(27,138,174);}
.fc6{color:rgb(128,128,128);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs8{font-size:40.500000px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs9{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:62.639646px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y172{bottom:4.528262px;}
.ya8{bottom:4.768494px;}
.y171{bottom:22.481389px;}
.ya7{bottom:23.664973px;}
.y170{bottom:40.434516px;}
.ya6{bottom:42.567322px;}
.y21{bottom:46.734370px;}
.y16f{bottom:58.387641px;}
.y20{bottom:59.015622px;}
.yf9{bottom:61.464838px;}
.ya5{bottom:61.469664px;}
.y1f{bottom:71.302734px;}
.y16e{bottom:76.346605px;}
.yf8{bottom:80.367187px;}
.yaf{bottom:82.570500px;}
.y92{bottom:85.419000px;}
.ybf{bottom:87.339833px;}
.ya9{bottom:90.187500px;}
.yf7{bottom:90.375000px;}
.y105{bottom:90.675000px;}
.y47{bottom:93.106500px;}
.y16d{bottom:94.299733px;}
.ye5{bottom:94.600500px;}
.yfd{bottom:95.144526px;}
.y127{bottom:95.443343px;}
.yc7{bottom:97.588500px;}
.y6c{bottom:97.869120px;}
.ydc{bottom:102.357417px;}
.ybe{bottom:106.242182px;}
.yf5{bottom:111.210935px;}
.y16c{bottom:112.252860px;}
.y8e{bottom:112.476563px;}
.yfc{bottom:114.041010px;}
.y126{bottom:114.339833px;}
.y6b{bottom:116.771469px;}
.y147{bottom:119.742179px;}
.ydb{bottom:121.259760px;}
.yf4{bottom:128.009767px;}
.y8d{bottom:129.275386px;}
.y16b{bottom:130.211848px;}
.yfb{bottom:132.943353px;}
.y125{bottom:133.242182px;}
.y45{bottom:135.398427px;}
.y6a{bottom:135.667959px;}
.y1d{bottom:137.039036px;}
.y146{bottom:137.701167px;}
.ybd{bottom:138.638661px;}
.yda{bottom:140.156244px;}
.y8c{bottom:146.074218px;}
.y16a{bottom:148.164975px;}
.yf6{bottom:148.183593px;}
.yf3{bottom:149.308593px;}
.yfa{bottom:151.839843px;}
.y124{bottom:152.138672px;}
.y44{bottom:154.300776px;}
.y69{bottom:154.570308px;}
.y145{bottom:155.654294px;}
.y1c{bottom:155.941385px;}
.ybc{bottom:157.541010px;}
.yd9{bottom:159.058589px;}
.y8b{bottom:162.878907px;}
.y169{bottom:166.118102px;}
.y123{bottom:171.040999px;}
.y43{bottom:173.203092px;}
.y68{bottom:173.472657px;}
.y144{bottom:173.607422px;}
.y1b{bottom:174.837875px;}
.ybb{bottom:176.437500px;}
.yd8{bottom:177.955079px;}
.y8a{bottom:179.677730px;}
.y148{bottom:180.856500px;}
.y168{bottom:184.077091px;}
.yb5{bottom:188.366994px;}
.yad{bottom:188.882806px;}
.y122{bottom:189.943348px;}
.y143{bottom:191.566407px;}
.y42{bottom:192.099582px;}
.y1a{bottom:193.740224px;}
.yba{bottom:195.339838px;}
.y89{bottom:196.476563px;}
.yd7{bottom:196.857417px;}
.y167{bottom:202.030218px;}
.y67{bottom:204.697266px;}
.yac{bottom:205.681639px;}
.y142{bottom:209.519530px;}
.y41{bottom:211.001931px;}
.y19{bottom:212.642573px;}
.y103{bottom:212.736331px;}
.y88{bottom:213.275386px;}
.yb9{bottom:214.242182px;}
.y166{bottom:219.983344px;}
.yb4{bottom:220.769339px;}
.y121{bottom:222.339838px;}
.yab{bottom:222.480471px;}
.y141{bottom:227.472657px;}
.yd6{bottom:229.259760px;}
.y40{bottom:229.898421px;}
.y87{bottom:230.074218px;}
.y18{bottom:231.539063px;}
.y104{bottom:232.910157px;}
.yb8{bottom:233.138661px;}
.y102{bottom:234.035157px;}
.y165{bottom:237.942324px;}
.yb3{bottom:239.671681px;}
.y120{bottom:241.242182px;}
.yae{bottom:242.654297px;}
.yaa{bottom:243.779297px;}
.y140{bottom:245.431641px;}
.y86{bottom:246.878902px;}
.yd5{bottom:248.156244px;}
.y3f{bottom:248.800770px;}
.y66{bottom:249.527250px;}
.yb7{bottom:252.041010px;}
.y164{bottom:255.895451px;}
.yb2{bottom:258.568165px;}
.y11f{bottom:260.138672px;}
.y13f{bottom:263.384755px;}
.y85{bottom:263.677730px;}
.yd4{bottom:267.058593px;}
.y3e{bottom:267.703119px;}
.y65{bottom:268.429599px;}
.y17{bottom:269.419922px;}
.yb6{bottom:270.937500px;}
.y163{bottom:273.848578px;}
.yce{bottom:277.470088px;}
.y11e{bottom:279.041010px;}
.y84{bottom:280.476562px;}
.y13e{bottom:281.337882px;}
.yd3{bottom:285.955073px;}
.y3d{bottom:286.599609px;}
.y64{bottom:287.331948px;}
.y162{bottom:291.807562px;}
.ycd{bottom:296.366578px;}
.y83{bottom:297.275387px;}
.y11d{bottom:297.943353px;}
.y13d{bottom:299.296871px;}
.yd2{bottom:304.857417px;}
.y63{bottom:306.228438px;}
.y161{bottom:309.760677px;}
.y82{bottom:314.074220px;}
.ycc{bottom:315.268928px;}
.y11c{bottom:316.839839px;}
.y13c{bottom:317.249998px;}
.y3c{bottom:319.001943px;}
.y16{bottom:320.912098px;}
.yd1{bottom:323.759760px;}
.y62{bottom:325.130787px;}
.y160{bottom:327.713804px;}
.y81{bottom:330.878902px;}
.y13b{bottom:335.203125px;}
.y11b{bottom:335.742182px;}
.y3b{bottom:337.898433px;}
.y15{bottom:339.808589px;}
.y61{bottom:344.595627px;}
.y15f{bottom:345.672792px;}
.y80{bottom:347.677734px;}
.y13a{bottom:353.162105px;}
.y11a{bottom:354.638667px;}
.yd0{bottom:356.156244px;}
.y3a{bottom:356.800770px;}
.y14{bottom:358.710938px;}
.y60{bottom:363.497976px;}
.y15e{bottom:363.625919px;}
.y7f{bottom:364.476559px;}
.y139{bottom:371.115232px;}
.y119{bottom:373.541004px;}
.ycf{bottom:375.058593px;}
.y39{bottom:375.703119px;}
.y7e{bottom:381.275386px;}
.y15d{bottom:381.579046px;}
.y5f{bottom:382.394466px;}
.yc5{bottom:383.132808px;}
.y138{bottom:389.068359px;}
.y118{bottom:392.443353px;}
.y38{bottom:394.599605px;}
.y13{bottom:396.591796px;}
.y7d{bottom:398.074218px;}
.y15c{bottom:399.538019px;}
.yc4{bottom:399.937497px;}
.y5e{bottom:401.296815px;}
.y137{bottom:407.027341px;}
.y117{bottom:411.339843px;}
.y37{bottom:413.501948px;}
.y7c{bottom:414.878902px;}
.yc3{bottom:416.742186px;}
.y15b{bottom:417.491146px;}
.y5d{bottom:420.199164px;}
.y136{bottom:424.980468px;}
.y7b{bottom:431.677734px;}
.y36{bottom:432.398433px;}
.yc2{bottom:433.546874px;}
.y15a{bottom:435.444273px;}
.y12{bottom:436.347657px;}
.y5c{bottom:439.095654px;}
.y116{bottom:441.996093px;}
.y7a{bottom:448.476559px;}
.yc1{bottom:450.345706px;}
.y35{bottom:451.300776px;}
.y159{bottom:453.403262px;}
.ye3{bottom:454.851564px;}
.y135{bottom:462.486328px;}
.y79{bottom:465.275391px;}
.y34{bottom:470.203092px;}
.yc6{bottom:470.519532px;}
.y158{bottom:471.356389px;}
.y5b{bottom:471.498003px;}
.yc0{bottom:471.644532px;}
.ye2{bottom:471.650397px;}
.y78{bottom:482.074218px;}
.y33{bottom:489.099582px;}
.y157{bottom:489.309516px;}
.y5a{bottom:490.394493px;}
.ye4{bottom:491.830078px;}
.ye1{bottom:492.955078px;}
.y115{bottom:497.607378px;}
.y77{bottom:498.878902px;}
.y11{bottom:505.447266px;}
.y156{bottom:507.262637px;}
.y59{bottom:509.296842px;}
.ya4{bottom:513.883729px;}
.y76{bottom:515.677734px;}
.y114{bottom:516.503868px;}
.y134{bottom:518.097654px;}
.y32{bottom:521.501931px;}
.y10{bottom:522.246082px;}
.y155{bottom:525.221625px;}
.y75{bottom:532.476562px;}
.ya3{bottom:532.786078px;}
.y113{bottom:535.406217px;}
.y133{bottom:537.568353px;}
.yf{bottom:539.044908px;}
.y31{bottom:540.398421px;}
.y58{bottom:541.699191px;}
.y154{bottom:543.174750px;}
.y112{bottom:554.302707px;}
.y132{bottom:556.464843px;}
.y30{bottom:559.300770px;}
.ye{bottom:560.343741px;}
.y57{bottom:560.595681px;}
.y74{bottom:560.900391px;}
.y153{bottom:561.127846px;}
.ya2{bottom:562.329046px;}
.y111{bottom:573.205056px;}
.y2f{bottom:578.203119px;}
.y100{bottom:578.285155px;}
.y152{bottom:579.086834px;}
.yd{bottom:581.648433px;}
.y131{bottom:587.121093px;}
.y110{bottom:592.107405px;}
.y73{bottom:592.283203px;}
.y56{bottom:592.998030px;}
.yff{bottom:595.083987px;}
.y151{bottom:597.039962px;}
.y2e{bottom:597.099577px;}
.ya1{bottom:601.780214px;}
.yc{bottom:602.947266px;}
.y10f{bottom:611.003895px;}
.y55{bottom:611.894520px;}
.y150{bottom:614.993089px;}
.y101{bottom:615.257813px;}
.y2d{bottom:616.001927px;}
.yfe{bottom:616.382813px;}
.ya0{bottom:618.579046px;}
.y72{bottom:625.382813px;}
.y10e{bottom:629.906244px;}
.y54{bottom:630.796869px;}
.y14f{bottom:632.952077px;}
.y2c{bottom:634.898416px;}
.y9f{bottom:635.383730px;}
.y130{bottom:642.732395px;}
.y53{bottom:649.699218px;}
.y14e{bottom:650.905204px;}
.y9e{bottom:652.182559px;}
.yb{bottom:653.197279px;}
.y2b{bottom:653.800765px;}
.y10d{bottom:659.449212px;}
.y12f{bottom:661.628885px;}
.ya{bottom:666.427743px;}
.y14d{bottom:668.858331px;}
.y9d{bottom:668.981391px;}
.y2a{bottom:672.703114px;}
.y9{bottom:679.658207px;}
.y12e{bottom:680.531233px;}
.y52{bottom:680.923829px;}
.y71{bottom:684.427725px;}
.y9c{bottom:685.780214px;}
.y14c{bottom:686.817320px;}
.y29{bottom:691.599604px;}
.y8{bottom:692.888671px;}
.y12d{bottom:699.427723px;}
.y10c{bottom:699.427730px;}
.y9b{bottom:702.579046px;}
.y14b{bottom:704.770447px;}
.yf1{bottom:704.830073px;}
.y70{bottom:707.003902px;}
.y28{bottom:710.501948px;}
.y7{bottom:713.847657px;}
.y51{bottom:714.023438px;}
.y10b{bottom:718.330068px;}
.y12c{bottom:718.330073px;}
.y1e{bottom:718.347657px;}
.y9a{bottom:719.383730px;}
.y14a{bottom:722.723574px;}
.y27{bottom:729.398438px;}
.y6f{bottom:729.580079px;}
.yeb{bottom:731.729572px;}
.y99{bottom:736.182562px;}
.y12b{bottom:737.232411px;}
.yf0{bottom:737.232417px;}
.y149{bottom:740.682562px;}
.yea{bottom:750.631911px;}
.y98{bottom:752.981387px;}
.yef{bottom:756.128895px;}
.y12a{bottom:756.128901px;}
.y6{bottom:756.158206px;}
.y26{bottom:760.054688px;}
.y90{bottom:766.183596px;}
.ycb{bottom:766.540401px;}
.ye9{bottom:769.528401px;}
.y50{bottom:769.628868px;}
.y10a{bottom:769.628895px;}
.y97{bottom:769.780214px;}
.yee{bottom:775.031244px;}
.yca{bottom:785.442744px;}
.y96{bottom:786.579046px;}
.y8f{bottom:787.482421px;}
.ye8{bottom:788.430744px;}
.y4f{bottom:788.531217px;}
.y109{bottom:788.531244px;}
.y5{bottom:793.710931px;}
.y129{bottom:793.927723px;}
.y95{bottom:803.383730px;}
.yc9{bottom:804.339230px;}
.ye7{bottom:807.327234px;}
.y4e{bottom:807.427707px;}
.yed{bottom:807.427730px;}
.y128{bottom:812.830072px;}
.y25{bottom:815.666016px;}
.yb1{bottom:819.357230px;}
.y94{bottom:820.182562px;}
.yc8{bottom:823.241579px;}
.ye6{bottom:826.229579px;}
.y4d{bottom:826.330056px;}
.y6e{bottom:826.330068px;}
.y108{bottom:826.330072px;}
.yec{bottom:826.330079px;}
.y48{bottom:827.723579px;}
.y106{bottom:830.155078px;}
.y4{bottom:831.269532px;}
.y93{bottom:836.981391px;}
.yb0{bottom:838.259578px;}
.y4c{bottom:845.232405px;}
.y6d{bottom:845.232417px;}
.y24{bottom:846.322266px;}
.yf2{bottom:861.597657px;}
.ye0{bottom:861.597664px;}
.y4b{bottom:864.128895px;}
.y107{bottom:864.128901px;}
.ydf{bottom:880.500006px;}
.y4a{bottom:883.031244px;}
.y3{bottom:899.378907px;}
.yde{bottom:899.396486px;}
.y23{bottom:901.927730px;}
.y49{bottom:901.927734px;}
.ydd{bottom:918.298829px;}
.y22{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y91{bottom:974.730468px;}
.y46{bottom:974.730470px;}
.h9{height:26.244141px;}
.h6{height:27.557629px;}
.ha{height:28.048904px;}
.h17{height:29.524658px;}
.h1{height:30.617097px;}
.h13{height:31.993163px;}
.h5{height:34.993255px;}
.h11{height:35.391704px;}
.hd{height:35.617086px;}
.h15{height:35.626087px;}
.h1c{height:37.399182px;}
.h1e{height:37.399234px;}
.h1f{height:37.399260px;}
.h2{height:39.366211px;}
.h1b{height:39.366277px;}
.hb{height:39.366337px;}
.hc{height:39.366343px;}
.h10{height:40.341797px;}
.h8{height:46.796220px;}
.hf{height:48.050236px;}
.h7{height:52.443023px;}
.h4{height:68.582368px;}
.h3{height:70.420196px;}
.h1d{height:754.107000px;}
.h16{height:837.375000px;}
.h18{height:840.363000px;}
.he{height:841.857000px;}
.h1a{height:844.288500px;}
.h19{height:844.588500px;}
.h12{height:849.544500px;}
.h14{height:852.393000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x1d{left:11.584593px;}
.x10{left:22.500609px;}
.xe{left:28.875607px;}
.xf{left:32.250614px;}
.x1e{left:45.000609px;}
.xd{left:67.500609px;}
.x3{left:78.662109px;}
.x8{left:83.162109px;}
.xc{left:86.537109px;}
.x1b{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x9{left:101.162109px;}
.xa{left:107.537109px;}
.xb{left:108.662105px;}
.x1c{left:123.662109px;}
.x1{left:140.308593px;}
.x7{left:146.601562px;}
.x6{left:160.787109px;}
.x15{left:188.496090px;}
.x2{left:277.664062px;}
.x14{left:299.601562px;}
.x17{left:356.537100px;}
.x18{left:391.289062px;}
.x16{left:417.164051px;}
.x1a{left:567.786621px;}
.x19{left:584.664916px;}
.x11{left:589.160889px;}
.x13{left:599.284424px;}
.x12{left:611.657226px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015979pt;}
.ls1{letter-spacing:0.016011pt;}
.lsf{letter-spacing:0.128004pt;}
.ls6{letter-spacing:0.256008pt;}
.ls10{letter-spacing:0.298676pt;}
.lsb{letter-spacing:0.725355pt;}
.lsc{letter-spacing:0.768023pt;}
.ls16{letter-spacing:0.775227pt;}
.ls15{letter-spacing:0.820828pt;}
.ls9{letter-spacing:1.152035pt;}
.ls8{letter-spacing:1.194703pt;}
.ls13{letter-spacing:1.296000pt;}
.ls4{letter-spacing:1.312000pt;}
.ls5{letter-spacing:1.536000pt;}
.ls14{letter-spacing:1.611515pt;}
.ls12{letter-spacing:1.621383pt;}
.ls7{letter-spacing:1.749387pt;}
.ls11{letter-spacing:1.920059pt;}
.lsd{letter-spacing:1.962727pt;}
.lse{letter-spacing:3.200098pt;}
.lsa{letter-spacing:4.010789pt;}
.ls3{letter-spacing:819.839111pt;}
.ws1a{word-spacing:-45.601563pt;}
.ws9{word-spacing:-42.667968pt;}
.ws2{word-spacing:-24.562070pt;}
.ws3{word-spacing:-18.781930pt;}
.ws4{word-spacing:-16.759585pt;}
.ws16{word-spacing:-14.592000pt;}
.wsb{word-spacing:-14.448000pt;}
.ws8{word-spacing:-13.296000pt;}
.ws18{word-spacing:-12.631633pt;}
.wsd{word-spacing:-12.075035pt;}
.ws19{word-spacing:-11.861695pt;}
.wse{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.ws6{word-spacing:-9.341234pt;}
.ws1{word-spacing:-0.081602pt;}
.wsa{word-spacing:-0.055680pt;}
.ws12{word-spacing:-0.042668pt;}
.ws7{word-spacing:0.000000pt;}
.ws10{word-spacing:89.684015pt;}
.wsc{word-spacing:89.715881pt;}
.wsf{word-spacing:89.715888pt;}
.ws11{word-spacing:89.748231pt;}
.ws14{word-spacing:162.432000pt;}
.ws15{word-spacing:172.152000pt;}
.ws5{word-spacing:177.344000pt;}
.ws13{word-spacing:200.520000pt;}
.ws17{word-spacing:783.998018pt;}
._27{margin-left:-8.520694pt;}
._7{margin-left:-7.477250pt;}
._28{margin-left:-6.268828pt;}
._3{margin-left:-5.328000pt;}
._9{margin-left:-3.067113pt;}
._4{margin-left:-1.898512pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._8{width:3.247887pt;}
._d{width:4.299191pt;}
._b{width:5.376000pt;}
._c{width:6.277484pt;}
._a{width:7.551926pt;}
._13{width:8.466327pt;}
._12{width:9.571263pt;}
._14{width:11.138542pt;}
._17{width:12.357453pt;}
._16{width:14.533590pt;}
._18{width:16.106547pt;}
._5{width:17.180236pt;}
._15{width:19.541551pt;}
._21{width:20.636551pt;}
._e{width:22.043792pt;}
._1a{width:23.086758pt;}
._22{width:27.649839pt;}
._19{width:30.748488pt;}
._6{width:32.460579pt;}
._20{width:79.991846pt;}
._25{width:102.831524pt;}
._26{width:194.150891pt;}
._1b{width:218.150891pt;}
._1e{width:247.692610pt;}
._1d{width:257.838563pt;}
._1c{width:290.288459pt;}
._11{width:298.816000pt;}
._f{width:374.208000pt;}
._24{width:379.239840pt;}
._10{width:406.954512pt;}
._23{width:453.767652pt;}
._1f{width:556.809741pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs8{font-size:36.000000pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs9{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:55.679685pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y172{bottom:4.025121pt;}
.ya8{bottom:4.238661pt;}
.y171{bottom:19.983457pt;}
.ya7{bottom:21.035532pt;}
.y170{bottom:35.941792pt;}
.ya6{bottom:37.837620pt;}
.y21{bottom:41.541662pt;}
.y16f{bottom:51.900125pt;}
.y20{bottom:52.458331pt;}
.yf9{bottom:54.635412pt;}
.ya5{bottom:54.639701pt;}
.y1f{bottom:63.380208pt;}
.y16e{bottom:67.863649pt;}
.yf8{bottom:71.437500pt;}
.yaf{bottom:73.396000pt;}
.y92{bottom:75.928000pt;}
.ybf{bottom:77.635407pt;}
.ya9{bottom:80.166667pt;}
.yf7{bottom:80.333333pt;}
.y105{bottom:80.600000pt;}
.y47{bottom:82.761333pt;}
.y16d{bottom:83.821984pt;}
.ye5{bottom:84.089333pt;}
.yfd{bottom:84.572912pt;}
.y127{bottom:84.838527pt;}
.yc7{bottom:86.745333pt;}
.y6c{bottom:86.994773pt;}
.ydc{bottom:90.984371pt;}
.ybe{bottom:94.437495pt;}
.yf5{bottom:98.854164pt;}
.y16c{bottom:99.780320pt;}
.y8e{bottom:99.979167pt;}
.yfc{bottom:101.369787pt;}
.y126{bottom:101.635407pt;}
.y6b{bottom:103.796861pt;}
.y147{bottom:106.437492pt;}
.ydb{bottom:107.786453pt;}
.yf4{bottom:113.786460pt;}
.y8d{bottom:114.911454pt;}
.y16b{bottom:115.743865pt;}
.yfb{bottom:118.171869pt;}
.y125{bottom:118.437495pt;}
.y45{bottom:120.354157pt;}
.y6a{bottom:120.593741pt;}
.y1d{bottom:121.812476pt;}
.y146{bottom:122.401037pt;}
.ybd{bottom:123.234365pt;}
.yda{bottom:124.583328pt;}
.y8c{bottom:129.843750pt;}
.y16a{bottom:131.702200pt;}
.yf6{bottom:131.718749pt;}
.yf3{bottom:132.718749pt;}
.yfa{bottom:134.968749pt;}
.y124{bottom:135.234375pt;}
.y44{bottom:137.156245pt;}
.y69{bottom:137.395829pt;}
.y145{bottom:138.359373pt;}
.y1c{bottom:138.614564pt;}
.ybc{bottom:140.036453pt;}
.yd9{bottom:141.385412pt;}
.y8b{bottom:144.781251pt;}
.y169{bottom:147.660536pt;}
.y123{bottom:152.036444pt;}
.y43{bottom:153.958304pt;}
.y68{bottom:154.197917pt;}
.y144{bottom:154.317708pt;}
.y1b{bottom:155.411444pt;}
.ybb{bottom:156.833333pt;}
.yd8{bottom:158.182292pt;}
.y8a{bottom:159.713538pt;}
.y148{bottom:160.761333pt;}
.y168{bottom:163.624081pt;}
.yb5{bottom:167.437328pt;}
.yad{bottom:167.895828pt;}
.y122{bottom:168.838532pt;}
.y143{bottom:170.281251pt;}
.y42{bottom:170.755184pt;}
.y1a{bottom:172.213532pt;}
.yba{bottom:173.635412pt;}
.y89{bottom:174.645833pt;}
.yd7{bottom:174.984371pt;}
.y167{bottom:179.582416pt;}
.y67{bottom:181.953125pt;}
.yac{bottom:182.828123pt;}
.y142{bottom:186.239582pt;}
.y41{bottom:187.557272pt;}
.y19{bottom:189.015620pt;}
.y103{bottom:189.098961pt;}
.y88{bottom:189.578121pt;}
.yb9{bottom:190.437495pt;}
.y166{bottom:195.540751pt;}
.yb4{bottom:196.239412pt;}
.y121{bottom:197.635412pt;}
.yab{bottom:197.760419pt;}
.y141{bottom:202.197917pt;}
.yd6{bottom:203.786453pt;}
.y40{bottom:204.354152pt;}
.y87{bottom:204.510416pt;}
.y18{bottom:205.812500pt;}
.y104{bottom:207.031251pt;}
.yb8{bottom:207.234365pt;}
.y102{bottom:208.031251pt;}
.y165{bottom:211.504288pt;}
.yb3{bottom:213.041495pt;}
.y120{bottom:214.437495pt;}
.yae{bottom:215.692708pt;}
.yaa{bottom:216.692708pt;}
.y140{bottom:218.161459pt;}
.y86{bottom:219.447913pt;}
.yd5{bottom:220.583328pt;}
.y3f{bottom:221.156240pt;}
.y66{bottom:221.802000pt;}
.yb7{bottom:224.036453pt;}
.y164{bottom:227.462623pt;}
.yb2{bottom:229.838369pt;}
.y11f{bottom:231.234375pt;}
.y13f{bottom:234.119782pt;}
.y85{bottom:234.380205pt;}
.yd4{bottom:237.385416pt;}
.y3e{bottom:237.958328pt;}
.y65{bottom:238.604088pt;}
.y17{bottom:239.484375pt;}
.yb6{bottom:240.833333pt;}
.y163{bottom:243.420959pt;}
.yce{bottom:246.640079pt;}
.y11e{bottom:248.036453pt;}
.y84{bottom:249.312500pt;}
.y13e{bottom:250.078118pt;}
.yd3{bottom:254.182287pt;}
.y3d{bottom:254.755208pt;}
.y64{bottom:255.406176pt;}
.y162{bottom:259.384500pt;}
.ycd{bottom:263.436959pt;}
.y83{bottom:264.244789pt;}
.y11d{bottom:264.838536pt;}
.y13d{bottom:266.041663pt;}
.yd2{bottom:270.984371pt;}
.y63{bottom:272.203056pt;}
.y161{bottom:275.342824pt;}
.y82{bottom:279.177084pt;}
.ycc{bottom:280.239047pt;}
.y11c{bottom:281.635412pt;}
.y13c{bottom:281.999998pt;}
.y3c{bottom:283.557283pt;}
.y16{bottom:285.255199pt;}
.yd1{bottom:287.786453pt;}
.y62{bottom:289.005144pt;}
.y160{bottom:291.301159pt;}
.y81{bottom:294.114579pt;}
.y13b{bottom:297.958333pt;}
.y11b{bottom:298.437495pt;}
.y3b{bottom:300.354163pt;}
.y15{bottom:302.052079pt;}
.y61{bottom:306.307224pt;}
.y15f{bottom:307.264704pt;}
.y80{bottom:309.046875pt;}
.y13a{bottom:313.921871pt;}
.y11a{bottom:315.234371pt;}
.yd0{bottom:316.583328pt;}
.y3a{bottom:317.156240pt;}
.y14{bottom:318.854167pt;}
.y60{bottom:323.109312pt;}
.y15e{bottom:323.223039pt;}
.y7f{bottom:323.979163pt;}
.y139{bottom:329.880206pt;}
.y119{bottom:332.036448pt;}
.ycf{bottom:333.385416pt;}
.y39{bottom:333.958328pt;}
.y7e{bottom:338.911454pt;}
.y15d{bottom:339.181375pt;}
.y5f{bottom:339.906192pt;}
.yc5{bottom:340.562496pt;}
.y138{bottom:345.838541pt;}
.y118{bottom:348.838536pt;}
.y38{bottom:350.755204pt;}
.y13{bottom:352.526041pt;}
.y7d{bottom:353.843749pt;}
.y15c{bottom:355.144906pt;}
.yc4{bottom:355.499997pt;}
.y5e{bottom:356.708280pt;}
.y137{bottom:361.802081pt;}
.y117{bottom:365.635416pt;}
.y37{bottom:367.557287pt;}
.y7c{bottom:368.781246pt;}
.yc3{bottom:370.437498pt;}
.y15b{bottom:371.103241pt;}
.y5d{bottom:373.510368pt;}
.y136{bottom:377.760416pt;}
.y7b{bottom:383.713541pt;}
.y36{bottom:384.354163pt;}
.yc2{bottom:385.374999pt;}
.y15a{bottom:387.061576pt;}
.y12{bottom:387.864584pt;}
.y5c{bottom:390.307248pt;}
.y116{bottom:392.885416pt;}
.y7a{bottom:398.645830pt;}
.yc1{bottom:400.307295pt;}
.y35{bottom:401.156245pt;}
.y159{bottom:403.025121pt;}
.ye3{bottom:404.312502pt;}
.y135{bottom:411.098959pt;}
.y79{bottom:413.578125pt;}
.y34{bottom:417.958304pt;}
.yc6{bottom:418.239584pt;}
.y158{bottom:418.983457pt;}
.y5b{bottom:419.109336pt;}
.yc0{bottom:419.239584pt;}
.ye2{bottom:419.244797pt;}
.y78{bottom:428.510416pt;}
.y33{bottom:434.755184pt;}
.y157{bottom:434.941792pt;}
.y5a{bottom:435.906216pt;}
.ye4{bottom:437.182292pt;}
.ye1{bottom:438.182292pt;}
.y115{bottom:442.317669pt;}
.y77{bottom:443.447913pt;}
.y11{bottom:449.286459pt;}
.y156{bottom:450.900121pt;}
.y59{bottom:452.708304pt;}
.ya4{bottom:456.785537pt;}
.y76{bottom:458.380208pt;}
.y114{bottom:459.114549pt;}
.y134{bottom:460.531248pt;}
.y32{bottom:463.557272pt;}
.y10{bottom:464.218739pt;}
.y155{bottom:466.863667pt;}
.y75{bottom:473.312500pt;}
.ya3{bottom:473.587625pt;}
.y113{bottom:475.916637pt;}
.y133{bottom:477.838536pt;}
.yf{bottom:479.151029pt;}
.y31{bottom:480.354152pt;}
.y58{bottom:481.510392pt;}
.y154{bottom:482.822000pt;}
.y112{bottom:492.713517pt;}
.y132{bottom:494.635416pt;}
.y30{bottom:497.156240pt;}
.ye{bottom:498.083325pt;}
.y57{bottom:498.307272pt;}
.y74{bottom:498.578125pt;}
.y153{bottom:498.780308pt;}
.ya2{bottom:499.848041pt;}
.y111{bottom:509.515605pt;}
.y2f{bottom:513.958328pt;}
.y100{bottom:514.031248pt;}
.y152{bottom:514.743853pt;}
.yd{bottom:517.020829pt;}
.y131{bottom:521.885416pt;}
.y110{bottom:526.317693pt;}
.y73{bottom:526.473959pt;}
.y56{bottom:527.109360pt;}
.yff{bottom:528.963544pt;}
.y151{bottom:530.702188pt;}
.y2e{bottom:530.755180pt;}
.ya1{bottom:534.915746pt;}
.yc{bottom:535.953125pt;}
.y10f{bottom:543.114573pt;}
.y55{bottom:543.906240pt;}
.y150{bottom:546.660523pt;}
.y101{bottom:546.895833pt;}
.y2d{bottom:547.557268pt;}
.yfe{bottom:547.895833pt;}
.ya0{bottom:549.848041pt;}
.y72{bottom:555.895833pt;}
.y10e{bottom:559.916661pt;}
.y54{bottom:560.708328pt;}
.y14f{bottom:562.624068pt;}
.y2c{bottom:564.354148pt;}
.y9f{bottom:564.785538pt;}
.y130{bottom:571.317684pt;}
.y53{bottom:577.510416pt;}
.y14e{bottom:578.582404pt;}
.y9e{bottom:579.717830pt;}
.yb{bottom:580.619804pt;}
.y2b{bottom:581.156236pt;}
.y10d{bottom:586.177077pt;}
.y12f{bottom:588.114564pt;}
.ya{bottom:592.380216pt;}
.y14d{bottom:594.540739pt;}
.y9d{bottom:594.650125pt;}
.y2a{bottom:597.958324pt;}
.y9{bottom:604.140629pt;}
.y12e{bottom:604.916652pt;}
.y52{bottom:605.265625pt;}
.y71{bottom:608.380200pt;}
.y9c{bottom:609.582413pt;}
.y14c{bottom:610.504284pt;}
.y29{bottom:614.755204pt;}
.y8{bottom:615.901041pt;}
.y12d{bottom:621.713532pt;}
.y10c{bottom:621.713537pt;}
.y9b{bottom:624.514708pt;}
.y14b{bottom:626.462620pt;}
.yf1{bottom:626.515620pt;}
.y70{bottom:628.447913pt;}
.y28{bottom:631.557287pt;}
.y7{bottom:634.531251pt;}
.y51{bottom:634.687500pt;}
.y10b{bottom:638.515616pt;}
.y12c{bottom:638.515620pt;}
.y1e{bottom:638.531251pt;}
.y9a{bottom:639.452205pt;}
.y14a{bottom:642.420955pt;}
.y27{bottom:648.354167pt;}
.y6f{bottom:648.515625pt;}
.yeb{bottom:650.426287pt;}
.y99{bottom:654.384500pt;}
.y12b{bottom:655.317699pt;}
.yf0{bottom:655.317704pt;}
.y149{bottom:658.384500pt;}
.yea{bottom:667.228365pt;}
.y98{bottom:669.316789pt;}
.yef{bottom:672.114573pt;}
.y12a{bottom:672.114579pt;}
.y6{bottom:672.140627pt;}
.y26{bottom:675.604167pt;}
.y90{bottom:681.052085pt;}
.ycb{bottom:681.369245pt;}
.ye9{bottom:684.025245pt;}
.y50{bottom:684.114549pt;}
.y10a{bottom:684.114573pt;}
.y97{bottom:684.249079pt;}
.yee{bottom:688.916661pt;}
.yca{bottom:698.171328pt;}
.y96{bottom:699.181375pt;}
.y8f{bottom:699.984375pt;}
.ye8{bottom:700.827328pt;}
.y4f{bottom:700.916637pt;}
.y109{bottom:700.916661pt;}
.y5{bottom:705.520828pt;}
.y129{bottom:705.713532pt;}
.y95{bottom:714.118871pt;}
.yc9{bottom:714.968204pt;}
.ye7{bottom:717.624208pt;}
.y4e{bottom:717.713517pt;}
.yed{bottom:717.713537pt;}
.y128{bottom:722.515620pt;}
.y25{bottom:725.036459pt;}
.yb1{bottom:728.317537pt;}
.y94{bottom:729.051167pt;}
.yc8{bottom:731.770292pt;}
.ye6{bottom:734.426292pt;}
.y4d{bottom:734.515605pt;}
.y6e{bottom:734.515616pt;}
.y108{bottom:734.515620pt;}
.yec{bottom:734.515625pt;}
.y48{bottom:735.754292pt;}
.y106{bottom:737.915625pt;}
.y4{bottom:738.906251pt;}
.y93{bottom:743.983459pt;}
.yb0{bottom:745.119625pt;}
.y4c{bottom:751.317693pt;}
.y6d{bottom:751.317704pt;}
.y24{bottom:752.286459pt;}
.yf2{bottom:765.864584pt;}
.ye0{bottom:765.864590pt;}
.y4b{bottom:768.114573pt;}
.y107{bottom:768.114579pt;}
.ydf{bottom:782.666672pt;}
.y4a{bottom:784.916661pt;}
.y3{bottom:799.447917pt;}
.yde{bottom:799.463543pt;}
.y23{bottom:801.713537pt;}
.y49{bottom:801.713541pt;}
.ydd{bottom:816.265625pt;}
.y22{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y91{bottom:866.427083pt;}
.y46{bottom:866.427084pt;}
.h9{height:23.328125pt;}
.h6{height:24.495670pt;}
.ha{height:24.932359pt;}
.h17{height:26.244141pt;}
.h1{height:27.215197pt;}
.h13{height:28.438367pt;}
.h5{height:31.105115pt;}
.h11{height:31.459293pt;}
.hd{height:31.659632pt;}
.h15{height:31.667632pt;}
.h1c{height:33.243717pt;}
.h1e{height:33.243764pt;}
.h1f{height:33.243787pt;}
.h2{height:34.992188pt;}
.h1b{height:34.992246pt;}
.hb{height:34.992300pt;}
.hc{height:34.992305pt;}
.h10{height:35.859375pt;}
.h8{height:41.596640pt;}
.hf{height:42.711321pt;}
.h7{height:46.616020pt;}
.h4{height:60.962105pt;}
.h3{height:62.595730pt;}
.h1d{height:670.317333pt;}
.h16{height:744.333333pt;}
.h18{height:746.989333pt;}
.he{height:748.317333pt;}
.h1a{height:750.478667pt;}
.h19{height:750.745333pt;}
.h12{height:755.150667pt;}
.h14{height:757.682667pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x1d{left:10.297416pt;}
.x10{left:20.000541pt;}
.xe{left:25.667206pt;}
.xf{left:28.667212pt;}
.x1e{left:40.000541pt;}
.xd{left:60.000541pt;}
.x3{left:69.921875pt;}
.x8{left:73.921875pt;}
.xc{left:76.921875pt;}
.x1b{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x9{left:89.921875pt;}
.xa{left:95.588541pt;}
.xb{left:96.588538pt;}
.x1c{left:109.921874pt;}
.x1{left:124.718749pt;}
.x7{left:130.312500pt;}
.x6{left:142.921875pt;}
.x15{left:167.552080pt;}
.x2{left:246.812500pt;}
.x14{left:266.312500pt;}
.x17{left:316.921867pt;}
.x18{left:347.812500pt;}
.x16{left:370.812490pt;}
.x1a{left:504.699219pt;}
.x19{left:519.702148pt;}
.x11{left:523.698568pt;}
.x13{left:532.697265pt;}
.x12{left:543.695312pt;}
}




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