
    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_7a5d20f4db87afde2b1522cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_5d247762b842ae610bbdf863.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_6713f17ded2e7307c1c38305.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937012;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_5dccecca5b02161f051566ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.947266;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_45f7d2e18cf607aca0d9a5f1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_6a016d675153b4b2881a1cbb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.947266;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_474c69a6d0ef0347ceb82305.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_989679c8acaa0e4e208a89dc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.720000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.720000px;}
.v1{vertical-align:21.600000px;}
.ls33{letter-spacing:-1.800000px;}
.ls10{letter-spacing:-1.704000px;}
.ls25{letter-spacing:-1.368000px;}
.ls35{letter-spacing:-1.366090px;}
.ls2f{letter-spacing:-1.002000px;}
.ls13{letter-spacing:-0.792000px;}
.ls1c{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.631184px;}
.lsf{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.463800px;}
.lsb{letter-spacing:-0.443400px;}
.ls23{letter-spacing:-0.434514px;}
.ls15{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.319800px;}
.lsc{letter-spacing:-0.250800px;}
.ls22{letter-spacing:-0.158400px;}
.ls11{letter-spacing:-0.121200px;}
.ls2c{letter-spacing:-0.106800px;}
.ls19{letter-spacing:-0.002880px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000001px;}
.ls2d{letter-spacing:0.043200px;}
.ls18{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.121200px;}
.ls36{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.146880px;}
.ls2a{letter-spacing:0.147000px;}
.ls12{letter-spacing:0.151788px;}
.ls26{letter-spacing:0.216000px;}
.ls29{letter-spacing:0.408960px;}
.ls2e{letter-spacing:0.409200px;}
.ls31{letter-spacing:0.438000px;}
.ls0{letter-spacing:0.535680px;}
.lse{letter-spacing:0.576000px;}
.ls2b{letter-spacing:0.584400px;}
.ls8{letter-spacing:0.600000px;}
.ls1b{letter-spacing:0.648000px;}
.ls1{letter-spacing:0.659520px;}
.ls7{letter-spacing:0.708000px;}
.ls5{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.774000px;}
.ls1d{letter-spacing:0.829440px;}
.ls16{letter-spacing:1.080000px;}
.ls34{letter-spacing:1.872000px;}
.lsd{letter-spacing:4.141440px;}
.ls1e{letter-spacing:5.005440px;}
.ls1f{letter-spacing:12.217440px;}
.ls17{letter-spacing:12.781440px;}
.ls1a{letter-spacing:16.778880px;}
.ls27{letter-spacing:23.196000px;}
.ls3{letter-spacing:33.425280px;}
.ls24{letter-spacing:39.024000px;}
.ls32{letter-spacing:44.473440px;}
.ls2{letter-spacing:44.945280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-25.251673px;}
.ws2{word-spacing:-25.154880px;}
.ws4{word-spacing:-24.554880px;}
.wsf{word-spacing:-24.552000px;}
.wsb{word-spacing:-24.433680px;}
.ws26{word-spacing:-22.312808px;}
.ws10{word-spacing:-21.816000px;}
.wsc{word-spacing:-21.744000px;}
.ws1a{word-spacing:-21.384000px;}
.ws28{word-spacing:-21.312000px;}
.wse{word-spacing:-21.240000px;}
.ws8{word-spacing:-21.168000px;}
.ws27{word-spacing:-20.808000px;}
.wsd{word-spacing:-20.736000px;}
.ws1b{word-spacing:-20.592000px;}
.ws11{word-spacing:-20.520000px;}
.ws13{word-spacing:-20.248560px;}
.ws19{word-spacing:-19.800000px;}
.ws1c{word-spacing:-19.474560px;}
.ws7{word-spacing:-19.223760px;}
.ws12{word-spacing:-19.154760px;}
.ws6{word-spacing:-19.031160px;}
.ws1d{word-spacing:-18.365520px;}
.ws24{word-spacing:-18.219120px;}
.ws21{word-spacing:-18.190320px;}
.ws20{word-spacing:-17.928120px;}
.ws23{word-spacing:-17.902320px;}
.ws1f{word-spacing:-17.824320px;}
.ws25{word-spacing:-17.781120px;}
.ws1e{word-spacing:-17.674320px;}
.ws22{word-spacing:-16.779120px;}
.ws0{word-spacing:-14.506440px;}
.ws1{word-spacing:-13.074720px;}
.wsa{word-spacing:-12.366720px;}
.ws5{word-spacing:-12.277440px;}
.ws18{word-spacing:-12.069751px;}
.ws14{word-spacing:-11.430720px;}
.ws9{word-spacing:0.000000px;}
.ws15{word-spacing:138.076367px;}
.ws16{word-spacing:139.409942px;}
.ws17{word-spacing:358.699966px;}
._1b{margin-left:-14.328000px;}
._1c{margin-left:-4.523040px;}
._3{margin-left:-3.152160px;}
._2{margin-left:-2.013120px;}
._0{margin-left:-1.008000px;}
._1{width:1.440000px;}
._6{width:2.741760px;}
._c{width:3.769920px;}
._b{width:5.616000px;}
._a{width:7.560000px;}
._7{width:8.856000px;}
._8{width:10.800000px;}
._9{width:12.525120px;}
._d{width:14.328000px;}
._e{width:15.336000px;}
._17{width:17.001120px;}
._15{width:18.678240px;}
._14{width:20.016000px;}
._16{width:21.513117px;}
._f{width:23.184000px;}
._21{width:24.245280px;}
._11{width:25.257120px;}
._12{width:26.478240px;}
._10{width:27.516000px;}
._1d{width:29.223360px;}
._13{width:30.242880px;}
._26{width:31.342560px;}
._1a{width:32.538240px;}
._19{width:33.624000px;}
._18{width:34.920000px;}
._22{width:36.576000px;}
._23{width:38.381280px;}
._25{width:44.280000px;}
._24{width:45.720000px;}
._20{width:50.253120px;}
._1f{width:52.344000px;}
._1e{width:336.814578px;}
._5{width:833.489760px;}
._4{width:1591.325760px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs8{font-size:5.760000px;}
.fs9{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fsb{font-size:53.405976px;}
.fs2{font-size:54.720000px;}
.fsa{font-size:58.250055px;}
.fs7{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fsc{font-size:69.822393px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:75.893905px;}
.fs3{font-size:83.520000px;}
.fs4{font-size:88.036930px;}
.y0{bottom:0.000000px;}
.ya7{bottom:3.633078px;}
.ydd{bottom:3.960000px;}
.yda{bottom:8.280000px;}
.ycd{bottom:9.000000px;}
.yd2{bottom:10.080000px;}
.ye4{bottom:12.600000px;}
.yed{bottom:12.645000px;}
.yd6{bottom:14.085000px;}
.yc0{bottom:14.754000px;}
.ybe{bottom:14.760000px;}
.yb6{bottom:15.120000px;}
.yb9{bottom:15.150000px;}
.yd4{bottom:15.840000px;}
.yd8{bottom:16.560000px;}
.ya5{bottom:18.770810px;}
.ydc{bottom:23.760000px;}
.ye8{bottom:25.920000px;}
.yd0{bottom:26.670000px;}
.ycb{bottom:30.960000px;}
.ye7{bottom:39.600000px;}
.ya3{bottom:42.446243px;}
.ycf{bottom:46.470000px;}
.yca{bottom:50.790000px;}
.ya{bottom:57.240000px;}
.yc9{bottom:70.590000px;}
.ya2{bottom:76.385074px;}
.yb4{bottom:81.360000px;}
.ya1{bottom:110.354181px;}
.yc2{bottom:111.276000px;}
.y98{bottom:118.476000px;}
.y125{bottom:122.436000px;}
.y13a{bottom:124.596000px;}
.y65{bottom:125.316000px;}
.yf6{bottom:129.636000px;}
.y27{bottom:129.996000px;}
.yc1{bottom:131.076000px;}
.y111{bottom:135.036000px;}
.y78{bottom:137.196000px;}
.y48{bottom:138.276000px;}
.ybf{bottom:147.996000px;}
.y97{bottom:150.870000px;}
.y88{bottom:154.830000px;}
.y139{bottom:156.990000px;}
.y64{bottom:157.710000px;}
.y26{bottom:160.590000px;}
.y110{bottom:167.430000px;}
.y47{bottom:170.670000px;}
.ye2{bottom:173.910000px;}
.yf5{bottom:177.150000px;}
.ybd{bottom:181.110000px;}
.y77{bottom:181.830000px;}
.y96{bottom:183.270000px;}
.y87{bottom:186.870000px;}
.y138{bottom:189.390000px;}
.y63{bottom:190.110000px;}
.y25{bottom:191.190000px;}
.ya0{bottom:192.794358px;}
.y10f{bottom:199.875000px;}
.y124{bottom:202.035000px;}
.y46{bottom:203.115000px;}
.y24{bottom:212.835000px;}
.ybc{bottom:213.915000px;}
.ya9{bottom:214.017487px;}
.y95{bottom:215.715000px;}
.yf4{bottom:216.075000px;}
.y86{bottom:219.315000px;}
.ye1{bottom:221.115000px;}
.y117{bottom:222.555000px;}
.y76{bottom:226.515000px;}
.y9f{bottom:226.727135px;}
.y23{bottom:234.435000px;}
.y45{bottom:235.515000px;}
.y137{bottom:236.955000px;}
.y62{bottom:237.315000px;}
.ybb{bottom:247.035000px;}
.y94{bottom:248.115000px;}
.y85{bottom:251.715000px;}
.y146{bottom:254.235000px;}
.y116{bottom:254.955000px;}
.y22{bottom:256.035000px;}
.y9e{bottom:260.696242px;}
.yf3{bottom:261.795000px;}
.ye0{bottom:268.635000px;}
.y136{bottom:268.995000px;}
.y61{bottom:269.715000px;}
.y75{bottom:271.155000px;}
.y21{bottom:277.635000px;}
.y10e{bottom:279.435000px;}
.yba{bottom:280.155000px;}
.y93{bottom:280.515000px;}
.y123{bottom:281.955000px;}
.y44{bottom:282.675000px;}
.y84{bottom:284.115000px;}
.y20{bottom:299.235000px;}
.y135{bottom:301.395000px;}
.y60{bottom:302.115000px;}
.ydf{bottom:304.635000px;}
.yf2{bottom:308.955000px;}
.y10d{bottom:311.835000px;}
.yb8{bottom:313.275000px;}
.y122{bottom:313.995000px;}
.y43{bottom:315.075000px;}
.y74{bottom:315.795000px;}
.y83{bottom:316.515000px;}
.y1f{bottom:320.835000px;}
.yde{bottom:324.465000px;}
.y92{bottom:327.705000px;}
.y134{bottom:333.825000px;}
.y5f{bottom:334.545000px;}
.y145{bottom:337.065000px;}
.ydb{bottom:341.025000px;}
.y9d{bottom:341.931455px;}
.y10c{bottom:344.265000px;}
.yf1{bottom:345.345000px;}
.yb3{bottom:346.425000px;}
.y42{bottom:347.505000px;}
.y1e{bottom:351.465000px;}
.y73{bottom:360.465000px;}
.y82{bottom:364.065000px;}
.yf0{bottom:365.145000px;}
.y133{bottom:366.225000px;}
.y5e{bottom:366.945000px;}
.y144{bottom:369.465000px;}
.y1d{bottom:373.065000px;}
.y9c{bottom:375.864231px;}
.y10b{bottom:376.665000px;}
.y121{bottom:378.825000px;}
.yb7{bottom:379.545000px;}
.y41{bottom:379.905000px;}
.yd9{bottom:381.345000px;}
.yef{bottom:381.705000px;}
.y91{bottom:384.945000px;}
.y1c{bottom:394.665000px;}
.y143{bottom:401.505000px;}
.y90{bottom:404.745000px;}
.y72{bottom:405.465000px;}
.yd7{bottom:406.185000px;}
.y10a{bottom:409.065000px;}
.yee{bottom:409.425000px;}
.y9b{bottom:409.833338px;}
.y81{bottom:411.225000px;}
.y40{bottom:412.305000px;}
.yb5{bottom:412.665000px;}
.y132{bottom:413.745000px;}
.y5d{bottom:414.465000px;}
.y8f{bottom:424.545000px;}
.y1b{bottom:425.265000px;}
.y142{bottom:433.905000px;}
.yec{bottom:437.145000px;}
.yd5{bottom:439.305000px;}
.y109{bottom:441.465000px;}
.y80{bottom:443.625000px;}
.y8e{bottom:444.345000px;}
.y131{bottom:446.145000px;}
.y5c{bottom:446.505000px;}
.y1a{bottom:446.865000px;}
.y71{bottom:452.670000px;}
.y9a{bottom:452.885095px;}
.y3f{bottom:453.390000px;}
.y8d{bottom:464.190000px;}
.yeb{bottom:464.910000px;}
.y19{bottom:468.510000px;}
.yd3{bottom:469.950000px;}
.y108{bottom:473.550000px;}
.y7f{bottom:476.070000px;}
.y5b{bottom:478.950000px;}
.y141{bottom:481.470000px;}
.y8c{bottom:483.990000px;}
.y70{bottom:484.710000px;}
.y120{bottom:491.190000px;}
.yea{bottom:492.630000px;}
.y130{bottom:493.350000px;}
.y3e{bottom:494.430000px;}
.y18{bottom:499.110000px;}
.yd1{bottom:502.350000px;}
.y7e{bottom:508.470000px;}
.y5a{bottom:511.350000px;}
.y140{bottom:513.870000px;}
.y8b{bottom:516.030000px;}
.y6f{bottom:517.110000px;}
.ye9{bottom:520.350000px;}
.y17{bottom:520.710000px;}
.y107{bottom:521.070000px;}
.y11f{bottom:523.590000px;}
.y12f{bottom:525.750000px;}
.yc8{bottom:528.990000px;}
.y3d{bottom:530.070000px;}
.y7d{bottom:540.870000px;}
.y16{bottom:541.950000px;}
.y59{bottom:543.750000px;}
.y13f{bottom:546.270000px;}
.y8a{bottom:547.350000px;}
.ye3{bottom:548.070000px;}
.y6e{bottom:549.510000px;}
.y106{bottom:553.470000px;}
.yce{bottom:554.550000px;}
.yb2{bottom:555.630000px;}
.y12e{bottom:558.150000px;}
.y15{bottom:563.550000px;}
.y3c{bottom:569.670000px;}
.y7c{bottom:573.270000px;}
.ye6{bottom:575.820000px;}
.y115{bottom:576.180000px;}
.y13e{bottom:578.700000px;}
.y6d{bottom:581.940000px;}
.y14{bottom:585.180000px;}
.y105{bottom:585.900000px;}
.yb1{bottom:588.060000px;}
.y89{bottom:590.580000px;}
.y99{bottom:591.180000px;}
.y58{bottom:591.300000px;}
.y3b{bottom:594.540000px;}
.y12d{bottom:605.700000px;}
.y6c{bottom:614.340000px;}
.ycc{bottom:617.580000px;}
.y104{bottom:618.300000px;}
.y3a{bottom:619.380000px;}
.y7b{bottom:620.460000px;}
.ya8{bottom:621.485732px;}
.y57{bottom:623.700000px;}
.y13d{bottom:625.860000px;}
.ye5{bottom:630.540000px;}
.y13{bottom:635.220000px;}
.y11e{bottom:635.580000px;}
.y12c{bottom:638.100000px;}
.y39{bottom:644.220000px;}
.y6b{bottom:646.740000px;}
.y103{bottom:650.700000px;}
.yb0{bottom:652.860000px;}
.y56{bottom:656.100000px;}
.y13c{bottom:658.260000px;}
.y7a{bottom:666.540000px;}
.y11d{bottom:667.980000px;}
.y38{bottom:669.060000px;}
.y12b{bottom:670.140000px;}
.yc7{bottom:673.380000px;}
.y12{bottom:677.340000px;}
.y102{bottom:683.100000px;}
.yaf{bottom:685.260000px;}
.y55{bottom:688.140000px;}
.y37{bottom:693.900000px;}
.y6a{bottom:694.260000px;}
.y79{bottom:696.420000px;}
.y11{bottom:700.020000px;}
.y11c{bottom:700.380000px;}
.yc6{bottom:705.810000px;}
.yae{bottom:717.690000px;}
.y36{bottom:718.770000px;}
.y54{bottom:720.570000px;}
.y69{bottom:726.330000px;}
.y101{bottom:730.290000px;}
.y11b{bottom:732.810000px;}
.y10{bottom:738.210000px;}
.yad{bottom:750.090000px;}
.y53{bottom:752.970000px;}
.y35{bottom:758.730000px;}
.y100{bottom:762.690000px;}
.yf{bottom:763.050000px;}
.y11a{bottom:765.210000px;}
.y13b{bottom:770.610000px;}
.yac{bottom:782.490000px;}
.y34{bottom:783.210000px;}
.y52{bottom:785.370000px;}
.yff{bottom:795.090000px;}
.y119{bottom:797.250000px;}
.ye{bottom:804.090000px;}
.y68{bottom:806.250000px;}
.y33{bottom:808.050000px;}
.y51{bottom:817.770000px;}
.yfe{bottom:827.535000px;}
.yab{bottom:829.695000px;}
.y32{bottom:832.935000px;}
.yd{bottom:833.295000px;}
.y67{bottom:847.335000px;}
.y50{bottom:850.215000px;}
.yfd{bottom:859.935000px;}
.yc{bottom:862.095000px;}
.y114{bottom:865.335000px;}
.y31{bottom:872.895000px;}
.ya4{bottom:873.710927px;}
.yaa{bottom:879.735000px;}
.yc5{bottom:882.615000px;}
.yb{bottom:891.255000px;}
.yfc{bottom:892.335000px;}
.y12a{bottom:894.495000px;}
.y30{bottom:897.735000px;}
.y118{bottom:912.135000px;}
.yc4{bottom:915.015000px;}
.y9{bottom:915.735000px;}
.y2f{bottom:922.575000px;}
.yfb{bottom:924.735000px;}
.y4f{bottom:929.775000px;}
.y8{bottom:935.895000px;}
.y129{bottom:942.015000px;}
.y2e{bottom:947.415000px;}
.y7{bottom:951.735000px;}
.yfa{bottom:956.805000px;}
.y4e{bottom:962.205000px;}
.y128{bottom:974.445000px;}
.y2d{bottom:987.045000px;}
.yf9{bottom:989.205000px;}
.y4d{bottom:994.605000px;}
.y6{bottom:1000.365000px;}
.y127{bottom:1006.845000px;}
.y113{bottom:1009.725000px;}
.y2c{bottom:1011.885000px;}
.y5{bottom:1017.645000px;}
.yf8{bottom:1021.605000px;}
.y4c{bottom:1027.005000px;}
.y2b{bottom:1036.725000px;}
.y4{bottom:1038.165000px;}
.y112{bottom:1042.125000px;}
.yf7{bottom:1054.005000px;}
.y126{bottom:1056.525000px;}
.ya6{bottom:1059.202810px;}
.y4b{bottom:1059.405000px;}
.y3{bottom:1060.125000px;}
.y2a{bottom:1061.565000px;}
.y66{bottom:1074.525000px;}
.y2{bottom:1082.130000px;}
.y29{bottom:1086.450000px;}
.yc3{bottom:1091.850000px;}
.y1{bottom:1099.410000px;}
.y4a{bottom:1106.970000px;}
.y28{bottom:1136.490000px;}
.y49{bottom:1139.370000px;}
.h10{height:4.148438px;}
.h16{height:16.984588px;}
.h24{height:24.120000px;}
.h1f{height:24.840000px;}
.h21{height:25.920000px;}
.h28{height:27.000000px;}
.h2a{height:27.036000px;}
.h23{height:29.916000px;}
.h22{height:31.680000px;}
.h1c{height:32.040000px;}
.h1b{height:32.076000px;}
.h19{height:32.400000px;}
.h1a{height:32.436000px;}
.h25{height:39.600000px;}
.h5{height:41.547656px;}
.h27{height:43.558594px;}
.h15{height:46.684821px;}
.h2b{height:47.448281px;}
.hf{height:47.707031px;}
.h1d{height:50.287124px;}
.h8{height:51.855469px;}
.he{height:52.417969px;}
.h14{height:53.119127px;}
.h29{height:54.000000px;}
.hc{height:54.659917px;}
.h13{height:54.683756px;}
.ha{height:56.029219px;}
.h9{height:59.383125px;}
.h12{height:59.643733px;}
.h6{height:60.152344px;}
.hb{height:60.804844px;}
.h20{height:62.316000px;}
.h7{height:63.405504px;}
.hd{height:64.546875px;}
.h4{height:65.884219px;}
.h2{height:67.824844px;}
.h3{height:73.722656px;}
.h18{height:98.640000px;}
.h26{height:109.476000px;}
.h1e{height:113.436000px;}
.h17{height:437.117622px;}
.h11{height:485.013344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:29.097429px;}
.w28{width:48.600000px;}
.w17{width:52.236000px;}
.w1f{width:53.676000px;}
.w26{width:54.036000px;}
.w20{width:56.556000px;}
.w1b{width:56.880000px;}
.w4{width:59.436267px;}
.w27{width:60.516000px;}
.w2d{width:61.560000px;}
.w2a{width:61.596000px;}
.w1d{width:62.316000px;}
.w2e{width:62.676000px;}
.w11{width:63.000000px;}
.w1a{width:63.036000px;}
.w18{width:63.396000px;}
.w1e{width:64.116000px;}
.w1c{width:69.516000px;}
.w2c{width:69.840000px;}
.w29{width:70.956000px;}
.w19{width:73.800000px;}
.w10{width:81.756000px;}
.wc{width:84.276000px;}
.w2b{width:90.036000px;}
.wf{width:94.716000px;}
.wd{width:95.076000px;}
.wb{width:100.512000px;}
.w21{width:101.556000px;}
.we{width:105.516000px;}
.w7{width:118.836000px;}
.w23{width:164.595000px;}
.w16{width:168.915000px;}
.w14{width:185.115000px;}
.w13{width:190.875000px;}
.w25{width:195.915000px;}
.w15{width:198.105000px;}
.w24{width:224.025000px;}
.w9{width:281.310000px;}
.wa{width:283.785000px;}
.w5{width:419.572203px;}
.w3{width:499.569434px;}
.w8{width:566.535000px;}
.w22{width:585.975000px;}
.w12{width:746.610000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x38{left:2.422263px;}
.x3a{left:7.560000px;}
.x44{left:9.720000px;}
.x45{left:10.800000px;}
.x4b{left:15.165000px;}
.x5d{left:19.830000px;}
.x48{left:21.960000px;}
.x46{left:27.000000px;}
.x36{left:29.702994px;}
.x4f{left:33.120000px;}
.x49{left:34.596000px;}
.x33{left:40.027888px;}
.x43{left:42.876000px;}
.x34{left:44.266848px;}
.x5e{left:48.270000px;}
.x5a{left:50.436000px;}
.x61{left:60.120000px;}
.x4c{left:74.205000px;}
.x4d{left:80.670000px;}
.x39{left:98.676000px;}
.x30{left:100.475987px;}
.x7{left:106.235987px;}
.xb{left:114.155987px;}
.x1e{left:119.915987px;}
.xc{left:121.715987px;}
.x10{left:125.315987px;}
.xa{left:127.115987px;}
.x18{left:133.631987px;}
.x77{left:141.191987px;}
.x50{left:159.555000px;}
.x17{left:160.634987px;}
.x29{left:168.194987px;}
.x2a{left:173.594987px;}
.x78{left:177.194987px;}
.x2b{left:180.074987px;}
.x1b{left:181.514987px;}
.x1c{left:183.314987px;}
.x42{left:184.754987px;}
.x6e{left:186.194987px;}
.x31{left:191.234987px;}
.x32{left:196.955566px;}
.x5b{left:200.955000px;}
.x6f{left:203.834987px;}
.x3b{left:218.235000px;}
.x51{left:223.665000px;}
.x35{left:224.841863px;}
.x6b{left:234.104987px;}
.x6c{left:247.784987px;}
.x3c{left:250.665000px;}
.x62{left:255.705000px;}
.x2{left:260.384987px;}
.x67{left:263.264987px;}
.x5c{left:266.145000px;}
.x1a{left:274.424987px;}
.x68{left:276.944987px;}
.x6{left:281.264987px;}
.xd{left:290.624987px;}
.x4a{left:298.185000px;}
.x1f{left:299.264987px;}
.x2c{left:305.744987px;}
.x63{left:316.950000px;}
.x3e{left:319.470000px;}
.x79{left:323.069987px;}
.x1d{left:327.749987px;}
.x82{left:334.589987px;}
.x47{left:343.584000px;}
.x5{left:348.629987px;}
.x52{left:361.950000px;}
.x5f{left:366.270000px;}
.x2d{left:372.749987px;}
.x19{left:377.429987px;}
.x4{left:383.909987px;}
.x2e{left:386.429987px;}
.x83{left:391.109987px;}
.x3{left:403.019987px;}
.x3f{left:404.460000px;}
.x23{left:407.699987px;}
.x24{left:421.379987px;}
.x53{left:425.700000px;}
.x9{left:429.659987px;}
.x64{left:437.940000px;}
.x76{left:439.019987px;}
.x8{left:446.579987px;}
.xe{left:457.739987px;}
.x7a{left:468.539987px;}
.x54{left:483.300000px;}
.x11{left:484.379987px;}
.x72{left:494.849987px;}
.x3d{left:500.250000px;}
.x2f{left:531.569987px;}
.x74{left:536.969987px;}
.x7c{left:543.089987px;}
.x75{left:550.649987px;}
.x55{left:553.530000px;}
.x25{left:561.089987px;}
.x7d{left:569.369987px;}
.x7e{left:577.334987px;}
.x69{left:586.694987px;}
.x60{left:591.015000px;}
.x7b{left:595.694987px;}
.xf{left:604.334987px;}
.x40{left:606.855000px;}
.x84{left:610.814987px;}
.x73{left:615.494987px;}
.x56{left:616.575000px;}
.x7f{left:631.334987px;}
.x80{left:637.454987px;}
.x81{left:646.094987px;}
.x20{left:652.574987px;}
.x37{left:654.133395px;}
.x12{left:660.494987px;}
.x65{left:661.965000px;}
.x22{left:677.444987px;}
.x57{left:681.405000px;}
.x4e{left:682.845000px;}
.x13{left:691.124987px;}
.x14{left:697.244987px;}
.x41{left:702.285000px;}
.x6a{left:707.324987px;}
.x26{left:717.044987px;}
.x66{left:724.245000px;}
.x6d{left:732.524987px;}
.x27{left:736.484987px;}
.x58{left:739.005000px;}
.x28{left:747.644987px;}
.x85{left:754.529987px;}
.x15{left:760.649987px;}
.x70{left:763.169987px;}
.x16{left:767.849987px;}
.x71{left:776.489987px;}
.x21{left:781.889987px;}
.x1{left:786.929987px;}
.x59{left:793.770000px;}
@media print{
.v3{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.640000pt;}
.v1{vertical-align:19.200000pt;}
.ls33{letter-spacing:-1.600000pt;}
.ls10{letter-spacing:-1.514667pt;}
.ls25{letter-spacing:-1.216000pt;}
.ls35{letter-spacing:-1.214302pt;}
.ls2f{letter-spacing:-0.890667pt;}
.ls13{letter-spacing:-0.704000pt;}
.ls1c{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.561053pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.412267pt;}
.lsb{letter-spacing:-0.394133pt;}
.ls23{letter-spacing:-0.386235pt;}
.ls15{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.284267pt;}
.lsc{letter-spacing:-0.222933pt;}
.ls22{letter-spacing:-0.140800pt;}
.ls11{letter-spacing:-0.107733pt;}
.ls2c{letter-spacing:-0.094933pt;}
.ls19{letter-spacing:-0.002560pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000001pt;}
.ls2d{letter-spacing:0.038400pt;}
.ls18{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.107733pt;}
.ls36{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.130560pt;}
.ls2a{letter-spacing:0.130667pt;}
.ls12{letter-spacing:0.134922pt;}
.ls26{letter-spacing:0.192000pt;}
.ls29{letter-spacing:0.363520pt;}
.ls2e{letter-spacing:0.363733pt;}
.ls31{letter-spacing:0.389333pt;}
.ls0{letter-spacing:0.476160pt;}
.lse{letter-spacing:0.512000pt;}
.ls2b{letter-spacing:0.519467pt;}
.ls8{letter-spacing:0.533333pt;}
.ls1b{letter-spacing:0.576000pt;}
.ls1{letter-spacing:0.586240pt;}
.ls7{letter-spacing:0.629333pt;}
.ls5{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.688000pt;}
.ls1d{letter-spacing:0.737280pt;}
.ls16{letter-spacing:0.960000pt;}
.ls34{letter-spacing:1.664000pt;}
.lsd{letter-spacing:3.681280pt;}
.ls1e{letter-spacing:4.449280pt;}
.ls1f{letter-spacing:10.859947pt;}
.ls17{letter-spacing:11.361280pt;}
.ls1a{letter-spacing:14.914560pt;}
.ls27{letter-spacing:20.618667pt;}
.ls3{letter-spacing:29.711360pt;}
.ls24{letter-spacing:34.688000pt;}
.ls32{letter-spacing:39.531947pt;}
.ls2{letter-spacing:39.951360pt;}
.ws3{word-spacing:-22.445932pt;}
.ws2{word-spacing:-22.359893pt;}
.ws4{word-spacing:-21.826560pt;}
.wsf{word-spacing:-21.824000pt;}
.wsb{word-spacing:-21.718827pt;}
.ws26{word-spacing:-19.833607pt;}
.ws10{word-spacing:-19.392000pt;}
.wsc{word-spacing:-19.328000pt;}
.ws1a{word-spacing:-19.008000pt;}
.ws28{word-spacing:-18.944000pt;}
.wse{word-spacing:-18.880000pt;}
.ws8{word-spacing:-18.816000pt;}
.ws27{word-spacing:-18.496000pt;}
.wsd{word-spacing:-18.432000pt;}
.ws1b{word-spacing:-18.304000pt;}
.ws11{word-spacing:-18.240000pt;}
.ws13{word-spacing:-17.998720pt;}
.ws19{word-spacing:-17.600000pt;}
.ws1c{word-spacing:-17.310720pt;}
.ws7{word-spacing:-17.087787pt;}
.ws12{word-spacing:-17.026453pt;}
.ws6{word-spacing:-16.916587pt;}
.ws1d{word-spacing:-16.324907pt;}
.ws24{word-spacing:-16.194773pt;}
.ws21{word-spacing:-16.169173pt;}
.ws20{word-spacing:-15.936107pt;}
.ws23{word-spacing:-15.913173pt;}
.ws1f{word-spacing:-15.843840pt;}
.ws25{word-spacing:-15.805440pt;}
.ws1e{word-spacing:-15.710507pt;}
.ws22{word-spacing:-14.914773pt;}
.ws0{word-spacing:-12.894613pt;}
.ws1{word-spacing:-11.621973pt;}
.wsa{word-spacing:-10.992640pt;}
.ws5{word-spacing:-10.913280pt;}
.ws18{word-spacing:-10.728667pt;}
.ws14{word-spacing:-10.160640pt;}
.ws9{word-spacing:0.000000pt;}
.ws15{word-spacing:122.734549pt;}
.ws16{word-spacing:123.919949pt;}
.ws17{word-spacing:318.844414pt;}
._1b{margin-left:-12.736000pt;}
._1c{margin-left:-4.020480pt;}
._3{margin-left:-2.801920pt;}
._2{margin-left:-1.789440pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.280000pt;}
._6{width:2.437120pt;}
._c{width:3.351040pt;}
._b{width:4.992000pt;}
._a{width:6.720000pt;}
._7{width:7.872000pt;}
._8{width:9.600000pt;}
._9{width:11.133440pt;}
._d{width:12.736000pt;}
._e{width:13.632000pt;}
._17{width:15.112107pt;}
._15{width:16.602880pt;}
._14{width:17.792000pt;}
._16{width:19.122771pt;}
._f{width:20.608000pt;}
._21{width:21.551360pt;}
._11{width:22.450773pt;}
._12{width:23.536213pt;}
._10{width:24.458667pt;}
._1d{width:25.976320pt;}
._13{width:26.882560pt;}
._26{width:27.860053pt;}
._1a{width:28.922880pt;}
._19{width:29.888000pt;}
._18{width:31.040000pt;}
._22{width:32.512000pt;}
._23{width:34.116693pt;}
._25{width:39.360000pt;}
._24{width:40.640000pt;}
._20{width:44.669440pt;}
._1f{width:46.528000pt;}
._1e{width:299.390736pt;}
._5{width:740.879787pt;}
._4{width:1414.511787pt;}
.fs8{font-size:5.120000pt;}
.fs9{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fsb{font-size:47.471979pt;}
.fs2{font-size:48.640000pt;}
.fsa{font-size:51.777827pt;}
.fs7{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fsc{font-size:62.064349pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:67.461249pt;}
.fs3{font-size:74.240000pt;}
.fs4{font-size:78.255049pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:3.229402pt;}
.ydd{bottom:3.520000pt;}
.yda{bottom:7.360000pt;}
.ycd{bottom:8.000000pt;}
.yd2{bottom:8.960000pt;}
.ye4{bottom:11.200000pt;}
.yed{bottom:11.240000pt;}
.yd6{bottom:12.520000pt;}
.yc0{bottom:13.114667pt;}
.ybe{bottom:13.120000pt;}
.yb6{bottom:13.440000pt;}
.yb9{bottom:13.466667pt;}
.yd4{bottom:14.080000pt;}
.yd8{bottom:14.720000pt;}
.ya5{bottom:16.685165pt;}
.ydc{bottom:21.120000pt;}
.ye8{bottom:23.040000pt;}
.yd0{bottom:23.706667pt;}
.ycb{bottom:27.520000pt;}
.ye7{bottom:35.200000pt;}
.ya3{bottom:37.729993pt;}
.ycf{bottom:41.306667pt;}
.yca{bottom:45.146667pt;}
.ya{bottom:50.880000pt;}
.yc9{bottom:62.746667pt;}
.ya2{bottom:67.897844pt;}
.yb4{bottom:72.320000pt;}
.ya1{bottom:98.092606pt;}
.yc2{bottom:98.912000pt;}
.y98{bottom:105.312000pt;}
.y125{bottom:108.832000pt;}
.y13a{bottom:110.752000pt;}
.y65{bottom:111.392000pt;}
.yf6{bottom:115.232000pt;}
.y27{bottom:115.552000pt;}
.yc1{bottom:116.512000pt;}
.y111{bottom:120.032000pt;}
.y78{bottom:121.952000pt;}
.y48{bottom:122.912000pt;}
.ybf{bottom:131.552000pt;}
.y97{bottom:134.106667pt;}
.y88{bottom:137.626667pt;}
.y139{bottom:139.546667pt;}
.y64{bottom:140.186667pt;}
.y26{bottom:142.746667pt;}
.y110{bottom:148.826667pt;}
.y47{bottom:151.706667pt;}
.ye2{bottom:154.586667pt;}
.yf5{bottom:157.466667pt;}
.ybd{bottom:160.986667pt;}
.y77{bottom:161.626667pt;}
.y96{bottom:162.906667pt;}
.y87{bottom:166.106667pt;}
.y138{bottom:168.346667pt;}
.y63{bottom:168.986667pt;}
.y25{bottom:169.946667pt;}
.ya0{bottom:171.372763pt;}
.y10f{bottom:177.666667pt;}
.y124{bottom:179.586667pt;}
.y46{bottom:180.546667pt;}
.y24{bottom:189.186667pt;}
.ybc{bottom:190.146667pt;}
.ya9{bottom:190.237767pt;}
.y95{bottom:191.746667pt;}
.yf4{bottom:192.066667pt;}
.y86{bottom:194.946667pt;}
.ye1{bottom:196.546667pt;}
.y117{bottom:197.826667pt;}
.y76{bottom:201.346667pt;}
.y9f{bottom:201.535231pt;}
.y23{bottom:208.386667pt;}
.y45{bottom:209.346667pt;}
.y137{bottom:210.626667pt;}
.y62{bottom:210.946667pt;}
.ybb{bottom:219.586667pt;}
.y94{bottom:220.546667pt;}
.y85{bottom:223.746667pt;}
.y146{bottom:225.986667pt;}
.y116{bottom:226.626667pt;}
.y22{bottom:227.586667pt;}
.y9e{bottom:231.729993pt;}
.yf3{bottom:232.706667pt;}
.ye0{bottom:238.786667pt;}
.y136{bottom:239.106667pt;}
.y61{bottom:239.746667pt;}
.y75{bottom:241.026667pt;}
.y21{bottom:246.786667pt;}
.y10e{bottom:248.386667pt;}
.yba{bottom:249.026667pt;}
.y93{bottom:249.346667pt;}
.y123{bottom:250.626667pt;}
.y44{bottom:251.266667pt;}
.y84{bottom:252.546667pt;}
.y20{bottom:265.986667pt;}
.y135{bottom:267.906667pt;}
.y60{bottom:268.546667pt;}
.ydf{bottom:270.786667pt;}
.yf2{bottom:274.626667pt;}
.y10d{bottom:277.186667pt;}
.yb8{bottom:278.466667pt;}
.y122{bottom:279.106667pt;}
.y43{bottom:280.066667pt;}
.y74{bottom:280.706667pt;}
.y83{bottom:281.346667pt;}
.y1f{bottom:285.186667pt;}
.yde{bottom:288.413333pt;}
.y92{bottom:291.293333pt;}
.y134{bottom:296.733333pt;}
.y5f{bottom:297.373333pt;}
.y145{bottom:299.613333pt;}
.ydb{bottom:303.133333pt;}
.y9d{bottom:303.939071pt;}
.y10c{bottom:306.013333pt;}
.yf1{bottom:306.973333pt;}
.yb3{bottom:307.933333pt;}
.y42{bottom:308.893333pt;}
.y1e{bottom:312.413333pt;}
.y73{bottom:320.413333pt;}
.y82{bottom:323.613333pt;}
.yf0{bottom:324.573333pt;}
.y133{bottom:325.533333pt;}
.y5e{bottom:326.173333pt;}
.y144{bottom:328.413333pt;}
.y1d{bottom:331.613333pt;}
.y9c{bottom:334.101539pt;}
.y10b{bottom:334.813333pt;}
.y121{bottom:336.733333pt;}
.yb7{bottom:337.373333pt;}
.y41{bottom:337.693333pt;}
.yd9{bottom:338.973333pt;}
.yef{bottom:339.293333pt;}
.y91{bottom:342.173333pt;}
.y1c{bottom:350.813333pt;}
.y143{bottom:356.893333pt;}
.y90{bottom:359.773333pt;}
.y72{bottom:360.413333pt;}
.yd7{bottom:361.053333pt;}
.y10a{bottom:363.613333pt;}
.yee{bottom:363.933333pt;}
.y9b{bottom:364.296301pt;}
.y81{bottom:365.533333pt;}
.y40{bottom:366.493333pt;}
.yb5{bottom:366.813333pt;}
.y132{bottom:367.773333pt;}
.y5d{bottom:368.413333pt;}
.y8f{bottom:377.373333pt;}
.y1b{bottom:378.013333pt;}
.y142{bottom:385.693333pt;}
.yec{bottom:388.573333pt;}
.yd5{bottom:390.493333pt;}
.y109{bottom:392.413333pt;}
.y80{bottom:394.333333pt;}
.y8e{bottom:394.973333pt;}
.y131{bottom:396.573333pt;}
.y5c{bottom:396.893333pt;}
.y1a{bottom:397.213333pt;}
.y71{bottom:402.373333pt;}
.y9a{bottom:402.564529pt;}
.y3f{bottom:403.013333pt;}
.y8d{bottom:412.613333pt;}
.yeb{bottom:413.253333pt;}
.y19{bottom:416.453333pt;}
.yd3{bottom:417.733333pt;}
.y108{bottom:420.933333pt;}
.y7f{bottom:423.173333pt;}
.y5b{bottom:425.733333pt;}
.y141{bottom:427.973333pt;}
.y8c{bottom:430.213333pt;}
.y70{bottom:430.853333pt;}
.y120{bottom:436.613333pt;}
.yea{bottom:437.893333pt;}
.y130{bottom:438.533333pt;}
.y3e{bottom:439.493333pt;}
.y18{bottom:443.653333pt;}
.yd1{bottom:446.533333pt;}
.y7e{bottom:451.973333pt;}
.y5a{bottom:454.533333pt;}
.y140{bottom:456.773333pt;}
.y8b{bottom:458.693333pt;}
.y6f{bottom:459.653333pt;}
.ye9{bottom:462.533333pt;}
.y17{bottom:462.853333pt;}
.y107{bottom:463.173333pt;}
.y11f{bottom:465.413333pt;}
.y12f{bottom:467.333333pt;}
.yc8{bottom:470.213333pt;}
.y3d{bottom:471.173333pt;}
.y7d{bottom:480.773333pt;}
.y16{bottom:481.733333pt;}
.y59{bottom:483.333333pt;}
.y13f{bottom:485.573333pt;}
.y8a{bottom:486.533333pt;}
.ye3{bottom:487.173333pt;}
.y6e{bottom:488.453333pt;}
.y106{bottom:491.973333pt;}
.yce{bottom:492.933333pt;}
.yb2{bottom:493.893333pt;}
.y12e{bottom:496.133333pt;}
.y15{bottom:500.933333pt;}
.y3c{bottom:506.373333pt;}
.y7c{bottom:509.573333pt;}
.ye6{bottom:511.840000pt;}
.y115{bottom:512.160000pt;}
.y13e{bottom:514.400000pt;}
.y6d{bottom:517.280000pt;}
.y14{bottom:520.160000pt;}
.y105{bottom:520.800000pt;}
.yb1{bottom:522.720000pt;}
.y89{bottom:524.960000pt;}
.y99{bottom:525.493333pt;}
.y58{bottom:525.600000pt;}
.y3b{bottom:528.480000pt;}
.y12d{bottom:538.400000pt;}
.y6c{bottom:546.080000pt;}
.ycc{bottom:548.960000pt;}
.y104{bottom:549.600000pt;}
.y3a{bottom:550.560000pt;}
.y7b{bottom:551.520000pt;}
.ya8{bottom:552.431762pt;}
.y57{bottom:554.400000pt;}
.y13d{bottom:556.320000pt;}
.ye5{bottom:560.480000pt;}
.y13{bottom:564.640000pt;}
.y11e{bottom:564.960000pt;}
.y12c{bottom:567.200000pt;}
.y39{bottom:572.640000pt;}
.y6b{bottom:574.880000pt;}
.y103{bottom:578.400000pt;}
.yb0{bottom:580.320000pt;}
.y56{bottom:583.200000pt;}
.y13c{bottom:585.120000pt;}
.y7a{bottom:592.480000pt;}
.y11d{bottom:593.760000pt;}
.y38{bottom:594.720000pt;}
.y12b{bottom:595.680000pt;}
.yc7{bottom:598.560000pt;}
.y12{bottom:602.080000pt;}
.y102{bottom:607.200000pt;}
.yaf{bottom:609.120000pt;}
.y55{bottom:611.680000pt;}
.y37{bottom:616.800000pt;}
.y6a{bottom:617.120000pt;}
.y79{bottom:619.040000pt;}
.y11{bottom:622.240000pt;}
.y11c{bottom:622.560000pt;}
.yc6{bottom:627.386667pt;}
.yae{bottom:637.946667pt;}
.y36{bottom:638.906667pt;}
.y54{bottom:640.506667pt;}
.y69{bottom:645.626667pt;}
.y101{bottom:649.146667pt;}
.y11b{bottom:651.386667pt;}
.y10{bottom:656.186667pt;}
.yad{bottom:666.746667pt;}
.y53{bottom:669.306667pt;}
.y35{bottom:674.426667pt;}
.y100{bottom:677.946667pt;}
.yf{bottom:678.266667pt;}
.y11a{bottom:680.186667pt;}
.y13b{bottom:684.986667pt;}
.yac{bottom:695.546667pt;}
.y34{bottom:696.186667pt;}
.y52{bottom:698.106667pt;}
.yff{bottom:706.746667pt;}
.y119{bottom:708.666667pt;}
.ye{bottom:714.746667pt;}
.y68{bottom:716.666667pt;}
.y33{bottom:718.266667pt;}
.y51{bottom:726.906667pt;}
.yfe{bottom:735.586667pt;}
.yab{bottom:737.506667pt;}
.y32{bottom:740.386667pt;}
.yd{bottom:740.706667pt;}
.y67{bottom:753.186667pt;}
.y50{bottom:755.746667pt;}
.yfd{bottom:764.386667pt;}
.yc{bottom:766.306667pt;}
.y114{bottom:769.186667pt;}
.y31{bottom:775.906667pt;}
.ya4{bottom:776.631935pt;}
.yaa{bottom:781.986667pt;}
.yc5{bottom:784.546667pt;}
.yb{bottom:792.226667pt;}
.yfc{bottom:793.186667pt;}
.y12a{bottom:795.106667pt;}
.y30{bottom:797.986667pt;}
.y118{bottom:810.786667pt;}
.yc4{bottom:813.346667pt;}
.y9{bottom:813.986667pt;}
.y2f{bottom:820.066667pt;}
.yfb{bottom:821.986667pt;}
.y4f{bottom:826.466667pt;}
.y8{bottom:831.906667pt;}
.y129{bottom:837.346667pt;}
.y2e{bottom:842.146667pt;}
.y7{bottom:845.986667pt;}
.yfa{bottom:850.493333pt;}
.y4e{bottom:855.293333pt;}
.y128{bottom:866.173333pt;}
.y2d{bottom:877.373333pt;}
.yf9{bottom:879.293333pt;}
.y4d{bottom:884.093333pt;}
.y6{bottom:889.213333pt;}
.y127{bottom:894.973333pt;}
.y113{bottom:897.533333pt;}
.y2c{bottom:899.453333pt;}
.y5{bottom:904.573333pt;}
.yf8{bottom:908.093333pt;}
.y4c{bottom:912.893333pt;}
.y2b{bottom:921.533333pt;}
.y4{bottom:922.813333pt;}
.y112{bottom:926.333333pt;}
.yf7{bottom:936.893333pt;}
.y126{bottom:939.133333pt;}
.ya6{bottom:941.513609pt;}
.y4b{bottom:941.693333pt;}
.y3{bottom:942.333333pt;}
.y2a{bottom:943.613333pt;}
.y66{bottom:955.133333pt;}
.y2{bottom:961.893333pt;}
.y29{bottom:965.733333pt;}
.yc3{bottom:970.533333pt;}
.y1{bottom:977.253333pt;}
.y4a{bottom:983.973333pt;}
.y28{bottom:1010.213333pt;}
.y49{bottom:1012.773333pt;}
.h10{height:3.687500pt;}
.h16{height:15.097411pt;}
.h24{height:21.440000pt;}
.h1f{height:22.080000pt;}
.h21{height:23.040000pt;}
.h28{height:24.000000pt;}
.h2a{height:24.032000pt;}
.h23{height:26.592000pt;}
.h22{height:28.160000pt;}
.h1c{height:28.480000pt;}
.h1b{height:28.512000pt;}
.h19{height:28.800000pt;}
.h1a{height:28.832000pt;}
.h25{height:35.200000pt;}
.h5{height:36.931250pt;}
.h27{height:38.718750pt;}
.h15{height:41.497618pt;}
.h2b{height:42.176250pt;}
.hf{height:42.406250pt;}
.h1d{height:44.699665pt;}
.h8{height:46.093750pt;}
.he{height:46.593750pt;}
.h14{height:47.217002pt;}
.h29{height:48.000000pt;}
.hc{height:48.586593pt;}
.h13{height:48.607783pt;}
.ha{height:49.803750pt;}
.h9{height:52.785000pt;}
.h12{height:53.016652pt;}
.h6{height:53.468750pt;}
.hb{height:54.048750pt;}
.h20{height:55.392000pt;}
.h7{height:56.360448pt;}
.hd{height:57.375000pt;}
.h4{height:58.563750pt;}
.h2{height:60.288750pt;}
.h3{height:65.531250pt;}
.h18{height:87.680000pt;}
.h26{height:97.312000pt;}
.h1e{height:100.832000pt;}
.h17{height:388.548997pt;}
.h11{height:431.122972pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:25.864381pt;}
.w28{width:43.200000pt;}
.w17{width:46.432000pt;}
.w1f{width:47.712000pt;}
.w26{width:48.032000pt;}
.w20{width:50.272000pt;}
.w1b{width:50.560000pt;}
.w4{width:52.832237pt;}
.w27{width:53.792000pt;}
.w2d{width:54.720000pt;}
.w2a{width:54.752000pt;}
.w1d{width:55.392000pt;}
.w2e{width:55.712000pt;}
.w11{width:56.000000pt;}
.w1a{width:56.032000pt;}
.w18{width:56.352000pt;}
.w1e{width:56.992000pt;}
.w1c{width:61.792000pt;}
.w2c{width:62.080000pt;}
.w29{width:63.072000pt;}
.w19{width:65.600000pt;}
.w10{width:72.672000pt;}
.wc{width:74.912000pt;}
.w2b{width:80.032000pt;}
.wf{width:84.192000pt;}
.wd{width:84.512000pt;}
.wb{width:89.344000pt;}
.w21{width:90.272000pt;}
.we{width:93.792000pt;}
.w7{width:105.632000pt;}
.w23{width:146.306667pt;}
.w16{width:150.146667pt;}
.w14{width:164.546667pt;}
.w13{width:169.666667pt;}
.w25{width:174.146667pt;}
.w15{width:176.093333pt;}
.w24{width:199.133333pt;}
.w9{width:250.053333pt;}
.wa{width:252.253333pt;}
.w5{width:372.953070pt;}
.w3{width:444.061719pt;}
.w8{width:503.586667pt;}
.w22{width:520.866667pt;}
.w12{width:663.653333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x38{left:2.153122pt;}
.x3a{left:6.720000pt;}
.x44{left:8.640000pt;}
.x45{left:9.600000pt;}
.x4b{left:13.480000pt;}
.x5d{left:17.626667pt;}
.x48{left:19.520000pt;}
.x46{left:24.000000pt;}
.x36{left:26.402662pt;}
.x4f{left:29.440000pt;}
.x49{left:30.752000pt;}
.x33{left:35.580345pt;}
.x43{left:38.112000pt;}
.x34{left:39.348309pt;}
.x5e{left:42.906667pt;}
.x5a{left:44.832000pt;}
.x61{left:53.440000pt;}
.x4c{left:65.960000pt;}
.x4d{left:71.706667pt;}
.x39{left:87.712000pt;}
.x30{left:89.311988pt;}
.x7{left:94.431988pt;}
.xb{left:101.471988pt;}
.x1e{left:106.591988pt;}
.xc{left:108.191988pt;}
.x10{left:111.391988pt;}
.xa{left:112.991988pt;}
.x18{left:118.783988pt;}
.x77{left:125.503988pt;}
.x50{left:141.826667pt;}
.x17{left:142.786655pt;}
.x29{left:149.506655pt;}
.x2a{left:154.306655pt;}
.x78{left:157.506655pt;}
.x2b{left:160.066655pt;}
.x1b{left:161.346655pt;}
.x1c{left:162.946655pt;}
.x42{left:164.226655pt;}
.x6e{left:165.506655pt;}
.x31{left:169.986655pt;}
.x32{left:175.071614pt;}
.x5b{left:178.626667pt;}
.x6f{left:181.186655pt;}
.x3b{left:193.986667pt;}
.x51{left:198.813333pt;}
.x35{left:199.859434pt;}
.x6b{left:208.093322pt;}
.x6c{left:220.253322pt;}
.x3c{left:222.813333pt;}
.x62{left:227.293333pt;}
.x2{left:231.453322pt;}
.x67{left:234.013322pt;}
.x5c{left:236.573333pt;}
.x1a{left:243.933322pt;}
.x68{left:246.173322pt;}
.x6{left:250.013322pt;}
.xd{left:258.333322pt;}
.x4a{left:265.053333pt;}
.x1f{left:266.013322pt;}
.x2c{left:271.773322pt;}
.x63{left:281.733333pt;}
.x3e{left:283.973333pt;}
.x79{left:287.173322pt;}
.x1d{left:291.333322pt;}
.x82{left:297.413322pt;}
.x47{left:305.408000pt;}
.x5{left:309.893322pt;}
.x52{left:321.733333pt;}
.x5f{left:325.573333pt;}
.x2d{left:331.333322pt;}
.x19{left:335.493322pt;}
.x4{left:341.253322pt;}
.x2e{left:343.493322pt;}
.x83{left:347.653322pt;}
.x3{left:358.239988pt;}
.x3f{left:359.520000pt;}
.x23{left:362.399988pt;}
.x24{left:374.559988pt;}
.x53{left:378.400000pt;}
.x9{left:381.919988pt;}
.x64{left:389.280000pt;}
.x76{left:390.239988pt;}
.x8{left:396.959988pt;}
.xe{left:406.879988pt;}
.x7a{left:416.479988pt;}
.x54{left:429.600000pt;}
.x11{left:430.559988pt;}
.x72{left:439.866655pt;}
.x3d{left:444.666667pt;}
.x2f{left:472.506655pt;}
.x74{left:477.306655pt;}
.x7c{left:482.746655pt;}
.x75{left:489.466655pt;}
.x55{left:492.026667pt;}
.x25{left:498.746655pt;}
.x7d{left:506.106655pt;}
.x7e{left:513.186655pt;}
.x69{left:521.506655pt;}
.x60{left:525.346667pt;}
.x7b{left:529.506655pt;}
.xf{left:537.186655pt;}
.x40{left:539.426667pt;}
.x84{left:542.946655pt;}
.x73{left:547.106655pt;}
.x56{left:548.066667pt;}
.x7f{left:561.186655pt;}
.x80{left:566.626655pt;}
.x81{left:574.306655pt;}
.x20{left:580.066655pt;}
.x37{left:581.451906pt;}
.x12{left:587.106655pt;}
.x65{left:588.413333pt;}
.x22{left:602.173322pt;}
.x57{left:605.693333pt;}
.x4e{left:606.973333pt;}
.x13{left:614.333322pt;}
.x14{left:619.773322pt;}
.x41{left:624.253333pt;}
.x6a{left:628.733322pt;}
.x26{left:637.373322pt;}
.x66{left:643.773333pt;}
.x6d{left:651.133322pt;}
.x27{left:654.653322pt;}
.x58{left:656.893333pt;}
.x28{left:664.573322pt;}
.x85{left:670.693322pt;}
.x15{left:676.133322pt;}
.x70{left:678.373322pt;}
.x16{left:682.533322pt;}
.x71{left:690.213322pt;}
.x21{left:695.013322pt;}
.x1{left:699.493322pt;}
.x59{left:705.573333pt;}
}




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