
    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_fff3a60ebe10f694f3007235.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.915000;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_582db1b433061134646505a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.108000;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_96b469a3a11f5eeff69f4837.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.897000;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_b9826d55053c351cf1f1d920.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.889000;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_7606b8fe21a1fe203bb2f245.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.891000;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_925de9720c12ed3dfe4c52b7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.698000;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_afb625526453328e7b83d972.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958000;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_afb625526453328e7b83d972.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958000;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_fc9ae496425a7066af9a1fa6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958000;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_afb625526453328e7b83d972.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958000;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_fc9ae496425a7066af9a1fa6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958000;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_afb625526453328e7b83d972.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bc2562704638f9e64d318488.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_afb625526453328e7b83d972.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_bc2562704638f9e64d318488.woff2')format("woff");}.fff{font-family:fff;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_afb625526453328e7b83d972.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_fc9ae496425a7066af9a1fa6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_afb625526453328e7b83d972.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958000;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:ff13;src:url('chunks/assets/font_bc2562704638f9e64d318488.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.888000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v3{vertical-align:-47.562600px;}
.v4{vertical-align:-19.800000px;}
.v2{vertical-align:-15.300000px;}
.v6{vertical-align:-5.644200px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:15.300000px;}
.v1{vertical-align:19.800000px;}
.v5{vertical-align:56.197200px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.330000px;}
.ls1{letter-spacing:0.660000px;}
.ls4{letter-spacing:1.512000px;}
.ls0{letter-spacing:3.115200px;}
.ls3{letter-spacing:967.949112px;}
.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;}
}
.ws1{word-spacing:-20.130000px;}
.ws2{word-spacing:-14.091000px;}
.ws0{word-spacing:-12.750000px;}
.ws4{word-spacing:-10.725000px;}
.wse{word-spacing:-8.287500px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:32.055811px;}
.ws5{word-spacing:89.012748px;}
.ws7{word-spacing:95.750711px;}
.ws8{word-spacing:125.675111px;}
.wsa{word-spacing:128.338309px;}
.ws9{word-spacing:143.739000px;}
.wsc{word-spacing:154.912850px;}
.wsb{word-spacing:171.073141px;}
.wsd{word-spacing:1421.475392px;}
._f{margin-left:-5.655000px;}
._c{margin-left:-3.849000px;}
._5{margin-left:-2.091000px;}
._3{margin-left:-1.071000px;}
._2{width:1.071000px;}
._1{width:2.091000px;}
._0{width:3.107400px;}
._4{width:4.650600px;}
._d{width:5.940000px;}
._e{width:7.458000px;}
._b{width:8.976000px;}
._9{width:10.230000px;}
._8{width:11.550000px;}
._a{width:12.606000px;}
._18{width:13.704000px;}
._6{width:14.718000px;}
._10{width:17.556000px;}
._7{width:19.338000px;}
._17{width:20.373000px;}
._12{width:21.846000px;}
._13{width:22.971000px;}
._14{width:24.069000px;}
._11{width:25.476000px;}
._1e{width:28.050000px;}
._1d{width:32.604000px;}
._16{width:139.930944px;}
._1c{width:146.503373px;}
._15{width:156.181392px;}
._1b{width:162.944868px;}
._19{width:177.530051px;}
._1a{width:179.473116px;}
.fc0{color:rgb(35,31,32);}
.fs14{font-size:32.411400px;}
.fs8{font-size:32.610000px;}
.fs10{font-size:32.933400px;}
.fs3{font-size:33.150000px;}
.fs2{font-size:42.900000px;}
.fsc{font-size:44.958000px;}
.fs5{font-size:46.200000px;}
.fs4{font-size:51.000000px;}
.fs9{font-size:52.176000px;}
.fs11{font-size:52.693800px;}
.fs12{font-size:58.340400px;}
.fs6{font-size:58.698000px;}
.fse{font-size:59.280600px;}
.fsd{font-size:63.000000px;}
.fs13{font-size:64.822800px;}
.fs7{font-size:65.219400px;}
.fsf{font-size:65.867400px;}
.fs1{font-size:66.000000px;}
.fsa{font-size:80.923800px;}
.fsb{font-size:89.915400px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yad{bottom:82.357800px;}
.y2a{bottom:82.357950px;}
.y85{bottom:82.358100px;}
.y53{bottom:123.768900px;}
.yac{bottom:123.972300px;}
.y27{bottom:124.210050px;}
.ye1{bottom:124.601100px;}
.yfd{bottom:125.029500px;}
.y52{bottom:136.518900px;}
.yab{bottom:136.722300px;}
.ye0{bottom:137.351100px;}
.y26{bottom:143.429550px;}
.y89{bottom:143.429700px;}
.ydf{bottom:150.101100px;}
.ycc{bottom:160.072500px;}
.y122{bottom:162.648900px;}
.y25{bottom:162.649050px;}
.ya9{bottom:164.441100px;}
.y155{bottom:172.331250px;}
.yd5{bottom:177.202500px;}
.y121{bottom:181.868250px;}
.y24{bottom:181.868550px;}
.y154{bottom:185.081250px;}
.ya4{bottom:189.106800px;}
.yd0{bottom:192.793950px;}
.y153{bottom:197.831250px;}
.y120{bottom:201.087750px;}
.y23{bottom:201.088050px;}
.yd7{bottom:205.757700px;}
.y11f{bottom:220.307250px;}
.y22{bottom:220.307550px;}
.y152{bottom:223.331250px;}
.yd1{bottom:225.407250px;}
.ya5{bottom:227.347800px;}
.yd6{bottom:233.517150px;}
.y151{bottom:236.081250px;}
.y11e{bottom:239.526750px;}
.y21{bottom:239.527050px;}
.y88{bottom:239.527200px;}
.y150{bottom:248.831250px;}
.yaa{bottom:250.953600px;}
.y11d{bottom:258.746400px;}
.y28{bottom:258.746550px;}
.y14f{bottom:261.581250px;}
.yd2{bottom:269.637450px;}
.y14e{bottom:274.331250px;}
.ya6{bottom:274.791600px;}
.y11c{bottom:277.965750px;}
.y20{bottom:277.966050px;}
.y14d{bottom:287.081250px;}
.y11b{bottom:297.185250px;}
.y61{bottom:297.185550px;}
.y14c{bottom:299.831250px;}
.y14b{bottom:312.581250px;}
.yd3{bottom:313.867500px;}
.y60{bottom:316.405050px;}
.ya7{bottom:322.138350px;}
.y14a{bottom:325.331250px;}
.yda{bottom:326.635800px;}
.y11a{bottom:335.624250px;}
.y5f{bottom:335.624550px;}
.y149{bottom:338.081250px;}
.y1b{bottom:339.103650px;}
.yd9{bottom:345.531300px;}
.y148{bottom:350.831250px;}
.y1a{bottom:351.853650px;}
.y5e{bottom:354.844050px;}
.y51{bottom:354.844350px;}
.yd4{bottom:358.027200px;}
.yd8{bottom:360.595061px;}
.y147{bottom:363.581250px;}
.ya8{bottom:369.493800px;}
.y5d{bottom:374.063550px;}
.y50{bottom:374.063850px;}
.y146{bottom:376.331250px;}
.y19{bottom:377.353650px;}
.y145{bottom:389.081250px;}
.y18{bottom:390.103650px;}
.y119{bottom:393.282750px;}
.y63{bottom:393.283050px;}
.y4f{bottom:393.283200px;}
.y144{bottom:401.831250px;}
.y17{bottom:402.853650px;}
.yc8{bottom:407.721150px;}
.y118{bottom:412.502250px;}
.y5c{bottom:412.502550px;}
.y4e{bottom:412.502850px;}
.ycd{bottom:412.882200px;}
.y143{bottom:414.581250px;}
.y16{bottom:415.603650px;}
.yb3{bottom:426.177900px;}
.yce{bottom:426.363450px;}
.y142{bottom:427.331250px;}
.y15{bottom:428.353650px;}
.y117{bottom:431.721750px;}
.y62{bottom:431.722050px;}
.y87{bottom:431.722200px;}
.y4d{bottom:431.722350px;}
.y141{bottom:440.081250px;}
.yc9{bottom:440.340900px;}
.y14{bottom:441.103650px;}
.y116{bottom:450.941250px;}
.y5b{bottom:450.941550px;}
.y4c{bottom:450.941850px;}
.y140{bottom:452.831250px;}
.y13{bottom:453.853650px;}
.y13f{bottom:465.581250px;}
.y12{bottom:466.603650px;}
.y115{bottom:470.160750px;}
.y5a{bottom:470.161050px;}
.y4b{bottom:470.161350px;}
.y13e{bottom:478.331250px;}
.y11{bottom:479.353650px;}
.yca{bottom:484.564950px;}
.y114{bottom:489.380250px;}
.y59{bottom:489.380550px;}
.y4a{bottom:489.380700px;}
.y13d{bottom:491.081250px;}
.y13c{bottom:503.831250px;}
.y10{bottom:504.853650px;}
.y113{bottom:508.599750px;}
.y58{bottom:508.600050px;}
.y49{bottom:508.600350px;}
.y13b{bottom:516.581250px;}
.y112{bottom:527.819250px;}
.y57{bottom:527.819400px;}
.y86{bottom:527.819550px;}
.y48{bottom:527.819850px;}
.ycb{bottom:528.794250px;}
.y13a{bottom:529.331250px;}
.yf{bottom:530.353650px;}
.y139{bottom:542.081250px;}
.ye{bottom:543.103650px;}
.y111{bottom:547.038750px;}
.y56{bottom:547.039050px;}
.y47{bottom:547.039350px;}
.y138{bottom:554.831250px;}
.yd{bottom:555.853650px;}
.ycf{bottom:559.857750px;}
.y110{bottom:566.258250px;}
.y55{bottom:566.258400px;}
.y46{bottom:566.258850px;}
.y137{bottom:567.581250px;}
.yc{bottom:568.603650px;}
.ya3{bottom:575.696550px;}
.y136{bottom:580.331250px;}
.yb{bottom:581.353650px;}
.y10f{bottom:585.477750px;}
.y45{bottom:585.478200px;}
.ya2{bottom:588.446550px;}
.y135{bottom:593.081250px;}
.ya{bottom:594.103650px;}
.ya1{bottom:601.196550px;}
.y83{bottom:603.567450px;}
.y10e{bottom:604.697250px;}
.yfc{bottom:604.697550px;}
.y44{bottom:604.697850px;}
.yde{bottom:604.843050px;}
.y134{bottom:605.831250px;}
.y9{bottom:606.853650px;}
.ya0{bottom:613.946550px;}
.y82{bottom:616.317450px;}
.ydd{bottom:617.593050px;}
.y133{bottom:618.581250px;}
.y10d{bottom:623.916750px;}
.yfb{bottom:623.917050px;}
.y43{bottom:623.917350px;}
.y81{bottom:629.067450px;}
.ydc{bottom:630.343050px;}
.y132{bottom:631.331250px;}
.y9c{bottom:634.728450px;}
.y80{bottom:641.817450px;}
.ydb{bottom:643.093050px;}
.y10c{bottom:643.136250px;}
.yfa{bottom:643.136700px;}
.y42{bottom:643.136850px;}
.y131{bottom:644.081250px;}
.y96{bottom:656.373300px;}
.y130{bottom:656.831250px;}
.y10b{bottom:662.355750px;}
.yf9{bottom:662.356050px;}
.y41{bottom:662.356350px;}
.yb2{bottom:662.356500px;}
.y12f{bottom:669.581250px;}
.y75{bottom:670.197750px;}
.yb8{bottom:670.275600px;}
.y9d{bottom:674.347350px;}
.y10a{bottom:681.575250px;}
.yf8{bottom:681.575550px;}
.y40{bottom:681.575850px;}
.y12e{bottom:682.331250px;}
.y71{bottom:685.890600px;}
.yb4{bottom:686.125350px;}
.y9a{bottom:693.638850px;}
.y12d{bottom:695.081250px;}
.y97{bottom:700.110600px;}
.y109{bottom:700.794750px;}
.yf7{bottom:700.795050px;}
.y3f{bottom:700.795350px;}
.y72{bottom:702.666300px;}
.y12c{bottom:707.831250px;}
.yc7{bottom:718.165800px;}
.yb5{bottom:718.236000px;}
.y108{bottom:720.014250px;}
.yf6{bottom:720.014550px;}
.y3e{bottom:720.014850px;}
.y12b{bottom:720.581250px;}
.y12a{bottom:733.331250px;}
.y73{bottom:733.787400px;}
.yc6{bottom:735.249300px;}
.y98{bottom:738.974250px;}
.y107{bottom:739.233750px;}
.yf5{bottom:739.234200px;}
.y3d{bottom:739.234350px;}
.yb6{bottom:742.041900px;}
.y129{bottom:746.081250px;}
.y8{bottom:747.162600px;}
.yc5{bottom:752.333850px;}
.y106{bottom:758.453250px;}
.yf4{bottom:758.453550px;}
.y3c{bottom:758.453850px;}
.y128{bottom:758.831250px;}
.y7{bottom:763.737600px;}
.y74{bottom:764.830050px;}
.yb7{bottom:765.847650px;}
.yc4{bottom:769.418400px;}
.y127{bottom:771.581250px;}
.y77{bottom:771.963450px;}
.y6{bottom:772.662600px;}
.yc1{bottom:773.052600px;}
.y105{bottom:777.672750px;}
.yf3{bottom:777.673050px;}
.y3b{bottom:777.673350px;}
.y99{bottom:777.856050px;}
.y9b{bottom:784.309800px;}
.y126{bottom:784.331250px;}
.yc3{bottom:786.502950px;}
.y5{bottom:789.237600px;}
.y104{bottom:796.892250px;}
.yf2{bottom:796.892550px;}
.y3a{bottom:796.892700px;}
.y125{bottom:797.081250px;}
.y69{bottom:797.440200px;}
.yb9{bottom:798.781950px;}
.y124{bottom:809.831250px;}
.y9e{bottom:810.525132px;}
.y4{bottom:810.918450px;}
.y92{bottom:814.366200px;}
.y103{bottom:816.111750px;}
.yf1{bottom:816.112050px;}
.y39{bottom:816.112200px;}
.y123{bottom:822.581250px;}
.y6a{bottom:825.502050px;}
.yba{bottom:827.122500px;}
.y3{bottom:830.118450px;}
.y94{bottom:834.412950px;}
.y102{bottom:835.331250px;}
.yf0{bottom:835.331550px;}
.y38{bottom:835.331700px;}
.y70{bottom:836.706150px;}
.yc0{bottom:838.437450px;}
.y7f{bottom:839.156550px;}
.y8f{bottom:840.981300px;}
.y6b{bottom:853.558050px;}
.y101{bottom:854.550900px;}
.yef{bottom:854.551050px;}
.y37{bottom:854.551200px;}
.ybb{bottom:855.457500px;}
.y7e{bottom:856.074000px;}
.y7d{bottom:872.990250px;}
.y100{bottom:873.770400px;}
.yee{bottom:873.770550px;}
.y36{bottom:873.770700px;}
.y90{bottom:879.748350px;}
.y6c{bottom:881.549700px;}
.y2{bottom:883.334250px;}
.ybc{bottom:883.727850px;}
.y7c{bottom:889.906500px;}
.yff{bottom:892.989900px;}
.yed{bottom:892.990050px;}
.y35{bottom:892.990200px;}
.y7b{bottom:906.822750px;}
.y6d{bottom:909.605550px;}
.y1{bottom:910.971750px;}
.ybd{bottom:912.061650px;}
.yec{bottom:912.209400px;}
.y34{bottom:912.209700px;}
.y91{bottom:918.621150px;}
.y7a{bottom:923.740200px;}
.y95{bottom:925.083750px;}
.yeb{bottom:931.428900px;}
.y33{bottom:931.429200px;}
.y93{bottom:932.670450px;}
.y6e{bottom:937.668750px;}
.ybe{bottom:940.403400px;}
.y79{bottom:940.656450px;}
.yea{bottom:950.648400px;}
.y32{bottom:950.648550px;}
.y9f{bottom:951.118800px;}
.y6f{bottom:965.654550px;}
.y78{bottom:968.243040px;}
.ybf{bottom:968.667000px;}
.ye9{bottom:969.867900px;}
.y31{bottom:969.868050px;}
.yc2{bottom:971.278735px;}
.y8d{bottom:975.292650px;}
.y8a{bottom:981.843000px;}
.ye8{bottom:989.087400px;}
.y30{bottom:989.087550px;}
.y64{bottom:993.035100px;}
.yae{bottom:996.319500px;}
.ye7{bottom:1008.306900px;}
.y2f{bottom:1008.307050px;}
.y65{bottom:1015.862400px;}
.yaf{bottom:1019.373300px;}
.y8b{bottom:1020.619050px;}
.ye6{bottom:1027.526400px;}
.y2e{bottom:1027.526550px;}
.y66{bottom:1038.688800px;}
.yb0{bottom:1042.426350px;}
.ye5{bottom:1046.745900px;}
.y2d{bottom:1046.746050px;}
.y8c{bottom:1059.500550px;}
.y67{bottom:1061.516250px;}
.yb1{bottom:1065.480000px;}
.y8e{bottom:1065.945750px;}
.ye4{bottom:1065.965400px;}
.y2c{bottom:1065.965550px;}
.y1f{bottom:1072.166700px;}
.y76{bottom:1072.452000px;}
.y68{bottom:1084.342650px;}
.ye3{bottom:1085.184750px;}
.yfe{bottom:1085.184900px;}
.y2b{bottom:1085.185050px;}
.y1e{bottom:1091.366700px;}
.y1d{bottom:1110.566850px;}
.y1c{bottom:1129.766850px;}
.y29{bottom:1132.860150px;}
.y84{bottom:1132.860300px;}
.ye2{bottom:1132.872900px;}
.y54{bottom:1132.873050px;}
.h19{height:23.887202px;}
.h9{height:24.033570px;}
.h14{height:24.271916px;}
.h4{height:30.090000px;}
.hf{height:33.134046px;}
.ha{height:38.453712px;}
.h15{height:38.835331px;}
.h16{height:42.996875px;}
.h7{height:43.260426px;}
.h11{height:43.689802px;}
.h5{height:45.390000px;}
.h6{height:45.606000px;}
.h10{height:46.431000px;}
.h18{height:47.774404px;}
.h8{height:48.066698px;}
.h13{height:48.544274px;}
.h3{height:58.740000px;}
.hb{height:59.640841px;}
.hd{height:66.267650px;}
.h2{height:70.890000px;}
.he{height:121.655450px;}
.hc{height:122.464850px;}
.h17{height:425.406000px;}
.h12{height:438.904500px;}
.h1{height:1215.750000px;}
.h0{height:1216.063500px;}
.w2{width:718.582500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:76.535400px;}
.xf{left:97.795200px;}
.x3f{left:107.685450px;}
.x35{left:111.797400px;}
.x12{left:119.055150px;}
.x9{left:120.217050px;}
.x19{left:124.965750px;}
.x18{left:132.366450px;}
.x5{left:138.443400px;}
.x1{left:140.401800px;}
.x7{left:148.342800px;}
.x46{left:152.121000px;}
.x1a{left:159.205800px;}
.x27{left:164.255700px;}
.x17{left:165.384450px;}
.x39{left:168.779850px;}
.x31{left:171.088950px;}
.x23{left:174.467700px;}
.x37{left:176.247750px;}
.x32{left:182.901450px;}
.x34{left:184.480950px;}
.x25{left:186.269100px;}
.x29{left:188.973600px;}
.x3{left:190.244550px;}
.x24{left:197.508600px;}
.x3e{left:205.480950px;}
.x36{left:207.469950px;}
.x1b{left:211.375500px;}
.x3d{left:213.589950px;}
.x28{left:216.800100px;}
.x30{left:219.085950px;}
.x42{left:222.908550px;}
.x40{left:231.954450px;}
.x2f{left:234.716700px;}
.x3c{left:241.139550px;}
.x3b{left:262.833750px;}
.x6{left:268.972500px;}
.x2c{left:271.970100px;}
.x2{left:285.534900px;}
.x33{left:304.975200px;}
.x2a{left:309.622200px;}
.x16{left:321.253950px;}
.x8{left:324.236250px;}
.x20{left:333.395250px;}
.x2e{left:337.624200px;}
.x4{left:341.840250px;}
.x45{left:364.484250px;}
.x14{left:387.070500px;}
.x15{left:390.260250px;}
.x41{left:425.478900px;}
.x2b{left:428.567100px;}
.x38{left:432.377850px;}
.x21{left:441.829500px;}
.x10{left:450.743250px;}
.x1e{left:457.383000px;}
.x1d{left:463.362000px;}
.x11{left:472.003050px;}
.x22{left:490.056450px;}
.x13{left:493.228200px;}
.xb{left:536.664300px;}
.xd{left:564.118800px;}
.x44{left:606.235350px;}
.xa{left:642.586500px;}
.xc{left:679.156650px;}
.x1f{left:713.770972px;}
.x1c{left:717.171450px;}
.x2d{left:725.663757px;}
.x43{left:729.263749px;}
.x26{left:730.355250px;}
.x3a{left:750.186975px;}
@media print{
.v3{vertical-align:-42.277867pt;}
.v4{vertical-align:-17.600000pt;}
.v2{vertical-align:-13.600000pt;}
.v6{vertical-align:-5.017067pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:13.600000pt;}
.v1{vertical-align:17.600000pt;}
.v5{vertical-align:49.953067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.293333pt;}
.ls1{letter-spacing:0.586667pt;}
.ls4{letter-spacing:1.344000pt;}
.ls0{letter-spacing:2.769067pt;}
.ls3{letter-spacing:860.399211pt;}
.ws1{word-spacing:-17.893333pt;}
.ws2{word-spacing:-12.525333pt;}
.ws0{word-spacing:-11.333333pt;}
.ws4{word-spacing:-9.533333pt;}
.wse{word-spacing:-7.366667pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:28.494054pt;}
.ws5{word-spacing:79.122443pt;}
.ws7{word-spacing:85.111743pt;}
.ws8{word-spacing:111.711210pt;}
.wsa{word-spacing:114.078497pt;}
.ws9{word-spacing:127.768000pt;}
.wsc{word-spacing:137.700311pt;}
.wsb{word-spacing:152.065014pt;}
.wsd{word-spacing:1263.533682pt;}
._f{margin-left:-5.026667pt;}
._c{margin-left:-3.421333pt;}
._5{margin-left:-1.858667pt;}
._3{margin-left:-0.952000pt;}
._2{width:0.952000pt;}
._1{width:1.858667pt;}
._0{width:2.762133pt;}
._4{width:4.133867pt;}
._d{width:5.280000pt;}
._e{width:6.629333pt;}
._b{width:7.978667pt;}
._9{width:9.093333pt;}
._8{width:10.266667pt;}
._a{width:11.205333pt;}
._18{width:12.181333pt;}
._6{width:13.082667pt;}
._10{width:15.605333pt;}
._7{width:17.189333pt;}
._17{width:18.109333pt;}
._12{width:19.418667pt;}
._13{width:20.418667pt;}
._14{width:21.394667pt;}
._11{width:22.645333pt;}
._1e{width:24.933333pt;}
._1d{width:28.981333pt;}
._16{width:124.383061pt;}
._1c{width:130.225220pt;}
._15{width:138.827904pt;}
._1b{width:144.839883pt;}
._19{width:157.804490pt;}
._1a{width:159.531659pt;}
.fs14{font-size:28.810133pt;}
.fs8{font-size:28.986667pt;}
.fs10{font-size:29.274133pt;}
.fs3{font-size:29.466667pt;}
.fs2{font-size:38.133333pt;}
.fsc{font-size:39.962667pt;}
.fs5{font-size:41.066667pt;}
.fs4{font-size:45.333333pt;}
.fs9{font-size:46.378667pt;}
.fs11{font-size:46.838933pt;}
.fs12{font-size:51.858133pt;}
.fs6{font-size:52.176000pt;}
.fse{font-size:52.693867pt;}
.fsd{font-size:56.000000pt;}
.fs13{font-size:57.620267pt;}
.fs7{font-size:57.972800pt;}
.fsf{font-size:58.548800pt;}
.fs1{font-size:58.666667pt;}
.fsa{font-size:71.932267pt;}
.fsb{font-size:79.924800pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:73.206933pt;}
.y2a{bottom:73.207067pt;}
.y85{bottom:73.207200pt;}
.y53{bottom:110.016800pt;}
.yac{bottom:110.197600pt;}
.y27{bottom:110.408933pt;}
.ye1{bottom:110.756533pt;}
.yfd{bottom:111.137333pt;}
.y52{bottom:121.350133pt;}
.yab{bottom:121.530933pt;}
.ye0{bottom:122.089867pt;}
.y26{bottom:127.492933pt;}
.y89{bottom:127.493067pt;}
.ydf{bottom:133.423200pt;}
.ycc{bottom:142.286667pt;}
.y122{bottom:144.576800pt;}
.y25{bottom:144.576933pt;}
.ya9{bottom:146.169867pt;}
.y155{bottom:153.183333pt;}
.yd5{bottom:157.513333pt;}
.y121{bottom:161.660667pt;}
.y24{bottom:161.660933pt;}
.y154{bottom:164.516667pt;}
.ya4{bottom:168.094933pt;}
.yd0{bottom:171.372400pt;}
.y153{bottom:175.850000pt;}
.y120{bottom:178.744667pt;}
.y23{bottom:178.744933pt;}
.yd7{bottom:182.895733pt;}
.y11f{bottom:195.828667pt;}
.y22{bottom:195.828933pt;}
.y152{bottom:198.516667pt;}
.yd1{bottom:200.362000pt;}
.ya5{bottom:202.086933pt;}
.yd6{bottom:207.570800pt;}
.y151{bottom:209.850000pt;}
.y11e{bottom:212.912667pt;}
.y21{bottom:212.912933pt;}
.y88{bottom:212.913067pt;}
.y150{bottom:221.183333pt;}
.yaa{bottom:223.069867pt;}
.y11d{bottom:229.996800pt;}
.y28{bottom:229.996933pt;}
.y14f{bottom:232.516667pt;}
.yd2{bottom:239.677733pt;}
.y14e{bottom:243.850000pt;}
.ya6{bottom:244.259200pt;}
.y11c{bottom:247.080667pt;}
.y20{bottom:247.080933pt;}
.y14d{bottom:255.183333pt;}
.y11b{bottom:264.164667pt;}
.y61{bottom:264.164933pt;}
.y14c{bottom:266.516667pt;}
.y14b{bottom:277.850000pt;}
.yd3{bottom:278.993333pt;}
.y60{bottom:281.248933pt;}
.ya7{bottom:286.345200pt;}
.y14a{bottom:289.183333pt;}
.yda{bottom:290.342933pt;}
.y11a{bottom:298.332667pt;}
.y5f{bottom:298.332933pt;}
.y149{bottom:300.516667pt;}
.y1b{bottom:301.425467pt;}
.yd9{bottom:307.138933pt;}
.y148{bottom:311.850000pt;}
.y1a{bottom:312.758800pt;}
.y5e{bottom:315.416933pt;}
.y51{bottom:315.417200pt;}
.yd4{bottom:318.246400pt;}
.yd8{bottom:320.528943pt;}
.y147{bottom:323.183333pt;}
.ya8{bottom:328.438933pt;}
.y5d{bottom:332.500933pt;}
.y50{bottom:332.501200pt;}
.y146{bottom:334.516667pt;}
.y19{bottom:335.425467pt;}
.y145{bottom:345.850000pt;}
.y18{bottom:346.758800pt;}
.y119{bottom:349.584667pt;}
.y63{bottom:349.584933pt;}
.y4f{bottom:349.585067pt;}
.y144{bottom:357.183333pt;}
.y17{bottom:358.092133pt;}
.yc8{bottom:362.418800pt;}
.y118{bottom:366.668667pt;}
.y5c{bottom:366.668933pt;}
.y4e{bottom:366.669200pt;}
.ycd{bottom:367.006400pt;}
.y143{bottom:368.516667pt;}
.y16{bottom:369.425467pt;}
.yb3{bottom:378.824800pt;}
.yce{bottom:378.989733pt;}
.y142{bottom:379.850000pt;}
.y15{bottom:380.758800pt;}
.y117{bottom:383.752667pt;}
.y62{bottom:383.752933pt;}
.y87{bottom:383.753067pt;}
.y4d{bottom:383.753200pt;}
.y141{bottom:391.183333pt;}
.yc9{bottom:391.414133pt;}
.y14{bottom:392.092133pt;}
.y116{bottom:400.836667pt;}
.y5b{bottom:400.836933pt;}
.y4c{bottom:400.837200pt;}
.y140{bottom:402.516667pt;}
.y13{bottom:403.425467pt;}
.y13f{bottom:413.850000pt;}
.y12{bottom:414.758800pt;}
.y115{bottom:417.920667pt;}
.y5a{bottom:417.920933pt;}
.y4b{bottom:417.921200pt;}
.y13e{bottom:425.183333pt;}
.y11{bottom:426.092133pt;}
.yca{bottom:430.724400pt;}
.y114{bottom:435.004667pt;}
.y59{bottom:435.004933pt;}
.y4a{bottom:435.005067pt;}
.y13d{bottom:436.516667pt;}
.y13c{bottom:447.850000pt;}
.y10{bottom:448.758800pt;}
.y113{bottom:452.088667pt;}
.y58{bottom:452.088933pt;}
.y49{bottom:452.089200pt;}
.y13b{bottom:459.183333pt;}
.y112{bottom:469.172667pt;}
.y57{bottom:469.172800pt;}
.y86{bottom:469.172933pt;}
.y48{bottom:469.173200pt;}
.ycb{bottom:470.039333pt;}
.y13a{bottom:470.516667pt;}
.yf{bottom:471.425467pt;}
.y139{bottom:481.850000pt;}
.ye{bottom:482.758800pt;}
.y111{bottom:486.256667pt;}
.y56{bottom:486.256933pt;}
.y47{bottom:486.257200pt;}
.y138{bottom:493.183333pt;}
.yd{bottom:494.092133pt;}
.ycf{bottom:497.651333pt;}
.y110{bottom:503.340667pt;}
.y55{bottom:503.340800pt;}
.y46{bottom:503.341200pt;}
.y137{bottom:504.516667pt;}
.yc{bottom:505.425467pt;}
.ya3{bottom:511.730267pt;}
.y136{bottom:515.850000pt;}
.yb{bottom:516.758800pt;}
.y10f{bottom:520.424667pt;}
.y45{bottom:520.425067pt;}
.ya2{bottom:523.063600pt;}
.y135{bottom:527.183333pt;}
.ya{bottom:528.092133pt;}
.ya1{bottom:534.396933pt;}
.y83{bottom:536.504400pt;}
.y10e{bottom:537.508667pt;}
.yfc{bottom:537.508933pt;}
.y44{bottom:537.509200pt;}
.yde{bottom:537.638267pt;}
.y134{bottom:538.516667pt;}
.y9{bottom:539.425467pt;}
.ya0{bottom:545.730267pt;}
.y82{bottom:547.837733pt;}
.ydd{bottom:548.971600pt;}
.y133{bottom:549.850000pt;}
.y10d{bottom:554.592667pt;}
.yfb{bottom:554.592933pt;}
.y43{bottom:554.593200pt;}
.y81{bottom:559.171067pt;}
.ydc{bottom:560.304933pt;}
.y132{bottom:561.183333pt;}
.y9c{bottom:564.203067pt;}
.y80{bottom:570.504400pt;}
.ydb{bottom:571.638267pt;}
.y10c{bottom:571.676667pt;}
.yfa{bottom:571.677067pt;}
.y42{bottom:571.677200pt;}
.y131{bottom:572.516667pt;}
.y96{bottom:583.442933pt;}
.y130{bottom:583.850000pt;}
.y10b{bottom:588.760667pt;}
.yf9{bottom:588.760933pt;}
.y41{bottom:588.761200pt;}
.yb2{bottom:588.761333pt;}
.y12f{bottom:595.183333pt;}
.y75{bottom:595.731333pt;}
.yb8{bottom:595.800533pt;}
.y9d{bottom:599.419867pt;}
.y10a{bottom:605.844667pt;}
.yf8{bottom:605.844933pt;}
.y40{bottom:605.845200pt;}
.y12e{bottom:606.516667pt;}
.y71{bottom:609.680533pt;}
.yb4{bottom:609.889200pt;}
.y9a{bottom:616.567867pt;}
.y12d{bottom:617.850000pt;}
.y97{bottom:622.320533pt;}
.y109{bottom:622.928667pt;}
.yf7{bottom:622.928933pt;}
.y3f{bottom:622.929200pt;}
.y72{bottom:624.592267pt;}
.y12c{bottom:629.183333pt;}
.yc7{bottom:638.369600pt;}
.yb5{bottom:638.432000pt;}
.y108{bottom:640.012667pt;}
.yf6{bottom:640.012933pt;}
.y3e{bottom:640.013200pt;}
.y12b{bottom:640.516667pt;}
.y12a{bottom:651.850000pt;}
.y73{bottom:652.255467pt;}
.yc6{bottom:653.554933pt;}
.y98{bottom:656.866000pt;}
.y107{bottom:657.096667pt;}
.yf5{bottom:657.097067pt;}
.y3d{bottom:657.097200pt;}
.yb6{bottom:659.592800pt;}
.y129{bottom:663.183333pt;}
.y8{bottom:664.144533pt;}
.yc5{bottom:668.741200pt;}
.y106{bottom:674.180667pt;}
.yf4{bottom:674.180933pt;}
.y3c{bottom:674.181200pt;}
.y128{bottom:674.516667pt;}
.y7{bottom:678.877867pt;}
.y74{bottom:679.848933pt;}
.yb7{bottom:680.753467pt;}
.yc4{bottom:683.927467pt;}
.y127{bottom:685.850000pt;}
.y77{bottom:686.189733pt;}
.y6{bottom:686.811200pt;}
.yc1{bottom:687.157867pt;}
.y105{bottom:691.264667pt;}
.yf3{bottom:691.264933pt;}
.y3b{bottom:691.265200pt;}
.y99{bottom:691.427600pt;}
.y9b{bottom:697.164267pt;}
.y126{bottom:697.183333pt;}
.yc3{bottom:699.113733pt;}
.y5{bottom:701.544533pt;}
.y104{bottom:708.348667pt;}
.yf2{bottom:708.348933pt;}
.y3a{bottom:708.349067pt;}
.y125{bottom:708.516667pt;}
.y69{bottom:708.835733pt;}
.yb9{bottom:710.028400pt;}
.y124{bottom:719.850000pt;}
.y9e{bottom:720.466784pt;}
.y4{bottom:720.816400pt;}
.y92{bottom:723.881067pt;}
.y103{bottom:725.432667pt;}
.yf1{bottom:725.432933pt;}
.y39{bottom:725.433067pt;}
.y123{bottom:731.183333pt;}
.y6a{bottom:733.779600pt;}
.yba{bottom:735.220000pt;}
.y3{bottom:737.883067pt;}
.y94{bottom:741.700400pt;}
.y102{bottom:742.516667pt;}
.yf0{bottom:742.516933pt;}
.y38{bottom:742.517067pt;}
.y70{bottom:743.738800pt;}
.yc0{bottom:745.277733pt;}
.y7f{bottom:745.916933pt;}
.y8f{bottom:747.538933pt;}
.y6b{bottom:758.718267pt;}
.y101{bottom:759.600800pt;}
.yef{bottom:759.600933pt;}
.y37{bottom:759.601067pt;}
.ybb{bottom:760.406667pt;}
.y7e{bottom:760.954667pt;}
.y7d{bottom:775.991333pt;}
.y100{bottom:776.684800pt;}
.yee{bottom:776.684933pt;}
.y36{bottom:776.685067pt;}
.y90{bottom:781.998533pt;}
.y6c{bottom:783.599733pt;}
.y2{bottom:785.186000pt;}
.ybc{bottom:785.535867pt;}
.y7c{bottom:791.028000pt;}
.yff{bottom:793.768800pt;}
.yed{bottom:793.768933pt;}
.y35{bottom:793.769067pt;}
.y7b{bottom:806.064667pt;}
.y6d{bottom:808.538267pt;}
.y1{bottom:809.752667pt;}
.ybd{bottom:810.721467pt;}
.yec{bottom:810.852800pt;}
.y34{bottom:810.853067pt;}
.y91{bottom:816.552133pt;}
.y7a{bottom:821.102400pt;}
.y95{bottom:822.296667pt;}
.yeb{bottom:827.936800pt;}
.y33{bottom:827.937067pt;}
.y93{bottom:829.040400pt;}
.y6e{bottom:833.483333pt;}
.ybe{bottom:835.914133pt;}
.y79{bottom:836.139067pt;}
.yea{bottom:845.020800pt;}
.y32{bottom:845.020933pt;}
.y9f{bottom:845.438933pt;}
.y6f{bottom:858.359600pt;}
.y78{bottom:860.660480pt;}
.ybf{bottom:861.037333pt;}
.ye9{bottom:862.104800pt;}
.y31{bottom:862.104933pt;}
.yc2{bottom:863.358875pt;}
.y8d{bottom:866.926800pt;}
.y8a{bottom:872.749333pt;}
.ye8{bottom:879.188800pt;}
.y30{bottom:879.188933pt;}
.y64{bottom:882.697867pt;}
.yae{bottom:885.617333pt;}
.ye7{bottom:896.272800pt;}
.y2f{bottom:896.272933pt;}
.y65{bottom:902.988800pt;}
.yaf{bottom:906.109600pt;}
.y8b{bottom:907.216933pt;}
.ye6{bottom:913.356800pt;}
.y2e{bottom:913.356933pt;}
.y66{bottom:923.278933pt;}
.yb0{bottom:926.601200pt;}
.ye5{bottom:930.440800pt;}
.y2d{bottom:930.440933pt;}
.y8c{bottom:941.778267pt;}
.y67{bottom:943.570000pt;}
.yb1{bottom:947.093333pt;}
.y8e{bottom:947.507333pt;}
.ye4{bottom:947.524800pt;}
.y2c{bottom:947.524933pt;}
.y1f{bottom:953.037067pt;}
.y76{bottom:953.290667pt;}
.y68{bottom:963.860133pt;}
.ye3{bottom:964.608667pt;}
.yfe{bottom:964.608800pt;}
.y2b{bottom:964.608933pt;}
.y1e{bottom:970.103733pt;}
.y1d{bottom:987.170533pt;}
.y1c{bottom:1004.237200pt;}
.y29{bottom:1006.986800pt;}
.y84{bottom:1006.986933pt;}
.ye2{bottom:1006.998133pt;}
.y54{bottom:1006.998267pt;}
.h19{height:21.233068pt;}
.h9{height:21.363173pt;}
.h14{height:21.575036pt;}
.h4{height:26.746667pt;}
.hf{height:29.452485pt;}
.ha{height:34.181077pt;}
.h15{height:34.520294pt;}
.h16{height:38.219444pt;}
.h7{height:38.453712pt;}
.h11{height:38.835380pt;}
.h5{height:40.346667pt;}
.h6{height:40.538667pt;}
.h10{height:41.272000pt;}
.h18{height:42.466137pt;}
.h8{height:42.725954pt;}
.h13{height:43.150466pt;}
.h3{height:52.213333pt;}
.hb{height:53.014081pt;}
.hd{height:58.904578pt;}
.h2{height:63.013333pt;}
.he{height:108.138178pt;}
.hc{height:108.857644pt;}
.h17{height:378.138667pt;}
.h12{height:390.137333pt;}
.h1{height:1080.666667pt;}
.h0{height:1080.945333pt;}
.w2{width:638.740000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:68.031467pt;}
.xf{left:86.929067pt;}
.x3f{left:95.720400pt;}
.x35{left:99.375467pt;}
.x12{left:105.826800pt;}
.x9{left:106.859600pt;}
.x19{left:111.080667pt;}
.x18{left:117.659067pt;}
.x5{left:123.060800pt;}
.x1{left:124.801600pt;}
.x7{left:131.860267pt;}
.x46{left:135.218667pt;}
.x1a{left:141.516267pt;}
.x27{left:146.005067pt;}
.x17{left:147.008400pt;}
.x39{left:150.026533pt;}
.x31{left:152.079067pt;}
.x23{left:155.082400pt;}
.x37{left:156.664667pt;}
.x32{left:162.579067pt;}
.x34{left:163.983067pt;}
.x25{left:165.572533pt;}
.x29{left:167.976533pt;}
.x3{left:169.106267pt;}
.x24{left:175.563200pt;}
.x3e{left:182.649733pt;}
.x36{left:184.417733pt;}
.x1b{left:187.889333pt;}
.x3d{left:189.857733pt;}
.x28{left:192.711200pt;}
.x30{left:194.743067pt;}
.x42{left:198.140933pt;}
.x40{left:206.181733pt;}
.x2f{left:208.637067pt;}
.x3c{left:214.346267pt;}
.x3b{left:233.630000pt;}
.x6{left:239.086667pt;}
.x2c{left:241.751200pt;}
.x2{left:253.808800pt;}
.x33{left:271.089067pt;}
.x2a{left:275.219733pt;}
.x16{left:285.559067pt;}
.x8{left:288.210000pt;}
.x20{left:296.351333pt;}
.x2e{left:300.110400pt;}
.x4{left:303.858000pt;}
.x45{left:323.986000pt;}
.x14{left:344.062667pt;}
.x15{left:346.898000pt;}
.x41{left:378.203467pt;}
.x2b{left:380.948533pt;}
.x38{left:384.335867pt;}
.x21{left:392.737333pt;}
.x10{left:400.660667pt;}
.x1e{left:406.562667pt;}
.x1d{left:411.877333pt;}
.x11{left:419.558267pt;}
.x22{left:435.605733pt;}
.x13{left:438.425067pt;}
.xb{left:477.034933pt;}
.xd{left:501.438933pt;}
.x44{left:538.875867pt;}
.xa{left:571.188000pt;}
.xc{left:603.694800pt;}
.x1f{left:634.463087pt;}
.x1c{left:637.485733pt;}
.x2d{left:645.034451pt;}
.x43{left:648.234444pt;}
.x26{left:649.204667pt;}
.x3a{left:666.832867pt;}
}




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