
    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_1a297ef9dbc0a7b71218804c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_18694eaa41ca9a8c47636ca7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_e55069b57a92a21e9c51494c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e93b54423d3ee3f91c62e7cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_a6116434c794406bb4b677a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.179199;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_e1a7aa7cbec28c851bd58cba.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_21c583930d8da15e58f1dd2d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.709473;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_5e1886c0af341710ac65006e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_02c5afa92c486e18dcb1e2c9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.996094;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_084b7bdb41fba6514fbfd005.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_b8e91f9fb4b1ea11d8883208.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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_50ab3c30c1c575cdb73f94d3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.889648;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_9d822c37598737d2343410a2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-62.645359px;}
.v11{vertical-align:-56.167842px;}
.v4{vertical-align:-51.821392px;}
.vc{vertical-align:-48.262023px;}
.v5{vertical-align:-46.775928px;}
.v8{vertical-align:-42.487932px;}
.v1{vertical-align:-41.023252px;}
.ve{vertical-align:-35.984609px;}
.v6{vertical-align:-30.924354px;}
.vb{vertical-align:-17.287839px;}
.v7{vertical-align:-11.504823px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:43.909809px;}
.v9{vertical-align:50.428868px;}
.vd{vertical-align:56.889375px;}
.v3{vertical-align:62.645359px;}
.v10{vertical-align:79.894419px;}
.va{vertical-align:91.479485px;}
.ls0{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.018048px;}
.ls3f{letter-spacing:0.052611px;}
.ls36{letter-spacing:0.085352px;}
.ls18{letter-spacing:0.088829px;}
.ls1c{letter-spacing:0.088974px;}
.ls15{letter-spacing:0.125420px;}
.lse{letter-spacing:0.130115px;}
.ls10{letter-spacing:0.132839px;}
.ls1e{letter-spacing:0.133201px;}
.ls16{letter-spacing:0.137799px;}
.ls1a{letter-spacing:0.137975px;}
.lsd{letter-spacing:0.145358px;}
.lsf{letter-spacing:0.149986px;}
.ls2a{letter-spacing:0.168480px;}
.ls12{letter-spacing:0.169518px;}
.lsa{letter-spacing:0.171785px;}
.ls9{letter-spacing:0.172055px;}
.ls42{letter-spacing:0.178422px;}
.ls41{letter-spacing:0.285338px;}
.ls3a{letter-spacing:0.307483px;}
.lsb{letter-spacing:0.310579px;}
.ls20{letter-spacing:0.399092px;}
.lsc{letter-spacing:0.406293px;}
.ls19{letter-spacing:1.785492px;}
.ls1d{letter-spacing:1.824282px;}
.ls11{letter-spacing:2.464725px;}
.ls21{letter-spacing:2.501437px;}
.ls14{letter-spacing:2.508846px;}
.ls1b{letter-spacing:2.545269px;}
.ls17{letter-spacing:2.545414px;}
.ls8{letter-spacing:5.797456px;}
.ls39{letter-spacing:9.607332px;}
.ls1{letter-spacing:9.607363px;}
.ls6{letter-spacing:28.287310px;}
.ls3d{letter-spacing:28.972997px;}
.ls13{letter-spacing:29.269823px;}
.ls25{letter-spacing:29.727084px;}
.ls28{letter-spacing:29.727178px;}
.ls27{letter-spacing:30.403844px;}
.ls26{letter-spacing:30.465333px;}
.ls22{letter-spacing:32.555601px;}
.ls23{letter-spacing:35.485616px;}
.ls2d{letter-spacing:36.101574px;}
.ls2b{letter-spacing:36.153310px;}
.ls35{letter-spacing:36.782929px;}
.ls33{letter-spacing:36.832772px;}
.ls3c{letter-spacing:37.046994px;}
.ls3e{letter-spacing:37.183207px;}
.ls3{letter-spacing:39.259891px;}
.ls2{letter-spacing:42.190475px;}
.ls32{letter-spacing:46.334553px;}
.ls40{letter-spacing:46.727610px;}
.ls31{letter-spacing:47.201537px;}
.ls37{letter-spacing:51.847735px;}
.ls38{letter-spacing:52.128065px;}
.ls7{letter-spacing:52.533974px;}
.ls2f{letter-spacing:52.595743px;}
.ls30{letter-spacing:52.596942px;}
.ls2e{letter-spacing:52.635952px;}
.ls5{letter-spacing:57.584322px;}
.ls4{letter-spacing:62.645405px;}
.ls29{letter-spacing:86.631947px;}
.ls24{letter-spacing:97.772796px;}
.ls1f{letter-spacing:113.584310px;}
.ls2c{letter-spacing:399.034727px;}
.ls34{letter-spacing:1258.003193px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1b{word-spacing:-189.360042px;}
.ws12{word-spacing:-168.480273px;}
.ws17{word-spacing:-147.600504px;}
.ws3{word-spacing:-63.180102px;}
.ws6{word-spacing:-58.026188px;}
.ws25{word-spacing:-56.519884px;}
.ws19{word-spacing:-52.559953px;}
.ws7{word-spacing:-52.263372px;}
.ws10{word-spacing:-48.157736px;}
.ws11{word-spacing:-47.567201px;}
.ws1e{word-spacing:-47.340011px;}
.wsf{word-spacing:-46.890723px;}
.ws18{word-spacing:-46.669036px;}
.ws2{word-spacing:-42.120068px;}
.ws20{word-spacing:-40.737739px;}
.ws13{word-spacing:-38.076542px;}
.ws1a{word-spacing:-36.900126px;}
.ws9{word-spacing:-34.775910px;}
.ws1{word-spacing:-31.499919px;}
.ws16{word-spacing:-31.000370px;}
.ws14{word-spacing:-28.475926px;}
.ws1f{word-spacing:-24.479907px;}
.ws23{word-spacing:-23.759953px;}
.wsd{word-spacing:-23.250278px;}
.ws5{word-spacing:-19.038271px;}
.wse{word-spacing:-2.015995px;}
.ws26{word-spacing:-0.950398px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:0.420480px;}
.ws15{word-spacing:0.503999px;}
.ws8{word-spacing:0.757440px;}
.ws1d{word-spacing:1.681918px;}
.wsc{word-spacing:9.905837px;}
.wsb{word-spacing:10.150139px;}
.wsa{word-spacing:10.950496px;}
.ws21{word-spacing:490.785598px;}
.ws24{word-spacing:553.411955px;}
.ws1c{word-spacing:717.835712px;}
.ws22{word-spacing:935.772511px;}
._1c{margin-left:-32.853653px;}
._b{margin-left:-28.810127px;}
._1d{margin-left:-24.895390px;}
._2{margin-left:-20.723074px;}
._7{margin-left:-18.195869px;}
._13{margin-left:-16.005626px;}
._a{margin-left:-14.152343px;}
._5{margin-left:-12.130580px;}
._f{margin-left:-10.900115px;}
._4{margin-left:-9.350655px;}
._6{margin-left:-7.834333px;}
._15{margin-left:-5.986756px;}
._10{margin-left:-4.849937px;}
._9{margin-left:-3.790806px;}
._3{margin-left:-2.021763px;}
._0{margin-left:-1.010882px;}
._1{width:1.010882px;}
._8{width:2.274484px;}
._d{width:4.188964px;}
._14{width:5.479966px;}
._e{width:24.364749px;}
._19{width:26.373427px;}
._12{width:36.538539px;}
._17{width:38.813668px;}
._16{width:45.658154px;}
._18{width:53.935601px;}
._1a{width:55.293132px;}
._11{width:79.863065px;}
._c{width:119.169817px;}
._1b{width:1034.629339px;}
.fc8{color:rgb(255,0,0);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(120,255,135);}
.fc2{color:rgb(255,255,0);}
.fc7{color:rgb(153,204,255);}
.fc1{color:transparent;}
.fc6{color:rgb(0,0,0);}
.fc5{color:rgb(218,218,218);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:84.240136px;}
.fsa{font-size:95.039814px;}
.fse{font-size:97.919629px;}
.fs9{font-size:105.119906px;}
.fs4{font-size:112.320182px;}
.fs2{font-size:125.999675px;}
.fs6{font-size:140.400227px;}
.fsb{font-size:147.600504px;}
.fs10{font-size:150.480319px;}
.fs7{font-size:157.680596px;}
.fs3{font-size:168.480273px;}
.fs1{font-size:189.360042px;}
.fs5{font-size:210.239811px;}
.fsf{font-size:226.079534px;}
.fsc{font-size:231.840640px;}
.fs0{font-size:252.720409px;}
.fsd{font-size:347.040638px;}
.y0{bottom:0.000000px;}
.y86{bottom:11.497489px;}
.y4{bottom:13.666377px;}
.ya{bottom:103.310998px;}
.y63{bottom:105.828120px;}
.y6b{bottom:109.265695px;}
.ya2{bottom:110.149568px;}
.y22{bottom:114.487031px;}
.y67{bottom:122.754704px;}
.y4a{bottom:126.900707px;}
.y91{bottom:129.779996px;}
.y57{bottom:130.322041px;}
.y1a{bottom:134.276839px;}
.y29{bottom:148.137607px;}
.ya1{bottom:154.256770px;}
.y62{bottom:160.204059px;}
.y66{bottom:163.621507px;}
.y9d{bottom:169.914104px;}
.y56{bottom:173.880535px;}
.y49{bottom:177.309009px;}
.y90{bottom:180.537955px;}
.y12{bottom:185.227101px;}
.y21{bottom:197.997649px;}
.y8a{bottom:201.596756px;}
.y9c{bottom:214.021307px;}
.y61{bottom:214.734015px;}
.y55{bottom:217.439028px;}
.y3d{bottom:223.914340px;}
.y7d{bottom:226.613875px;}
.y48{bottom:227.881877px;}
.y11{bottom:235.799969px;}
.y20{bottom:235.988294px;}
.y89{bottom:239.402837px;}
.y78{bottom:251.636153px;}
.y7e{bottom:252.542975px;}
.y3c{bottom:261.904985px;}
.y60{bottom:269.090688px;}
.y54{bottom:271.625627px;}
.y7f{bottom:276.473464px;}
.y47{bottom:278.105151px;}
.y10{bottom:286.208334px;}
.y7{bottom:295.011861px;}
.y7a{bottom:296.992517px;}
.y3b{bottom:299.880233px;}
.y77{bottom:302.209021px;}
.y18{bottom:309.427831px;}
.y53{bottom:314.999558px;}
.y5f{bottom:323.639853px;}
.y33{bottom:324.904810px;}
.y46{bottom:328.863110px;}
.y2a{bottom:332.631406px;}
.yf{bottom:336.781202px;}
.y76{bottom:352.617386px;}
.y9{bottom:356.220137px;}
.y80{bottom:356.744592px;}
.y6{bottom:359.457162px;}
.y8{bottom:361.080482px;}
.y32{bottom:362.695496px;}
.y70{bottom:363.594774px;}
.y6f{bottom:363.783921px;}
.y6d{bottom:365.585685px;}
.y52{bottom:369.186204px;}
.y95{bottom:374.043140px;}
.y82{bottom:374.936446px;}
.y3a{bottom:375.476954px;}
.y17{bottom:377.636431px;}
.y45{bottom:379.436010px;}
.ye{bottom:387.168980px;}
.y5e{bottom:388.429032px;}
.y31{bottom:401.762770px;}
.y75{bottom:403.190254px;}
.y6e{bottom:407.873089px;}
.y6c{bottom:409.674853px;}
.y51{bottom:412.744651px;}
.y39{bottom:413.282989px;}
.y5{bottom:426.070388px;}
.y44{bottom:429.844343px;}
.yd{bottom:437.762435px;}
.y5d{bottom:442.978226px;}
.y16{bottom:445.690773px;}
.y38{bottom:451.258237px;}
.y74{bottom:453.598588px;}
.y50{bottom:466.746734px;}
.y30{bottom:476.467424px;}
.y43{bottom:480.417212px;}
.y3{bottom:480.612611px;}
.yc{bottom:488.150213px;}
.y37{bottom:489.064319px;}
.y5c{bottom:497.334898px;}
.y28{bottom:498.610899px;}
.y7b{bottom:501.294536px;}
.y73{bottom:504.171456px;}
.y4f{bottom:510.305204px;}
.y15{bottom:513.899397px;}
.y2f{bottom:514.258086px;}
.y88{bottom:515.164255px;}
.y36{bottom:527.039544px;}
.y42{bottom:530.825576px;}
.ya0{bottom:541.266802px;}
.y5b{bottom:551.884063px;}
.y2e{bottom:552.233335px;}
.y84{bottom:552.238249px;}
.y4e{bottom:553.863698px;}
.y27{bottom:555.474404px;}
.y2{bottom:562.487611px;}
.y35{bottom:564.845602px;}
.y9f{bottom:579.242051px;}
.y41{bottom:581.398444px;}
.y14{bottom:582.107997px;}
.y2d{bottom:590.039369px;}
.y81{bottom:597.778829px;}
.y1c{bottom:597.954435px;}
.y6a{bottom:600.299008px;}
.y7c{bottom:604.805872px;}
.y34{bottom:607.668602px;}
.y4d{bottom:608.034948px;}
.y26{bottom:612.176067px;}
.y5a{bottom:616.865735px;}
.y2c{bottom:628.014618px;}
.y1{bottom:630.541954px;}
.y40{bottom:631.806793px;}
.y72{bottom:639.885419px;}
.y94{bottom:642.595566px;}
.ya4{bottom:643.497702px;}
.y98{bottom:645.123560px;}
.y93{bottom:645.133853px;}
.y9b{bottom:648.189615px;}
.y13{bottom:650.162340px;}
.y4c{bottom:651.593418px;}
.y23{bottom:660.775195px;}
.y25{bottom:669.062674px;}
.y1d{bottom:669.419782px;}
.y59{bottom:671.222422px;}
.y3f{bottom:685.983029px;}
.y69{bottom:688.687526px;}
.y99{bottom:691.020400px;}
.y8b{bottom:692.641867px;}
.y65{bottom:694.986900px;}
.y8e{bottom:697.686812px;}
.ya3{bottom:704.515998px;}
.y9a{bottom:704.884237px;}
.y71{bottom:709.392324px;}
.y1e{bottom:710.640385px;}
.y8c{bottom:713.152083px;}
.y92{bottom:713.157339px;}
.y8f{bottom:719.824729px;}
.y4b{bottom:722.528236px;}
.y19{bottom:723.956641px;}
.y97{bottom:724.859641px;}
.y1b{bottom:733.496284px;}
.y87{bottom:733.505234px;}
.y2b{bottom:735.485720px;}
.y8d{bottom:737.271569px;}
.y3e{bottom:737.460679px;}
.y96{bottom:738.708904px;}
.y58{bottom:738.893812px;}
.y24{bottom:741.603122px;}
.y85{bottom:741.972799px;}
.y83{bottom:743.230341px;}
.ya7{bottom:745.199597px;}
.y64{bottom:745.374678px;}
.y68{bottom:745.551013px;}
.ya6{bottom:745.744862px;}
.y9e{bottom:746.452506px;}
.y1f{bottom:749.697671px;}
.y79{bottom:750.416270px;}
.yb{bottom:751.503468px;}
.ya5{bottom:773.634965px;}
.h23{height:59.566234px;}
.h27{height:65.989558px;}
.h26{height:67.056900px;}
.h29{height:68.727521px;}
.h3{height:69.997863px;}
.h21{height:71.465485px;}
.he{height:76.838134px;}
.hc{height:83.787675px;}
.hd{height:87.486102px;}
.h5{height:88.901138px;}
.h24{height:92.100348px;}
.hf{height:92.301850px;}
.h2a{height:94.529346px;}
.h11{height:104.141957px;}
.ha{height:114.025860px;}
.h25{height:114.719854px;}
.h7{height:121.835588px;}
.h13{height:122.369801px;}
.hb{height:125.322919px;}
.h19{height:126.360205px;}
.h6{height:126.689268px;}
.h17{height:129.014315px;}
.h1f{height:133.606084px;}
.h4{height:136.934679px;}
.h1e{height:137.859288px;}
.h1b{height:143.348341px;}
.h22{height:148.005351px;}
.h1d{height:152.033770px;}
.h18{height:156.833678px;}
.h28{height:163.488179px;}
.h1a{height:163.626593px;}
.h16{height:167.575350px;}
.h1c{height:167.654291px;}
.h2{height:178.311031px;}
.h8{height:182.753382px;}
.h10{height:183.904846px;}
.h14{height:188.342971px;}
.h15{height:193.890629px;}
.h9{height:204.183098px;}
.h12{height:230.595402px;}
.h20{height:337.042885px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w3{width:301.501170px;}
.w2{width:1147.502327px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x24{left:3.599112px;}
.x21{left:14.581606px;}
.x37{left:17.098740px;}
.x46{left:20.700122px;}
.x49{left:26.643823px;}
.x3f{left:30.592450px;}
.x9{left:33.842078px;}
.x1a{left:38.344385px;}
.x22{left:44.094449px;}
.x1c{left:46.973026px;}
.x4a{left:65.164764px;}
.x1b{left:67.860176px;}
.x25{left:75.771754px;}
.x44{left:86.049985px;}
.x23{left:89.640898px;}
.x2b{left:92.515635px;}
.x31{left:95.222616px;}
.x1{left:115.377733px;}
.x4b{left:126.363972px;}
.x3d{left:134.821495px;}
.x32{left:142.566561px;}
.x30{left:160.013065px;}
.x41{left:161.456073px;}
.x26{left:164.696055px;}
.xb{left:167.574128px;}
.x51{left:179.996226px;}
.x4f{left:183.789278px;}
.x2e{left:198.721721px;}
.x15{left:201.414337px;}
.x38{left:205.563830px;}
.x13{left:213.114190px;}
.x45{left:217.983693px;}
.xa{left:262.799773px;}
.x3a{left:268.204393px;}
.x27{left:277.749778px;}
.x2c{left:280.985090px;}
.x2{left:309.605530px;}
.x34{left:312.299757px;}
.x39{left:359.834390px;}
.x47{left:379.799609px;}
.x7{left:385.559053px;}
.x17{left:387.365196px;}
.x40{left:393.481080px;}
.x20{left:400.309709px;}
.x6{left:409.868569px;}
.x8{left:432.903007px;}
.x4{left:450.181224px;}
.x2a{left:468.894277px;}
.x33{left:493.211502px;}
.x1f{left:497.509301px;}
.x48{left:499.312287px;}
.x2f{left:505.252920px;}
.x43{left:547.208664px;}
.x36{left:583.382438px;}
.x19{left:594.714270px;}
.x5{left:605.517154px;}
.x18{left:616.509612px;}
.x16{left:631.808824px;}
.x12{left:639.719086px;}
.x14{left:659.698375px;}
.x1d{left:662.043597px;}
.x50{left:665.451168px;}
.x3{left:673.203114px;}
.x4e{left:698.219565px;}
.x1e{left:701.457673px;}
.x28{left:714.423693px;}
.x4c{left:719.276954px;}
.x52{left:730.976752px;}
.x3c{left:738.893385px;}
.x11{left:747.721821px;}
.x3e{left:772.742296px;}
.x3b{left:783.722184px;}
.x29{left:788.576398px;}
.x4d{left:804.775915px;}
.xd{left:930.599275px;}
.x10{left:934.738544px;}
.x42{left:936.719112px;}
.x2d{left:940.683015px;}
.x35{left:960.124009px;}
.xe{left:980.094689px;}
.xf{left:1048.683534px;}
.x53{left:1053.173271px;}
.xc{left:1126.433560px;}
@media print{
.v2{vertical-align:-55.684763pt;}
.v11{vertical-align:-49.926970pt;}
.v4{vertical-align:-46.063460pt;}
.vc{vertical-align:-42.899576pt;}
.v5{vertical-align:-41.578602pt;}
.v8{vertical-align:-37.767050pt;}
.v1{vertical-align:-36.465113pt;}
.ve{vertical-align:-31.986319pt;}
.v6{vertical-align:-27.488314pt;}
.vb{vertical-align:-15.366968pt;}
.v7{vertical-align:-10.226510pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:39.030942pt;}
.v9{vertical-align:44.825660pt;}
.vd{vertical-align:50.568334pt;}
.v3{vertical-align:55.684763pt;}
.v10{vertical-align:71.017261pt;}
.va{vertical-align:81.315098pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.016042pt;}
.ls3f{letter-spacing:0.046766pt;}
.ls36{letter-spacing:0.075869pt;}
.ls18{letter-spacing:0.078959pt;}
.ls1c{letter-spacing:0.079088pt;}
.ls15{letter-spacing:0.111484pt;}
.lse{letter-spacing:0.115657pt;}
.ls10{letter-spacing:0.118079pt;}
.ls1e{letter-spacing:0.118401pt;}
.ls16{letter-spacing:0.122488pt;}
.ls1a{letter-spacing:0.122645pt;}
.lsd{letter-spacing:0.129208pt;}
.lsf{letter-spacing:0.133321pt;}
.ls2a{letter-spacing:0.149760pt;}
.ls12{letter-spacing:0.150682pt;}
.lsa{letter-spacing:0.152698pt;}
.ls9{letter-spacing:0.152937pt;}
.ls42{letter-spacing:0.158598pt;}
.ls41{letter-spacing:0.253634pt;}
.ls3a{letter-spacing:0.273318pt;}
.lsb{letter-spacing:0.276071pt;}
.ls20{letter-spacing:0.354748pt;}
.lsc{letter-spacing:0.361150pt;}
.ls19{letter-spacing:1.587104pt;}
.ls1d{letter-spacing:1.621584pt;}
.ls11{letter-spacing:2.190867pt;}
.ls21{letter-spacing:2.223500pt;}
.ls14{letter-spacing:2.230086pt;}
.ls1b{letter-spacing:2.262461pt;}
.ls17{letter-spacing:2.262590pt;}
.ls8{letter-spacing:5.153294pt;}
.ls39{letter-spacing:8.539851pt;}
.ls1{letter-spacing:8.539879pt;}
.ls6{letter-spacing:25.144276pt;}
.ls3d{letter-spacing:25.753776pt;}
.ls13{letter-spacing:26.017621pt;}
.ls25{letter-spacing:26.424074pt;}
.ls28{letter-spacing:26.424158pt;}
.ls27{letter-spacing:27.025639pt;}
.ls26{letter-spacing:27.080296pt;}
.ls22{letter-spacing:28.938312pt;}
.ls23{letter-spacing:31.542770pt;}
.ls2d{letter-spacing:32.090288pt;}
.ls2b{letter-spacing:32.136275pt;}
.ls35{letter-spacing:32.695937pt;}
.ls33{letter-spacing:32.740242pt;}
.ls3c{letter-spacing:32.930662pt;}
.ls3e{letter-spacing:33.051739pt;}
.ls3{letter-spacing:34.897681pt;}
.ls2{letter-spacing:37.502645pt;}
.ls32{letter-spacing:41.186269pt;}
.ls40{letter-spacing:41.535653pt;}
.ls31{letter-spacing:41.956921pt;}
.ls37{letter-spacing:46.086875pt;}
.ls38{letter-spacing:46.336058pt;}
.ls7{letter-spacing:46.696866pt;}
.ls2f{letter-spacing:46.751772pt;}
.ls30{letter-spacing:46.752837pt;}
.ls2e{letter-spacing:46.787513pt;}
.ls5{letter-spacing:51.186064pt;}
.ls4{letter-spacing:55.684805pt;}
.ls29{letter-spacing:77.006175pt;}
.ls24{letter-spacing:86.909152pt;}
.ls1f{letter-spacing:100.963832pt;}
.ls2c{letter-spacing:354.697535pt;}
.ls34{letter-spacing:1118.225061pt;}
.ws1b{word-spacing:-168.320037pt;}
.ws12{word-spacing:-149.760243pt;}
.ws17{word-spacing:-131.200448pt;}
.ws3{word-spacing:-56.160091pt;}
.ws6{word-spacing:-51.578834pt;}
.ws25{word-spacing:-50.239897pt;}
.ws19{word-spacing:-46.719958pt;}
.ws7{word-spacing:-46.456330pt;}
.ws10{word-spacing:-42.806876pt;}
.ws11{word-spacing:-42.281957pt;}
.ws1e{word-spacing:-42.080009pt;}
.wsf{word-spacing:-41.680643pt;}
.ws18{word-spacing:-41.483587pt;}
.ws2{word-spacing:-37.440061pt;}
.ws20{word-spacing:-36.211324pt;}
.ws13{word-spacing:-33.845815pt;}
.ws1a{word-spacing:-32.800112pt;}
.ws9{word-spacing:-30.911920pt;}
.ws1{word-spacing:-27.999928pt;}
.ws16{word-spacing:-27.555885pt;}
.ws14{word-spacing:-25.311935pt;}
.ws1f{word-spacing:-21.759918pt;}
.ws23{word-spacing:-21.119959pt;}
.wsd{word-spacing:-20.666913pt;}
.ws5{word-spacing:-16.922907pt;}
.wse{word-spacing:-1.791995pt;}
.ws26{word-spacing:-0.844798pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:0.373760pt;}
.ws15{word-spacing:0.447999pt;}
.ws8{word-spacing:0.673280pt;}
.ws1d{word-spacing:1.495039pt;}
.wsc{word-spacing:8.805189pt;}
.wsb{word-spacing:9.022346pt;}
.wsa{word-spacing:9.733774pt;}
.ws21{word-spacing:436.253865pt;}
.ws24{word-spacing:491.921738pt;}
.ws1c{word-spacing:638.076189pt;}
.ws22{word-spacing:831.797788pt;}
._1c{margin-left:-29.203247pt;}
._b{margin-left:-25.609001pt;}
._1d{margin-left:-22.129235pt;}
._2{margin-left:-18.420510pt;}
._7{margin-left:-16.174106pt;}
._13{margin-left:-14.227223pt;}
._a{margin-left:-12.579860pt;}
._5{margin-left:-10.782737pt;}
._f{margin-left:-9.688991pt;}
._4{margin-left:-8.311693pt;}
._6{margin-left:-6.963851pt;}
._15{margin-left:-5.321561pt;}
._10{margin-left:-4.311055pt;}
._9{margin-left:-3.369605pt;}
._3{margin-left:-1.797123pt;}
._0{margin-left:-0.898561pt;}
._1{width:0.898561pt;}
._8{width:2.021763pt;}
._d{width:3.723523pt;}
._14{width:4.871081pt;}
._e{width:21.657554pt;}
._19{width:23.443046pt;}
._12{width:32.478701pt;}
._17{width:34.501038pt;}
._16{width:40.585026pt;}
._18{width:47.942757pt;}
._1a{width:49.149451pt;}
._11{width:70.989391pt;}
._c{width:105.928726pt;}
._1b{width:919.670523pt;}
.fs8{font-size:74.880121pt;}
.fsa{font-size:84.479834pt;}
.fse{font-size:87.039670pt;}
.fs9{font-size:93.439916pt;}
.fs4{font-size:99.840162pt;}
.fs2{font-size:111.999711pt;}
.fs6{font-size:124.800202pt;}
.fsb{font-size:131.200448pt;}
.fs10{font-size:133.760284pt;}
.fs7{font-size:140.160529pt;}
.fs3{font-size:149.760243pt;}
.fs1{font-size:168.320037pt;}
.fs5{font-size:186.879832pt;}
.fsf{font-size:200.959586pt;}
.fsc{font-size:206.080569pt;}
.fs0{font-size:224.640364pt;}
.fsd{font-size:308.480567pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:10.219990pt;}
.y4{bottom:12.147891pt;}
.ya{bottom:91.831998pt;}
.y63{bottom:94.069440pt;}
.y6b{bottom:97.125062pt;}
.ya2{bottom:97.910727pt;}
.y22{bottom:101.766249pt;}
.y67{bottom:109.115293pt;}
.y4a{bottom:112.800628pt;}
.y91{bottom:115.359997pt;}
.y57{bottom:115.841815pt;}
.y1a{bottom:119.357190pt;}
.y29{bottom:131.677872pt;}
.ya1{bottom:137.117129pt;}
.y62{bottom:142.403608pt;}
.y66{bottom:145.441340pt;}
.y9d{bottom:151.034759pt;}
.y56{bottom:154.560476pt;}
.y49{bottom:157.608008pt;}
.y90{bottom:160.478182pt;}
.y12{bottom:164.646312pt;}
.y21{bottom:175.997911pt;}
.y8a{bottom:179.197116pt;}
.y9c{bottom:190.241161pt;}
.y61{bottom:190.874680pt;}
.y55{bottom:193.279136pt;}
.y3d{bottom:199.034969pt;}
.y7d{bottom:201.434555pt;}
.y48{bottom:202.561669pt;}
.y11{bottom:209.599973pt;}
.y20{bottom:209.767372pt;}
.y89{bottom:212.802522pt;}
.y78{bottom:223.676581pt;}
.y7e{bottom:224.482644pt;}
.y3c{bottom:232.804431pt;}
.y60{bottom:239.191722pt;}
.y54{bottom:241.445002pt;}
.y7f{bottom:245.754190pt;}
.y47{bottom:247.204579pt;}
.y10{bottom:254.407408pt;}
.y7{bottom:262.232766pt;}
.y7a{bottom:263.993348pt;}
.y3b{bottom:266.560207pt;}
.y77{bottom:268.630241pt;}
.y18{bottom:275.046961pt;}
.y53{bottom:279.999608pt;}
.y5f{bottom:287.679869pt;}
.y33{bottom:288.804276pt;}
.y46{bottom:292.322765pt;}
.y2a{bottom:295.672361pt;}
.yf{bottom:299.361069pt;}
.y76{bottom:313.437676pt;}
.y9{bottom:316.640122pt;}
.y80{bottom:317.106304pt;}
.y6{bottom:319.517477pt;}
.y8{bottom:320.960428pt;}
.y32{bottom:322.395997pt;}
.y70{bottom:323.195355pt;}
.y6f{bottom:323.363486pt;}
.y6d{bottom:324.965054pt;}
.y52{bottom:328.165515pt;}
.y95{bottom:332.482792pt;}
.y82{bottom:333.276841pt;}
.y3a{bottom:333.757292pt;}
.y17{bottom:335.676827pt;}
.y45{bottom:337.276453pt;}
.ye{bottom:344.150205pt;}
.y5e{bottom:345.270250pt;}
.y31{bottom:357.122462pt;}
.y75{bottom:358.391337pt;}
.y6e{bottom:362.553857pt;}
.y6c{bottom:364.155425pt;}
.y51{bottom:366.884134pt;}
.y39{bottom:367.362657pt;}
.y5{bottom:378.729233pt;}
.y44{bottom:382.083861pt;}
.yd{bottom:389.122165pt;}
.y5d{bottom:393.758423pt;}
.y16{bottom:396.169576pt;}
.y38{bottom:401.118433pt;}
.y74{bottom:403.198745pt;}
.y50{bottom:414.885986pt;}
.y30{bottom:423.526599pt;}
.y43{bottom:427.037521pt;}
.y3{bottom:427.211210pt;}
.yc{bottom:433.911301pt;}
.y37{bottom:434.723839pt;}
.y5c{bottom:442.075465pt;}
.y28{bottom:443.209688pt;}
.y7b{bottom:445.595143pt;}
.y73{bottom:448.152405pt;}
.y4f{bottom:453.604626pt;}
.y15{bottom:456.799464pt;}
.y2f{bottom:457.118299pt;}
.y88{bottom:457.923782pt;}
.y36{bottom:468.479595pt;}
.y42{bottom:471.844957pt;}
.ya0{bottom:481.126047pt;}
.y5b{bottom:490.563612pt;}
.y2e{bottom:490.874075pt;}
.y84{bottom:490.878444pt;}
.y4e{bottom:492.323287pt;}
.y27{bottom:493.755026pt;}
.y2{bottom:499.988988pt;}
.y35{bottom:502.084980pt;}
.y9f{bottom:514.881823pt;}
.y41{bottom:516.798617pt;}
.y14{bottom:517.429331pt;}
.y2d{bottom:524.479440pt;}
.y81{bottom:531.358959pt;}
.y1c{bottom:531.515053pt;}
.y6a{bottom:533.599118pt;}
.y7c{bottom:537.605220pt;}
.y34{bottom:540.149869pt;}
.y4d{bottom:540.475509pt;}
.y26{bottom:544.156504pt;}
.y5a{bottom:548.325098pt;}
.y2c{bottom:558.235216pt;}
.y1{bottom:560.481737pt;}
.y40{bottom:561.606038pt;}
.y72{bottom:568.787039pt;}
.y94{bottom:571.196058pt;}
.ya4{bottom:571.997958pt;}
.y98{bottom:573.443165pt;}
.y93{bottom:573.452314pt;}
.y9b{bottom:576.168547pt;}
.y13{bottom:577.922080pt;}
.y4c{bottom:579.194149pt;}
.y23{bottom:587.355728pt;}
.y25{bottom:594.722377pt;}
.y1d{bottom:595.039807pt;}
.y59{bottom:596.642153pt;}
.y3f{bottom:609.762693pt;}
.y69{bottom:612.166690pt;}
.y99{bottom:614.240356pt;}
.y8b{bottom:615.681660pt;}
.y65{bottom:617.766133pt;}
.y8e{bottom:620.166055pt;}
.ya3{bottom:626.236442pt;}
.y9a{bottom:626.563766pt;}
.y71{bottom:630.570955pt;}
.y1e{bottom:631.680342pt;}
.y8c{bottom:633.912963pt;}
.y92{bottom:633.917635pt;}
.y8f{bottom:639.844204pt;}
.y4b{bottom:642.247321pt;}
.y19{bottom:643.517015pt;}
.y97{bottom:644.319681pt;}
.y1b{bottom:651.996697pt;}
.y87{bottom:652.004652pt;}
.y2b{bottom:653.765085pt;}
.y8d{bottom:655.352506pt;}
.y3e{bottom:655.520603pt;}
.y96{bottom:656.630137pt;}
.y58{bottom:656.794500pt;}
.y24{bottom:659.202775pt;}
.y85{bottom:659.531377pt;}
.y83{bottom:660.649192pt;}
.ya7{bottom:662.399642pt;}
.y64{bottom:662.555269pt;}
.y68{bottom:662.712011pt;}
.ya6{bottom:662.884322pt;}
.y9e{bottom:663.513338pt;}
.y1f{bottom:666.397929pt;}
.y79{bottom:667.036685pt;}
.yb{bottom:668.003082pt;}
.ya5{bottom:687.675525pt;}
.h23{height:52.947764pt;}
.h27{height:58.657385pt;}
.h26{height:59.606133pt;}
.h29{height:61.091130pt;}
.h3{height:62.220322pt;}
.h21{height:63.524875pt;}
.he{height:68.300564pt;}
.hc{height:74.477933pt;}
.hd{height:77.765424pt;}
.h5{height:79.023234pt;}
.h24{height:81.866976pt;}
.hf{height:82.046089pt;}
.h2a{height:84.026085pt;}
.h11{height:92.570628pt;}
.ha{height:101.356320pt;}
.h25{height:101.973203pt;}
.h7{height:108.298300pt;}
.h13{height:108.773157pt;}
.hb{height:111.398150pt;}
.h19{height:112.320182pt;}
.h6{height:112.612682pt;}
.h17{height:114.679391pt;}
.h1f{height:118.760964pt;}
.h4{height:121.719715pt;}
.h1e{height:122.541590pt;}
.h1b{height:127.420747pt;}
.h22{height:131.560312pt;}
.h1d{height:135.141129pt;}
.h18{height:139.407714pt;}
.h28{height:145.322826pt;}
.h1a{height:145.445861pt;}
.h16{height:148.955866pt;}
.h1c{height:149.026036pt;}
.h2{height:158.498694pt;}
.h8{height:162.447451pt;}
.h10{height:163.470974pt;}
.h14{height:167.415975pt;}
.h15{height:172.347226pt;}
.h9{height:181.496087pt;}
.h12{height:204.973691pt;}
.h20{height:299.593676pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w3{width:268.001040pt;}
.w2{width:1020.002068pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x24{left:3.199210pt;}
.x21{left:12.961428pt;}
.x37{left:15.198880pt;}
.x46{left:18.400108pt;}
.x49{left:23.683398pt;}
.x3f{left:27.193289pt;}
.x9{left:30.081847pt;}
.x1a{left:34.083898pt;}
.x22{left:39.195065pt;}
.x1c{left:41.753801pt;}
.x4a{left:57.924235pt;}
.x1b{left:60.320157pt;}
.x25{left:67.352670pt;}
.x44{left:76.488876pt;}
.x23{left:79.680798pt;}
.x2b{left:82.236120pt;}
.x31{left:84.642325pt;}
.x1{left:102.557985pt;}
.x4b{left:112.323530pt;}
.x3d{left:119.841329pt;}
.x32{left:126.725832pt;}
.x30{left:142.233836pt;}
.x41{left:143.516509pt;}
.x26{left:146.396494pt;}
.xb{left:148.954780pt;}
.x51{left:159.996646pt;}
.x4f{left:163.368247pt;}
.x2e{left:176.641530pt;}
.x15{left:179.034966pt;}
.x38{left:182.723404pt;}
.x13{left:189.434836pt;}
.x45{left:193.763283pt;}
.xa{left:233.599799pt;}
.x3a{left:238.403905pt;}
.x27{left:246.888692pt;}
.x2c{left:249.764525pt;}
.x2{left:275.204916pt;}
.x34{left:277.599784pt;}
.x39{left:319.852791pt;}
.x47{left:337.599653pt;}
.x7{left:342.719158pt;}
.x17{left:344.324619pt;}
.x40{left:349.760960pt;}
.x20{left:355.830853pt;}
.x6{left:364.327617pt;}
.x8{left:384.802673pt;}
.x4{left:400.161088pt;}
.x2a{left:416.794913pt;}
.x33{left:438.410224pt;}
.x1f{left:442.230490pt;}
.x48{left:443.833144pt;}
.x2f{left:449.113707pt;}
.x43{left:486.407701pt;}
.x36{left:518.562167pt;}
.x19{left:528.634907pt;}
.x5{left:538.237470pt;}
.x18{left:548.008544pt;}
.x16{left:561.607843pt;}
.x12{left:568.639188pt;}
.x14{left:586.398555pt;}
.x1d{left:588.483198pt;}
.x50{left:591.512149pt;}
.x3{left:598.402768pt;}
.x4e{left:620.639614pt;}
.x1e{left:623.517932pt;}
.x28{left:635.043283pt;}
.x4c{left:639.357293pt;}
.x52{left:649.757113pt;}
.x3c{left:656.794120pt;}
.x11{left:664.641619pt;}
.x3e{left:686.882041pt;}
.x3b{left:696.641941pt;}
.x29{left:700.956799pt;}
.x4d{left:715.356369pt;}
.xd{left:827.199356pt;}
.x10{left:830.878706pt;}
.x42{left:832.639211pt;}
.x2d{left:836.162680pt;}
.x35{left:853.443564pt;}
.xe{left:871.195280pt;}
.xf{left:932.163141pt;}
.x53{left:936.154019pt;}
.xc{left:1001.274276pt;}
}




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