
    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_2503dda93a6b0743562bff37.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_59d544a9506f275f26ad248b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.681152;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_04bd2b7b9688043a15787e03.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.281250;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_e785ad8dabf378680eaa20a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_5d9288167b95d6c9d1cdbdfa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_8df5d5b6300bfdb78585e0b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_3ae9ce983faed6d02cdbe17b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_530860cd69d7e1d3547620a6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682129;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_5216fae5195b4bb12d904b21.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.239258;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_da4105502cb2e3e82916cea3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_5351d98eadd6ef082cf99445.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_83369cf23e0b6cb7827771e9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.000011,-0.248885,0.250000,0.000011,0,0);-ms-transform:matrix(0.000011,-0.248885,0.250000,0.000011,0,0);-webkit-transform:matrix(0.000011,-0.248885,0.250000,0.000011,0,0);}
.m2{transform:matrix(0.236101,0.000000,-0.080900,0.236549,0,0);-ms-transform:matrix(0.236101,0.000000,-0.080900,0.236549,0,0);-webkit-transform:matrix(0.236101,0.000000,-0.080900,0.236549,0,0);}
.m4{transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v5{vertical-align:-64.879800px;}
.v2{vertical-align:-31.088400px;}
.v3{vertical-align:-8.785800px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.642600px;}
.v6{vertical-align:28.384800px;}
.v1{vertical-align:33.791400px;}
.ls9{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.003483px;}
.ls1d{letter-spacing:0.062176px;}
.lsf{letter-spacing:0.167020px;}
.ls0{letter-spacing:0.168282px;}
.ls7{letter-spacing:0.224376px;}
.ls8{letter-spacing:0.253420px;}
.ls17{letter-spacing:0.274425px;}
.ls3{letter-spacing:0.295549px;}
.ls1f{letter-spacing:0.298535px;}
.ls1e{letter-spacing:0.299137px;}
.ls15{letter-spacing:0.332839px;}
.lsa{letter-spacing:0.333442px;}
.ls2{letter-spacing:0.443264px;}
.ls1b{letter-spacing:0.450872px;}
.ls12{letter-spacing:0.461001px;}
.ls4{letter-spacing:0.476793px;}
.ls14{letter-spacing:0.493336px;}
.ls20{letter-spacing:0.499839px;}
.lsd{letter-spacing:0.506406px;}
.ls16{letter-spacing:0.624439px;}
.ls19{letter-spacing:0.682854px;}
.ls18{letter-spacing:0.683456px;}
.ls1{letter-spacing:0.709363px;}
.ls1a{letter-spacing:1.130846px;}
.ls21{letter-spacing:14.093882px;}
.lsb{letter-spacing:15.705188px;}
.lse{letter-spacing:16.280297px;}
.ls6{letter-spacing:17.461213px;}
.ls11{letter-spacing:17.592411px;}
.ls10{letter-spacing:17.617442px;}
.ls5{letter-spacing:18.148868px;}
.ls13{letter-spacing:19.899638px;}
.ls1c{letter-spacing:196.424296px;}
.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;}
}
.ws31{word-spacing:-207.168045px;}
.ws7{word-spacing:-33.880762px;}
.ws2{word-spacing:-28.215945px;}
.ws4{word-spacing:-22.471380px;}
.wse{word-spacing:-19.768065px;}
.ws13{word-spacing:-16.895775px;}
.ws39{word-spacing:-15.606286px;}
.wsa{word-spacing:-15.544110px;}
.ws8{word-spacing:-14.868284px;}
.wsc{word-spacing:-14.023494px;}
.ws18{word-spacing:-12.219993px;}
.ws6{word-spacing:-11.996001px;}
.ws14{word-spacing:-11.320170px;}
.ws30{word-spacing:-10.743748px;}
.ws2f{word-spacing:-6.650465px;}
.ws0{word-spacing:-5.059377px;}
.ws1a{word-spacing:-4.192582px;}
.ws9{word-spacing:-4.101593px;}
.ws2c{word-spacing:-3.513212px;}
.ws11{word-spacing:-3.493738px;}
.wsb{word-spacing:0.000000px;}
.ws22{word-spacing:0.061804px;}
.ws1b{word-spacing:0.125603px;}
.ws1d{word-spacing:0.127090px;}
.ws2e{word-spacing:0.144165px;}
.ws1c{word-spacing:0.180100px;}
.ws2b{word-spacing:0.261765px;}
.ws1f{word-spacing:0.300742px;}
.ws23{word-spacing:0.319372px;}
.ws1e{word-spacing:0.346539px;}
.wsf{word-spacing:0.347142px;}
.ws21{word-spacing:0.377418px;}
.wsd{word-spacing:0.394818px;}
.ws2d{word-spacing:0.492327px;}
.ws33{word-spacing:0.584829px;}
.ws38{word-spacing:0.585431px;}
.ws1{word-spacing:0.605350px;}
.ws10{word-spacing:0.698507px;}
.ws3a{word-spacing:0.771471px;}
.ws3{word-spacing:0.829520px;}
.ws3b{word-spacing:1.232648px;}
.ws20{word-spacing:1.247908px;}
.ws5{word-spacing:1.434715px;}
.ws16{word-spacing:5.476611px;}
.ws34{word-spacing:6.017384px;}
.ws35{word-spacing:6.017986px;}
.ws15{word-spacing:6.155982px;}
.ws12{word-spacing:6.216322px;}
.ws3c{word-spacing:7.296560px;}
.ws36{word-spacing:21.650142px;}
.ws37{word-spacing:21.650744px;}
.ws19{word-spacing:23.404626px;}
.ws24{word-spacing:28.523266px;}
.ws25{word-spacing:32.094224px;}
.ws2a{word-spacing:32.322907px;}
.ws29{word-spacing:32.963301px;}
.ws27{word-spacing:32.971399px;}
.ws26{word-spacing:33.071065px;}
.ws28{word-spacing:33.391391px;}
.ws17{word-spacing:128.480753px;}
.ws32{word-spacing:538.488379px;}
._21{margin-left:-196.423691px;}
._1a{margin-left:-6.075078px;}
._17{margin-left:-4.350999px;}
._20{margin-left:-2.327166px;}
._2{margin-left:-1.121880px;}
._0{width:1.121880px;}
._1{width:2.643049px;}
._7{width:4.614291px;}
._f{width:5.696181px;}
._9{width:6.843465px;}
._a{width:8.021439px;}
._b{width:9.311600px;}
._c{width:10.938325px;}
._14{width:11.942605px;}
._8{width:12.957708px;}
._13{width:14.012699px;}
._e{width:15.412664px;}
._d{width:16.748509px;}
._4{width:18.650170px;}
._5{width:19.993863px;}
._1b{width:21.284787px;}
._6{width:22.325402px;}
._11{width:23.441069px;}
._3{width:24.692074px;}
._26{width:25.767431px;}
._10{width:27.128625px;}
._1d{width:28.254357px;}
._1f{width:29.454794px;}
._1c{width:30.817135px;}
._15{width:32.963876px;}
._16{width:35.612830px;}
._24{width:36.869082px;}
._12{width:40.271577px;}
._18{width:46.831969px;}
._19{width:59.863019px;}
._25{width:110.453259px;}
._27{width:124.726673px;}
._23{width:138.500247px;}
._22{width:480.296520px;}
._1e{width:808.213140px;}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:26.601858px;}
.fsc{font-size:28.073496px;}
.fse{font-size:38.786094px;}
.fsf{font-size:39.198204px;}
.fsb{font-size:44.115498px;}
.fs5{font-size:45.280680px;}
.fs4{font-size:47.984004px;}
.fs0{font-size:56.093976px;}
.fs7{font-size:59.473134px;}
.fs9{font-size:62.176440px;}
.fs6{font-size:67.583100px;}
.fsa{font-size:71.426225px;}
.fs3{font-size:72.989760px;}
.fs8{font-size:79.072260px;}
.fs2{font-size:89.885520px;}
.fs1{font-size:112.863780px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.891540px;}
.yca{bottom:1.860450px;}
.ye2{bottom:3.548100px;}
.yea{bottom:3.717000px;}
.ye8{bottom:3.885900px;}
.ye5{bottom:3.886050px;}
.yb7{bottom:5.237700px;}
.y62{bottom:6.443250px;}
.yc8{bottom:8.319000px;}
.yc0{bottom:8.493000px;}
.y5e{bottom:9.470700px;}
.ycd{bottom:10.306425px;}
.y5f{bottom:14.528700px;}
.ye1{bottom:21.288750px;}
.ye7{bottom:21.626550px;}
.ye4{bottom:21.626700px;}
.yc6{bottom:22.509000px;}
.y5d{bottom:24.510150px;}
.y61{bottom:25.493100px;}
.y55{bottom:27.562800px;}
.yb6{bottom:30.581400px;}
.ycc{bottom:35.312115px;}
.yc1{bottom:36.613050px;}
.y56{bottom:39.594300px;}
.y57{bottom:51.625800px;}
.yc2{bottom:63.058200px;}
.y58{bottom:64.659900px;}
.ybb{bottom:70.099500px;}
.ybd{bottom:76.210650px;}
.y59{bottom:76.691400px;}
.yba{bottom:85.018050px;}
.yc3{bottom:88.621650px;}
.y5a{bottom:88.722900px;}
.y3{bottom:92.926770px;}
.y125{bottom:95.630100px;}
.ybe{bottom:96.341850px;}
.yb9{bottom:97.779750px;}
.y5b{bottom:100.754400px;}
.ybc{bottom:110.541450px;}
.yc4{bottom:115.066800px;}
.ya3{bottom:118.101465px;}
.y2c{bottom:121.142715px;}
.y84{bottom:121.649580px;}
.ycb{bottom:123.892785px;}
.ya2{bottom:135.842040px;}
.y123{bottom:137.869530px;}
.y2b{bottom:139.052235px;}
.yc5{bottom:141.511800px;}
.y53{bottom:142.431390px;}
.ydf{bottom:144.796800px;}
.ya1{bottom:153.582660px;}
.y122{bottom:154.089510px;}
.yf6{bottom:160.847760px;}
.yde{bottom:162.537360px;}
.y54{bottom:166.621200px;}
.y121{bottom:170.309460px;}
.ya0{bottom:171.492060px;}
.y2a{bottom:174.533310px;}
.yb8{bottom:180.101850px;}
.ydd{bottom:180.446910px;}
.yc7{bottom:184.595400px;}
.yf5{bottom:185.515560px;}
.y120{bottom:186.529410px;}
.y9f{bottom:189.232710px;}
.y29{bottom:192.442860px;}
.ydc{bottom:198.187410px;}
.yf4{bottom:201.735510px;}
.y11f{bottom:202.580310px;}
.y9e{bottom:207.142260px;}
.y28{bottom:210.183510px;}
.y5c{bottom:214.792050px;}
.ydb{bottom:216.096960px;}
.y60{bottom:219.824850px;}
.y9d{bottom:224.882760px;}
.yf3{bottom:226.403460px;}
.y27{bottom:228.092910px;}
.yc9{bottom:230.429700px;}
.yda{bottom:233.837610px;}
.y11e{bottom:235.020210px;}
.yf2{bottom:242.623410px;}
.y9c{bottom:242.792310px;}
.y26{bottom:245.833560px;}
.y11d{bottom:251.240160px;}
.y9b{bottom:260.532810px;}
.y25{bottom:263.574060px;}
.y11c{bottom:267.460110px;}
.yf1{bottom:275.739060px;}
.y24{bottom:281.483610px;}
.y11b{bottom:283.680060px;}
.y23{bottom:299.224260px;}
.y11a{bottom:299.731110px;}
.y9a{bottom:301.589610px;}
.y52{bottom:304.292910px;}
.y83{bottom:311.051310px;}
.y22{bottom:317.133660px;}
.yf0{bottom:320.343960px;}
.y51{bottom:322.202460px;}
.ybf{bottom:322.817250px;}
.y99{bottom:324.230010px;}
.y82{bottom:328.791810px;}
.y119{bottom:331.664160px;}
.y21{bottom:334.874310px;}
.yef{bottom:338.253360px;}
.y50{bottom:339.942960px;}
.y81{bottom:346.532310px;}
.y20{bottom:352.614810px;}
.y4f{bottom:357.852510px;}
.y80{bottom:364.441860px;}
.y98{bottom:365.793510px;}
.y1f{bottom:370.524360px;}
.y118{bottom:373.058760px;}
.y4e{bottom:375.593160px;}
.yee{bottom:379.310160px;}
.yb4{bottom:381.844560px;}
.y7f{bottom:382.182510px;}
.y97{bottom:383.534160px;}
.y1e{bottom:388.265010px;}
.y117{bottom:389.278710px;}
.y4d{bottom:393.502560px;}
.yb3{bottom:399.585060px;}
.y7e{bottom:400.092060px;}
.y96{bottom:401.443710px;}
.y1d{bottom:406.174410px;}
.y4c{bottom:411.243210px;}
.y116{bottom:413.777610px;}
.y7d{bottom:417.832560px;}
.y95{bottom:419.184210px;}
.y1c{bottom:423.915060px;}
.y4b{bottom:428.983710px;}
.y7c{bottom:435.573060px;}
.yb2{bottom:435.911010px;}
.y94{bottom:436.924710px;}
.y115{bottom:438.445410px;}
.y1b{bottom:441.655560px;}
.y4a{bottom:446.893260px;}
.y7b{bottom:453.482610px;}
.y114{bottom:454.665360px;}
.y93{bottom:454.834260px;}
.y1a{bottom:459.565110px;}
.y49{bottom:465.816510px;}
.y113{bottom:470.885310px;}
.y7a{bottom:471.223260px;}
.y92{bottom:472.574910px;}
.y19{bottom:477.305760px;}
.yb1{bottom:480.515910px;}
.y48{bottom:483.557160px;}
.y79{bottom:489.132660px;}
.yed{bottom:490.315410px;}
.y91{bottom:490.484460px;}
.y112{bottom:495.553110px;}
.yb0{bottom:498.425460px;}
.y47{bottom:501.466710px;}
.y78{bottom:506.873310px;}
.y90{bottom:508.224960px;}
.y111{bottom:511.604160px;}
.y18{bottom:515.152260px;}
.yaf{bottom:516.165960px;}
.y46{bottom:519.207210px;}
.y77{bottom:524.613810px;}
.y8f{bottom:525.965460px;}
.y110{bottom:527.824110px;}
.yae{bottom:534.075510px;}
.y45{bottom:537.116760px;}
.y8e{bottom:543.875010px;}
.y10f{bottom:552.491910px;}
.y17{bottom:553.336710px;}
.yb5{bottom:554.059200px;}
.y44{bottom:554.857260px;}
.yd9{bottom:556.546860px;}
.y8d{bottom:561.615660px;}
.y76{bottom:565.839510px;}
.y10e{bottom:568.711860px;}
.y16{bottom:569.894460px;}
.y43{bottom:572.597910px;}
.yd8{bottom:574.456410px;}
.y8c{bottom:579.525210px;}
.yec{bottom:584.931810px;}
.yd7{bottom:592.196910px;}
.y8b{bottom:597.265710px;}
.y75{bottom:603.855060px;}
.y15{bottom:606.727410px;}
.y10d{bottom:609.599610px;}
.yd6{bottom:609.937560px;}
.y42{bottom:610.444410px;}
.y8a{bottom:615.175260px;}
.y14{bottom:622.947210px;}
.yeb{bottom:624.176700px;}
.y10c{bottom:625.650660px;}
.yd5{bottom:627.847110px;}
.y13{bottom:639.167160px;}
.ye9{bottom:642.762150px;}
.yd4{bottom:646.770360px;}
.y89{bottom:648.966810px;}
.y41{bottom:649.980510px;}
.y10b{bottom:650.318460px;}
.y12{bottom:655.387110px;}
.ye6{bottom:661.178550px;}
.yd3{bottom:664.679910px;}
.y10a{bottom:666.538410px;}
.y40{bottom:667.890060px;}
.y11{bottom:671.607060px;}
.yd2{bottom:682.420410px;}
.y3f{bottom:685.630560px;}
.y10{bottom:687.658110px;}
.y109{bottom:691.206210px;}
.ye3{bottom:697.504350px;}
.yd1{bottom:700.160910px;}
.y3e{bottom:703.540110px;}
.yf{bottom:703.878060px;}
.y108{bottom:707.426160px;}
.yd0{bottom:718.070460px;}
.ye{bottom:720.098010px;}
.y3d{bottom:721.280760px;}
.y137{bottom:729.390660px;}
.y74{bottom:730.911360px;}
.y107{bottom:732.093960px;}
.ye0{bottom:733.830300px;}
.yd{bottom:736.317960px;}
.y3c{bottom:739.021260px;}
.y136{bottom:745.610610px;}
.y106{bottom:748.145010px;}
.y73{bottom:748.820760px;}
.yc{bottom:752.537910px;}
.ycf{bottom:753.720510px;}
.y3b{bottom:756.930810px;}
.y135{bottom:761.661660px;}
.y72{bottom:766.561410px;}
.yad{bottom:767.575110px;}
.yb{bottom:768.757710px;}
.yce{bottom:771.461160px;}
.y105{bottom:772.812810px;}
.y3a{bottom:774.671310px;}
.y134{bottom:777.881610px;}
.y71{bottom:784.470960px;}
.yac{bottom:785.315610px;}
.y104{bottom:789.032760px;}
.y88{bottom:789.201660px;}
.y133{bottom:794.101560px;}
.y70{bottom:802.211460px;}
.yab{bottom:803.225160px;}
.ya{bottom:804.576810px;}
.y103{bottom:805.252710px;}
.y87{bottom:807.111210px;}
.y132{bottom:810.321510px;}
.y39{bottom:815.897010px;}
.y6f{bottom:820.121010px;}
.yaa{bottom:820.965810px;}
.y86{bottom:824.851710px;}
.y131{bottom:826.541310px;}
.y102{bottom:829.920510px;}
.y6e{bottom:837.861510px;}
.ya9{bottom:838.706310px;}
.y85{bottom:842.761260px;}
.y101{bottom:846.140460px;}
.y6d{bottom:855.602160px;}
.ya8{bottom:856.615860px;}
.y130{bottom:858.812310px;}
.y38{bottom:860.501910px;}
.y100{bottom:862.191510px;}
.y9{bottom:870.808260px;}
.y6c{bottom:873.511560px;}
.ya7{bottom:874.356510px;}
.y12f{bottom:875.032260px;}
.y37{bottom:878.411460px;}
.yff{bottom:886.859310px;}
.y6b{bottom:891.252210px;}
.ya6{bottom:892.266060px;}
.y36{bottom:896.151960px;}
.y8{bottom:901.220610px;}
.yfe{bottom:903.079260px;}
.y12e{bottom:907.472160px;}
.y6a{bottom:909.161610px;}
.ya5{bottom:910.006560px;}
.y35{bottom:913.892610px;}
.y7{bottom:917.778510px;}
.y12d{bottom:923.692110px;}
.y69{bottom:926.902260px;}
.ya4{bottom:927.747060px;}
.y34{bottom:931.802010px;}
.y12c{bottom:939.743010px;}
.yfd{bottom:943.967010px;}
.y68{bottom:944.642910px;}
.y6{bottom:944.980710px;}
.y33{bottom:949.542660px;}
.y12b{bottom:955.963110px;}
.yfc{bottom:960.018060px;}
.y67{bottom:962.552460px;}
.y32{bottom:967.452060px;}
.y12a{bottom:972.183060px;}
.y5{bottom:977.927610px;}
.y66{bottom:980.292960px;}
.yfb{bottom:984.685860px;}
.y31{bottom:985.192710px;}
.y129{bottom:988.403010px;}
.y65{bottom:998.202510px;}
.yfa{bottom:1000.905810px;}
.y30{bottom:1002.933360px;}
.y128{bottom:1004.622960px;}
.y64{bottom:1015.943010px;}
.yf9{bottom:1017.125760px;}
.y2f{bottom:1020.842910px;}
.y4{bottom:1033.514610px;}
.y127{bottom:1036.893810px;}
.y2e{bottom:1038.583410px;}
.yf8{bottom:1041.793560px;}
.y63{bottom:1052.268960px;}
.y126{bottom:1053.113760px;}
.y2d{bottom:1056.492960px;}
.yf7{bottom:1058.013510px;}
.y124{bottom:1077.781560px;}
.y2{bottom:1084.202010px;}
.h1c{height:17.740500px;}
.h1d{height:17.862780px;}
.h12{height:18.693195px;}
.h11{height:26.108269px;}
.h17{height:35.646465px;}
.h1a{height:35.650050px;}
.h19{height:35.650200px;}
.he{height:36.128205px;}
.h13{height:40.452684px;}
.h5{height:44.440511px;}
.hd{height:46.011086px;}
.hb{height:47.605858px;}
.hf{height:53.052750px;}
.h7{height:55.025780px;}
.h2{height:55.053170px;}
.h1e{height:56.532210px;}
.ha{height:61.022776px;}
.h18{height:62.662193px;}
.h6{height:66.329117px;}
.h1b{height:66.855694px;}
.h8{height:71.599818px;}
.h3{height:75.224150px;}
.h9{height:79.690012px;}
.h15{height:80.344815px;}
.h4{height:80.885076px;}
.hc{height:118.450185px;}
.h14{height:165.902100px;}
.h10{height:173.631000px;}
.h16{height:238.230450px;}
.h1{height:1185.407550px;}
.h0{height:1188.000000px;}
.wa{width:18.728670px;}
.w9{width:83.378595px;}
.w3{width:84.639180px;}
.w4{width:92.923020px;}
.w7{width:111.651690px;}
.wc{width:133.899150px;}
.wf{width:136.917450px;}
.wd{width:162.337950px;}
.we{width:179.017200px;}
.w6{width:270.845400px;}
.w8{width:330.453000px;}
.w2{width:462.093900px;}
.wb{width:611.905335px;}
.w5{width:613.295550px;}
.w1{width:839.790000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:2.013600px;}
.x21{left:5.582580px;}
.x22{left:7.923735px;}
.x15{left:11.071050px;}
.x18{left:13.162950px;}
.x31{left:14.817150px;}
.x37{left:19.099650px;}
.x34{left:21.131100px;}
.x27{left:23.021850px;}
.x28{left:24.792600px;}
.x36{left:33.009300px;}
.x32{left:34.284150px;}
.x1{left:38.898015px;}
.x1e{left:40.288200px;}
.x2c{left:46.515585px;}
.x38{left:48.075150px;}
.x35{left:51.968550px;}
.x3b{left:64.466250px;}
.x29{left:67.294200px;}
.x39{left:77.191050px;}
.x3a{left:85.575600px;}
.x24{left:98.685735px;}
.x12{left:101.635350px;}
.x11{left:107.673750px;}
.x10{left:113.712000px;}
.x2d{left:116.427435px;}
.x3{left:120.018285px;}
.x4{left:124.081035px;}
.x16{left:129.814350px;}
.x20{left:143.886615px;}
.x9{left:148.118535px;}
.x6{left:149.811285px;}
.x2e{left:151.637400px;}
.xe{left:155.905335px;}
.x2{left:159.629535px;}
.x1d{left:161.963400px;}
.x5{left:169.616835px;}
.x3c{left:170.801835px;}
.x1f{left:193.654500px;}
.xf{left:220.242000px;}
.x13{left:232.307550px;}
.xb{left:250.024185px;}
.x23{left:255.718335px;}
.x2f{left:286.213650px;}
.x1b{left:292.513035px;}
.x1a{left:297.929985px;}
.x7{left:315.704085px;}
.x1c{left:326.030085px;}
.x19{left:339.910935px;}
.x8{left:344.650785px;}
.x26{left:414.551850px;}
.x2b{left:419.053950px;}
.x30{left:449.308050px;}
.x25{left:512.877450px;}
.xc{left:527.809935px;}
.x2a{left:535.027650px;}
.xd{left:538.305285px;}
.x17{left:578.427750px;}
.x33{left:629.031150px;}
.xa{left:716.047485px;}
@media print{
.v5{vertical-align:-57.670933pt;}
.v2{vertical-align:-27.634133pt;}
.v3{vertical-align:-7.809600pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:11.237867pt;}
.v6{vertical-align:25.230933pt;}
.v1{vertical-align:30.036800pt;}
.ls9{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.003096pt;}
.ls1d{letter-spacing:0.055268pt;}
.lsf{letter-spacing:0.148463pt;}
.ls0{letter-spacing:0.149584pt;}
.ls7{letter-spacing:0.199445pt;}
.ls8{letter-spacing:0.225263pt;}
.ls17{letter-spacing:0.243933pt;}
.ls3{letter-spacing:0.262711pt;}
.ls1f{letter-spacing:0.265364pt;}
.ls1e{letter-spacing:0.265899pt;}
.ls15{letter-spacing:0.295857pt;}
.lsa{letter-spacing:0.296393pt;}
.ls2{letter-spacing:0.394012pt;}
.ls1b{letter-spacing:0.400776pt;}
.ls12{letter-spacing:0.409779pt;}
.ls4{letter-spacing:0.423816pt;}
.ls14{letter-spacing:0.438521pt;}
.ls20{letter-spacing:0.444302pt;}
.lsd{letter-spacing:0.450139pt;}
.ls16{letter-spacing:0.555057pt;}
.ls19{letter-spacing:0.606981pt;}
.ls18{letter-spacing:0.607516pt;}
.ls1{letter-spacing:0.630545pt;}
.ls1a{letter-spacing:1.005196pt;}
.ls21{letter-spacing:12.527895pt;}
.lsb{letter-spacing:13.960168pt;}
.lse{letter-spacing:14.471375pt;}
.ls6{letter-spacing:15.521078pt;}
.ls11{letter-spacing:15.637699pt;}
.ls10{letter-spacing:15.659949pt;}
.ls5{letter-spacing:16.132327pt;}
.ls13{letter-spacing:17.688567pt;}
.ls1c{letter-spacing:174.599375pt;}
.ws31{word-spacing:-184.149373pt;}
.ws7{word-spacing:-30.116232pt;}
.ws2{word-spacing:-25.080840pt;}
.ws4{word-spacing:-19.974560pt;}
.wse{word-spacing:-17.571613pt;}
.ws13{word-spacing:-15.018467pt;}
.ws39{word-spacing:-13.872255pt;}
.wsa{word-spacing:-13.816987pt;}
.ws8{word-spacing:-13.216252pt;}
.wsc{word-spacing:-12.465328pt;}
.ws18{word-spacing:-10.862216pt;}
.ws6{word-spacing:-10.663112pt;}
.ws14{word-spacing:-10.062373pt;}
.ws30{word-spacing:-9.549998pt;}
.ws2f{word-spacing:-5.911524pt;}
.ws0{word-spacing:-4.497224pt;}
.ws1a{word-spacing:-3.726740pt;}
.ws9{word-spacing:-3.645861pt;}
.ws2c{word-spacing:-3.122855pt;}
.ws11{word-spacing:-3.105545pt;}
.wsb{word-spacing:0.000000pt;}
.ws22{word-spacing:0.054937pt;}
.ws1b{word-spacing:0.111647pt;}
.ws1d{word-spacing:0.112969pt;}
.ws2e{word-spacing:0.128147pt;}
.ws1c{word-spacing:0.160089pt;}
.ws2b{word-spacing:0.232680pt;}
.ws1f{word-spacing:0.267326pt;}
.ws23{word-spacing:0.283886pt;}
.ws1e{word-spacing:0.308035pt;}
.wsf{word-spacing:0.308570pt;}
.ws21{word-spacing:0.335483pt;}
.wsd{word-spacing:0.350949pt;}
.ws2d{word-spacing:0.437624pt;}
.ws33{word-spacing:0.519848pt;}
.ws38{word-spacing:0.520383pt;}
.ws1{word-spacing:0.538089pt;}
.ws10{word-spacing:0.620895pt;}
.ws3a{word-spacing:0.685752pt;}
.ws3{word-spacing:0.737351pt;}
.ws3b{word-spacing:1.095687pt;}
.ws20{word-spacing:1.109252pt;}
.ws5{word-spacing:1.275303pt;}
.ws16{word-spacing:4.868099pt;}
.ws34{word-spacing:5.348786pt;}
.ws35{word-spacing:5.349321pt;}
.ws15{word-spacing:5.471984pt;}
.ws12{word-spacing:5.525619pt;}
.ws3c{word-spacing:6.485831pt;}
.ws36{word-spacing:19.244571pt;}
.ws37{word-spacing:19.245106pt;}
.ws19{word-spacing:20.804112pt;}
.ws24{word-spacing:25.354014pt;}
.ws25{word-spacing:28.528199pt;}
.ws2a{word-spacing:28.731473pt;}
.ws29{word-spacing:29.300712pt;}
.ws27{word-spacing:29.307910pt;}
.ws26{word-spacing:29.396502pt;}
.ws28{word-spacing:29.681237pt;}
.ws17{word-spacing:114.205114pt;}
.ws32{word-spacing:478.656337pt;}
._21{margin-left:-174.598837pt;}
._1a{margin-left:-5.400069pt;}
._17{margin-left:-3.867555pt;}
._20{margin-left:-2.068592pt;}
._2{margin-left:-0.997226pt;}
._0{width:0.997226pt;}
._1{width:2.349377pt;}
._7{width:4.101592pt;}
._f{width:5.063272pt;}
._9{width:6.083080pt;}
._a{width:7.130168pt;}
._b{width:8.276978pt;}
._c{width:9.722956pt;}
._14{width:10.615649pt;}
._8{width:11.517963pt;}
._13{width:12.455733pt;}
._e{width:13.700146pt;}
._d{width:14.887563pt;}
._4{width:16.577929pt;}
._5{width:17.772322pt;}
._1b{width:18.919810pt;}
._6{width:19.844802pt;}
._11{width:20.836506pt;}
._3{width:21.948510pt;}
._26{width:22.904383pt;}
._10{width:24.114334pt;}
._1d{width:25.114984pt;}
._1f{width:26.182039pt;}
._1c{width:27.393009pt;}
._15{width:29.301223pt;}
._16{width:31.655849pt;}
._24{width:32.772517pt;}
._12{width:35.796957pt;}
._18{width:41.628417pt;}
._19{width:53.211572pt;}
._25{width:98.180675pt;}
._27{width:110.868154pt;}
._23{width:123.111331pt;}
._22{width:426.930240pt;}
._1e{width:718.411680pt;}
.fsd{font-size:23.646096pt;}
.fsc{font-size:24.954219pt;}
.fse{font-size:34.476528pt;}
.fsf{font-size:34.842848pt;}
.fsb{font-size:39.213776pt;}
.fs5{font-size:40.249493pt;}
.fs4{font-size:42.652448pt;}
.fs0{font-size:49.861312pt;}
.fs7{font-size:52.865008pt;}
.fs9{font-size:55.267947pt;}
.fs6{font-size:60.073867pt;}
.fsa{font-size:63.489978pt;}
.fs3{font-size:64.879787pt;}
.fs8{font-size:70.286453pt;}
.fs2{font-size:79.898240pt;}
.fs1{font-size:100.323360pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.792480pt;}
.yca{bottom:1.653733pt;}
.ye2{bottom:3.153867pt;}
.yea{bottom:3.304000pt;}
.ye8{bottom:3.454133pt;}
.ye5{bottom:3.454267pt;}
.yb7{bottom:4.655733pt;}
.y62{bottom:5.727333pt;}
.yc8{bottom:7.394667pt;}
.yc0{bottom:7.549333pt;}
.y5e{bottom:8.418400pt;}
.ycd{bottom:9.161267pt;}
.y5f{bottom:12.914400pt;}
.ye1{bottom:18.923333pt;}
.ye7{bottom:19.223600pt;}
.ye4{bottom:19.223733pt;}
.yc6{bottom:20.008000pt;}
.y5d{bottom:21.786800pt;}
.y61{bottom:22.660533pt;}
.y55{bottom:24.500267pt;}
.yb6{bottom:27.183467pt;}
.ycc{bottom:31.388547pt;}
.yc1{bottom:32.544933pt;}
.y56{bottom:35.194933pt;}
.y57{bottom:45.889600pt;}
.yc2{bottom:56.051733pt;}
.y58{bottom:57.475467pt;}
.ybb{bottom:62.310667pt;}
.ybd{bottom:67.742800pt;}
.y59{bottom:68.170133pt;}
.yba{bottom:75.571600pt;}
.yc3{bottom:78.774800pt;}
.y5a{bottom:78.864800pt;}
.y3{bottom:82.601573pt;}
.y125{bottom:85.004533pt;}
.ybe{bottom:85.637200pt;}
.yb9{bottom:86.915333pt;}
.y5b{bottom:89.559467pt;}
.ybc{bottom:98.259067pt;}
.yc4{bottom:102.281600pt;}
.ya3{bottom:104.979080pt;}
.y2c{bottom:107.682413pt;}
.y84{bottom:108.132960pt;}
.ycb{bottom:110.126920pt;}
.ya2{bottom:120.748480pt;}
.y123{bottom:122.550693pt;}
.y2b{bottom:123.601987pt;}
.yc5{bottom:125.788267pt;}
.y53{bottom:126.605680pt;}
.ydf{bottom:128.708267pt;}
.ya1{bottom:136.517920pt;}
.y122{bottom:136.968453pt;}
.yf6{bottom:142.975787pt;}
.yde{bottom:144.477653pt;}
.y54{bottom:148.107733pt;}
.y121{bottom:151.386187pt;}
.ya0{bottom:152.437387pt;}
.y2a{bottom:155.140720pt;}
.yb8{bottom:160.090533pt;}
.ydd{bottom:160.397253pt;}
.yc7{bottom:164.084800pt;}
.yf5{bottom:164.902720pt;}
.y120{bottom:165.803920pt;}
.y9f{bottom:168.206853pt;}
.y29{bottom:171.060320pt;}
.ydc{bottom:176.166587pt;}
.yf4{bottom:179.320453pt;}
.y11f{bottom:180.071387pt;}
.y9e{bottom:184.126453pt;}
.y28{bottom:186.829787pt;}
.y5c{bottom:190.926267pt;}
.ydb{bottom:192.086187pt;}
.y60{bottom:195.399867pt;}
.y9d{bottom:199.895787pt;}
.yf3{bottom:201.247520pt;}
.y27{bottom:202.749253pt;}
.yc9{bottom:204.826400pt;}
.yda{bottom:207.855653pt;}
.y11e{bottom:208.906853pt;}
.yf2{bottom:215.665253pt;}
.y9c{bottom:215.815387pt;}
.y26{bottom:218.518720pt;}
.y11d{bottom:223.324587pt;}
.y9b{bottom:231.584720pt;}
.y25{bottom:234.288053pt;}
.y11c{bottom:237.742320pt;}
.yf1{bottom:245.101387pt;}
.y24{bottom:250.207653pt;}
.y11b{bottom:252.160053pt;}
.y23{bottom:265.977120pt;}
.y11a{bottom:266.427653pt;}
.y9a{bottom:268.079653pt;}
.y52{bottom:270.482587pt;}
.y83{bottom:276.490053pt;}
.y22{bottom:281.896587pt;}
.yf0{bottom:284.750187pt;}
.y51{bottom:286.402187pt;}
.ybf{bottom:286.948667pt;}
.y99{bottom:288.204453pt;}
.y82{bottom:292.259387pt;}
.y119{bottom:294.812587pt;}
.y21{bottom:297.666053pt;}
.yef{bottom:300.669653pt;}
.y50{bottom:302.171520pt;}
.y81{bottom:308.028720pt;}
.y20{bottom:313.435387pt;}
.y4f{bottom:318.091120pt;}
.y80{bottom:323.948320pt;}
.y98{bottom:325.149787pt;}
.y1f{bottom:329.354987pt;}
.y118{bottom:331.607787pt;}
.y4e{bottom:333.860587pt;}
.yee{bottom:337.164587pt;}
.yb4{bottom:339.417387pt;}
.y7f{bottom:339.717787pt;}
.y97{bottom:340.919253pt;}
.y1e{bottom:345.124453pt;}
.y117{bottom:346.025520pt;}
.y4d{bottom:349.780053pt;}
.yb3{bottom:355.186720pt;}
.y7e{bottom:355.637387pt;}
.y96{bottom:356.838853pt;}
.y1d{bottom:361.043920pt;}
.y4c{bottom:365.549520pt;}
.y116{bottom:367.802320pt;}
.y7d{bottom:371.406720pt;}
.y95{bottom:372.608187pt;}
.y1c{bottom:376.813387pt;}
.y4b{bottom:381.318853pt;}
.y7c{bottom:387.176053pt;}
.yb2{bottom:387.476453pt;}
.y94{bottom:388.377520pt;}
.y115{bottom:389.729253pt;}
.y1b{bottom:392.582720pt;}
.y4a{bottom:397.238453pt;}
.y7b{bottom:403.095653pt;}
.y114{bottom:404.146987pt;}
.y93{bottom:404.297120pt;}
.y1a{bottom:408.502320pt;}
.y49{bottom:414.059120pt;}
.y113{bottom:418.564720pt;}
.y7a{bottom:418.865120pt;}
.y92{bottom:420.066587pt;}
.y19{bottom:424.271787pt;}
.yb1{bottom:427.125253pt;}
.y48{bottom:429.828587pt;}
.y79{bottom:434.784587pt;}
.yed{bottom:435.835920pt;}
.y91{bottom:435.986187pt;}
.y112{bottom:440.491653pt;}
.yb0{bottom:443.044853pt;}
.y47{bottom:445.748187pt;}
.y78{bottom:450.554053pt;}
.y90{bottom:451.755520pt;}
.y111{bottom:454.759253pt;}
.y18{bottom:457.913120pt;}
.yaf{bottom:458.814187pt;}
.y46{bottom:461.517520pt;}
.y77{bottom:466.323387pt;}
.y8f{bottom:467.524853pt;}
.y110{bottom:469.176987pt;}
.yae{bottom:474.733787pt;}
.y45{bottom:477.437120pt;}
.y8e{bottom:483.444453pt;}
.y10f{bottom:491.103920pt;}
.y17{bottom:491.854853pt;}
.yb5{bottom:492.497067pt;}
.y44{bottom:493.206453pt;}
.yd9{bottom:494.708320pt;}
.y8d{bottom:499.213920pt;}
.y76{bottom:502.968453pt;}
.y10e{bottom:505.521653pt;}
.y16{bottom:506.572853pt;}
.y43{bottom:508.975920pt;}
.yd8{bottom:510.627920pt;}
.y8c{bottom:515.133520pt;}
.yec{bottom:519.939387pt;}
.yd7{bottom:526.397253pt;}
.y8b{bottom:530.902853pt;}
.y75{bottom:536.760053pt;}
.y15{bottom:539.313253pt;}
.y10d{bottom:541.866320pt;}
.yd6{bottom:542.166720pt;}
.y42{bottom:542.617253pt;}
.y8a{bottom:546.822453pt;}
.y14{bottom:553.730853pt;}
.yeb{bottom:554.823733pt;}
.y10c{bottom:556.133920pt;}
.yd5{bottom:558.086320pt;}
.y13{bottom:568.148587pt;}
.ye9{bottom:571.344133pt;}
.yd4{bottom:574.906987pt;}
.y89{bottom:576.859387pt;}
.y41{bottom:577.760453pt;}
.y10b{bottom:578.060853pt;}
.y12{bottom:582.566320pt;}
.ye6{bottom:587.714267pt;}
.yd3{bottom:590.826587pt;}
.y10a{bottom:592.478587pt;}
.y40{bottom:593.680053pt;}
.y11{bottom:596.984053pt;}
.yd2{bottom:606.595920pt;}
.y3f{bottom:609.449387pt;}
.y10{bottom:611.251653pt;}
.y109{bottom:614.405520pt;}
.ye3{bottom:620.003867pt;}
.yd1{bottom:622.365253pt;}
.y3e{bottom:625.368987pt;}
.yf{bottom:625.669387pt;}
.y108{bottom:628.823253pt;}
.yd0{bottom:638.284853pt;}
.ye{bottom:640.087120pt;}
.y3d{bottom:641.138453pt;}
.y137{bottom:648.347253pt;}
.y74{bottom:649.698987pt;}
.y107{bottom:650.750187pt;}
.ye0{bottom:652.293600pt;}
.yd{bottom:654.504853pt;}
.y3c{bottom:656.907787pt;}
.y136{bottom:662.764987pt;}
.y106{bottom:665.017787pt;}
.y73{bottom:665.618453pt;}
.yc{bottom:668.922587pt;}
.ycf{bottom:669.973787pt;}
.y3b{bottom:672.827387pt;}
.y135{bottom:677.032587pt;}
.y72{bottom:681.387920pt;}
.yad{bottom:682.288987pt;}
.yb{bottom:683.340187pt;}
.yce{bottom:685.743253pt;}
.y105{bottom:686.944720pt;}
.y3a{bottom:688.596720pt;}
.y134{bottom:691.450320pt;}
.y71{bottom:697.307520pt;}
.yac{bottom:698.058320pt;}
.y104{bottom:701.362453pt;}
.y88{bottom:701.512587pt;}
.y133{bottom:705.868053pt;}
.y70{bottom:713.076853pt;}
.yab{bottom:713.977920pt;}
.ya{bottom:715.179387pt;}
.y103{bottom:715.780187pt;}
.y87{bottom:717.432187pt;}
.y132{bottom:720.285787pt;}
.y39{bottom:725.241787pt;}
.y6f{bottom:728.996453pt;}
.yaa{bottom:729.747387pt;}
.y86{bottom:733.201520pt;}
.y131{bottom:734.703387pt;}
.y102{bottom:737.707120pt;}
.y6e{bottom:744.765787pt;}
.ya9{bottom:745.516720pt;}
.y85{bottom:749.121120pt;}
.y101{bottom:752.124853pt;}
.y6d{bottom:760.535253pt;}
.ya8{bottom:761.436320pt;}
.y130{bottom:763.388720pt;}
.y38{bottom:764.890587pt;}
.y100{bottom:766.392453pt;}
.y9{bottom:774.051787pt;}
.y6c{bottom:776.454720pt;}
.ya7{bottom:777.205787pt;}
.y12f{bottom:777.806453pt;}
.y37{bottom:780.810187pt;}
.yff{bottom:788.319387pt;}
.y6b{bottom:792.224187pt;}
.ya6{bottom:793.125387pt;}
.y36{bottom:796.579520pt;}
.y8{bottom:801.084987pt;}
.yfe{bottom:802.737120pt;}
.y12e{bottom:806.641920pt;}
.y6a{bottom:808.143653pt;}
.ya5{bottom:808.894720pt;}
.y35{bottom:812.348987pt;}
.y7{bottom:815.803120pt;}
.y12d{bottom:821.059653pt;}
.y69{bottom:823.913120pt;}
.ya4{bottom:824.664053pt;}
.y34{bottom:828.268453pt;}
.y12c{bottom:835.327120pt;}
.yfd{bottom:839.081787pt;}
.y68{bottom:839.682587pt;}
.y6{bottom:839.982853pt;}
.y33{bottom:844.037920pt;}
.y12b{bottom:849.744987pt;}
.yfc{bottom:853.349387pt;}
.y67{bottom:855.602187pt;}
.y32{bottom:859.957387pt;}
.y12a{bottom:864.162720pt;}
.y5{bottom:869.268987pt;}
.y66{bottom:871.371520pt;}
.yfb{bottom:875.276320pt;}
.y31{bottom:875.726853pt;}
.y129{bottom:878.580453pt;}
.y65{bottom:887.291120pt;}
.yfa{bottom:889.694053pt;}
.y30{bottom:891.496320pt;}
.y128{bottom:892.998187pt;}
.y64{bottom:903.060453pt;}
.yf9{bottom:904.111787pt;}
.y2f{bottom:907.415920pt;}
.y4{bottom:918.679653pt;}
.y127{bottom:921.683387pt;}
.y2e{bottom:923.185253pt;}
.yf8{bottom:926.038720pt;}
.y63{bottom:935.350187pt;}
.y126{bottom:936.101120pt;}
.y2d{bottom:939.104853pt;}
.yf7{bottom:940.456453pt;}
.y124{bottom:958.028053pt;}
.y2{bottom:963.735120pt;}
.h1c{height:15.769333pt;}
.h1d{height:15.878027pt;}
.h12{height:16.616173pt;}
.h11{height:23.207350pt;}
.h17{height:31.685747pt;}
.h1a{height:31.688933pt;}
.h19{height:31.689067pt;}
.he{height:32.113960pt;}
.h13{height:35.957941pt;}
.h5{height:39.502677pt;}
.hd{height:40.898743pt;}
.hb{height:42.316318pt;}
.hf{height:47.158000pt;}
.h7{height:48.911805pt;}
.h2{height:48.936151pt;}
.h1e{height:50.250853pt;}
.ha{height:54.242467pt;}
.h18{height:55.699728pt;}
.h6{height:58.959215pt;}
.h1b{height:59.427283pt;}
.h8{height:63.644283pt;}
.h3{height:66.865911pt;}
.h9{height:70.835566pt;}
.h15{height:71.417613pt;}
.h4{height:71.897845pt;}
.hc{height:105.289053pt;}
.h14{height:147.468533pt;}
.h10{height:154.338667pt;}
.h16{height:211.760400pt;}
.h1{height:1053.695600pt;}
.h0{height:1056.000000pt;}
.wa{width:16.647707pt;}
.w9{width:74.114307pt;}
.w3{width:75.234827pt;}
.w4{width:82.598240pt;}
.w7{width:99.245947pt;}
.wc{width:119.021467pt;}
.wf{width:121.704400pt;}
.wd{width:144.300400pt;}
.we{width:159.126400pt;}
.w6{width:240.751467pt;}
.w8{width:293.736000pt;}
.w2{width:410.750133pt;}
.wb{width:543.915853pt;}
.w5{width:545.151600pt;}
.w1{width:746.480000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:1.789867pt;}
.x21{left:4.962293pt;}
.x22{left:7.043320pt;}
.x15{left:9.840933pt;}
.x18{left:11.700400pt;}
.x31{left:13.170800pt;}
.x37{left:16.977467pt;}
.x34{left:18.783200pt;}
.x27{left:20.463867pt;}
.x28{left:22.037867pt;}
.x36{left:29.341600pt;}
.x32{left:30.474800pt;}
.x1{left:34.576013pt;}
.x1e{left:35.811733pt;}
.x2c{left:41.347187pt;}
.x38{left:42.733467pt;}
.x35{left:46.194267pt;}
.x3b{left:57.303333pt;}
.x29{left:59.817067pt;}
.x39{left:68.614267pt;}
.x3a{left:76.067200pt;}
.x24{left:87.720653pt;}
.x12{left:90.342533pt;}
.x11{left:95.710000pt;}
.x10{left:101.077333pt;}
.x2d{left:103.491053pt;}
.x3{left:106.682920pt;}
.x4{left:110.294253pt;}
.x16{left:115.390533pt;}
.x20{left:127.899213pt;}
.x9{left:131.660920pt;}
.x6{left:133.165587pt;}
.x2e{left:134.788800pt;}
.xe{left:138.582520pt;}
.x2{left:141.892920pt;}
.x1d{left:143.967467pt;}
.x5{left:150.770520pt;}
.x3c{left:151.823853pt;}
.x1f{left:172.137333pt;}
.xf{left:195.770667pt;}
.x13{left:206.495600pt;}
.xb{left:222.243720pt;}
.x23{left:227.305187pt;}
.x2f{left:254.412133pt;}
.x1b{left:260.011587pt;}
.x1a{left:264.826653pt;}
.x7{left:280.625853pt;}
.x1c{left:289.804520pt;}
.x19{left:302.143053pt;}
.x8{left:306.356253pt;}
.x26{left:368.490533pt;}
.x2b{left:372.492400pt;}
.x30{left:399.384933pt;}
.x25{left:455.891067pt;}
.xc{left:469.164387pt;}
.x2a{left:475.580133pt;}
.xd{left:478.493587pt;}
.x17{left:514.158000pt;}
.x33{left:559.138800pt;}
.xa{left:636.486653pt;}
}




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