
    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_ce355cda00366a208b5e04c7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_41ea408f9fff4af543d2e352.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2ec1209f805a81f9d0af101d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5b8fc06b2c0c0cd4f8991112.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_dcd2793f30d747d0cc2f9ad9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.891602;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_8ed2c31fb9f22255cc97d44a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_828600fb94c9fa30b0c6760b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_51719ca7112104239394938c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d11d5230b4f8bfc7ecc56ca6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c0bd264db4d4381fd78e8d5d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1abbc7311c8a65bef9fdda9f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9470a4a571075801f4ea18ee.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692383;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_09058894892e7a7add9ba63a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1abb41793664a39540f0bec3.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_87de1476646af579b4795a58.woff2')format("woff");}.fff{font-family:fff;line-height:0.674805;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:ff10;src:url('chunks/assets/font_4f74edfdd75e885c76b2ac67.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_06e3d9783148012ba52f7eda.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_575894f3da041dce6fec97ab.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.719999px;}
.ls11{letter-spacing:-0.359999px;}
.lse{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.195600px;}
.ls6{letter-spacing:0.206640px;}
.lsd{letter-spacing:0.238200px;}
.lsa{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.303749px;}
.ls9{letter-spacing:0.359999px;}
.ls5{letter-spacing:0.362399px;}
.lsf{letter-spacing:10.079984px;}
.ls10{letter-spacing:95.903847px;}
.ls1{letter-spacing:843.328891px;}
.ls4{letter-spacing:846.304646px;}
.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;}
}
.ws6{word-spacing:-61.199782px;}
.ws3{word-spacing:-21.059966px;}
.ws2{word-spacing:-17.999971px;}
.ws8{word-spacing:-17.783972px;}
.ws0{word-spacing:-15.243726px;}
.ws4{word-spacing:-15.046776px;}
.ws7{word-spacing:-14.939976px;}
.ws5{word-spacing:-14.886696px;}
.ws1{word-spacing:0.000000px;}
._8{margin-left:-10.264998px;}
._10{margin-left:-8.867175px;}
._1d{margin-left:-7.807284px;}
._9{margin-left:-6.382393px;}
._7{margin-left:-5.135312px;}
._2{margin-left:-3.714327px;}
._3{margin-left:-2.200700px;}
._1{margin-left:-1.020060px;}
._0{width:1.072422px;}
._4{width:3.096982px;}
._6{width:4.501187px;}
._c{width:5.827265px;}
._16{width:6.908796px;}
._18{width:8.540929px;}
._11{width:9.597425px;}
._f{width:10.809036px;}
._e{width:12.340897px;}
._14{width:13.761014px;}
._15{width:14.792543px;}
._17{width:15.802591px;}
._20{width:16.894429px;}
._d{width:19.088951px;}
._12{width:20.777838px;}
._13{width:22.287448px;}
._a{width:24.705014px;}
._b{width:26.075734px;}
._1b{width:30.028488px;}
._1c{width:31.561083px;}
._1e{width:35.140480px;}
._21{width:41.552961px;}
._1a{width:54.123513px;}
._1f{width:77.264696px;}
._5{width:136.051776px;}
._24{width:185.030569px;}
._23{width:186.560539px;}
._19{width:188.883359px;}
._22{width:267.636900px;}
._25{width:846.158246px;}
.fc9{color:rgb(79,129,189);}
.fc8{color:rgb(0,0,255);}
.fc6{color:rgb(196,89,17);}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,143,211);}
.fc2{color:rgb(0,148,214);}
.fc1{color:rgb(20,65,118);}
.fca{color:rgb(34,34,34);}
.fc7{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.359956px;}
.fsa{font-size:35.999942px;}
.fs1{font-size:59.759904px;}
.fs7{font-size:66.239894px;}
.fs8{font-size:71.999885px;}
.fs0{font-size:84.239865px;}
.fs5{font-size:95.759847px;}
.fs2{font-size:107.999827px;}
.fs3{font-size:113.759818px;}
.fsb{font-size:120.239808px;}
.fs4{font-size:131.759789px;}
.fs6{font-size:167.759732px;}
.y0{bottom:0.000000px;}
.y78{bottom:3.235528px;}
.y7d{bottom:3.235590px;}
.y83{bottom:3.235685px;}
.y89{bottom:3.235780px;}
.ya4{bottom:3.237956px;}
.ye0{bottom:3.239703px;}
.ye5{bottom:3.239765px;}
.yaa{bottom:3.239851px;}
.yc5{bottom:3.239867px;}
.yb0{bottom:3.239946px;}
.ycb{bottom:3.239962px;}
.yb5{bottom:3.240008px;}
.yd1{bottom:3.240057px;}
.ybb{bottom:3.240103px;}
.yd6{bottom:3.240119px;}
.yc0{bottom:3.240165px;}
.ydb{bottom:3.240181px;}
.y8f{bottom:3.241275px;}
.y95{bottom:3.241370px;}
.y9a{bottom:3.241432px;}
.y9f{bottom:3.241494px;}
.y76{bottom:3.955498px;}
.y141{bottom:3.955510px;}
.y7b{bottom:3.955560px;}
.y145{bottom:3.955577px;}
.y147{bottom:3.955612px;}
.y81{bottom:3.955655px;}
.y14b{bottom:3.955679px;}
.y14f{bottom:3.955746px;}
.y87{bottom:3.955750px;}
.y153{bottom:3.955814px;}
.y49{bottom:3.955855px;}
.ya8{bottom:3.958621px;}
.yde{bottom:3.959673px;}
.ye3{bottom:3.959735px;}
.yc3{bottom:3.959837px;}
.yae{bottom:3.959916px;}
.yc9{bottom:3.959932px;}
.y65{bottom:3.959951px;}
.yb3{bottom:3.959978px;}
.ycf{bottom:3.960027px;}
.yb9{bottom:3.960073px;}
.yd4{bottom:3.960089px;}
.ybe{bottom:3.960135px;}
.yd9{bottom:3.960151px;}
.y8d{bottom:3.961245px;}
.y157{bottom:3.961281px;}
.y93{bottom:3.961340px;}
.y15b{bottom:3.961349px;}
.y4d{bottom:3.961386px;}
.y98{bottom:3.961402px;}
.y9d{bottom:3.961464px;}
.ya2{bottom:3.961526px;}
.y69{bottom:4.320032px;}
.y75{bottom:4.855497px;}
.yea{bottom:5.040000px;}
.y68{bottom:5.580030px;}
.y5f{bottom:5.580149px;}
.y2{bottom:6.659931px;}
.y55{bottom:7.918053px;}
.y51{bottom:7.921516px;}
.y7a{bottom:12.595546px;}
.ye2{bottom:12.599721px;}
.yb2{bottom:12.599964px;}
.yd3{bottom:12.600075px;}
.ybd{bottom:12.600121px;}
.yd8{bottom:12.600137px;}
.y97{bottom:12.601389px;}
.y9c{bottom:12.601450px;}
.ya1{bottom:12.601512px;}
.ydd{bottom:12.631159px;}
.yc2{bottom:12.644823px;}
.y5c{bottom:13.680136px;}
.y149{bottom:14.215662px;}
.y14d{bottom:14.215730px;}
.y151{bottom:14.215797px;}
.y143{bottom:14.395561px;}
.y155{bottom:14.401265px;}
.y159{bottom:14.401332px;}
.y70{bottom:17.100211px;}
.y6c{bottom:17.280078px;}
.y7f{bottom:22.855625px;}
.y85{bottom:22.855720px;}
.yac{bottom:22.859886px;}
.yc7{bottom:22.859902px;}
.ycd{bottom:22.859997px;}
.yb7{bottom:22.860043px;}
.y91{bottom:22.861310px;}
.ya6{bottom:22.886791px;}
.y8b{bottom:22.906215px;}
.y140{bottom:24.655477px;}
.y144{bottom:24.655544px;}
.y80{bottom:24.655622px;}
.y14a{bottom:24.655646px;}
.y14e{bottom:24.655713px;}
.y86{bottom:24.655717px;}
.y152{bottom:24.655781px;}
.y48{bottom:24.655822px;}
.yad{bottom:24.659883px;}
.yc8{bottom:24.659899px;}
.yce{bottom:24.659994px;}
.yb8{bottom:24.660040px;}
.y156{bottom:24.661248px;}
.y92{bottom:24.661307px;}
.y15a{bottom:24.661316px;}
.y4c{bottom:24.661353px;}
.ya7{bottom:24.686788px;}
.y64{bottom:24.704918px;}
.y8c{bottom:24.706212px;}
.y6e{bottom:24.840132px;}
.y6b{bottom:25.020066px;}
.ye7{bottom:26.099805px;}
.y54{bottom:28.618020px;}
.y50{bottom:28.621483px;}
.yeb{bottom:28.799946px;}
.ye8{bottom:30.959797px;}
.y63{bottom:32.444906px;}
.y6{bottom:34.019946px;}
.y67{bottom:34.019984px;}
.y5b{bottom:34.380103px;}
.y5e{bottom:35.280102px;}
.y1{bottom:36.180000px;}
.ye9{bottom:37.079941px;}
.y62{bottom:53.144873px;}
.y47{bottom:55.615772px;}
.y4b{bottom:55.801303px;}
.y4f{bottom:59.581433px;}
.y53{bottom:59.757970px;}
.y5a{bottom:64.080056px;}
.y5d{bottom:64.980054px;}
.y56{bottom:68.757955px;}
.y61{bottom:82.844825px;}
.y13e{bottom:94.499849px;}
.ye6{bottom:95.940000px;}
.y40{bottom:110.159824px;}
.y13d{bottom:115.199816px;}
.y21{bottom:129.419793px;}
.y13c{bottom:135.899783px;}
.y3f{bottom:137.376380px;}
.ye4{bottom:143.640000px;}
.y115{bottom:145.619767px;}
.y20{bottom:153.571254px;}
.y13b{bottom:156.599749px;}
.ye1{bottom:161.640000px;}
.y114{bottom:166.319734px;}
.y3e{bottom:173.191223px;}
.y13a{bottom:177.299716px;}
.y1f{bottom:180.751211px;}
.ydf{bottom:182.340000px;}
.y113{bottom:187.019701px;}
.y6f{bottom:188.310960px;}
.y139{bottom:198.000283px;}
.ydc{bottom:200.340000px;}
.y112{bottom:203.759674px;}
.y1e{bottom:207.931167px;}
.y3d{bottom:208.831166px;}
.y138{bottom:218.731150px;}
.yda{bottom:221.070960px;}
.y6d{bottom:229.890960px;}
.y1d{bottom:234.931124px;}
.yd7{bottom:239.070960px;}
.y137{bottom:239.431117px;}
.y3c{bottom:244.471109px;}
.yd5{bottom:259.770960px;}
.y136{bottom:260.131084px;}
.y1c{bottom:262.111081px;}
.y6a{bottom:271.470960px;}
.yd2{bottom:277.770960px;}
.y3b{bottom:280.291052px;}
.y135{bottom:280.831051px;}
.y1b{bottom:289.291037px;}
.yd0{bottom:298.470960px;}
.y134{bottom:301.531018px;}
.y173{bottom:308.191007px;}
.y66{bottom:313.230960px;}
.y3a{bottom:315.930995px;}
.y1a{bottom:316.110994px;}
.ycc{bottom:316.470960px;}
.y133{bottom:322.230984px;}
.y172{bottom:328.890974px;}
.y19{bottom:335.910963px;}
.y111{bottom:336.090962px;}
.y132{bottom:342.930951px;}
.y171{bottom:349.590941px;}
.y39{bottom:351.570937px;}
.y18{bottom:355.710931px;}
.y110{bottom:356.790929px;}
.yca{bottom:357.870960px;}
.y131{bottom:363.630918px;}
.y60{bottom:363.990960px;}
.y170{bottom:370.290908px;}
.yc6{bottom:375.870960px;}
.y17{bottom:376.950897px;}
.y10f{bottom:377.490896px;}
.y130{bottom:384.330885px;}
.y38{bottom:387.435880px;}
.y16f{bottom:390.990874px;}
.y10e{bottom:398.190863px;}
.y12f{bottom:405.030852px;}
.y16e{bottom:411.690841px;}
.y16{bottom:412.995839px;}
.yc4{bottom:417.270960px;}
.y10d{bottom:418.710830px;}
.y12e{bottom:421.770825px;}
.y37{bottom:423.075823px;}
.y16d{bottom:432.390808px;}
.yc1{bottom:435.270960px;}
.y10c{bottom:439.410797px;}
.y16c{bottom:453.135775px;}
.ybf{bottom:456.015600px;}
.y15{bottom:457.815767px;}
.y36{bottom:458.715766px;}
.y10b{bottom:460.155764px;}
.y59{bottom:463.575600px;}
.y16b{bottom:473.835742px;}
.ybc{bottom:474.015600px;}
.y10a{bottom:480.855731px;}
.y14{bottom:490.395715px;}
.y35{bottom:494.535709px;}
.yba{bottom:494.715600px;}
.y109{bottom:501.555698px;}
.yb6{bottom:512.715600px;}
.y16a{bottom:515.235676px;}
.y108{bottom:522.255664px;}
.y13{bottom:522.795664px;}
.y34{bottom:530.175652px;}
.y169{bottom:535.935643px;}
.y107{bottom:542.955631px;}
.yb4{bottom:554.115600px;}
.y12{bottom:557.895607px;}
.y106{bottom:563.655598px;}
.y168{bottom:565.635595px;}
.y33{bottom:565.995594px;}
.y58{bottom:566.535594px;}
.yb1{bottom:572.115600px;}
.y105{bottom:584.355565px;}
.yaf{bottom:592.815600px;}
.y167{bottom:595.334347px;}
.y11{bottom:601.634337px;}
.y32{bottom:601.635537px;}
.y104{bottom:605.055532px;}
.y57{bottom:605.955530px;}
.yab{bottom:610.815600px;}
.y166{bottom:616.034314px;}
.y103{bottom:625.754299px;}
.y165{bottom:636.734281px;}
.y31{bottom:637.275480px;}
.y10{bottom:645.222468px;}
.y102{bottom:646.454266px;}
.y52{bottom:646.664400px;}
.ya9{bottom:652.215600px;}
.y164{bottom:657.434248px;}
.y12d{bottom:664.274237px;}
.y101{bottom:667.154233px;}
.ya5{bottom:670.215600px;}
.y30{bottom:673.122423px;}
.y163{bottom:678.134215px;}
.y12c{bottom:685.002404px;}
.y100{bottom:687.882399px;}
.yf{bottom:688.782398px;}
.y162{bottom:698.862382px;}
.y12b{bottom:705.702371px;}
.yff{bottom:708.582366px;}
.y2f{bottom:708.762366px;}
.ya3{bottom:711.644400px;}
.y161{bottom:719.562349px;}
.y12a{bottom:726.402338px;}
.yfe{bottom:729.282333px;}
.ya0{bottom:729.640800px;}
.y4e{bottom:732.160800px;}
.ye{bottom:734.682325px;}
.y160{bottom:740.262316px;}
.y2e{bottom:744.402309px;}
.y129{bottom:747.102305px;}
.yfd{bottom:749.982300px;}
.y9e{bottom:750.340800px;}
.y15f{bottom:760.962282px;}
.y128{bottom:767.802272px;}
.y9b{bottom:768.340800px;}
.yfc{bottom:770.682267px;}
.y2d{bottom:780.222252px;}
.y15e{bottom:781.662249px;}
.y127{bottom:788.502238px;}
.y99{bottom:789.040800px;}
.yfb{bottom:791.382234px;}
.y15d{bottom:802.362216px;}
.y96{bottom:807.040800px;}
.y126{bottom:809.202205px;}
.y4a{bottom:817.480800px;}
.y2c{bottom:822.882183px;}
.y15c{bottom:823.062183px;}
.y94{bottom:827.740800px;}
.y125{bottom:829.902172px;}
.yfa{bottom:830.082172px;}
.y158{bottom:840.520800px;}
.y90{bottom:845.740800px;}
.y124{bottom:850.602139px;}
.yf9{bottom:850.782139px;}
.y2b{bottom:857.262128px;}
.y123{bottom:871.302106px;}
.y154{bottom:882.640800px;}
.y8e{bottom:887.140800px;}
.yf8{bottom:889.482077px;}
.y2a{bottom:891.642073px;}
.y122{bottom:892.002073px;}
.y46{bottom:899.071200px;}
.y8a{bottom:905.140800px;}
.yf7{bottom:910.182044px;}
.y121{bottom:912.702040px;}
.y150{bottom:924.991200px;}
.y29{bottom:926.067018px;}
.yf6{bottom:930.927011px;}
.y120{bottom:933.447006px;}
.y88{bottom:946.591200px;}
.yd{bottom:949.466981px;}
.yf5{bottom:951.626977px;}
.y28{bottom:953.246975px;}
.y11f{bottom:954.146973px;}
.y84{bottom:964.591200px;}
.y14c{bottom:967.111200px;}
.yf4{bottom:972.326944px;}
.y45{bottom:973.406943px;}
.y11e{bottom:974.846940px;}
.yc{bottom:992.846911px;}
.y44{bottom:993.206911px;}
.y11d{bottom:995.546907px;}
.y27{bottom:996.086906px;}
.y43{bottom:1004.726892px;}
.y82{bottom:1005.991200px;}
.y148{bottom:1009.231200px;}
.yf3{bottom:1010.306884px;}
.y11c{bottom:1016.246874px;}
.yb{bottom:1023.806862px;}
.y7e{bottom:1023.991200px;}
.yf2{bottom:1027.586856px;}
.y26{bottom:1030.466851px;}
.y11b{bottom:1036.946841px;}
.yf1{bottom:1044.866828px;}
.y146{bottom:1051.351200px;}
.y42{bottom:1054.406813px;}
.ya{bottom:1054.946812px;}
.y11a{bottom:1057.646808px;}
.yf0{bottom:1062.146801px;}
.y25{bottom:1064.666797px;}
.y7c{bottom:1065.391200px;}
.y142{bottom:1072.771200px;}
.y119{bottom:1078.346775px;}
.yef{bottom:1079.426773px;}
.y79{bottom:1083.391200px;}
.y24{bottom:1087.346760px;}
.y9{bottom:1090.586755px;}
.yee{bottom:1096.526746px;}
.y118{bottom:1099.046742px;}
.y77{bottom:1104.091200px;}
.yed{bottom:1113.806718px;}
.y13f{bottom:1114.891200px;}
.y23{bottom:1118.306711px;}
.y117{bottom:1119.747308px;}
.y8{bottom:1121.727305px;}
.y74{bottom:1122.091200px;}
.yec{bottom:1131.086690px;}
.y41{bottom:1138.646678px;}
.y116{bottom:1140.447275px;}
.y7{bottom:1152.718156px;}
.y22{bottom:1161.178142px;}
.y73{bottom:1193.218091px;}
.y5{bottom:1193.398091px;}
.y72{bottom:1210.318063px;}
.y4{bottom:1210.498063px;}
.y71{bottom:1227.598036px;}
.y3{bottom:1227.778036px;}
.h22{height:17.100000px;}
.h28{height:17.280000px;}
.h11{height:18.542783px;}
.h20{height:20.700000px;}
.h2e{height:20.733768px;}
.h30{height:20.736576px;}
.h12{height:24.398398px;}
.h2{height:27.720000px;}
.h23{height:37.800000px;}
.h2a{height:37.980000px;}
.h2d{height:38.013768px;}
.h2f{height:38.016576px;}
.h5{height:39.830210px;}
.h21{height:40.472162px;}
.h25{height:41.400000px;}
.h2c{height:41.433768px;}
.h27{height:41.436576px;}
.h4{height:41.493449px;}
.h1f{height:41.522629px;}
.h1d{height:41.580000px;}
.h1c{height:41.760000px;}
.hd{height:44.149148px;}
.h32{height:47.700000px;}
.h14{height:48.796797px;}
.h15{height:49.992108px;}
.hf{height:50.027264px;}
.h35{height:50.032064px;}
.h1b{height:50.760000px;}
.h3{height:56.146199px;}
.he{height:57.092252px;}
.h33{height:57.600000px;}
.h24{height:58.500000px;}
.h26{height:58.536576px;}
.h29{height:58.680000px;}
.h2b{height:58.713768px;}
.h31{height:64.980000px;}
.ha{height:66.536261px;}
.hb{height:71.982307px;}
.h13{height:72.360000px;}
.h6{height:73.195195px;}
.h7{height:75.821363px;}
.h16{height:81.576720px;}
.h34{height:83.545530px;}
.h17{height:85.320000px;}
.h18{height:85.500000px;}
.h8{height:89.298138px;}
.h9{height:89.302938px;}
.h1a{height:99.573840px;}
.h19{height:99.720000px;}
.hc{height:113.696537px;}
.h10{height:116.563524px;}
.h1e{height:1262.879850px;}
.h1{height:1263.000000px;}
.h0{height:1263.059850px;}
.w2{width:21.093768px;}
.w9{width:73.980000px;}
.wd{width:113.976720px;}
.wa{width:126.720000px;}
.wb{width:180.568080px;}
.wc{width:263.370960px;}
.w3{width:369.795600px;}
.w4{width:369.824400px;}
.w5{width:371.804400px;}
.w6{width:406.695600px;}
.w8{width:648.284400px;}
.w7{width:892.979850px;}
.w1{width:893.250000px;}
.w0{width:893.339850px;}
.x0{left:0.000000px;}
.x1b{left:8.099865px;}
.x24{left:27.896082px;}
.x23{left:32.396075px;}
.x22{left:36.896068px;}
.x27{left:48.058697px;}
.x33{left:50.219662px;}
.x5{left:76.499878px;}
.x16{left:80.819871px;}
.x1a{left:84.996464px;}
.x4{left:90.396455px;}
.x1e{left:100.828939px;}
.x15{left:110.016424px;}
.x17{left:111.815821px;}
.x1d{left:123.876402px;}
.x25{left:127.476396px;}
.xb{left:129.636393px;}
.xd{left:139.176902px;}
.x2{left:141.336374px;}
.x8{left:147.636364px;}
.x6{left:148.716362px;}
.xc{left:151.951257px;}
.x13{left:161.491242px;}
.x12{left:174.271221px;}
.xa{left:225.571139px;}
.x3{left:240.330215px;}
.x7{left:250.950648px;}
.x28{left:256.711089px;}
.x32{left:261.211082px;}
.x34{left:267.375600px;}
.x10{left:269.176069px;}
.x20{left:293.079175px;}
.xe{left:303.195640px;}
.x36{left:322.815983px;}
.x2a{left:325.695979px;}
.x18{left:337.215960px;}
.x2b{left:343.695950px;}
.x31{left:350.535939px;}
.x14{left:353.595934px;}
.x2d{left:355.215932px;}
.xf{left:358.635926px;}
.x19{left:361.155922px;}
.x2e{left:380.055892px;}
.x2c{left:385.815883px;}
.x29{left:390.315875px;}
.x1f{left:414.975836px;}
.x1{left:436.035600px;}
.x11{left:446.655785px;}
.x1c{left:448.304400px;}
.x9{left:473.322743px;}
.x30{left:612.102521px;}
.x2f{left:669.927428px;}
.x35{left:712.949040px;}
.x21{left:733.291200px;}
.x26{left:766.080000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.639999pt;}
.ls11{letter-spacing:-0.319999pt;}
.lse{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.173866pt;}
.ls6{letter-spacing:0.183680pt;}
.lsd{letter-spacing:0.211733pt;}
.lsa{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.269999pt;}
.ls9{letter-spacing:0.319999pt;}
.ls5{letter-spacing:0.322133pt;}
.lsf{letter-spacing:8.959986pt;}
.ls10{letter-spacing:85.247864pt;}
.ls1{letter-spacing:749.625681pt;}
.ls4{letter-spacing:752.270796pt;}
.ws6{word-spacing:-54.399806pt;}
.ws3{word-spacing:-18.719970pt;}
.ws2{word-spacing:-15.999974pt;}
.ws8{word-spacing:-15.807975pt;}
.ws0{word-spacing:-13.549978pt;}
.ws4{word-spacing:-13.374912pt;}
.ws7{word-spacing:-13.279979pt;}
.ws5{word-spacing:-13.232619pt;}
.ws1{word-spacing:0.000000pt;}
._8{margin-left:-9.124443pt;}
._10{margin-left:-7.881933pt;}
._1d{margin-left:-6.939808pt;}
._9{margin-left:-5.673239pt;}
._7{margin-left:-4.564722pt;}
._2{margin-left:-3.301624pt;}
._3{margin-left:-1.956178pt;}
._1{margin-left:-0.906720pt;}
._0{width:0.953264pt;}
._4{width:2.752873pt;}
._6{width:4.001055pt;}
._c{width:5.179791pt;}
._16{width:6.141152pt;}
._18{width:7.591937pt;}
._11{width:8.531044pt;}
._f{width:9.608032pt;}
._e{width:10.969686pt;}
._14{width:12.232012pt;}
._15{width:13.148927pt;}
._17{width:14.046748pt;}
._20{width:15.017270pt;}
._d{width:16.967956pt;}
._12{width:18.469189pt;}
._13{width:19.811065pt;}
._a{width:21.960012pt;}
._b{width:23.178430pt;}
._1b{width:26.691989pt;}
._1c{width:28.054296pt;}
._1e{width:31.235982pt;}
._21{width:36.935965pt;}
._1a{width:48.109790pt;}
._1f{width:68.679730pt;}
._5{width:120.934912pt;}
._24{width:164.471617pt;}
._23{width:165.831590pt;}
._19{width:167.896319pt;}
._22{width:237.899467pt;}
._25{width:752.140663pt;}
.fs9{font-size:24.319961pt;}
.fsa{font-size:31.999949pt;}
.fs1{font-size:53.119915pt;}
.fs7{font-size:58.879906pt;}
.fs8{font-size:63.999898pt;}
.fs0{font-size:74.879880pt;}
.fs5{font-size:85.119864pt;}
.fs2{font-size:95.999846pt;}
.fs3{font-size:101.119838pt;}
.fsb{font-size:106.879829pt;}
.fs4{font-size:117.119813pt;}
.fs6{font-size:149.119761pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:2.876025pt;}
.y7d{bottom:2.876080pt;}
.y83{bottom:2.876165pt;}
.y89{bottom:2.876249pt;}
.ya4{bottom:2.878183pt;}
.ye0{bottom:2.879736pt;}
.ye5{bottom:2.879791pt;}
.yaa{bottom:2.879868pt;}
.yc5{bottom:2.879882pt;}
.yb0{bottom:2.879952pt;}
.ycb{bottom:2.879966pt;}
.yb5{bottom:2.880007pt;}
.yd1{bottom:2.880051pt;}
.ybb{bottom:2.880092pt;}
.yd6{bottom:2.880106pt;}
.yc0{bottom:2.880147pt;}
.ydb{bottom:2.880161pt;}
.y8f{bottom:2.881134pt;}
.y95{bottom:2.881218pt;}
.y9a{bottom:2.881273pt;}
.y9f{bottom:2.881328pt;}
.y76{bottom:3.515999pt;}
.y141{bottom:3.516009pt;}
.y7b{bottom:3.516054pt;}
.y145{bottom:3.516069pt;}
.y147{bottom:3.516099pt;}
.y81{bottom:3.516138pt;}
.y14b{bottom:3.516159pt;}
.y14f{bottom:3.516219pt;}
.y87{bottom:3.516223pt;}
.y153{bottom:3.516279pt;}
.y49{bottom:3.516316pt;}
.ya8{bottom:3.518775pt;}
.yde{bottom:3.519709pt;}
.ye3{bottom:3.519764pt;}
.yc3{bottom:3.519855pt;}
.yae{bottom:3.519926pt;}
.yc9{bottom:3.519940pt;}
.y65{bottom:3.519957pt;}
.yb3{bottom:3.519981pt;}
.ycf{bottom:3.520024pt;}
.yb9{bottom:3.520065pt;}
.yd4{bottom:3.520079pt;}
.ybe{bottom:3.520120pt;}
.yd9{bottom:3.520134pt;}
.y8d{bottom:3.521107pt;}
.y157{bottom:3.521139pt;}
.y93{bottom:3.521192pt;}
.y15b{bottom:3.521199pt;}
.y4d{bottom:3.521232pt;}
.y98{bottom:3.521247pt;}
.y9d{bottom:3.521302pt;}
.ya2{bottom:3.521357pt;}
.y69{bottom:3.840028pt;}
.y75{bottom:4.315997pt;}
.yea{bottom:4.480000pt;}
.y68{bottom:4.960027pt;}
.y5f{bottom:4.960133pt;}
.y2{bottom:5.919939pt;}
.y55{bottom:7.038269pt;}
.y51{bottom:7.041347pt;}
.y7a{bottom:11.196041pt;}
.ye2{bottom:11.199752pt;}
.yb2{bottom:11.199968pt;}
.yd3{bottom:11.200067pt;}
.ybd{bottom:11.200108pt;}
.yd8{bottom:11.200122pt;}
.y97{bottom:11.201234pt;}
.y9c{bottom:11.201289pt;}
.ya1{bottom:11.201344pt;}
.ydd{bottom:11.227697pt;}
.yc2{bottom:11.239843pt;}
.y5c{bottom:12.160121pt;}
.y149{bottom:12.636144pt;}
.y14d{bottom:12.636204pt;}
.y151{bottom:12.636264pt;}
.y143{bottom:12.796054pt;}
.y155{bottom:12.801124pt;}
.y159{bottom:12.801184pt;}
.y70{bottom:15.200188pt;}
.y6c{bottom:15.360069pt;}
.y7f{bottom:20.316111pt;}
.y85{bottom:20.316196pt;}
.yac{bottom:20.319899pt;}
.yc7{bottom:20.319913pt;}
.ycd{bottom:20.319997pt;}
.yb7{bottom:20.320038pt;}
.y91{bottom:20.321165pt;}
.ya6{bottom:20.343814pt;}
.y8b{bottom:20.361080pt;}
.y140{bottom:21.915979pt;}
.y144{bottom:21.916039pt;}
.y80{bottom:21.916109pt;}
.y14a{bottom:21.916130pt;}
.y14e{bottom:21.916189pt;}
.y86{bottom:21.916193pt;}
.y152{bottom:21.916249pt;}
.y48{bottom:21.916286pt;}
.yad{bottom:21.919896pt;}
.yc8{bottom:21.919910pt;}
.yce{bottom:21.919995pt;}
.yb8{bottom:21.920036pt;}
.y156{bottom:21.921110pt;}
.y92{bottom:21.921162pt;}
.y15a{bottom:21.921170pt;}
.y4c{bottom:21.921202pt;}
.ya7{bottom:21.943812pt;}
.y64{bottom:21.959927pt;}
.y8c{bottom:21.961078pt;}
.y6e{bottom:22.080118pt;}
.y6b{bottom:22.240058pt;}
.ye7{bottom:23.199826pt;}
.y54{bottom:25.438240pt;}
.y50{bottom:25.441318pt;}
.yeb{bottom:25.599952pt;}
.ye8{bottom:27.519820pt;}
.y63{bottom:28.839916pt;}
.y6{bottom:30.239952pt;}
.y67{bottom:30.239986pt;}
.y5b{bottom:30.560092pt;}
.y5e{bottom:31.360091pt;}
.y1{bottom:32.160000pt;}
.ye9{bottom:32.959947pt;}
.y62{bottom:47.239887pt;}
.y47{bottom:49.436242pt;}
.y4b{bottom:49.601158pt;}
.y4f{bottom:52.961274pt;}
.y53{bottom:53.118195pt;}
.y5a{bottom:56.960050pt;}
.y5d{bottom:57.760048pt;}
.y56{bottom:61.118183pt;}
.y61{bottom:73.639844pt;}
.y13e{bottom:83.999866pt;}
.ye6{bottom:85.280000pt;}
.y40{bottom:97.919843pt;}
.y13d{bottom:102.399836pt;}
.y21{bottom:115.039816pt;}
.y13c{bottom:120.799807pt;}
.y3f{bottom:122.112338pt;}
.ye4{bottom:127.680000pt;}
.y115{bottom:129.439793pt;}
.y20{bottom:136.507782pt;}
.y13b{bottom:139.199777pt;}
.ye1{bottom:143.680000pt;}
.y114{bottom:147.839763pt;}
.y3e{bottom:153.947754pt;}
.y13a{bottom:157.599748pt;}
.y1f{bottom:160.667743pt;}
.ydf{bottom:162.080000pt;}
.y113{bottom:166.239734pt;}
.y6f{bottom:167.387520pt;}
.y139{bottom:176.000252pt;}
.ydc{bottom:178.080000pt;}
.y112{bottom:181.119710pt;}
.y1e{bottom:184.827704pt;}
.y3d{bottom:185.627703pt;}
.y138{bottom:194.427689pt;}
.yda{bottom:196.507520pt;}
.y6d{bottom:204.347520pt;}
.y1d{bottom:208.827666pt;}
.yd7{bottom:212.507520pt;}
.y137{bottom:212.827659pt;}
.y3c{bottom:217.307652pt;}
.yd5{bottom:230.907520pt;}
.y136{bottom:231.227630pt;}
.y1c{bottom:232.987627pt;}
.y6a{bottom:241.307520pt;}
.yd2{bottom:246.907520pt;}
.y3b{bottom:249.147601pt;}
.y135{bottom:249.627601pt;}
.y1b{bottom:257.147589pt;}
.yd0{bottom:265.307520pt;}
.y134{bottom:268.027571pt;}
.y173{bottom:273.947562pt;}
.y66{bottom:278.427520pt;}
.y3a{bottom:280.827551pt;}
.y1a{bottom:280.987550pt;}
.ycc{bottom:281.307520pt;}
.y133{bottom:286.427542pt;}
.y172{bottom:292.347532pt;}
.y19{bottom:298.587522pt;}
.y111{bottom:298.747522pt;}
.y132{bottom:304.827512pt;}
.y171{bottom:310.747503pt;}
.y39{bottom:312.507500pt;}
.y18{bottom:316.187494pt;}
.y110{bottom:317.147493pt;}
.yca{bottom:318.107520pt;}
.y131{bottom:323.227483pt;}
.y60{bottom:323.547520pt;}
.y170{bottom:329.147473pt;}
.yc6{bottom:334.107520pt;}
.y17{bottom:335.067464pt;}
.y10f{bottom:335.547463pt;}
.y130{bottom:341.627453pt;}
.y38{bottom:344.387449pt;}
.y16f{bottom:347.547444pt;}
.y10e{bottom:353.947434pt;}
.y12f{bottom:360.027424pt;}
.y16e{bottom:365.947414pt;}
.y16{bottom:367.107413pt;}
.yc4{bottom:370.907520pt;}
.y10d{bottom:372.187404pt;}
.y12e{bottom:374.907400pt;}
.y37{bottom:376.067398pt;}
.y16d{bottom:384.347385pt;}
.yc1{bottom:386.907520pt;}
.y10c{bottom:390.587375pt;}
.y16c{bottom:402.787356pt;}
.ybf{bottom:405.347200pt;}
.y15{bottom:406.947349pt;}
.y36{bottom:407.747348pt;}
.y10b{bottom:409.027346pt;}
.y59{bottom:412.067200pt;}
.y16b{bottom:421.187326pt;}
.ybc{bottom:421.347200pt;}
.y10a{bottom:427.427316pt;}
.y14{bottom:435.907303pt;}
.y35{bottom:439.587297pt;}
.yba{bottom:439.747200pt;}
.y109{bottom:445.827287pt;}
.yb6{bottom:455.747200pt;}
.y16a{bottom:457.987267pt;}
.y108{bottom:464.227257pt;}
.y13{bottom:464.707256pt;}
.y34{bottom:471.267246pt;}
.y169{bottom:476.387238pt;}
.y107{bottom:482.627228pt;}
.yb4{bottom:492.547200pt;}
.y12{bottom:495.907207pt;}
.y106{bottom:501.027198pt;}
.y168{bottom:502.787196pt;}
.y33{bottom:503.107195pt;}
.y58{bottom:503.587194pt;}
.yb1{bottom:508.547200pt;}
.y105{bottom:519.427169pt;}
.yaf{bottom:526.947200pt;}
.y167{bottom:529.186087pt;}
.y11{bottom:534.786078pt;}
.y32{bottom:534.787144pt;}
.y104{bottom:537.827139pt;}
.y57{bottom:538.627138pt;}
.yab{bottom:542.947200pt;}
.y166{bottom:547.586057pt;}
.y103{bottom:556.226043pt;}
.y165{bottom:565.986028pt;}
.y31{bottom:566.467094pt;}
.y10{bottom:573.531082pt;}
.y102{bottom:574.626014pt;}
.y52{bottom:574.812800pt;}
.ya9{bottom:579.747200pt;}
.y164{bottom:584.385998pt;}
.y12d{bottom:590.465989pt;}
.y101{bottom:593.025984pt;}
.ya5{bottom:595.747200pt;}
.y30{bottom:598.331043pt;}
.y163{bottom:602.785969pt;}
.y12c{bottom:608.891026pt;}
.y100{bottom:611.451022pt;}
.yf{bottom:612.251020pt;}
.y162{bottom:621.211006pt;}
.y12b{bottom:627.290996pt;}
.yff{bottom:629.850992pt;}
.y2f{bottom:630.010992pt;}
.ya3{bottom:632.572800pt;}
.y161{bottom:639.610977pt;}
.y12a{bottom:645.690967pt;}
.yfe{bottom:648.250963pt;}
.ya0{bottom:648.569600pt;}
.y4e{bottom:650.809600pt;}
.ye{bottom:653.050955pt;}
.y160{bottom:658.010947pt;}
.y2e{bottom:661.690941pt;}
.y129{bottom:664.090937pt;}
.yfd{bottom:666.650933pt;}
.y9e{bottom:666.969600pt;}
.y15f{bottom:676.410918pt;}
.y128{bottom:682.490908pt;}
.y9b{bottom:682.969600pt;}
.yfc{bottom:685.050904pt;}
.y2d{bottom:693.530890pt;}
.y15e{bottom:694.810888pt;}
.y127{bottom:700.890879pt;}
.y99{bottom:701.369600pt;}
.yfb{bottom:703.450874pt;}
.y15d{bottom:713.210859pt;}
.y96{bottom:717.369600pt;}
.y126{bottom:719.290849pt;}
.y4a{bottom:726.649600pt;}
.y2c{bottom:731.450830pt;}
.y15c{bottom:731.610829pt;}
.y94{bottom:735.769600pt;}
.y125{bottom:737.690820pt;}
.yfa{bottom:737.850819pt;}
.y158{bottom:747.129600pt;}
.y90{bottom:751.769600pt;}
.y124{bottom:756.090790pt;}
.yf9{bottom:756.250790pt;}
.y2b{bottom:762.010781pt;}
.y123{bottom:774.490761pt;}
.y154{bottom:784.569600pt;}
.y8e{bottom:788.569600pt;}
.yf8{bottom:790.650735pt;}
.y2a{bottom:792.570732pt;}
.y122{bottom:792.890731pt;}
.y46{bottom:799.174400pt;}
.y8a{bottom:804.569600pt;}
.yf7{bottom:809.050706pt;}
.y121{bottom:811.290702pt;}
.y150{bottom:822.214400pt;}
.y29{bottom:823.170683pt;}
.yf6{bottom:827.490676pt;}
.y120{bottom:829.730672pt;}
.y88{bottom:841.414400pt;}
.yd{bottom:843.970650pt;}
.yf5{bottom:845.890647pt;}
.y28{bottom:847.330644pt;}
.y11f{bottom:848.130643pt;}
.y84{bottom:857.414400pt;}
.y14c{bottom:859.654400pt;}
.yf4{bottom:864.290617pt;}
.y45{bottom:865.250616pt;}
.y11e{bottom:866.530614pt;}
.yc{bottom:882.530588pt;}
.y44{bottom:882.850587pt;}
.y11d{bottom:884.930584pt;}
.y27{bottom:885.410583pt;}
.y43{bottom:893.090571pt;}
.y82{bottom:894.214400pt;}
.y148{bottom:897.094400pt;}
.yf3{bottom:898.050563pt;}
.y11c{bottom:903.330555pt;}
.yb{bottom:910.050544pt;}
.y7e{bottom:910.214400pt;}
.yf2{bottom:913.410539pt;}
.y26{bottom:915.970534pt;}
.y11b{bottom:921.730525pt;}
.yf1{bottom:928.770514pt;}
.y146{bottom:934.534400pt;}
.y42{bottom:937.250500pt;}
.ya{bottom:937.730500pt;}
.y11a{bottom:940.130496pt;}
.yf0{bottom:944.130489pt;}
.y25{bottom:946.370486pt;}
.y7c{bottom:947.014400pt;}
.y142{bottom:953.574400pt;}
.y119{bottom:958.530466pt;}
.yef{bottom:959.490465pt;}
.y79{bottom:963.014400pt;}
.y24{bottom:966.530454pt;}
.y9{bottom:969.410449pt;}
.yee{bottom:974.690440pt;}
.y118{bottom:976.930437pt;}
.y77{bottom:981.414400pt;}
.yed{bottom:990.050416pt;}
.y13f{bottom:991.014400pt;}
.y23{bottom:994.050410pt;}
.y117{bottom:995.330941pt;}
.y8{bottom:997.090938pt;}
.y74{bottom:997.414400pt;}
.yec{bottom:1005.410391pt;}
.y41{bottom:1012.130381pt;}
.y116{bottom:1013.730911pt;}
.y7{bottom:1024.638361pt;}
.y22{bottom:1032.158349pt;}
.y73{bottom:1060.638303pt;}
.y5{bottom:1060.798303pt;}
.y72{bottom:1075.838279pt;}
.y4{bottom:1075.998278pt;}
.y71{bottom:1091.198254pt;}
.y3{bottom:1091.358254pt;}
.h22{height:15.200000pt;}
.h28{height:15.360000pt;}
.h11{height:16.482474pt;}
.h20{height:18.400000pt;}
.h2e{height:18.430016pt;}
.h30{height:18.432512pt;}
.h12{height:21.687465pt;}
.h2{height:24.640000pt;}
.h23{height:33.600000pt;}
.h2a{height:33.760000pt;}
.h2d{height:33.790016pt;}
.h2f{height:33.792512pt;}
.h5{height:35.404631pt;}
.h21{height:35.975255pt;}
.h25{height:36.800000pt;}
.h2c{height:36.830016pt;}
.h27{height:36.832512pt;}
.h4{height:36.883066pt;}
.h1f{height:36.909003pt;}
.h1d{height:36.960000pt;}
.h1c{height:37.120000pt;}
.hd{height:39.243687pt;}
.h32{height:42.400000pt;}
.h14{height:43.374931pt;}
.h15{height:44.437429pt;}
.hf{height:44.468679pt;}
.h35{height:44.472946pt;}
.h1b{height:45.120000pt;}
.h3{height:49.907733pt;}
.he{height:50.748669pt;}
.h33{height:51.200000pt;}
.h24{height:52.000000pt;}
.h26{height:52.032512pt;}
.h29{height:52.160000pt;}
.h2b{height:52.190016pt;}
.h31{height:57.760000pt;}
.ha{height:59.143343pt;}
.hb{height:63.984273pt;}
.h13{height:64.320000pt;}
.h6{height:65.062396pt;}
.h7{height:67.396767pt;}
.h16{height:72.512640pt;}
.h34{height:74.262694pt;}
.h17{height:75.840000pt;}
.h18{height:76.000000pt;}
.h8{height:79.376123pt;}
.h9{height:79.380390pt;}
.h1a{height:88.510080pt;}
.h19{height:88.640000pt;}
.hc{height:101.063588pt;}
.h10{height:103.612022pt;}
.h1e{height:1122.559867pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.719867pt;}
.w2{width:18.750016pt;}
.w9{width:65.760000pt;}
.wd{width:101.312640pt;}
.wa{width:112.640000pt;}
.wb{width:160.504960pt;}
.wc{width:234.107520pt;}
.w3{width:328.707200pt;}
.w4{width:328.732800pt;}
.w5{width:330.492800pt;}
.w6{width:361.507200pt;}
.w8{width:576.252800pt;}
.w7{width:793.759867pt;}
.w1{width:794.000000pt;}
.w0{width:794.079867pt;}
.x0{left:0.000000pt;}
.x1b{left:7.199880pt;}
.x24{left:24.796517pt;}
.x23{left:28.796511pt;}
.x22{left:32.796505pt;}
.x27{left:42.718842pt;}
.x33{left:44.639700pt;}
.x5{left:67.999891pt;}
.x16{left:71.839885pt;}
.x1a{left:75.552412pt;}
.x4{left:80.352405pt;}
.x1e{left:89.625723pt;}
.x15{left:97.792377pt;}
.x17{left:99.391841pt;}
.x1d{left:110.112357pt;}
.x25{left:113.312352pt;}
.xb{left:115.232349pt;}
.xd{left:123.712802pt;}
.x2{left:125.632332pt;}
.x8{left:131.232323pt;}
.x6{left:132.192322pt;}
.xc{left:135.067784pt;}
.x13{left:143.547770pt;}
.x12{left:154.907752pt;}
.xa{left:200.507679pt;}
.x3{left:213.626858pt;}
.x7{left:223.067243pt;}
.x28{left:228.187635pt;}
.x32{left:232.187628pt;}
.x34{left:237.667200pt;}
.x10{left:239.267617pt;}
.x20{left:260.514822pt;}
.xe{left:269.507235pt;}
.x36{left:286.947541pt;}
.x2a{left:289.507537pt;}
.x18{left:299.747520pt;}
.x2b{left:305.507511pt;}
.x31{left:311.587501pt;}
.x14{left:314.307497pt;}
.x2d{left:315.747495pt;}
.xf{left:318.787490pt;}
.x19{left:321.027486pt;}
.x2e{left:337.827459pt;}
.x2c{left:342.947451pt;}
.x29{left:346.947445pt;}
.x1f{left:368.867410pt;}
.x1{left:387.587200pt;}
.x11{left:397.027365pt;}
.x1c{left:398.492800pt;}
.x9{left:420.731327pt;}
.x30{left:544.091129pt;}
.x2f{left:595.491047pt;}
.x35{left:633.732480pt;}
.x21{left:651.814400pt;}
.x26{left:680.960000pt;}
}




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