
    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_99b860f43356f5d8f1366644.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.932129;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_2bf8f7e19e73da41378db653.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_e5f9f63e4af223bd7c43bf8d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_bcdba23122a3f57f31404fdf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_4e088d862c3d505ec14c8357.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_b8873ad9486021cf0c958118.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_4dcdce4a0e8ae653160a6cf4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924316;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_7990ed4d94a9a12e5b57dabc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.728516;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_6edd4f02323d9c56d6b5f10e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.961914;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_83d853fc3b56e2af68edcce3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.929199;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_b4ba8b130b53bc23c662760f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.850098;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_44c47b8f3cccb23385df388c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a8d98f70b4d74b3cce12ac72.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.728027;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;}
.m5{transform:matrix(0.196347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196347,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.229884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229884,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.232198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232198,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,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(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-14.399919px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:13.680036px;}
.v3{vertical-align:17.279982px;}
.v1{vertical-align:19.439897px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.044280px;}
.ls20{letter-spacing:0.044419px;}
.ls1a{letter-spacing:0.048258px;}
.ls24{letter-spacing:0.053176px;}
.ls23{letter-spacing:0.095896px;}
.ls4{letter-spacing:0.098610px;}
.ls8{letter-spacing:0.098615px;}
.ls3{letter-spacing:0.205074px;}
.ls5{letter-spacing:0.205146px;}
.lse{letter-spacing:0.240364px;}
.lsd{letter-spacing:0.248306px;}
.ls21{letter-spacing:0.248854px;}
.ls1c{letter-spacing:0.308047px;}
.ls1e{letter-spacing:0.308187px;}
.ls25{letter-spacing:0.317179px;}
.ls2{letter-spacing:0.358434px;}
.ls22{letter-spacing:0.382077px;}
.ls26{letter-spacing:0.382217px;}
.ls1b{letter-spacing:0.503134px;}
.ls18{letter-spacing:0.503269px;}
.ls17{letter-spacing:0.503273px;}
.ls1f{letter-spacing:0.503408px;}
.ls1{letter-spacing:0.506054px;}
.ls12{letter-spacing:0.539104px;}
.lsa{letter-spacing:0.555357px;}
.ls6{letter-spacing:0.558742px;}
.lsb{letter-spacing:0.558805px;}
.ls10{letter-spacing:0.645095px;}
.ls11{letter-spacing:0.645100px;}
.lsf{letter-spacing:0.645235px;}
.ls7{letter-spacing:0.769253px;}
.lsc{letter-spacing:0.818556px;}
.ls14{letter-spacing:0.960382px;}
.ls1d{letter-spacing:1.102100px;}
.ls9{letter-spacing:1.275375px;}
.ls15{letter-spacing:2.311339px;}
.ls19{letter-spacing:6.862163px;}
.ls13{letter-spacing:11.048828px;}
.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;}
}
.wse{word-spacing:-56.071350px;}
.ws6{word-spacing:-47.964600px;}
.ws7{word-spacing:-15.537825px;}
.wsf{word-spacing:-14.017838px;}
.ws3{word-spacing:-14.017050px;}
.ws0{word-spacing:-13.342275px;}
.ws8{word-spacing:-12.666713px;}
.ws1{word-spacing:-12.537671px;}
.wsa{word-spacing:-11.991150px;}
.wsc{word-spacing:-11.552042px;}
.ws4{word-spacing:-11.314913px;}
.ws10{word-spacing:-10.319816px;}
.ws11{word-spacing:-9.795555px;}
.wsd{word-spacing:-9.120004px;}
.ws5{word-spacing:-9.119497px;}
.ws9{word-spacing:-8.317443px;}
.wsb{word-spacing:-7.768890px;}
.ws2{word-spacing:0.000000px;}
._7{margin-left:-11.519782px;}
._6{margin-left:-9.628142px;}
._2{margin-left:-8.363229px;}
._9{margin-left:-6.308748px;}
._3{margin-left:-5.236655px;}
._8{margin-left:-4.052006px;}
._a{margin-left:-2.809042px;}
._1{margin-left:-1.236471px;}
._0{width:1.560580px;}
._c{width:2.899868px;}
._b{width:4.172920px;}
._e{width:5.435738px;}
._f{width:6.437314px;}
._10{width:7.596128px;}
._d{width:8.825486px;}
._17{width:9.958543px;}
._16{width:11.731670px;}
._1a{width:12.738491px;}
._1b{width:14.007432px;}
._14{width:15.681142px;}
._13{width:17.214342px;}
._18{width:18.557781px;}
._19{width:19.753355px;}
._11{width:21.092246px;}
._12{width:22.185418px;}
._1e{width:23.661672px;}
._5{width:25.187631px;}
._15{width:26.380530px;}
._1f{width:27.468246px;}
._1c{width:29.370367px;}
._1d{width:30.407827px;}
._4{width:53.264790px;}
.fc5{color:rgb(0,112,192);}
.fc3{color:transparent;}
.fc2{color:rgb(46,116,181);}
.fc7{color:rgb(68,84,106);}
.fc6{color:rgb(128,128,128);}
.fc4{color:rgb(89,89,89);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:31.075560px;}
.fs10{font-size:36.477990px;}
.fs13{font-size:36.480015px;}
.fs16{font-size:39.182220px;}
.fs5{font-size:42.560010px;}
.fsf{font-size:45.259650px;}
.fs6{font-size:45.262350px;}
.fs11{font-size:47.964600px;}
.fsb{font-size:50.663700px;}
.fs0{font-size:50.666850px;}
.fs14{font-size:50.761727px;}
.fs3{font-size:53.369100px;}
.fse{font-size:56.068200px;}
.fs1{font-size:56.071350px;}
.fsc{font-size:62.147700px;}
.fs4{font-size:62.151300px;}
.fs2{font-size:67.555350px;}
.fs12{font-size:73.098361px;}
.fsd{font-size:79.035746px;}
.fsa{font-size:101.333246px;}
.fs7{font-size:113.030920px;}
.fs8{font-size:135.366080px;}
.fs9{font-size:157.701240px;}
.y0{bottom:0.000000px;}
.y7{bottom:77.580025px;}
.y6{bottom:108.360008px;}
.y5{bottom:138.779983px;}
.y4{bottom:169.919975px;}
.y3{bottom:201.240006px;}
.y2{bottom:230.039977px;}
.y9b{bottom:243.179970px;}
.y6f{bottom:254.519989px;}
.y4b{bottom:255.240006px;}
.y2e{bottom:257.580025px;}
.y2c{bottom:261.720017px;}
.y4a{bottom:270.360008px;}
.y2b{bottom:278.639992px;}
.y109{bottom:291.960022px;}
.y156{bottom:292.679970px;}
.y49{bottom:293.759994px;}
.y99{bottom:295.379998px;}
.y2a{bottom:295.559967px;}
.y108{bottom:308.879998px;}
.ya7{bottom:309.419975px;}
.y6e{bottom:312.120002px;}
.y29{bottom:312.480011px;}
.y98{bottom:313.740006px;}
.y15a{bottom:316.620002px;}
.y155{bottom:317.519989px;}
.y12a{bottom:319.500000px;}
.ya6{bottom:323.460022px;}
.y102{bottom:323.639992px;}
.y107{bottom:325.799973px;}
.y6d{bottom:326.340019px;}
.y97{bottom:327.779983px;}
.y28{bottom:329.399986px;}
.ye9{bottom:331.919975px;}
.y129{bottom:334.799973px;}
.ya5{bottom:337.679970px;}
.y150{bottom:338.039977px;}
.y6c{bottom:340.379998px;}
.y159{bottom:341.460022px;}
.ycf{bottom:342.000000px;}
.y101{bottom:342.720017px;}
.y96{bottom:346.139992px;}
.y27{bottom:346.320030px;}
.ye8{bottom:350.460022px;}
.ya4{bottom:351.720017px;}
.y128{bottom:354.240006px;}
.y6b{bottom:354.419975px;}
.yce{bottom:356.039977px;}
.y14f{bottom:357.480011px;}
.y100{bottom:359.639992px;}
.yd8{bottom:360.179970px;}
.y105{bottom:360.360008px;}
.y26{bottom:363.240006px;}
.y95{bottom:364.500000px;}
.ya3{bottom:365.759994px;}
.y46{bottom:368.279983px;}
.y6a{bottom:368.639992px;}
.y127{bottom:369.360008px;}
.ycd{bottom:370.080025px;}
.y106{bottom:370.259994px;}
.yf9{bottom:374.399986px;}
.yff{bottom:376.559967px;}
.y14e{bottom:377.100013px;}
.y94{bottom:378.539977px;}
.ya2{bottom:379.980011px;}
.y25{bottom:380.159981px;}
.y69{bottom:382.679970px;}
.y104{bottom:382.860008px;}
.ycc{bottom:384.299973px;}
.yf8{bottom:388.440033px;}
.y126{bottom:388.799973px;}
.y10b{bottom:392.759994px;}
.yfe{bottom:393.480011px;}
.ya1{bottom:394.019989px;}
.y45{bottom:396.539977px;}
.y93{bottom:396.899986px;}
.y24{bottom:397.080025px;}
.ycb{bottom:402.480011px;}
.y125{bottom:404.100013px;}
.y10a{bottom:406.799973px;}
.yfd{bottom:410.399986px;}
.y68{bottom:410.940033px;}
.y103{bottom:411.120002px;}
.ya0{bottom:412.379998px;}
.y23{bottom:414.000000px;}
.y14d{bottom:415.980011px;}
.yf7{bottom:416.700027px;}
.yca{bottom:420.840019px;}
.y124{bottom:423.539977px;}
.y44{bottom:424.620002px;}
.yd7{bottom:425.159981px;}
.ye7{bottom:427.320030px;}
.y92{bottom:429.299973px;}
.y22{bottom:430.919975px;}
.yc9{bottom:435.059967px;}
.y14c{bottom:435.419975px;}
.y67{bottom:435.779983px;}
.y123{bottom:438.840019px;}
.y9f{bottom:440.820030px;}
.y91{bottom:443.519989px;}
.ye6{bottom:444.240006px;}
.y43{bottom:447.299973px;}
.y21{bottom:447.659981px;}
.yc8{bottom:449.100013px;}
.y66{bottom:452.700027px;}
.y14b{bottom:454.860008px;}
.yd6{bottom:457.559967px;}
.y122{bottom:458.279983px;}
.yfc{bottom:461.159981px;}
.y90{bottom:461.879998px;}
.yc7{bottom:463.139992px;}
.y20{bottom:463.860008px;}
.y65{bottom:469.620002px;}
.y121{bottom:473.399986px;}
.y14a{bottom:474.299973px;}
.y8f{bottom:475.919975px;}
.yc6{bottom:477.360008px;}
.yfb{bottom:478.080025px;}
.y1f{bottom:479.879998px;}
.y42{bottom:483.840019px;}
.y64{bottom:486.539977px;}
.yd5{bottom:489.960022px;}
.yc5{bottom:491.399986px;}
.y120{bottom:492.840019px;}
.y149{bottom:493.740006px;}
.yfa{bottom:495.000000px;}
.y1e{bottom:496.080025px;}
.y41{bottom:500.759994px;}
.y63{bottom:503.460022px;}
.y8e{bottom:504.179970px;}
.yc4{bottom:505.440033px;}
.y11f{bottom:508.139992px;}
.y9e{bottom:511.919975px;}
.y1d{bottom:512.460022px;}
.y148{bottom:513.179970px;}
.yd4{bottom:518.220017px;}
.yc3{bottom:519.659981px;}
.ye5{bottom:520.379998px;}
.y40{bottom:523.440033px;}
.y11e{bottom:527.580025px;}
.y1c{bottom:528.659981px;}
.y9d{bottom:528.840019px;}
.y147{bottom:532.620002px;}
.y62{bottom:535.139992px;}
.yd3{bottom:537.299973px;}
.y11d{bottom:542.879998px;}
.y10c{bottom:543.600013px;}
.y1b{bottom:544.860008px;}
.y9c{bottom:545.759994px;}
.yc2{bottom:547.919975px;}
.yd2{bottom:554.220017px;}
.y3f{bottom:559.980011px;}
.y1a{bottom:561.059967px;}
.y11c{bottom:562.320030px;}
.y8d{bottom:562.679970px;}
.y146{bottom:567.360008px;}
.yd1{bottom:571.139992px;}
.y3e{bottom:576.899986px;}
.y19{bottom:577.259994px;}
.y11b{bottom:577.440033px;}
.y8c{bottom:579.600013px;}
.y161{bottom:584.279983px;}
.y145{bottom:586.799973px;}
.y61{bottom:587.340019px;}
.yd0{bottom:588.059967px;}
.y18{bottom:593.460022px;}
.yc1{bottom:595.980011px;}
.y8b{bottom:596.519989px;}
.y11a{bottom:597.059967px;}
.y3d{bottom:599.580025px;}
.y60{bottom:601.559967px;}
.y144{bottom:602.100013px;}
.ye4{bottom:604.980011px;}
.y160{bottom:605.159981px;}
.y17{bottom:609.659981px;}
.yc0{bottom:612.899986px;}
.y8a{bottom:613.439999px;}
.y5f{bottom:615.600013px;}
.y119{bottom:616.500000px;}
.yf6{bottom:619.740006px;}
.y15f{bottom:620.279983px;}
.y143{bottom:621.540012px;}
.ye3{bottom:621.899986px;}
.y16{bottom:625.860008px;}
.y5e{bottom:629.639992px;}
.ybf{bottom:629.819995px;}
.y89{bottom:630.360008px;}
.y118{bottom:631.620002px;}
.y15e{bottom:635.579990px;}
.y154{bottom:635.759994px;}
.y3c{bottom:636.120002px;}
.y142{bottom:636.839985px;}
.ye2{bottom:638.819995px;}
.y15{bottom:642.240006px;}
.y5d{bottom:643.860008px;}
.ybe{bottom:646.740006px;}
.y88{bottom:647.279983px;}
.y117{bottom:651.060001px;}
.ye1{bottom:655.740006px;}
.y141{bottom:656.279983px;}
.y5c{bottom:657.899986px;}
.y14{bottom:658.439999px;}
.y3b{bottom:658.800007px;}
.y153{bottom:659.160015px;}
.ybd{bottom:663.660015px;}
.y87{bottom:664.199993px;}
.y15d{bottom:665.639992px;}
.y116{bottom:666.360008px;}
.y158{bottom:667.980011px;}
.y140{bottom:671.399986px;}
.y5b{bottom:671.939999px;}
.ye0{bottom:672.660015px;}
.y13{bottom:674.459988px;}
.ybc{bottom:680.579990px;}
.y86{bottom:681.120002px;}
.y115{bottom:685.800007px;}
.y5a{bottom:686.160015px;}
.ydf{bottom:689.579990px;}
.y15c{bottom:690.300007px;}
.y12{bottom:690.660015px;}
.y13f{bottom:690.839985px;}
.y157{bottom:693.000000px;}
.y3a{bottom:695.339985px;}
.ybb{bottom:697.500000px;}
.y85{bottom:698.040012px;}
.y59{bottom:700.199993px;}
.y114{bottom:701.100013px;}
.yde{bottom:706.500000px;}
.y13e{bottom:710.279983px;}
.y39{bottom:712.259994px;}
.y58{bottom:714.240006px;}
.yba{bottom:714.420010px;}
.y84{bottom:714.959988px;}
.y11{bottom:719.819995px;}
.y113{bottom:720.540012px;}
.ydd{bottom:723.420010px;}
.y13d{bottom:725.579990px;}
.y57{bottom:728.459988px;}
.yb9{bottom:731.339985px;}
.y83{bottom:731.879998px;}
.y38{bottom:734.939999px;}
.y112{bottom:735.660015px;}
.ydc{bottom:740.339985px;}
.y56{bottom:742.500000px;}
.y13c{bottom:745.019989px;}
.yb8{bottom:748.259994px;}
.y82{bottom:748.800007px;}
.y111{bottom:750.959988px;}
.y10{bottom:751.500000px;}
.y55{bottom:756.540012px;}
.ydb{bottom:757.259994px;}
.y13b{bottom:760.319995px;}
.yb7{bottom:765.180004px;}
.y81{bottom:765.720017px;}
.yf{bottom:769.500000px;}
.y110{bottom:770.399986px;}
.y54{bottom:770.759994px;}
.y37{bottom:771.480011px;}
.yda{bottom:774.180004px;}
.y13a{bottom:779.759994px;}
.yb6{bottom:782.100013px;}
.y80{bottom:782.639992px;}
.y10f{bottom:785.699993px;}
.ye{bottom:786.240006px;}
.y53{bottom:788.225072px;}
.y36{bottom:788.399986px;}
.yd9{bottom:791.100013px;}
.yb5{bottom:799.019989px;}
.y139{bottom:799.199993px;}
.y7f{bottom:799.560001px;}
.y10e{bottom:800.819995px;}
.yf5{bottom:808.019989px;}
.y35{bottom:811.079990px;}
.y138{bottom:814.500000px;}
.y70{bottom:815.220017px;}
.yb4{bottom:815.939999px;}
.y7e{bottom:816.480011px;}
.y52{bottom:819.899986px;}
.yd{bottom:820.980011px;}
.yf4{bottom:824.939999px;}
.y10d{bottom:831.240006px;}
.yb3{bottom:832.860008px;}
.y7d{bottom:833.399986px;}
.y137{bottom:833.939999px;}
.yf3{bottom:841.860008px;}
.y34{bottom:847.620002px;}
.y136{bottom:849.060001px;}
.yb2{bottom:849.779983px;}
.y7c{bottom:850.319995px;}
.yf2{bottom:858.779983px;}
.y135{bottom:864.360008px;}
.y33{bottom:864.540012px;}
.yb1{bottom:866.699993px;}
.y7b{bottom:867.240006px;}
.y51{bottom:873.896540px;}
.yf1{bottom:875.699993px;}
.yb0{bottom:883.620002px;}
.y134{bottom:883.800007px;}
.y7a{bottom:884.160015px;}
.y32{bottom:887.220017px;}
.yf0{bottom:892.620002px;}
.y50{bottom:896.400700px;}
.yb{bottom:898.013321px;}
.yc{bottom:898.027600px;}
.y133{bottom:899.100013px;}
.yaf{bottom:900.539995px;}
.y79{bottom:901.080008px;}
.yef{bottom:909.539995px;}
.yae{bottom:917.460004px;}
.y78{bottom:918.000000px;}
.y132{bottom:918.539996px;}
.y4f{bottom:919.074402px;}
.y31{bottom:923.759994px;}
.yee{bottom:926.460004px;}
.y131{bottom:933.659998px;}
.yad{bottom:934.379998px;}
.y77{bottom:934.919992px;}
.yed{bottom:943.379998px;}
.y30{bottom:946.439999px;}
.yac{bottom:951.300007px;}
.y76{bottom:951.840002px;}
.y130{bottom:953.099997px;}
.yec{bottom:960.300007px;}
.yab{bottom:968.219999px;}
.y12f{bottom:968.400003px;}
.y75{bottom:968.759994px;}
.yeb{bottom:977.219999px;}
.yaa{bottom:985.139992px;}
.y74{bottom:985.680004px;}
.y4e{bottom:986.756425px;}
.y12e{bottom:987.840002px;}
.yea{bottom:994.139992px;}
.y2f{bottom:998.099997px;}
.ya9{bottom:1002.060001px;}
.y73{bottom:1002.599997px;}
.y12d{bottom:1003.139992px;}
.y152{bottom:1010.159998px;}
.y4d{bottom:1016.099997px;}
.y72{bottom:1019.520006px;}
.y12c{bottom:1022.580008px;}
.ya{bottom:1032.659998px;}
.ya8{bottom:1033.740006px;}
.y4c{bottom:1034.099997px;}
.y15b{bottom:1035.180004px;}
.y151{bottom:1035.360008px;}
.y71{bottom:1036.439999px;}
.y12b{bottom:1037.699993px;}
.y48{bottom:1055.879998px;}
.y9{bottom:1056.060001px;}
.y47{bottom:1072.799998px;}
.y9a{bottom:1072.800866px;}
.y2d{bottom:1072.980002px;}
.y8{bottom:1074.060001px;}
.y1{bottom:1094.400003px;}
.h6{height:32.003133px;}
.h15{height:34.035166px;}
.h14{height:34.357455px;}
.h22{height:34.380875px;}
.hd{height:36.290844px;}
.h1{height:36.293100px;}
.h2a{height:36.416798px;}
.h1b{height:36.886852px;}
.h21{height:37.104641px;}
.h7{height:37.974103px;}
.h18{height:38.170439px;}
.h26{height:38.819659px;}
.h13{height:39.533323px;}
.h25{height:39.539538px;}
.h10{height:40.162133px;}
.h2{height:40.164390px;}
.h19{height:40.423291px;}
.h24{height:40.619925px;}
.h1d{height:40.619930px;}
.h23{height:40.619997px;}
.h20{height:40.620065px;}
.h1f{height:40.620069px;}
.hb{height:40.629826px;}
.h29{height:41.760568px;}
.h4{height:44.519510px;}
.h11{height:45.569394px;}
.h28{height:45.570840px;}
.h27{height:45.570912px;}
.h1c{height:45.570980px;}
.h12{height:46.212462px;}
.hc{height:46.215058px;}
.h1a{height:46.734864px;}
.h1e{height:47.255444px;}
.h3{height:48.390478px;}
.h17{height:54.930849px;}
.h16{height:54.966541px;}
.hf{height:56.613984px;}
.he{height:61.813899px;}
.h5{height:61.817480px;}
.ha{height:83.520761px;}
.h8{height:96.979225px;}
.h9{height:106.802548px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:114.299998px;}
.x1{left:198.900003px;}
.x15{left:216.719999px;}
.xc{left:218.699993px;}
.x1b{left:238.680005px;}
.x8{left:257.579187px;}
.x22{left:277.379998px;}
.x1d{left:289.800007px;}
.x1f{left:291.420010px;}
.xa{left:318.959988px;}
.x4{left:345.240006px;}
.x11{left:354.240006px;}
.x18{left:362.523575px;}
.x10{left:381.240006px;}
.x5{left:396.540012px;}
.x14{left:401.939999px;}
.xb{left:411.839985px;}
.x16{left:415.259994px;}
.xd{left:423.540012px;}
.xe{left:425.699993px;}
.x3{left:432.540012px;}
.x2{left:458.639992px;}
.x19{left:562.680005px;}
.x13{left:596.879998px;}
.x23{left:612.000000px;}
.x12{left:636.120002px;}
.x7{left:656.100014px;}
.x9{left:667.798534px;}
.x1e{left:690.480011px;}
.x1c{left:692.279983px;}
.x6{left:695.340019px;}
.x20{left:698.940033px;}
.x21{left:704.879998px;}
.xf{left:718.379998px;}
.x1a{left:757.980011px;}
@media print{
.v4{vertical-align:-12.799928pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.160032pt;}
.v3{vertical-align:15.359984pt;}
.v1{vertical-align:17.279908pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.039360pt;}
.ls20{letter-spacing:0.039484pt;}
.ls1a{letter-spacing:0.042896pt;}
.ls24{letter-spacing:0.047268pt;}
.ls23{letter-spacing:0.085241pt;}
.ls4{letter-spacing:0.087654pt;}
.ls8{letter-spacing:0.087658pt;}
.ls3{letter-spacing:0.182288pt;}
.ls5{letter-spacing:0.182352pt;}
.lse{letter-spacing:0.213657pt;}
.lsd{letter-spacing:0.220716pt;}
.ls21{letter-spacing:0.221204pt;}
.ls1c{letter-spacing:0.273820pt;}
.ls1e{letter-spacing:0.273944pt;}
.ls25{letter-spacing:0.281937pt;}
.ls2{letter-spacing:0.318608pt;}
.ls22{letter-spacing:0.339624pt;}
.ls26{letter-spacing:0.339748pt;}
.ls1b{letter-spacing:0.447230pt;}
.ls18{letter-spacing:0.447350pt;}
.ls17{letter-spacing:0.447354pt;}
.ls1f{letter-spacing:0.447474pt;}
.ls1{letter-spacing:0.449826pt;}
.ls12{letter-spacing:0.479203pt;}
.lsa{letter-spacing:0.493650pt;}
.ls6{letter-spacing:0.496659pt;}
.lsb{letter-spacing:0.496715pt;}
.ls10{letter-spacing:0.573418pt;}
.ls11{letter-spacing:0.573422pt;}
.lsf{letter-spacing:0.573542pt;}
.ls7{letter-spacing:0.683781pt;}
.lsc{letter-spacing:0.727606pt;}
.ls14{letter-spacing:0.853673pt;}
.ls1d{letter-spacing:0.979644pt;}
.ls9{letter-spacing:1.133666pt;}
.ls15{letter-spacing:2.054524pt;}
.ls19{letter-spacing:6.099700pt;}
.ls13{letter-spacing:9.821180pt;}
.wse{word-spacing:-49.841200pt;}
.ws6{word-spacing:-42.635200pt;}
.ws7{word-spacing:-13.811400pt;}
.wsf{word-spacing:-12.460300pt;}
.ws3{word-spacing:-12.459600pt;}
.ws0{word-spacing:-11.859800pt;}
.ws8{word-spacing:-11.259300pt;}
.ws1{word-spacing:-11.144596pt;}
.wsa{word-spacing:-10.658800pt;}
.wsc{word-spacing:-10.268482pt;}
.ws4{word-spacing:-10.057700pt;}
.ws10{word-spacing:-9.173170pt;}
.ws11{word-spacing:-8.707160pt;}
.wsd{word-spacing:-8.106670pt;}
.ws5{word-spacing:-8.106220pt;}
.ws9{word-spacing:-7.393283pt;}
.wsb{word-spacing:-6.905680pt;}
.ws2{word-spacing:0.000000pt;}
._7{margin-left:-10.239806pt;}
._6{margin-left:-8.558348pt;}
._2{margin-left:-7.433981pt;}
._9{margin-left:-5.607776pt;}
._3{margin-left:-4.654805pt;}
._8{margin-left:-3.601783pt;}
._a{margin-left:-2.496926pt;}
._1{margin-left:-1.099085pt;}
._0{width:1.387182pt;}
._c{width:2.577661pt;}
._b{width:3.709262pt;}
._e{width:4.831767pt;}
._f{width:5.722057pt;}
._10{width:6.752114pt;}
._d{width:7.844877pt;}
._17{width:8.852038pt;}
._16{width:10.428151pt;}
._1a{width:11.323103pt;}
._1b{width:12.451051pt;}
._14{width:13.938792pt;}
._13{width:15.301638pt;}
._18{width:16.495805pt;}
._19{width:17.558538pt;}
._11{width:18.748663pt;}
._12{width:19.720372pt;}
._1e{width:21.032597pt;}
._5{width:22.389006pt;}
._15{width:23.449360pt;}
._1f{width:24.416219pt;}
._1c{width:26.106993pt;}
._1d{width:27.029179pt;}
._4{width:47.346480pt;}
.fs15{font-size:27.622720pt;}
.fs10{font-size:32.424880pt;}
.fs13{font-size:32.426680pt;}
.fs16{font-size:34.828640pt;}
.fs5{font-size:37.831120pt;}
.fsf{font-size:40.230800pt;}
.fs6{font-size:40.233200pt;}
.fs11{font-size:42.635200pt;}
.fsb{font-size:45.034400pt;}
.fs0{font-size:45.037200pt;}
.fs14{font-size:45.121535pt;}
.fs3{font-size:47.439200pt;}
.fse{font-size:49.838400pt;}
.fs1{font-size:49.841200pt;}
.fsc{font-size:55.242400pt;}
.fs4{font-size:55.245600pt;}
.fs2{font-size:60.049200pt;}
.fs12{font-size:64.976321pt;}
.fsd{font-size:70.253996pt;}
.fsa{font-size:90.073996pt;}
.fs7{font-size:100.471929pt;}
.fs8{font-size:120.325404pt;}
.fs9{font-size:140.178880pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:68.960022pt;}
.y6{bottom:96.320007pt;}
.y5{bottom:123.359985pt;}
.y4{bottom:151.039978pt;}
.y3{bottom:178.880005pt;}
.y2{bottom:204.479980pt;}
.y9b{bottom:216.159973pt;}
.y6f{bottom:226.239990pt;}
.y4b{bottom:226.880005pt;}
.y2e{bottom:228.960022pt;}
.y2c{bottom:232.640015pt;}
.y4a{bottom:240.320007pt;}
.y2b{bottom:247.679993pt;}
.y109{bottom:259.520020pt;}
.y156{bottom:260.159973pt;}
.y49{bottom:261.119995pt;}
.y99{bottom:262.559998pt;}
.y2a{bottom:262.719971pt;}
.y108{bottom:274.559998pt;}
.ya7{bottom:275.039978pt;}
.y6e{bottom:277.440002pt;}
.y29{bottom:277.760010pt;}
.y98{bottom:278.880005pt;}
.y15a{bottom:281.440002pt;}
.y155{bottom:282.239990pt;}
.y12a{bottom:284.000000pt;}
.ya6{bottom:287.520020pt;}
.y102{bottom:287.679993pt;}
.y107{bottom:289.599976pt;}
.y6d{bottom:290.080017pt;}
.y97{bottom:291.359985pt;}
.y28{bottom:292.799988pt;}
.ye9{bottom:295.039978pt;}
.y129{bottom:297.599976pt;}
.ya5{bottom:300.159973pt;}
.y150{bottom:300.479980pt;}
.y6c{bottom:302.559998pt;}
.y159{bottom:303.520020pt;}
.ycf{bottom:304.000000pt;}
.y101{bottom:304.640015pt;}
.y96{bottom:307.679993pt;}
.y27{bottom:307.840027pt;}
.ye8{bottom:311.520020pt;}
.ya4{bottom:312.640015pt;}
.y128{bottom:314.880005pt;}
.y6b{bottom:315.039978pt;}
.yce{bottom:316.479980pt;}
.y14f{bottom:317.760010pt;}
.y100{bottom:319.679993pt;}
.yd8{bottom:320.159973pt;}
.y105{bottom:320.320007pt;}
.y26{bottom:322.880005pt;}
.y95{bottom:324.000000pt;}
.ya3{bottom:325.119995pt;}
.y46{bottom:327.359985pt;}
.y6a{bottom:327.679993pt;}
.y127{bottom:328.320007pt;}
.ycd{bottom:328.960022pt;}
.y106{bottom:329.119995pt;}
.yf9{bottom:332.799988pt;}
.yff{bottom:334.719971pt;}
.y14e{bottom:335.200012pt;}
.y94{bottom:336.479980pt;}
.ya2{bottom:337.760010pt;}
.y25{bottom:337.919983pt;}
.y69{bottom:340.159973pt;}
.y104{bottom:340.320007pt;}
.ycc{bottom:341.599976pt;}
.yf8{bottom:345.280029pt;}
.y126{bottom:345.599976pt;}
.y10b{bottom:349.119995pt;}
.yfe{bottom:349.760010pt;}
.ya1{bottom:350.239990pt;}
.y45{bottom:352.479980pt;}
.y93{bottom:352.799988pt;}
.y24{bottom:352.960022pt;}
.ycb{bottom:357.760010pt;}
.y125{bottom:359.200012pt;}
.y10a{bottom:361.599976pt;}
.yfd{bottom:364.799988pt;}
.y68{bottom:365.280029pt;}
.y103{bottom:365.440002pt;}
.ya0{bottom:366.559998pt;}
.y23{bottom:368.000000pt;}
.y14d{bottom:369.760010pt;}
.yf7{bottom:370.400024pt;}
.yca{bottom:374.080017pt;}
.y124{bottom:376.479980pt;}
.y44{bottom:377.440002pt;}
.yd7{bottom:377.919983pt;}
.ye7{bottom:379.840027pt;}
.y92{bottom:381.599976pt;}
.y22{bottom:383.039978pt;}
.yc9{bottom:386.719971pt;}
.y14c{bottom:387.039978pt;}
.y67{bottom:387.359985pt;}
.y123{bottom:390.080017pt;}
.y9f{bottom:391.840027pt;}
.y91{bottom:394.239990pt;}
.ye6{bottom:394.880005pt;}
.y43{bottom:397.599976pt;}
.y21{bottom:397.919983pt;}
.yc8{bottom:399.200012pt;}
.y66{bottom:402.400024pt;}
.y14b{bottom:404.320007pt;}
.yd6{bottom:406.719971pt;}
.y122{bottom:407.359985pt;}
.yfc{bottom:409.919983pt;}
.y90{bottom:410.559998pt;}
.yc7{bottom:411.679993pt;}
.y20{bottom:412.320007pt;}
.y65{bottom:417.440002pt;}
.y121{bottom:420.799988pt;}
.y14a{bottom:421.599976pt;}
.y8f{bottom:423.039978pt;}
.yc6{bottom:424.320007pt;}
.yfb{bottom:424.960022pt;}
.y1f{bottom:426.559998pt;}
.y42{bottom:430.080017pt;}
.y64{bottom:432.479980pt;}
.yd5{bottom:435.520020pt;}
.yc5{bottom:436.799988pt;}
.y120{bottom:438.080017pt;}
.y149{bottom:438.880005pt;}
.yfa{bottom:440.000000pt;}
.y1e{bottom:440.960022pt;}
.y41{bottom:445.119995pt;}
.y63{bottom:447.520020pt;}
.y8e{bottom:448.159973pt;}
.yc4{bottom:449.280029pt;}
.y11f{bottom:451.679993pt;}
.y9e{bottom:455.039978pt;}
.y1d{bottom:455.520020pt;}
.y148{bottom:456.159973pt;}
.yd4{bottom:460.640015pt;}
.yc3{bottom:461.919983pt;}
.ye5{bottom:462.559998pt;}
.y40{bottom:465.280029pt;}
.y11e{bottom:468.960022pt;}
.y1c{bottom:469.919983pt;}
.y9d{bottom:470.080017pt;}
.y147{bottom:473.440002pt;}
.y62{bottom:475.679993pt;}
.yd3{bottom:477.599976pt;}
.y11d{bottom:482.559998pt;}
.y10c{bottom:483.200012pt;}
.y1b{bottom:484.320007pt;}
.y9c{bottom:485.119995pt;}
.yc2{bottom:487.039978pt;}
.yd2{bottom:492.640015pt;}
.y3f{bottom:497.760010pt;}
.y1a{bottom:498.719971pt;}
.y11c{bottom:499.840027pt;}
.y8d{bottom:500.159973pt;}
.y146{bottom:504.320007pt;}
.yd1{bottom:507.679993pt;}
.y3e{bottom:512.799988pt;}
.y19{bottom:513.119995pt;}
.y11b{bottom:513.280029pt;}
.y8c{bottom:515.200012pt;}
.y161{bottom:519.359985pt;}
.y145{bottom:521.599976pt;}
.y61{bottom:522.080017pt;}
.yd0{bottom:522.719971pt;}
.y18{bottom:527.520020pt;}
.yc1{bottom:529.760010pt;}
.y8b{bottom:530.239990pt;}
.y11a{bottom:530.719971pt;}
.y3d{bottom:532.960022pt;}
.y60{bottom:534.719971pt;}
.y144{bottom:535.200012pt;}
.ye4{bottom:537.760010pt;}
.y160{bottom:537.919983pt;}
.y17{bottom:541.919983pt;}
.yc0{bottom:544.799988pt;}
.y8a{bottom:545.279999pt;}
.y5f{bottom:547.200012pt;}
.y119{bottom:548.000000pt;}
.yf6{bottom:550.880005pt;}
.y15f{bottom:551.359985pt;}
.y143{bottom:552.480011pt;}
.ye3{bottom:552.799988pt;}
.y16{bottom:556.320007pt;}
.y5e{bottom:559.679993pt;}
.ybf{bottom:559.839996pt;}
.y89{bottom:560.320007pt;}
.y118{bottom:561.440002pt;}
.y15e{bottom:564.959991pt;}
.y154{bottom:565.119995pt;}
.y3c{bottom:565.440002pt;}
.y142{bottom:566.079987pt;}
.ye2{bottom:567.839996pt;}
.y15{bottom:570.880005pt;}
.y5d{bottom:572.320007pt;}
.ybe{bottom:574.880005pt;}
.y88{bottom:575.359985pt;}
.y117{bottom:578.720001pt;}
.ye1{bottom:582.880005pt;}
.y141{bottom:583.359985pt;}
.y5c{bottom:584.799988pt;}
.y14{bottom:585.279999pt;}
.y3b{bottom:585.600006pt;}
.y153{bottom:585.920013pt;}
.ybd{bottom:589.920013pt;}
.y87{bottom:590.399994pt;}
.y15d{bottom:591.679993pt;}
.y116{bottom:592.320007pt;}
.y158{bottom:593.760010pt;}
.y140{bottom:596.799988pt;}
.y5b{bottom:597.279999pt;}
.ye0{bottom:597.920013pt;}
.y13{bottom:599.519989pt;}
.ybc{bottom:604.959991pt;}
.y86{bottom:605.440002pt;}
.y115{bottom:609.600006pt;}
.y5a{bottom:609.920013pt;}
.ydf{bottom:612.959991pt;}
.y15c{bottom:613.600006pt;}
.y12{bottom:613.920013pt;}
.y13f{bottom:614.079987pt;}
.y157{bottom:616.000000pt;}
.y3a{bottom:618.079987pt;}
.ybb{bottom:620.000000pt;}
.y85{bottom:620.480011pt;}
.y59{bottom:622.399994pt;}
.y114{bottom:623.200012pt;}
.yde{bottom:628.000000pt;}
.y13e{bottom:631.359985pt;}
.y39{bottom:633.119995pt;}
.y58{bottom:634.880005pt;}
.yba{bottom:635.040009pt;}
.y84{bottom:635.519989pt;}
.y11{bottom:639.839996pt;}
.y113{bottom:640.480011pt;}
.ydd{bottom:643.040009pt;}
.y13d{bottom:644.959991pt;}
.y57{bottom:647.519989pt;}
.yb9{bottom:650.079987pt;}
.y83{bottom:650.559998pt;}
.y38{bottom:653.279999pt;}
.y112{bottom:653.920013pt;}
.ydc{bottom:658.079987pt;}
.y56{bottom:660.000000pt;}
.y13c{bottom:662.239990pt;}
.yb8{bottom:665.119995pt;}
.y82{bottom:665.600006pt;}
.y111{bottom:667.519989pt;}
.y10{bottom:668.000000pt;}
.y55{bottom:672.480011pt;}
.ydb{bottom:673.119995pt;}
.y13b{bottom:675.839996pt;}
.yb7{bottom:680.160004pt;}
.y81{bottom:680.640015pt;}
.yf{bottom:684.000000pt;}
.y110{bottom:684.799988pt;}
.y54{bottom:685.119995pt;}
.y37{bottom:685.760010pt;}
.yda{bottom:688.160004pt;}
.y13a{bottom:693.119995pt;}
.yb6{bottom:695.200012pt;}
.y80{bottom:695.679993pt;}
.y10f{bottom:698.399994pt;}
.ye{bottom:698.880005pt;}
.y53{bottom:700.644508pt;}
.y36{bottom:700.799988pt;}
.yd9{bottom:703.200012pt;}
.yb5{bottom:710.239990pt;}
.y139{bottom:710.399994pt;}
.y7f{bottom:710.720001pt;}
.y10e{bottom:711.839996pt;}
.yf5{bottom:718.239990pt;}
.y35{bottom:720.959991pt;}
.y138{bottom:724.000000pt;}
.y70{bottom:724.640015pt;}
.yb4{bottom:725.279999pt;}
.y7e{bottom:725.760010pt;}
.y52{bottom:728.799988pt;}
.yd{bottom:729.760010pt;}
.yf4{bottom:733.279999pt;}
.y10d{bottom:738.880005pt;}
.yb3{bottom:740.320007pt;}
.y7d{bottom:740.799988pt;}
.y137{bottom:741.279999pt;}
.yf3{bottom:748.320007pt;}
.y34{bottom:753.440002pt;}
.y136{bottom:754.720001pt;}
.yb2{bottom:755.359985pt;}
.y7c{bottom:755.839996pt;}
.yf2{bottom:763.359985pt;}
.y135{bottom:768.320007pt;}
.y33{bottom:768.480011pt;}
.yb1{bottom:770.399994pt;}
.y7b{bottom:770.880005pt;}
.y51{bottom:776.796925pt;}
.yf1{bottom:778.399994pt;}
.yb0{bottom:785.440002pt;}
.y134{bottom:785.600006pt;}
.y7a{bottom:785.920013pt;}
.y32{bottom:788.640015pt;}
.yf0{bottom:793.440002pt;}
.y50{bottom:796.800622pt;}
.yb{bottom:798.234063pt;}
.yc{bottom:798.246756pt;}
.y133{bottom:799.200012pt;}
.yaf{bottom:800.479996pt;}
.y79{bottom:800.960007pt;}
.yef{bottom:808.479996pt;}
.yae{bottom:815.520004pt;}
.y78{bottom:816.000000pt;}
.y132{bottom:816.479996pt;}
.y4f{bottom:816.955024pt;}
.y31{bottom:821.119995pt;}
.yee{bottom:823.520004pt;}
.y131{bottom:829.919998pt;}
.yad{bottom:830.559998pt;}
.y77{bottom:831.039993pt;}
.yed{bottom:838.559998pt;}
.y30{bottom:841.279999pt;}
.yac{bottom:845.600006pt;}
.y76{bottom:846.080002pt;}
.y130{bottom:847.199997pt;}
.yec{bottom:853.600006pt;}
.yab{bottom:860.639999pt;}
.y12f{bottom:860.800003pt;}
.y75{bottom:861.119995pt;}
.yeb{bottom:868.639999pt;}
.yaa{bottom:875.679993pt;}
.y74{bottom:876.160004pt;}
.y4e{bottom:877.116822pt;}
.y12e{bottom:878.080002pt;}
.yea{bottom:883.679993pt;}
.y2f{bottom:887.199997pt;}
.ya9{bottom:890.720001pt;}
.y73{bottom:891.199997pt;}
.y12d{bottom:891.679993pt;}
.y152{bottom:897.919998pt;}
.y4d{bottom:903.199997pt;}
.y72{bottom:906.240005pt;}
.y12c{bottom:908.960007pt;}
.ya{bottom:917.919998pt;}
.ya8{bottom:918.880005pt;}
.y4c{bottom:919.199997pt;}
.y15b{bottom:920.160004pt;}
.y151{bottom:920.320007pt;}
.y71{bottom:921.279999pt;}
.y12b{bottom:922.399994pt;}
.y48{bottom:938.559998pt;}
.y9{bottom:938.720001pt;}
.y47{bottom:953.599998pt;}
.y9a{bottom:953.600770pt;}
.y2d{bottom:953.760002pt;}
.y8{bottom:954.720001pt;}
.y1{bottom:972.800003pt;}
.h6{height:28.447229pt;}
.h15{height:30.253480pt;}
.h14{height:30.539960pt;}
.h22{height:30.560778pt;}
.hd{height:32.258528pt;}
.h1{height:32.260533pt;}
.h2a{height:32.370488pt;}
.h1b{height:32.788313pt;}
.h21{height:32.981903pt;}
.h7{height:33.754758pt;}
.h18{height:33.929279pt;}
.h26{height:34.506364pt;}
.h13{height:35.140731pt;}
.h25{height:35.146256pt;}
.h10{height:35.699674pt;}
.h2{height:35.701680pt;}
.h19{height:35.931814pt;}
.h24{height:36.106600pt;}
.h1d{height:36.106604pt;}
.h23{height:36.106664pt;}
.h20{height:36.106724pt;}
.h1f{height:36.106728pt;}
.hb{height:36.115401pt;}
.h29{height:37.120505pt;}
.h4{height:39.572898pt;}
.h11{height:40.506128pt;}
.h28{height:40.507414pt;}
.h27{height:40.507478pt;}
.h1c{height:40.507538pt;}
.h12{height:41.077744pt;}
.hc{height:41.080052pt;}
.h1a{height:41.542102pt;}
.h1e{height:42.004839pt;}
.h3{height:43.013758pt;}
.h17{height:48.827421pt;}
.h16{height:48.859148pt;}
.hf{height:50.323541pt;}
.he{height:54.945688pt;}
.h5{height:54.948871pt;}
.ha{height:74.240676pt;}
.h8{height:86.203756pt;}
.h9{height:94.935599pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:101.599998pt;}
.x1{left:176.800003pt;}
.x15{left:192.639999pt;}
.xc{left:194.399994pt;}
.x1b{left:212.160004pt;}
.x8{left:228.959277pt;}
.x22{left:246.559998pt;}
.x1d{left:257.600006pt;}
.x1f{left:259.040009pt;}
.xa{left:283.519989pt;}
.x4{left:306.880005pt;}
.x11{left:314.880005pt;}
.x18{left:322.243178pt;}
.x10{left:338.880005pt;}
.x5{left:352.480011pt;}
.x14{left:357.279999pt;}
.xb{left:366.079987pt;}
.x16{left:369.119995pt;}
.xd{left:376.480011pt;}
.xe{left:378.399994pt;}
.x3{left:384.480011pt;}
.x2{left:407.679993pt;}
.x19{left:500.160004pt;}
.x13{left:530.559998pt;}
.x23{left:544.000000pt;}
.x12{left:565.440002pt;}
.x7{left:583.200012pt;}
.x9{left:593.598697pt;}
.x1e{left:613.760010pt;}
.x1c{left:615.359985pt;}
.x6{left:618.080017pt;}
.x20{left:621.280029pt;}
.x21{left:626.559998pt;}
.xf{left:638.559998pt;}
.x1a{left:673.760010pt;}
}




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