
    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_23ecfd3d500cb4e2b059b848.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_75b95fff72e331628d95fdb7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ebc3264a2a72a17e3db5e878.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1d96eb5c385dafc8dfa541d2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_22129b1de9f88d5accc47b0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_80856cc838d0df9564239f1f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_18d11796aa451e68de0c53c9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ce079b26e57627c87eeaacf8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_db1e04ff6b5abd890b9b0df6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_c78d93342f15f06e4698f309.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fce3b8be0cff7fcd90225e39.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_c1ef487bf55dbb94327edda6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_aa8d55922b87b51af693881a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.021680px;}
.ls9{letter-spacing:0.243436px;}
.ls8{letter-spacing:0.243457px;}
.ls3{letter-spacing:0.573718px;}
.ls4{letter-spacing:0.576058px;}
.lsa{letter-spacing:0.578398px;}
.ls6{letter-spacing:1.984919px;}
.ls1{letter-spacing:2.634119px;}
.ls7{letter-spacing:2.655239px;}
.ls2{letter-spacing:4.684919px;}
.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:-25.060862px;}
.ws3{word-spacing:-15.869498px;}
.ws0{word-spacing:-15.626041px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.151550px;}
._0{width:1.082995px;}
._2{width:2.298275px;}
._3{width:3.733947px;}
._6{width:5.181020px;}
._4{width:6.231846px;}
._7{width:7.280656px;}
._b{width:8.510061px;}
._11{width:9.624214px;}
._12{width:10.711234px;}
._a{width:11.813846px;}
._8{width:13.233104px;}
._e{width:14.379311px;}
._5{width:17.176510px;}
._20{width:19.012884px;}
._1f{width:20.012997px;}
._14{width:21.293030px;}
._15{width:22.625287px;}
._d{width:23.650043px;}
._c{width:24.905157px;}
._9{width:26.437937px;}
._f{width:27.977888px;}
._13{width:29.772236px;}
._19{width:30.969419px;}
._1a{width:32.080108px;}
._29{width:34.079922px;}
._27{width:35.090259px;}
._26{width:36.136208px;}
._21{width:38.225551px;}
._1b{width:40.547624px;}
._1e{width:41.802240px;}
._28{width:43.204083px;}
._1c{width:45.381437px;}
._24{width:46.592795px;}
._2a{width:47.780601px;}
._2b{width:49.442156px;}
._2c{width:51.120866px;}
._1d{width:52.858048px;}
._23{width:54.608452px;}
._22{width:55.687219px;}
._31{width:57.368350px;}
._25{width:58.831975px;}
._2e{width:79.406197px;}
._34{width:82.431709px;}
._10{width:83.886944px;}
._16{width:91.588607px;}
._2d{width:96.986818px;}
._2f{width:100.035165px;}
._18{width:108.738835px;}
._17{width:109.753801px;}
._35{width:118.844833px;}
._32{width:751.249605px;}
._30{width:792.673510px;}
._33{width:858.182808px;}
.fc5{color:rgb(57,76,168);}
.fc4{color:rgb(93,136,206);}
.fc2{color:rgb(112,28,34);}
.fc1{color:rgb(52,107,189);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:28.442940px;}
.fs7{font-size:50.791080px;}
.fs0{font-size:56.208780px;}
.fs1{font-size:62.303400px;}
.fs3{font-size:67.721400px;}
.fs5{font-size:79.233600px;}
.fs4{font-size:90.069000px;}
.fs6{font-size:123.930000px;}
.y0{bottom:0.000000px;}
.y62{bottom:3.217500px;}
.y60{bottom:4.236000px;}
.y11{bottom:4.401000px;}
.y9{bottom:5.250000px;}
.y6{bottom:7.958100px;}
.yf{bottom:22.179000px;}
.yc{bottom:28.950000px;}
.ye{bottom:38.601000px;}
.ya{bottom:39.311700px;}
.y5e{bottom:41.005050px;}
.y5d{bottom:48.624000px;}
.y8{bottom:54.040500px;}
.y4{bottom:58.272000px;}
.y5c{bottom:69.618150px;}
.y16b{bottom:80.282100px;}
.y5{bottom:80.790300px;}
.y3{bottom:83.330250px;}
.y1a2{bottom:91.116600px;}
.y16a{bottom:96.535350px;}
.y42{bottom:105.339450px;}
.y1a1{bottom:107.369850px;}
.y12f{bottom:107.537700px;}
.yf6{bottom:108.388950px;}
.ybc{bottom:109.739550px;}
.y169{bottom:112.448850px;}
.y85{bottom:112.618050px;}
.y41{bottom:121.593300px;}
.y12e{bottom:123.792750px;}
.yf5{bottom:124.471800px;}
.ybb{bottom:125.993400px;}
.y168{bottom:128.703900px;}
.y5b{bottom:136.661400px;}
.y40{bottom:137.846550px;}
.y12d{bottom:140.044350px;}
.y1a0{bottom:140.553300px;}
.yf4{bottom:140.725650px;}
.yba{bottom:142.072050px;}
.y167{bottom:144.950250px;}
.y84{bottom:145.796100px;}
.y3f{bottom:154.092900px;}
.y12c{bottom:156.292350px;}
.y19f{bottom:156.970050px;}
.yf3{bottom:156.972000px;}
.y166{bottom:161.203500px;}
.y5a{bottom:169.499700px;}
.y3e{bottom:170.347950px;}
.y12b{bottom:172.544550px;}
.y19e{bottom:173.054550px;}
.yf2{bottom:173.225250px;}
.yb9{bottom:175.255500px;}
.y165{bottom:177.455700px;}
.y83{bottom:178.979550px;}
.y3d{bottom:186.429600px;}
.y7{bottom:188.292000px;}
.y12a{bottom:188.629050px;}
.yf1{bottom:189.478500px;}
.yb8{bottom:191.507700px;}
.y82{bottom:195.232800px;}
.y1cb{bottom:195.403500px;}
.y3c{bottom:202.684650px;}
.y59{bottom:202.684800px;}
.yf0{bottom:205.563000px;}
.y19d{bottom:206.068050px;}
.yb7{bottom:207.760950px;}
.y164{bottom:210.640200px;}
.y58{bottom:218.936400px;}
.y3b{bottom:218.936850px;}
.y129{bottom:221.812500px;}
.yef{bottom:221.815200px;}
.y19c{bottom:222.321300px;}
.yb6{bottom:224.014200px;}
.y163{bottom:226.723650px;}
.y81{bottom:228.416250px;}
.y1ca{bottom:228.588000px;}
.y57{bottom:235.190250px;}
.y3a{bottom:235.358850px;}
.y128{bottom:238.064700px;}
.y19b{bottom:238.574550px;}
.yb5{bottom:240.267450px;}
.y162{bottom:242.976900px;}
.y56{bottom:251.612250px;}
.y127{bottom:254.361900px;}
.y19a{bottom:255.038850px;}
.yee{bottom:255.040800px;}
.yb4{bottom:256.393050px;}
.y161{bottom:259.272450px;}
.y80{bottom:261.472500px;}
.y1c9{bottom:261.981000px;}
.y55{bottom:267.739050px;}
.y39{bottom:268.415700px;}
.y126{bottom:270.613500px;}
.yed{bottom:271.294050px;}
.yb3{bottom:272.646300px;}
.y160{bottom:275.524650px;}
.y54{bottom:283.822500px;}
.y38{bottom:284.667900px;}
.y125{bottom:286.867350px;}
.yec{bottom:287.546250px;}
.y199{bottom:288.053550px;}
.yb2{bottom:288.900150px;}
.y15f{bottom:291.779700px;}
.y7f{bottom:294.657600px;}
.y1c8{bottom:294.827100px;}
.y53{bottom:300.074700px;}
.y37{bottom:300.752400px;}
.y124{bottom:302.950200px;}
.yeb{bottom:303.801300px;}
.y198{bottom:304.305750px;}
.yb1{bottom:305.153400px;}
.y15e{bottom:308.031900px;}
.y1c7{bottom:311.079300px;}
.y36{bottom:317.005650px;}
.y123{bottom:319.205250px;}
.yea{bottom:319.884150px;}
.y197{bottom:320.560800px;}
.yb0{bottom:321.405600px;}
.y15d{bottom:324.116400px;}
.y7e{bottom:327.839250px;}
.y52{bottom:333.259200px;}
.y35{bottom:333.429450px;}
.y122{bottom:335.457450px;}
.ye9{bottom:336.136350px;}
.y196{bottom:336.643650px;}
.yaf{bottom:337.658850px;}
.y15c{bottom:340.368600px;}
.y1c6{bottom:344.432550px;}
.y51{bottom:349.511400px;}
.y34{bottom:349.681050px;}
.y121{bottom:351.709650px;}
.ye8{bottom:352.389600px;}
.yae{bottom:353.743350px;}
.y15b{bottom:356.623050px;}
.y7d{bottom:361.022700px;}
.y50{bottom:365.765850px;}
.y33{bottom:365.766150px;}
.y120{bottom:367.964100px;}
.ye7{bottom:368.642850px;}
.y195{bottom:369.825900px;}
.yad{bottom:369.995550px;}
.y15a{bottom:372.875250px;}
.y1c5{bottom:377.616000px;}
.y32{bottom:382.017750px;}
.y4f{bottom:382.018050px;}
.y11f{bottom:384.216300px;}
.ye6{bottom:384.896100px;}
.y194{bottom:386.080950px;}
.yac{bottom:386.248800px;}
.y159{bottom:389.127450px;}
.y7c{bottom:394.037400px;}
.y31{bottom:398.101200px;}
.y4e{bottom:398.101500px;}
.y11e{bottom:400.301400px;}
.ye5{bottom:401.148300px;}
.y193{bottom:402.333150px;}
.yab{bottom:402.502050px;}
.y158{bottom:405.382500px;}
.y7b{bottom:410.290650px;}
.y1c4{bottom:412.833750px;}
.y30{bottom:414.354450px;}
.y4d{bottom:414.354750px;}
.y11d{bottom:416.553600px;}
.ye4{bottom:417.232800px;}
.y192{bottom:418.417650px;}
.yaa{bottom:418.754250px;}
.y157{bottom:421.634700px;}
.y2f{bottom:430.607700px;}
.y4c{bottom:430.608000px;}
.y11c{bottom:432.808650px;}
.ye3{bottom:433.486050px;}
.y191{bottom:434.669850px;}
.ya9{bottom:435.007500px;}
.y156{bottom:437.887950px;}
.y7a{bottom:443.474100px;}
.y1c3{bottom:446.185950px;}
.y2e{bottom:446.860950px;}
.y4b{bottom:446.861250px;}
.y11b{bottom:449.060850px;}
.ye2{bottom:449.738250px;}
.ya8{bottom:451.090950px;}
.y155{bottom:453.971400px;}
.y1c2{bottom:462.439200px;}
.y4a{bottom:463.112850px;}
.y2d{bottom:463.113150px;}
.y11a{bottom:465.313050px;}
.ye1{bottom:465.991500px;}
.ya7{bottom:467.346000px;}
.y190{bottom:468.361800px;}
.y79{bottom:476.488800px;}
.y1c1{bottom:478.692450px;}
.y2c{bottom:479.197650px;}
.y49{bottom:479.197950px;}
.y119{bottom:481.567500px;}
.ye0{bottom:482.244750px;}
.ya6{bottom:483.597600px;}
.y154{bottom:487.154850px;}
.y1c0{bottom:495.115050px;}
.y2b{bottom:495.450900px;}
.y48{bottom:495.451200px;}
.y118{bottom:497.650950px;}
.ydf{bottom:498.498000px;}
.y18f{bottom:502.560600px;}
.y153{bottom:503.408100px;}
.y78{bottom:509.672250px;}
.y1bf{bottom:511.029150px;}
.y2a{bottom:511.703100px;}
.y47{bottom:511.703400px;}
.y117{bottom:513.904200px;}
.yde{bottom:514.581450px;}
.ya5{bottom:516.781050px;}
.y18e{bottom:518.813850px;}
.y152{bottom:519.491550px;}
.y29{bottom:527.985750px;}
.y46{bottom:527.986050px;}
.y116{bottom:530.186250px;}
.ydd{bottom:530.862900px;}
.ya4{bottom:533.063100px;}
.y18d{bottom:535.095300px;}
.y151{bottom:535.774200px;}
.y77{bottom:542.883150px;}
.y28{bottom:544.237950px;}
.y45{bottom:544.238250px;}
.y1be{bottom:544.240650px;}
.ydc{bottom:547.116750px;}
.ya3{bottom:549.145950px;}
.y18c{bottom:551.347500px;}
.y150{bottom:552.026400px;}
.y27{bottom:560.490150px;}
.y44{bottom:560.490450px;}
.y1bd{bottom:560.492850px;}
.y115{bottom:563.367900px;}
.ydb{bottom:563.368350px;}
.ya2{bottom:565.401000px;}
.y18b{bottom:567.600750px;}
.y14f{bottom:568.279650px;}
.y76{bottom:576.066600px;}
.y26{bottom:576.574650px;}
.y43{bottom:576.574950px;}
.y1bc{bottom:576.747900px;}
.y114{bottom:579.622950px;}
.yda{bottom:579.623400px;}
.ya1{bottom:581.653200px;}
.y18a{bottom:583.854600px;}
.y14e{bottom:584.532900px;}
.y1bb{bottom:593.000100px;}
.y113{bottom:595.706400px;}
.yd9{bottom:595.706850px;}
.ya0{bottom:597.905400px;}
.y189{bottom:599.939100px;}
.y14d{bottom:600.785100px;}
.y75{bottom:609.081300px;}
.y25{bottom:609.589950px;}
.y112{bottom:611.959650px;}
.y9f{bottom:614.160450px;}
.y188{bottom:616.191300px;}
.y14c{bottom:616.869600px;}
.y1ba{bottom:626.182950px;}
.y111{bottom:628.211850px;}
.yd8{bottom:628.889100px;}
.y9e{bottom:630.412050px;}
.y187{bottom:632.444550px;}
.y14b{bottom:633.121800px;}
.y24{bottom:641.418600px;}
.y74{bottom:642.264750px;}
.y1b9{bottom:642.268050px;}
.y110{bottom:644.465100px;}
.yd7{bottom:645.143550px;}
.y9d{bottom:646.497150px;}
.y186{bottom:648.697800px;}
.y14a{bottom:649.375050px;}
.y1b8{bottom:658.690050px;}
.y10f{bottom:660.718350px;}
.yd6{bottom:661.395750px;}
.y9c{bottom:662.748750px;}
.y185{bottom:664.950000px;}
.y149{bottom:665.628300px;}
.y23{bottom:674.433300px;}
.y1b7{bottom:674.774550px;}
.y73{bottom:675.616950px;}
.y10e{bottom:676.970550px;}
.yd5{bottom:677.650800px;}
.y9b{bottom:679.003800px;}
.y184{bottom:681.205050px;}
.y148{bottom:681.882150px;}
.y22{bottom:690.685500px;}
.y10d{bottom:693.055050px;}
.yd4{bottom:693.903000px;}
.y9a{bottom:695.256000px;}
.y183{bottom:697.286700px;}
.y147{bottom:698.135400px;}
.y21{bottom:706.938750px;}
.y1b6{bottom:707.956800px;}
.y72{bottom:708.800400px;}
.y10c{bottom:709.308900px;}
.yd3{bottom:709.987500px;}
.y99{bottom:711.508200px;}
.y182{bottom:713.541750px;}
.y20{bottom:723.192000px;}
.y1b5{bottom:724.378800px;}
.y10b{bottom:725.561100px;}
.yd2{bottom:726.239700px;}
.y98{bottom:727.592700px;}
.y181{bottom:729.793950px;}
.y146{bottom:731.148300px;}
.y1f{bottom:739.445250px;}
.y1b4{bottom:740.463300px;}
.y10a{bottom:741.814950px;}
.y71{bottom:741.815100px;}
.yd1{bottom:742.491300px;}
.y97{bottom:743.845950px;}
.y145{bottom:747.401550px;}
.y1e{bottom:755.528700px;}
.y109{bottom:758.068800px;}
.y70{bottom:758.237100px;}
.yd0{bottom:758.746350px;}
.y180{bottom:762.977400px;}
.y144{bottom:763.655400px;}
.y1d{bottom:771.781950px;}
.y1b3{bottom:773.476200px;}
.y108{bottom:774.322650px;}
.ycf{bottom:774.998550px;}
.y96{bottom:777.029400px;}
.y17f{bottom:779.230650px;}
.y143{bottom:779.907000px;}
.y1c{bottom:788.076300px;}
.y1b2{bottom:789.773400px;}
.y107{bottom:790.447650px;}
.y6f{bottom:791.125200px;}
.yce{bottom:791.294100px;}
.y95{bottom:793.324950px;}
.y17e{bottom:795.357450px;}
.y142{bottom:796.204200px;}
.y1b{bottom:804.331350px;}
.y1b1{bottom:806.025600px;}
.y106{bottom:806.701500px;}
.y6e{bottom:807.376800px;}
.y94{bottom:809.578200px;}
.y17d{bottom:811.609650px;}
.y141{bottom:812.286450px;}
.y1a{bottom:820.583550px;}
.y1b0{bottom:822.449400px;}
.ycd{bottom:824.308800px;}
.y93{bottom:825.830400px;}
.y17c{bottom:827.862900px;}
.y140{bottom:828.540900px;}
.y19{bottom:836.836800px;}
.y1af{bottom:838.532850px;}
.y105{bottom:839.884350px;}
.y6d{bottom:840.561900px;}
.ycc{bottom:840.562050px;}
.y92{bottom:841.913850px;}
.y17b{bottom:844.116150px;}
.y13f{bottom:844.793100px;}
.y18{bottom:852.920250px;}
.y104{bottom:856.136550px;}
.ycb{bottom:856.814250px;}
.y91{bottom:858.168900px;}
.y17a{bottom:860.368350px;}
.y13e{bottom:861.048150px;}
.y17{bottom:869.173500px;}
.y1ae{bottom:871.545750px;}
.y103{bottom:872.391600px;}
.yca{bottom:873.067500px;}
.y6c{bottom:873.744750px;}
.y90{bottom:874.421100px;}
.y179{bottom:876.623400px;}
.y13d{bottom:877.300350px;}
.y1ad{bottom:887.799000px;}
.y102{bottom:888.475050px;}
.yc9{bottom:889.320750px;}
.y6b{bottom:889.996950px;}
.y8f{bottom:890.674350px;}
.y178{bottom:892.706850px;}
.y13c{bottom:893.552550px;}
.y16{bottom:902.358000px;}
.y1ac{bottom:904.052250px;}
.y101{bottom:904.728300px;}
.yc8{bottom:905.404200px;}
.y8e{bottom:906.927600px;}
.y177{bottom:908.960100px;}
.y13b{bottom:909.637050px;}
.y1ab{bottom:920.305500px;}
.y100{bottom:920.980500px;}
.yc7{bottom:921.657450px;}
.y8d{bottom:923.180850px;}
.y6a{bottom:923.182050px;}
.y176{bottom:925.212300px;}
.y13a{bottom:925.889250px;}
.y15{bottom:936.217500px;}
.y1aa{bottom:936.728100px;}
.yc6{bottom:937.910700px;}
.y8c{bottom:939.264300px;}
.y175{bottom:941.465550px;}
.y139{bottom:942.143700px;}
.y1a9{bottom:952.812600px;}
.yc5{bottom:954.162900px;}
.yff{bottom:954.163950px;}
.y8b{bottom:955.516500px;}
.y69{bottom:956.194950px;}
.y138{bottom:958.395900px;}
.yc4{bottom:970.417950px;}
.yfe{bottom:970.419000px;}
.y8a{bottom:971.771550px;}
.y174{bottom:974.650050px;}
.y137{bottom:974.650950px;}
.y14{bottom:975.495750px;}
.y1a8{bottom:985.825500px;}
.yc3{bottom:986.670150px;}
.yfd{bottom:986.670600px;}
.y68{bottom:989.378400px;}
.y173{bottom:990.902250px;}
.y136{bottom:990.903150px;}
.y1a7{bottom:1002.247500px;}
.yc2{bottom:1002.754650px;}
.yfc{bottom:1002.755700px;}
.y89{bottom:1004.954400px;}
.y67{bottom:1005.633450px;}
.y172{bottom:1006.986750px;}
.y135{bottom:1006.987650px;}
.y1a6{bottom:1018.502550px;}
.yc1{bottom:1019.006850px;}
.yfb{bottom:1019.007300px;}
.y66{bottom:1022.055450px;}
.y171{bottom:1023.238950px;}
.y134{bottom:1023.239850px;}
.y13{bottom:1028.148750px;}
.y1a5{bottom:1034.584800px;}
.yc0{bottom:1035.260100px;}
.yfa{bottom:1035.260550px;}
.y88{bottom:1038.137850px;}
.y65{bottom:1038.138900px;}
.y170{bottom:1039.492200px;}
.y133{bottom:1039.493100px;}
.ybf{bottom:1051.513350px;}
.yf9{bottom:1051.513800px;}
.y16f{bottom:1055.773650px;}
.y132{bottom:1055.774550px;}
.y12{bottom:1063.731000px;}
.ybe{bottom:1067.794800px;}
.yf8{bottom:1067.795250px;}
.y1a4{bottom:1067.966250px;}
.y87{bottom:1071.349350px;}
.y64{bottom:1071.349800px;}
.y16e{bottom:1072.025850px;}
.y131{bottom:1072.026750px;}
.ybd{bottom:1084.047000px;}
.yf7{bottom:1084.047450px;}
.y1a3{bottom:1084.219500px;}
.y16d{bottom:1088.279100px;}
.y130{bottom:1088.280000px;}
.y16c{bottom:1104.363600px;}
.y86{bottom:1104.364050px;}
.y63{bottom:1104.364500px;}
.yd{bottom:1114.861500px;}
.y2{bottom:1118.247000px;}
.yb{bottom:1120.281000px;}
.y1{bottom:1135.684500px;}
.y10{bottom:1137.040500px;}
.y5f{bottom:1149.058500px;}
.y61{bottom:1151.769000px;}
.h14{height:16.084500px;}
.h13{height:18.795750px;}
.h11{height:18.957331px;}
.h3{height:20.721126px;}
.h7{height:26.071950px;}
.h10{height:36.977295px;}
.h1{height:37.463371px;}
.he{height:40.921529px;}
.h6{height:40.948974px;}
.h2{height:41.525459px;}
.hd{height:45.358579px;}
.h15{height:45.389000px;}
.ha{height:47.574000px;}
.h4{height:49.336098px;}
.hb{height:52.809504px;}
.hc{height:52.992150px;}
.h9{height:54.040500px;}
.h8{height:65.616674px;}
.hf{height:90.284941px;}
.h12{height:717.268500px;}
.h5{height:787.360500px;}
.h0{height:1188.000000px;}
.w2{width:46.559700px;}
.w6{width:50.792550px;}
.w7{width:53.499600px;}
.w4{width:69.753000px;}
.w5{width:538.527000px;}
.w8{width:717.508500px;}
.w1{width:840.931500px;}
.w3{width:840.960000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:8.296500px;}
.x9{left:10.022400px;}
.x4{left:32.167500px;}
.x14{left:34.371000px;}
.x1{left:38.535300px;}
.x7{left:59.764500px;}
.x2{left:69.922950px;}
.x8{left:108.458250px;}
.xb{left:110.943150px;}
.x16{left:120.761400px;}
.xf{left:125.159100px;}
.x10{left:153.262710px;}
.xc{left:186.786900px;}
.xa{left:195.926850px;}
.xe{left:371.369100px;}
.xd{left:428.282400px;}
.x11{left:443.857879px;}
.x12{left:494.644159px;}
.x15{left:824.524350px;}
.x5{left:826.553850px;}
.x13{left:828.673500px;}
.x3{left:832.906500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019271pt;}
.ls9{letter-spacing:0.216388pt;}
.ls8{letter-spacing:0.216406pt;}
.ls3{letter-spacing:0.509972pt;}
.ls4{letter-spacing:0.512052pt;}
.lsa{letter-spacing:0.514132pt;}
.ls6{letter-spacing:1.764373pt;}
.ls1{letter-spacing:2.341439pt;}
.ls7{letter-spacing:2.360213pt;}
.ls2{letter-spacing:4.164373pt;}
.ws1{word-spacing:-22.276322pt;}
.ws3{word-spacing:-14.106220pt;}
.ws0{word-spacing:-13.889814pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-1.023600pt;}
._0{width:0.962662pt;}
._2{width:2.042911pt;}
._3{width:3.319064pt;}
._6{width:4.605351pt;}
._4{width:5.539419pt;}
._7{width:6.471695pt;}
._b{width:7.564499pt;}
._11{width:8.554857pt;}
._12{width:9.521097pt;}
._a{width:10.501197pt;}
._8{width:11.762759pt;}
._e{width:12.781609pt;}
._5{width:15.268009pt;}
._20{width:16.900342pt;}
._1f{width:17.789330pt;}
._14{width:18.927138pt;}
._15{width:20.111366pt;}
._d{width:21.022260pt;}
._c{width:22.137917pt;}
._9{width:23.500389pt;}
._f{width:24.869234pt;}
._13{width:26.464210pt;}
._19{width:27.528373pt;}
._1a{width:28.515652pt;}
._29{width:30.293264pt;}
._27{width:31.191342pt;}
._26{width:32.121074pt;}
._21{width:33.978268pt;}
._1b{width:36.042332pt;}
._1e{width:37.157546pt;}
._28{width:38.403629pt;}
._1c{width:40.339055pt;}
._24{width:41.415818pt;}
._2a{width:42.471645pt;}
._2b{width:43.948583pt;}
._2c{width:45.440770pt;}
._1d{width:46.984932pt;}
._23{width:48.540847pt;}
._22{width:49.499750pt;}
._31{width:50.994089pt;}
._25{width:52.295089pt;}
._2e{width:70.583286pt;}
._34{width:73.272630pt;}
._10{width:74.566172pt;}
._16{width:81.412095pt;}
._2d{width:86.210505pt;}
._2f{width:88.920147pt;}
._18{width:96.656742pt;}
._17{width:97.558935pt;}
._35{width:105.639852pt;}
._32{width:667.777427pt;}
._30{width:704.598675pt;}
._33{width:762.829163pt;}
.fs2{font-size:25.282613pt;}
.fs7{font-size:45.147627pt;}
.fs0{font-size:49.963360pt;}
.fs1{font-size:55.380800pt;}
.fs3{font-size:60.196800pt;}
.fs5{font-size:70.429867pt;}
.fs4{font-size:80.061333pt;}
.fs6{font-size:110.160000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:2.860000pt;}
.y60{bottom:3.765333pt;}
.y11{bottom:3.912000pt;}
.y9{bottom:4.666667pt;}
.y6{bottom:7.073867pt;}
.yf{bottom:19.714667pt;}
.yc{bottom:25.733333pt;}
.ye{bottom:34.312000pt;}
.ya{bottom:34.943733pt;}
.y5e{bottom:36.448933pt;}
.y5d{bottom:43.221333pt;}
.y8{bottom:48.036000pt;}
.y4{bottom:51.797333pt;}
.y5c{bottom:61.882800pt;}
.y16b{bottom:71.361867pt;}
.y5{bottom:71.813600pt;}
.y3{bottom:74.071333pt;}
.y1a2{bottom:80.992533pt;}
.y16a{bottom:85.809200pt;}
.y42{bottom:93.635067pt;}
.y1a1{bottom:95.439867pt;}
.y12f{bottom:95.589067pt;}
.yf6{bottom:96.345733pt;}
.ybc{bottom:97.546267pt;}
.y169{bottom:99.954533pt;}
.y85{bottom:100.104933pt;}
.y41{bottom:108.082933pt;}
.y12e{bottom:110.038000pt;}
.yf5{bottom:110.641600pt;}
.ybb{bottom:111.994133pt;}
.y168{bottom:114.403467pt;}
.y5b{bottom:121.476800pt;}
.y40{bottom:122.530267pt;}
.y12d{bottom:124.483867pt;}
.y1a0{bottom:124.936267pt;}
.yf4{bottom:125.089467pt;}
.yba{bottom:126.286267pt;}
.y167{bottom:128.844667pt;}
.y84{bottom:129.596533pt;}
.y3f{bottom:136.971467pt;}
.y12c{bottom:138.926533pt;}
.y19f{bottom:139.528933pt;}
.yf3{bottom:139.530667pt;}
.y166{bottom:143.292000pt;}
.y5a{bottom:150.666400pt;}
.y3e{bottom:151.420400pt;}
.y12b{bottom:153.372933pt;}
.y19e{bottom:153.826267pt;}
.yf2{bottom:153.978000pt;}
.yb9{bottom:155.782667pt;}
.y165{bottom:157.738400pt;}
.y83{bottom:159.092933pt;}
.y3d{bottom:165.715200pt;}
.y7{bottom:167.370667pt;}
.y12a{bottom:167.670267pt;}
.yf1{bottom:168.425333pt;}
.yb8{bottom:170.229067pt;}
.y82{bottom:173.540267pt;}
.y1cb{bottom:173.692000pt;}
.y3c{bottom:180.164133pt;}
.y59{bottom:180.164267pt;}
.yf0{bottom:182.722667pt;}
.y19d{bottom:183.171600pt;}
.yb7{bottom:184.676400pt;}
.y164{bottom:187.235733pt;}
.y58{bottom:194.610133pt;}
.y3b{bottom:194.610533pt;}
.y129{bottom:197.166667pt;}
.yef{bottom:197.169067pt;}
.y19c{bottom:197.618933pt;}
.yb6{bottom:199.123733pt;}
.y163{bottom:201.532133pt;}
.y81{bottom:203.036667pt;}
.y1ca{bottom:203.189333pt;}
.y57{bottom:209.058000pt;}
.y3a{bottom:209.207867pt;}
.y128{bottom:211.613067pt;}
.y19b{bottom:212.066267pt;}
.yb5{bottom:213.571067pt;}
.y162{bottom:215.979467pt;}
.y56{bottom:223.655333pt;}
.y127{bottom:226.099467pt;}
.y19a{bottom:226.701200pt;}
.yee{bottom:226.702933pt;}
.yb4{bottom:227.904933pt;}
.y161{bottom:230.464400pt;}
.y80{bottom:232.420000pt;}
.y1c9{bottom:232.872000pt;}
.y55{bottom:237.990267pt;}
.y39{bottom:238.591733pt;}
.y126{bottom:240.545333pt;}
.yed{bottom:241.150267pt;}
.yb3{bottom:242.352267pt;}
.y160{bottom:244.910800pt;}
.y54{bottom:252.286667pt;}
.y38{bottom:253.038133pt;}
.y125{bottom:254.993200pt;}
.yec{bottom:255.596667pt;}
.y199{bottom:256.047600pt;}
.yb2{bottom:256.800133pt;}
.y15f{bottom:259.359733pt;}
.y7f{bottom:261.917867pt;}
.y1c8{bottom:262.068533pt;}
.y53{bottom:266.733067pt;}
.y37{bottom:267.335467pt;}
.y124{bottom:269.289067pt;}
.yeb{bottom:270.045600pt;}
.y198{bottom:270.494000pt;}
.yb1{bottom:271.247467pt;}
.y15e{bottom:273.806133pt;}
.y1c7{bottom:276.514933pt;}
.y36{bottom:281.782800pt;}
.y123{bottom:283.738000pt;}
.yea{bottom:284.341467pt;}
.y197{bottom:284.942933pt;}
.yb0{bottom:285.693867pt;}
.y15d{bottom:288.103467pt;}
.y7e{bottom:291.412667pt;}
.y52{bottom:296.230400pt;}
.y35{bottom:296.381733pt;}
.y122{bottom:298.184400pt;}
.ye9{bottom:298.787867pt;}
.y196{bottom:299.238800pt;}
.yaf{bottom:300.141200pt;}
.y15c{bottom:302.549867pt;}
.y1c6{bottom:306.162267pt;}
.y51{bottom:310.676800pt;}
.y34{bottom:310.827600pt;}
.y121{bottom:312.630800pt;}
.ye8{bottom:313.235200pt;}
.yae{bottom:314.438533pt;}
.y15b{bottom:316.998267pt;}
.y7d{bottom:320.909067pt;}
.y50{bottom:325.125200pt;}
.y33{bottom:325.125467pt;}
.y120{bottom:327.079200pt;}
.ye7{bottom:327.682533pt;}
.y195{bottom:328.734133pt;}
.yad{bottom:328.884933pt;}
.y15a{bottom:331.444667pt;}
.y1c5{bottom:335.658667pt;}
.y32{bottom:339.571333pt;}
.y4f{bottom:339.571600pt;}
.y11f{bottom:341.525600pt;}
.ye6{bottom:342.129867pt;}
.y194{bottom:343.183067pt;}
.yac{bottom:343.332267pt;}
.y159{bottom:345.891067pt;}
.y7c{bottom:350.255467pt;}
.y31{bottom:353.867733pt;}
.y4e{bottom:353.868000pt;}
.y11e{bottom:355.823467pt;}
.ye5{bottom:356.576267pt;}
.y193{bottom:357.629467pt;}
.yab{bottom:357.779600pt;}
.y158{bottom:360.340000pt;}
.y7b{bottom:364.702800pt;}
.y1c4{bottom:366.963333pt;}
.y30{bottom:368.315067pt;}
.y4d{bottom:368.315333pt;}
.y11d{bottom:370.269867pt;}
.ye4{bottom:370.873600pt;}
.y192{bottom:371.926800pt;}
.yaa{bottom:372.226000pt;}
.y157{bottom:374.786400pt;}
.y2f{bottom:382.762400pt;}
.y4c{bottom:382.762667pt;}
.y11c{bottom:384.718800pt;}
.ye3{bottom:385.320933pt;}
.y191{bottom:386.373200pt;}
.ya9{bottom:386.673333pt;}
.y156{bottom:389.233733pt;}
.y7a{bottom:394.199200pt;}
.y1c3{bottom:396.609733pt;}
.y2e{bottom:397.209733pt;}
.y4b{bottom:397.210000pt;}
.y11b{bottom:399.165200pt;}
.ye2{bottom:399.767333pt;}
.ya8{bottom:400.969733pt;}
.y155{bottom:403.530133pt;}
.y1c2{bottom:411.057067pt;}
.y4a{bottom:411.655867pt;}
.y2d{bottom:411.656133pt;}
.y11a{bottom:413.611600pt;}
.ye1{bottom:414.214667pt;}
.ya7{bottom:415.418667pt;}
.y190{bottom:416.321600pt;}
.y79{bottom:423.545600pt;}
.y1c1{bottom:425.504400pt;}
.y2c{bottom:425.953467pt;}
.y49{bottom:425.953733pt;}
.y119{bottom:428.060000pt;}
.ye0{bottom:428.662000pt;}
.ya6{bottom:429.864533pt;}
.y154{bottom:433.026533pt;}
.y1c0{bottom:440.102267pt;}
.y2b{bottom:440.400800pt;}
.y48{bottom:440.401067pt;}
.y118{bottom:442.356400pt;}
.ydf{bottom:443.109333pt;}
.y18f{bottom:446.720533pt;}
.y153{bottom:447.473867pt;}
.y78{bottom:453.042000pt;}
.y1bf{bottom:454.248133pt;}
.y2a{bottom:454.847200pt;}
.y47{bottom:454.847467pt;}
.y117{bottom:456.803733pt;}
.yde{bottom:457.405733pt;}
.ya5{bottom:459.360933pt;}
.y18e{bottom:461.167867pt;}
.y152{bottom:461.770267pt;}
.y29{bottom:469.320667pt;}
.y46{bottom:469.320933pt;}
.y116{bottom:471.276667pt;}
.ydd{bottom:471.878133pt;}
.ya4{bottom:473.833867pt;}
.y18d{bottom:475.640267pt;}
.y151{bottom:476.243733pt;}
.y77{bottom:482.562800pt;}
.y28{bottom:483.767067pt;}
.y45{bottom:483.767333pt;}
.y1be{bottom:483.769467pt;}
.ydc{bottom:486.326000pt;}
.ya3{bottom:488.129733pt;}
.y18c{bottom:490.086667pt;}
.y150{bottom:490.690133pt;}
.y27{bottom:498.213467pt;}
.y44{bottom:498.213733pt;}
.y1bd{bottom:498.215867pt;}
.y115{bottom:500.771467pt;}
.ydb{bottom:500.771867pt;}
.ya2{bottom:502.578667pt;}
.y18b{bottom:504.534000pt;}
.y14f{bottom:505.137467pt;}
.y76{bottom:512.059200pt;}
.y26{bottom:512.510800pt;}
.y43{bottom:512.511067pt;}
.y1bc{bottom:512.664800pt;}
.y114{bottom:515.220400pt;}
.yda{bottom:515.220800pt;}
.ya1{bottom:517.025067pt;}
.y18a{bottom:518.981867pt;}
.y14e{bottom:519.584800pt;}
.y1bb{bottom:527.111200pt;}
.y113{bottom:529.516800pt;}
.yd9{bottom:529.517200pt;}
.ya0{bottom:531.471467pt;}
.y189{bottom:533.279200pt;}
.y14d{bottom:534.031200pt;}
.y75{bottom:541.405600pt;}
.y25{bottom:541.857733pt;}
.y112{bottom:543.964133pt;}
.y9f{bottom:545.920400pt;}
.y188{bottom:547.725600pt;}
.y14c{bottom:548.328533pt;}
.y1ba{bottom:556.607067pt;}
.y111{bottom:558.410533pt;}
.yd8{bottom:559.012533pt;}
.y9e{bottom:560.366267pt;}
.y187{bottom:562.172933pt;}
.y14b{bottom:562.774933pt;}
.y24{bottom:570.149867pt;}
.y74{bottom:570.902000pt;}
.y1b9{bottom:570.904933pt;}
.y110{bottom:572.857867pt;}
.yd7{bottom:573.460933pt;}
.y9d{bottom:574.664133pt;}
.y186{bottom:576.620267pt;}
.y14a{bottom:577.222267pt;}
.y1b8{bottom:585.502267pt;}
.y10f{bottom:587.305200pt;}
.yd6{bottom:587.907333pt;}
.y9c{bottom:589.110000pt;}
.y185{bottom:591.066667pt;}
.y149{bottom:591.669600pt;}
.y23{bottom:599.496267pt;}
.y1b7{bottom:599.799600pt;}
.y73{bottom:600.548400pt;}
.y10e{bottom:601.751600pt;}
.yd5{bottom:602.356267pt;}
.y9b{bottom:603.558933pt;}
.y184{bottom:605.515600pt;}
.y148{bottom:606.117467pt;}
.y22{bottom:613.942667pt;}
.y10d{bottom:616.048933pt;}
.yd4{bottom:616.802667pt;}
.y9a{bottom:618.005333pt;}
.y183{bottom:619.810400pt;}
.y147{bottom:620.564800pt;}
.y21{bottom:628.390000pt;}
.y1b6{bottom:629.294933pt;}
.y72{bottom:630.044800pt;}
.y10c{bottom:630.496800pt;}
.yd3{bottom:631.100000pt;}
.y99{bottom:632.451733pt;}
.y182{bottom:634.259333pt;}
.y20{bottom:642.837333pt;}
.y1b5{bottom:643.892267pt;}
.y10b{bottom:644.943200pt;}
.yd2{bottom:645.546400pt;}
.y98{bottom:646.749067pt;}
.y181{bottom:648.705733pt;}
.y146{bottom:649.909600pt;}
.y1f{bottom:657.284667pt;}
.y1b4{bottom:658.189600pt;}
.y10a{bottom:659.391067pt;}
.y71{bottom:659.391200pt;}
.yd1{bottom:659.992267pt;}
.y97{bottom:661.196400pt;}
.y145{bottom:664.356933pt;}
.y1e{bottom:671.581067pt;}
.y109{bottom:673.838933pt;}
.y70{bottom:673.988533pt;}
.yd0{bottom:674.441200pt;}
.y180{bottom:678.202133pt;}
.y144{bottom:678.804800pt;}
.y1d{bottom:686.028400pt;}
.y1b3{bottom:687.534400pt;}
.y108{bottom:688.286800pt;}
.ycf{bottom:688.887600pt;}
.y96{bottom:690.692800pt;}
.y17f{bottom:692.649467pt;}
.y143{bottom:693.250667pt;}
.y1c{bottom:700.512267pt;}
.y1b2{bottom:702.020800pt;}
.y107{bottom:702.620133pt;}
.y6f{bottom:703.222400pt;}
.yce{bottom:703.372533pt;}
.y95{bottom:705.177733pt;}
.y17e{bottom:706.984400pt;}
.y142{bottom:707.737067pt;}
.y1b{bottom:714.961200pt;}
.y1b1{bottom:716.467200pt;}
.y106{bottom:717.068000pt;}
.y6e{bottom:717.668267pt;}
.y94{bottom:719.625067pt;}
.y17d{bottom:721.430800pt;}
.y141{bottom:722.032400pt;}
.y1a{bottom:729.407600pt;}
.y1b0{bottom:731.066133pt;}
.ycd{bottom:732.718933pt;}
.y93{bottom:734.071467pt;}
.y17c{bottom:735.878133pt;}
.y140{bottom:736.480800pt;}
.y19{bottom:743.854933pt;}
.y1af{bottom:745.362533pt;}
.y105{bottom:746.563867pt;}
.y6d{bottom:747.166133pt;}
.ycc{bottom:747.166267pt;}
.y92{bottom:748.367867pt;}
.y17b{bottom:750.325467pt;}
.y13f{bottom:750.927200pt;}
.y18{bottom:758.151333pt;}
.y104{bottom:761.010267pt;}
.ycb{bottom:761.612667pt;}
.y91{bottom:762.816800pt;}
.y17a{bottom:764.771867pt;}
.y13e{bottom:765.376133pt;}
.y17{bottom:772.598667pt;}
.y1ae{bottom:774.707333pt;}
.y103{bottom:775.459200pt;}
.yca{bottom:776.060000pt;}
.y6c{bottom:776.662000pt;}
.y90{bottom:777.263200pt;}
.y179{bottom:779.220800pt;}
.y13d{bottom:779.822533pt;}
.y1ad{bottom:789.154667pt;}
.y102{bottom:789.755600pt;}
.yc9{bottom:790.507333pt;}
.y6b{bottom:791.108400pt;}
.y8f{bottom:791.710533pt;}
.y178{bottom:793.517200pt;}
.y13c{bottom:794.268933pt;}
.y16{bottom:802.096000pt;}
.y1ac{bottom:803.602000pt;}
.y101{bottom:804.202933pt;}
.yc8{bottom:804.803733pt;}
.y8e{bottom:806.157867pt;}
.y177{bottom:807.964533pt;}
.y13b{bottom:808.566267pt;}
.y1ab{bottom:818.049333pt;}
.y100{bottom:818.649333pt;}
.yc7{bottom:819.251067pt;}
.y8d{bottom:820.605200pt;}
.y6a{bottom:820.606267pt;}
.y176{bottom:822.410933pt;}
.y13a{bottom:823.012667pt;}
.y15{bottom:832.193333pt;}
.y1aa{bottom:832.647200pt;}
.yc6{bottom:833.698400pt;}
.y8c{bottom:834.901600pt;}
.y175{bottom:836.858267pt;}
.y139{bottom:837.461067pt;}
.y1a9{bottom:846.944533pt;}
.yc5{bottom:848.144800pt;}
.yff{bottom:848.145733pt;}
.y8b{bottom:849.348000pt;}
.y69{bottom:849.951067pt;}
.y138{bottom:851.907467pt;}
.yc4{bottom:862.593733pt;}
.yfe{bottom:862.594667pt;}
.y8a{bottom:863.796933pt;}
.y174{bottom:866.355600pt;}
.y137{bottom:866.356400pt;}
.y14{bottom:867.107333pt;}
.y1a8{bottom:876.289333pt;}
.yc3{bottom:877.040133pt;}
.yfd{bottom:877.040533pt;}
.y68{bottom:879.447467pt;}
.y173{bottom:880.802000pt;}
.y136{bottom:880.802800pt;}
.y1a7{bottom:890.886667pt;}
.yc2{bottom:891.337467pt;}
.yfc{bottom:891.338400pt;}
.y89{bottom:893.292800pt;}
.y67{bottom:893.896400pt;}
.y172{bottom:895.099333pt;}
.y135{bottom:895.100133pt;}
.y1a6{bottom:905.335600pt;}
.yc1{bottom:905.783867pt;}
.yfb{bottom:905.784267pt;}
.y66{bottom:908.493733pt;}
.y171{bottom:909.545733pt;}
.y134{bottom:909.546533pt;}
.y13{bottom:913.910000pt;}
.y1a5{bottom:919.630933pt;}
.yc0{bottom:920.231200pt;}
.yfa{bottom:920.231600pt;}
.y88{bottom:922.789200pt;}
.y65{bottom:922.790133pt;}
.y170{bottom:923.993067pt;}
.y133{bottom:923.993867pt;}
.ybf{bottom:934.678533pt;}
.yf9{bottom:934.678933pt;}
.y16f{bottom:938.465467pt;}
.y132{bottom:938.466267pt;}
.y12{bottom:945.538667pt;}
.ybe{bottom:949.150933pt;}
.yf8{bottom:949.151333pt;}
.y1a4{bottom:949.303333pt;}
.y87{bottom:952.310533pt;}
.y64{bottom:952.310933pt;}
.y16e{bottom:952.911867pt;}
.y131{bottom:952.912667pt;}
.ybd{bottom:963.597333pt;}
.yf7{bottom:963.597733pt;}
.y1a3{bottom:963.750667pt;}
.y16d{bottom:967.359200pt;}
.y130{bottom:967.360000pt;}
.y16c{bottom:981.656533pt;}
.y86{bottom:981.656933pt;}
.y63{bottom:981.657333pt;}
.yd{bottom:990.988000pt;}
.y2{bottom:993.997333pt;}
.yb{bottom:995.805333pt;}
.y1{bottom:1009.497333pt;}
.y10{bottom:1010.702667pt;}
.y5f{bottom:1021.385333pt;}
.y61{bottom:1023.794667pt;}
.h14{height:14.297333pt;}
.h13{height:16.707333pt;}
.h11{height:16.850961pt;}
.h3{height:18.418779pt;}
.h7{height:23.175067pt;}
.h10{height:32.868707pt;}
.h1{height:33.300775pt;}
.he{height:36.374692pt;}
.h6{height:36.399088pt;}
.h2{height:36.911520pt;}
.hd{height:40.318737pt;}
.h15{height:40.345778pt;}
.ha{height:42.288000pt;}
.h4{height:43.854309pt;}
.hb{height:46.941781pt;}
.hc{height:47.104133pt;}
.h9{height:48.036000pt;}
.h8{height:58.325932pt;}
.hf{height:80.253281pt;}
.h12{height:637.572000pt;}
.h5{height:699.876000pt;}
.h0{height:1056.000000pt;}
.w2{width:41.386400pt;}
.w6{width:45.148933pt;}
.w7{width:47.555200pt;}
.w4{width:62.002667pt;}
.w5{width:478.690667pt;}
.w8{width:637.785333pt;}
.w1{width:747.494667pt;}
.w3{width:747.520000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.374667pt;}
.x9{left:8.908800pt;}
.x4{left:28.593333pt;}
.x14{left:30.552000pt;}
.x1{left:34.253600pt;}
.x7{left:53.124000pt;}
.x2{left:62.153733pt;}
.x8{left:96.407333pt;}
.xb{left:98.616133pt;}
.x16{left:107.343467pt;}
.xf{left:111.252533pt;}
.x10{left:136.233520pt;}
.xc{left:166.032800pt;}
.xa{left:174.157200pt;}
.xe{left:330.105867pt;}
.xd{left:380.695467pt;}
.x11{left:394.540337pt;}
.x12{left:439.683697pt;}
.x15{left:732.910533pt;}
.x5{left:734.714533pt;}
.x13{left:736.598667pt;}
.x3{left:740.361333pt;}
}




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