
    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_f959b889267bbd4eb5cb839c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.943848;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_ec4faf28626c05cd1a8d3950.woff')format("woff");}.ff2{font-family:ff2;line-height:0.968000;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_0e8634ebd9d80ab857290e1c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.957000;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_03c0d3c9a0afa896d1fdd566.woff')format("woff");}.ff4{font-family:ff4;line-height:0.980000;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_cdd5282be29eaf9ae651ff94.woff')format("woff");}.ff5{font-family:ff5;line-height:0.936523;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_d444408cea76b067a77ea467.woff')format("woff");}.ff6{font-family:ff6;line-height:0.932129;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_42e8bd548dada8851d44ee47.woff')format("woff");}.ff7{font-family:ff7;line-height:0.907227;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_70983875726247e0e0b7f153.woff')format("woff");}.ff8{font-family:ff8;line-height:0.919922;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_182460caa1290faffa396f84.woff')format("woff");}.ff9{font-family:ff9;line-height:0.924805;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_6756d2b049333fc8b4a80208.woff')format("woff");}.ffa{font-family:ffa;line-height:1.019000;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);}
.v1{vertical-align:-18.612060px;}
.v3{vertical-align:-16.919940px;}
.v5{vertical-align:-13.535880px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:33.600060px;}
.v6{vertical-align:35.700060px;}
.v2{vertical-align:46.200000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000180px;}
.ls2{letter-spacing:0.000360px;}
.ls15{letter-spacing:0.000600px;}
.lsb{letter-spacing:0.000840px;}
.lsd{letter-spacing:0.001020px;}
.ls14{letter-spacing:0.012960px;}
.ls11{letter-spacing:0.015360px;}
.lse{letter-spacing:0.019860px;}
.ls9{letter-spacing:0.036840px;}
.lsa{letter-spacing:0.036960px;}
.ls16{letter-spacing:0.049320px;}
.lsf{letter-spacing:0.099360px;}
.ls12{letter-spacing:26.701140px;}
.ls19{letter-spacing:26.750640px;}
.ls5{letter-spacing:30.095280px;}
.ls4{letter-spacing:30.095460px;}
.ls7{letter-spacing:33.375840px;}
.ls8{letter-spacing:33.375960px;}
.ls0{letter-spacing:35.999100px;}
.ls6{letter-spacing:36.687120px;}
.lsc{letter-spacing:57.600000px;}
.ls13{letter-spacing:61.800000px;}
.ls18{letter-spacing:66.000000px;}
.ls17{letter-spacing:72.300000px;}
.ls10{letter-spacing:74.400000px;}
.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;}
}
.ws4e{word-spacing:-120.915514px;}
.ws6d{word-spacing:-120.914381px;}
.ws41{word-spacing:-120.914117px;}
.ws3d{word-spacing:-120.912549px;}
.ws56{word-spacing:-120.911282px;}
.ws1{word-spacing:-116.969783px;}
.ws3{word-spacing:-116.967911px;}
.ws2{word-spacing:-116.966041px;}
.ws21{word-spacing:-98.928680px;}
.ws60{word-spacing:-98.927490px;}
.ws8{word-spacing:-87.984000px;}
.wsd{word-spacing:-87.935848px;}
.ws80{word-spacing:-84.000000px;}
.ws3a{word-spacing:-83.952000px;}
.ws93{word-spacing:-77.978211px;}
.ws88{word-spacing:-77.976680px;}
.ws57{word-spacing:-76.956000px;}
.ws7e{word-spacing:-73.393040px;}
.ws6e{word-spacing:-69.960000px;}
.ws4{word-spacing:-69.319080px;}
.ws69{word-spacing:-67.932000px;}
.ws2b{word-spacing:-66.720000px;}
.ws9{word-spacing:-65.971976px;}
.ws5{word-spacing:-65.952170px;}
.ws86{word-spacing:-63.001134px;}
.ws83{word-spacing:-63.000963px;}
.ws8b{word-spacing:-63.000548px;}
.ws8d{word-spacing:-62.988170px;}
.ws85{word-spacing:-62.988000px;}
.ws92{word-spacing:-62.987754px;}
.ws18{word-spacing:-62.964000px;}
.ws81{word-spacing:-62.930534px;}
.ws1e{word-spacing:-60.048000px;}
.ws63{word-spacing:-59.466000px;}
.ws64{word-spacing:-56.712000px;}
.ws46{word-spacing:-55.968000px;}
.ws87{word-spacing:-55.944000px;}
.ws54{word-spacing:-55.897455px;}
.ws4c{word-spacing:-53.376000px;}
.ws5b{word-spacing:-51.238696px;}
.ws5c{word-spacing:-51.216945px;}
.ws25{word-spacing:-48.372000px;}
.ws75{word-spacing:-46.482161px;}
.ws6{word-spacing:-45.793077px;}
.ws7{word-spacing:-45.792907px;}
.ws53{word-spacing:-43.943528px;}
.ws52{word-spacing:-43.922722px;}
.ws39{word-spacing:-43.833362px;}
.ws3b{word-spacing:-43.802362px;}
.ws5a{word-spacing:-41.832567px;}
.ws15{word-spacing:-40.263004px;}
.ws17{word-spacing:-40.262834px;}
.ws10{word-spacing:-40.202782px;}
.ws12{word-spacing:-40.173544px;}
.ws59{word-spacing:-40.152151px;}
.ws55{word-spacing:-40.057455px;}
.ws38{word-spacing:-40.055528px;}
.ws50{word-spacing:-40.055357px;}
.ws37{word-spacing:-40.034892px;}
.ws51{word-spacing:-40.034722px;}
.ws4f{word-spacing:-39.936925px;}
.ws6b{word-spacing:-39.593840px;}
.ws6c{word-spacing:-39.578608px;}
.ws3e{word-spacing:-38.388586px;}
.ws3f{word-spacing:-38.367458px;}
.ws40{word-spacing:-38.365096px;}
.wse{word-spacing:-36.718866px;}
.ws23{word-spacing:-36.718696px;}
.ws24{word-spacing:-36.718432px;}
.ws13{word-spacing:-36.699004px;}
.wsf{word-spacing:-36.698834px;}
.ws11{word-spacing:-36.659280px;}
.ws36{word-spacing:-36.620315px;}
.ws16{word-spacing:-36.609544px;}
.ws28{word-spacing:-36.603118px;}
.ws35{word-spacing:-36.602268px;}
.ws14{word-spacing:-36.598920px;}
.ws27{word-spacing:-36.521310px;}
.ws82{word-spacing:-34.945778px;}
.ws84{word-spacing:-34.945560px;}
.ws91{word-spacing:-34.945406px;}
.ws7f{word-spacing:-34.945134px;}
.ws8c{word-spacing:-34.945109px;}
.ws90{word-spacing:-34.944963px;}
.ws8e{word-spacing:-34.931754px;}
.ws8f{word-spacing:-34.931584px;}
.ws89{word-spacing:-34.874098px;}
.ws31{word-spacing:-33.381298px;}
.ws2c{word-spacing:-33.381127px;}
.ws2d{word-spacing:-33.380447px;}
.ws32{word-spacing:-33.380315px;}
.ws30{word-spacing:-33.380144px;}
.ws2f{word-spacing:-33.363118px;}
.ws2a{word-spacing:-33.362948px;}
.ws34{word-spacing:-33.361285px;}
.ws3c{word-spacing:-33.307140px;}
.ws2e{word-spacing:-33.298734px;}
.ws33{word-spacing:-33.282161px;}
.ws29{word-spacing:-33.262110px;}
.wsc{word-spacing:-32.942211px;}
.wsa{word-spacing:-32.868737px;}
.ws1c{word-spacing:-32.868567px;}
.ws74{word-spacing:-31.127565px;}
.ws6a{word-spacing:-31.112777px;}
.ws72{word-spacing:-31.111483px;}
.ws66{word-spacing:-31.026964px;}
.ws58{word-spacing:-30.042709px;}
.ws19{word-spacing:-30.042538px;}
.ws1b{word-spacing:-30.042198px;}
.ws1f{word-spacing:-30.042028px;}
.ws20{word-spacing:-30.026211px;}
.ws1a{word-spacing:-30.026041px;}
.ws8a{word-spacing:-30.024170px;}
.ws1d{word-spacing:-29.952737px;}
.ws79{word-spacing:-29.296290px;}
.ws7c{word-spacing:-29.295912px;}
.ws48{word-spacing:-29.282324px;}
.ws78{word-spacing:-29.282287px;}
.ws42{word-spacing:-29.282154px;}
.ws77{word-spacing:-29.217563px;}
.ws76{word-spacing:-29.217354px;}
.ws7d{word-spacing:-29.216686px;}
.ws4b{word-spacing:-29.216674px;}
.ws70{word-spacing:-28.374028px;}
.ws67{word-spacing:-28.373840px;}
.ws73{word-spacing:-28.373669px;}
.ws71{word-spacing:-28.372734px;}
.ws65{word-spacing:-28.358777px;}
.ws61{word-spacing:-28.358608px;}
.ws6f{word-spacing:-28.288960px;}
.ws68{word-spacing:-28.280870px;}
.ws44{word-spacing:-26.704970px;}
.ws7b{word-spacing:-26.704800px;}
.ws47{word-spacing:-26.690324px;}
.ws45{word-spacing:-26.690154px;}
.ws7a{word-spacing:-26.661300px;}
.ws43{word-spacing:-26.631708px;}
.ws4d{word-spacing:-26.625354px;}
.ws49{word-spacing:-26.610217px;}
.ws5d{word-spacing:-25.546304px;}
.ws5f{word-spacing:-23.367401px;}
.ws5e{word-spacing:-23.354268px;}
.ws22{word-spacing:-21.971849px;}
.ws26{word-spacing:-21.912378px;}
.ws0{word-spacing:-20.017361px;}
.ws4a{word-spacing:-8.286120px;}
.ws62{word-spacing:-8.284020px;}
.wsb{word-spacing:0.000000px;}
._1{width:1.077450px;}
._f{width:22.001342px;}
._d{width:27.783190px;}
._c{width:29.372452px;}
._4{width:37.724250px;}
._7{width:39.345090px;}
._a{width:41.057682px;}
._e{width:54.051279px;}
._9{width:57.600000px;}
._6{width:59.700001px;}
._2{width:61.800000px;}
._5{width:66.000000px;}
._3{width:70.200000px;}
._b{width:72.300000px;}
._8{width:74.400000px;}
._0{width:1924.301504px;}
.fc2{color:rgb(217,217,217);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:63.000000px;}
.fs10{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fse{font-size:84.000000px;}
.fs7{font-size:87.000000px;}
.fsc{font-size:96.000000px;}
.fsf{font-size:102.000000px;}
.fs4{font-size:108.000000px;}
.fs9{font-size:120.000000px;}
.fs5{font-size:132.000000px;}
.fsb{font-size:138.000000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:192.000000px;}
.fs6{font-size:216.000000px;}
.fs8{font-size:264.000000px;}
.fs1{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:6.634380px;}
.y3e{bottom:6.634395px;}
.y4f{bottom:6.634425px;}
.y4a{bottom:7.293600px;}
.y4c{bottom:7.293615px;}
.ya7{bottom:19.402710px;}
.y1{bottom:26.930655px;}
.yb{bottom:39.093945px;}
.y42{bottom:42.634395px;}
.y52{bottom:42.634410px;}
.y46{bottom:43.293585px;}
.y49{bottom:43.293615px;}
.ya6{bottom:44.602725px;}
.y7d{bottom:52.060995px;}
.yf8{bottom:55.851090px;}
.ye4{bottom:55.851210px;}
.y101{bottom:56.101830px;}
.y3a{bottom:63.401100px;}
.y102{bottom:63.925320px;}
.y1a{bottom:68.975850px;}
.y7c{bottom:76.755150px;}
.yf7{bottom:79.755060px;}
.ye3{bottom:79.755180px;}
.y18{bottom:81.549885px;}
.y9{bottom:84.174690px;}
.y2a{bottom:84.323655px;}
.y6a{bottom:86.952585px;}
.yc2{bottom:87.829680px;}
.y97{bottom:90.101010px;}
.ya5{bottom:90.101100px;}
.yb3{bottom:90.235995px;}
.y2c{bottom:93.462060px;}
.y53{bottom:94.453860px;}
.y3b{bottom:96.128640px;}
.y39{bottom:98.249085px;}
.yf6{bottom:103.659075px;}
.ye2{bottom:103.659195px;}
.yd0{bottom:106.609455px;}
.y7b{bottom:109.023165px;}
.yc1{bottom:115.063665px;}
.y88{bottom:116.756355px;}
.y17{bottom:118.377885px;}
.yff{bottom:119.314440px;}
.y29{bottom:120.983655px;}
.y69{bottom:123.798615px;}
.y96{bottom:124.949040px;}
.ya4{bottom:124.949130px;}
.yb2{bottom:125.084025px;}
.y38{bottom:133.097070px;}
.y7a{bottom:133.791135px;}
.yf5{bottom:135.063090px;}
.ye1{bottom:135.063210px;}
.y51{bottom:136.933665px;}
.y5e{bottom:144.867675px;}
.y28{bottom:150.143655px;}
.ycf{bottom:151.934295px;}
.y50{bottom:154.933695px;}
.y16{bottom:155.205885px;}
.y87{bottom:155.636355px;}
.yc0{bottom:157.297665px;}
.y68{bottom:160.644600px;}
.y79{bottom:166.059150px;}
.y95{bottom:173.470125px;}
.ya3{bottom:173.470215px;}
.yb1{bottom:173.590140px;}
.yf4{bottom:173.967075px;}
.ye0{bottom:173.967195px;}
.y5d{bottom:177.267675px;}
.yce{bottom:178.556295px;}
.y37{bottom:182.945115px;}
.ybf{bottom:184.531695px;}
.y27{bottom:186.803655px;}
.y8{bottom:191.934705px;}
.y15{bottom:192.033885px;}
.yf3{bottom:205.371090px;}
.ydf{bottom:205.371210px;}
.y78{bottom:205.827135px;}
.y94{bottom:209.482125px;}
.ya2{bottom:209.482215px;}
.yb0{bottom:209.587140px;}
.y67{bottom:212.490600px;}
.ycd{bottom:212.678295px;}
.y4e{bottom:215.413485px;}
.y5c{bottom:217.167675px;}
.y36{bottom:217.793100px;}
.y26{bottom:223.463655px;}
.ybe{bottom:226.765695px;}
.yf2{bottom:229.275060px;}
.yde{bottom:229.275180px;}
.y7{bottom:230.814705px;}
.y77{bottom:238.622535px;}
.y93{bottom:246.820995px;}
.ya1{bottom:246.821085px;}
.yaf{bottom:246.911010px;}
.ycc{bottom:247.795470px;}
.y14{bottom:249.846930px;}
.y25{bottom:252.623655px;}
.y35{bottom:252.641085px;}
.ybd{bottom:253.999680px;}
.y86{bottom:255.896325px;}
.y4d{bottom:256.263930px;}
.y66{bottom:256.836585px;}
.y5b{bottom:257.726910px;}
.yf1{bottom:260.679075px;}
.ydd{bottom:260.679195px;}
.y110{bottom:266.606310px;}
.y6{bottom:269.694705px;}
.y76{bottom:270.816690px;}
.y24{bottom:281.783655px;}
.y13{bottom:286.674930px;}
.y34{bottom:287.489115px;}
.ybc{bottom:288.733665px;}
.y10f{bottom:290.042310px;}
.ycb{bottom:293.120310px;}
.y85{bottom:294.776325px;}
.y92{bottom:295.342125px;}
.ya0{bottom:295.342215px;}
.yae{bottom:295.417125px;}
.y48{bottom:298.773630px;}
.y47{bottom:299.103240px;}
.y5a{bottom:299.216340px;}
.yf0{bottom:299.583060px;}
.ydc{bottom:299.583180px;}
.y65{bottom:301.182615px;}
.y75{bottom:303.084705px;}
.y10e{bottom:313.478310px;}
.y4b{bottom:316.773615px;}
.yef{bottom:323.487075px;}
.ydb{bottom:323.487195px;}
.y12{bottom:323.502930px;}
.y91{bottom:323.854125px;}
.y9f{bottom:323.854215px;}
.yad{bottom:323.929125px;}
.yca{bottom:327.242310px;}
.ybb{bottom:330.967710px;}
.y84{bottom:333.656325px;}
.y5{bottom:334.520955px;}
.y33{bottom:337.337115px;}
.y64{bottom:338.028600px;}
.y74{bottom:342.852690px;}
.y59{bottom:351.769440px;}
.yc9{bottom:353.864310px;}
.yee{bottom:354.891090px;}
.yda{bottom:354.891210px;}
.y10d{bottom:357.899310px;}
.y11{bottom:360.330930px;}
.y90{bottom:361.192995px;}
.y9e{bottom:361.193085px;}
.yac{bottom:361.253025px;}
.y23{bottom:362.603670px;}
.yba{bottom:365.701695px;}
.y73{bottom:367.620705px;}
.y32{bottom:372.185100px;}
.yed{bottom:378.795060px;}
.yd9{bottom:378.795180px;}
.y45{bottom:379.800795px;}
.y83{bottom:380.036325px;}
.y10c{bottom:381.335310px;}
.y63{bottom:382.374585px;}
.yc8{bottom:388.981440px;}
.y58{bottom:391.669440px;}
.y22{bottom:391.763670px;}
.y44{bottom:398.130390px;}
.y72{bottom:399.888720px;}
.y31{bottom:407.033085px;}
.yb9{bottom:407.935695px;}
.y8f{bottom:409.714125px;}
.y9d{bottom:409.714215px;}
.yab{bottom:409.759140px;}
.yec{bottom:410.199075px;}
.yd8{bottom:410.199195px;}
.y105{bottom:414.221310px;}
.y10{bottom:418.143930px;}
.y57{bottom:424.069440px;}
.y71{bottom:424.656690px;}
.y10b{bottom:425.756310px;}
.y82{bottom:426.416325px;}
.y21{bottom:428.423670px;}
.y62{bottom:434.220585px;}
.yc7{bottom:434.306280px;}
.yb8{bottom:435.169680px;}
.y104{bottom:437.657310px;}
.y30{bottom:441.881115px;}
.y4{bottom:443.096970px;}
.y8e{bottom:447.052995px;}
.y9c{bottom:447.053085px;}
.yaa{bottom:447.083010px;}
.yeb{bottom:449.103060px;}
.yd7{bottom:449.103180px;}
.y10a{bottom:449.192310px;}
.yf{bottom:454.971930px;}
.y70{bottom:456.924705px;}
.y20{bottom:457.583670px;}
.y41{bottom:460.798080px;}
.yb7{bottom:462.403710px;}
.y56{bottom:465.296310px;}
.yc6{bottom:468.428280px;}
.y61{bottom:471.066615px;}
.y81{bottom:472.796325px;}
.y40{bottom:478.798095px;}
.yfe{bottom:478.928325px;}
.yea{bottom:480.507075px;}
.yd6{bottom:480.507195px;}
.y1f{bottom:486.743670px;}
.y2f{bottom:491.729115px;}
.y109{bottom:493.613310px;}
.y8d{bottom:495.574125px;}
.y9b{bottom:495.574215px;}
.ya9{bottom:495.589125px;}
.y6f{bottom:496.692690px;}
.yb6{bottom:497.137695px;}
.yfd{bottom:502.364325px;}
.yc5{bottom:502.550280px;}
.y80{bottom:511.676325px;}
.ye9{bottom:511.911045px;}
.yd5{bottom:511.911165px;}
.ye{bottom:512.784930px;}
.y108{bottom:517.049310px;}
.y55{bottom:519.176325px;}
.y6e{bottom:521.460705px;}
.y60{bottom:522.912615px;}
.y1e{bottom:523.403670px;}
.y8c{bottom:524.086125px;}
.y9a{bottom:524.086215px;}
.ya8{bottom:524.101125px;}
.y2e{bottom:526.577100px;}
.y3{bottom:528.632970px;}
.yc4{bottom:529.172280px;}
.ye8{bottom:535.815060px;}
.yd4{bottom:535.815180px;}
.yb5{bottom:539.371695px;}
.y3f{bottom:540.751020px;}
.yfc{bottom:543.635295px;}
.yd{bottom:549.612930px;}
.y1d{bottom:552.563670px;}
.y6d{bottom:553.728720px;}
.y54{bottom:558.056325px;}
.ye7{bottom:559.719075px;}
.yd3{bottom:559.719195px;}
.y5f{bottom:559.758600px;}
.y8b{bottom:561.424995px;}
.y2d{bottom:561.425085px;}
.y107{bottom:561.470310px;}
.yc3{bottom:564.289455px;}
.yb4{bottom:567.166050px;}
.y6c{bottom:578.496690px;}
.y1c{bottom:581.723670px;}
.yfb{bottom:584.906310px;}
.y3d{bottom:587.172870px;}
.ye6{bottom:591.123045px;}
.yd2{bottom:591.123165px;}
.yfa{bottom:608.342310px;}
.y6b{bottom:610.764705px;}
.y2{bottom:614.168970px;}
.ye5{bottom:622.527060px;}
.yd1{bottom:622.527180px;}
.y7f{bottom:631.713765px;}
.y8a{bottom:631.713945px;}
.y99{bottom:631.714110px;}
.y3c{bottom:667.353765px;}
.yf9{bottom:667.549440px;}
.y2b{bottom:671.215575px;}
.y1b{bottom:673.146525px;}
.yc{bottom:673.146705px;}
.y19{bottom:673.146825px;}
.y100{bottom:696.731760px;}
.y106{bottom:696.901845px;}
.y7e{bottom:702.993765px;}
.y89{bottom:702.993945px;}
.y98{bottom:702.994110px;}
.y111{bottom:767.347785px;}
.y103{bottom:777.722580px;}
.ya{bottom:778.170990px;}
.hf{height:37.125000px;}
.h15{height:37.784220px;}
.hc{height:52.171875px;}
.h1{height:53.015625px;}
.h21{height:59.144531px;}
.h1c{height:61.851562px;}
.h19{height:70.687500px;}
.h14{height:73.124970px;}
.h12{height:73.125000px;}
.h16{height:73.125015px;}
.h13{height:73.784190px;}
.h1f{height:73.910156px;}
.h1e{height:75.105469px;}
.h6{height:78.257812px;}
.ha{height:79.523438px;}
.h1a{height:79.988732px;}
.h1d{height:84.297716px;}
.h22{height:86.400000px;}
.h10{height:86.953125px;}
.h11{height:88.359375px;}
.h9{height:95.648438px;}
.h8{height:97.195312px;}
.h18{height:101.613281px;}
.h1b{height:104.343750px;}
.h17{height:106.031250px;}
.h5{height:108.000000px;}
.hd{height:110.260547px;}
.h4{height:111.456000px;}
.h3{height:144.000000px;}
.h7{height:148.608000px;}
.hb{height:167.184000px;}
.h20{height:194.390625px;}
.he{height:204.336000px;}
.h2{height:243.000000px;}
.h0{height:810.000000px;}
.w3{width:234.801360px;}
.w1{width:423.303915px;}
.w2{width:542.358060px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2f{left:1.687515px;}
.x1a{left:3.920610px;}
.x2a{left:11.314695px;}
.x18{left:18.338265px;}
.x30{left:19.791630px;}
.x1f{left:22.410030px;}
.x23{left:24.296970px;}
.x2e{left:26.522250px;}
.x26{left:33.194475px;}
.x2c{left:34.886430px;}
.x28{left:37.387935px;}
.x20{left:42.434160px;}
.x22{left:46.524570px;}
.x27{left:52.361790px;}
.x1e{left:66.541440px;}
.x2b{left:69.064755px;}
.x31{left:74.474325px;}
.x3d{left:75.982635px;}
.x1c{left:81.541410px;}
.x1b{left:92.276310px;}
.x38{left:97.197870px;}
.xc{left:98.999730px;}
.x2{left:101.251440px;}
.x3e{left:102.982635px;}
.x2d{left:108.278535px;}
.xf{left:109.799610px;}
.x39{left:113.184165px;}
.x1d{left:115.305735px;}
.x37{left:123.405390px;}
.xd{left:125.999730px;}
.x10{left:136.799610px;}
.xb{left:138.383370px;}
.x29{left:145.819335px;}
.x3{left:146.931450px;}
.x36{left:156.340755px;}
.x24{left:158.302650px;}
.x11{left:163.799610px;}
.x4{left:170.784945px;}
.x12{left:190.799595px;}
.x21{left:193.637955px;}
.x6{left:202.706475px;}
.x13{left:207.967305px;}
.x25{left:217.829700px;}
.x34{left:228.717465px;}
.x32{left:237.018960px;}
.x3b{left:244.799640px;}
.x7{left:250.765080px;}
.x9{left:255.392460px;}
.x8{left:265.362045px;}
.x17{left:327.077670px;}
.x35{left:376.987485px;}
.x5{left:466.230930px;}
.x33{left:532.680915px;}
.x16{left:550.567290px;}
.x3a{left:581.256510px;}
.x40{left:608.683320px;}
.x3f{left:614.352600px;}
.x42{left:724.960635px;}
.x19{left:750.381585px;}
.x3c{left:902.506290px;}
.x1{left:974.910090px;}
.x44{left:976.677120px;}
.x43{left:1051.681890px;}
.x14{left:1066.263885px;}
.xa{left:1121.810880px;}
.x15{left:1156.746720px;}
.xe{left:1232.850570px;}
.x41{left:1272.614175px;}
@media print{
.v1{vertical-align:-16.544053pt;}
.v3{vertical-align:-15.039947pt;}
.v5{vertical-align:-12.031893pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:29.866720pt;}
.v6{vertical-align:31.733387pt;}
.v2{vertical-align:41.066667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000160pt;}
.ls2{letter-spacing:0.000320pt;}
.ls15{letter-spacing:0.000533pt;}
.lsb{letter-spacing:0.000747pt;}
.lsd{letter-spacing:0.000907pt;}
.ls14{letter-spacing:0.011520pt;}
.ls11{letter-spacing:0.013653pt;}
.lse{letter-spacing:0.017653pt;}
.ls9{letter-spacing:0.032747pt;}
.lsa{letter-spacing:0.032853pt;}
.ls16{letter-spacing:0.043840pt;}
.lsf{letter-spacing:0.088320pt;}
.ls12{letter-spacing:23.734347pt;}
.ls19{letter-spacing:23.778347pt;}
.ls5{letter-spacing:26.751360pt;}
.ls4{letter-spacing:26.751520pt;}
.ls7{letter-spacing:29.667413pt;}
.ls8{letter-spacing:29.667520pt;}
.ls0{letter-spacing:31.999200pt;}
.ls6{letter-spacing:32.610773pt;}
.lsc{letter-spacing:51.200000pt;}
.ls13{letter-spacing:54.933333pt;}
.ls18{letter-spacing:58.666667pt;}
.ls17{letter-spacing:64.266667pt;}
.ls10{letter-spacing:66.133333pt;}
.ws4e{word-spacing:-107.480457pt;}
.ws6d{word-spacing:-107.479450pt;}
.ws41{word-spacing:-107.479215pt;}
.ws3d{word-spacing:-107.477821pt;}
.ws56{word-spacing:-107.476695pt;}
.ws1{word-spacing:-103.973141pt;}
.ws3{word-spacing:-103.971476pt;}
.ws2{word-spacing:-103.969814pt;}
.ws21{word-spacing:-87.936605pt;}
.ws60{word-spacing:-87.935547pt;}
.ws8{word-spacing:-78.208000pt;}
.wsd{word-spacing:-78.165199pt;}
.ws80{word-spacing:-74.666667pt;}
.ws3a{word-spacing:-74.624000pt;}
.ws93{word-spacing:-69.313965pt;}
.ws88{word-spacing:-69.312605pt;}
.ws57{word-spacing:-68.405333pt;}
.ws7e{word-spacing:-65.238258pt;}
.ws6e{word-spacing:-62.186667pt;}
.ws4{word-spacing:-61.616960pt;}
.ws69{word-spacing:-60.384000pt;}
.ws2b{word-spacing:-59.306667pt;}
.ws9{word-spacing:-58.641756pt;}
.ws5{word-spacing:-58.624151pt;}
.ws86{word-spacing:-56.001008pt;}
.ws83{word-spacing:-56.000856pt;}
.ws8b{word-spacing:-56.000487pt;}
.ws8d{word-spacing:-55.989485pt;}
.ws85{word-spacing:-55.989333pt;}
.ws92{word-spacing:-55.989115pt;}
.ws18{word-spacing:-55.968000pt;}
.ws81{word-spacing:-55.938253pt;}
.ws1e{word-spacing:-53.376000pt;}
.ws63{word-spacing:-52.858667pt;}
.ws64{word-spacing:-50.410667pt;}
.ws46{word-spacing:-49.749333pt;}
.ws87{word-spacing:-49.728000pt;}
.ws54{word-spacing:-49.686627pt;}
.ws4c{word-spacing:-47.445333pt;}
.ws5b{word-spacing:-45.545508pt;}
.ws5c{word-spacing:-45.526173pt;}
.ws25{word-spacing:-42.997333pt;}
.ws75{word-spacing:-41.317476pt;}
.ws6{word-spacing:-40.704957pt;}
.ws7{word-spacing:-40.704806pt;}
.ws53{word-spacing:-39.060914pt;}
.ws52{word-spacing:-39.042419pt;}
.ws39{word-spacing:-38.962988pt;}
.ws3b{word-spacing:-38.935433pt;}
.ws5a{word-spacing:-37.184504pt;}
.ws15{word-spacing:-35.789337pt;}
.ws17{word-spacing:-35.789186pt;}
.ws10{word-spacing:-35.735806pt;}
.ws12{word-spacing:-35.709817pt;}
.ws59{word-spacing:-35.690801pt;}
.ws55{word-spacing:-35.606627pt;}
.ws38{word-spacing:-35.604914pt;}
.ws50{word-spacing:-35.604762pt;}
.ws37{word-spacing:-35.586570pt;}
.ws51{word-spacing:-35.586419pt;}
.ws4f{word-spacing:-35.499489pt;}
.ws6b{word-spacing:-35.194524pt;}
.ws6c{word-spacing:-35.180985pt;}
.ws3e{word-spacing:-34.123188pt;}
.ws3f{word-spacing:-34.104407pt;}
.ws40{word-spacing:-34.102307pt;}
.wse{word-spacing:-32.638992pt;}
.ws23{word-spacing:-32.638841pt;}
.ws24{word-spacing:-32.638606pt;}
.ws13{word-spacing:-32.621337pt;}
.wsf{word-spacing:-32.621186pt;}
.ws11{word-spacing:-32.586027pt;}
.ws36{word-spacing:-32.551391pt;}
.ws16{word-spacing:-32.541817pt;}
.ws28{word-spacing:-32.536105pt;}
.ws35{word-spacing:-32.535349pt;}
.ws14{word-spacing:-32.532373pt;}
.ws27{word-spacing:-32.463387pt;}
.ws82{word-spacing:-31.062914pt;}
.ws84{word-spacing:-31.062720pt;}
.ws91{word-spacing:-31.062583pt;}
.ws7f{word-spacing:-31.062341pt;}
.ws8c{word-spacing:-31.062319pt;}
.ws90{word-spacing:-31.062190pt;}
.ws8e{word-spacing:-31.050448pt;}
.ws8f{word-spacing:-31.050297pt;}
.ws89{word-spacing:-30.999198pt;}
.ws31{word-spacing:-29.672265pt;}
.ws2c{word-spacing:-29.672113pt;}
.ws2d{word-spacing:-29.671508pt;}
.ws32{word-spacing:-29.671391pt;}
.ws30{word-spacing:-29.671239pt;}
.ws2f{word-spacing:-29.656105pt;}
.ws2a{word-spacing:-29.655954pt;}
.ws34{word-spacing:-29.654476pt;}
.ws3c{word-spacing:-29.606347pt;}
.ws2e{word-spacing:-29.598875pt;}
.ws33{word-spacing:-29.584143pt;}
.ws29{word-spacing:-29.566320pt;}
.wsc{word-spacing:-29.281965pt;}
.wsa{word-spacing:-29.216655pt;}
.ws1c{word-spacing:-29.216504pt;}
.ws74{word-spacing:-27.668947pt;}
.ws6a{word-spacing:-27.655802pt;}
.ws72{word-spacing:-27.654652pt;}
.ws66{word-spacing:-27.579523pt;}
.ws58{word-spacing:-26.704630pt;}
.ws19{word-spacing:-26.704478pt;}
.ws1b{word-spacing:-26.704176pt;}
.ws1f{word-spacing:-26.704025pt;}
.ws20{word-spacing:-26.689965pt;}
.ws1a{word-spacing:-26.689814pt;}
.ws8a{word-spacing:-26.688151pt;}
.ws1d{word-spacing:-26.624655pt;}
.ws79{word-spacing:-26.041147pt;}
.ws7c{word-spacing:-26.040811pt;}
.ws48{word-spacing:-26.028733pt;}
.ws78{word-spacing:-26.028699pt;}
.ws42{word-spacing:-26.028582pt;}
.ws77{word-spacing:-25.971167pt;}
.ws76{word-spacing:-25.970982pt;}
.ws7d{word-spacing:-25.970387pt;}
.ws4b{word-spacing:-25.970377pt;}
.ws70{word-spacing:-25.221359pt;}
.ws67{word-spacing:-25.221191pt;}
.ws73{word-spacing:-25.221040pt;}
.ws71{word-spacing:-25.220208pt;}
.ws65{word-spacing:-25.207802pt;}
.ws61{word-spacing:-25.207652pt;}
.ws6f{word-spacing:-25.145743pt;}
.ws68{word-spacing:-25.138551pt;}
.ws44{word-spacing:-23.737751pt;}
.ws7b{word-spacing:-23.737600pt;}
.ws47{word-spacing:-23.724733pt;}
.ws45{word-spacing:-23.724582pt;}
.ws7a{word-spacing:-23.698933pt;}
.ws43{word-spacing:-23.672629pt;}
.ws4d{word-spacing:-23.666982pt;}
.ws49{word-spacing:-23.653526pt;}
.ws5d{word-spacing:-22.707826pt;}
.ws5f{word-spacing:-20.771023pt;}
.ws5e{word-spacing:-20.759349pt;}
.ws22{word-spacing:-19.530532pt;}
.ws26{word-spacing:-19.477669pt;}
.ws0{word-spacing:-17.793210pt;}
.ws4a{word-spacing:-7.365440pt;}
.ws62{word-spacing:-7.363573pt;}
.wsb{word-spacing:0.000000pt;}
._1{width:0.957733pt;}
._f{width:19.556749pt;}
._d{width:24.696169pt;}
._c{width:26.108846pt;}
._4{width:33.532667pt;}
._7{width:34.973414pt;}
._a{width:36.495718pt;}
._e{width:48.045582pt;}
._9{width:51.200000pt;}
._6{width:53.066667pt;}
._2{width:54.933334pt;}
._5{width:58.666667pt;}
._3{width:62.400000pt;}
._b{width:64.266667pt;}
._8{width:66.133333pt;}
._0{width:1710.490225pt;}
.fsd{font-size:56.000000pt;}
.fs10{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fse{font-size:74.666667pt;}
.fs7{font-size:77.333333pt;}
.fsc{font-size:85.333333pt;}
.fsf{font-size:90.666667pt;}
.fs4{font-size:96.000000pt;}
.fs9{font-size:106.666667pt;}
.fs5{font-size:117.333333pt;}
.fsb{font-size:122.666667pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:170.666667pt;}
.fs6{font-size:192.000000pt;}
.fs8{font-size:234.666667pt;}
.fs1{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:5.897227pt;}
.y3e{bottom:5.897240pt;}
.y4f{bottom:5.897267pt;}
.y4a{bottom:6.483200pt;}
.y4c{bottom:6.483213pt;}
.ya7{bottom:17.246853pt;}
.y1{bottom:23.938360pt;}
.yb{bottom:34.750173pt;}
.y42{bottom:37.897240pt;}
.y52{bottom:37.897253pt;}
.y46{bottom:38.483187pt;}
.y49{bottom:38.483213pt;}
.ya6{bottom:39.646867pt;}
.y7d{bottom:46.276440pt;}
.yf8{bottom:49.645413pt;}
.ye4{bottom:49.645520pt;}
.y101{bottom:49.868293pt;}
.y3a{bottom:56.356533pt;}
.y102{bottom:56.822507pt;}
.y1a{bottom:61.311867pt;}
.y7c{bottom:68.226800pt;}
.yf7{bottom:70.893387pt;}
.ye3{bottom:70.893493pt;}
.y18{bottom:72.488787pt;}
.y9{bottom:74.821947pt;}
.y2a{bottom:74.954360pt;}
.y6a{bottom:77.291187pt;}
.yc2{bottom:78.070827pt;}
.y97{bottom:80.089787pt;}
.ya5{bottom:80.089867pt;}
.yb3{bottom:80.209773pt;}
.y2c{bottom:83.077387pt;}
.y53{bottom:83.958987pt;}
.y3b{bottom:85.447680pt;}
.y39{bottom:87.332520pt;}
.yf6{bottom:92.141400pt;}
.ye2{bottom:92.141507pt;}
.yd0{bottom:94.763960pt;}
.y7b{bottom:96.909480pt;}
.yc1{bottom:102.278813pt;}
.y88{bottom:103.783427pt;}
.y17{bottom:105.224787pt;}
.yff{bottom:106.057280pt;}
.y29{bottom:107.541027pt;}
.y69{bottom:110.043213pt;}
.y96{bottom:111.065813pt;}
.ya4{bottom:111.065893pt;}
.yb2{bottom:111.185800pt;}
.y38{bottom:118.308507pt;}
.y7a{bottom:118.925453pt;}
.yf5{bottom:120.056080pt;}
.ye1{bottom:120.056187pt;}
.y51{bottom:121.718813pt;}
.y5e{bottom:128.771267pt;}
.y28{bottom:133.461027pt;}
.ycf{bottom:135.052707pt;}
.y50{bottom:137.718840pt;}
.y16{bottom:137.960787pt;}
.y87{bottom:138.343427pt;}
.yc0{bottom:139.820147pt;}
.y68{bottom:142.795200pt;}
.y79{bottom:147.608133pt;}
.y95{bottom:154.195667pt;}
.ya3{bottom:154.195747pt;}
.yb1{bottom:154.302347pt;}
.yf4{bottom:154.637400pt;}
.ye0{bottom:154.637507pt;}
.y5d{bottom:157.571267pt;}
.yce{bottom:158.716707pt;}
.y37{bottom:162.617880pt;}
.ybf{bottom:164.028173pt;}
.y27{bottom:166.047693pt;}
.y8{bottom:170.608627pt;}
.y15{bottom:170.696787pt;}
.yf3{bottom:182.552080pt;}
.ydf{bottom:182.552187pt;}
.y78{bottom:182.957453pt;}
.y94{bottom:186.206333pt;}
.ya2{bottom:186.206413pt;}
.yb0{bottom:186.299680pt;}
.y67{bottom:188.880533pt;}
.ycd{bottom:189.047373pt;}
.y4e{bottom:191.478653pt;}
.y5c{bottom:193.037933pt;}
.y36{bottom:193.593867pt;}
.y26{bottom:198.634360pt;}
.ybe{bottom:201.569507pt;}
.yf2{bottom:203.800053pt;}
.yde{bottom:203.800160pt;}
.y7{bottom:205.168627pt;}
.y77{bottom:212.108920pt;}
.y93{bottom:219.396440pt;}
.ya1{bottom:219.396520pt;}
.yaf{bottom:219.476453pt;}
.ycc{bottom:220.262640pt;}
.y14{bottom:222.086160pt;}
.y25{bottom:224.554360pt;}
.y35{bottom:224.569853pt;}
.ybd{bottom:225.777493pt;}
.y86{bottom:227.463400pt;}
.y4d{bottom:227.790160pt;}
.y66{bottom:228.299187pt;}
.y5b{bottom:229.090587pt;}
.yf1{bottom:231.714733pt;}
.ydd{bottom:231.714840pt;}
.y110{bottom:236.983387pt;}
.y6{bottom:239.728627pt;}
.y76{bottom:240.725947pt;}
.y24{bottom:250.474360pt;}
.y13{bottom:254.822160pt;}
.y34{bottom:255.545880pt;}
.ybc{bottom:256.652147pt;}
.y10f{bottom:257.815387pt;}
.ycb{bottom:260.551387pt;}
.y85{bottom:262.023400pt;}
.y92{bottom:262.526333pt;}
.ya0{bottom:262.526413pt;}
.yae{bottom:262.593000pt;}
.y48{bottom:265.576560pt;}
.y47{bottom:265.869547pt;}
.y5a{bottom:265.970080pt;}
.yf0{bottom:266.296053pt;}
.ydc{bottom:266.296160pt;}
.y65{bottom:267.717880pt;}
.y75{bottom:269.408627pt;}
.y10e{bottom:278.647387pt;}
.y4b{bottom:281.576547pt;}
.yef{bottom:287.544067pt;}
.ydb{bottom:287.544173pt;}
.y12{bottom:287.558160pt;}
.y91{bottom:287.870333pt;}
.y9f{bottom:287.870413pt;}
.yad{bottom:287.937000pt;}
.yca{bottom:290.882053pt;}
.ybb{bottom:294.193520pt;}
.y84{bottom:296.583400pt;}
.y5{bottom:297.351960pt;}
.y33{bottom:299.855213pt;}
.y64{bottom:300.469867pt;}
.y74{bottom:304.757947pt;}
.y59{bottom:312.683947pt;}
.yc9{bottom:314.546053pt;}
.yee{bottom:315.458747pt;}
.yda{bottom:315.458853pt;}
.y10d{bottom:318.132720pt;}
.y11{bottom:320.294160pt;}
.y90{bottom:321.060440pt;}
.y9e{bottom:321.060520pt;}
.yac{bottom:321.113800pt;}
.y23{bottom:322.314373pt;}
.yba{bottom:325.068173pt;}
.y73{bottom:326.773960pt;}
.y32{bottom:330.831200pt;}
.yed{bottom:336.706720pt;}
.yd9{bottom:336.706827pt;}
.y45{bottom:337.600707pt;}
.y83{bottom:337.810067pt;}
.y10c{bottom:338.964720pt;}
.y63{bottom:339.888520pt;}
.yc8{bottom:345.761280pt;}
.y58{bottom:348.150613pt;}
.y22{bottom:348.234373pt;}
.y44{bottom:353.893680pt;}
.y72{bottom:355.456640pt;}
.y31{bottom:361.807187pt;}
.yb9{bottom:362.609507pt;}
.y8f{bottom:364.190333pt;}
.y9d{bottom:364.190413pt;}
.yab{bottom:364.230347pt;}
.yec{bottom:364.621400pt;}
.yd8{bottom:364.621507pt;}
.y105{bottom:368.196720pt;}
.y10{bottom:371.683493pt;}
.y57{bottom:376.950613pt;}
.y71{bottom:377.472613pt;}
.y10b{bottom:378.450053pt;}
.y82{bottom:379.036733pt;}
.y21{bottom:380.821040pt;}
.y62{bottom:385.973853pt;}
.yc7{bottom:386.050027pt;}
.yb8{bottom:386.817493pt;}
.y104{bottom:389.028720pt;}
.y30{bottom:392.783213pt;}
.y4{bottom:393.863973pt;}
.y8e{bottom:397.380440pt;}
.y9c{bottom:397.380520pt;}
.yaa{bottom:397.407120pt;}
.yeb{bottom:399.202720pt;}
.yd7{bottom:399.202827pt;}
.y10a{bottom:399.282053pt;}
.yf{bottom:404.419493pt;}
.y70{bottom:406.155293pt;}
.y20{bottom:406.741040pt;}
.y41{bottom:409.598293pt;}
.yb7{bottom:411.025520pt;}
.y56{bottom:413.596720pt;}
.yc6{bottom:416.380693pt;}
.y61{bottom:418.725880pt;}
.y81{bottom:420.263400pt;}
.y40{bottom:425.598307pt;}
.yfe{bottom:425.714067pt;}
.yea{bottom:427.117400pt;}
.yd6{bottom:427.117507pt;}
.y1f{bottom:432.661040pt;}
.y2f{bottom:437.092547pt;}
.y109{bottom:438.767387pt;}
.y8d{bottom:440.510333pt;}
.y9b{bottom:440.510413pt;}
.ya9{bottom:440.523667pt;}
.y6f{bottom:441.504613pt;}
.yb6{bottom:441.900173pt;}
.yfd{bottom:446.546067pt;}
.yc5{bottom:446.711360pt;}
.y80{bottom:454.823400pt;}
.ye9{bottom:455.032040pt;}
.yd5{bottom:455.032147pt;}
.ye{bottom:455.808827pt;}
.y108{bottom:459.599387pt;}
.y55{bottom:461.490067pt;}
.y6e{bottom:463.520627pt;}
.y60{bottom:464.811213pt;}
.y1e{bottom:465.247707pt;}
.y8c{bottom:465.854333pt;}
.y9a{bottom:465.854413pt;}
.ya8{bottom:465.867667pt;}
.y2e{bottom:468.068533pt;}
.y3{bottom:469.895973pt;}
.yc4{bottom:470.375360pt;}
.ye8{bottom:476.280053pt;}
.yd4{bottom:476.280160pt;}
.yb5{bottom:479.441507pt;}
.y3f{bottom:480.667573pt;}
.yfc{bottom:483.231373pt;}
.yd{bottom:488.544827pt;}
.y1d{bottom:491.167707pt;}
.y6d{bottom:492.203307pt;}
.y54{bottom:496.050067pt;}
.ye7{bottom:497.528067pt;}
.yd3{bottom:497.528173pt;}
.y5f{bottom:497.563200pt;}
.y8b{bottom:499.044440pt;}
.y2d{bottom:499.044520pt;}
.y107{bottom:499.084720pt;}
.yc3{bottom:501.590627pt;}
.yb4{bottom:504.147600pt;}
.y6c{bottom:514.219280pt;}
.y1c{bottom:517.087707pt;}
.yfb{bottom:519.916720pt;}
.y3d{bottom:521.931440pt;}
.ye6{bottom:525.442707pt;}
.yd2{bottom:525.442813pt;}
.yfa{bottom:540.748720pt;}
.y6b{bottom:542.901960pt;}
.y2{bottom:545.927973pt;}
.ye5{bottom:553.357387pt;}
.yd1{bottom:553.357493pt;}
.y7f{bottom:561.523347pt;}
.y8a{bottom:561.523507pt;}
.y99{bottom:561.523653pt;}
.y3c{bottom:593.203347pt;}
.yf9{bottom:593.377280pt;}
.y2b{bottom:596.636067pt;}
.y1b{bottom:598.352467pt;}
.yc{bottom:598.352627pt;}
.y19{bottom:598.352733pt;}
.y100{bottom:619.317120pt;}
.y106{bottom:619.468307pt;}
.y7e{bottom:624.883347pt;}
.y89{bottom:624.883507pt;}
.y98{bottom:624.883653pt;}
.y111{bottom:682.086920pt;}
.y103{bottom:691.308960pt;}
.ya{bottom:691.707547pt;}
.hf{height:33.000000pt;}
.h15{height:33.585973pt;}
.hc{height:46.375000pt;}
.h1{height:47.125000pt;}
.h21{height:52.572917pt;}
.h1c{height:54.979167pt;}
.h19{height:62.833333pt;}
.h14{height:64.999973pt;}
.h12{height:65.000000pt;}
.h16{height:65.000013pt;}
.h13{height:65.585947pt;}
.h1f{height:65.697917pt;}
.h1e{height:66.760417pt;}
.h6{height:69.562500pt;}
.ha{height:70.687500pt;}
.h1a{height:71.101095pt;}
.h1d{height:74.931303pt;}
.h22{height:76.800000pt;}
.h10{height:77.291667pt;}
.h11{height:78.541667pt;}
.h9{height:85.020833pt;}
.h8{height:86.395833pt;}
.h18{height:90.322917pt;}
.h1b{height:92.750000pt;}
.h17{height:94.250000pt;}
.h5{height:96.000000pt;}
.hd{height:98.009375pt;}
.h4{height:99.072000pt;}
.h3{height:128.000000pt;}
.h7{height:132.096000pt;}
.hb{height:148.608000pt;}
.h20{height:172.791667pt;}
.he{height:181.632000pt;}
.h2{height:216.000000pt;}
.h0{height:720.000000pt;}
.w3{width:208.712320pt;}
.w1{width:376.270147pt;}
.w2{width:482.096053pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:1.500013pt;}
.x1a{left:3.484987pt;}
.x2a{left:10.057507pt;}
.x18{left:16.300680pt;}
.x30{left:17.592560pt;}
.x1f{left:19.920027pt;}
.x23{left:21.597307pt;}
.x2e{left:23.575333pt;}
.x26{left:29.506200pt;}
.x2c{left:31.010160pt;}
.x28{left:33.233720pt;}
.x20{left:37.719253pt;}
.x22{left:41.355173pt;}
.x27{left:46.543813pt;}
.x1e{left:59.147947pt;}
.x2b{left:61.390893pt;}
.x31{left:66.199400pt;}
.x3d{left:67.540120pt;}
.x1c{left:72.481253pt;}
.x1b{left:82.023387pt;}
.x38{left:86.398107pt;}
.xc{left:87.999760pt;}
.x2{left:90.001280pt;}
.x3e{left:91.540120pt;}
.x2d{left:96.247587pt;}
.xf{left:97.599653pt;}
.x39{left:100.608147pt;}
.x1d{left:102.493987pt;}
.x37{left:109.693680pt;}
.xd{left:111.999760pt;}
.x10{left:121.599653pt;}
.xb{left:123.007440pt;}
.x29{left:129.617187pt;}
.x3{left:130.605733pt;}
.x36{left:138.969560pt;}
.x24{left:140.713467pt;}
.x11{left:145.599653pt;}
.x4{left:151.808840pt;}
.x12{left:169.599640pt;}
.x21{left:172.122627pt;}
.x6{left:180.183533pt;}
.x13{left:184.859827pt;}
.x25{left:193.626400pt;}
.x34{left:203.304413pt;}
.x32{left:210.683520pt;}
.x3b{left:217.599680pt;}
.x7{left:222.902293pt;}
.x9{left:227.015520pt;}
.x8{left:235.877373pt;}
.x17{left:290.735707pt;}
.x35{left:335.099987pt;}
.x5{left:414.427493pt;}
.x33{left:473.494147pt;}
.x16{left:489.393147pt;}
.x3a{left:516.672453pt;}
.x40{left:541.051840pt;}
.x3f{left:546.091200pt;}
.x42{left:644.409453pt;}
.x19{left:667.005853pt;}
.x3c{left:802.227813pt;}
.x1{left:866.586747pt;}
.x44{left:868.157440pt;}
.x43{left:934.828347pt;}
.x14{left:947.790120pt;}
.xa{left:997.165227pt;}
.x15{left:1028.219307pt;}
.xe{left:1095.867173pt;}
.x41{left:1131.212600pt;}
}




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