
    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_f6db6aad0c5b5a27a562615f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9a0d28f0e247460f4013d7a1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8206eb480d601d3f37319c71.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_faa93b547bcc17a18f6bcc67.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9f93f77d87e458c7bcfeeddc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_d17a4f5c34bbb1da6f2a7d35.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.986816;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_3f098c3bd7083948ce31a874.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.052734;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_2bbd7cc6f11d770ccdb00b7a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.686523;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_5c0d2d511506565dc4f8d890.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a8f30eb9703072df676fb5e2.woff2')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_fe9a8ff406fe20e8b77f2f40.woff2')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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7f808c13ef62a3c3b7feee6c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.866699;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_d7feb43df179a73f7ef09a3b.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_397b2e4fa52b7deee6eb7644.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3f3fb4fda64cea18cb3db4b4.woff2')format("woff");}.fff{font-family:fff;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;}
.m5{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-2.159999px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018600px;}
.ls2{letter-spacing:0.278312px;}
.ls6{letter-spacing:0.278451px;}
.ls5{letter-spacing:0.278524px;}
.ls3{letter-spacing:0.278696px;}
.ls4{letter-spacing:0.278725px;}
.ls7{letter-spacing:0.278850px;}
.lsc{letter-spacing:0.318178px;}
.lsa{letter-spacing:0.869940px;}
.lse{letter-spacing:3.886258px;}
.lsd{letter-spacing:3.918658px;}
.lsb{letter-spacing:39.907784px;}
.ls9{letter-spacing:39.940124px;}
.ls0{letter-spacing:1286.892170px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-35.855986px;}
.ws4{word-spacing:-32.418587px;}
.ws3{word-spacing:-32.399987px;}
.wsa{word-spacing:-18.534171px;}
.ws8{word-spacing:-18.215993px;}
.ws9{word-spacing:-16.433993px;}
.ws2{word-spacing:-15.011994px;}
.ws1{word-spacing:-14.939994px;}
.ws5{word-spacing:-14.849994px;}
.ws0{word-spacing:-13.505755px;}
.ws6{word-spacing:0.000000px;}
._18{margin-left:-5.299305px;}
._3{margin-left:-3.814397px;}
._2{margin-left:-2.605740px;}
._1{margin-left:-1.570800px;}
._0{width:1.324710px;}
._6{width:2.356745px;}
._8{width:3.554787px;}
._16{width:5.061964px;}
._17{width:6.177707px;}
._15{width:7.411190px;}
._c{width:8.624712px;}
._5{width:10.096276px;}
._13{width:11.967995px;}
._b{width:13.408313px;}
._19{width:14.600834px;}
._4{width:16.417332px;}
._7{width:17.776198px;}
._10{width:18.782419px;}
._14{width:19.844889px;}
._38{width:20.897278px;}
._2a{width:21.916487px;}
._a{width:23.054965px;}
._9{width:24.103826px;}
._d{width:25.161369px;}
._e{width:26.732387px;}
._33{width:27.746201px;}
._39{width:28.981694px;}
._f{width:32.632787px;}
._36{width:35.238258px;}
._27{width:38.459132px;}
._1f{width:41.090730px;}
._25{width:44.430830px;}
._12{width:48.039689px;}
._11{width:49.146870px;}
._20{width:50.196378px;}
._2d{width:52.207272px;}
._22{width:56.654774px;}
._1e{width:58.017003px;}
._26{width:61.060347px;}
._29{width:68.291891px;}
._2b{width:70.486320px;}
._34{width:72.089439px;}
._24{width:73.116501px;}
._2e{width:75.280380px;}
._1a{width:77.011974px;}
._2c{width:80.928043px;}
._32{width:90.398028px;}
._21{width:104.744196px;}
._1d{width:109.420062px;}
._31{width:112.328633px;}
._23{width:139.153200px;}
._1c{width:141.777806px;}
._28{width:147.311988px;}
._30{width:219.109402px;}
._37{width:231.000294px;}
._2f{width:245.572915px;}
._35{width:353.043453px;}
._1b{width:546.366057px;}
.fcc{color:transparent;}
.fcb{color:rgb(0,101,204);}
.fc8{color:rgb(44,62,80);}
.fc5{color:rgb(15,17,21);}
.fc7{color:rgb(83,129,53);}
.fc6{color:rgb(70,120,134);}
.fc4{color:rgb(0,32,96);}
.fca{color:rgb(0,112,192);}
.fc3{color:rgb(192,0,0);}
.fc9{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.879999px;}
.fs1{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs3{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.fs4{font-size:84.239966px;}
.y6{bottom:-8.639991px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.yed{bottom:0.178956px;}
.y86{bottom:3.059109px;}
.y3d{bottom:3.239326px;}
.y15{bottom:3.959053px;}
.yb{bottom:3.960038px;}
.yf2{bottom:4.318990px;}
.yc{bottom:32.880287px;}
.ya{bottom:51.600240px;}
.y8{bottom:55.560278px;}
.y9{bottom:56.100278px;}
.y3c{bottom:180.660600px;}
.y14f{bottom:181.379927px;}
.y72{bottom:186.779925px;}
.y11f{bottom:187.499925px;}
.ybe{bottom:190.739924px;}
.y13b{bottom:198.659921px;}
.y14e{bottom:203.339919px;}
.y71{bottom:208.739917px;}
.y11e{bottom:209.459916px;}
.yeb{bottom:209.819916px;}
.ya4{bottom:211.619915px;}
.y47{bottom:214.499914px;}
.yd3{bottom:224.759910px;}
.y14d{bottom:225.299910px;}
.ya3{bottom:228.899908px;}
.y70{bottom:230.699908px;}
.y11d{bottom:231.419907px;}
.y16e{bottom:233.579907px;}
.y10c{bottom:234.659906px;}
.y46{bottom:237.719905px;}
.y13a{bottom:238.619905px;}
.ya2{bottom:245.999902px;}
.yd2{bottom:246.719901px;}
.y14c{bottom:247.259901px;}
.yea{bottom:249.779900px;}
.y6f{bottom:252.659899px;}
.y16d{bottom:255.539898px;}
.y10b{bottom:262.739895px;}
.ya1{bottom:263.279895px;}
.y45{bottom:264.539894px;}
.yd1{bottom:268.679893px;}
.y6e{bottom:270.479892px;}
.y11c{bottom:271.379891px;}
.y20{bottom:276.239890px;}
.y16c{bottom:277.499889px;}
.y139{bottom:278.579889px;}
.ya0{bottom:280.559888px;}
.y44{bottom:286.499885px;}
.y14b{bottom:287.039885px;}
.yd0{bottom:290.639884px;}
.y10a{bottom:290.819884px;}
.ye9{bottom:292.619883px;}
.y6d{bottom:293.519883px;}
.y9f{bottom:297.659881px;}
.y16b{bottom:299.459880px;}
.y138{bottom:300.539880px;}
.y43{bottom:305.939878px;}
.y11b{bottom:311.339875px;}
.ye8{bottom:314.579874px;}
.y9e{bottom:314.939874px;}
.y6c{bottom:315.479874px;}
.y109{bottom:318.899872px;}
.y16a{bottom:321.419871px;}
.y137{bottom:322.319871px;}
.y14a{bottom:326.999869px;}
.ycf{bottom:330.419868px;}
.y9d{bottom:332.219867px;}
.y3b{bottom:335.639866px;}
.ye7{bottom:336.539865px;}
.y6b{bottom:337.439865px;}
.ybd{bottom:340.319864px;}
.y169{bottom:343.379863px;}
.y136{bottom:344.279862px;}
.y108{bottom:347.159861px;}
.y149{bottom:348.959860px;}
.y9c{bottom:349.499860px;}
.y3a{bottom:353.099859px;}
.ye6{bottom:358.319857px;}
.y6a{bottom:359.399856px;}
.ybc{bottom:362.279855px;}
.y168{bottom:365.339854px;}
.y9b{bottom:366.599853px;}
.yce{bottom:370.379852px;}
.y148{bottom:370.919852px;}
.y39{bottom:371.099852px;}
.y107{bottom:375.239850px;}
.ye5{bottom:380.279848px;}
.y11a{bottom:381.179848px;}
.y69{bottom:381.359847px;}
.y9a{bottom:383.879846px;}
.ybb{bottom:384.239846px;}
.y167{bottom:387.119845px;}
.y147{bottom:392.879843px;}
.y38{bottom:397.919841px;}
.y99{bottom:401.159840px;}
.y119{bottom:403.139839px;}
.y68{bottom:403.319839px;}
.y166{bottom:409.079836px;}
.ycd{bottom:413.219835px;}
.y37{bottom:415.919834px;}
.y98{bottom:418.259833px;}
.ye4{bottom:420.239832px;}
.yba{bottom:424.199830px;}
.y1f{bottom:424.559830px;}
.y165{bottom:431.039828px;}
.y146{bottom:432.839827px;}
.y36{bottom:433.919826px;}
.y67{bottom:434.279826px;}
.ycc{bottom:435.179826px;}
.y97{bottom:435.539826px;}
.y118{bottom:442.919823px;}
.y106{bottom:443.099823px;}
.y135{bottom:446.159822px;}
.y35{bottom:451.919819px;}
.y96{bottom:452.819819px;}
.y164{bottom:452.999819px;}
.y66{bottom:456.239818px;}
.ycb{bottom:457.139817px;}
.ye3{bottom:460.199816px;}
.y117{bottom:464.879814px;}
.y134{bottom:468.119813px;}
.y95{bottom:470.099812px;}
.y105{bottom:471.359811px;}
.y163{bottom:474.959810px;}
.y65{bottom:478.199809px;}
.y34{bottom:478.739809px;}
.yca{bottom:479.099808px;}
.ye2{bottom:482.159807px;}
.y116{bottom:486.839805px;}
.y94{bottom:487.199805px;}
.y133{bottom:490.079804px;}
.yb9{bottom:494.039802px;}
.y33{bottom:496.739801px;}
.y162{bottom:496.919801px;}
.y104{bottom:499.439800px;}
.y64{bottom:500.159800px;}
.y145{bottom:500.699800px;}
.yc9{bottom:501.059800px;}
.ye1{bottom:504.119798px;}
.y93{bottom:504.479798px;}
.y115{bottom:508.799796px;}
.y32{bottom:514.739794px;}
.yb8{bottom:515.999794px;}
.y161{bottom:518.879792px;}
.y92{bottom:521.759791px;}
.y63{bottom:522.119791px;}
.ye0{bottom:526.079790px;}
.y103{bottom:527.519789px;}
.y132{bottom:530.039788px;}
.y31{bottom:532.739787px;}
.yb7{bottom:537.959785px;}
.y91{bottom:539.039784px;}
.yc8{bottom:540.839784px;}
.y1e{bottom:541.739783px;}
.y62{bottom:544.079782px;}
.ydf{bottom:548.039781px;}
.y114{bottom:548.759780px;}
.y30{bottom:550.739780px;}
.y102{bottom:555.599778px;}
.y90{bottom:556.139778px;}
.yb6{bottom:559.739776px;}
.y160{bottom:562.799775px;}
.y61{bottom:566.039774px;}
.y2f{bottom:568.559773px;}
.y131{bottom:569.999772px;}
.y113{bottom:570.719772px;}
.y8f{bottom:573.419771px;}
.yc7{bottom:580.799768px;}
.y144{bottom:581.699767px;}
.y101{bottom:583.859766px;}
.y15f{bottom:584.759766px;}
.y2e{bottom:586.559765px;}
.y60{bottom:587.819765px;}
.yde{bottom:587.999765px;}
.y8e{bottom:590.699764px;}
.y1d{bottom:597.539761px;}
.yb5{bottom:599.699760px;}
.y143{bottom:603.659759px;}
.y15e{bottom:606.719757px;}
.y8d{bottom:607.799757px;}
.y130{bottom:609.779756px;}
.y112{bottom:610.679756px;}
.y100{bottom:611.939755px;}
.y2d{bottom:613.559755px;}
.y1c{bottom:615.899754px;}
.y5f{bottom:618.779752px;}
.y8c{bottom:625.079750px;}
.y142{bottom:625.619750px;}
.ydd{bottom:627.779749px;}
.y15d{bottom:628.679749px;}
.y2c{bottom:631.559747px;}
.yc6{bottom:632.639747px;}
.y1b{bottom:634.259746px;}
.yb4{bottom:639.659744px;}
.yff{bottom:640.019744px;}
.y5e{bottom:640.739744px;}
.y8b{bottom:642.359743px;}
.y2b{bottom:649.559740px;}
.y15c{bottom:650.639740px;}
.y1a{bottom:651.359739px;}
.y12f{bottom:652.619739px;}
.y111{bottom:654.599738px;}
.y8a{bottom:659.639736px;}
.yb3{bottom:661.619735px;}
.y5d{bottom:662.699735px;}
.y141{bottom:665.579734px;}
.y2a{bottom:667.379733px;}
.y15b{bottom:672.419731px;}
.y12e{bottom:674.579730px;}
.y89{bottom:676.739729px;}
.y172{bottom:678.539729px;}
.yfe{bottom:678.899728px;}
.ydc{bottom:679.619728px;}
.yb2{bottom:683.579727px;}
.y5c{bottom:684.659726px;}
.y29{bottom:685.379726px;}
.y88{bottom:694.019722px;}
.y110{bottom:694.379722px;}
.y12d{bottom:696.539721px;}
.yc5{bottom:700.499720px;}
.ydb{bottom:701.579719px;}
.yb1{bottom:705.539718px;}
.y19{bottom:706.079718px;}
.y5b{bottom:706.619717px;}
.yfd{bottom:706.979717px;}
.y87{bottom:711.299715px;}
.y28{bottom:712.379715px;}
.y15a{bottom:716.339713px;}
.y171{bottom:717.779713px;}
.y12c{bottom:718.499713px;}
.yda{bottom:723.539711px;}
.y85{bottom:724.800600px;}
.yb0{bottom:727.499709px;}
.y84{bottom:727.859709px;}
.y5a{bottom:728.579709px;}
.y27{bottom:730.379708px;}
.yfc{bottom:735.059706px;}
.y170{bottom:737.579705px;}
.y159{bottom:738.299705px;}
.y83{bottom:744.779702px;}
.y26{bottom:748.199701px;}
.y140{bottom:749.459700px;}
.y59{bottom:750.539700px;}
.y12b{bottom:758.459697px;}
.yc4{bottom:759.539696px;}
.y158{bottom:760.259696px;}
.y18{bottom:760.619696px;}
.y82{bottom:762.059695px;}
.yfb{bottom:763.139695px;}
.yd9{bottom:763.499695px;}
.y10f{bottom:764.219694px;}
.y25{bottom:766.199694px;}
.yaf{bottom:767.459693px;}
.y13f{bottom:771.419691px;}
.y58{bottom:772.499691px;}
.y81{bottom:779.159688px;}
.y17{bottom:779.339688px;}
.yc3{bottom:781.499687px;}
.y157{bottom:782.219687px;}
.yd8{bottom:785.459686px;}
.yfa{bottom:791.399683px;}
.y24{bottom:793.199683px;}
.y13e{bottom:793.379683px;}
.y57{bottom:794.459682px;}
.y80{bottom:796.439681px;}
.y12a{bottom:798.419681px;}
.yc2{bottom:803.459679px;}
.y156{bottom:804.179678px;}
.yae{bottom:807.419677px;}
.y23{bottom:811.199676px;}
.y7f{bottom:813.719675px;}
.y56{bottom:816.419673px;}
.yf9{bottom:819.479672px;}
.y129{bottom:820.379672px;}
.y16f{bottom:825.419670px;}
.y155{bottom:826.139670px;}
.y22{bottom:829.019668px;}
.y21{bottom:829.379668px;}
.y16{bottom:830.819668px;}
.y10e{bottom:832.259667px;}
.y13d{bottom:833.339667px;}
.y128{bottom:842.339663px;}
.yc1{bottom:843.419663px;}
.y55{bottom:847.379661px;}
.yf8{bottom:847.559661px;}
.y7e{bottom:848.099661px;}
.yad{bottom:851.339659px;}
.y14{bottom:862.320600px;}
.y127{bottom:864.299654px;}
.y7d{bottom:865.379654px;}
.y13{bottom:866.099654px;}
.y54{bottom:869.339652px;}
.y154{bottom:870.059652px;}
.yac{bottom:873.299651px;}
.y7c{bottom:882.659647px;}
.yf7{bottom:884.639646px;}
.y12{bottom:885.539646px;}
.y53{bottom:891.119644px;}
.yd7{bottom:891.299643px;}
.yab{bottom:895.259642px;}
.y7b{bottom:899.759640px;}
.y126{bottom:904.259638px;}
.y11{bottom:906.599637px;}
.yf6{bottom:912.719635px;}
.y52{bottom:913.079635px;}
.yc0{bottom:913.259635px;}
.y7a{bottom:917.039633px;}
.yaa{bottom:917.219633px;}
.y10{bottom:923.699631px;}
.y153{bottom:928.019629px;}
.y79{bottom:934.319626px;}
.y51{bottom:935.039626px;}
.ybf{bottom:935.219626px;}
.y13c{bottom:938.999624px;}
.yf5{bottom:940.799624px;}
.yf{bottom:941.879623px;}
.y125{bottom:944.219622px;}
.y78{bottom:951.419619px;}
.yd6{bottom:953.039619px;}
.y50{bottom:956.999617px;}
.y124{bottom:965.999614px;}
.y77{bottom:968.699613px;}
.yf4{bottom:969.059612px;}
.yd5{bottom:974.999610px;}
.y4f{bottom:978.959608px;}
.ye{bottom:982.739607px;}
.y76{bottom:985.979606px;}
.y123{bottom:987.959605px;}
.ya9{bottom:996.959601px;}
.yf3{bottom:997.139601px;}
.y4e{bottom:1000.919600px;}
.y75{bottom:1003.259599px;}
.y152{bottom:1004.879598px;}
.yd{bottom:1007.579597px;}
.y122{bottom:1009.919596px;}
.ya8{bottom:1018.919592px;}
.yf1{bottom:1020.900600px;}
.y4d{bottom:1022.879591px;}
.yf0{bottom:1025.219590px;}
.y151{bottom:1026.839589px;}
.y10d{bottom:1036.919585px;}
.y74{bottom:1038.539585px;}
.ya7{bottom:1040.879584px;}
.y41{bottom:1043.219583px;}
.y4c{bottom:1044.839582px;}
.y150{bottom:1048.799580px;}
.y121{bottom:1049.879580px;}
.yef{bottom:1056.899577px;}
.yd4{bottom:1058.879576px;}
.y40{bottom:1065.179574px;}
.y4b{bottom:1066.799573px;}
.y73{bottom:1076.519569px;}
.ya6{bottom:1080.839568px;}
.yee{bottom:1084.979566px;}
.y4a{bottom:1088.759564px;}
.y120{bottom:1089.839564px;}
.y3f{bottom:1099.199560px;}
.yec{bottom:1109.460600px;}
.y49{bottom:1110.719556px;}
.ya5{bottom:1120.799552px;}
.y3e{bottom:1129.979548px;}
.y48{bottom:1132.679547px;}
.y42{bottom:1135.919546px;}
.y4{bottom:1154.459538px;}
.y7{bottom:1181.459527px;}
.y3{bottom:1184.699526px;}
.y2{bottom:1201.979519px;}
.y1{bottom:1219.259512px;}
.h15{height:0.180000px;}
.h16{height:2.165624px;}
.h3{height:5.580000px;}
.h14{height:15.660000px;}
.hf{height:16.560000px;}
.h6{height:18.180000px;}
.h17{height:22.140000px;}
.hd{height:36.624009px;}
.h5{height:38.759750px;}
.h4{height:39.207992px;}
.hc{height:39.313461px;}
.h10{height:39.830258px;}
.h1{height:41.493499px;}
.h2{height:42.894123px;}
.hb{height:43.390178px;}
.ha{height:43.614123px;}
.he{height:44.165021px;}
.h12{height:44.936701px;}
.h18{height:47.545293px;}
.h7{height:48.796855px;}
.h13{height:48.875957px;}
.h8{height:49.809355px;}
.h9{height:54.175760px;}
.h11{height:61.164468px;}
.h0{height:1263.000000px;}
.w7{width:0.360000px;}
.w3{width:5.580000px;}
.w6{width:6.660000px;}
.w5{width:7.560000px;}
.w8{width:8.280000px;}
.w2{width:8.820000px;}
.w4{width:15.660000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x13{left:100.619960px;}
.x11{left:106.739957px;}
.x1{left:107.992607px;}
.x23{left:116.459953px;}
.x10{left:117.899953px;}
.x15{left:121.679951px;}
.x8{left:124.371850px;}
.x6{left:126.171100px;}
.x3{left:132.659947px;}
.x21{left:134.999946px;}
.xd{left:138.592595px;}
.x14{left:161.459935px;}
.x12{left:163.439935px;}
.x28{left:202.860000px;}
.x25{left:219.599912px;}
.x1a{left:233.099907px;}
.x1c{left:236.332405px;}
.x16{left:237.599938px;}
.x17{left:248.399901px;}
.xe{left:274.140000px;}
.x18{left:295.739882px;}
.xf{left:297.892381px;}
.x1f{left:307.619877px;}
.x20{left:310.859876px;}
.x7{left:319.140103px;}
.x26{left:361.799855px;}
.x1b{left:370.619797px;}
.xa{left:375.652350px;}
.x1d{left:388.079615px;}
.x4{left:431.279827px;}
.xc{left:446.399821px;}
.x19{left:509.572296px;}
.xb{left:517.319793px;}
.x27{left:604.979758px;}
.x24{left:613.980000px;}
.x2{left:666.179734px;}
.x1e{left:680.759682px;}
.x9{left:682.919727px;}
.x5{left:779.040000px;}
.x22{left:784.979686px;}
@media print{
.v1{vertical-align:-1.919999pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016533pt;}
.ls2{letter-spacing:0.247388pt;}
.ls6{letter-spacing:0.247512pt;}
.ls5{letter-spacing:0.247577pt;}
.ls3{letter-spacing:0.247730pt;}
.ls4{letter-spacing:0.247756pt;}
.ls7{letter-spacing:0.247866pt;}
.lsc{letter-spacing:0.282825pt;}
.lsa{letter-spacing:0.773280pt;}
.lse{letter-spacing:3.454452pt;}
.lsd{letter-spacing:3.483252pt;}
.lsb{letter-spacing:35.473586pt;}
.ls9{letter-spacing:35.502332pt;}
.ls0{letter-spacing:1143.904151pt;}
.ws7{word-spacing:-31.871987pt;}
.ws4{word-spacing:-28.816521pt;}
.ws3{word-spacing:-28.799988pt;}
.wsa{word-spacing:-16.474819pt;}
.ws8{word-spacing:-16.191994pt;}
.ws9{word-spacing:-14.607994pt;}
.ws2{word-spacing:-13.343995pt;}
.ws1{word-spacing:-13.279995pt;}
.ws5{word-spacing:-13.199995pt;}
.ws0{word-spacing:-12.005115pt;}
.ws6{word-spacing:0.000000pt;}
._18{margin-left:-4.710494pt;}
._3{margin-left:-3.390575pt;}
._2{margin-left:-2.316213pt;}
._1{margin-left:-1.396267pt;}
._0{width:1.177520pt;}
._6{width:2.094885pt;}
._8{width:3.159810pt;}
._16{width:4.499524pt;}
._17{width:5.491295pt;}
._15{width:6.587725pt;}
._c{width:7.666411pt;}
._5{width:8.974468pt;}
._13{width:10.638217pt;}
._b{width:11.918501pt;}
._19{width:12.978519pt;}
._4{width:14.593184pt;}
._7{width:15.801065pt;}
._10{width:16.695483pt;}
._14{width:17.639901pt;}
._38{width:18.575358pt;}
._2a{width:19.481322pt;}
._a{width:20.493302pt;}
._9{width:21.425623pt;}
._d{width:22.365662pt;}
._e{width:23.762122pt;}
._33{width:24.663290pt;}
._39{width:25.761506pt;}
._f{width:29.006922pt;}
._36{width:31.322896pt;}
._27{width:34.185895pt;}
._1f{width:36.525093pt;}
._25{width:39.494071pt;}
._12{width:42.701946pt;}
._11{width:43.686107pt;}
._20{width:44.619002pt;}
._2d{width:46.406464pt;}
._22{width:50.359799pt;}
._1e{width:51.570670pt;}
._26{width:54.275864pt;}
._29{width:60.703903pt;}
._2b{width:62.654507pt;}
._34{width:64.079501pt;}
._24{width:64.992445pt;}
._2e{width:66.915893pt;}
._1a{width:68.455088pt;}
._2c{width:71.936038pt;}
._32{width:80.353803pt;}
._21{width:93.105952pt;}
._1d{width:97.262277pt;}
._31{width:99.847674pt;}
._23{width:123.691734pt;}
._1c{width:126.024717pt;}
._28{width:130.943989pt;}
._30{width:194.763913pt;}
._37{width:205.333595pt;}
._2f{width:218.287036pt;}
._35{width:313.816402pt;}
._1b{width:485.658717pt;}
.fs5{font-size:2.559999pt;}
.fs1{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs3{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.fs4{font-size:74.879970pt;}
.y6{bottom:-7.679992pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.yed{bottom:0.159072pt;}
.y86{bottom:2.719208pt;}
.y3d{bottom:2.879401pt;}
.y15{bottom:3.519159pt;}
.yb{bottom:3.520034pt;}
.yf2{bottom:3.839102pt;}
.yc{bottom:29.226922pt;}
.ya{bottom:45.866880pt;}
.y8{bottom:49.386914pt;}
.y9{bottom:49.866913pt;}
.y3c{bottom:160.587200pt;}
.y14f{bottom:161.226602pt;}
.y72{bottom:166.026600pt;}
.y11f{bottom:166.666600pt;}
.ybe{bottom:169.546599pt;}
.y13b{bottom:176.586596pt;}
.y14e{bottom:180.746594pt;}
.y71{bottom:185.546592pt;}
.y11e{bottom:186.186592pt;}
.yeb{bottom:186.506592pt;}
.ya4{bottom:188.106591pt;}
.y47{bottom:190.666590pt;}
.yd3{bottom:199.786587pt;}
.y14d{bottom:200.266587pt;}
.ya3{bottom:203.466585pt;}
.y70{bottom:205.066585pt;}
.y11d{bottom:205.706584pt;}
.y16e{bottom:207.626584pt;}
.y10c{bottom:208.586583pt;}
.y46{bottom:211.306582pt;}
.y13a{bottom:212.106582pt;}
.ya2{bottom:218.666579pt;}
.yd2{bottom:219.306579pt;}
.y14c{bottom:219.786579pt;}
.yea{bottom:222.026578pt;}
.y6f{bottom:224.586577pt;}
.y16d{bottom:227.146576pt;}
.y10b{bottom:233.546573pt;}
.ya1{bottom:234.026573pt;}
.y45{bottom:235.146573pt;}
.yd1{bottom:238.826571pt;}
.y6e{bottom:240.426570pt;}
.y11c{bottom:241.226570pt;}
.y20{bottom:245.546568pt;}
.y16c{bottom:246.666568pt;}
.y139{bottom:247.626568pt;}
.ya0{bottom:249.386567pt;}
.y44{bottom:254.666565pt;}
.y14b{bottom:255.146565pt;}
.yd0{bottom:258.346563pt;}
.y10a{bottom:258.506563pt;}
.ye9{bottom:260.106563pt;}
.y6d{bottom:260.906562pt;}
.y9f{bottom:264.586561pt;}
.y16b{bottom:266.186560pt;}
.y138{bottom:267.146560pt;}
.y43{bottom:271.946558pt;}
.y11b{bottom:276.746556pt;}
.ye8{bottom:279.626555pt;}
.y9e{bottom:279.946555pt;}
.y6c{bottom:280.426554pt;}
.y109{bottom:283.466553pt;}
.y16a{bottom:285.706552pt;}
.y137{bottom:286.506552pt;}
.y14a{bottom:290.666550pt;}
.ycf{bottom:293.706549pt;}
.y9d{bottom:295.306549pt;}
.y3b{bottom:298.346547pt;}
.ye7{bottom:299.146547pt;}
.y6b{bottom:299.946547pt;}
.ybd{bottom:302.506546pt;}
.y169{bottom:305.226545pt;}
.y136{bottom:306.026544pt;}
.y108{bottom:308.586543pt;}
.y149{bottom:310.186543pt;}
.y9c{bottom:310.666542pt;}
.y3a{bottom:313.866541pt;}
.ye6{bottom:318.506539pt;}
.y6a{bottom:319.466539pt;}
.ybc{bottom:322.026538pt;}
.y168{bottom:324.746537pt;}
.y9b{bottom:325.866536pt;}
.yce{bottom:329.226535pt;}
.y148{bottom:329.706535pt;}
.y39{bottom:329.866535pt;}
.y107{bottom:333.546533pt;}
.ye5{bottom:338.026531pt;}
.y11a{bottom:338.826531pt;}
.y69{bottom:338.986531pt;}
.y9a{bottom:341.226530pt;}
.ybb{bottom:341.546530pt;}
.y167{bottom:344.106529pt;}
.y147{bottom:349.226527pt;}
.y38{bottom:353.706525pt;}
.y99{bottom:356.586524pt;}
.y119{bottom:358.346523pt;}
.y68{bottom:358.506523pt;}
.y166{bottom:363.626521pt;}
.ycd{bottom:367.306520pt;}
.y37{bottom:369.706519pt;}
.y98{bottom:371.786518pt;}
.ye4{bottom:373.546517pt;}
.yba{bottom:377.066516pt;}
.y1f{bottom:377.386516pt;}
.y165{bottom:383.146513pt;}
.y146{bottom:384.746513pt;}
.y36{bottom:385.706512pt;}
.y67{bottom:386.026512pt;}
.ycc{bottom:386.826512pt;}
.y97{bottom:387.146512pt;}
.y118{bottom:393.706509pt;}
.y106{bottom:393.866509pt;}
.y135{bottom:396.586508pt;}
.y35{bottom:401.706506pt;}
.y96{bottom:402.506506pt;}
.y164{bottom:402.666506pt;}
.y66{bottom:405.546504pt;}
.ycb{bottom:406.346504pt;}
.ye3{bottom:409.066503pt;}
.y117{bottom:413.226501pt;}
.y134{bottom:416.106500pt;}
.y95{bottom:417.866500pt;}
.y105{bottom:418.986499pt;}
.y163{bottom:422.186498pt;}
.y65{bottom:425.066497pt;}
.y34{bottom:425.546496pt;}
.yca{bottom:425.866496pt;}
.ye2{bottom:428.586495pt;}
.y116{bottom:432.746494pt;}
.y94{bottom:433.066493pt;}
.y133{bottom:435.626492pt;}
.yb9{bottom:439.146491pt;}
.y33{bottom:441.546490pt;}
.y162{bottom:441.706490pt;}
.y104{bottom:443.946489pt;}
.y64{bottom:444.586489pt;}
.y145{bottom:445.066489pt;}
.yc9{bottom:445.386489pt;}
.ye1{bottom:448.106487pt;}
.y93{bottom:448.426487pt;}
.y115{bottom:452.266486pt;}
.y32{bottom:457.546484pt;}
.yb8{bottom:458.666483pt;}
.y161{bottom:461.226482pt;}
.y92{bottom:463.786481pt;}
.y63{bottom:464.106481pt;}
.ye0{bottom:467.626480pt;}
.y103{bottom:468.906479pt;}
.y132{bottom:471.146478pt;}
.y31{bottom:473.546477pt;}
.yb7{bottom:478.186475pt;}
.y91{bottom:479.146475pt;}
.yc8{bottom:480.746474pt;}
.y1e{bottom:481.546474pt;}
.y62{bottom:483.626473pt;}
.ydf{bottom:487.146472pt;}
.y114{bottom:487.786472pt;}
.y30{bottom:489.546471pt;}
.y102{bottom:493.866469pt;}
.y90{bottom:494.346469pt;}
.yb6{bottom:497.546468pt;}
.y160{bottom:500.266467pt;}
.y61{bottom:503.146465pt;}
.y2f{bottom:505.386465pt;}
.y131{bottom:506.666464pt;}
.y113{bottom:507.306464pt;}
.y8f{bottom:509.706463pt;}
.yc7{bottom:516.266460pt;}
.y144{bottom:517.066460pt;}
.y101{bottom:518.986459pt;}
.y15f{bottom:519.786459pt;}
.y2e{bottom:521.386458pt;}
.y60{bottom:522.506458pt;}
.yde{bottom:522.666458pt;}
.y8e{bottom:525.066457pt;}
.y1d{bottom:531.146454pt;}
.yb5{bottom:533.066453pt;}
.y143{bottom:536.586452pt;}
.y15e{bottom:539.306451pt;}
.y8d{bottom:540.266451pt;}
.y130{bottom:542.026450pt;}
.y112{bottom:542.826450pt;}
.y100{bottom:543.946449pt;}
.y2d{bottom:545.386449pt;}
.y1c{bottom:547.466448pt;}
.y5f{bottom:550.026447pt;}
.y8c{bottom:555.626444pt;}
.y142{bottom:556.106444pt;}
.ydd{bottom:558.026443pt;}
.y15d{bottom:558.826443pt;}
.y2c{bottom:561.386442pt;}
.yc6{bottom:562.346442pt;}
.y1b{bottom:563.786441pt;}
.yb4{bottom:568.586439pt;}
.yff{bottom:568.906439pt;}
.y5e{bottom:569.546439pt;}
.y8b{bottom:570.986438pt;}
.y2b{bottom:577.386436pt;}
.y15c{bottom:578.346435pt;}
.y1a{bottom:578.986435pt;}
.y12f{bottom:580.106435pt;}
.y111{bottom:581.866434pt;}
.y8a{bottom:586.346432pt;}
.yb3{bottom:588.106431pt;}
.y5d{bottom:589.066431pt;}
.y141{bottom:591.626430pt;}
.y2a{bottom:593.226429pt;}
.y15b{bottom:597.706428pt;}
.y12e{bottom:599.626427pt;}
.y89{bottom:601.546426pt;}
.y172{bottom:603.146425pt;}
.yfe{bottom:603.466425pt;}
.ydc{bottom:604.106425pt;}
.yb2{bottom:607.626424pt;}
.y5c{bottom:608.586423pt;}
.y29{bottom:609.226423pt;}
.y88{bottom:616.906420pt;}
.y110{bottom:617.226420pt;}
.y12d{bottom:619.146419pt;}
.yc5{bottom:622.666418pt;}
.ydb{bottom:623.626417pt;}
.yb1{bottom:627.146416pt;}
.y19{bottom:627.626416pt;}
.y5b{bottom:628.106415pt;}
.yfd{bottom:628.426415pt;}
.y87{bottom:632.266414pt;}
.y28{bottom:633.226413pt;}
.y15a{bottom:636.746412pt;}
.y171{bottom:638.026411pt;}
.y12c{bottom:638.666411pt;}
.yda{bottom:643.146409pt;}
.y85{bottom:644.267200pt;}
.yb0{bottom:646.666408pt;}
.y84{bottom:646.986408pt;}
.y5a{bottom:647.626408pt;}
.y27{bottom:649.226407pt;}
.yfc{bottom:653.386405pt;}
.y170{bottom:655.626404pt;}
.y159{bottom:656.266404pt;}
.y83{bottom:662.026402pt;}
.y26{bottom:665.066401pt;}
.y140{bottom:666.186400pt;}
.y59{bottom:667.146400pt;}
.y12b{bottom:674.186397pt;}
.yc4{bottom:675.146397pt;}
.y158{bottom:675.786396pt;}
.y18{bottom:676.106396pt;}
.y82{bottom:677.386396pt;}
.yfb{bottom:678.346395pt;}
.yd9{bottom:678.666395pt;}
.y10f{bottom:679.306395pt;}
.y25{bottom:681.066394pt;}
.yaf{bottom:682.186394pt;}
.y13f{bottom:685.706392pt;}
.y58{bottom:686.666392pt;}
.y81{bottom:692.586390pt;}
.y17{bottom:692.746390pt;}
.yc3{bottom:694.666389pt;}
.y157{bottom:695.306389pt;}
.yd8{bottom:698.186387pt;}
.yfa{bottom:703.466385pt;}
.y24{bottom:705.066385pt;}
.y13e{bottom:705.226385pt;}
.y57{bottom:706.186384pt;}
.y80{bottom:707.946383pt;}
.y12a{bottom:709.706383pt;}
.yc2{bottom:714.186381pt;}
.y156{bottom:714.826381pt;}
.yae{bottom:717.706380pt;}
.y23{bottom:721.066378pt;}
.y7f{bottom:723.306377pt;}
.y56{bottom:725.706376pt;}
.yf9{bottom:728.426375pt;}
.y129{bottom:729.226375pt;}
.y16f{bottom:733.706373pt;}
.y155{bottom:734.346373pt;}
.y22{bottom:736.906372pt;}
.y21{bottom:737.226372pt;}
.y16{bottom:738.506371pt;}
.y10e{bottom:739.786371pt;}
.y13d{bottom:740.746370pt;}
.y128{bottom:748.746367pt;}
.yc1{bottom:749.706367pt;}
.y55{bottom:753.226365pt;}
.yf8{bottom:753.386365pt;}
.y7e{bottom:753.866365pt;}
.yad{bottom:756.746364pt;}
.y14{bottom:766.507200pt;}
.y127{bottom:768.266359pt;}
.y7d{bottom:769.226359pt;}
.y13{bottom:769.866359pt;}
.y54{bottom:772.746358pt;}
.y154{bottom:773.386357pt;}
.yac{bottom:776.266356pt;}
.y7c{bottom:784.586353pt;}
.yf7{bottom:786.346352pt;}
.y12{bottom:787.146352pt;}
.y53{bottom:792.106350pt;}
.yd7{bottom:792.266350pt;}
.yab{bottom:795.786348pt;}
.y7b{bottom:799.786347pt;}
.y126{bottom:803.786345pt;}
.y11{bottom:805.866344pt;}
.yf6{bottom:811.306342pt;}
.y52{bottom:811.626342pt;}
.yc0{bottom:811.786342pt;}
.y7a{bottom:815.146341pt;}
.yaa{bottom:815.306341pt;}
.y10{bottom:821.066338pt;}
.y153{bottom:824.906337pt;}
.y79{bottom:830.506334pt;}
.y51{bottom:831.146334pt;}
.ybf{bottom:831.306334pt;}
.y13c{bottom:834.666333pt;}
.yf5{bottom:836.266332pt;}
.yf{bottom:837.226332pt;}
.y125{bottom:839.306331pt;}
.y78{bottom:845.706328pt;}
.yd6{bottom:847.146328pt;}
.y50{bottom:850.666326pt;}
.y124{bottom:858.666323pt;}
.y77{bottom:861.066322pt;}
.yf4{bottom:861.386322pt;}
.yd5{bottom:866.666320pt;}
.y4f{bottom:870.186319pt;}
.ye{bottom:873.546317pt;}
.y76{bottom:876.426316pt;}
.y123{bottom:878.186315pt;}
.ya9{bottom:886.186312pt;}
.yf3{bottom:886.346312pt;}
.y4e{bottom:889.706311pt;}
.y75{bottom:891.786310pt;}
.y152{bottom:893.226309pt;}
.yd{bottom:895.626308pt;}
.y122{bottom:897.706308pt;}
.ya8{bottom:905.706304pt;}
.yf1{bottom:907.467200pt;}
.y4d{bottom:909.226303pt;}
.yf0{bottom:911.306302pt;}
.y151{bottom:912.746302pt;}
.y10d{bottom:921.706298pt;}
.y74{bottom:923.146297pt;}
.ya7{bottom:925.226297pt;}
.y41{bottom:927.306296pt;}
.y4c{bottom:928.746295pt;}
.y150{bottom:932.266294pt;}
.y121{bottom:933.226293pt;}
.yef{bottom:939.466291pt;}
.yd4{bottom:941.226290pt;}
.y40{bottom:946.826288pt;}
.y4b{bottom:948.266287pt;}
.y73{bottom:956.906284pt;}
.ya6{bottom:960.746282pt;}
.yee{bottom:964.426281pt;}
.y4a{bottom:967.786280pt;}
.y120{bottom:968.746279pt;}
.y3f{bottom:977.066276pt;}
.yec{bottom:986.187200pt;}
.y49{bottom:987.306272pt;}
.ya5{bottom:996.266268pt;}
.y3e{bottom:1004.426265pt;}
.y48{bottom:1006.826264pt;}
.y42{bottom:1009.706263pt;}
.y4{bottom:1026.186256pt;}
.y7{bottom:1050.186247pt;}
.y3{bottom:1053.066245pt;}
.y2{bottom:1068.426239pt;}
.y1{bottom:1083.786233pt;}
.h15{height:0.160000pt;}
.h16{height:1.924999pt;}
.h3{height:4.960000pt;}
.h14{height:13.920000pt;}
.hf{height:14.720000pt;}
.h6{height:16.160000pt;}
.h17{height:19.680000pt;}
.hd{height:32.554674pt;}
.h5{height:34.453111pt;}
.h4{height:34.851549pt;}
.hc{height:34.945299pt;}
.h10{height:35.404673pt;}
.h1{height:36.883110pt;}
.h2{height:38.128110pt;}
.hb{height:38.569047pt;}
.ha{height:38.768109pt;}
.he{height:39.257797pt;}
.h12{height:39.943734pt;}
.h18{height:42.262483pt;}
.h7{height:43.374983pt;}
.h13{height:43.445295pt;}
.h8{height:44.274982pt;}
.h9{height:48.156231pt;}
.h11{height:54.368416pt;}
.h0{height:1122.666667pt;}
.w7{width:0.320000pt;}
.w3{width:4.960000pt;}
.w6{width:5.920000pt;}
.w5{width:6.720000pt;}
.w8{width:7.360000pt;}
.w2{width:7.840000pt;}
.w4{width:13.920000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x13{left:89.439964pt;}
.x11{left:94.879962pt;}
.x1{left:95.993428pt;}
.x23{left:103.519959pt;}
.x10{left:104.799958pt;}
.x15{left:108.159957pt;}
.x8{left:110.552756pt;}
.x6{left:112.152088pt;}
.x3{left:117.919953pt;}
.x21{left:119.999952pt;}
.xd{left:123.193417pt;}
.x14{left:143.519943pt;}
.x12{left:145.279942pt;}
.x28{left:180.320000pt;}
.x25{left:195.199922pt;}
.x1a{left:207.199917pt;}
.x1c{left:210.073249pt;}
.x16{left:211.199945pt;}
.x17{left:220.799912pt;}
.xe{left:243.680000pt;}
.x18{left:262.879895pt;}
.xf{left:264.793227pt;}
.x1f{left:273.439891pt;}
.x20{left:276.319889pt;}
.x7{left:283.680092pt;}
.x26{left:321.599871pt;}
.x1b{left:329.439819pt;}
.xa{left:333.913200pt;}
.x1d{left:344.959658pt;}
.x4{left:383.359847pt;}
.xc{left:396.799841pt;}
.x19{left:452.953152pt;}
.xb{left:459.839816pt;}
.x27{left:537.759785pt;}
.x24{left:545.760000pt;}
.x2{left:592.159763pt;}
.x1e{left:605.119717pt;}
.x9{left:607.039757pt;}
.x5{left:692.480000pt;}
.x22{left:697.759721pt;}
}




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