
    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_be0072f4f5afcd87e9e6bc29.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.008789;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_986fd346c375a30b363e42ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.862793;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_98143b9c1651a416e028ec56.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_474c7228851a5ae30cf3ebfa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_69e7b11d31c8d07bf3539383.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.810059;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_9707d4fa1b1d263d24bc8d06.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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;}
.v1{vertical-align:28.389024px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:16.277343px;}
.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;}
}
.wsa{word-spacing:-36.000001px;}
.ws26{word-spacing:-31.499999px;}
.ws4a{word-spacing:-30.269532px;}
.ws22{word-spacing:-29.999999px;}
.ws14{word-spacing:-27.747071px;}
.ws9{word-spacing:-25.224609px;}
.ws5{word-spacing:-16.200001px;}
.ws0{word-spacing:-15.622962px;}
.ws1{word-spacing:-15.622742px;}
.ws1e{word-spacing:-15.024060px;}
.ws1f{word-spacing:-15.017575px;}
.ws20{word-spacing:-15.017571px;}
.ws21{word-spacing:-15.011693px;}
.ws3{word-spacing:-14.027412px;}
.ws2{word-spacing:-14.027410px;}
.ws3b{word-spacing:-13.992222px;}
.ws49{word-spacing:-13.992221px;}
.ws8a{word-spacing:-13.992214px;}
.ws2f{word-spacing:-13.992210px;}
.ws5c{word-spacing:-13.992204px;}
.ws34{word-spacing:-13.992202px;}
.ws36{word-spacing:-13.992199px;}
.ws66{word-spacing:-13.992193px;}
.ws41{word-spacing:-13.992190px;}
.ws27{word-spacing:-13.992189px;}
.ws38{word-spacing:-13.992187px;}
.ws74{word-spacing:-13.992186px;}
.ws33{word-spacing:-13.992177px;}
.ws6d{word-spacing:-13.992176px;}
.ws47{word-spacing:-13.992167px;}
.ws2b{word-spacing:-13.992165px;}
.wsc{word-spacing:-12.861611px;}
.wse{word-spacing:-12.861580px;}
.wsf{word-spacing:-12.861487px;}
.ws25{word-spacing:-12.861400px;}
.ws18{word-spacing:-12.861330px;}
.ws13{word-spacing:-12.861294px;}
.ws1b{word-spacing:-12.861191px;}
.ws7e{word-spacing:-12.487201px;}
.ws59{word-spacing:-12.484499px;}
.ws83{word-spacing:-12.483287px;}
.ws28{word-spacing:-12.480815px;}
.ws43{word-spacing:-10.947050px;}
.ws4d{word-spacing:-10.944623px;}
.ws15{word-spacing:-10.939221px;}
.ws40{word-spacing:-10.934349px;}
.ws75{word-spacing:-9.492224px;}
.ws6c{word-spacing:-9.492222px;}
.ws89{word-spacing:-9.492211px;}
.ws3a{word-spacing:-9.492210px;}
.ws45{word-spacing:-9.492201px;}
.ws4c{word-spacing:-9.492199px;}
.ws62{word-spacing:-9.492191px;}
.ws67{word-spacing:-9.492190px;}
.ws2d{word-spacing:-9.492188px;}
.ws3e{word-spacing:-9.492187px;}
.ws48{word-spacing:-9.492177px;}
.ws4e{word-spacing:-9.492165px;}
.ws4{word-spacing:-9.351643px;}
.ws6{word-spacing:-9.351551px;}
.ws17{word-spacing:-8.366971px;}
.ws16{word-spacing:-8.361550px;}
.ws1d{word-spacing:-8.361512px;}
.ws11{word-spacing:-8.361492px;}
.wsb{word-spacing:-8.361490px;}
.wsd{word-spacing:-8.361402px;}
.ws12{word-spacing:-8.360092px;}
.ws10{word-spacing:-8.359224px;}
.ws19{word-spacing:-8.351096px;}
.ws7{word-spacing:-7.013675px;}
.ws50{word-spacing:-4.992222px;}
.ws54{word-spacing:-4.992210px;}
.ws57{word-spacing:-4.992203px;}
.ws8e{word-spacing:-4.992202px;}
.ws5a{word-spacing:-4.992200px;}
.ws7a{word-spacing:-4.992191px;}
.ws70{word-spacing:-4.992190px;}
.ws30{word-spacing:-4.992188px;}
.ws5e{word-spacing:-4.992186px;}
.ws79{word-spacing:-4.992178px;}
.ws7f{word-spacing:-4.992177px;}
.ws88{word-spacing:-4.992167px;}
.ws5b{word-spacing:-4.992165px;}
.ws24{word-spacing:-3.861371px;}
.ws3d{word-spacing:-0.492221px;}
.ws31{word-spacing:-0.492211px;}
.ws2e{word-spacing:-0.492200px;}
.ws6b{word-spacing:-0.492190px;}
.ws78{word-spacing:-0.492189px;}
.ws39{word-spacing:-0.492188px;}
.ws29{word-spacing:-0.492177px;}
.ws55{word-spacing:-0.492168px;}
.ws46{word-spacing:-0.492165px;}
.ws23{word-spacing:0.000000px;}
.ws1c{word-spacing:0.639902px;}
.ws4b{word-spacing:4.007777px;}
.ws56{word-spacing:4.007789px;}
.ws35{word-spacing:4.007790px;}
.ws81{word-spacing:4.007798px;}
.ws5d{word-spacing:4.007800px;}
.ws73{word-spacing:4.007809px;}
.ws44{word-spacing:4.007811px;}
.ws32{word-spacing:4.007813px;}
.ws2a{word-spacing:4.007823px;}
.ws3c{word-spacing:4.007834px;}
.ws6f{word-spacing:8.507778px;}
.ws8d{word-spacing:8.507787px;}
.ws69{word-spacing:8.507789px;}
.ws4f{word-spacing:8.507799px;}
.ws51{word-spacing:8.507801px;}
.ws6e{word-spacing:8.507809px;}
.ws72{word-spacing:8.507811px;}
.ws2c{word-spacing:8.507812px;}
.ws52{word-spacing:8.507823px;}
.ws42{word-spacing:8.507835px;}
.ws53{word-spacing:13.007776px;}
.ws71{word-spacing:13.007778px;}
.ws80{word-spacing:13.007787px;}
.ws65{word-spacing:13.007789px;}
.ws63{word-spacing:13.007798px;}
.ws64{word-spacing:13.007809px;}
.ws76{word-spacing:13.007810px;}
.ws61{word-spacing:13.007812px;}
.ws68{word-spacing:13.007814px;}
.ws77{word-spacing:13.007820px;}
.ws82{word-spacing:13.007835px;}
.ws8{word-spacing:13.487425px;}
.ws1a{word-spacing:14.138201px;}
.ws6a{word-spacing:16.205343px;}
.ws84{word-spacing:17.507788px;}
.ws5f{word-spacing:17.507811px;}
.ws3f{word-spacing:17.507812px;}
.ws60{word-spacing:17.507834px;}
.ws7c{word-spacing:22.007789px;}
.ws90{word-spacing:22.007801px;}
.ws7b{word-spacing:22.007811px;}
.ws37{word-spacing:22.007835px;}
.ws7d{word-spacing:26.507789px;}
.ws8f{word-spacing:26.507811px;}
.ws58{word-spacing:31.007813px;}
.ws87{word-spacing:103.007790px;}
.ws85{word-spacing:103.007812px;}
.ws86{word-spacing:103.007830px;}
.ws8c{word-spacing:116.507810px;}
.ws8b{word-spacing:121.007801px;}
._1f{margin-left:-9.599222px;}
._19{margin-left:-7.945862px;}
._c{margin-left:-6.404658px;}
._20{margin-left:-4.959986px;}
._a{margin-left:-3.886183px;}
._2{margin-left:-2.671629px;}
._1{margin-left:-1.054421px;}
._0{width:2.053642px;}
._21{width:3.488223px;}
._9{width:15.109631px;}
._13{width:16.460156px;}
._7{width:18.725800px;}
._8{width:20.158228px;}
._12{width:21.698900px;}
._6{width:23.847537px;}
._14{width:25.206353px;}
._5{width:26.691826px;}
._f{width:28.346647px;}
._15{width:30.116644px;}
._d{width:32.073582px;}
._e{width:33.590713px;}
._10{width:34.595928px;}
._17{width:38.777344px;}
._11{width:43.277346px;}
._b{width:45.852246px;}
._1c{width:47.390093px;}
._1d{width:48.482336px;}
._1b{width:49.640625px;}
._18{width:52.277345px;}
._16{width:56.777346px;}
._1a{width:57.832031px;}
._22{width:63.457032px;}
._1e{width:66.304174px;}
._4{width:81.527343px;}
._3{width:139.134632px;}
._23{width:150.503946px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(138,138,141);}
.fc0{color:rgb(194,100,41);}
.fs3{font-size:43.200002px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:59.999999px;}
.fs7{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:83.999997px;}
.fs6{font-size:96.000003px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.124985px;}
.y9{bottom:3.750000px;}
.y27{bottom:45.896485px;}
.y25{bottom:56.869623px;}
.y24{bottom:74.118169px;}
.y103{bottom:102.298834px;}
.yaf{bottom:110.712889px;}
.y50{bottom:110.883184px;}
.y96{bottom:111.178714px;}
.y11d{bottom:111.539059px;}
.y23{bottom:111.820403px;}
.y7c{bottom:116.626459px;}
.y133{bottom:117.416014px;}
.y102{bottom:124.271479px;}
.yae{bottom:132.685549px;}
.y4f{bottom:132.855829px;}
.y95{bottom:133.151374px;}
.y11c{bottom:133.511719px;}
.y22{bottom:135.151148px;}
.y7b{bottom:138.599119px;}
.y132{bottom:139.388674px;}
.yc0{bottom:139.783444px;}
.y157{bottom:141.251959px;}
.y101{bottom:146.244139px;}
.yad{bottom:154.658209px;}
.y4e{bottom:154.828489px;}
.y94{bottom:155.124019px;}
.y11b{bottom:155.484379px;}
.y21{bottom:158.481818px;}
.y7a{bottom:160.571779px;}
.y131{bottom:161.361334px;}
.y156{bottom:163.224604px;}
.y100{bottom:168.216799px;}
.yac{bottom:176.630854px;}
.y4d{bottom:176.801149px;}
.y93{bottom:177.096679px;}
.y11a{bottom:177.457024px;}
.y20{bottom:181.812563px;}
.y79{bottom:182.544439px;}
.y130{bottom:183.333979px;}
.ybf{bottom:183.728764px;}
.y155{bottom:185.197264px;}
.yff{bottom:190.189459px;}
.yab{bottom:198.603514px;}
.y4c{bottom:198.773809px;}
.y92{bottom:199.069339px;}
.y119{bottom:199.429684px;}
.y78{bottom:204.517084px;}
.y1f{bottom:205.143218px;}
.y12f{bottom:205.306639px;}
.y154{bottom:207.169924px;}
.ye7{bottom:209.554684px;}
.yfe{bottom:212.162104px;}
.yaa{bottom:220.576174px;}
.y4b{bottom:220.746454px;}
.y91{bottom:221.041999px;}
.y118{bottom:221.402344px;}
.y77{bottom:226.489744px;}
.y12e{bottom:227.279299px;}
.y1e{bottom:228.473873px;}
.y153{bottom:229.142584px;}
.ybe{bottom:231.336919px;}
.yfd{bottom:234.134764px;}
.ya9{bottom:242.548834px;}
.y4a{bottom:242.719114px;}
.y90{bottom:243.014644px;}
.y117{bottom:243.375004px;}
.y76{bottom:248.462404px;}
.y12d{bottom:249.251959px;}
.y152{bottom:251.115229px;}
.y1d{bottom:251.804633px;}
.ybd{bottom:253.309564px;}
.ye6{bottom:253.500004px;}
.yfc{bottom:256.107424px;}
.ya8{bottom:264.521479px;}
.y49{bottom:264.691774px;}
.y8f{bottom:264.987304px;}
.y116{bottom:265.347649px;}
.y75{bottom:270.435064px;}
.y12c{bottom:271.224604px;}
.y151{bottom:273.087889px;}
.y1c{bottom:275.135288px;}
.ybc{bottom:275.282074px;}
.yfb{bottom:278.080084px;}
.ya7{bottom:286.494139px;}
.y48{bottom:286.664434px;}
.y8e{bottom:286.959964px;}
.y115{bottom:287.320309px;}
.y74{bottom:292.407709px;}
.y12b{bottom:293.197264px;}
.y150{bottom:295.060549px;}
.y1b{bottom:297.819847px;}
.ybb{bottom:298.229734px;}
.yfa{bottom:300.052729px;}
.ye5{bottom:301.107424px;}
.ya6{bottom:308.466799px;}
.y47{bottom:308.637079px;}
.y8d{bottom:308.932624px;}
.y114{bottom:309.292969px;}
.y73{bottom:314.380369px;}
.y12a{bottom:315.169924px;}
.y14f{bottom:317.033209px;}
.yba{bottom:320.202394px;}
.yf9{bottom:322.025389px;}
.ye4{bottom:323.080084px;}
.yd0{bottom:325.400389px;}
.ya5{bottom:330.439459px;}
.y46{bottom:330.609739px;}
.y8c{bottom:330.905269px;}
.y113{bottom:331.265629px;}
.y127{bottom:332.607427px;}
.y129{bottom:337.142584px;}
.y72{bottom:337.687499px;}
.y14e{bottom:339.005854px;}
.yb9{bottom:342.175054px;}
.yf8{bottom:343.998049px;}
.ye3{bottom:345.052729px;}
.ya4{bottom:352.412104px;}
.y45{bottom:352.582399px;}
.y1a{bottom:352.860443px;}
.y8b{bottom:352.877929px;}
.y112{bottom:353.238274px;}
.y128{bottom:359.115229px;}
.y14d{bottom:360.978514px;}
.yb8{bottom:364.146829px;}
.yf7{bottom:365.970709px;}
.ye2{bottom:367.025389px;}
.ycf{bottom:369.345709px;}
.ya3{bottom:374.384764px;}
.y44{bottom:374.555059px;}
.y8a{bottom:374.850589px;}
.y111{bottom:375.210934px;}
.y19{bottom:376.275053px;}
.y126{bottom:381.087889px;}
.y14c{bottom:382.951174px;}
.y71{bottom:386.535649px;}
.yb7{bottom:387.094489px;}
.yf6{bottom:387.943354px;}
.ye1{bottom:388.998049px;}
.ya2{bottom:396.357424px;}
.y43{bottom:396.527704px;}
.y89{bottom:396.823249px;}
.y110{bottom:397.183594px;}
.y18{bottom:398.126128px;}
.y125{bottom:403.060549px;}
.y14b{bottom:404.923834px;}
.y70{bottom:408.508294px;}
.yb6{bottom:409.067134px;}
.yf5{bottom:409.916014px;}
.ye0{bottom:410.970709px;}
.yce{bottom:413.291014px;}
.ya1{bottom:418.330084px;}
.y42{bottom:418.500364px;}
.y88{bottom:418.795894px;}
.y10f{bottom:419.156254px;}
.y124{bottom:425.033209px;}
.y14a{bottom:426.896479px;}
.y6f{bottom:430.480954px;}
.yb5{bottom:431.039644px;}
.yf4{bottom:431.888674px;}
.ydf{bottom:432.943354px;}
.ycd{bottom:435.263674px;}
.ya0{bottom:440.302729px;}
.y41{bottom:440.473024px;}
.y87{bottom:440.768554px;}
.y10e{bottom:441.128899px;}
.y123{bottom:447.005854px;}
.y17{bottom:448.027778px;}
.y149{bottom:448.869139px;}
.y6e{bottom:452.453614px;}
.yf3{bottom:453.861334px;}
.yb4{bottom:453.987304px;}
.yde{bottom:454.916014px;}
.ycc{bottom:457.236334px;}
.y9f{bottom:462.275389px;}
.y40{bottom:462.445684px;}
.y10d{bottom:463.101559px;}
.y86{bottom:464.075683px;}
.y122{bottom:468.978514px;}
.y148{bottom:470.841799px;}
.y16{bottom:471.358433px;}
.y6d{bottom:474.426274px;}
.yf2{bottom:475.833979px;}
.yb3{bottom:475.959964px;}
.ydd{bottom:476.888674px;}
.ycb{bottom:479.208979px;}
.y9e{bottom:484.248049px;}
.y3f{bottom:484.418329px;}
.y10c{bottom:485.074219px;}
.y121{bottom:490.951174px;}
.y147{bottom:492.814459px;}
.y15{bottom:494.689088px;}
.y6c{bottom:496.398919px;}
.yf1{bottom:497.806639px;}
.yb2{bottom:497.932624px;}
.ydc{bottom:498.861334px;}
.yca{bottom:501.181639px;}
.y9d{bottom:506.220709px;}
.y3e{bottom:506.390989px;}
.y10b{bottom:507.046879px;}
.y85{bottom:509.805169px;}
.y120{bottom:512.923834px;}
.y146{bottom:514.787104px;}
.y14{bottom:518.019788px;}
.y6b{bottom:518.371579px;}
.yf0{bottom:519.779299px;}
.yb1{bottom:519.905269px;}
.ydb{bottom:520.833979px;}
.yc9{bottom:523.154299px;}
.y3d{bottom:528.363649px;}
.y10a{bottom:529.019524px;}
.y9c{bottom:530.361323px;}
.y84{bottom:531.777829px;}
.y11f{bottom:534.896479px;}
.y145{bottom:536.759764px;}
.y6a{bottom:540.344239px;}
.y13{bottom:541.350488px;}
.yef{bottom:541.751959px;}
.yb0{bottom:541.878514px;}
.yda{bottom:542.806639px;}
.yc8{bottom:545.126959px;}
.y3c{bottom:550.336309px;}
.y109{bottom:550.992184px;}
.y83{bottom:553.750489px;}
.y11e{bottom:556.869139px;}
.y144{bottom:558.732424px;}
.y69{bottom:562.316899px;}
.yee{bottom:563.724604px;}
.y12{bottom:564.681203px;}
.yd9{bottom:564.779299px;}
.yc7{bottom:567.099604px;}
.y3b{bottom:572.308954px;}
.y108{bottom:572.964844px;}
.y82{bottom:575.723149px;}
.y9b{bottom:578.841799px;}
.y143{bottom:580.705084px;}
.y68{bottom:584.289544px;}
.yed{bottom:585.697264px;}
.yd8{bottom:586.751959px;}
.y11{bottom:588.011813px;}
.yc6{bottom:589.072264px;}
.y3a{bottom:594.281614px;}
.y107{bottom:594.937504px;}
.y81{bottom:597.695794px;}
.y9a{bottom:600.814459px;}
.y142{bottom:602.677729px;}
.y67{bottom:607.596673px;}
.yec{bottom:607.669924px;}
.yd7{bottom:608.724604px;}
.yc5{bottom:611.044924px;}
.y10{bottom:611.342558px;}
.y39{bottom:616.254274px;}
.y106{bottom:616.910149px;}
.y80{bottom:619.668454px;}
.y99{bottom:622.787104px;}
.y141{bottom:624.650389px;}
.yeb{bottom:629.642584px;}
.yd6{bottom:630.697264px;}
.yc4{bottom:633.017584px;}
.y66{bottom:633.521483px;}
.yf{bottom:634.673213px;}
.y38{bottom:638.226934px;}
.y105{bottom:638.882809px;}
.y7f{bottom:641.641114px;}
.y98{bottom:644.759764px;}
.y140{bottom:646.623049px;}
.yea{bottom:651.615229px;}
.yd5{bottom:652.669924px;}
.yc3{bottom:654.990229px;}
.ye{bottom:658.003973px;}
.y37{bottom:660.199579px;}
.y104{bottom:660.855469px;}
.y7e{bottom:663.613774px;}
.y97{bottom:666.732424px;}
.y13f{bottom:668.595709px;}
.ye9{bottom:673.587889px;}
.yd4{bottom:674.642584px;}
.yc2{bottom:676.962889px;}
.yd{bottom:681.334628px;}
.y36{bottom:682.172239px;}
.y7d{bottom:686.920904px;}
.y65{bottom:688.705084px;}
.y13e{bottom:690.568354px;}
.ye8{bottom:695.560549px;}
.yd3{bottom:696.615229px;}
.yc1{bottom:698.935549px;}
.yc{bottom:704.019187px;}
.y35{bottom:704.144899px;}
.y64{bottom:710.677729px;}
.y13d{bottom:712.541014px;}
.yd2{bottom:718.587889px;}
.y34{bottom:726.117559px;}
.y63{bottom:732.650389px;}
.y13c{bottom:734.513674px;}
.yd1{bottom:740.560549px;}
.y33{bottom:748.090204px;}
.y62{bottom:754.623049px;}
.y13b{bottom:756.486334px;}
.y8{bottom:766.698118px;}
.ya{bottom:768.223986px;}
.y32{bottom:770.062864px;}
.y61{bottom:776.595709px;}
.y13a{bottom:778.458979px;}
.y31{bottom:792.035524px;}
.y60{bottom:798.568354px;}
.y139{bottom:800.431639px;}
.y7{bottom:804.018180px;}
.y30{bottom:814.008184px;}
.y6{bottom:820.148295px;}
.y5f{bottom:820.541014px;}
.y138{bottom:824.572267px;}
.y2f{bottom:835.980829px;}
.y5{bottom:837.528675px;}
.y5e{bottom:842.513674px;}
.y2e{bottom:857.953489px;}
.y5d{bottom:864.486334px;}
.y137{bottom:873.052729px;}
.y2d{bottom:879.926149px;}
.y5c{bottom:886.458979px;}
.y136{bottom:895.025389px;}
.y2c{bottom:904.066957px;}
.y5b{bottom:908.431639px;}
.y135{bottom:916.998049px;}
.y5a{bottom:930.404299px;}
.y4{bottom:939.467880px;}
.y134{bottom:941.138677px;}
.y59{bottom:952.376959px;}
.y3{bottom:971.728110px;}
.y58{bottom:974.349604px;}
.y57{bottom:996.322265px;}
.y2{bottom:1004.821884px;}
.y2b{bottom:1016.976287px;}
.y56{bottom:1018.294922px;}
.y55{bottom:1040.267578px;}
.y1{bottom:1040.666610px;}
.y2a{bottom:1041.950408px;}
.y54{bottom:1062.240235px;}
.y53{bottom:1084.212890px;}
.y52{bottom:1106.185547px;}
.y29{bottom:1106.283508px;}
.y51{bottom:1128.158203px;}
.y28{bottom:1129.614257px;}
.y26{bottom:1145.630859px;}
.h7{height:15.258774px;}
.h5{height:18.310547px;}
.h4{height:40.500000px;}
.hc{height:41.689452px;}
.h6{height:43.066405px;}
.h9{height:47.373048px;}
.hf{height:49.359375px;}
.he{height:51.679688px;}
.h3{height:60.789025px;}
.ha{height:62.999998px;}
.h8{height:72.000002px;}
.h2{height:81.000000px;}
.h1{height:89.999998px;}
.hb{height:97.122075px;}
.hd{height:117.369141px;}
.h0{height:1263.000000px;}
.w1{width:232.875000px;}
.w2{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xc{left:11.753028px;}
.xa{left:13.466251px;}
.x8{left:17.009788px;}
.x7{left:97.500000px;}
.xf{left:106.500000px;}
.x16{left:107.625000px;}
.x3{left:128.892484px;}
.x1{left:141.451128px;}
.x17{left:142.500000px;}
.x14{left:144.750000px;}
.x12{left:148.125000px;}
.x10{left:150.375000px;}
.xd{left:151.500000px;}
.x18{left:163.875000px;}
.x15{left:166.125000px;}
.x13{left:169.500000px;}
.x11{left:178.500000px;}
.x5{left:242.554773px;}
.x2{left:243.613237px;}
.x6{left:295.450714px;}
.x9{left:330.375000px;}
.x4{left:338.636876px;}
.xb{left:563.250000px;}
.xe{left:777.167265px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.234688pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:14.468750pt;}
.wsa{word-spacing:-32.000001pt;}
.ws26{word-spacing:-27.999999pt;}
.ws4a{word-spacing:-26.906250pt;}
.ws22{word-spacing:-26.666666pt;}
.ws14{word-spacing:-24.664063pt;}
.ws9{word-spacing:-22.421875pt;}
.ws5{word-spacing:-14.400001pt;}
.ws0{word-spacing:-13.887077pt;}
.ws1{word-spacing:-13.886882pt;}
.ws1e{word-spacing:-13.354720pt;}
.ws1f{word-spacing:-13.348955pt;}
.ws20{word-spacing:-13.348952pt;}
.ws21{word-spacing:-13.343727pt;}
.ws3{word-spacing:-12.468810pt;}
.ws2{word-spacing:-12.468809pt;}
.ws3b{word-spacing:-12.437531pt;}
.ws49{word-spacing:-12.437530pt;}
.ws8a{word-spacing:-12.437523pt;}
.ws2f{word-spacing:-12.437520pt;}
.ws5c{word-spacing:-12.437515pt;}
.ws34{word-spacing:-12.437513pt;}
.ws36{word-spacing:-12.437510pt;}
.ws66{word-spacing:-12.437504pt;}
.ws41{word-spacing:-12.437502pt;}
.ws27{word-spacing:-12.437501pt;}
.ws38{word-spacing:-12.437500pt;}
.ws74{word-spacing:-12.437499pt;}
.ws33{word-spacing:-12.437491pt;}
.ws6d{word-spacing:-12.437490pt;}
.ws47{word-spacing:-12.437481pt;}
.ws2b{word-spacing:-12.437480pt;}
.wsc{word-spacing:-11.432543pt;}
.wse{word-spacing:-11.432515pt;}
.wsf{word-spacing:-11.432433pt;}
.ws25{word-spacing:-11.432356pt;}
.ws18{word-spacing:-11.432293pt;}
.ws13{word-spacing:-11.432261pt;}
.ws1b{word-spacing:-11.432169pt;}
.ws7e{word-spacing:-11.099735pt;}
.ws59{word-spacing:-11.097332pt;}
.ws83{word-spacing:-11.096255pt;}
.ws28{word-spacing:-11.094057pt;}
.ws43{word-spacing:-9.730711pt;}
.ws4d{word-spacing:-9.728554pt;}
.ws15{word-spacing:-9.723752pt;}
.ws40{word-spacing:-9.719421pt;}
.ws75{word-spacing:-8.437532pt;}
.ws6c{word-spacing:-8.437531pt;}
.ws89{word-spacing:-8.437521pt;}
.ws3a{word-spacing:-8.437520pt;}
.ws45{word-spacing:-8.437512pt;}
.ws4c{word-spacing:-8.437510pt;}
.ws62{word-spacing:-8.437503pt;}
.ws67{word-spacing:-8.437502pt;}
.ws2d{word-spacing:-8.437501pt;}
.ws3e{word-spacing:-8.437500pt;}
.ws48{word-spacing:-8.437490pt;}
.ws4e{word-spacing:-8.437480pt;}
.ws4{word-spacing:-8.312571pt;}
.ws6{word-spacing:-8.312490pt;}
.ws17{word-spacing:-7.437307pt;}
.ws16{word-spacing:-7.432489pt;}
.ws1d{word-spacing:-7.432455pt;}
.ws11{word-spacing:-7.432437pt;}
.wsb{word-spacing:-7.432435pt;}
.wsd{word-spacing:-7.432357pt;}
.ws12{word-spacing:-7.431193pt;}
.ws10{word-spacing:-7.430421pt;}
.ws19{word-spacing:-7.423197pt;}
.ws7{word-spacing:-6.234377pt;}
.ws50{word-spacing:-4.437530pt;}
.ws54{word-spacing:-4.437520pt;}
.ws57{word-spacing:-4.437514pt;}
.ws8e{word-spacing:-4.437513pt;}
.ws5a{word-spacing:-4.437511pt;}
.ws7a{word-spacing:-4.437503pt;}
.ws70{word-spacing:-4.437502pt;}
.ws30{word-spacing:-4.437501pt;}
.ws5e{word-spacing:-4.437499pt;}
.ws79{word-spacing:-4.437492pt;}
.ws7f{word-spacing:-4.437491pt;}
.ws88{word-spacing:-4.437482pt;}
.ws5b{word-spacing:-4.437480pt;}
.ws24{word-spacing:-3.432330pt;}
.ws3d{word-spacing:-0.437530pt;}
.ws31{word-spacing:-0.437521pt;}
.ws2e{word-spacing:-0.437511pt;}
.ws6b{word-spacing:-0.437502pt;}
.ws78{word-spacing:-0.437501pt;}
.ws39{word-spacing:-0.437500pt;}
.ws29{word-spacing:-0.437491pt;}
.ws55{word-spacing:-0.437482pt;}
.ws46{word-spacing:-0.437480pt;}
.ws23{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.568802pt;}
.ws4b{word-spacing:3.562468pt;}
.ws56{word-spacing:3.562479pt;}
.ws35{word-spacing:3.562480pt;}
.ws81{word-spacing:3.562488pt;}
.ws5d{word-spacing:3.562489pt;}
.ws73{word-spacing:3.562497pt;}
.ws44{word-spacing:3.562499pt;}
.ws32{word-spacing:3.562500pt;}
.ws2a{word-spacing:3.562509pt;}
.ws3c{word-spacing:3.562519pt;}
.ws6f{word-spacing:7.562469pt;}
.ws8d{word-spacing:7.562477pt;}
.ws69{word-spacing:7.562479pt;}
.ws4f{word-spacing:7.562488pt;}
.ws51{word-spacing:7.562490pt;}
.ws6e{word-spacing:7.562497pt;}
.ws72{word-spacing:7.562499pt;}
.ws2c{word-spacing:7.562500pt;}
.ws52{word-spacing:7.562509pt;}
.ws42{word-spacing:7.562520pt;}
.ws53{word-spacing:11.562468pt;}
.ws71{word-spacing:11.562469pt;}
.ws80{word-spacing:11.562478pt;}
.ws65{word-spacing:11.562479pt;}
.ws63{word-spacing:11.562487pt;}
.ws64{word-spacing:11.562497pt;}
.ws76{word-spacing:11.562498pt;}
.ws61{word-spacing:11.562499pt;}
.ws68{word-spacing:11.562501pt;}
.ws77{word-spacing:11.562507pt;}
.ws82{word-spacing:11.562520pt;}
.ws8{word-spacing:11.988823pt;}
.ws1a{word-spacing:12.567290pt;}
.ws6a{word-spacing:14.404750pt;}
.ws84{word-spacing:15.562478pt;}
.ws5f{word-spacing:15.562499pt;}
.ws3f{word-spacing:15.562500pt;}
.ws60{word-spacing:15.562519pt;}
.ws7c{word-spacing:19.562479pt;}
.ws90{word-spacing:19.562490pt;}
.ws7b{word-spacing:19.562499pt;}
.ws37{word-spacing:19.562520pt;}
.ws7d{word-spacing:23.562479pt;}
.ws8f{word-spacing:23.562498pt;}
.ws58{word-spacing:27.562500pt;}
.ws87{word-spacing:91.562480pt;}
.ws85{word-spacing:91.562499pt;}
.ws86{word-spacing:91.562516pt;}
.ws8c{word-spacing:103.562497pt;}
.ws8b{word-spacing:107.562490pt;}
._1f{margin-left:-8.532642pt;}
._19{margin-left:-7.062989pt;}
._c{margin-left:-5.693030pt;}
._20{margin-left:-4.408877pt;}
._a{margin-left:-3.454385pt;}
._2{margin-left:-2.374781pt;}
._1{margin-left:-0.937263pt;}
._0{width:1.825460pt;}
._21{width:3.100642pt;}
._9{width:13.430783pt;}
._13{width:14.631249pt;}
._7{width:16.645156pt;}
._8{width:17.918425pt;}
._12{width:19.287911pt;}
._6{width:21.197811pt;}
._14{width:22.405647pt;}
._5{width:23.726068pt;}
._f{width:25.197019pt;}
._15{width:26.770350pt;}
._d{width:28.509851pt;}
._e{width:29.858412pt;}
._10{width:30.751936pt;}
._17{width:34.468750pt;}
._11{width:38.468752pt;}
._b{width:40.757552pt;}
._1c{width:42.124527pt;}
._1d{width:43.095409pt;}
._1b{width:44.125000pt;}
._18{width:46.468752pt;}
._16{width:50.468752pt;}
._1a{width:51.406250pt;}
._22{width:56.406250pt;}
._1e{width:58.937043pt;}
._4{width:72.468750pt;}
._3{width:123.675229pt;}
._23{width:133.781285pt;}
.fs3{font-size:38.400002pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.333332pt;}
.fs7{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.666664pt;}
.fs6{font-size:85.333336pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.777764pt;}
.y9{bottom:3.333334pt;}
.y27{bottom:40.796875pt;}
.y25{bottom:50.550776pt;}
.y24{bottom:65.882817pt;}
.y103{bottom:90.932297pt;}
.yaf{bottom:98.411457pt;}
.y50{bottom:98.562830pt;}
.y96{bottom:98.825523pt;}
.y11d{bottom:99.145830pt;}
.y23{bottom:99.395914pt;}
.y7c{bottom:103.667963pt;}
.y133{bottom:104.369790pt;}
.y102{bottom:110.463537pt;}
.yae{bottom:117.942710pt;}
.y4f{bottom:118.094070pt;}
.y95{bottom:118.356777pt;}
.y11c{bottom:118.677083pt;}
.y22{bottom:120.134354pt;}
.y7b{bottom:123.199217pt;}
.y132{bottom:123.901043pt;}
.yc0{bottom:124.251950pt;}
.y157{bottom:125.557297pt;}
.y101{bottom:129.994790pt;}
.yad{bottom:137.473963pt;}
.y4e{bottom:137.625323pt;}
.y94{bottom:137.888017pt;}
.y11b{bottom:138.208337pt;}
.y21{bottom:140.872727pt;}
.y7a{bottom:142.730470pt;}
.y131{bottom:143.432297pt;}
.y156{bottom:145.088537pt;}
.y100{bottom:149.526043pt;}
.yac{bottom:157.005203pt;}
.y4d{bottom:157.156577pt;}
.y93{bottom:157.419270pt;}
.y11a{bottom:157.739577pt;}
.y20{bottom:161.611167pt;}
.y79{bottom:162.261723pt;}
.y130{bottom:162.963537pt;}
.ybf{bottom:163.314457pt;}
.y155{bottom:164.619790pt;}
.yff{bottom:169.057297pt;}
.yab{bottom:176.536457pt;}
.y4c{bottom:176.687830pt;}
.y92{bottom:176.950523pt;}
.y119{bottom:177.270830pt;}
.y78{bottom:181.792963pt;}
.y1f{bottom:182.349527pt;}
.y12f{bottom:182.494790pt;}
.y154{bottom:184.151043pt;}
.ye7{bottom:186.270830pt;}
.yfe{bottom:188.588537pt;}
.yaa{bottom:196.067710pt;}
.y4b{bottom:196.219070pt;}
.y91{bottom:196.481777pt;}
.y118{bottom:196.802083pt;}
.y77{bottom:201.324217pt;}
.y12e{bottom:202.026043pt;}
.y1e{bottom:203.087887pt;}
.y153{bottom:203.682297pt;}
.ybe{bottom:205.632817pt;}
.yfd{bottom:208.119790pt;}
.ya9{bottom:215.598963pt;}
.y4a{bottom:215.750323pt;}
.y90{bottom:216.013017pt;}
.y117{bottom:216.333337pt;}
.y76{bottom:220.855470pt;}
.y12d{bottom:221.557297pt;}
.y152{bottom:223.213537pt;}
.y1d{bottom:223.826341pt;}
.ybd{bottom:225.164057pt;}
.ye6{bottom:225.333337pt;}
.yfc{bottom:227.651043pt;}
.ya8{bottom:235.130203pt;}
.y49{bottom:235.281577pt;}
.y8f{bottom:235.544270pt;}
.y116{bottom:235.864577pt;}
.y75{bottom:240.386723pt;}
.y12c{bottom:241.088537pt;}
.y151{bottom:242.744790pt;}
.y1c{bottom:244.564700pt;}
.ybc{bottom:244.695177pt;}
.yfb{bottom:247.182297pt;}
.ya7{bottom:254.661457pt;}
.y48{bottom:254.812830pt;}
.y8e{bottom:255.075523pt;}
.y115{bottom:255.395830pt;}
.y74{bottom:259.917963pt;}
.y12b{bottom:260.619790pt;}
.y150{bottom:262.276043pt;}
.y1b{bottom:264.728753pt;}
.ybb{bottom:265.093097pt;}
.yfa{bottom:266.713537pt;}
.ye5{bottom:267.651043pt;}
.ya6{bottom:274.192710pt;}
.y47{bottom:274.344070pt;}
.y8d{bottom:274.606777pt;}
.y114{bottom:274.927083pt;}
.y73{bottom:279.449217pt;}
.y12a{bottom:280.151043pt;}
.y14f{bottom:281.807297pt;}
.yba{bottom:284.624350pt;}
.yf9{bottom:286.244790pt;}
.ye4{bottom:287.182297pt;}
.yd0{bottom:289.244790pt;}
.ya5{bottom:293.723963pt;}
.y46{bottom:293.875323pt;}
.y8c{bottom:294.138017pt;}
.y113{bottom:294.458337pt;}
.y127{bottom:295.651047pt;}
.y129{bottom:299.682297pt;}
.y72{bottom:300.166665pt;}
.y14e{bottom:301.338537pt;}
.yb9{bottom:304.155603pt;}
.yf8{bottom:305.776043pt;}
.ye3{bottom:306.713537pt;}
.ya4{bottom:313.255203pt;}
.y45{bottom:313.406577pt;}
.y1a{bottom:313.653727pt;}
.y8b{bottom:313.669270pt;}
.y112{bottom:313.989577pt;}
.y128{bottom:319.213537pt;}
.y14d{bottom:320.869790pt;}
.yb8{bottom:323.686070pt;}
.yf7{bottom:325.307297pt;}
.ye2{bottom:326.244790pt;}
.ycf{bottom:328.307297pt;}
.ya3{bottom:332.786457pt;}
.y44{bottom:332.937830pt;}
.y8a{bottom:333.200523pt;}
.y111{bottom:333.520830pt;}
.y19{bottom:334.466714pt;}
.y126{bottom:338.744790pt;}
.y14c{bottom:340.401043pt;}
.y71{bottom:343.587243pt;}
.yb7{bottom:344.083990pt;}
.yf6{bottom:344.838537pt;}
.ye1{bottom:345.776043pt;}
.ya2{bottom:352.317710pt;}
.y43{bottom:352.469070pt;}
.y89{bottom:352.731777pt;}
.y110{bottom:353.052083pt;}
.y18{bottom:353.889892pt;}
.y125{bottom:358.276043pt;}
.y14b{bottom:359.932297pt;}
.y70{bottom:363.118483pt;}
.yb6{bottom:363.615230pt;}
.yf5{bottom:364.369790pt;}
.ye0{bottom:365.307297pt;}
.yce{bottom:367.369790pt;}
.ya1{bottom:371.848963pt;}
.y42{bottom:372.000323pt;}
.y88{bottom:372.263017pt;}
.y10f{bottom:372.583337pt;}
.y124{bottom:377.807297pt;}
.y14a{bottom:379.463537pt;}
.y6f{bottom:382.649737pt;}
.yb5{bottom:383.146350pt;}
.yf4{bottom:383.901043pt;}
.ydf{bottom:384.838537pt;}
.ycd{bottom:386.901043pt;}
.ya0{bottom:391.380203pt;}
.y41{bottom:391.531577pt;}
.y87{bottom:391.794270pt;}
.y10e{bottom:392.114577pt;}
.y123{bottom:397.338537pt;}
.y17{bottom:398.246914pt;}
.y149{bottom:398.994790pt;}
.y6e{bottom:402.180990pt;}
.yf3{bottom:403.432297pt;}
.yb4{bottom:403.544270pt;}
.yde{bottom:404.369790pt;}
.ycc{bottom:406.432297pt;}
.y9f{bottom:410.911457pt;}
.y40{bottom:411.062830pt;}
.y10d{bottom:411.645830pt;}
.y86{bottom:412.511719pt;}
.y122{bottom:416.869790pt;}
.y148{bottom:418.526043pt;}
.y16{bottom:418.985274pt;}
.y6d{bottom:421.712243pt;}
.yf2{bottom:422.963537pt;}
.yb3{bottom:423.075523pt;}
.ydd{bottom:423.901043pt;}
.ycb{bottom:425.963537pt;}
.y9e{bottom:430.442710pt;}
.y3f{bottom:430.594070pt;}
.y10c{bottom:431.177083pt;}
.y121{bottom:436.401043pt;}
.y147{bottom:438.057297pt;}
.y15{bottom:439.723634pt;}
.y6c{bottom:441.243483pt;}
.yf1{bottom:442.494790pt;}
.yb2{bottom:442.606777pt;}
.ydc{bottom:443.432297pt;}
.yca{bottom:445.494790pt;}
.y9d{bottom:449.973963pt;}
.y3e{bottom:450.125323pt;}
.y10b{bottom:450.708337pt;}
.y85{bottom:453.160150pt;}
.y120{bottom:455.932297pt;}
.y146{bottom:457.588537pt;}
.y14{bottom:460.462034pt;}
.y6b{bottom:460.774737pt;}
.yf0{bottom:462.026043pt;}
.yb1{bottom:462.138017pt;}
.ydb{bottom:462.963537pt;}
.yc9{bottom:465.026043pt;}
.y3d{bottom:469.656577pt;}
.y10a{bottom:470.239577pt;}
.y9c{bottom:471.432287pt;}
.y84{bottom:472.691403pt;}
.y11f{bottom:475.463537pt;}
.y145{bottom:477.119790pt;}
.y6a{bottom:480.305990pt;}
.y13{bottom:481.200434pt;}
.yef{bottom:481.557297pt;}
.yb0{bottom:481.669790pt;}
.yda{bottom:482.494790pt;}
.yc8{bottom:484.557297pt;}
.y3c{bottom:489.187830pt;}
.y109{bottom:489.770830pt;}
.y83{bottom:492.222657pt;}
.y11e{bottom:494.994790pt;}
.y144{bottom:496.651043pt;}
.y69{bottom:499.837243pt;}
.yee{bottom:501.088537pt;}
.y12{bottom:501.938847pt;}
.yd9{bottom:502.026043pt;}
.yc7{bottom:504.088537pt;}
.y3b{bottom:508.719070pt;}
.y108{bottom:509.302083pt;}
.y82{bottom:511.753910pt;}
.y9b{bottom:514.526043pt;}
.y143{bottom:516.182297pt;}
.y68{bottom:519.368483pt;}
.yed{bottom:520.619790pt;}
.yd8{bottom:521.557297pt;}
.y11{bottom:522.677167pt;}
.yc6{bottom:523.619790pt;}
.y3a{bottom:528.250323pt;}
.y107{bottom:528.833337pt;}
.y81{bottom:531.285150pt;}
.y9a{bottom:534.057297pt;}
.y142{bottom:535.713537pt;}
.y67{bottom:540.085932pt;}
.yec{bottom:540.151043pt;}
.yd7{bottom:541.088537pt;}
.yc5{bottom:543.151043pt;}
.y10{bottom:543.415607pt;}
.y39{bottom:547.781577pt;}
.y106{bottom:548.364577pt;}
.y80{bottom:550.816403pt;}
.y99{bottom:553.588537pt;}
.y141{bottom:555.244790pt;}
.yeb{bottom:559.682297pt;}
.yd6{bottom:560.619790pt;}
.yc4{bottom:562.682297pt;}
.y66{bottom:563.130207pt;}
.yf{bottom:564.153967pt;}
.y38{bottom:567.312830pt;}
.y105{bottom:567.895830pt;}
.y7f{bottom:570.347657pt;}
.y98{bottom:573.119790pt;}
.y140{bottom:574.776043pt;}
.yea{bottom:579.213537pt;}
.yd5{bottom:580.151043pt;}
.yc3{bottom:582.213537pt;}
.ye{bottom:584.892420pt;}
.y37{bottom:586.844070pt;}
.y104{bottom:587.427083pt;}
.y7e{bottom:589.878910pt;}
.y97{bottom:592.651043pt;}
.y13f{bottom:594.307297pt;}
.ye9{bottom:598.744790pt;}
.yd4{bottom:599.682297pt;}
.yc2{bottom:601.744790pt;}
.yd{bottom:605.630780pt;}
.y36{bottom:606.375323pt;}
.y7d{bottom:610.596359pt;}
.y65{bottom:612.182297pt;}
.y13e{bottom:613.838537pt;}
.ye8{bottom:618.276043pt;}
.yd3{bottom:619.213537pt;}
.yc1{bottom:621.276043pt;}
.yc{bottom:625.794833pt;}
.y35{bottom:625.906577pt;}
.y64{bottom:631.713537pt;}
.y13d{bottom:633.369790pt;}
.yd2{bottom:638.744790pt;}
.y34{bottom:645.437830pt;}
.y63{bottom:651.244790pt;}
.y13c{bottom:652.901043pt;}
.yd1{bottom:658.276043pt;}
.y33{bottom:664.969070pt;}
.y62{bottom:670.776043pt;}
.y13b{bottom:672.432297pt;}
.y8{bottom:681.509438pt;}
.ya{bottom:682.865765pt;}
.y32{bottom:684.500323pt;}
.y61{bottom:690.307297pt;}
.y13a{bottom:691.963537pt;}
.y31{bottom:704.031577pt;}
.y60{bottom:709.838537pt;}
.y139{bottom:711.494790pt;}
.y7{bottom:714.682827pt;}
.y30{bottom:723.562830pt;}
.y6{bottom:729.020707pt;}
.y5f{bottom:729.369790pt;}
.y138{bottom:732.953127pt;}
.y2f{bottom:743.094070pt;}
.y5{bottom:744.469933pt;}
.y5e{bottom:748.901043pt;}
.y2e{bottom:762.625323pt;}
.y5d{bottom:768.432297pt;}
.y137{bottom:776.046870pt;}
.y2d{bottom:782.156577pt;}
.y5c{bottom:787.963537pt;}
.y136{bottom:795.578123pt;}
.y2c{bottom:803.615073pt;}
.y5b{bottom:807.494790pt;}
.y135{bottom:815.109377pt;}
.y5a{bottom:827.026043pt;}
.y4{bottom:835.082560pt;}
.y134{bottom:836.567713pt;}
.y59{bottom:846.557297pt;}
.y3{bottom:863.758320pt;}
.y58{bottom:866.088537pt;}
.y57{bottom:885.619791pt;}
.y2{bottom:893.175008pt;}
.y2b{bottom:903.978922pt;}
.y56{bottom:905.151042pt;}
.y55{bottom:924.682291pt;}
.y1{bottom:925.036987pt;}
.y2a{bottom:926.178140pt;}
.y54{bottom:944.213542pt;}
.y53{bottom:963.744791pt;}
.y52{bottom:983.276042pt;}
.y29{bottom:983.363118pt;}
.y51{bottom:1002.807291pt;}
.y28{bottom:1004.101562pt;}
.y26{bottom:1018.338541pt;}
.h7{height:13.563355pt;}
.h5{height:16.276042pt;}
.h4{height:36.000000pt;}
.hc{height:37.057291pt;}
.h6{height:38.281249pt;}
.h9{height:42.109376pt;}
.hf{height:43.875000pt;}
.he{height:45.937500pt;}
.h3{height:54.034689pt;}
.ha{height:55.999998pt;}
.h8{height:64.000002pt;}
.h2{height:72.000000pt;}
.h1{height:79.999998pt;}
.hb{height:86.330733pt;}
.hd{height:104.328125pt;}
.h0{height:1122.666667pt;}
.w1{width:207.000000pt;}
.w2{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xc{left:10.447136pt;}
.xa{left:11.970001pt;}
.x8{left:15.119812pt;}
.x7{left:86.666667pt;}
.xf{left:94.666667pt;}
.x16{left:95.666667pt;}
.x3{left:114.571097pt;}
.x1{left:125.734336pt;}
.x17{left:126.666667pt;}
.x14{left:128.666667pt;}
.x12{left:131.666667pt;}
.x10{left:133.666667pt;}
.xd{left:134.666667pt;}
.x18{left:145.666667pt;}
.x15{left:147.666667pt;}
.x13{left:150.666667pt;}
.x11{left:158.666667pt;}
.x5{left:215.604243pt;}
.x2{left:216.545100pt;}
.x6{left:262.622857pt;}
.x9{left:293.666667pt;}
.x4{left:301.010557pt;}
.xb{left:500.666667pt;}
.xe{left:690.815347pt;}
}




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