
    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_944f14c2d078d06b01b8117e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.979980;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_70b41b61d7c16db8e3aa15e5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.979980;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_796f234129725cfec3a056db.woff')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_fb2689fc4fb790917534425f.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fb5d396bfea9977286519b90.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2c76573fde526d0a05d2199c.woff')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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_90dbeb80b1d839dbcd070ae1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.898438;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_596b8d4db842aa76555ac2d0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_24c5c250ef09450024c9723d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938497;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_e30718ab2adc0fa4ca7cceb1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.250000;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;}
.m9{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.245145,0.245145,0.049029,0,0);-ms-transform:matrix(0.000000,-0.245145,0.245145,0.049029,0,0);-webkit-transform:matrix(0.000000,-0.245145,0.245145,0.049029,0,0);}
.m8{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000404,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000404,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000404,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.171975,0.181316,-0.186142,0.166886,0,0);-ms-transform:matrix(0.171975,0.181316,-0.186142,0.166886,0,0);-webkit-transform:matrix(0.171975,0.181316,-0.186142,0.166886,0,0);}
.m2{transform:matrix(0.179119,0.174261,-0.179310,0.174207,0,0);-ms-transform:matrix(0.179119,0.174261,-0.179310,0.174207,0,0);-webkit-transform:matrix(0.179119,0.174261,-0.179310,0.174207,0,0);}
.m4{transform:matrix(0.179287,-0.174097,0.178978,0.174548,0,0);-ms-transform:matrix(0.179287,-0.174097,0.178978,0.174548,0,0);-webkit-transform:matrix(0.179287,-0.174097,0.178978,0.174548,0,0);}
.m1{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);}
.m5{transform:matrix(0.250000,0.000044,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000044,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000044,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250000,0.000039,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000039,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000039,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250000,0.000037,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000037,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000037,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);}
.va{vertical-align:-94.499981px;}
.ve{vertical-align:-45.000001px;}
.v5{vertical-align:-42.750001px;}
.v7{vertical-align:-40.500001px;}
.vb{vertical-align:-38.250010px;}
.v4{vertical-align:-31.500001px;}
.v3{vertical-align:-29.250001px;}
.v6{vertical-align:-27.000001px;}
.v2{vertical-align:-3.925620px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.500001px;}
.vc{vertical-align:32.642857px;}
.vf{vertical-align:36.000001px;}
.v8{vertical-align:40.500001px;}
.v9{vertical-align:42.750001px;}
.vd{vertical-align:45.000001px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000524px;}
.ls13{letter-spacing:0.004185px;}
.ls17{letter-spacing:0.004212px;}
.lsb{letter-spacing:0.004230px;}
.ls18{letter-spacing:0.005355px;}
.ls1b{letter-spacing:0.006238px;}
.ls3{letter-spacing:0.009154px;}
.ls8{letter-spacing:0.013500px;}
.ls14{letter-spacing:0.017294px;}
.ls16{letter-spacing:0.024057px;}
.ls5{letter-spacing:0.030969px;}
.ls19{letter-spacing:0.031500px;}
.ls6{letter-spacing:0.031822px;}
.ls1c{letter-spacing:0.031867px;}
.ls9{letter-spacing:0.032918px;}
.ls11{letter-spacing:0.032940px;}
.lsd{letter-spacing:0.036944px;}
.ls0{letter-spacing:0.037885px;}
.ls1e{letter-spacing:0.048934px;}
.ls1d{letter-spacing:0.048979px;}
.ls15{letter-spacing:0.060181px;}
.ls12{letter-spacing:0.105885px;}
.lsa{letter-spacing:0.105930px;}
.lsf{letter-spacing:0.249997px;}
.lse{letter-spacing:1.500003px;}
.lsc{letter-spacing:107.976563px;}
.ls1a{letter-spacing:107.986325px;}
.ls10{letter-spacing:108.000003px;}
.ls7{letter-spacing:108.000426px;}
.ls2{letter-spacing:109.500007px;}
.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;}
}
.ws14{word-spacing:-69.804002px;}
.ws11{word-spacing:-46.536004px;}
.ws16{word-spacing:-33.240000px;}
.ws1{word-spacing:-30.850260px;}
.ws6{word-spacing:-29.916001px;}
.ws4{word-spacing:-27.120000px;}
.ws13{word-spacing:-25.764002px;}
.wse{word-spacing:-24.408001px;}
.ws10{word-spacing:-23.052000px;}
.ws17{word-spacing:-21.696001px;}
.ws9{word-spacing:-19.944001px;}
.ws8{word-spacing:-18.984000px;}
.ws18{word-spacing:-18.282001px;}
.ws15{word-spacing:-18.080001px;}
.wsf{word-spacing:-17.176002px;}
.wsb{word-spacing:-16.272001px;}
.ws0{word-spacing:-14.958000px;}
.ws5{word-spacing:-14.916001px;}
.wsa{word-spacing:-13.296001px;}
.ws7{word-spacing:-11.752001px;}
.ws12{word-spacing:-0.252000px;}
.wsd{word-spacing:-0.078000px;}
.wsc{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:1848.309203px;}
._13{margin-left:-1437.101741px;}
._c{margin-left:-25.200001px;}
._8{margin-left:-16.320002px;}
._9{margin-left:-14.850000px;}
._4{margin-left:-13.367122px;}
._5{margin-left:-11.519394px;}
._6{margin-left:-10.080000px;}
._0{margin-left:-8.566353px;}
._f{margin-left:-7.548031px;}
._b{margin-left:-6.417585px;}
._10{margin-left:-5.412000px;}
._7{margin-left:-4.197513px;}
._a{margin-left:-3.150000px;}
._1{margin-left:-1.766415px;}
._3{width:1.133554px;}
._2{width:2.447268px;}
._d{width:3.566415px;}
._12{width:7.308000px;}
._e{width:734.573485px;}
._11{width:784.929218px;}
.fc13{color:rgb(82,222,20);}
.fc12{color:rgb(255,0,255);}
.fc11{color:rgb(230,145,56);}
.fc15{color:rgb(255,153,0);}
.fc14{color:rgb(155,187,89);}
.fc10{color:rgb(31,73,125);}
.fcd{color:rgb(106,168,79);}
.fcf{color:rgb(247,150,70);}
.fc0{color:rgb(0,111,192);}
.fc1{color:rgb(7,44,102);}
.fc6{color:rgb(109,158,235);}
.fc2{color:rgb(255,0,0);}
.fcc{color:rgb(56,118,29);}
.fc16{color:rgb(68,43,162);}
.fce{color:rgb(0,32,96);}
.fc3{color:transparent;}
.fc4{color:rgb(255,255,255);}
.fc9{color:rgb(31,84,167);}
.fcb{color:rgb(0,0,0);}
.fc5{color:rgb(147,196,125);}
.fc8{color:rgb(74,134,232);}
.fc7{color:rgb(192,80,77);}
.fca{color:rgb(248,250,252);}
.fs5{font-size:6.000000px;}
.fs1c{font-size:18.000001px;}
.fs1f{font-size:36.000001px;}
.fs1d{font-size:42.000000px;}
.fs14{font-size:48.000003px;}
.fs18{font-size:52.000006px;}
.fs2{font-size:54.000002px;}
.fs10{font-size:54.021451px;}
.fs3{font-size:56.000003px;}
.fs12{font-size:60.000000px;}
.fs13{font-size:60.022232px;}
.fs11{font-size:60.023626px;}
.fs25{font-size:64.000007px;}
.fsc{font-size:66.000004px;}
.fs20{font-size:67.307061px;}
.fs22{font-size:68.000004px;}
.fsf{font-size:72.000002px;}
.fs1a{font-size:72.000006px;}
.fs19{font-size:76.000008px;}
.fs16{font-size:78.000005px;}
.fs1e{font-size:79.544710px;}
.fs23{font-size:80.000005px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:85.663528px;}
.fsa{font-size:90.000003px;}
.fsb{font-size:91.782354px;}
.fs1b{font-size:96.000006px;}
.fs24{font-size:97.901181px;}
.fs4{font-size:102.000000px;}
.fs17{font-size:108.000003px;}
.fs9{font-size:111.372781px;}
.fs15{font-size:114.000007px;}
.fsd{font-size:120.000001px;}
.fs8{font-size:124.824015px;}
.fs7{font-size:137.700013px;}
.fs6{font-size:163.200020px;}
.fs21{font-size:168.000014px;}
.fse{font-size:252.000008px;}
.y0{bottom:0.000000px;}
.y6f{bottom:8.830257px;}
.y18{bottom:10.925041px;}
.y96{bottom:12.373962px;}
.y65{bottom:31.352668px;}
.y95{bottom:33.973963px;}
.y2f{bottom:34.057325px;}
.ya8{bottom:40.980913px;}
.y85{bottom:41.078563px;}
.y63{bottom:53.150151px;}
.y72{bottom:54.690445px;}
.y62{bottom:57.193738px;}
.y82{bottom:59.303563px;}
.y14{bottom:62.708826px;}
.y3d{bottom:63.249391px;}
.y6e{bottom:67.621847px;}
.y1c{bottom:73.794689px;}
.y91{bottom:78.408494px;}
.y61{bottom:78.793739px;}
.y84{bottom:78.878564px;}
.y9a{bottom:80.350213px;}
.ya6{bottom:81.387653px;}
.y51{bottom:84.046421px;}
.y22{bottom:89.594156px;}
.y2e{bottom:91.930590px;}
.y13{bottom:98.708829px;}
.y81{bottom:100.703569px;}
.y6d{bottom:107.221871px;}
.y1b{bottom:109.794693px;}
.y50{bottom:111.766421px;}
.y90{bottom:113.995215px;}
.y3e{bottom:114.667853px;}
.y34{bottom:121.141969px;}
.y3c{bottom:126.249393px;}
.y83{bottom:127.478566px;}
.y80{bottom:133.103567px;}
.y60{bottom:135.123870px;}
.y6c{bottom:146.821861px;}
.y1a{bottom:147.594694px;}
.y3f{bottom:148.032991px;}
.y8f{bottom:148.195216px;}
.y4f{bottom:149.926423px;}
.y33{bottom:153.541970px;}
.y9b{bottom:175.837480px;}
.y48{bottom:180.283109px;}
.y5f{bottom:185.523876px;}
.y6b{bottom:186.421851px;}
.y8e{bottom:191.395218px;}
.y35{bottom:196.285413px;}
.ya7{bottom:201.529444px;}
.y6a{bottom:214.861852px;}
.y12{bottom:217.530690px;}
.y32{bottom:223.741977px;}
.y38{bottom:225.775974px;}
.y69{bottom:226.021853px;}
.y5e{bottom:230.523878px;}
.y53{bottom:230.830744px;}
.y8d{bottom:234.595219px;}
.y54{bottom:234.773678px;}
.y71{bottom:246.082639px;}
.y43{bottom:250.246722px;}
.y4d{bottom:250.810025px;}
.y11{bottom:253.530693px;}
.y31{bottom:256.141975px;}
.y52{bottom:265.030745px;}
.y99{bottom:268.871026px;}
.y3{bottom:270.325344px;}
.y36{bottom:278.755386px;}
.y98{bottom:280.894258px;}
.y4a{bottom:285.076401px;}
.y5c{bottom:287.122258px;}
.y44{bottom:287.855758px;}
.y2{bottom:295.525338px;}
.y42{bottom:297.731279px;}
.ya5{bottom:307.911651px;}
.y5b{bottom:314.122259px;}
.y1{bottom:320.725337px;}
.y29{bottom:334.864880px;}
.y49{bottom:337.195481px;}
.y5a{bottom:342.202261px;}
.ya4{bottom:343.911653px;}
.y28{bottom:346.461910px;}
.y5d{bottom:358.996508px;}
.y4b{bottom:369.805522px;}
.ya{bottom:385.360895px;}
.ya3{bottom:397.911654px;}
.y9c{bottom:405.098953px;}
.y73{bottom:410.917299px;}
.y7d{bottom:412.287287px;}
.y10{bottom:414.901765px;}
.y9{bottom:429.321943px;}
.y89{bottom:435.887283px;}
.ya2{bottom:439.311644px;}
.yf{bottom:450.742331px;}
.y66{bottom:451.452738px;}
.y79{bottom:451.736711px;}
.y86{bottom:453.401553px;}
.y8{bottom:463.869951px;}
.y25{bottom:469.531164px;}
.y24{bottom:479.413055px;}
.y4c{bottom:482.210690px;}
.ye{bottom:486.742334px;}
.ya1{bottom:487.911623px;}
.y2c{bottom:490.739986px;}
.y7c{bottom:490.974590px;}
.y7{bottom:499.641952px;}
.y46{bottom:500.802628px;}
.y59{bottom:502.999675px;}
.y26{bottom:503.748496px;}
.y41{bottom:519.776121px;}
.y97{bottom:520.399948px;}
.y45{bottom:520.636591px;}
.y74{bottom:521.990181px;}
.ya0{bottom:523.911613px;}
.y2b{bottom:524.939987px;}
.y40{bottom:527.418778px;}
.y78{bottom:543.714201px;}
.y8a{bottom:546.960164px;}
.y87{bottom:547.347727px;}
.y27{bottom:550.513064px;}
.y20{bottom:551.038098px;}
.y2a{bottom:559.139988px;}
.y77{bottom:561.802796px;}
.y9f{bottom:565.311609px;}
.y67{bottom:571.038810px;}
.y7a{bottom:571.322782px;}
.y1f{bottom:572.638096px;}
.y47{bottom:573.816491px;}
.y75{bottom:577.588380px;}
.y37{bottom:578.626530px;}
.yd{bottom:580.969253px;}
.y58{bottom:588.926097px;}
.y1e{bottom:594.238099px;}
.y88{bottom:594.372897px;}
.y4e{bottom:598.358254px;}
.y3b{bottom:598.427590px;}
.y76{bottom:599.964203px;}
.yac{bottom:600.977131px;}
.y19{bottom:602.085821px;}
.y8b{bottom:602.558363px;}
.yc{bottom:605.509253px;}
.y94{bottom:607.193735px;}
.y57{bottom:610.526097px;}
.y9e{bottom:613.911605px;}
.y1d{bottom:615.838100px;}
.y70{bottom:622.447554px;}
.yab{bottom:629.777123px;}
.y68{bottom:630.898206px;}
.y7b{bottom:631.182178px;}
.yb{bottom:632.509252px;}
.y3a{bottom:632.545987px;}
.y17{bottom:636.080903px;}
.y93{bottom:641.393736px;}
.y30{bottom:642.753298px;}
.y9d{bottom:649.911608px;}
.y23{bottom:650.842926px;}
.yaa{bottom:658.577121px;}
.y56{bottom:660.104525px;}
.y7f{bottom:662.585168px;}
.y39{bottom:663.145985px;}
.y64{bottom:663.209345px;}
.y16{bottom:671.076965px;}
.y6{bottom:671.247221px;}
.y8c{bottom:672.209345px;}
.y55{bottom:678.104526px;}
.y7e{bottom:678.785171px;}
.y92{bottom:684.593737px;}
.y5{bottom:686.763217px;}
.y2d{bottom:689.133543px;}
.ya9{bottom:708.555705px;}
.y4{bottom:725.319213px;}
.y21{bottom:728.374603px;}
.y15{bottom:728.375313px;}
.h5{height:4.500000px;}
.h2c{height:12.919922px;}
.h31{height:25.839845px;}
.h2e{height:30.146484px;}
.h30{height:31.500000px;}
.h17{height:34.945315px;}
.h23{height:36.000002px;}
.h13{height:39.329093px;}
.h22{height:40.500001px;}
.h15{height:43.681641px;}
.h16{height:43.697826px;}
.h14{height:43.698841px;}
.h20{height:45.000000px;}
.h28{height:47.373049px;}
.hc{height:49.500003px;}
.h33{height:50.480296px;}
.h10{height:51.679689px;}
.h12{height:54.000002px;}
.h25{height:55.986332px;}
.h19{height:56.633793px;}
.h1c{height:56.787707px;}
.h21{height:58.500004px;}
.h2f{height:59.658533px;}
.h24{height:60.292969px;}
.h1f{height:60.375000px;}
.h1e{height:61.154297px;}
.h1{height:63.000000px;}
.h2{height:64.247646px;}
.h29{height:64.599611px;}
.ha{height:67.500002px;}
.hb{height:68.836766px;}
.h2b{height:68.906254px;}
.h3a{height:72.000005px;}
.h3b{height:73.425886px;}
.h3{height:73.500003px;}
.h1d{height:74.260843px;}
.h4{height:76.500000px;}
.h1a{height:77.519534px;}
.h1b{height:77.625002px;}
.h27{height:78.416018px;}
.h18{height:81.826177px;}
.h35{height:81.937505px;}
.h26{height:82.772466px;}
.h9{height:83.529585px;}
.h3c{height:84.000007px;}
.h11{height:86.132813px;}
.h39{height:86.250001px;}
.hd{height:87.128907px;}
.h32{height:87.328128px;}
.he{height:87.766656px;}
.h2a{height:92.179693px;}
.h8{height:93.618012px;}
.h36{height:97.300771px;}
.h2d{height:97.300789px;}
.h37{height:101.549111px;}
.h38{height:102.421880px;}
.h7{height:103.275010px;}
.h6{height:122.400015px;}
.hf{height:189.000006px;}
.h34{height:241.920008px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x18{left:19.119095px;}
.x19{left:29.244096px;}
.x1b{left:83.609131px;}
.x58{left:131.244096px;}
.x33{left:137.672243px;}
.x30{left:149.527557px;}
.x4a{left:150.631902px;}
.x3d{left:154.621077px;}
.x20{left:156.615485px;}
.x1f{left:163.237205px;}
.x7b{left:168.756500px;}
.x69{left:174.637806px;}
.x6a{left:184.427225px;}
.x2f{left:186.240396px;}
.x36{left:191.723033px;}
.x2d{left:193.219502px;}
.x31{left:197.902559px;}
.x75{left:200.529795px;}
.x2e{left:208.841833px;}
.x46{left:210.329298px;}
.x47{left:212.651256px;}
.x6b{left:228.637807px;}
.x54{left:231.714919px;}
.x6c{left:233.214570px;}
.x34{left:242.586537px;}
.x35{left:247.271156px;}
.x6e{left:253.245338px;}
.x52{left:259.198838px;}
.x48{left:261.261915px;}
.x55{left:262.439522px;}
.x5c{left:268.133397px;}
.x70{left:270.587281px;}
.x12{left:273.130737px;}
.x2c{left:275.058122px;}
.x72{left:283.732659px;}
.x9{left:287.829455px;}
.x6d{left:292.001027px;}
.x66{left:293.943854px;}
.x1d{left:300.875576px;}
.x13{left:302.152600px;}
.x76{left:308.322325px;}
.x7c{left:323.980402px;}
.x65{left:326.902837px;}
.x1{left:329.250591px;}
.x64{left:330.882086px;}
.x7d{left:333.504832px;}
.xe{left:339.182024px;}
.x8{left:348.034230px;}
.x5b{left:369.259842px;}
.x1e{left:375.626352px;}
.x4f{left:379.579729px;}
.x1c{left:384.682912px;}
.x3e{left:388.932786px;}
.x73{left:393.315448px;}
.x3c{left:400.402400px;}
.x44{left:408.404072px;}
.xb{left:412.418691px;}
.x15{left:417.489419px;}
.x10{left:432.041324px;}
.x5{left:452.062724px;}
.x6{left:458.870786px;}
.x4b{left:461.512016px;}
.x2{left:465.028800px;}
.x71{left:469.172378px;}
.x27{left:470.698692px;}
.x3{left:473.359391px;}
.x42{left:475.496445px;}
.x60{left:485.561041px;}
.xa{left:487.648703px;}
.x11{left:489.298853px;}
.x5a{left:491.845999px;}
.x79{left:494.087123px;}
.x7a{left:500.428929px;}
.x74{left:508.538728px;}
.x53{left:509.776098px;}
.x59{left:517.127957px;}
.x45{left:524.959172px;}
.x22{left:530.086599px;}
.x68{left:554.367651px;}
.x28{left:562.806624px;}
.x23{left:566.316616px;}
.x61{left:577.068510px;}
.xf{left:581.694229px;}
.x49{left:594.374982px;}
.x7{left:595.888005px;}
.x3b{left:599.445522px;}
.x7e{left:601.778607px;}
.x50{left:610.154520px;}
.x56{left:625.700804px;}
.x24{left:627.545914px;}
.x3a{left:628.932376px;}
.xc{left:633.375054px;}
.x51{left:653.462627px;}
.x62{left:659.367989px;}
.x77{left:661.645173px;}
.x3f{left:669.526708px;}
.x41{left:677.548413px;}
.x57{left:681.194947px;}
.x4c{left:682.258401px;}
.x26{left:687.558762px;}
.x4d{left:697.024793px;}
.x1a{left:698.169683px;}
.x78{left:699.245122px;}
.x6f{left:705.044310px;}
.x63{left:713.367990px;}
.x25{left:722.951473px;}
.x4e{left:738.871719px;}
.x32{left:744.457749px;}
.x4{left:751.145300px;}
.xd{left:779.570541px;}
.x37{left:783.020725px;}
.x5f{left:807.434126px;}
.x5d{left:828.809127px;}
.x5e{left:836.123044px;}
.x2b{left:837.503215px;}
.x40{left:844.222176px;}
.x21{left:847.094239px;}
.x29{left:852.564200px;}
.x16{left:856.100363px;}
.x2a{left:864.035583px;}
.x14{left:868.609074px;}
.x17{left:872.273424px;}
.x38{left:912.668804px;}
.x39{left:924.361750px;}
.x67{left:977.204236px;}
.x43{left:993.637584px;}
@media print{
.va{vertical-align:-83.999983pt;}
.ve{vertical-align:-40.000001pt;}
.v5{vertical-align:-38.000001pt;}
.v7{vertical-align:-36.000001pt;}
.vb{vertical-align:-34.000009pt;}
.v4{vertical-align:-28.000001pt;}
.v3{vertical-align:-26.000001pt;}
.v6{vertical-align:-24.000001pt;}
.v2{vertical-align:-3.489440pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.000001pt;}
.vc{vertical-align:29.015873pt;}
.vf{vertical-align:32.000001pt;}
.v8{vertical-align:36.000001pt;}
.v9{vertical-align:38.000001pt;}
.vd{vertical-align:40.000001pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000466pt;}
.ls13{letter-spacing:0.003720pt;}
.ls17{letter-spacing:0.003744pt;}
.lsb{letter-spacing:0.003760pt;}
.ls18{letter-spacing:0.004760pt;}
.ls1b{letter-spacing:0.005545pt;}
.ls3{letter-spacing:0.008137pt;}
.ls8{letter-spacing:0.012000pt;}
.ls14{letter-spacing:0.015372pt;}
.ls16{letter-spacing:0.021384pt;}
.ls5{letter-spacing:0.027528pt;}
.ls19{letter-spacing:0.028000pt;}
.ls6{letter-spacing:0.028286pt;}
.ls1c{letter-spacing:0.028326pt;}
.ls9{letter-spacing:0.029260pt;}
.ls11{letter-spacing:0.029280pt;}
.lsd{letter-spacing:0.032839pt;}
.ls0{letter-spacing:0.033675pt;}
.ls1e{letter-spacing:0.043496pt;}
.ls1d{letter-spacing:0.043536pt;}
.ls15{letter-spacing:0.053494pt;}
.ls12{letter-spacing:0.094120pt;}
.lsa{letter-spacing:0.094160pt;}
.lsf{letter-spacing:0.222220pt;}
.lse{letter-spacing:1.333336pt;}
.lsc{letter-spacing:95.979167pt;}
.ls1a{letter-spacing:95.987844pt;}
.ls10{letter-spacing:96.000003pt;}
.ls7{letter-spacing:96.000379pt;}
.ls2{letter-spacing:97.333339pt;}
.ws14{word-spacing:-62.048002pt;}
.ws11{word-spacing:-41.365337pt;}
.ws16{word-spacing:-29.546667pt;}
.ws1{word-spacing:-27.422454pt;}
.ws6{word-spacing:-26.592001pt;}
.ws4{word-spacing:-24.106667pt;}
.ws13{word-spacing:-22.901335pt;}
.wse{word-spacing:-21.696001pt;}
.ws10{word-spacing:-20.490667pt;}
.ws17{word-spacing:-19.285335pt;}
.ws9{word-spacing:-17.728001pt;}
.ws8{word-spacing:-16.874667pt;}
.ws18{word-spacing:-16.250668pt;}
.ws15{word-spacing:-16.071112pt;}
.wsf{word-spacing:-15.267557pt;}
.wsb{word-spacing:-14.464001pt;}
.ws0{word-spacing:-13.296000pt;}
.ws5{word-spacing:-13.258667pt;}
.wsa{word-spacing:-11.818668pt;}
.ws7{word-spacing:-10.446223pt;}
.ws12{word-spacing:-0.224000pt;}
.wsd{word-spacing:-0.069333pt;}
.wsc{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:1642.941514pt;}
._13{margin-left:-1277.423770pt;}
._c{margin-left:-22.400001pt;}
._8{margin-left:-14.506668pt;}
._9{margin-left:-13.200000pt;}
._4{margin-left:-11.881886pt;}
._5{margin-left:-10.239461pt;}
._6{margin-left:-8.960000pt;}
._0{margin-left:-7.614536pt;}
._f{margin-left:-6.709361pt;}
._b{margin-left:-5.704520pt;}
._10{margin-left:-4.810667pt;}
._7{margin-left:-3.731123pt;}
._a{margin-left:-2.800000pt;}
._1{margin-left:-1.570147pt;}
._3{width:1.007603pt;}
._2{width:2.175349pt;}
._d{width:3.170147pt;}
._12{width:6.496000pt;}
._e{width:652.954209pt;}
._11{width:697.714860pt;}
.fs5{font-size:5.333334pt;}
.fs1c{font-size:16.000001pt;}
.fs1f{font-size:32.000001pt;}
.fs1d{font-size:37.333333pt;}
.fs14{font-size:42.666669pt;}
.fs18{font-size:46.222228pt;}
.fs2{font-size:48.000002pt;}
.fs10{font-size:48.019067pt;}
.fs3{font-size:49.777780pt;}
.fs12{font-size:53.333334pt;}
.fs13{font-size:53.353095pt;}
.fs11{font-size:53.354334pt;}
.fs25{font-size:56.888895pt;}
.fsc{font-size:58.666670pt;}
.fs20{font-size:59.828499pt;}
.fs22{font-size:60.444448pt;}
.fsf{font-size:64.000002pt;}
.fs1a{font-size:64.000005pt;}
.fs19{font-size:67.555563pt;}
.fs16{font-size:69.333338pt;}
.fs1e{font-size:70.706409pt;}
.fs23{font-size:71.111115pt;}
.fs0{font-size:74.666666pt;}
.fs1{font-size:76.145358pt;}
.fsa{font-size:80.000003pt;}
.fsb{font-size:81.584315pt;}
.fs1b{font-size:85.333339pt;}
.fs24{font-size:87.023272pt;}
.fs4{font-size:90.666667pt;}
.fs17{font-size:96.000003pt;}
.fs9{font-size:98.998027pt;}
.fs15{font-size:101.333339pt;}
.fsd{font-size:106.666667pt;}
.fs8{font-size:110.954680pt;}
.fs7{font-size:122.400012pt;}
.fs6{font-size:145.066685pt;}
.fs21{font-size:149.333346pt;}
.fse{font-size:224.000007pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:7.849117pt;}
.y18{bottom:9.711147pt;}
.y96{bottom:10.999077pt;}
.y65{bottom:27.869038pt;}
.y95{bottom:30.199078pt;}
.y2f{bottom:30.273178pt;}
.ya8{bottom:36.427478pt;}
.y85{bottom:36.514278pt;}
.y63{bottom:47.244578pt;}
.y72{bottom:48.613729pt;}
.y62{bottom:50.838879pt;}
.y82{bottom:52.714279pt;}
.y14{bottom:55.741179pt;}
.y3d{bottom:56.221681pt;}
.y6e{bottom:60.108309pt;}
.y1c{bottom:65.595279pt;}
.y91{bottom:69.696439pt;}
.y61{bottom:70.038879pt;}
.y84{bottom:70.114279pt;}
.y9a{bottom:71.422411pt;}
.ya6{bottom:72.344580pt;}
.y51{bottom:74.707929pt;}
.y22{bottom:79.639250pt;}
.y2e{bottom:81.716080pt;}
.y13{bottom:87.741182pt;}
.y81{bottom:89.514284pt;}
.y6d{bottom:95.308330pt;}
.y1b{bottom:97.595283pt;}
.y50{bottom:99.347930pt;}
.y90{bottom:101.329080pt;}
.y3e{bottom:101.926980pt;}
.y34{bottom:107.681750pt;}
.y3c{bottom:112.221683pt;}
.y83{bottom:113.314281pt;}
.y80{bottom:118.314282pt;}
.y60{bottom:120.110107pt;}
.y6c{bottom:130.508321pt;}
.y1a{bottom:131.195283pt;}
.y3f{bottom:131.584881pt;}
.y8f{bottom:131.729081pt;}
.y4f{bottom:133.267931pt;}
.y33{bottom:136.481751pt;}
.y9b{bottom:156.299982pt;}
.y48{bottom:160.251652pt;}
.y5f{bottom:164.910112pt;}
.y6b{bottom:165.708312pt;}
.y8e{bottom:170.129082pt;}
.y35{bottom:174.475923pt;}
.ya7{bottom:179.137284pt;}
.y6a{bottom:190.988313pt;}
.y12{bottom:193.360613pt;}
.y32{bottom:198.881757pt;}
.y38{bottom:200.689754pt;}
.y69{bottom:200.908313pt;}
.y5e{bottom:204.910114pt;}
.y53{bottom:205.182884pt;}
.y8d{bottom:208.529084pt;}
.y54{bottom:208.687714pt;}
.y71{bottom:218.740124pt;}
.y43{bottom:222.441531pt;}
.y4d{bottom:222.942244pt;}
.y11{bottom:225.360616pt;}
.y31{bottom:227.681755pt;}
.y52{bottom:235.582884pt;}
.y99{bottom:238.996468pt;}
.y3{bottom:240.289195pt;}
.y36{bottom:247.782565pt;}
.y98{bottom:249.683785pt;}
.y4a{bottom:253.401245pt;}
.y5c{bottom:255.219785pt;}
.y44{bottom:255.871785pt;}
.y2{bottom:262.689189pt;}
.y42{bottom:264.650025pt;}
.ya5{bottom:273.699246pt;}
.y5b{bottom:279.219786pt;}
.y1{bottom:285.089188pt;}
.y29{bottom:297.657671pt;}
.y49{bottom:299.729317pt;}
.y5a{bottom:304.179788pt;}
.ya4{bottom:305.699247pt;}
.y28{bottom:307.966142pt;}
.y5d{bottom:319.108007pt;}
.y4b{bottom:328.716019pt;}
.ya{bottom:342.543018pt;}
.ya3{bottom:353.699248pt;}
.y9c{bottom:360.087958pt;}
.y73{bottom:365.259822pt;}
.y7d{bottom:366.477589pt;}
.y10{bottom:368.801569pt;}
.y9{bottom:381.619505pt;}
.y89{bottom:387.455362pt;}
.ya2{bottom:390.499239pt;}
.yf{bottom:400.659850pt;}
.y66{bottom:401.291323pt;}
.y79{bottom:401.543743pt;}
.y86{bottom:403.023603pt;}
.y8{bottom:412.328845pt;}
.y25{bottom:417.361034pt;}
.y24{bottom:426.144938pt;}
.y4c{bottom:428.631725pt;}
.ye{bottom:432.659853pt;}
.ya1{bottom:433.699221pt;}
.y2c{bottom:436.213321pt;}
.y7c{bottom:436.421858pt;}
.y7{bottom:444.126179pt;}
.y46{bottom:445.157891pt;}
.y59{bottom:447.110822pt;}
.y26{bottom:447.776441pt;}
.y41{bottom:462.023218pt;}
.y97{bottom:462.577732pt;}
.y45{bottom:462.788081pt;}
.y74{bottom:463.991272pt;}
.ya0{bottom:465.699212pt;}
.y2b{bottom:466.613322pt;}
.y40{bottom:468.816692pt;}
.y78{bottom:483.301512pt;}
.y8a{bottom:486.186813pt;}
.y87{bottom:486.531313pt;}
.y27{bottom:489.344946pt;}
.y20{bottom:489.811643pt;}
.y2a{bottom:497.013323pt;}
.y77{bottom:499.380263pt;}
.y9f{bottom:502.499208pt;}
.y67{bottom:507.590053pt;}
.y7a{bottom:507.842473pt;}
.y1f{bottom:509.011641pt;}
.y47{bottom:510.059103pt;}
.y75{bottom:513.411893pt;}
.y37{bottom:514.334693pt;}
.yd{bottom:516.417113pt;}
.y58{bottom:523.489864pt;}
.y1e{bottom:528.211644pt;}
.y88{bottom:528.331464pt;}
.y4e{bottom:531.874004pt;}
.y3b{bottom:531.935636pt;}
.y76{bottom:533.301514pt;}
.yac{bottom:534.201894pt;}
.y19{bottom:535.187396pt;}
.y8b{bottom:535.607434pt;}
.yc{bottom:538.230447pt;}
.y94{bottom:539.727764pt;}
.y57{bottom:542.689864pt;}
.y9e{bottom:545.699204pt;}
.y1d{bottom:547.411644pt;}
.y70{bottom:553.286715pt;}
.yab{bottom:559.801887pt;}
.y68{bottom:560.798405pt;}
.y7b{bottom:561.050825pt;}
.yb{bottom:562.230446pt;}
.y3a{bottom:562.263100pt;}
.y17{bottom:565.405247pt;}
.y93{bottom:570.127765pt;}
.y30{bottom:571.336265pt;}
.y9d{bottom:577.699207pt;}
.y23{bottom:578.527045pt;}
.yaa{bottom:585.401886pt;}
.y56{bottom:586.759578pt;}
.y7f{bottom:588.964594pt;}
.y39{bottom:589.463098pt;}
.y64{bottom:589.519418pt;}
.y16{bottom:596.512858pt;}
.y6{bottom:596.664196pt;}
.y8c{bottom:597.519418pt;}
.y55{bottom:602.759578pt;}
.y7e{bottom:603.364596pt;}
.y92{bottom:608.527766pt;}
.y5{bottom:610.456192pt;}
.y2d{bottom:612.563150pt;}
.ya9{bottom:629.827293pt;}
.y4{bottom:644.728190pt;}
.y21{bottom:647.444092pt;}
.y15{bottom:647.444723pt;}
.h5{height:4.000000pt;}
.h2c{height:11.484375pt;}
.h31{height:22.968751pt;}
.h2e{height:26.796875pt;}
.h30{height:28.000000pt;}
.h17{height:31.062502pt;}
.h23{height:32.000002pt;}
.h13{height:34.959194pt;}
.h22{height:36.000001pt;}
.h15{height:38.828125pt;}
.h16{height:38.842512pt;}
.h14{height:38.843414pt;}
.h20{height:40.000000pt;}
.h28{height:42.109377pt;}
.hc{height:44.000002pt;}
.h33{height:44.871374pt;}
.h10{height:45.937501pt;}
.h12{height:48.000002pt;}
.h25{height:49.765629pt;}
.h19{height:50.341149pt;}
.h1c{height:50.477962pt;}
.h21{height:52.000004pt;}
.h2f{height:53.029807pt;}
.h24{height:53.593750pt;}
.h1f{height:53.666666pt;}
.h1e{height:54.359375pt;}
.h1{height:56.000000pt;}
.h2{height:57.109018pt;}
.h29{height:57.421877pt;}
.ha{height:60.000002pt;}
.hb{height:61.188236pt;}
.h2b{height:61.250004pt;}
.h3a{height:64.000004pt;}
.h3b{height:65.267454pt;}
.h3{height:65.333336pt;}
.h1d{height:66.009638pt;}
.h4{height:68.000000pt;}
.h1a{height:68.906252pt;}
.h1b{height:69.000002pt;}
.h27{height:69.703127pt;}
.h18{height:72.734379pt;}
.h35{height:72.833338pt;}
.h26{height:73.575525pt;}
.h9{height:74.248520pt;}
.h3c{height:74.666673pt;}
.h11{height:76.562501pt;}
.h39{height:76.666667pt;}
.hd{height:77.447917pt;}
.h32{height:77.625002pt;}
.he{height:78.014805pt;}
.h2a{height:81.937505pt;}
.h8{height:83.216010pt;}
.h36{height:86.489574pt;}
.h2d{height:86.489590pt;}
.h37{height:90.265877pt;}
.h38{height:91.041671pt;}
.h7{height:91.800009pt;}
.h6{height:108.800013pt;}
.hf{height:168.000005pt;}
.h34{height:215.040007pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x18{left:16.994752pt;}
.x19{left:25.994752pt;}
.x1b{left:74.319227pt;}
.x58{left:116.661419pt;}
.x33{left:122.375327pt;}
.x30{left:132.913384pt;}
.x4a{left:133.895024pt;}
.x3d{left:137.440957pt;}
.x20{left:139.213764pt;}
.x1f{left:145.099738pt;}
.x7b{left:150.005778pt;}
.x69{left:155.233605pt;}
.x6a{left:163.935311pt;}
.x2f{left:165.547018pt;}
.x36{left:170.420473pt;}
.x2d{left:171.750668pt;}
.x31{left:175.913386pt;}
.x75{left:178.248707pt;}
.x2e{left:185.637185pt;}
.x46{left:186.959376pt;}
.x47{left:189.023339pt;}
.x6b{left:203.233607pt;}
.x54{left:205.968817pt;}
.x6c{left:207.301840pt;}
.x34{left:215.632477pt;}
.x35{left:219.796583pt;}
.x6e{left:225.106967pt;}
.x52{left:230.398967pt;}
.x48{left:232.232813pt;}
.x55{left:233.279575pt;}
.x5c{left:238.340798pt;}
.x70{left:240.522028pt;}
.x12{left:242.782878pt;}
.x2c{left:244.496109pt;}
.x72{left:252.206808pt;}
.x9{left:255.848404pt;}
.x6d{left:259.556468pt;}
.x66{left:261.283425pt;}
.x1d{left:267.444957pt;}
.x13{left:268.580089pt;}
.x76{left:274.064289pt;}
.x7c{left:287.982579pt;}
.x65{left:290.580299pt;}
.x1{left:292.667192pt;}
.x64{left:294.117409pt;}
.x7d{left:296.448739pt;}
.xe{left:301.495133pt;}
.x8{left:309.363760pt;}
.x5b{left:328.230971pt;}
.x1e{left:333.890091pt;}
.x4f{left:337.404204pt;}
.x1c{left:341.940366pt;}
.x3e{left:345.718032pt;}
.x73{left:349.613731pt;}
.x3c{left:355.913244pt;}
.x44{left:363.025842pt;}
.xb{left:366.594392pt;}
.x15{left:371.101706pt;}
.x10{left:384.036732pt;}
.x5{left:401.833533pt;}
.x6{left:407.885143pt;}
.x4b{left:410.232903pt;}
.x2{left:413.358933pt;}
.x71{left:417.042113pt;}
.x27{left:418.398837pt;}
.x3{left:420.763903pt;}
.x42{left:422.663507pt;}
.x60{left:431.609814pt;}
.xa{left:433.465514pt;}
.x11{left:434.932314pt;}
.x5a{left:437.196444pt;}
.x79{left:439.188554pt;}
.x7a{left:444.825714pt;}
.x74{left:452.034424pt;}
.x53{left:453.134310pt;}
.x59{left:459.669295pt;}
.x45{left:466.630375pt;}
.x22{left:471.188088pt;}
.x68{left:492.771246pt;}
.x28{left:500.272555pt;}
.x23{left:503.392547pt;}
.x61{left:512.949786pt;}
.xf{left:517.061537pt;}
.x49{left:528.333317pt;}
.x7{left:529.678227pt;}
.x3b{left:532.840464pt;}
.x7e{left:534.914317pt;}
.x50{left:542.359573pt;}
.x56{left:556.178493pt;}
.x24{left:557.818590pt;}
.x3a{left:559.051001pt;}
.xc{left:563.000048pt;}
.x51{left:580.855669pt;}
.x62{left:586.104879pt;}
.x77{left:588.129043pt;}
.x3f{left:595.134852pt;}
.x41{left:602.265256pt;}
.x57{left:605.506619pt;}
.x4c{left:606.451912pt;}
.x26{left:611.163344pt;}
.x4d{left:619.577594pt;}
.x1a{left:620.595274pt;}
.x78{left:621.551220pt;}
.x6f{left:626.706053pt;}
.x63{left:634.104880pt;}
.x25{left:642.623532pt;}
.x4e{left:656.774861pt;}
.x32{left:661.740221pt;}
.x4{left:667.684711pt;}
.xd{left:692.951592pt;}
.x37{left:696.018422pt;}
.x5f{left:717.719223pt;}
.x5d{left:736.719224pt;}
.x5e{left:743.220484pt;}
.x2b{left:744.447302pt;}
.x40{left:750.419712pt;}
.x21{left:752.972657pt;}
.x29{left:757.834844pt;}
.x16{left:760.978100pt;}
.x2a{left:768.031630pt;}
.x14{left:772.096955pt;}
.x17{left:775.354155pt;}
.x38{left:811.261159pt;}
.x39{left:821.654889pt;}
.x67{left:868.625988pt;}
.x43{left:883.233408pt;}
}




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