
    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_8b0fbe2091662d0e1dd78a09.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_9bea80641a4ce2b795fc6263.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_6a2868c94f4d5736ca4b7c2a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_fe46112675647530af73d574.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3507fa8f1cf7e0d7f57c1f58.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_3ac0ff239202b05404cca3d4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.935547;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_379ebc9da1170dc717c48cf7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.851562;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_0d0cfe45041bda50f3946859.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_968e46d5c20b4b198b0dc9e4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_3416138d60d00aba06a3c794.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_1090b6086020b6a42ea4645a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_fe98a7654a1e9ef163f2842b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.853027;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_a1917fa0d4d005174c96244a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.120605;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_975f64e07f44a5ebc847aedb.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.201172;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-5.760000px;}
.v5{vertical-align:-3.219583px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v1{vertical-align:18.000000px;}
.ls2d{letter-spacing:-1.236000px;}
.ls12{letter-spacing:-0.954000px;}
.ls21{letter-spacing:-0.786000px;}
.ls16{letter-spacing:-0.768000px;}
.ls9{letter-spacing:-0.702000px;}
.ls6{letter-spacing:-0.684000px;}
.ls11{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.518400px;}
.ls19{letter-spacing:-0.366000px;}
.ls3{letter-spacing:-0.322800px;}
.ls7{letter-spacing:-0.233400px;}
.ls23{letter-spacing:-0.161400px;}
.ls32{letter-spacing:-0.112685px;}
.ls10{letter-spacing:-0.083400px;}
.ls18{letter-spacing:-0.066000px;}
.ls1a{letter-spacing:-0.048960px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.010560px;}
.ls2{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.034560px;}
.ls24{letter-spacing:0.109440px;}
.ls17{letter-spacing:0.118080px;}
.lsd{letter-spacing:0.118200px;}
.ls2e{letter-spacing:0.125966px;}
.ls2f{letter-spacing:0.169565px;}
.ls27{letter-spacing:0.184200px;}
.ls25{letter-spacing:0.197280px;}
.ls1{letter-spacing:0.201600px;}
.ls4{letter-spacing:0.256200px;}
.lse{letter-spacing:0.277800px;}
.ls29{letter-spacing:0.328320px;}
.ls13{letter-spacing:0.331200px;}
.ls2b{letter-spacing:0.391680px;}
.ls22{letter-spacing:0.397200px;}
.ls15{letter-spacing:0.737280px;}
.ls1d{letter-spacing:0.869760px;}
.ls31{letter-spacing:1.290516px;}
.ls14{letter-spacing:1.457280px;}
.ls30{letter-spacing:1.487850px;}
.ls1f{letter-spacing:2.177280px;}
.ls8{letter-spacing:2.309760px;}
.ls1e{letter-spacing:2.897280px;}
.lsb{letter-spacing:3.029760px;}
.ls1b{letter-spacing:5.057280px;}
.ls1c{letter-spacing:5.237280px;}
.ls26{letter-spacing:5.760000px;}
.lsf{letter-spacing:6.318720px;}
.lsa{letter-spacing:6.629760px;}
.ls2a{letter-spacing:7.349760px;}
.ls2c{letter-spacing:13.985280px;}
.ls28{letter-spacing:44.201280px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.ws0{word-spacing:-18.984000px;}
.wsf{word-spacing:-15.304320px;}
.ws13{word-spacing:-15.286920px;}
.ws11{word-spacing:-15.226440px;}
.wsa{word-spacing:-15.220920px;}
.ws8{word-spacing:-15.137280px;}
.ws2{word-spacing:-15.120000px;}
.ws7{word-spacing:-15.102720px;}
.ws14{word-spacing:-15.036720px;}
.wsc{word-spacing:-15.019320px;}
.ws6{word-spacing:-14.869320px;}
.wsd{word-spacing:-14.502720px;}
.ws5{word-spacing:-14.418720px;}
.ws10{word-spacing:-14.400720px;}
.wse{word-spacing:-14.148720px;}
.ws12{word-spacing:-9.918480px;}
.wsb{word-spacing:-9.799080px;}
.ws3{word-spacing:-9.521280px;}
.ws4{word-spacing:-9.198480px;}
.ws15{word-spacing:-8.105301px;}
.ws16{word-spacing:-7.992616px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-7.353600px;}
._15{margin-left:-6.260958px;}
._3{margin-left:-4.284000px;}
._f{margin-left:-3.065280px;}
._1{margin-left:-1.996800px;}
._4{width:1.003200px;}
._5{width:2.848320px;}
._6{width:4.071360px;}
._0{width:5.587200px;}
._e{width:6.623520px;}
._10{width:7.683840px;}
._7{width:8.743680px;}
._8{width:9.826080px;}
._b{width:10.939200px;}
._9{width:12.121920px;}
._a{width:13.243200px;}
._c{width:16.957440px;}
._d{width:18.441120px;}
._11{width:20.136960px;}
._12{width:21.206400px;}
._13{width:22.256640px;}
._14{width:25.436160px;}
._17{width:34.809600px;}
._16{width:112.520235px;}
.fc4{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:35.549566px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:41.988733px;}
.fs7{font-size:48.427900px;}
.fs5{font-size:54.867067px;}
.fs9{font-size:64.525817px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y116{bottom:-44.403403px;}
.y115{bottom:-13.716757px;}
.y0{bottom:0.000000px;}
.y10f{bottom:1.609806px;}
.y11a{bottom:2.414696px;}
.y118{bottom:3.253130px;}
.y1d{bottom:4.500000px;}
.y10d{bottom:5.667815px;}
.yc{bottom:8.040000px;}
.y114{bottom:15.326570px;}
.y10b{bottom:18.512596px;}
.y11c{bottom:21.799280px;}
.y113{bottom:29.848231px;}
.y112{bottom:45.208333px;}
.y10a{bottom:49.970609px;}
.y1c{bottom:52.920000px;}
.y1b{bottom:57.420000px;}
.y111{bottom:60.541594px;}
.y15{bottom:77.715000px;}
.y109{bottom:81.462159px;}
.y14{bottom:99.795000px;}
.y47{bottom:106.020000px;}
.y108{bottom:112.148813px;}
.y7d{bottom:113.220000px;}
.y19{bottom:113.670000px;}
.y67{bottom:116.820000px;}
.ye9{bottom:123.840000px;}
.y10{bottom:133.935000px;}
.yae{bottom:134.100000px;}
.y46{bottom:134.460000px;}
.y18{bottom:135.750000px;}
.y7c{bottom:141.480000px;}
.yca{bottom:141.660000px;}
.y107{bottom:143.647070px;}
.y66{bottom:145.260000px;}
.ye8{bottom:152.100000px;}
.y16{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y17{bottom:157.830000px;}
.yad{bottom:162.540000px;}
.y45{bottom:162.900000px;}
.y8d{bottom:169.740000px;}
.y7b{bottom:169.920000px;}
.ye4{bottom:172.980000px;}
.y65{bottom:173.700000px;}
.y106{bottom:175.131913px;}
.ye7{bottom:180.540000px;}
.yac{bottom:191.010000px;}
.y44{bottom:191.190000px;}
.y102{bottom:195.150000px;}
.y8c{bottom:198.210000px;}
.y7a{bottom:198.390000px;}
.ye3{bottom:201.450000px;}
.y64{bottom:201.990000px;}
.y105{bottom:205.785030px;}
.ye6{bottom:209.010000px;}
.yab{bottom:219.450000px;}
.y43{bottom:219.630000px;}
.y101{bottom:223.590000px;}
.y42{bottom:224.130000px;}
.y8b{bottom:226.650000px;}
.y79{bottom:226.830000px;}
.ye2{bottom:229.890000px;}
.y63{bottom:230.430000px;}
.y104{bottom:237.283287px;}
.ye5{bottom:239.970000px;}
.yaa{bottom:247.710000px;}
.y41{bottom:248.070000px;}
.y100{bottom:251.850000px;}
.y78{bottom:255.090000px;}
.yc9{bottom:255.270000px;}
.ye1{bottom:258.330000px;}
.y62{bottom:258.870000px;}
.y147{bottom:266.970000px;}
.y103{bottom:267.963234px;}
.ya9{bottom:276.150000px;}
.y40{bottom:276.510000px;}
.yff{bottom:280.290000px;}
.y12b{bottom:282.270000px;}
.y77{bottom:283.530000px;}
.ye0{bottom:286.590000px;}
.y61{bottom:287.310000px;}
.y146{bottom:300.630000px;}
.ya8{bottom:304.590000px;}
.y3f{bottom:304.770000px;}
.yfe{bottom:308.730000px;}
.y12a{bottom:310.530000px;}
.y8a{bottom:311.790000px;}
.y76{bottom:311.970000px;}
.yc8{bottom:312.510000px;}
.ydf{bottom:315.030000px;}
.y60{bottom:315.570000px;}
.ya7{bottom:333.030000px;}
.y3e{bottom:333.210000px;}
.y145{bottom:334.290000px;}
.yfd{bottom:337.170000px;}
.y129{bottom:338.970000px;}
.y89{bottom:340.230000px;}
.y75{bottom:340.410000px;}
.yc7{bottom:341.490000px;}
.yde{bottom:343.470000px;}
.y13b{bottom:343.830000px;}
.y5f{bottom:344.010000px;}
.ya{bottom:344.680500px;}
.ya6{bottom:361.290000px;}
.y3d{bottom:361.650000px;}
.yfc{bottom:365.430000px;}
.y128{bottom:367.410000px;}
.y144{bottom:368.130000px;}
.y88{bottom:368.670000px;}
.y74{bottom:368.850000px;}
.yc6{bottom:370.110000px;}
.ydd{bottom:371.910000px;}
.y13a{bottom:372.270000px;}
.y5e{bottom:372.450000px;}
.yd{bottom:386.490000px;}
.ya5{bottom:389.730000px;}
.y3c{bottom:390.090000px;}
.yfb{bottom:393.870000px;}
.y9{bottom:395.689500px;}
.y127{bottom:395.850000px;}
.y73{bottom:397.110000px;}
.yc5{bottom:398.370000px;}
.ydc{bottom:400.170000px;}
.y139{bottom:400.530000px;}
.y5d{bottom:400.890000px;}
.y143{bottom:401.790000px;}
.ya4{bottom:418.170000px;}
.y3b{bottom:418.530000px;}
.yfa{bottom:422.310000px;}
.y126{bottom:424.110000px;}
.y87{bottom:425.370000px;}
.y72{bottom:425.550000px;}
.yc4{bottom:426.810000px;}
.ydb{bottom:428.610000px;}
.y138{bottom:428.970000px;}
.y5c{bottom:429.330000px;}
.yb{bottom:434.850000px;}
.y142{bottom:435.675000px;}
.ya3{bottom:446.655000px;}
.y8{bottom:446.698500px;}
.y3a{bottom:446.835000px;}
.yf9{bottom:450.795000px;}
.y125{bottom:452.595000px;}
.y86{bottom:453.855000px;}
.y71{bottom:454.035000px;}
.yc3{bottom:455.295000px;}
.yda{bottom:457.095000px;}
.y137{bottom:457.455000px;}
.y5b{bottom:457.635000px;}
.y141{bottom:469.335000px;}
.y39{bottom:475.275000px;}
.ya2{bottom:477.435000px;}
.yf8{bottom:479.235000px;}
.y124{bottom:481.035000px;}
.y85{bottom:482.295000px;}
.y70{bottom:482.475000px;}
.yc2{bottom:483.735000px;}
.yd9{bottom:485.535000px;}
.y136{bottom:485.895000px;}
.y5a{bottom:486.075000px;}
.y11{bottom:488.055000px;}
.y7{bottom:497.707500px;}
.y140{bottom:502.995000px;}
.y38{bottom:503.715000px;}
.ya1{bottom:507.135000px;}
.yf7{bottom:507.495000px;}
.y123{bottom:509.475000px;}
.y6f{bottom:510.735000px;}
.yc1{bottom:511.995000px;}
.yd8{bottom:513.975000px;}
.y135{bottom:514.155000px;}
.y59{bottom:514.515000px;}
.y37{bottom:532.155000px;}
.ya0{bottom:535.575000px;}
.yf6{bottom:535.935000px;}
.y13f{bottom:536.835000px;}
.y122{bottom:537.915000px;}
.y12{bottom:538.230000px;}
.y6e{bottom:539.175000px;}
.yc0{bottom:540.435000px;}
.yd7{bottom:542.235000px;}
.y134{bottom:542.595000px;}
.y58{bottom:542.955000px;}
.y6{bottom:548.716500px;}
.y36{bottom:560.415000px;}
.y9f{bottom:563.835000px;}
.yf5{bottom:564.375000px;}
.y35{bottom:564.915000px;}
.y121{bottom:566.175000px;}
.y84{bottom:567.435000px;}
.y6d{bottom:567.615000px;}
.ybf{bottom:568.875000px;}
.y13e{bottom:570.495000px;}
.yd6{bottom:570.675000px;}
.y133{bottom:571.035000px;}
.y57{bottom:571.215000px;}
.y34{bottom:588.855000px;}
.y1a{bottom:589.605000px;}
.y9e{bottom:592.275000px;}
.yf4{bottom:592.815000px;}
.y120{bottom:594.615000px;}
.y83{bottom:595.875000px;}
.y6c{bottom:596.055000px;}
.ybe{bottom:597.315000px;}
.yd5{bottom:599.115000px;}
.y132{bottom:599.475000px;}
.y56{bottom:599.655000px;}
.y5{bottom:599.725500px;}
.y33{bottom:617.295000px;}
.yf3{bottom:621.075000px;}
.y9d{bottom:623.055000px;}
.y6b{bottom:624.315000px;}
.ybd{bottom:625.755000px;}
.yd4{bottom:627.555000px;}
.y131{bottom:627.915000px;}
.y55{bottom:628.095000px;}
.ye{bottom:631.920000px;}
.y32{bottom:645.735000px;}
.yf2{bottom:649.515000px;}
.y31{bottom:650.235000px;}
.y11f{bottom:651.495000px;}
.y6a{bottom:652.755000px;}
.ybc{bottom:654.015000px;}
.yd3{bottom:655.815000px;}
.y13d{bottom:655.995000px;}
.y130{bottom:656.175000px;}
.y54{bottom:656.535000px;}
.yf1{bottom:677.985000px;}
.y11e{bottom:679.785000px;}
.y82{bottom:681.045000px;}
.y69{bottom:681.225000px;}
.ybb{bottom:682.485000px;}
.yd2{bottom:684.285000px;}
.y12f{bottom:684.645000px;}
.y53{bottom:685.005000px;}
.y30{bottom:686.085000px;}
.y2f{bottom:690.585000px;}
.y11d{bottom:704.805000px;}
.yf0{bottom:706.425000px;}
.y13c{bottom:709.305000px;}
.y81{bottom:709.485000px;}
.y9c{bottom:709.665000px;}
.y68{bottom:712.005000px;}
.yba{bottom:712.545000px;}
.yd1{bottom:712.725000px;}
.y12e{bottom:713.085000px;}
.y52{bottom:713.265000px;}
.y149{bottom:722.445000px;}
.y2e{bottom:726.585000px;}
.yef{bottom:734.865000px;}
.y80{bottom:737.925000px;}
.y9b{bottom:738.105000px;}
.yb9{bottom:741.165000px;}
.y12d{bottom:741.525000px;}
.y51{bottom:741.705000px;}
.y2d{bottom:754.845000px;}
.y2c{bottom:759.345000px;}
.yee{bottom:763.125000px;}
.y9a{bottom:766.365000px;}
.y7f{bottom:768.705000px;}
.yb8{bottom:769.425000px;}
.y12c{bottom:769.785000px;}
.y50{bottom:770.145000px;}
.y4{bottom:778.225500px;}
.yed{bottom:791.565000px;}
.y99{bottom:794.805000px;}
.y2b{bottom:795.345000px;}
.yb7{bottom:797.865000px;}
.y7e{bottom:798.405000px;}
.y4f{bottom:798.585000px;}
.y13{bottom:815.670000px;}
.yec{bottom:820.005000px;}
.y98{bottom:823.245000px;}
.yb6{bottom:826.305000px;}
.y4e{bottom:826.845000px;}
.y2a{bottom:835.665000px;}
.y29{bottom:840.165000px;}
.yeb{bottom:848.445000px;}
.y97{bottom:851.685000px;}
.yb5{bottom:854.745000px;}
.y4d{bottom:855.285000px;}
.yea{bottom:874.005000px;}
.y28{bottom:876.165000px;}
.y96{bottom:879.945000px;}
.yb4{bottom:883.185000px;}
.y4c{bottom:883.725000px;}
.y3{bottom:905.716500px;}
.y95{bottom:908.385000px;}
.yaf{bottom:910.950000px;}
.y11b{bottom:911.063678px;}
.yb3{bottom:911.490000px;}
.y4b{bottom:912.210000px;}
.y27{bottom:916.530000px;}
.y117{bottom:923.170698px;}
.y119{bottom:925.618900px;}
.y148{bottom:936.510000px;}
.y94{bottom:936.870000px;}
.yb2{bottom:939.930000px;}
.y4a{bottom:940.650000px;}
.y26{bottom:944.970000px;}
.y25{bottom:949.470000px;}
.y10c{bottom:953.052420px;}
.y2{bottom:964.228500px;}
.y93{bottom:965.310000px;}
.yb1{bottom:968.370000px;}
.y49{bottom:968.910000px;}
.y110{bottom:983.739065px;}
.y24{bottom:985.290000px;}
.y1{bottom:989.716500px;}
.y23{bottom:989.790000px;}
.y92{bottom:993.750000px;}
.yd0{bottom:996.810000px;}
.yb0{bottom:997.170000px;}
.y48{bottom:997.350000px;}
.y91{bottom:1022.010000px;}
.ycf{bottom:1025.070000px;}
.y22{bottom:1025.790000px;}
.y90{bottom:1050.450000px;}
.yce{bottom:1053.510000px;}
.y21{bottom:1054.230000px;}
.y10e{bottom:1072.545907px;}
.y8f{bottom:1078.890000px;}
.ycd{bottom:1081.950000px;}
.y20{bottom:1082.490000px;}
.y8e{bottom:1109.670000px;}
.ycc{bottom:1110.390000px;}
.y1f{bottom:1110.930000px;}
.ycb{bottom:1139.190000px;}
.y1e{bottom:1139.370000px;}
.h16{height:13.716786px;}
.h1d{height:15.326571px;}
.h14{height:16.131462px;}
.h1b{height:16.165002px;}
.hb{height:20.160000px;}
.h10{height:30.402422px;}
.h4{height:33.000000px;}
.h1f{height:34.711153px;}
.he{height:37.661484px;}
.h1e{height:39.944725px;}
.hf{height:41.738906px;}
.h15{height:41.763208px;}
.h19{height:42.993346px;}
.h1c{height:46.976559px;}
.hc{height:48.224531px;}
.h13{height:49.482164px;}
.h17{height:49.586575px;}
.h1a{height:54.572371px;}
.h3{height:58.406250px;}
.hd{height:59.738906px;}
.ha{height:65.884219px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h11{height:68.084282px;}
.h18{height:71.032077px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h12{height:280.875000px;}
.h0{height:1262.835000px;}
.h9{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:8.460000px;}
.wd{width:16.740000px;}
.wf{width:63.056248px;}
.w12{width:84.052565px;}
.w13{width:105.890081px;}
.w11{width:157.606974px;}
.w10{width:160.877552px;}
.w14{width:164.067378px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.we{width:676.498650px;}
.w0{width:892.920000px;}
.wc{width:892.979973px;}
.wa{width:892.979987px;}
.w9{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x1e{left:9.704068px;}
.x2a{left:18.614043px;}
.x23{left:24.266898px;}
.x28{left:35.559148px;}
.x20{left:41.212003px;}
.x16{left:55.619973px;}
.x22{left:59.018495px;}
.x25{left:61.441148px;}
.x15{left:64.079973px;}
.x1c{left:66.286441px;}
.x24{left:70.324205px;}
.xd{left:72.539973px;}
.x26{left:78.399713px;}
.xe{left:80.999987px;}
.xa{left:108.035987px;}
.x11{left:124.415987px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xc{left:132.155987px;}
.x19{left:135.035987px;}
.x1a{left:162.029987px;}
.x5{left:174.105000px;}
.x14{left:184.889987px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x13{left:273.809987px;}
.x12{left:375.374987px;}
.x27{left:382.809488px;}
.x17{left:399.854987px;}
.xf{left:419.834987px;}
.x10{left:446.474987px;}
.x29{left:507.266505px;}
.x1f{left:515.342006px;}
.x21{left:516.957109px;}
.x1d{left:540.402999px;}
.x2b{left:670.604987px;}
.x18{left:768.390000px;}
.xb{left:776.670000px;}
.x1b{left:784.949987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-5.120000pt;}
.v5{vertical-align:-2.861852pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v1{vertical-align:16.000000pt;}
.ls2d{letter-spacing:-1.098667pt;}
.ls12{letter-spacing:-0.848000pt;}
.ls21{letter-spacing:-0.698667pt;}
.ls16{letter-spacing:-0.682667pt;}
.ls9{letter-spacing:-0.624000pt;}
.ls6{letter-spacing:-0.608000pt;}
.ls11{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.460800pt;}
.ls19{letter-spacing:-0.325333pt;}
.ls3{letter-spacing:-0.286933pt;}
.ls7{letter-spacing:-0.207467pt;}
.ls23{letter-spacing:-0.143467pt;}
.ls32{letter-spacing:-0.100165pt;}
.ls10{letter-spacing:-0.074133pt;}
.ls18{letter-spacing:-0.058667pt;}
.ls1a{letter-spacing:-0.043520pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.009387pt;}
.ls2{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.030720pt;}
.ls24{letter-spacing:0.097280pt;}
.ls17{letter-spacing:0.104960pt;}
.lsd{letter-spacing:0.105067pt;}
.ls2e{letter-spacing:0.111970pt;}
.ls2f{letter-spacing:0.150724pt;}
.ls27{letter-spacing:0.163733pt;}
.ls25{letter-spacing:0.175360pt;}
.ls1{letter-spacing:0.179200pt;}
.ls4{letter-spacing:0.227733pt;}
.lse{letter-spacing:0.246933pt;}
.ls29{letter-spacing:0.291840pt;}
.ls13{letter-spacing:0.294400pt;}
.ls2b{letter-spacing:0.348160pt;}
.ls22{letter-spacing:0.353067pt;}
.ls15{letter-spacing:0.655360pt;}
.ls1d{letter-spacing:0.773120pt;}
.ls31{letter-spacing:1.147126pt;}
.ls14{letter-spacing:1.295360pt;}
.ls30{letter-spacing:1.322533pt;}
.ls1f{letter-spacing:1.935360pt;}
.ls8{letter-spacing:2.053120pt;}
.ls1e{letter-spacing:2.575360pt;}
.lsb{letter-spacing:2.693120pt;}
.ls1b{letter-spacing:4.495360pt;}
.ls1c{letter-spacing:4.655360pt;}
.ls26{letter-spacing:5.120000pt;}
.lsf{letter-spacing:5.616640pt;}
.lsa{letter-spacing:5.893120pt;}
.ls2a{letter-spacing:6.533120pt;}
.ls2c{letter-spacing:12.431360pt;}
.ls28{letter-spacing:39.290027pt;}
.ws9{word-spacing:-58.880000pt;}
.ws0{word-spacing:-16.874667pt;}
.wsf{word-spacing:-13.603840pt;}
.ws13{word-spacing:-13.588373pt;}
.ws11{word-spacing:-13.534613pt;}
.wsa{word-spacing:-13.529707pt;}
.ws8{word-spacing:-13.455360pt;}
.ws2{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.424640pt;}
.ws14{word-spacing:-13.365973pt;}
.wsc{word-spacing:-13.350507pt;}
.ws6{word-spacing:-13.217173pt;}
.wsd{word-spacing:-12.891307pt;}
.ws5{word-spacing:-12.816640pt;}
.ws10{word-spacing:-12.800640pt;}
.wse{word-spacing:-12.576640pt;}
.ws12{word-spacing:-8.816427pt;}
.wsb{word-spacing:-8.710293pt;}
.ws3{word-spacing:-8.463360pt;}
.ws4{word-spacing:-8.176427pt;}
.ws15{word-spacing:-7.204712pt;}
.ws16{word-spacing:-7.104547pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-6.536533pt;}
._15{margin-left:-5.565296pt;}
._3{margin-left:-3.808000pt;}
._f{margin-left:-2.724693pt;}
._1{margin-left:-1.774933pt;}
._4{width:0.891733pt;}
._5{width:2.531840pt;}
._6{width:3.618987pt;}
._0{width:4.966400pt;}
._e{width:5.887573pt;}
._10{width:6.830080pt;}
._7{width:7.772160pt;}
._8{width:8.734293pt;}
._b{width:9.723733pt;}
._9{width:10.775040pt;}
._a{width:11.771733pt;}
._c{width:15.073280pt;}
._d{width:16.392107pt;}
._11{width:17.899520pt;}
._12{width:18.850133pt;}
._13{width:19.783680pt;}
._14{width:22.609920pt;}
._17{width:30.941867pt;}
._16{width:100.017986pt;}
.fs8{font-size:31.599615pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:37.323318pt;}
.fs7{font-size:43.047022pt;}
.fs5{font-size:48.770726pt;}
.fs9{font-size:57.356282pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y116{bottom:-39.469692pt;}
.y115{bottom:-12.192673pt;}
.y0{bottom:0.000000pt;}
.y10f{bottom:1.430939pt;}
.y11a{bottom:2.146396pt;}
.y118{bottom:2.891671pt;}
.y1d{bottom:4.000000pt;}
.y10d{bottom:5.038057pt;}
.yc{bottom:7.146667pt;}
.y114{bottom:13.623618pt;}
.y10b{bottom:16.455641pt;}
.y11c{bottom:19.377138pt;}
.y113{bottom:26.531761pt;}
.y112{bottom:40.185185pt;}
.y10a{bottom:44.418319pt;}
.y1c{bottom:47.040000pt;}
.y1b{bottom:51.040000pt;}
.y111{bottom:53.814750pt;}
.y15{bottom:69.080000pt;}
.y109{bottom:72.410808pt;}
.y14{bottom:88.706667pt;}
.y47{bottom:94.240000pt;}
.y108{bottom:99.687834pt;}
.y7d{bottom:100.640000pt;}
.y19{bottom:101.040000pt;}
.y67{bottom:103.840000pt;}
.ye9{bottom:110.080000pt;}
.y10{bottom:119.053333pt;}
.yae{bottom:119.200000pt;}
.y46{bottom:119.520000pt;}
.y18{bottom:120.666667pt;}
.y7c{bottom:125.760000pt;}
.yca{bottom:125.920000pt;}
.y107{bottom:127.686285pt;}
.y66{bottom:129.120000pt;}
.ye8{bottom:135.200000pt;}
.y16{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y17{bottom:140.293333pt;}
.yad{bottom:144.480000pt;}
.y45{bottom:144.800000pt;}
.y8d{bottom:150.880000pt;}
.y7b{bottom:151.040000pt;}
.ye4{bottom:153.760000pt;}
.y65{bottom:154.400000pt;}
.y106{bottom:155.672811pt;}
.ye7{bottom:160.480000pt;}
.yac{bottom:169.786667pt;}
.y44{bottom:169.946667pt;}
.y102{bottom:173.466667pt;}
.y8c{bottom:176.186667pt;}
.y7a{bottom:176.346667pt;}
.ye3{bottom:179.066667pt;}
.y64{bottom:179.546667pt;}
.y105{bottom:182.920026pt;}
.ye6{bottom:185.786667pt;}
.yab{bottom:195.066667pt;}
.y43{bottom:195.226667pt;}
.y101{bottom:198.746667pt;}
.y42{bottom:199.226667pt;}
.y8b{bottom:201.466667pt;}
.y79{bottom:201.626667pt;}
.ye2{bottom:204.346667pt;}
.y63{bottom:204.826667pt;}
.y104{bottom:210.918477pt;}
.ye5{bottom:213.306667pt;}
.yaa{bottom:220.186667pt;}
.y41{bottom:220.506667pt;}
.y100{bottom:223.866667pt;}
.y78{bottom:226.746667pt;}
.yc9{bottom:226.906667pt;}
.ye1{bottom:229.626667pt;}
.y62{bottom:230.106667pt;}
.y147{bottom:237.306667pt;}
.y103{bottom:238.189541pt;}
.ya9{bottom:245.466667pt;}
.y40{bottom:245.786667pt;}
.yff{bottom:249.146667pt;}
.y12b{bottom:250.906667pt;}
.y77{bottom:252.026667pt;}
.ye0{bottom:254.746667pt;}
.y61{bottom:255.386667pt;}
.y146{bottom:267.226667pt;}
.ya8{bottom:270.746667pt;}
.y3f{bottom:270.906667pt;}
.yfe{bottom:274.426667pt;}
.y12a{bottom:276.026667pt;}
.y8a{bottom:277.146667pt;}
.y76{bottom:277.306667pt;}
.yc8{bottom:277.786667pt;}
.ydf{bottom:280.026667pt;}
.y60{bottom:280.506667pt;}
.ya7{bottom:296.026667pt;}
.y3e{bottom:296.186667pt;}
.y145{bottom:297.146667pt;}
.yfd{bottom:299.706667pt;}
.y129{bottom:301.306667pt;}
.y89{bottom:302.426667pt;}
.y75{bottom:302.586667pt;}
.yc7{bottom:303.546667pt;}
.yde{bottom:305.306667pt;}
.y13b{bottom:305.626667pt;}
.y5f{bottom:305.786667pt;}
.ya{bottom:306.382667pt;}
.ya6{bottom:321.146667pt;}
.y3d{bottom:321.466667pt;}
.yfc{bottom:324.826667pt;}
.y128{bottom:326.586667pt;}
.y144{bottom:327.226667pt;}
.y88{bottom:327.706667pt;}
.y74{bottom:327.866667pt;}
.yc6{bottom:328.986667pt;}
.ydd{bottom:330.586667pt;}
.y13a{bottom:330.906667pt;}
.y5e{bottom:331.066667pt;}
.yd{bottom:343.546667pt;}
.ya5{bottom:346.426667pt;}
.y3c{bottom:346.746667pt;}
.yfb{bottom:350.106667pt;}
.y9{bottom:351.724000pt;}
.y127{bottom:351.866667pt;}
.y73{bottom:352.986667pt;}
.yc5{bottom:354.106667pt;}
.ydc{bottom:355.706667pt;}
.y139{bottom:356.026667pt;}
.y5d{bottom:356.346667pt;}
.y143{bottom:357.146667pt;}
.ya4{bottom:371.706667pt;}
.y3b{bottom:372.026667pt;}
.yfa{bottom:375.386667pt;}
.y126{bottom:376.986667pt;}
.y87{bottom:378.106667pt;}
.y72{bottom:378.266667pt;}
.yc4{bottom:379.386667pt;}
.ydb{bottom:380.986667pt;}
.y138{bottom:381.306667pt;}
.y5c{bottom:381.626667pt;}
.yb{bottom:386.533333pt;}
.y142{bottom:387.266667pt;}
.ya3{bottom:397.026667pt;}
.y8{bottom:397.065333pt;}
.y3a{bottom:397.186667pt;}
.yf9{bottom:400.706667pt;}
.y125{bottom:402.306667pt;}
.y86{bottom:403.426667pt;}
.y71{bottom:403.586667pt;}
.yc3{bottom:404.706667pt;}
.yda{bottom:406.306667pt;}
.y137{bottom:406.626667pt;}
.y5b{bottom:406.786667pt;}
.y141{bottom:417.186667pt;}
.y39{bottom:422.466667pt;}
.ya2{bottom:424.386667pt;}
.yf8{bottom:425.986667pt;}
.y124{bottom:427.586667pt;}
.y85{bottom:428.706667pt;}
.y70{bottom:428.866667pt;}
.yc2{bottom:429.986667pt;}
.yd9{bottom:431.586667pt;}
.y136{bottom:431.906667pt;}
.y5a{bottom:432.066667pt;}
.y11{bottom:433.826667pt;}
.y7{bottom:442.406667pt;}
.y140{bottom:447.106667pt;}
.y38{bottom:447.746667pt;}
.ya1{bottom:450.786667pt;}
.yf7{bottom:451.106667pt;}
.y123{bottom:452.866667pt;}
.y6f{bottom:453.986667pt;}
.yc1{bottom:455.106667pt;}
.yd8{bottom:456.866667pt;}
.y135{bottom:457.026667pt;}
.y59{bottom:457.346667pt;}
.y37{bottom:473.026667pt;}
.ya0{bottom:476.066667pt;}
.yf6{bottom:476.386667pt;}
.y13f{bottom:477.186667pt;}
.y122{bottom:478.146667pt;}
.y12{bottom:478.426667pt;}
.y6e{bottom:479.266667pt;}
.yc0{bottom:480.386667pt;}
.yd7{bottom:481.986667pt;}
.y134{bottom:482.306667pt;}
.y58{bottom:482.626667pt;}
.y6{bottom:487.748000pt;}
.y36{bottom:498.146667pt;}
.y9f{bottom:501.186667pt;}
.yf5{bottom:501.666667pt;}
.y35{bottom:502.146667pt;}
.y121{bottom:503.266667pt;}
.y84{bottom:504.386667pt;}
.y6d{bottom:504.546667pt;}
.ybf{bottom:505.666667pt;}
.y13e{bottom:507.106667pt;}
.yd6{bottom:507.266667pt;}
.y133{bottom:507.586667pt;}
.y57{bottom:507.746667pt;}
.y34{bottom:523.426667pt;}
.y1a{bottom:524.093333pt;}
.y9e{bottom:526.466667pt;}
.yf4{bottom:526.946667pt;}
.y120{bottom:528.546667pt;}
.y83{bottom:529.666667pt;}
.y6c{bottom:529.826667pt;}
.ybe{bottom:530.946667pt;}
.yd5{bottom:532.546667pt;}
.y132{bottom:532.866667pt;}
.y56{bottom:533.026667pt;}
.y5{bottom:533.089333pt;}
.y33{bottom:548.706667pt;}
.yf3{bottom:552.066667pt;}
.y9d{bottom:553.826667pt;}
.y6b{bottom:554.946667pt;}
.ybd{bottom:556.226667pt;}
.yd4{bottom:557.826667pt;}
.y131{bottom:558.146667pt;}
.y55{bottom:558.306667pt;}
.ye{bottom:561.706667pt;}
.y32{bottom:573.986667pt;}
.yf2{bottom:577.346667pt;}
.y31{bottom:577.986667pt;}
.y11f{bottom:579.106667pt;}
.y6a{bottom:580.226667pt;}
.ybc{bottom:581.346667pt;}
.yd3{bottom:582.946667pt;}
.y13d{bottom:583.106667pt;}
.y130{bottom:583.266667pt;}
.y54{bottom:583.586667pt;}
.yf1{bottom:602.653333pt;}
.y11e{bottom:604.253333pt;}
.y82{bottom:605.373333pt;}
.y69{bottom:605.533333pt;}
.ybb{bottom:606.653333pt;}
.yd2{bottom:608.253333pt;}
.y12f{bottom:608.573333pt;}
.y53{bottom:608.893333pt;}
.y30{bottom:609.853333pt;}
.y2f{bottom:613.853333pt;}
.y11d{bottom:626.493333pt;}
.yf0{bottom:627.933333pt;}
.y13c{bottom:630.493333pt;}
.y81{bottom:630.653333pt;}
.y9c{bottom:630.813333pt;}
.y68{bottom:632.893333pt;}
.yba{bottom:633.373333pt;}
.yd1{bottom:633.533333pt;}
.y12e{bottom:633.853333pt;}
.y52{bottom:634.013333pt;}
.y149{bottom:642.173333pt;}
.y2e{bottom:645.853333pt;}
.yef{bottom:653.213333pt;}
.y80{bottom:655.933333pt;}
.y9b{bottom:656.093333pt;}
.yb9{bottom:658.813333pt;}
.y12d{bottom:659.133333pt;}
.y51{bottom:659.293333pt;}
.y2d{bottom:670.973333pt;}
.y2c{bottom:674.973333pt;}
.yee{bottom:678.333333pt;}
.y9a{bottom:681.213333pt;}
.y7f{bottom:683.293333pt;}
.yb8{bottom:683.933333pt;}
.y12c{bottom:684.253333pt;}
.y50{bottom:684.573333pt;}
.y4{bottom:691.756000pt;}
.yed{bottom:703.613333pt;}
.y99{bottom:706.493333pt;}
.y2b{bottom:706.973333pt;}
.yb7{bottom:709.213333pt;}
.y7e{bottom:709.693333pt;}
.y4f{bottom:709.853333pt;}
.y13{bottom:725.040000pt;}
.yec{bottom:728.893333pt;}
.y98{bottom:731.773333pt;}
.yb6{bottom:734.493333pt;}
.y4e{bottom:734.973333pt;}
.y2a{bottom:742.813333pt;}
.y29{bottom:746.813333pt;}
.yeb{bottom:754.173333pt;}
.y97{bottom:757.053333pt;}
.yb5{bottom:759.773333pt;}
.y4d{bottom:760.253333pt;}
.yea{bottom:776.893333pt;}
.y28{bottom:778.813333pt;}
.y96{bottom:782.173333pt;}
.yb4{bottom:785.053333pt;}
.y4c{bottom:785.533333pt;}
.y3{bottom:805.081333pt;}
.y95{bottom:807.453333pt;}
.yaf{bottom:809.733333pt;}
.y11b{bottom:809.834381pt;}
.yb3{bottom:810.213333pt;}
.y4b{bottom:810.853333pt;}
.y27{bottom:814.693333pt;}
.y117{bottom:820.596176pt;}
.y119{bottom:822.772356pt;}
.y148{bottom:832.453333pt;}
.y94{bottom:832.773333pt;}
.yb2{bottom:835.493333pt;}
.y4a{bottom:836.133333pt;}
.y26{bottom:839.973333pt;}
.y25{bottom:843.973333pt;}
.y10c{bottom:847.157706pt;}
.y2{bottom:857.092000pt;}
.y93{bottom:858.053333pt;}
.yb1{bottom:860.773333pt;}
.y49{bottom:861.253333pt;}
.y110{bottom:874.434725pt;}
.y24{bottom:875.813333pt;}
.y1{bottom:879.748000pt;}
.y23{bottom:879.813333pt;}
.y92{bottom:883.333333pt;}
.yd0{bottom:886.053333pt;}
.yb0{bottom:886.373333pt;}
.y48{bottom:886.533333pt;}
.y91{bottom:908.453333pt;}
.ycf{bottom:911.173333pt;}
.y22{bottom:911.813333pt;}
.y90{bottom:933.733333pt;}
.yce{bottom:936.453333pt;}
.y21{bottom:937.093333pt;}
.y10e{bottom:953.374139pt;}
.y8f{bottom:959.013333pt;}
.ycd{bottom:961.733333pt;}
.y20{bottom:962.213333pt;}
.y8e{bottom:986.373333pt;}
.ycc{bottom:987.013333pt;}
.y1f{bottom:987.493333pt;}
.ycb{bottom:1012.613333pt;}
.y1e{bottom:1012.773333pt;}
.h16{height:12.192699pt;}
.h1d{height:13.623619pt;}
.h14{height:14.339077pt;}
.h1b{height:14.368890pt;}
.hb{height:17.920000pt;}
.h10{height:27.024375pt;}
.h4{height:29.333333pt;}
.h1f{height:30.854358pt;}
.he{height:33.476875pt;}
.h1e{height:35.506422pt;}
.hf{height:37.101250pt;}
.h15{height:37.122851pt;}
.h19{height:38.216308pt;}
.h1c{height:41.756941pt;}
.hc{height:42.866250pt;}
.h13{height:43.984146pt;}
.h17{height:44.076956pt;}
.h1a{height:48.508774pt;}
.h3{height:51.916667pt;}
.hd{height:53.101250pt;}
.ha{height:58.563750pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h11{height:60.519362pt;}
.h18{height:63.139624pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h12{height:249.666667pt;}
.h0{height:1122.520000pt;}
.h9{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:7.520000pt;}
.wd{width:14.880000pt;}
.wf{width:56.049998pt;}
.w12{width:74.713392pt;}
.w13{width:94.124517pt;}
.w11{width:140.095088pt;}
.w10{width:143.002268pt;}
.w14{width:145.837669pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.we{width:601.332133pt;}
.w0{width:793.706667pt;}
.wc{width:793.759976pt;}
.wa{width:793.759988pt;}
.w9{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x1e{left:8.625838pt;}
.x2a{left:16.545816pt;}
.x23{left:21.570576pt;}
.x28{left:31.608132pt;}
.x20{left:36.632891pt;}
.x16{left:49.439976pt;}
.x22{left:52.460884pt;}
.x25{left:54.614354pt;}
.x15{left:56.959976pt;}
.x1c{left:58.921281pt;}
.x24{left:62.510405pt;}
.xd{left:64.479976pt;}
.x26{left:69.688634pt;}
.xe{left:71.999988pt;}
.xa{left:96.031988pt;}
.x11{left:110.591988pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xc{left:117.471988pt;}
.x19{left:120.031988pt;}
.x1a{left:144.026655pt;}
.x5{left:154.760000pt;}
.x14{left:164.346655pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x13{left:243.386655pt;}
.x12{left:333.666655pt;}
.x27{left:340.275101pt;}
.x17{left:355.426655pt;}
.xf{left:373.186655pt;}
.x10{left:396.866655pt;}
.x29{left:450.903560pt;}
.x1f{left:458.081783pt;}
.x21{left:459.517430pt;}
.x1d{left:480.358222pt;}
.x2b{left:596.093322pt;}
.x18{left:683.013333pt;}
.xb{left:690.373333pt;}
.x1b{left:697.733322pt;}
}




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