
    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_9a6a30e14943aea3451620d7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_e178d3e0a306edb3c9212966.woff')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_3a5ef42896e0aaf78e2594f8.woff')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_d4d3201e353f6b2d85fb2010.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914551;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_fd12898f488323e915cf8d7d.woff')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_e63673ffdf1bcab9e1116a8e.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_56c43eb4a57c38fb01d989a6.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2697abfaa916431652a154f9.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8e8a686886a7a274255d29b2.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6cfd522d70754742359a61fd.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a0501e9ce61c59b38c3f5205.woff')format("woff");}.ffb{font-family:ffb;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;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.872130px;}
.ls9{letter-spacing:0.923432px;}
.lsb{letter-spacing:1.333846px;}
.lsc{letter-spacing:1.385147px;}
.ls0{letter-spacing:1.458000px;}
.ls4{letter-spacing:1.476000px;}
.ls5{letter-spacing:2.538000px;}
.ls1{letter-spacing:4.212000px;}
.ls7{letter-spacing:87.356955px;}
.ls6{letter-spacing:368.117168px;}
.ls3{letter-spacing:839.069000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-48.001464px;}
.ws1{word-spacing:-21.129671px;}
.wsb{word-spacing:-16.416000px;}
.ws2{word-spacing:-14.958000px;}
.ws9{word-spacing:-14.210587px;}
.wsc{word-spacing:-13.344407px;}
.ws0{word-spacing:-11.633594px;}
.ws4{word-spacing:0.000000px;}
.ws8{word-spacing:19.025337px;}
.ws7{word-spacing:68.499612px;}
.ws6{word-spacing:272.192512px;}
.ws3{word-spacing:411.012000px;}
.wsa{word-spacing:798.747770px;}
._15{margin-left:-8.964436px;}
._2b{margin-left:-7.963224px;}
._1b{margin-left:-5.994000px;}
._d{margin-left:-3.890426px;}
._3{margin-left:-2.576786px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._11{width:3.625788px;}
._5{width:4.652960px;}
._9{width:5.952485px;}
._7{width:7.487965px;}
._8{width:8.775149px;}
._a{width:9.787180px;}
._b{width:11.256332px;}
._13{width:12.852000px;}
._12{width:16.146040px;}
._4{width:17.951868px;}
._6{width:19.584163px;}
._16{width:20.739980px;}
._18{width:25.015900px;}
._10{width:28.164313px;}
._c{width:29.624928px;}
._e{width:31.362170px;}
._f{width:32.475718px;}
._17{width:35.350249px;}
._1e{width:40.528025px;}
._14{width:42.579588px;}
._1c{width:61.884632px;}
._1d{width:66.173660px;}
._28{width:75.360249px;}
._20{width:79.881215px;}
._19{width:89.990827px;}
._24{width:109.852210px;}
._21{width:111.185000px;}
._2a{width:115.685464px;}
._25{width:120.598972px;}
._29{width:125.317332px;}
._23{width:127.144444px;}
._26{width:131.959400px;}
._22{width:134.794477px;}
._27{width:155.887403px;}
._1f{width:180.467709px;}
._2c{width:184.931896px;}
._1a{width:211.931896px;}
.fc3{color:rgb(10,84,44);}
.fc1{color:rgb(27,138,174);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs7{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y153{bottom:4.528541px;}
.y152{bottom:22.487530px;}
.y151{bottom:40.440657px;}
.y25{bottom:46.734370px;}
.y150{bottom:58.393782px;}
.y24{bottom:59.015622px;}
.y23{bottom:71.302734px;}
.y14f{bottom:76.352764px;}
.y67{bottom:85.975500px;}
.ya3{bottom:89.367101px;}
.y77{bottom:90.738265px;}
.y14e{bottom:94.305891px;}
.yb5{bottom:98.074214px;}
.y5d{bottom:98.642565px;}
.y124{bottom:107.390614px;}
.ya2{bottom:108.263591px;}
.y125{bottom:109.032000px;}
.y76{bottom:109.640615px;}
.y14d{bottom:112.259009px;}
.ye0{bottom:114.726530px;}
.yb4{bottom:116.976558px;}
.y5c{bottom:117.544914px;}
.y123{bottom:125.343741px;}
.y75{bottom:128.537104px;}
.y109{bottom:129.732368px;}
.y14c{bottom:130.212137px;}
.y21{bottom:131.853435px;}
.ydf{bottom:133.623020px;}
.y49{bottom:135.398330px;}
.yb3{bottom:135.878907px;}
.y5b{bottom:136.447263px;}
.ya1{bottom:140.665940px;}
.y122{bottom:143.302730px;}
.y74{bottom:147.439447px;}
.y14b{bottom:148.171125px;}
.y108{bottom:148.628858px;}
.y20{bottom:150.749925px;}
.yde{bottom:152.525369px;}
.y48{bottom:154.300679px;}
.yb2{bottom:154.775385px;}
.ya0{bottom:159.568289px;}
.y121{bottom:161.255857px;}
.y14a{bottom:166.124243px;}
.y73{bottom:166.341746px;}
.y107{bottom:167.531207px;}
.y1f{bottom:169.652274px;}
.y17f{bottom:170.941407px;}
.ydd{bottom:171.427718px;}
.y47{bottom:173.203028px;}
.yb1{bottom:173.677734px;}
.y65{bottom:178.441387px;}
.y9f{bottom:178.464779px;}
.y120{bottom:179.208984px;}
.y149{bottom:184.077371px;}
.y72{bottom:185.238235px;}
.y106{bottom:186.427697px;}
.y1e{bottom:188.548764px;}
.y17e{bottom:189.843728px;}
.ydc{bottom:190.324208px;}
.y46{bottom:192.099518px;}
.yb0{bottom:192.574160px;}
.y64{bottom:195.240219px;}
.y11f{bottom:197.162093px;}
.y9e{bottom:197.367128px;}
.y148{bottom:202.036359px;}
.y71{bottom:204.140585px;}
.y105{bottom:205.330046px;}
.y1d{bottom:207.451113px;}
.y17d{bottom:208.746076px;}
.ydb{bottom:209.226557px;}
.y45{bottom:211.001867px;}
.yaf{bottom:211.476508px;}
.y63{bottom:212.039051px;}
.y11e{bottom:215.121081px;}
.y147{bottom:219.989484px;}
.y70{bottom:223.037075px;}
.y104{bottom:224.232395px;}
.y1c{bottom:226.353462px;}
.y17c{bottom:227.642566px;}
.yda{bottom:228.123042px;}
.y62{bottom:228.837884px;}
.y9d{bottom:229.763618px;}
.y44{bottom:229.898357px;}
.yae{bottom:230.378858px;}
.y11d{bottom:233.074209px;}
.y146{bottom:237.942605px;}
.y16b{bottom:237.948797px;}
.y6f{bottom:241.939423px;}
.y103{bottom:243.128885px;}
.y1b{bottom:245.249952px;}
.y61{bottom:245.642572px;}
.y17b{bottom:246.544916px;}
.yd9{bottom:247.025385px;}
.y9c{bottom:248.665967px;}
.y43{bottom:248.800706px;}
.yad{bottom:249.275348px;}
.y11c{bottom:251.027336px;}
.y145{bottom:255.901593px;}
.y16a{bottom:255.901922px;}
.y6e{bottom:260.841773px;}
.y60{bottom:262.441405px;}
.y17a{bottom:263.537109px;}
.y1a{bottom:264.152301px;}
.yd8{bottom:265.927718px;}
.y9b{bottom:267.568316px;}
.yac{bottom:268.177696px;}
.y11b{bottom:268.986324px;}
.y144{bottom:273.854693px;}
.y169{bottom:273.855044px;}
.y102{bottom:275.531234px;}
.y5f{bottom:279.240237px;}
.y42{bottom:281.203055px;}
.y19{bottom:283.048791px;}
.yd7{bottom:284.824208px;}
.y9a{bottom:286.464806px;}
.y11a{bottom:286.939451px;}
.yab{bottom:287.074186px;}
.y154{bottom:288.580500px;}
.y143{bottom:291.807821px;}
.y168{bottom:291.814032px;}
.y179{bottom:293.109375px;}
.y101{bottom:294.427724px;}
.y66{bottom:299.414062px;}
.y41{bottom:300.099545px;}
.y5e{bottom:300.539062px;}
.y18{bottom:301.951140px;}
.y7b{bottom:302.835931px;}
.yd6{bottom:303.726557px;}
.y119{bottom:304.892579px;}
.y99{bottom:305.367155px;}
.yaa{bottom:305.976535px;}
.y142{bottom:309.766809px;}
.y167{bottom:309.767157px;}
.y178{bottom:311.068350px;}
.y100{bottom:313.330073px;}
.y40{bottom:319.001894px;}
.y7a{bottom:319.634764px;}
.y17{bottom:320.853489px;}
.yd5{bottom:322.622993px;}
.y118{bottom:322.851562px;}
.y98{bottom:324.263645px;}
.ya9{bottom:324.878884px;}
.y141{bottom:327.719936px;}
.y166{bottom:327.720278px;}
.y177{bottom:329.021477px;}
.y79{bottom:336.433596px;}
.y3f{bottom:337.898384px;}
.y16{bottom:339.749979px;}
.y117{bottom:340.804685px;}
.yd4{bottom:341.525342px;}
.y97{bottom:343.165994px;}
.ya8{bottom:343.775374px;}
.y140{bottom:345.673063px;}
.y165{bottom:345.679266px;}
.yff{bottom:345.732417px;}
.y176{bottom:346.974605px;}
.y7c{bottom:356.607422px;}
.y3e{bottom:356.800733px;}
.y78{bottom:357.732422px;}
.y15{bottom:358.652328px;}
.y116{bottom:358.757813px;}
.yd3{bottom:360.427691px;}
.y96{bottom:362.068343px;}
.ya7{bottom:362.677723px;}
.y13f{bottom:363.632052px;}
.y164{bottom:363.632387px;}
.yfe{bottom:364.628895px;}
.y175{bottom:364.933593px;}
.y3d{bottom:375.703082px;}
.y115{bottom:376.716796px;}
.y14{bottom:377.548818px;}
.yd2{bottom:379.324181px;}
.y95{bottom:380.964833px;}
.ya6{bottom:381.574214px;}
.y13e{bottom:381.585179px;}
.y163{bottom:381.585514px;}
.y174{bottom:382.886713px;}
.yfd{bottom:383.531244px;}
.y3c{bottom:394.599572px;}
.y114{bottom:394.669914px;}
.y13{bottom:396.451167px;}
.yd1{bottom:398.226530px;}
.y13d{bottom:399.538306px;}
.y162{bottom:399.538641px;}
.y94{bottom:399.867182px;}
.y173{bottom:400.839840px;}
.yfc{bottom:402.427707px;}
.y113{bottom:412.623041px;}
.y3b{bottom:413.501921px;}
.ya5{bottom:413.976558px;}
.y12{bottom:415.353516px;}
.yd0{bottom:417.123020px;}
.y13c{bottom:417.497294px;}
.y161{bottom:417.497625px;}
.y93{bottom:418.763672px;}
.y172{bottom:418.798828px;}
.yfb{bottom:421.330056px;}
.y112{bottom:430.582030px;}
.y3a{bottom:432.398411px;}
.ya4{bottom:432.878896px;}
.y13b{bottom:435.450422px;}
.y160{bottom:435.450743px;}
.ycf{bottom:436.025369px;}
.y171{bottom:436.751954px;}
.yfa{bottom:440.232405px;}
.y11{bottom:446.003907px;}
.y111{bottom:448.535157px;}
.y92{bottom:449.419922px;}
.y13a{bottom:453.403547px;}
.y15f{bottom:453.403871px;}
.y170{bottom:454.705074px;}
.yce{bottom:454.927718px;}
.yf9{bottom:459.128895px;}
.y39{bottom:464.800760px;}
.y139{bottom:471.362528px;}
.y15e{bottom:471.362859px;}
.y16f{bottom:472.664062px;}
.ycd{bottom:473.824208px;}
.yba{bottom:474.873039px;}
.yf8{bottom:478.031244px;}
.y38{bottom:483.703109px;}
.y110{bottom:486.041016px;}
.y138{bottom:489.315655px;}
.y15d{bottom:489.315984px;}
.y16e{bottom:490.617188px;}
.yb9{bottom:491.671872px;}
.ycc{bottom:492.726557px;}
.yf7{bottom:496.927692px;}
.y37{bottom:502.599599px;}
.y91{bottom:505.031223px;}
.y137{bottom:507.268782px;}
.y15c{bottom:507.269097px;}
.yb8{bottom:508.470704px;}
.y16d{bottom:508.570308px;}
.ycb{bottom:511.623047px;}
.y10{bottom:515.103516px;}
.yf6{bottom:515.830041px;}
.y36{bottom:521.501948px;}
.y90{bottom:523.927713px;}
.y136{bottom:525.227764px;}
.y15b{bottom:525.228086px;}
.yb7{bottom:525.269536px;}
.y16c{bottom:526.529297px;}
.yf{bottom:531.908190px;}
.yf5{bottom:534.732390px;}
.y10f{bottom:539.742188px;}
.y35{bottom:540.398427px;}
.yca{bottom:542.279297px;}
.y8f{bottom:542.830062px;}
.y135{bottom:543.180891px;}
.y15a{bottom:543.181213px;}
.ybb{bottom:545.449218px;}
.yb6{bottom:546.574218px;}
.ye{bottom:548.707017px;}
.yf4{bottom:553.628880px;}
.y34{bottom:559.300776px;}
.y134{bottom:561.134016px;}
.y159{bottom:561.134340px;}
.y8e{bottom:561.732411px;}
.y10e{bottom:568.488282px;}
.yd{bottom:570.005850px;}
.yf3{bottom:572.531229px;}
.y33{bottom:578.203098px;}
.y133{bottom:579.087134px;}
.y158{bottom:579.093328px;}
.y8d{bottom:580.628901px;}
.yc{bottom:591.304683px;}
.y132{bottom:597.046123px;}
.y157{bottom:597.046447px;}
.y32{bottom:597.099588px;}
.y8c{bottom:599.531229px;}
.yc9{bottom:601.330078px;}
.yf2{bottom:604.927719px;}
.yb{bottom:612.603518px;}
.y131{bottom:614.999250px;}
.y156{bottom:614.999574px;}
.y5a{bottom:615.867150px;}
.y31{bottom:616.001937px;}
.yc8{bottom:616.031246px;}
.y8b{bottom:618.427719px;}
.yf1{bottom:623.830068px;}
.y10d{bottom:624.099599px;}
.ya{bottom:629.408204px;}
.y130{bottom:632.952375px;}
.y155{bottom:632.958562px;}
.y59{bottom:634.763640px;}
.y30{bottom:634.898427px;}
.y8a{bottom:637.330068px;}
.yc7{bottom:638.607422px;}
.yf0{bottom:642.732417px;}
.y10c{bottom:643.001948px;}
.y12f{bottom:650.911357px;}
.yc6{bottom:653.302731px;}
.y58{bottom:653.665989px;}
.y2f{bottom:653.800776px;}
.y89{bottom:656.232417px;}
.yef{bottom:661.628891px;}
.y10b{bottom:661.898438px;}
.y12e{bottom:668.864484px;}
.y57{bottom:672.568338px;}
.y2e{bottom:672.703114px;}
.y88{bottom:675.128901px;}
.yc5{bottom:675.878908px;}
.y9{bottom:679.658207px;}
.yee{bottom:680.531240px;}
.y12d{bottom:686.817609px;}
.yc4{bottom:690.580075px;}
.y56{bottom:691.464828px;}
.y2d{bottom:691.599604px;}
.y10a{bottom:692.554688px;}
.y8{bottom:692.888671px;}
.y87{bottom:694.031185px;}
.yed{bottom:699.427730px;}
.y12c{bottom:704.776584px;}
.y55{bottom:710.367177px;}
.y2c{bottom:710.501953px;}
.y86{bottom:712.927676px;}
.yc3{bottom:713.156252px;}
.y7{bottom:713.847657px;}
.yec{bottom:718.330045px;}
.y22{bottom:718.347657px;}
.y12b{bottom:722.729711px;}
.yc2{bottom:727.857419px;}
.y54{bottom:729.263667px;}
.y85{bottom:731.830025px;}
.yeb{bottom:737.232395px;}
.y12a{bottom:740.682838px;}
.y2b{bottom:741.158204px;}
.y53{bottom:748.165977px;}
.yc1{bottom:750.427737px;}
.y84{bottom:750.732373px;}
.yea{bottom:756.128884px;}
.y6{bottom:756.158206px;}
.y129{bottom:758.641826px;}
.yc0{bottom:765.128905px;}
.y52{bottom:767.068326px;}
.y83{bottom:769.628864px;}
.ye9{bottom:775.031233px;}
.y128{bottom:776.594954px;}
.y51{bottom:785.964816px;}
.ybf{bottom:787.705081px;}
.y82{bottom:788.531213px;}
.y5{bottom:793.710931px;}
.ye8{bottom:793.927723px;}
.y127{bottom:794.548074px;}
.y2a{bottom:796.763667px;}
.ybe{bottom:802.406249px;}
.y50{bottom:804.867165px;}
.y81{bottom:807.427703px;}
.y126{bottom:812.507063px;}
.ye7{bottom:812.830072px;}
.y29{bottom:815.666016px;}
.y4f{bottom:823.763655px;}
.ybd{bottom:824.982425px;}
.y80{bottom:826.330052px;}
.y6d{bottom:826.330056px;}
.y4{bottom:831.269532px;}
.ye6{bottom:831.732401px;}
.y68{bottom:834.854579px;}
.ybc{bottom:839.677734px;}
.y4e{bottom:842.666004px;}
.y7f{bottom:845.232401px;}
.y6c{bottom:845.232405px;}
.y28{bottom:846.322266px;}
.ye5{bottom:850.628891px;}
.y4d{bottom:861.568353px;}
.y7e{bottom:864.128891px;}
.y6b{bottom:864.128895px;}
.ye4{bottom:869.531239px;}
.ye3{bottom:876.287108px;}
.y4c{bottom:880.464843px;}
.y7d{bottom:883.031239px;}
.y6a{bottom:883.031244px;}
.ye2{bottom:893.085940px;}
.y3{bottom:899.378907px;}
.y27{bottom:901.927730px;}
.y69{bottom:901.927734px;}
.y4b{bottom:911.121093px;}
.ye1{bottom:914.384766px;}
.y26{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y4a{bottom:974.730470px;}
.h9{height:28.048904px;}
.h15{height:30.063405px;}
.h14{height:30.576083px;}
.he{height:31.993163px;}
.h8{height:32.273438px;}
.h6{height:33.888685px;}
.h18{height:35.391704px;}
.hb{height:35.617086px;}
.h1{height:37.651031px;}
.h5{height:43.032562px;}
.h1b{height:45.991224px;}
.h1c{height:45.991288px;}
.h1e{height:45.991323px;}
.h2{height:48.410156px;}
.h17{height:48.410222px;}
.h12{height:48.410240px;}
.h20{height:48.410246px;}
.ha{height:48.410264px;}
.h19{height:48.410288px;}
.hd{height:48.410306px;}
.hc{height:48.410312px;}
.h1a{height:48.410324px;}
.h10{height:48.410360px;}
.h16{height:48.410372px;}
.h13{height:48.410390px;}
.h11{height:48.410414px;}
.h7{height:52.443023px;}
.h3{height:68.582368px;}
.h4{height:70.420196px;}
.h1f{height:646.383000px;}
.h1d{height:825.931500px;}
.hf{height:848.988000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x13{left:11.584593px;}
.x14{left:45.000609px;}
.x15{left:67.412113px;}
.x3{left:78.662109px;}
.x9{left:83.162109px;}
.x7{left:86.537109px;}
.x11{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x16{left:101.162113px;}
.x12{left:123.662109px;}
.x8{left:138.287109px;}
.x1{left:140.308593px;}
.x6{left:154.037109px;}
.x10{left:217.488253px;}
.xa{left:260.238289px;}
.x2{left:300.164062px;}
.xb{left:304.916028px;}
.xc{left:355.429704px;}
.xd{left:404.085953px;}
.xe{left:493.863294px;}
.xf{left:576.287121px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.775227pt;}
.ls9{letter-spacing:0.820828pt;}
.lsb{letter-spacing:1.185641pt;}
.lsc{letter-spacing:1.231242pt;}
.ls0{letter-spacing:1.296000pt;}
.ls4{letter-spacing:1.312000pt;}
.ls5{letter-spacing:2.256000pt;}
.ls1{letter-spacing:3.744000pt;}
.ls7{letter-spacing:77.650627pt;}
.ls6{letter-spacing:327.215260pt;}
.ls3{letter-spacing:745.839111pt;}
.ws5{word-spacing:-42.667968pt;}
.ws1{word-spacing:-18.781930pt;}
.wsb{word-spacing:-14.592000pt;}
.ws2{word-spacing:-13.296000pt;}
.ws9{word-spacing:-12.631633pt;}
.wsc{word-spacing:-11.861695pt;}
.ws0{word-spacing:-10.340973pt;}
.ws4{word-spacing:0.000000pt;}
.ws8{word-spacing:16.911410pt;}
.ws7{word-spacing:60.888544pt;}
.ws6{word-spacing:241.948899pt;}
.ws3{word-spacing:365.344000pt;}
.wsa{word-spacing:709.998018pt;}
._15{margin-left:-7.968388pt;}
._2b{margin-left:-7.078421pt;}
._1b{margin-left:-5.328000pt;}
._d{margin-left:-3.458156pt;}
._3{margin-left:-2.290477pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._11{width:3.222922pt;}
._5{width:4.135965pt;}
._9{width:5.291097pt;}
._7{width:6.655969pt;}
._8{width:7.800133pt;}
._a{width:8.699715pt;}
._b{width:10.005629pt;}
._13{width:11.424000pt;}
._12{width:14.352035pt;}
._4{width:15.957216pt;}
._6{width:17.408144pt;}
._16{width:18.435537pt;}
._18{width:22.236355pt;}
._10{width:25.034945pt;}
._c{width:26.333269pt;}
._e{width:27.877484pt;}
._f{width:28.867305pt;}
._17{width:31.422444pt;}
._1e{width:36.024911pt;}
._14{width:37.848523pt;}
._1c{width:55.008562pt;}
._1d{width:58.821031pt;}
._28{width:66.986888pt;}
._20{width:71.005525pt;}
._19{width:79.991846pt;}
._24{width:97.646409pt;}
._21{width:98.831111pt;}
._2a{width:102.831524pt;}
._25{width:107.199086pt;}
._29{width:111.393184pt;}
._23{width:113.017284pt;}
._26{width:117.297245pt;}
._22{width:119.817313pt;}
._27{width:138.566580pt;}
._1f{width:160.415742pt;}
._2c{width:164.383908pt;}
._1a{width:188.383908pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs7{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y153{bottom:4.025370pt;}
.y152{bottom:19.988915pt;}
.y151{bottom:35.947251pt;}
.y25{bottom:41.541662pt;}
.y150{bottom:51.905584pt;}
.y24{bottom:52.458331pt;}
.y23{bottom:63.380208pt;}
.y14f{bottom:67.869123pt;}
.y67{bottom:76.422667pt;}
.ya3{bottom:79.437423pt;}
.y77{bottom:80.656236pt;}
.y14e{bottom:83.827459pt;}
.yb5{bottom:87.177079pt;}
.y5d{bottom:87.682280pt;}
.y124{bottom:95.458324pt;}
.ya2{bottom:96.234303pt;}
.y125{bottom:96.917333pt;}
.y76{bottom:97.458324pt;}
.y14d{bottom:99.785786pt;}
.ye0{bottom:101.979137pt;}
.yb4{bottom:103.979163pt;}
.y5c{bottom:104.484368pt;}
.y123{bottom:111.416659pt;}
.y75{bottom:114.255204pt;}
.y109{bottom:115.317660pt;}
.y14c{bottom:115.744121pt;}
.y21{bottom:117.203053pt;}
.ydf{bottom:118.776017pt;}
.y49{bottom:120.354071pt;}
.yb3{bottom:120.781251pt;}
.y5b{bottom:121.286456pt;}
.ya1{bottom:125.036391pt;}
.y122{bottom:127.380204pt;}
.y74{bottom:131.057287pt;}
.y14b{bottom:131.707667pt;}
.y108{bottom:132.114540pt;}
.y20{bottom:133.999933pt;}
.yde{bottom:135.578105pt;}
.y48{bottom:137.156159pt;}
.yb2{bottom:137.578120pt;}
.ya0{bottom:141.838479pt;}
.y121{bottom:143.338539pt;}
.y14a{bottom:147.665994pt;}
.y73{bottom:147.859329pt;}
.y107{bottom:148.916628pt;}
.y1f{bottom:150.802021pt;}
.y17f{bottom:151.947917pt;}
.ydd{bottom:152.380193pt;}
.y47{bottom:153.958247pt;}
.yb1{bottom:154.380208pt;}
.y65{bottom:158.614566pt;}
.y9f{bottom:158.635359pt;}
.y120{bottom:159.296875pt;}
.y149{bottom:163.624329pt;}
.y72{bottom:164.656209pt;}
.y106{bottom:165.713508pt;}
.y1e{bottom:167.598901pt;}
.y17e{bottom:168.749980pt;}
.ydc{bottom:169.177073pt;}
.y46{bottom:170.755127pt;}
.yb0{bottom:171.177031pt;}
.y64{bottom:173.546861pt;}
.y11f{bottom:175.255194pt;}
.y9e{bottom:175.437447pt;}
.y148{bottom:179.587875pt;}
.y71{bottom:181.458297pt;}
.y105{bottom:182.515596pt;}
.y1d{bottom:184.400989pt;}
.y17d{bottom:185.552068pt;}
.ydb{bottom:185.979161pt;}
.y45{bottom:187.557215pt;}
.yaf{bottom:187.979119pt;}
.y63{bottom:188.479157pt;}
.y11e{bottom:191.218739pt;}
.y147{bottom:195.546208pt;}
.y70{bottom:198.255177pt;}
.y104{bottom:199.317684pt;}
.y1c{bottom:201.203077pt;}
.y17c{bottom:202.348948pt;}
.yda{bottom:202.776037pt;}
.y62{bottom:203.411452pt;}
.y9d{bottom:204.234327pt;}
.y44{bottom:204.354095pt;}
.yae{bottom:204.781207pt;}
.y11d{bottom:207.177074pt;}
.y146{bottom:211.504537pt;}
.y16b{bottom:211.510041pt;}
.y6f{bottom:215.057265pt;}
.y103{bottom:216.114564pt;}
.y1b{bottom:217.999957pt;}
.y61{bottom:218.348953pt;}
.y17b{bottom:219.151036pt;}
.yd9{bottom:219.578120pt;}
.y9c{bottom:221.036415pt;}
.y43{bottom:221.156183pt;}
.yad{bottom:221.578087pt;}
.y11c{bottom:223.135410pt;}
.y145{bottom:227.468083pt;}
.y16a{bottom:227.468375pt;}
.y6e{bottom:231.859353pt;}
.y60{bottom:233.281248pt;}
.y17a{bottom:234.255208pt;}
.y1a{bottom:234.802045pt;}
.yd8{bottom:236.380193pt;}
.y9b{bottom:237.838503pt;}
.yac{bottom:238.380175pt;}
.y11b{bottom:239.098955pt;}
.y144{bottom:243.426394pt;}
.y169{bottom:243.426705pt;}
.y102{bottom:244.916652pt;}
.y5f{bottom:248.213544pt;}
.y42{bottom:249.958271pt;}
.y19{bottom:251.598925pt;}
.yd7{bottom:253.177073pt;}
.y9a{bottom:254.635383pt;}
.y11a{bottom:255.057290pt;}
.yab{bottom:255.177055pt;}
.y154{bottom:256.516000pt;}
.y143{bottom:259.384729pt;}
.y168{bottom:259.390251pt;}
.y179{bottom:260.541667pt;}
.y101{bottom:261.713532pt;}
.y66{bottom:266.145833pt;}
.y41{bottom:266.755151pt;}
.y5e{bottom:267.145833pt;}
.y18{bottom:268.401013pt;}
.y7b{bottom:269.187494pt;}
.yd6{bottom:269.979161pt;}
.y119{bottom:271.015625pt;}
.y99{bottom:271.437471pt;}
.yaa{bottom:271.979143pt;}
.y142{bottom:275.348275pt;}
.y167{bottom:275.348584pt;}
.y178{bottom:276.505200pt;}
.y100{bottom:278.515620pt;}
.y40{bottom:283.557239pt;}
.y7a{bottom:284.119790pt;}
.y17{bottom:285.203101pt;}
.yd5{bottom:286.775993pt;}
.y118{bottom:286.979167pt;}
.y98{bottom:288.234351pt;}
.ya9{bottom:288.781231pt;}
.y141{bottom:291.306610pt;}
.y166{bottom:291.306913pt;}
.y177{bottom:292.463536pt;}
.y79{bottom:299.052085pt;}
.y3f{bottom:300.354119pt;}
.y16{bottom:301.999981pt;}
.y117{bottom:302.937498pt;}
.yd4{bottom:303.578081pt;}
.y97{bottom:305.036439pt;}
.ya8{bottom:305.578111pt;}
.y140{bottom:307.264945pt;}
.y165{bottom:307.270459pt;}
.yff{bottom:307.317704pt;}
.y176{bottom:308.421871pt;}
.y7c{bottom:316.984375pt;}
.y3e{bottom:317.156207pt;}
.y78{bottom:317.984375pt;}
.y15{bottom:318.802069pt;}
.y116{bottom:318.895833pt;}
.yd3{bottom:320.380169pt;}
.y96{bottom:321.838527pt;}
.ya7{bottom:322.380199pt;}
.y13f{bottom:323.228490pt;}
.y164{bottom:323.228788pt;}
.yfe{bottom:324.114573pt;}
.y175{bottom:324.385416pt;}
.y3d{bottom:333.958295pt;}
.y115{bottom:334.859375pt;}
.y14{bottom:335.598949pt;}
.yd2{bottom:337.177049pt;}
.y95{bottom:338.635407pt;}
.ya6{bottom:339.177079pt;}
.y13e{bottom:339.186826pt;}
.y163{bottom:339.187123pt;}
.y174{bottom:340.343745pt;}
.yfd{bottom:340.916661pt;}
.y3c{bottom:350.755175pt;}
.y114{bottom:350.817702pt;}
.y13{bottom:352.401037pt;}
.yd1{bottom:353.979137pt;}
.y13d{bottom:355.145161pt;}
.y162{bottom:355.145459pt;}
.y94{bottom:355.437495pt;}
.y173{bottom:356.302080pt;}
.yfc{bottom:357.713517pt;}
.y113{bottom:366.776037pt;}
.y3b{bottom:367.557263pt;}
.ya5{bottom:367.979163pt;}
.y12{bottom:369.203125pt;}
.yd0{bottom:370.776017pt;}
.y13c{bottom:371.108706pt;}
.y161{bottom:371.109000pt;}
.y93{bottom:372.234375pt;}
.y172{bottom:372.265625pt;}
.yfb{bottom:374.515605pt;}
.y112{bottom:382.739582pt;}
.y3a{bottom:384.354143pt;}
.ya4{bottom:384.781241pt;}
.y13b{bottom:387.067041pt;}
.y160{bottom:387.067328pt;}
.ycf{bottom:387.578105pt;}
.y171{bottom:388.223959pt;}
.yfa{bottom:391.317693pt;}
.y11{bottom:396.447917pt;}
.y111{bottom:398.697917pt;}
.y92{bottom:399.484375pt;}
.y13a{bottom:403.025375pt;}
.y15f{bottom:403.025663pt;}
.y170{bottom:404.182288pt;}
.yce{bottom:404.380193pt;}
.yf9{bottom:408.114573pt;}
.y39{bottom:413.156231pt;}
.y139{bottom:418.988913pt;}
.y15e{bottom:418.989208pt;}
.y16f{bottom:420.145833pt;}
.ycd{bottom:421.177073pt;}
.yba{bottom:422.109368pt;}
.yf8{bottom:424.916661pt;}
.y38{bottom:429.958319pt;}
.y110{bottom:432.036459pt;}
.y138{bottom:434.947249pt;}
.y15d{bottom:434.947541pt;}
.y16e{bottom:436.104167pt;}
.yb9{bottom:437.041664pt;}
.ycc{bottom:437.979161pt;}
.yf7{bottom:441.713504pt;}
.y37{bottom:446.755199pt;}
.y91{bottom:448.916643pt;}
.y137{bottom:450.905584pt;}
.y15c{bottom:450.905864pt;}
.yb8{bottom:451.973959pt;}
.y16d{bottom:452.062496pt;}
.ycb{bottom:454.776041pt;}
.y10{bottom:457.869792pt;}
.yf6{bottom:458.515592pt;}
.y36{bottom:463.557287pt;}
.y90{bottom:465.713523pt;}
.y136{bottom:466.869123pt;}
.y15b{bottom:466.869410pt;}
.yb7{bottom:466.906254pt;}
.y16c{bottom:468.026041pt;}
.yf{bottom:472.807280pt;}
.yf5{bottom:475.317680pt;}
.y10f{bottom:479.770833pt;}
.y35{bottom:480.354157pt;}
.yca{bottom:482.026041pt;}
.y8f{bottom:482.515611pt;}
.y135{bottom:482.827459pt;}
.y15a{bottom:482.827745pt;}
.ybb{bottom:484.843749pt;}
.yb6{bottom:485.843749pt;}
.ye{bottom:487.739571pt;}
.yf4{bottom:492.114560pt;}
.y34{bottom:497.156245pt;}
.y134{bottom:498.785792pt;}
.y159{bottom:498.786080pt;}
.y8e{bottom:499.317699pt;}
.y10e{bottom:505.322917pt;}
.yd{bottom:506.671867pt;}
.yf3{bottom:508.916648pt;}
.y33{bottom:513.958309pt;}
.y133{bottom:514.744120pt;}
.y158{bottom:514.749625pt;}
.y8d{bottom:516.114579pt;}
.yc{bottom:525.604163pt;}
.y132{bottom:530.707665pt;}
.y157{bottom:530.707953pt;}
.y32{bottom:530.755189pt;}
.y8c{bottom:532.916648pt;}
.yc9{bottom:534.515625pt;}
.yf2{bottom:537.713528pt;}
.yb{bottom:544.536461pt;}
.y131{bottom:546.666000pt;}
.y156{bottom:546.666288pt;}
.y5a{bottom:547.437467pt;}
.y31{bottom:547.557277pt;}
.yc8{bottom:547.583330pt;}
.y8b{bottom:549.713528pt;}
.yf1{bottom:554.515616pt;}
.y10d{bottom:554.755199pt;}
.ya{bottom:559.473959pt;}
.y130{bottom:562.624333pt;}
.y155{bottom:562.629833pt;}
.y59{bottom:564.234347pt;}
.y30{bottom:564.354157pt;}
.y8a{bottom:566.515616pt;}
.yc7{bottom:567.651042pt;}
.yf0{bottom:571.317704pt;}
.y10c{bottom:571.557287pt;}
.y12f{bottom:578.587873pt;}
.yc6{bottom:580.713539pt;}
.y58{bottom:581.036435pt;}
.y2f{bottom:581.156245pt;}
.y89{bottom:583.317704pt;}
.yef{bottom:588.114569pt;}
.y10b{bottom:588.354167pt;}
.y12e{bottom:594.546208pt;}
.y57{bottom:597.838523pt;}
.y2e{bottom:597.958324pt;}
.y88{bottom:600.114579pt;}
.yc5{bottom:600.781251pt;}
.y9{bottom:604.140629pt;}
.yee{bottom:604.916657pt;}
.y12d{bottom:610.504541pt;}
.yc4{bottom:613.848956pt;}
.y56{bottom:614.635403pt;}
.y2d{bottom:614.755204pt;}
.y10a{bottom:615.604167pt;}
.y8{bottom:615.901041pt;}
.y87{bottom:616.916609pt;}
.yed{bottom:621.713537pt;}
.y12c{bottom:626.468074pt;}
.y55{bottom:631.437491pt;}
.y2c{bottom:631.557292pt;}
.y86{bottom:633.713489pt;}
.yc3{bottom:633.916668pt;}
.y7{bottom:634.531251pt;}
.yec{bottom:638.515596pt;}
.y22{bottom:638.531251pt;}
.y12b{bottom:642.426410pt;}
.yc2{bottom:646.984373pt;}
.y54{bottom:648.234371pt;}
.y85{bottom:650.515577pt;}
.yeb{bottom:655.317684pt;}
.y12a{bottom:658.384745pt;}
.y2b{bottom:658.807292pt;}
.y53{bottom:665.036424pt;}
.yc1{bottom:667.046877pt;}
.y84{bottom:667.317665pt;}
.yea{bottom:672.114564pt;}
.y6{bottom:672.140627pt;}
.y129{bottom:674.348290pt;}
.yc0{bottom:680.114582pt;}
.y52{bottom:681.838512pt;}
.y83{bottom:684.114545pt;}
.ye9{bottom:688.916652pt;}
.y128{bottom:690.306625pt;}
.y51{bottom:698.635392pt;}
.ybf{bottom:700.182294pt;}
.y82{bottom:700.916633pt;}
.y5{bottom:705.520828pt;}
.ye8{bottom:705.713532pt;}
.y127{bottom:706.264955pt;}
.y2a{bottom:708.234371pt;}
.ybe{bottom:713.249999pt;}
.y50{bottom:715.437480pt;}
.y81{bottom:717.713513pt;}
.y126{bottom:722.228500pt;}
.ye7{bottom:722.515620pt;}
.y29{bottom:725.036459pt;}
.y4f{bottom:732.234360pt;}
.ybd{bottom:733.317711pt;}
.y80{bottom:734.515601pt;}
.y6d{bottom:734.515605pt;}
.y4{bottom:738.906251pt;}
.ye6{bottom:739.317689pt;}
.y68{bottom:742.092959pt;}
.ybc{bottom:746.380208pt;}
.y4e{bottom:749.036448pt;}
.y7f{bottom:751.317689pt;}
.y6c{bottom:751.317693pt;}
.y28{bottom:752.286459pt;}
.ye5{bottom:756.114569pt;}
.y4d{bottom:765.838536pt;}
.y7e{bottom:768.114569pt;}
.y6b{bottom:768.114573pt;}
.ye4{bottom:772.916657pt;}
.ye3{bottom:778.921874pt;}
.y4c{bottom:782.635416pt;}
.y7d{bottom:784.916657pt;}
.y6a{bottom:784.916661pt;}
.ye2{bottom:793.854169pt;}
.y3{bottom:799.447917pt;}
.y27{bottom:801.713537pt;}
.y69{bottom:801.713541pt;}
.y4b{bottom:809.885416pt;}
.ye1{bottom:812.786459pt;}
.y26{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y4a{bottom:866.427084pt;}
.h9{height:24.932359pt;}
.h15{height:26.723027pt;}
.h14{height:27.178740pt;}
.he{height:28.438367pt;}
.h8{height:28.687500pt;}
.h6{height:30.123276pt;}
.h18{height:31.459293pt;}
.hb{height:31.659632pt;}
.h1{height:33.467583pt;}
.h5{height:38.251167pt;}
.h1b{height:40.881088pt;}
.h1c{height:40.881145pt;}
.h1e{height:40.881176pt;}
.h2{height:43.031250pt;}
.h17{height:43.031309pt;}
.h12{height:43.031325pt;}
.h20{height:43.031330pt;}
.ha{height:43.031346pt;}
.h19{height:43.031367pt;}
.hd{height:43.031383pt;}
.hc{height:43.031389pt;}
.h1a{height:43.031399pt;}
.h10{height:43.031431pt;}
.h16{height:43.031442pt;}
.h13{height:43.031458pt;}
.h11{height:43.031479pt;}
.h7{height:46.616020pt;}
.h3{height:60.962105pt;}
.h4{height:62.595730pt;}
.h1f{height:574.562667pt;}
.h1d{height:734.161333pt;}
.hf{height:754.656000pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x13{left:10.297416pt;}
.x14{left:40.000541pt;}
.x15{left:59.921879pt;}
.x3{left:69.921875pt;}
.x9{left:73.921875pt;}
.x7{left:76.921875pt;}
.x11{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x16{left:89.921879pt;}
.x12{left:109.921874pt;}
.x8{left:122.921875pt;}
.x1{left:124.718749pt;}
.x6{left:136.921875pt;}
.x10{left:193.322891pt;}
.xa{left:231.322924pt;}
.x2{left:266.812500pt;}
.xb{left:271.036469pt;}
.xc{left:315.937514pt;}
.xd{left:359.187513pt;}
.xe{left:438.989594pt;}
.xf{left:512.255219pt;}
}




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